/webtrees/tests/app/Encodings/ |
H A D | MacRomanTest.php | 33 $encoding = new MacRoman(); 35 …self::assertSame("\x00\x01\x02\x03\x04\x05\x06\x07", $encoding->toUtf8("\x00\x01\x02\x03\x04\x05\x… 36 …self::assertSame("\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F", $encoding->toUtf8("\x08\x09\x0A\x0B\x0C\x0D\x… 37 …self::assertSame("\x10\x11\x12\x13\x14\x15\x16\x17", $encoding->toUtf8("\x10\x11\x12\x13\x14\x15\x… 38 …self::assertSame("\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F", $encoding->toUtf8("\x18\x19\x1A\x1B\x1C\x1D\x… 39 …self::assertSame("\x20\x21\x22\x23\x24\x25\x26\x27", $encoding->toUtf8("\x20\x21\x22\x23\x24\x25\x… 40 …self::assertSame("\x28\x29\x2A\x2B\x2C\x2D\x2E\x2F", $encoding->toUtf8("\x28\x29\x2A\x2B\x2C\x2D\x… 41 …self::assertSame("\x30\x31\x32\x33\x34\x35\x36\x37", $encoding->toUtf8("\x30\x31\x32\x33\x34\x35\x… 42 …self::assertSame("\x38\x39\x3A\x3B\x3C\x3D\x3E\x3F", $encoding->toUtf8("\x38\x39\x3A\x3B\x3C\x3D\x… 43 …self::assertSame("\x40\x41\x42\x43\x44\x45\x46\x47", $encoding->toUtf8("\x40\x41\x42\x43\x44\x45\x… [all …]
|
H A D | AnselTest.php | 139 $encoding = new ANSEL(); 158 … static::assertSame($utf8, $encoding->toUtf8($encoding->fromUtf8($utf8)), 'U+' . dechex($code)); 166 $encoding = new ANSEL(); 169 …self::assertSame($utf8, $encoding->toUtf8($ansel), bin2hex($utf8) . ' ' . bin2hex($encoding->toUtf… 175 $encoding = new ANSEL(); 178 self::assertSame($other, $encoding->fromUtf8($utf8)); 184 $encoding = new ANSEL(); 188 self::assertSame($expected, $encoding->toUtf8($chars)); 194 $encoding = new ANSEL(); 197 self::assertSame('', $encoding->toUtf8($chars));
|
H A D | UTF16BETest.php | 40 $encoding = new UTF16BE(); 45 $actual = $encoding->toUtf8($char); 52 $actual = $encoding->toUtf8($char); 60 $actual = $encoding->toUtf8($char); 67 $actual = $encoding->toUtf8($char); 75 $actual = $encoding->toUtf8($char);
|
H A D | UTF16LETest.php | 40 $encoding = new UTF16LE(); 45 $actual = $encoding->toUtf8($char); 52 $actual = $encoding->toUtf8($char); 60 $actual = $encoding->toUtf8($char); 67 $actual = $encoding->toUtf8($char); 75 $actual = $encoding->toUtf8($char);
|
H A D | UTF8Test.php | 35 $encoding = new UTF8(); 39 self::assertSame($char, $encoding->toUtf8($char)); 45 $encoding = new UTF8(); 49 self::assertSame($char, $encoding->fromUtf8($char));
|
H A D | ASCIITest.php | 38 $encoding = new ASCII(); 42 $actual = $encoding->toUtf8($character); 50 $actual = $encoding->toUtf8($character);
|
H A D | ISO88591Test.php | 39 $encoding = new ISO88591(); 49 $actual = $encoding->toUtf8($character); 57 $actual = $encoding->toUtf8($character);
|
H A D | ISO88592Test.php | 39 $encoding = new ISO88592(); 49 $actual = $encoding->toUtf8($character); 57 $actual = $encoding->toUtf8($character);
|
H A D | CP850Test.php | 37 $encoding = new CP850(); 41 $actual = $encoding->toUtf8($character);
|
H A D | CP437Test.php | 39 $encoding = new CP437(); 43 $actual = $encoding->toUtf8($character);
|
H A D | Windows1251Test.php | 39 $encoding = new Windows1251(); 43 $actual = $encoding->toUtf8($character);
|
H A D | Windows1252Test.php | 39 $encoding = new Windows1252(); 43 $actual = $encoding->toUtf8($character);
|
H A D | Windows1250Test.php | 39 $encoding = new Windows1250(); 43 $actual = $encoding->toUtf8($character);
|
/webtrees/app/Services/ |
H A D | GedcomExportService.php | 95 …* @param string $encoding Convert from UTF-8 to other… 105 string $encoding, argument 115 …$resource = $this->export($tree, $sort_by_xref, $encoding, $access_level, $line_endings, $records); 139 …$resource = $this->export($tree, $sort_by_xref, $encoding, $access_level, $line_endings, $records,… 164 …* @param string $encoding Convert from UTF-8 to oth… 176 string $encoding = UTF8::NAME, argument 189 …ngFilter::class, STREAM_FILTER_WRITE, ['src_encoding' => UTF8::NAME, 'dst_encoding' => $encoding]); 194 new Collection([$this->createHeader($tree, $encoding, false)]), 201 new Collection([$this->createHeader($tree, $encoding, true)]), 214 new Collection([$this->createHeader($tree, $encoding, true)]), [all …]
|
H A D | TreeService.php | 234 * @param string $encoding Override the encoding specified in the header. 238 …ion importGedcomFile(Tree $tree, StreamInterface $stream, string $filename, string $encoding): void argument 255 …er_append($stream, GedcomEncodingFilter::class, STREAM_FILTER_READ, ['src_encoding' => $encoding]);
|
/webtrees/app/Factories/ |
H A D | EncodingFactory.php | 65 foreach ($utf_bom as $regex => $encoding) { 67 return $this->make($encoding); 76 foreach ($utf16 as $start => $encoding) { 78 return $this->make($encoding); 134 foreach ($character_sets as $pattern => $encoding) { 143 return $this->make($encoding);
|
/webtrees/app/Http/RequestHandlers/ |
H A D | ImportGedcomAction.php | 75 …$encoding = Validator::parsedBody($request)->isInArrayKeys($encodings)->string('encoding… 96 …dcomFile($tree, $client_file->getStream(), basename($client_file->getClientFilename()), $encoding); 110 $this->tree_service->importGedcomFile($tree, $stream, $server_file, $encoding);
|
H A D | ExportGedcomClient.php | 62 …$encoding = Validator::parsedBody($request)->isInArray([UTF8::NAME, UTF16BE::NAME, ANSEL::NAME… 65 …return $this->gedcom_export_service->downloadResponse($tree, true, $encoding, $privacy, $line_endi…
|
/webtrees/app/ |
H A D | Validator.php | 56 * @param string $encoding 58 … private function __construct(array $parameters, ServerRequestInterface $request, string $encoding) argument 60 if ($encoding === 'UTF-8') {
|
/webtrees/app/Cli/Commands/ |
H A D | TreeExport.php | 87 encoding: UTF8::NAME,
|
/webtrees/public/ckeditor-4.15.1-custom/plugins/forms/dialogs/ |
H A D | form.js | 7 …":"",accessKey:"I"},{id:"enctype",type:"select",label:a.lang.forms.form.encoding,style:"width:100%…
|
/webtrees/app/Module/ |
H A D | ClippingsCartModule.php | 234 …$encoding = Validator::parsedBody($request)->isInArray([UTF8::NAME, UTF16BE::NAME, ANSEL::NAME… 291 …return $this->gedcom_export_service->downloadResponse($tree, false, $encoding, 'none', $line_endin…
|
/webtrees/resources/lang/ku/ |
H A D | messages.po | 3446 msgid "Character encoding" 5738 msgid "Error: converting GEDCOM files from %s encoding to UTF-8 encoding not currently supported." 5739 msgstr "Error: converting GEDCOM files from %s encoding to UTF-8 encoding not currently supported." 21476 …encoding for accented letters, special characters and non-Latin scripts. If you want to use this G… 21477 …encoding for accented letters, special characters and non-Latin scripts. If you want to use this G…
|
/webtrees/resources/lang/en-GB/ |
H A D | messages.po | 3447 msgid "Character encoding" 3448 msgstr "Character encoding" 5739 msgid "Error: converting GEDCOM files from %s encoding to UTF-8 encoding not currently supported." 5740 msgstr "Error: converting GEDCOM files from %s encoding to UTF-8 encoding not currently supported." 23446 …encoding for accented letters, special characters and non-Latin scripts. If you want to use this G… 23447 …encoding for accented letters, special characters and non-latin scripts. If you want to use this G…
|
/webtrees/resources/lang/en-AU/ |
H A D | messages.po | 3447 msgid "Character encoding" 3448 msgstr "Character encoding" 5739 msgid "Error: converting GEDCOM files from %s encoding to UTF-8 encoding not currently supported." 5740 msgstr "Error: converting GEDCOM files from %s encoding to UTF-8 encoding not currently supported." 23436 …encoding for accented letters, special characters and non-Latin scripts. If you want to use this G… 23437 …encoding for accented letters, special characters and non-latin scripts. If you want to use this G…
|