* Special:BlankPage is not part of the API

* Use CamelCase for special pages
* No need to list BlankPage, that will really confuse people (although I realize Domas finds that entertaining)
* Slightly more descriptive RELEASE-NOTE
This commit is contained in:
Aryeh Gregor 2008-07-01 20:22:54 +00:00
parent a0d0785f8b
commit bc151d537b
3 changed files with 3 additions and 2 deletions

View file

@ -177,6 +177,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
* Add meta generator tag to HTML output
* Two new hooks, ExtendJSGlobalVars and wfMessageCacheReplace added
* MediawikiPerformAction hook is now passed the Mediawiki object
* Added blank special page Special:BlankPage for benchmarking, etc.
=== Bug fixes in 1.13 ===
@ -484,7 +485,6 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
* (bug 14651) apprefix and similar parameters are now canonicalized
* Added clprop=timestamp to prop=categories
* (bug 14678) API errors now respects $wgShowExceptionDetails and $wgShowSQLErrors
* Added blank special page
=== Languages updated in 1.13 ===

View file

@ -136,7 +136,7 @@ class SpecialPage
'Categories' => array( 'SpecialPage', 'Categories' ),
'Export' => array( 'SpecialPage', 'Export' ),
'Version' => array( 'SpecialPage', 'Version' ),
'Blankpage' => array( 'SpecialPage', 'Blankpage' ),
'Blankpage' => array( 'UnlistedSpecialPage', 'Blankpage' ),
'Allmessages' => array( 'SpecialPage', 'Allmessages' ),
'Log' => array( 'SpecialPage', 'Log' ),
'Blockip' => array( 'SpecialPage', 'Blockip', 'block' ),

View file

@ -433,6 +433,7 @@ $specialPageAliases = array(
'MergeHistory' => array( 'MergeHistory' ),
'Filepath' => array( 'FilePath' ),
'Invalidateemail' => array( 'InvalidateEmail' ),
'Blankpage' => array( 'BlankPage' ),
);
/**