From bc151d537b3cca5e699596e42c03c5102b4a644e Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Tue, 1 Jul 2008 20:22:54 +0000 Subject: [PATCH] * 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 --- RELEASE-NOTES | 2 +- includes/SpecialPage.php | 2 +- languages/messages/MessagesEn.php | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 12e5fc92b0..67e490afa1 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 === diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index ce1e2b357d..d6ad6e6e51 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -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' ), diff --git a/languages/messages/MessagesEn.php b/languages/messages/MessagesEn.php index ffc8e63d9a..a66dcbd093 100644 --- a/languages/messages/MessagesEn.php +++ b/languages/messages/MessagesEn.php @@ -433,6 +433,7 @@ $specialPageAliases = array( 'MergeHistory' => array( 'MergeHistory' ), 'Filepath' => array( 'FilePath' ), 'Invalidateemail' => array( 'InvalidateEmail' ), + 'Blankpage' => array( 'BlankPage' ), ); /** -- 2.20.1