| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Also made file/class documentation more consistent.
Change-Id: Ibe7815124d6915792dcbb150d01df21d9b22b0b0
|
|
|
|
|
|
|
|
|
| |
bool" and then the metadata can say true if foo, false if bar
Other documentation improvements
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/111073
|
|
|
|
|
|
|
|
|
| |
unicode code point is (aka pre-1.17 behaviour).
I'm tagging this 1.18 because the original bug was for iswiktionary wanting it, so it'd be nice to get it in 1.18.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/96765
|
|
|
|
|
|
|
| |
just taking the collation name as a class name
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/91436
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
can define new Collation classes.
(I plan to commit such an extension shortly)
Wasn't sure if it would be better to make an array mapping collation names => class names
instead. However, that seemed to be unneededly complicated so I went with
letting that variable take class names.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/90759
|
|
|
|
|
|
|
| |
for, this being PHP5 and all
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/86582
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/86123
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/81171
|
|
default tables.
* Added a maintenance script which generates a list of first letters. Unified Han are omitted for performance, and because they shouldn't be used as headings anyway. A future collation specific to Chinese would provide the KangXi radicals as "first letters".
* Provided a precomputed list of first letters. Used Unicode 6.0.0 data and ICU 4.2.
* Moved collation functionality from Language to a Collation class hierarchy with factory function. Removed the recently-added methods from Language and updated all callers.
* Changed Title::getCategorySortkey() to separate its parts with a line break instead of a null character. All collations supported by the intl extension ignore the null character, i.e. "ab" == "a\0b". It would have required a lot of hacking to make it work.
* Fixed the uppercase collation to handle non-ASCII characters, redundantly with r80436. I don't think it's necessary to change the collation name as was done there, so I reverted that in the course of my conflict merge. A --force option to updateCollation.php might be nice though.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/80443
|