MediaWiki
1.33.1
|
Resort normal UTF-8 order by putting a bunch of stuff in PUA. More...
Public Member Functions | |
__construct (array $alphabet, Language $lang) | |
getFirstLetter ( $string) | |
Given a string, return the logical "first letter" to be used for grouping on category pages and so on. More... | |
getSortKey ( $string) | |
Given a string, convert it to a (hopefully short) key that can be used for efficient sorting. More... | |
Public Member Functions inherited from NumericUppercaseCollation | |
__construct (Language $lang) | |
Public Member Functions inherited from UppercaseCollation | |
__construct () | |
Private Member Functions | |
convertToPua ( $string) | |
Private Attributes | |
$alphabet | |
$puaSubset | |
Additional Inherited Members | |
Static Public Member Functions inherited from Collation | |
static | factory ( $collationName) |
static | singleton () |
Resort normal UTF-8 order by putting a bunch of stuff in PUA.
This takes a bunch of characters (The alphabet) that should, be together, and converts them all to private-use-area characters so that they are all sorted in the right order relative to each other.
This renumbers characters starting at U+F3000 (Chosen to avoid conflicts with other people using private use area)
This does not support fancy things like secondary differences, etc. (It supports digraphs, trigraphs etc. though.)
It is expected most people will subclass this and just override the constructor to hard-code an alphabet.
Definition at line 40 of file CustomUppercaseCollation.php.
array | $alphabet | Sorted array of uppercase characters. |
Language | $lang | What language for number sorting. |
Definition at line 54 of file CustomUppercaseCollation.php.
References $alphabet, UppercaseCollation\$lang, and captcha-old\count.
|
private |
Definition at line 76 of file CustomUppercaseCollation.php.
Referenced by getSortKey().
CustomUppercaseCollation::getFirstLetter | ( | $string | ) |
Given a string, return the logical "first letter" to be used for grouping on category pages and so on.
This has to be coordinated carefully with convertToSortkey(), or else the sorted list might jump back and forth between the same "initial letters" or other pathological behavior. For instance, if you just return the first character, but "a" sorts the same as "A" based on getSortKey(), then you might get a list like
== A ==
== a ==
== A ==
etc., assuming for the sake of argument that $wgCapitalLinks is false.
string | $string | UTF-8 string |
Reimplemented from NumericUppercaseCollation.
Definition at line 84 of file CustomUppercaseCollation.php.
References getSortKey().
CustomUppercaseCollation::getSortKey | ( | $string | ) |
Given a string, convert it to a (hopefully short) key that can be used for efficient sorting.
A binary sort according to the sortkeys corresponds to a logical sort of the corresponding strings. Current code expects that a line feed character should sort before all others, but has no other particular expectations (and that one can be changed if necessary).
string | $string | UTF-8 string |
Reimplemented from NumericUppercaseCollation.
Definition at line 80 of file CustomUppercaseCollation.php.
References convertToPua().
Referenced by getFirstLetter().
|
private |
Definition at line 43 of file CustomUppercaseCollation.php.
Referenced by __construct().
|
private |
Definition at line 46 of file CustomUppercaseCollation.php.