Home
last modified time | relevance | path

Searched refs:NAME (Results 1 – 25 of 118) sorted by relevance

12345

/webtrees/app/Factories/
H A DEncodingFactory.php60 '/^' . UTF8::BYTE_ORDER_MARK . '/' => UTF8::NAME,
61 '/^' . UTF16BE::BYTE_ORDER_MARK . '/' => UTF16BE::NAME,
62 '/^' . UTF16LE::BYTE_ORDER_MARK . '/' => UTF16LE::NAME,
72 "\x000" => UTF16BE::NAME,
73 "0\x00" => UTF16LE::NAME,
98 'ASCII' => ASCII::NAME,
99 'ANSEL' => ANSEL::NAME,
100 'UTF-8' => UTF8::NAME,
101 'UNICODE' => UTF8::NAME, // If the null byte test failed, this can't be UTF16
102 'ASCII/MacOS Roman' => MacRoman::NAME, // GEDitCOM
[all …]
/webtrees/tests/data/
H A Ddemo.ged3 2 NAME webtrees
17 1 NAME Queen Elizabeth II
68 1 NAME Prince Arthur, Duke of Connaught
78 1 NAME Princess Mary, Viscountess Lascelles
96 1 NAME Lady Elphinstone
114 1 NAME Lady Diana /Spencer/
144 1 NAME Camilla Rosemary /Shand/
147 1 NAME Camilla, Duchess of Cornwall
156 1 NAME Camilla, Duchess of Cornwall
167 1 NAME Prince William, Duke of Cambridge
[all …]
/webtrees/tests/app/Factories/
H A DEncodingFactoryTest.php100 static::assertInstanceOf(UTF8::class, $factory->make(UTF8::NAME));
101 static::assertInstanceOf(UTF16BE::class, $factory->make(UTF16BE::NAME));
102 static::assertInstanceOf(UTF16LE::class, $factory->make(UTF16LE::NAME));
103 static::assertInstanceOf(ANSEL::class, $factory->make(ANSEL::NAME));
104 static::assertInstanceOf(ASCII::class, $factory->make(ASCII::NAME));
105 static::assertInstanceOf(CP437::class, $factory->make(CP437::NAME));
106 static::assertInstanceOf(CP850::class, $factory->make(CP850::NAME));
107 static::assertInstanceOf(Windows1250::class, $factory->make(Windows1250::NAME));
108 static::assertInstanceOf(Windows1251::class, $factory->make(Windows1251::NAME));
109 static::assertInstanceOf(Windows1252::class, $factory->make(Windows1252::NAME));
[all …]
/webtrees/tests/app/Encodings/
H A DUTF16BETest.php44 $expected = iconv(UTF16BE::NAME, UTF8::NAME, $char);
59 $expected = iconv(UTF16BE::NAME, UTF8::NAME, $char);
74 $expected = iconv(UTF16BE::NAME, UTF8::NAME, $char);
H A DUTF16LETest.php44 $expected = iconv(UTF16LE::NAME, UTF8::NAME, $char);
59 $expected = iconv(UTF16LE::NAME, UTF8::NAME, $char);
74 $expected = iconv(UTF16LE::NAME, UTF8::NAME, $char);
H A DCP850Test.php42 $expected = iconv(CP850::NAME, UTF8::NAME, $character);
H A DCP437Test.php44 $expected = iconv(CP437::NAME, UTF8::NAME, $character);
H A DASCIITest.php43 $expected = iconv(ASCII::NAME, UTF8::NAME, $character);
H A DISO88591Test.php58 $expected = iconv(ISO88591::NAME, UTF8::NAME, $character);
H A DISO88592Test.php58 $expected = iconv(ISO88592::NAME, UTF8::NAME, $character);
H A DWindows1251Test.php44 $expected = iconv(Windows1251::NAME, 'UTF-8//IGNORE', $character);
H A DWindows1252Test.php44 $expected = iconv(Windows1252::NAME, 'UTF-8//IGNORE', $character);
H A DWindows1250Test.php44 $expected = iconv(Windows1250::NAME, 'UTF-8//IGNORE', $character);
/webtrees/resources/views/admin/
H A Dgedcom-export-options.phtml83 …elected' => UTF8::NAME, 'options' => [UTF8::NAME => 'UTF-8', UTF16BE::NAME => 'UNICODE (UTF16-BE)'…
/webtrees/app/Http/RequestHandlers/
H A DExportGedcomClient.php62 …tor::parsedBody($request)->isInArray([UTF8::NAME, UTF16BE::NAME, ANSEL::NAME, ASCII::NAME, Windows…
/webtrees/app/Services/
H A DGedcomExportService.php120 ->withHeader('content-type', 'text/x-gedcom; charset=' . UTF8::NAME)
176 string $encoding = UTF8::NAME,
189 …edcomEncodingFilter::class, STREAM_FILTER_WRITE, ['src_encoding' => UTF8::NAME, 'dst_encoding' => …
288 UTF16BE::NAME => 'UNICODE',
289 UTF16LE::NAME => 'UNICODE',
290 Windows1252::NAME => 'ANSI',
297 $gedcom .= "\n1 SOUR " . Webtrees::NAME;
298 $gedcom .= "\n2 NAME " . Webtrees::NAME;
/webtrees/app/Module/
H A DClippingsCartModule.php234 …tor::parsedBody($request)->isInArray([UTF8::NAME, UTF16BE::NAME, ANSEL::NAME, ASCII::NAME, Windows…
H A DPoweredByWebtreesModule.php70 'name' => Webtrees::NAME,
/webtrees/app/Report/
H A DAbstractRenderer.php100 public string $rauthor = Webtrees::NAME . ' ' . Webtrees::VERSION;
332 …$this->generated_by = I18N::translate('Generated by %s', Webtrees::NAME . ' ' . Webtrees::VERSION);
/webtrees/app/Elements/
H A DApprovedSystemId.php45 return Webtrees::NAME;
/webtrees/resources/views/layouts/
H A Doffline.phtml21 <title><?= e(Webtrees::NAME) ?></title>
/webtrees/app/Encodings/
H A DUTF16BE.php31 public const NAME = 'UTF-16BE'; define in Fisharebest\\Webtrees\\Encodings\\UTF16BE
H A DUTF16LE.php31 public const NAME = 'UTF-16LE'; define in Fisharebest\\Webtrees\\Encodings\\UTF16LE
/webtrees/app/
H A DNoReplyUser.php58 return Webtrees::NAME;
/webtrees/tests/app/
H A DNoReplyUserTest.php37 self::assertSame(Webtrees::NAME, $user->realName());

12345