Revert r49880, r49883, r49885 - add uniwiki/CreatePage extension to core
authorBrion Vibber <brion@users.mediawiki.org>
Mon, 27 Apr 2009 19:04:21 +0000 (19:04 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Mon, 27 Apr 2009 19:04:21 +0000 (19:04 +0000)
This looks pretty funky...

  A page with the title Main Page already exists. Would you like to edit the existing page?

  Yes. I want to contribute to the existing page.
  Yes. I want to contribute to the existing page.

Lack of interlinking tools means that this would promote creation of orphan pages, and the UI isn't very good. Doesn't seem to be a clear way to disable it in favor of alternate creation methods either.

39 files changed:
CREDITS
RELEASE-NOTES
includes/AutoLoader.php
includes/DefaultSettings.php
includes/SpecialPage.php
includes/specials/SpecialCreatePage.php
languages/messages/MessagesAr.php
languages/messages/MessagesArz.php
languages/messages/MessagesDe.php
languages/messages/MessagesDsb.php
languages/messages/MessagesEn.php
languages/messages/MessagesEs.php
languages/messages/MessagesFr.php
languages/messages/MessagesFrp.php
languages/messages/MessagesGl.php
languages/messages/MessagesGsw.php
languages/messages/MessagesHsb.php
languages/messages/MessagesHu.php
languages/messages/MessagesIa.php
languages/messages/MessagesIt.php
languages/messages/MessagesJa.php
languages/messages/MessagesKm.php
languages/messages/MessagesKsh.php
languages/messages/MessagesLb.php
languages/messages/MessagesMk.php
languages/messages/MessagesMt.php
languages/messages/MessagesNds_nl.php
languages/messages/MessagesNl.php
languages/messages/MessagesNo.php
languages/messages/MessagesPs.php
languages/messages/MessagesSa.php
languages/messages/MessagesSu.php
languages/messages/MessagesSv.php
languages/messages/MessagesSw.php
languages/messages/MessagesTh.php
languages/messages/MessagesTl.php
languages/messages/MessagesVec.php
maintenance/language/messageTypes.inc
maintenance/language/messages.inc

diff --git a/CREDITS b/CREDITS
index f733bc7..fb64629 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -56,7 +56,6 @@ following names for their contribution to the product.
 * Victor Vasiliev
 
 == Patch Contributors ==
-* Adam Mckaig
 * Agbad
 * Brad Jorsch
 * Brent G
@@ -66,21 +65,18 @@ following names for their contribution to the product.
 * church of emacs
 * Daniel Arnold
 * Danny B.
-* Evan Wheeler
 * FunPika
 * Happy-melon
 * Jeremy Baron
 * Jidanni
 * Juliano F. Ravasi
-* Louperivois
 * Lucas Garczewski
+* Louperivois
 * Luigi Corsaro
 * Manuel Menal
 * Marcin Cieślak
-* Mark Johnston
 * Marooned
 * Max Semenik
-* Merrick Schaefer
 * Michael De La Rue
 * Michael Walsh
 * Mike Horvath
@@ -97,7 +93,6 @@ following names for their contribution to the product.
 * Simon Walker
 * Stefano Codari
 * Str4nd
-* Travis Derouin
 
 == Translators ==
 * Anders Wegge Jakobsen
index 8540b1a..fb5c84a 100644 (file)
@@ -33,11 +33,6 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 18222) $wgMinimalPasswordLength default is now 1
 * $wgSessionHandler can be used to configure session.save_handler
 
-=== Migrated extensions ===
-The following extensions are migrated into MediaWiki 1.15:
-
-* Special:CreatePage (was extension Uniwiki CreatePage)
-
 === New features in 1.15 ===
 
 * (bug 2242) Add an expiry time to temporary passwords
index 27ad050..d6c487b 100644 (file)
@@ -495,7 +495,6 @@ $wgAutoloadLocalClasses = array(
        'ShortPagesPage' => 'includes/specials/SpecialShortpages.php',
        'SpecialAllpages' => 'includes/specials/SpecialAllpages.php',
        'SpecialBookSources' => 'includes/specials/SpecialBooksources.php',
-       'SpecialCreatePage' => 'includes/specials/SpecialCreatePage.php',
        'SpecialExport' => 'includes/specials/SpecialExport.php',
        'SpecialImport' => 'includes/specials/SpecialImport.php',
        'SpecialListGroupRights' => 'includes/specials/SpecialListgrouprights.php',
index df9bc98..b27a9e3 100644 (file)
@@ -3100,7 +3100,6 @@ $wgSpecialPageGroups = array(
        'Export'                    => 'pagetools',
        'Import'                    => 'pagetools',
        'Whatlinkshere'             => 'pagetools',
-       'CreatePage'                => 'pagetools',
 
        'Statistics'                => 'wiki',
        'Version'                   => 'wiki',
index ca4da21..bfba9ad 100644 (file)
@@ -169,7 +169,6 @@ class SpecialPage
                'Undelete'                  => array( 'SpecialPage', 'Undelete', 'deletedhistory' ),
                'Whatlinkshere'             => 'SpecialWhatlinkshere',
                'MergeHistory'              => array( 'SpecialPage', 'MergeHistory', 'mergehistory' ),  
-               'Createpage'                => 'SpecialCreatePage',
                
                # Other
                'Booksources'               => 'SpecialBookSources',
index 473129b..63dcf3e 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-
 /* This code was adapted from CreatePage.php from: Travis Derouin <travis@wikihow.com> for the Uniwiki extension CreatePage
  * Originally licensed as: GNU GPL v2.0 or later
  *
  * @author Evan Wheeler
  * @author Adam Mckaig (at UNICEF)
  * @author Siebrand Mazeland (integrated into MediaWiki core)
- * @ingroup SpecialPage
+ * @addtogroup SpecialPage
  */
+
 class SpecialCreatePage extends SpecialPage {
 
        function __construct() {
                SpecialPage::SpecialPage( 'CreatePage', 'createpage' );
        }
 
-       public function execute( $par ) {
+       public function execute( $params ) {
                global $wgOut, $wgRequest, $wgUser;
 
                $this->setHeaders();
@@ -31,34 +31,37 @@ class SpecialCreatePage extends SpecialPage {
                        return;
                }
 
-               $this->outputHeader();
+               $wgOut->addWikiMsg( 'createpage-summary' );
 
                // check to see if we are trying to create a page
-               $target = $wgRequest->getVal( 'target', $par );
-               $title = Title::newFromText( $target );
+               $target = $wgRequest->getVal ( 'target' );
+               $title = Title::newFromText ( $target );
 
                // check for no title
                if ( $wgRequest->wasPosted() && $target === '' ) {
                        $this->error( wfMsg( 'createpage-entertitle' ) );
-               } elseif ( $target !== null ) {
-                       if ( !$title instanceof Title ) {
-                               // check for invalid title
-                               $this->error( wfMsg( 'createpage-badtitle', $target ) );
-                       } else if ( $title->getArticleID() > 0 ) {
+               }
+               // check for invalid title
+               elseif ( $wgRequest->wasPosted() && is_null( $title ) ) {
+                       $this->error( wfMsg( 'createpage-badtitle', $target ) );
+               }
+               elseif ( $target != null ) {
+                       if ( $title->getArticleID() > 0 ) {
                                // if the title exists then let the user know and give other options
-                               $wgOut->addWikiMsg( 'createpage-titleexists', $title->getFullText() );
-                               $wgOut->addHTML( '<br />' );
+                               $wgOut->addWikiText ( wfMsg ( 'createpage-titleexists', $title->getFullText() ) . "<br />" );
                                $skin = $wgUser->getSkin();
-                               $editlink = $skin->makeLinkObj( $title, wfMsgHTML( 'createpage-editexisting' ), 'action=edit' );
-                               $thislink = $skin->makeLinkObj( $this->getTitle(), wfMsgHTML( 'createpage-tryagain' ) );
-                               $wgOut->addHTML( $editlink . '<br />' . $editlink );
+                               $editlink = $skin->makeLinkObj( $title, wfMsg ( 'createpage-editexisting' ), 'action=edit' );
+                               $thisPage = Title::newFromText ( 'CreatePage', NS_SPECIAL );
+                               $wgOut->addHTML ( $editlink . '<br />'
+                                       . $skin->makeLinkObj ( $thisPage, wfMsg ( 'createpage-tryagain' ) )
+                               );
                                return;
                        } else {
                                /* TODO - may want to search for closely named pages and give
                                 * other options here... */
 
                                // otherwise, redirect them to the edit page for their title
-                               $wgOut->redirect( $title->getEditURL() );
+                               $wgOut->redirect ( $title->getEditURL() );
                        }
                }
 
@@ -76,17 +79,16 @@ class SpecialCreatePage extends SpecialPage {
                }
 
                // output the form
-               $wgOut->addHTML(
-                       Xml::openElement( 'fieldset' ) .
+               $form = Xml::openElement( 'fieldset' ) .
                        Xml::element( 'legend', null, wfMsg( 'createpage' ) ) . # This should really use a different message
                        wfMsgWikiHtml( 'createpage-instructions' ) .
-                       Xml::openElement( 'form', array( 'method' => 'post', 'name' => 'createpageform', 'action' => $this->getTitle()->getLocalUrl() ) ) .
+                       Xml::openElement( 'form', array( 'method' => 'post', 'name' => 'createpageform', 'action' => '' ) ) .
                        Xml::element( 'input', array( 'type' => 'text', 'name' => 'target', 'size' => 50, 'value' => $newTitle ) ) .
                        '<br />' .
-                       Xml::element( 'input', array( 'type' => 'submit', 'value' => wfMsg( 'createpage-submitbutton' ) ) ) .
+                       Xml::element( 'input', array( 'type' => 'submit', 'value' => wfMsgHtml( 'createpage-submitbutton' ) ) ) .
                        Xml::closeElement( 'form' ) .
-                       Xml::closeElement( 'fieldset' )
-               );
+                       Xml::closeElement( 'fieldset' );
+               $wgOut->addHTML( $form );
        }
        /*
         * Function to output an error message
index efd16cb..21a866d 100644 (file)
@@ -377,7 +377,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'بحث_الوصلات' ),
        'DeletedContributions'      => array( 'مساهمات_محذوفة' ),
        'Tags'                      => array( 'وسوم' ),
-       'Createpage'                => array( 'إنشاء_صفحة' ),
 );
 
 /**
index b4dfc96..af36013 100644 (file)
@@ -282,7 +282,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'بحث_الوصلات' ),
        'DeletedContributions'      => array( 'مساهمات_محذوفة' ),
        'Tags'                      => array( 'وسوم' ),
-       'Createpage'                => array( 'إنشاء_صفحة' ),
 );
 
 $messages = array(
index c68347a..2e2cef8 100644 (file)
@@ -157,7 +157,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'Weblink-Suche' ),
        'DeletedContributions'      => array( 'Gelöschte Beiträge' ),
        'Tags'                      => array( 'Markierungen' ),
-       'Createpage'                => array( 'Seite erstellen' ),
 );
 
 $datePreferences = array(
index 71dd557..6d9d0ef 100644 (file)
@@ -145,7 +145,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'Pytanje wótkazow' ),
        'DeletedContributions'      => array( 'Wulašowane pśinoski' ),
        'Tags'                      => array( 'Toflicki' ),
-       'Createpage'                => array( 'Bok napóraś' ),
 );
 
 $messages = array(
index 4e9e064..0a455ba 100644 (file)
@@ -440,7 +440,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'LinkSearch' ),
        'DeletedContributions'      => array( 'DeletedContributions' ),
        'Tags'                      => array( 'Tags' ),
-       'Createpage'                => array( 'CreatePage' ),
 );
 
 /**
@@ -490,7 +489,6 @@ XHTML id names.
 ** currentevents-url|currentevents
 ** recentchanges-url|recentchanges
 ** randompage-url|randompage
-** createpage-url|createpage
 ** helppage|help
 * SEARCH
 * TOOLBOX
@@ -3916,17 +3914,4 @@ Enter the filename without the "{{ns:file}}:" prefix.',
 'htmlform-reset'               => 'Undo changes',
 'htmlform-selectorother-other' => 'Other',
 
-# Special:CreatePage
-'createpage'              => 'Create a page',
-'createpage-url'          => 'Special:CreatePage', # do not translate or duplicate this message to other languages
-'createpage-summary'      => '', # do not translate or duplicate this message to other languages
-'createpage-submitbutton' => 'Submit',
-'createpage-instructions' => 'Enter the title of the page you wish to create:',
-'createpage-entertitle'   => 'Please enter a title for your page.',
-'createpage-titleexists'  => 'A page with the title [[$1]] already exists.
-Would you like to edit the existing page?',
-'createpage-tryagain'     => 'No. I want to create a new page with a distinct title.',
-'createpage-editexisting' => 'Yes. I want to contribute to the existing page.',
-'createpage-badtitle'     => '"$1" cannot be used as a page title',
-
 );
index e0f626b..69405d3 100644 (file)
@@ -162,7 +162,6 @@ $specialPageAliases = array(
        'Blankpage'                 => array( 'BlanquearPágina', 'Blanquear página' ),
        'LinkSearch'                => array( 'BúsquedaDeEnlaces', 'Búsqueda de enlaces' ),
        'DeletedContributions'      => array( 'ContribucionesBorradas', 'Contribuciones Borradas' ),
-       'Createpage'                => array( 'Crear_página' ),
 );
 
 $magicWords = array(
index e4d2768..6771158 100644 (file)
@@ -308,7 +308,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'Recherche de lien', 'Recherche de liens' ),
        'DeletedContributions'      => array( 'Contributions supprimées', 'ContributionsSupprimées', 'ContributionSupprimees' ),
        'Tags'                      => array( 'Balises' ),
-       'Createpage'                => array( 'Créer page', 'CréerPage' ),
 );
 
 $separatorTransformTable = array( ',' => "\xc2\xa0", '.' => ',' );
index 8f81e28..a7764fd 100644 (file)
@@ -13,6 +13,7 @@
 
 $fallback = 'fr';
 
+
 $bookstoreList = array(
     'Amazon.fr'    => 'http://www.amazon.fr/exec/obidos/ISBN=$1',
     'alapage.fr'   => 'http://www.alapage.com/mx/?tp=F&type=101&l_isbn=$1&donnee_appel=ALASQ&devise=&',
@@ -39,10 +40,6 @@ $namespaceNames = array(
        NS_CATEGORY_TALK    => 'Discussion_Catègorie',
 );
 
-$specialPageAliases = array(
-       'Createpage' => array( 'Fâre una pâge', 'FâreUnaPâge' ),
-);
-
 $linkTrail = '/^([a-zàâçéèêîœôû·’æäåāăëēïīòöōùü‘]+)(.*)$/sDu';
 
 $dateFormats = array(
index 59aaa37..fbf9540 100644 (file)
@@ -131,7 +131,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'Buscar ligazóns web' ),
        'DeletedContributions'      => array( 'Contribucións borradas' ),
        'Tags'                      => array( 'Etiquetas' ),
-       'Createpage'                => array( 'Crear a páxina' ),
 );
 
 $magicWords = array(
index 42e8f58..ab9bec6 100644 (file)
@@ -109,7 +109,6 @@ $specialPageAliases = array(
        'Blankpage'                 => array( 'Läärsyte' ),
        'LinkSearch'                => array( 'Suech no Gleicher' ),
        'DeletedContributions'      => array( 'Gleschti Byytreeg' ),
-       'Createpage'                => array( 'Syte aalege' ),
 );
 
 $linkTrail = '/^([äöüßa-z]+)(.*)$/sDu';
index dadaec3..7f78e29 100644 (file)
@@ -127,7 +127,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'Wotkazowe pytanje' ),
        'DeletedContributions'      => array( 'Zničene přinoški' ),
        'Tags'                      => array( 'Taflički' ),
-       'Createpage'                => array( 'Stronu wutworić' ),
 );
 
 $messages = array(
index 2af41a3..93aa4b5 100644 (file)
@@ -144,7 +144,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'Hivatkozás keresés' ),
        'DeletedContributions'      => array( 'Törölt szerkesztések' ),
        'Tags'                      => array( 'Címkék' ),
-       'Createpage'                => array( 'Oldalkészítés', 'Oldal készítése' ),
 );
 
 $datePreferences = array(
index 6e8c66f..bbc4cd8 100644 (file)
@@ -127,7 +127,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'Recerca de ligamines' ),
        'DeletedContributions'      => array( 'Contributiones delite' ),
        'Tags'                      => array( 'Etiquettas' ),
-       'Createpage'                => array( 'Crear pagina' ),
 );
 
 $messages = array(
index 7f560fa..2453ab8 100644 (file)
@@ -161,7 +161,6 @@ $specialPageAliases = array(
        'Blankpage'                 => array( 'PaginaVuota' ),
        'LinkSearch'                => array( 'CercaCollegamenti' ),
        'DeletedContributions'      => array( 'ContributiCancellati' ),
-       'Createpage'                => array( 'CreaPagina' ),
 );
 
 $magicWords = array(
index c8de04b..7986617 100644 (file)
@@ -155,7 +155,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( '外部リンク検索' ),
        'DeletedContributions'      => array( '削除された投稿記録', '削除された投稿履歴', '削除歴' ),
        'Tags'                      => array( 'タグ一覧' ),
-       'Createpage'                => array( 'ページ作成' ),
 );
 
 $magicWords = array(
index b42d313..79b07f2 100644 (file)
@@ -174,7 +174,6 @@ $specialPageAliases = array(
        'Blankpage'                 => array( 'ទំព័រទទេ' ),
        'LinkSearch'                => array( 'ស្វែងរកតំណភ្ជាប់' ),
        'DeletedContributions'      => array( 'ការរួមចំណែកដែលត្រូវបានលុបចោល' ),
-       'Createpage'                => array( 'បង្កើត​ទំព័រ' ),
 );
 
 $magicWords = array(
index cbe04ee..5dedee9 100644 (file)
@@ -179,7 +179,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'Websigge Söke' ),
        'DeletedContributions'      => array( 'Fotjeschmeße' ),
        'Tags'                      => array( 'Makeerunge' ),
-       'Createpage'                => array( 'Sigge_aanlääje', 'Sigg_aanlääje' ),
 );
 
 $magicWords = array(
index 07331c6..b954d02 100644 (file)
@@ -39,6 +39,7 @@ $namespaceAliases = array(
        'Bild_Diskussioun' => NS_FILE_TALK,
 );
 
+
 $specialPageAliases = array(
        'DoubleRedirects'           => array( 'Duebel Viruleedungen' ),
        'BrokenRedirects'           => array( 'Futtis Viruleedungen' ),
@@ -127,7 +128,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'Weblink-Sich' ),
        'DeletedContributions'      => array( 'Geläschte Kontributiounen' ),
        'Tags'                      => array( 'Taggen' ),
-       'Createpage'                => array( 'Säiten uleeën' ),
 );
 
 $messages = array(
index 81ab20c..4821bca 100644 (file)
@@ -172,7 +172,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'ПребарајВрска' ),
        'DeletedContributions'      => array( 'ИзбришаниПридонеси' ),
        'Tags'                      => array( 'Приврзоци' ),
-       'Createpage'                => array( 'КреирајСтраница' ),
 );
 
 $magicWords = array(
index 3520925..3231885 100644 (file)
@@ -131,7 +131,6 @@ $specialPageAliases = array(
        'Blankpage'                 => array( 'PaġnaVojta' ),
        'LinkSearch'                => array( 'FittexĦolqa' ),
        'DeletedContributions'      => array( 'KontribuzzjonijietImħassra' ),
-       'Createpage'                => array( 'OħloqPaġna' ),
 );
 
 $magicWords = array(
index c0bee34..0b7389c 100644 (file)
@@ -275,7 +275,6 @@ $specialPageAliases = array(
        'Blankpage'                 => array( 'Lege_pagina' ),
        'LinkSearch'                => array( 'Verwiezingen_zeuken' ),
        'DeletedContributions'      => array( 'Vort-ehaolen gebrukersbiedragen' ),
-       'Createpage'                => array( 'Pagina_anmaken' ),
 );
 
 $linkTrail = '/^([a-zäöüïëéèà]+)(.*)$/sDu';
index b268615..b407db3 100644 (file)
@@ -295,7 +295,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'VerwijzingenZoeken', 'LinksZoeken' ),
        'DeletedContributions'      => array( 'VerwijderdeBijdragen' ),
        'Tags'                      => array( 'Labels' ),
-       'Createpage'                => array( 'PaginaAanmaken' ),
 );
 
 $linkTrail = '/^([a-zäöüïëéèà]+)(.*)$/sDu';
index 99cac09..1defeff 100644 (file)
@@ -164,7 +164,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'Lenkesøk' ),
        'DeletedContributions'      => array( 'Slettede bidrag' ),
        'Tags'                      => array( 'Tagger' ),
-       'Createpage'                => array( 'Opprett side' ),
 );
 
 $messages = array(
index 047c441..d6e7458 100644 (file)
@@ -76,7 +76,6 @@ $specialPageAliases = array(
        'Blankpage'                 => array( 'تش مخ' ),
        'LinkSearch'                => array( 'د تړنې پلټنه' ),
        'DeletedContributions'      => array( 'ړنګې شوي ونډې' ),
-       'Createpage'                => array( 'مخ جوړول' ),
 );
 
 $magicWords = array(
index 2c79a8b..579f535 100644 (file)
@@ -140,7 +140,6 @@ $specialPageAliases = array(
        'Blankpage'                 => array( 'रिक्तपृष्ठ' ),
        'LinkSearch'                => array( 'सम्बन्धन्‌शोध' ),
        'DeletedContributions'      => array( 'परित्यागितयोगदान' ),
-       'Createpage'                => array( 'पृष्ठस्यसृजन' ),
 );
 
 $magicWords = array(
index 40486a0..2a5fb68 100644 (file)
@@ -123,7 +123,6 @@ $specialPageAliases = array(
        'Invalidateemail'           => array( 'SurelekTeuKaci' ),
        'Blankpage'                 => array( 'KacaKosong' ),
        'Tags'                      => array( 'Tag' ),
-       'Createpage'                => array( 'JieunKaca' ),
 );
 
 $messages = array(
index c553248..d50b6bf 100644 (file)
@@ -141,7 +141,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'Länksökning' ),
        'DeletedContributions'      => array( 'Raderade bidrag' ),
        'Tags'                      => array( 'Taggar' ),
-       'Createpage'                => array( 'Skapa sida' ),
 );
 
 $magicWords = array(
index 28875c7..412f9a0 100644 (file)
@@ -108,7 +108,6 @@ $specialPageAliases = array(
        'Blankpage'                 => array( 'KurasaTupu' ),
        'LinkSearch'                => array( 'TafutaKiungo' ),
        'DeletedContributions'      => array( 'MichangoIliyofutwa' ),
-       'Createpage'                => array( 'AnzishaUkurasa' ),
 );
 
 $messages = array(
index 0783b31..6f11298 100644 (file)
@@ -129,7 +129,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'ค้นหาเว็บลิงก์' ),
        'DeletedContributions'      => array( 'การแก้ไขที่ถูกลบ' ),
        'Tags'                      => array( 'ป้ายกำักับ' ),
-       'Createpage'                => array( 'สร้างหน้า' ),
 );
 
 $magicWords = array(
index caafc2f..c597326 100644 (file)
@@ -128,7 +128,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'Paghahanap ng kawing' ),
        'DeletedContributions'      => array( 'Naburang mga ambag' ),
        'Tags'                      => array( 'Mga tatak' ),
-       'Createpage'                => array( 'Likhain ang pahina', 'LikhaPahina' ),
 );
 
 $messages = array(
index 738f14b..f0507e5 100644 (file)
@@ -128,7 +128,6 @@ $specialPageAliases = array(
        'LinkSearch'                => array( 'SercaLigamenti' ),
        'DeletedContributions'      => array( 'ContributiScancelà' ),
        'Tags'                      => array( 'Tag' ),
-       'Createpage'                => array( 'CreaPàxena' ),
 );
 
 $messages = array(
index 0762c1f..8d516a1 100644 (file)
@@ -154,8 +154,6 @@ $wgIgnoredMessages = array(
        'upload-summary',
        'newuserlogentry',
        'wantedtemplates-summary',
-       'createpage-summary',
-       'createpage-url',
 );
 
 /** Optional messages, which may be translated only if changed in the target language. */
index 0a8c29e..be01e2a 100644 (file)
@@ -2983,18 +2983,6 @@ $wgMessageStructure = array(
                'htmlform-reset',
                'htmlform-selectorother-other',
        ),
-       'createpage' => array(
-               'createpage',
-               'createpage-url',
-               'createpage-summary',
-               'createpage-submitbutton',
-               'createpage-instructions',
-               'createpage-entertitle',
-               'createpage-titleexists',
-               'createpage-tryagain',
-               'createpage-editexisting',
-               'createpage-badtitle',
-       ),
 );
 
 /** Comments for each block */
@@ -3200,5 +3188,4 @@ Variants for Chinese language",
        'special-tags'          => 'Special:Tags',
        'db-error-messages'     => 'Database error messages',
        'html-forms'            => 'HTML forms',
-       'createpage'            => 'Special:CreatePage',
 );