* Special:BlankPage is not part of the API
authorAryeh Gregor <simetrical@users.mediawiki.org>
Tue, 1 Jul 2008 20:22:54 +0000 (20:22 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Tue, 1 Jul 2008 20:22:54 +0000 (20:22 +0000)
* 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

RELEASE-NOTES
includes/SpecialPage.php
languages/messages/MessagesEn.php

index 12e5fc9..67e490a 100644 (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 ===
 
index ce1e2b3..d6ad6e6 100644 (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' ),
index ffc8e63..a66dcbd 100644 (file)
@@ -433,6 +433,7 @@ $specialPageAliases = array(
        'MergeHistory'              => array( 'MergeHistory' ),
        'Filepath'                  => array( 'FilePath' ),
        'Invalidateemail'           => array( 'InvalidateEmail' ),
+       'Blankpage'                 => array( 'BlankPage' ),
 );
 
 /**