Index: trunk/extensions/uniwiki/UniwikiSettings.php |
— | — | @@ -18,7 +18,6 @@ |
19 | 19 | # Broken. creditLink() missing. |
20 | 20 | #require_once("$uw/Authors/Authors.php"); |
21 | 21 | require_once("$uw/CustomToolbar/CustomToolbar.php"); |
22 | | -# Obsolete. Added to MediaWiki 1.15 alpha in r49880 |
23 | | -#require_once("$uw/CreatePage/CreatePage.php"); |
| 22 | +require_once("$uw/CreatePage/CreatePage.php"); |
24 | 23 | require_once("$uw/FormatChanges/FormatChanges.php"); |
25 | 24 | require_once("$uw/FormatSearch/FormatSearch.php"); |
Index: trunk/extensions/uniwiki/CreatePage/OBSOLETE |
— | — | @@ -1,4 +0,0 @@ |
2 | | -As of MediaWiki 1.15 alpha r49880 this extension is obsolete. Its functionality |
3 | | -was integrated into MediaWiki's core. |
4 | | - |
5 | | -In the future it will be deleted from subversion. |
\ No newline at end of file |
Index: trunk/extensions/Translate/groups/MediaWikiExtensions.php |
— | — | @@ -554,6 +554,7 @@ |
555 | 555 | 'ext-uniwiki-authors', |
556 | 556 | 'ext-uniwiki-autocreatecategorypages', |
557 | 557 | 'ext-uniwiki-catboxattop', |
| 558 | + 'ext-uniwiki-createpage', |
558 | 559 | 'ext-uniwiki-csshooks', |
559 | 560 | 'ext-uniwiki-customtoolbar', |
560 | 561 | 'ext-uniwiki-formatchanges', |
Index: trunk/extensions/Translate/groups/mediawiki-defines.txt |
— | — | @@ -835,6 +835,11 @@ |
836 | 836 | file = uniwiki/CatBoxAtTop/CatBoxAtTop.i18n.php |
837 | 837 | descmsg = catboxattop-desc |
838 | 838 | |
| 839 | +Uniwiki - Create Page |
| 840 | +id = ext-uniwiki-createpage |
| 841 | +file = uniwiki/CreatePage/CreatePage.i18n.php |
| 842 | +descmsg = createpage-desc |
| 843 | + |
839 | 844 | Uniwiki - Css Hooks |
840 | 845 | id = ext-uniwiki-csshooks |
841 | 846 | file = uniwiki/CssHooks/CssHooks.i18n.php |
Index: trunk/extensions/Translate/aliases.txt |
— | — | @@ -271,6 +271,9 @@ |
272 | 272 | Translate |
273 | 273 | file = Translate/Translate.alias.php |
274 | 274 | |
| 275 | +Uniwiki Create page |
| 276 | +file = uniwiki/CreatePage/CreatePage.alias.php |
| 277 | + |
275 | 278 | Usage statistics |
276 | 279 | file = UsageStatistics/SpecialUserStats.alias.php |
277 | 280 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -33,11 +33,6 @@ |
34 | 34 | * (bug 18222) $wgMinimalPasswordLength default is now 1 |
35 | 35 | * $wgSessionHandler can be used to configure session.save_handler |
36 | 36 | |
37 | | -=== Migrated extensions === |
38 | | -The following extensions are migrated into MediaWiki 1.15: |
39 | | - |
40 | | -* Special:CreatePage (was extension Uniwiki CreatePage) |
41 | | - |
42 | 37 | === New features in 1.15 === |
43 | 38 | |
44 | 39 | * (bug 2242) Add an expiry time to temporary passwords |
Index: trunk/phase3/includes/AutoLoader.php |
— | — | @@ -495,7 +495,6 @@ |
496 | 496 | 'ShortPagesPage' => 'includes/specials/SpecialShortpages.php', |
497 | 497 | 'SpecialAllpages' => 'includes/specials/SpecialAllpages.php', |
498 | 498 | 'SpecialBookSources' => 'includes/specials/SpecialBooksources.php', |
499 | | - 'SpecialCreatePage' => 'includes/specials/SpecialCreatePage.php', |
500 | 499 | 'SpecialExport' => 'includes/specials/SpecialExport.php', |
501 | 500 | 'SpecialImport' => 'includes/specials/SpecialImport.php', |
502 | 501 | 'SpecialListGroupRights' => 'includes/specials/SpecialListgrouprights.php', |
Index: trunk/phase3/includes/specials/SpecialCreatePage.php |
— | — | @@ -1,5 +1,4 @@ |
2 | 2 | <?php |
3 | | - |
4 | 3 | /* This code was adapted from CreatePage.php from: Travis Derouin <travis@wikihow.com> for the Uniwiki extension CreatePage |
5 | 4 | * Originally licensed as: GNU GPL v2.0 or later |
6 | 5 | * |
— | — | @@ -13,15 +12,16 @@ |
14 | 13 | * @author Evan Wheeler |
15 | 14 | * @author Adam Mckaig (at UNICEF) |
16 | 15 | * @author Siebrand Mazeland (integrated into MediaWiki core) |
17 | | - * @ingroup SpecialPage |
| 16 | + * @addtogroup SpecialPage |
18 | 17 | */ |
| 18 | + |
19 | 19 | class SpecialCreatePage extends SpecialPage { |
20 | 20 | |
21 | 21 | function __construct() { |
22 | 22 | SpecialPage::SpecialPage( 'CreatePage', 'createpage' ); |
23 | 23 | } |
24 | 24 | |
25 | | - public function execute( $par ) { |
| 25 | + public function execute( $params ) { |
26 | 26 | global $wgOut, $wgRequest, $wgUser; |
27 | 27 | |
28 | 28 | $this->setHeaders(); |
— | — | @@ -31,34 +31,37 @@ |
32 | 32 | return; |
33 | 33 | } |
34 | 34 | |
35 | | - $this->outputHeader(); |
| 35 | + $wgOut->addWikiMsg( 'createpage-summary' ); |
36 | 36 | |
37 | 37 | // check to see if we are trying to create a page |
38 | | - $target = $wgRequest->getVal( 'target', $par ); |
39 | | - $title = Title::newFromText( $target ); |
| 38 | + $target = $wgRequest->getVal ( 'target' ); |
| 39 | + $title = Title::newFromText ( $target ); |
40 | 40 | |
41 | 41 | // check for no title |
42 | 42 | if ( $wgRequest->wasPosted() && $target === '' ) { |
43 | 43 | $this->error( wfMsg( 'createpage-entertitle' ) ); |
44 | | - } elseif ( $target !== null ) { |
45 | | - if ( !$title instanceof Title ) { |
46 | | - // check for invalid title |
47 | | - $this->error( wfMsg( 'createpage-badtitle', $target ) ); |
48 | | - } else if ( $title->getArticleID() > 0 ) { |
| 44 | + } |
| 45 | + // check for invalid title |
| 46 | + elseif ( $wgRequest->wasPosted() && is_null( $title ) ) { |
| 47 | + $this->error( wfMsg( 'createpage-badtitle', $target ) ); |
| 48 | + } |
| 49 | + elseif ( $target != null ) { |
| 50 | + if ( $title->getArticleID() > 0 ) { |
49 | 51 | // if the title exists then let the user know and give other options |
50 | | - $wgOut->addWikiMsg( 'createpage-titleexists', $title->getFullText() ); |
51 | | - $wgOut->addHTML( '<br />' ); |
| 52 | + $wgOut->addWikiText ( wfMsg ( 'createpage-titleexists', $title->getFullText() ) . "<br />" ); |
52 | 53 | $skin = $wgUser->getSkin(); |
53 | | - $editlink = $skin->makeLinkObj( $title, wfMsgHTML( 'createpage-editexisting' ), 'action=edit' ); |
54 | | - $thislink = $skin->makeLinkObj( $this->getTitle(), wfMsgHTML( 'createpage-tryagain' ) ); |
55 | | - $wgOut->addHTML( $editlink . '<br />' . $editlink ); |
| 54 | + $editlink = $skin->makeLinkObj( $title, wfMsg ( 'createpage-editexisting' ), 'action=edit' ); |
| 55 | + $thisPage = Title::newFromText ( 'CreatePage', NS_SPECIAL ); |
| 56 | + $wgOut->addHTML ( $editlink . '<br />' |
| 57 | + . $skin->makeLinkObj ( $thisPage, wfMsg ( 'createpage-tryagain' ) ) |
| 58 | + ); |
56 | 59 | return; |
57 | 60 | } else { |
58 | 61 | /* TODO - may want to search for closely named pages and give |
59 | 62 | * other options here... */ |
60 | 63 | |
61 | 64 | // otherwise, redirect them to the edit page for their title |
62 | | - $wgOut->redirect( $title->getEditURL() ); |
| 65 | + $wgOut->redirect ( $title->getEditURL() ); |
63 | 66 | } |
64 | 67 | } |
65 | 68 | |
— | — | @@ -76,17 +79,16 @@ |
77 | 80 | } |
78 | 81 | |
79 | 82 | // output the form |
80 | | - $wgOut->addHTML( |
81 | | - Xml::openElement( 'fieldset' ) . |
| 83 | + $form = Xml::openElement( 'fieldset' ) . |
82 | 84 | Xml::element( 'legend', null, wfMsg( 'createpage' ) ) . # This should really use a different message |
83 | 85 | wfMsgWikiHtml( 'createpage-instructions' ) . |
84 | | - Xml::openElement( 'form', array( 'method' => 'post', 'name' => 'createpageform', 'action' => $this->getTitle()->getLocalUrl() ) ) . |
| 86 | + Xml::openElement( 'form', array( 'method' => 'post', 'name' => 'createpageform', 'action' => '' ) ) . |
85 | 87 | Xml::element( 'input', array( 'type' => 'text', 'name' => 'target', 'size' => 50, 'value' => $newTitle ) ) . |
86 | 88 | '<br />' . |
87 | | - Xml::element( 'input', array( 'type' => 'submit', 'value' => wfMsg( 'createpage-submitbutton' ) ) ) . |
| 89 | + Xml::element( 'input', array( 'type' => 'submit', 'value' => wfMsgHtml( 'createpage-submitbutton' ) ) ) . |
88 | 90 | Xml::closeElement( 'form' ) . |
89 | | - Xml::closeElement( 'fieldset' ) |
90 | | - ); |
| 91 | + Xml::closeElement( 'fieldset' ); |
| 92 | + $wgOut->addHTML( $form ); |
91 | 93 | } |
92 | 94 | /* |
93 | 95 | * Function to output an error message |
Index: trunk/phase3/includes/SpecialPage.php |
— | — | @@ -169,7 +169,6 @@ |
170 | 170 | 'Undelete' => array( 'SpecialPage', 'Undelete', 'deletedhistory' ), |
171 | 171 | 'Whatlinkshere' => 'SpecialWhatlinkshere', |
172 | 172 | 'MergeHistory' => array( 'SpecialPage', 'MergeHistory', 'mergehistory' ), |
173 | | - 'Createpage' => 'SpecialCreatePage', |
174 | 173 | |
175 | 174 | # Other |
176 | 175 | 'Booksources' => 'SpecialBookSources', |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -3100,7 +3100,6 @@ |
3101 | 3101 | 'Export' => 'pagetools', |
3102 | 3102 | 'Import' => 'pagetools', |
3103 | 3103 | 'Whatlinkshere' => 'pagetools', |
3104 | | - 'CreatePage' => 'pagetools', |
3105 | 3104 | |
3106 | 3105 | 'Statistics' => 'wiki', |
3107 | 3106 | 'Version' => 'wiki', |
Index: trunk/phase3/languages/messages/MessagesFrp.php |
— | — | @@ -13,6 +13,7 @@ |
14 | 14 | |
15 | 15 | $fallback = 'fr'; |
16 | 16 | |
| 17 | + |
17 | 18 | $bookstoreList = array( |
18 | 19 | 'Amazon.fr' => 'http://www.amazon.fr/exec/obidos/ISBN=$1', |
19 | 20 | 'alapage.fr' => 'http://www.alapage.com/mx/?tp=F&type=101&l_isbn=$1&donnee_appel=ALASQ&devise=&', |
— | — | @@ -39,10 +40,6 @@ |
40 | 41 | NS_CATEGORY_TALK => 'Discussion_Catègorie', |
41 | 42 | ); |
42 | 43 | |
43 | | -$specialPageAliases = array( |
44 | | - 'Createpage' => array( 'Fâre una pâge', 'FâreUnaPâge' ), |
45 | | -); |
46 | | - |
47 | 44 | $linkTrail = '/^([a-zàâçéèêîœôû·’æäåāăëēïīòöōùü‘]+)(.*)$/sDu'; |
48 | 45 | |
49 | 46 | $dateFormats = array( |
Index: trunk/phase3/languages/messages/MessagesDsb.php |
— | — | @@ -145,7 +145,6 @@ |
146 | 146 | 'LinkSearch' => array( 'Pytanje wótkazow' ), |
147 | 147 | 'DeletedContributions' => array( 'Wulašowane pśinoski' ), |
148 | 148 | 'Tags' => array( 'Toflicki' ), |
149 | | - 'Createpage' => array( 'Bok napóraś' ), |
150 | 149 | ); |
151 | 150 | |
152 | 151 | $messages = array( |
Index: trunk/phase3/languages/messages/MessagesIa.php |
— | — | @@ -127,7 +127,6 @@ |
128 | 128 | 'LinkSearch' => array( 'Recerca de ligamines' ), |
129 | 129 | 'DeletedContributions' => array( 'Contributiones delite' ), |
130 | 130 | 'Tags' => array( 'Etiquettas' ), |
131 | | - 'Createpage' => array( 'Crear pagina' ), |
132 | 131 | ); |
133 | 132 | |
134 | 133 | $messages = array( |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -440,7 +440,6 @@ |
441 | 441 | 'LinkSearch' => array( 'LinkSearch' ), |
442 | 442 | 'DeletedContributions' => array( 'DeletedContributions' ), |
443 | 443 | 'Tags' => array( 'Tags' ), |
444 | | - 'Createpage' => array( 'CreatePage' ), |
445 | 444 | ); |
446 | 445 | |
447 | 446 | /** |
— | — | @@ -490,7 +489,6 @@ |
491 | 490 | ** currentevents-url|currentevents |
492 | 491 | ** recentchanges-url|recentchanges |
493 | 492 | ** randompage-url|randompage |
494 | | -** createpage-url|createpage |
495 | 493 | ** helppage|help |
496 | 494 | * SEARCH |
497 | 495 | * TOOLBOX |
— | — | @@ -3916,17 +3914,4 @@ |
3917 | 3915 | 'htmlform-reset' => 'Undo changes', |
3918 | 3916 | 'htmlform-selectorother-other' => 'Other', |
3919 | 3917 | |
3920 | | -# Special:CreatePage |
3921 | | -'createpage' => 'Create a page', |
3922 | | -'createpage-url' => 'Special:CreatePage', # do not translate or duplicate this message to other languages |
3923 | | -'createpage-summary' => '', # do not translate or duplicate this message to other languages |
3924 | | -'createpage-submitbutton' => 'Submit', |
3925 | | -'createpage-instructions' => 'Enter the title of the page you wish to create:', |
3926 | | -'createpage-entertitle' => 'Please enter a title for your page.', |
3927 | | -'createpage-titleexists' => 'A page with the title [[$1]] already exists. |
3928 | | -Would you like to edit the existing page?', |
3929 | | -'createpage-tryagain' => 'No. I want to create a new page with a distinct title.', |
3930 | | -'createpage-editexisting' => 'Yes. I want to contribute to the existing page.', |
3931 | | -'createpage-badtitle' => '"$1" cannot be used as a page title', |
3932 | | - |
3933 | 3918 | ); |
Index: trunk/phase3/languages/messages/MessagesMt.php |
— | — | @@ -131,7 +131,6 @@ |
132 | 132 | 'Blankpage' => array( 'PaġnaVojta' ), |
133 | 133 | 'LinkSearch' => array( 'FittexĦolqa' ), |
134 | 134 | 'DeletedContributions' => array( 'KontribuzzjonijietImħassra' ), |
135 | | - 'Createpage' => array( 'OħloqPaġna' ), |
136 | 135 | ); |
137 | 136 | |
138 | 137 | $magicWords = array( |
Index: trunk/phase3/languages/messages/MessagesKsh.php |
— | — | @@ -179,7 +179,6 @@ |
180 | 180 | 'LinkSearch' => array( 'Websigge Söke' ), |
181 | 181 | 'DeletedContributions' => array( 'Fotjeschmeße' ), |
182 | 182 | 'Tags' => array( 'Makeerunge' ), |
183 | | - 'Createpage' => array( 'Sigge_aanlääje', 'Sigg_aanlääje' ), |
184 | 183 | ); |
185 | 184 | |
186 | 185 | $magicWords = array( |
Index: trunk/phase3/languages/messages/MessagesNo.php |
— | — | @@ -164,7 +164,6 @@ |
165 | 165 | 'LinkSearch' => array( 'Lenkesøk' ), |
166 | 166 | 'DeletedContributions' => array( 'Slettede bidrag' ), |
167 | 167 | 'Tags' => array( 'Tagger' ), |
168 | | - 'Createpage' => array( 'Opprett side' ), |
169 | 168 | ); |
170 | 169 | |
171 | 170 | $messages = array( |
Index: trunk/phase3/languages/messages/MessagesGl.php |
— | — | @@ -131,7 +131,6 @@ |
132 | 132 | 'LinkSearch' => array( 'Buscar ligazóns web' ), |
133 | 133 | 'DeletedContributions' => array( 'Contribucións borradas' ), |
134 | 134 | 'Tags' => array( 'Etiquetas' ), |
135 | | - 'Createpage' => array( 'Crear a páxina' ), |
136 | 135 | ); |
137 | 136 | |
138 | 137 | $magicWords = array( |
Index: trunk/phase3/languages/messages/MessagesSa.php |
— | — | @@ -140,7 +140,6 @@ |
141 | 141 | 'Blankpage' => array( 'रिक्तपृष्ठ' ), |
142 | 142 | 'LinkSearch' => array( 'सम्बन्धन्शोध' ), |
143 | 143 | 'DeletedContributions' => array( 'परित्यागितयोगदान' ), |
144 | | - 'Createpage' => array( 'पृष्ठस्यसृजन' ), |
145 | 144 | ); |
146 | 145 | |
147 | 146 | $magicWords = array( |
Index: trunk/phase3/languages/messages/MessagesSu.php |
— | — | @@ -123,7 +123,6 @@ |
124 | 124 | 'Invalidateemail' => array( 'SurelekTeuKaci' ), |
125 | 125 | 'Blankpage' => array( 'KacaKosong' ), |
126 | 126 | 'Tags' => array( 'Tag' ), |
127 | | - 'Createpage' => array( 'JieunKaca' ), |
128 | 127 | ); |
129 | 128 | |
130 | 129 | $messages = array( |
Index: trunk/phase3/languages/messages/MessagesLb.php |
— | — | @@ -39,6 +39,7 @@ |
40 | 40 | 'Bild_Diskussioun' => NS_FILE_TALK, |
41 | 41 | ); |
42 | 42 | |
| 43 | + |
43 | 44 | $specialPageAliases = array( |
44 | 45 | 'DoubleRedirects' => array( 'Duebel Viruleedungen' ), |
45 | 46 | 'BrokenRedirects' => array( 'Futtis Viruleedungen' ), |
— | — | @@ -127,7 +128,6 @@ |
128 | 129 | 'LinkSearch' => array( 'Weblink-Sich' ), |
129 | 130 | 'DeletedContributions' => array( 'Geläschte Kontributiounen' ), |
130 | 131 | 'Tags' => array( 'Taggen' ), |
131 | | - 'Createpage' => array( 'Säiten uleeën' ), |
132 | 132 | ); |
133 | 133 | |
134 | 134 | $messages = array( |
Index: trunk/phase3/languages/messages/MessagesTh.php |
— | — | @@ -129,7 +129,6 @@ |
130 | 130 | 'LinkSearch' => array( 'ค้นหาเว็บลิงก์' ), |
131 | 131 | 'DeletedContributions' => array( 'การแก้ไขที่ถูกลบ' ), |
132 | 132 | 'Tags' => array( 'ป้ายกำักับ' ), |
133 | | - 'Createpage' => array( 'สร้างหน้า' ), |
134 | 133 | ); |
135 | 134 | |
136 | 135 | $magicWords = array( |
Index: trunk/phase3/languages/messages/MessagesNds_nl.php |
— | — | @@ -275,7 +275,6 @@ |
276 | 276 | 'Blankpage' => array( 'Lege_pagina' ), |
277 | 277 | 'LinkSearch' => array( 'Verwiezingen_zeuken' ), |
278 | 278 | 'DeletedContributions' => array( 'Vort-ehaolen gebrukersbiedragen' ), |
279 | | - 'Createpage' => array( 'Pagina_anmaken' ), |
280 | 279 | ); |
281 | 280 | |
282 | 281 | $linkTrail = '/^([a-zäöüïëéèà]+)(.*)$/sDu'; |
Index: trunk/phase3/languages/messages/MessagesTl.php |
— | — | @@ -128,7 +128,6 @@ |
129 | 129 | 'LinkSearch' => array( 'Paghahanap ng kawing' ), |
130 | 130 | 'DeletedContributions' => array( 'Naburang mga ambag' ), |
131 | 131 | 'Tags' => array( 'Mga tatak' ), |
132 | | - 'Createpage' => array( 'Likhain ang pahina', 'LikhaPahina' ), |
133 | 132 | ); |
134 | 133 | |
135 | 134 | $messages = array( |
Index: trunk/phase3/languages/messages/MessagesEs.php |
— | — | @@ -162,7 +162,6 @@ |
163 | 163 | 'Blankpage' => array( 'BlanquearPágina', 'Blanquear página' ), |
164 | 164 | 'LinkSearch' => array( 'BúsquedaDeEnlaces', 'Búsqueda de enlaces' ), |
165 | 165 | 'DeletedContributions' => array( 'ContribucionesBorradas', 'Contribuciones Borradas' ), |
166 | | - 'Createpage' => array( 'Crear_página' ), |
167 | 166 | ); |
168 | 167 | |
169 | 168 | $magicWords = array( |
Index: trunk/phase3/languages/messages/MessagesJa.php |
— | — | @@ -155,7 +155,6 @@ |
156 | 156 | 'LinkSearch' => array( '外部リンク検索' ), |
157 | 157 | 'DeletedContributions' => array( '削除された投稿記録', '削除された投稿履歴', '削除歴' ), |
158 | 158 | 'Tags' => array( 'タグ一覧' ), |
159 | | - 'Createpage' => array( 'ページ作成' ), |
160 | 159 | ); |
161 | 160 | |
162 | 161 | $magicWords = array( |
Index: trunk/phase3/languages/messages/MessagesGsw.php |
— | — | @@ -109,7 +109,6 @@ |
110 | 110 | 'Blankpage' => array( 'Läärsyte' ), |
111 | 111 | 'LinkSearch' => array( 'Suech no Gleicher' ), |
112 | 112 | 'DeletedContributions' => array( 'Gleschti Byytreeg' ), |
113 | | - 'Createpage' => array( 'Syte aalege' ), |
114 | 113 | ); |
115 | 114 | |
116 | 115 | $linkTrail = '/^([äöüßa-z]+)(.*)$/sDu'; |
Index: trunk/phase3/languages/messages/MessagesFr.php |
— | — | @@ -308,7 +308,6 @@ |
309 | 309 | 'LinkSearch' => array( 'Recherche de lien', 'Recherche de liens' ), |
310 | 310 | 'DeletedContributions' => array( 'Contributions supprimées', 'ContributionsSupprimées', 'ContributionSupprimees' ), |
311 | 311 | 'Tags' => array( 'Balises' ), |
312 | | - 'Createpage' => array( 'Créer page', 'CréerPage' ), |
313 | 312 | ); |
314 | 313 | |
315 | 314 | $separatorTransformTable = array( ',' => "\xc2\xa0", '.' => ',' ); |
Index: trunk/phase3/languages/messages/MessagesNl.php |
— | — | @@ -295,7 +295,6 @@ |
296 | 296 | 'LinkSearch' => array( 'VerwijzingenZoeken', 'LinksZoeken' ), |
297 | 297 | 'DeletedContributions' => array( 'VerwijderdeBijdragen' ), |
298 | 298 | 'Tags' => array( 'Labels' ), |
299 | | - 'Createpage' => array( 'PaginaAanmaken' ), |
300 | 299 | ); |
301 | 300 | |
302 | 301 | $linkTrail = '/^([a-zäöüïëéèà]+)(.*)$/sDu'; |
Index: trunk/phase3/languages/messages/MessagesHsb.php |
— | — | @@ -127,7 +127,6 @@ |
128 | 128 | 'LinkSearch' => array( 'Wotkazowe pytanje' ), |
129 | 129 | 'DeletedContributions' => array( 'Zničene přinoški' ), |
130 | 130 | 'Tags' => array( 'Taflički' ), |
131 | | - 'Createpage' => array( 'Stronu wutworić' ), |
132 | 131 | ); |
133 | 132 | |
134 | 133 | $messages = array( |
Index: trunk/phase3/languages/messages/MessagesSv.php |
— | — | @@ -141,7 +141,6 @@ |
142 | 142 | 'LinkSearch' => array( 'Länksökning' ), |
143 | 143 | 'DeletedContributions' => array( 'Raderade bidrag' ), |
144 | 144 | 'Tags' => array( 'Taggar' ), |
145 | | - 'Createpage' => array( 'Skapa sida' ), |
146 | 145 | ); |
147 | 146 | |
148 | 147 | $magicWords = array( |
Index: trunk/phase3/languages/messages/MessagesDe.php |
— | — | @@ -157,7 +157,6 @@ |
158 | 158 | 'LinkSearch' => array( 'Weblink-Suche' ), |
159 | 159 | 'DeletedContributions' => array( 'Gelöschte Beiträge' ), |
160 | 160 | 'Tags' => array( 'Markierungen' ), |
161 | | - 'Createpage' => array( 'Seite erstellen' ), |
162 | 161 | ); |
163 | 162 | |
164 | 163 | $datePreferences = array( |
Index: trunk/phase3/languages/messages/MessagesArz.php |
— | — | @@ -282,7 +282,6 @@ |
283 | 283 | 'LinkSearch' => array( 'بحث_الوصلات' ), |
284 | 284 | 'DeletedContributions' => array( 'مساهمات_محذوفة' ), |
285 | 285 | 'Tags' => array( 'وسوم' ), |
286 | | - 'Createpage' => array( 'إنشاء_صفحة' ), |
287 | 286 | ); |
288 | 287 | |
289 | 288 | $messages = array( |
Index: trunk/phase3/languages/messages/MessagesVec.php |
— | — | @@ -128,7 +128,6 @@ |
129 | 129 | 'LinkSearch' => array( 'SercaLigamenti' ), |
130 | 130 | 'DeletedContributions' => array( 'ContributiScancelà' ), |
131 | 131 | 'Tags' => array( 'Tag' ), |
132 | | - 'Createpage' => array( 'CreaPàxena' ), |
133 | 132 | ); |
134 | 133 | |
135 | 134 | $messages = array( |
Index: trunk/phase3/languages/messages/MessagesKm.php |
— | — | @@ -174,7 +174,6 @@ |
175 | 175 | 'Blankpage' => array( 'ទំព័រទទេ' ), |
176 | 176 | 'LinkSearch' => array( 'ស្វែងរកតំណភ្ជាប់' ), |
177 | 177 | 'DeletedContributions' => array( 'ការរួមចំណែកដែលត្រូវបានលុបចោល' ), |
178 | | - 'Createpage' => array( 'បង្កើតទំព័រ' ), |
179 | 178 | ); |
180 | 179 | |
181 | 180 | $magicWords = array( |
Index: trunk/phase3/languages/messages/MessagesSw.php |
— | — | @@ -108,7 +108,6 @@ |
109 | 109 | 'Blankpage' => array( 'KurasaTupu' ), |
110 | 110 | 'LinkSearch' => array( 'TafutaKiungo' ), |
111 | 111 | 'DeletedContributions' => array( 'MichangoIliyofutwa' ), |
112 | | - 'Createpage' => array( 'AnzishaUkurasa' ), |
113 | 112 | ); |
114 | 113 | |
115 | 114 | $messages = array( |
Index: trunk/phase3/languages/messages/MessagesHu.php |
— | — | @@ -144,7 +144,6 @@ |
145 | 145 | 'LinkSearch' => array( 'Hivatkozás keresés' ), |
146 | 146 | 'DeletedContributions' => array( 'Törölt szerkesztések' ), |
147 | 147 | 'Tags' => array( 'Címkék' ), |
148 | | - 'Createpage' => array( 'Oldalkészítés', 'Oldal készítése' ), |
149 | 148 | ); |
150 | 149 | |
151 | 150 | $datePreferences = array( |
Index: trunk/phase3/languages/messages/MessagesPs.php |
— | — | @@ -76,7 +76,6 @@ |
77 | 77 | 'Blankpage' => array( 'تش مخ' ), |
78 | 78 | 'LinkSearch' => array( 'د تړنې پلټنه' ), |
79 | 79 | 'DeletedContributions' => array( 'ړنګې شوي ونډې' ), |
80 | | - 'Createpage' => array( 'مخ جوړول' ), |
81 | 80 | ); |
82 | 81 | |
83 | 82 | $magicWords = array( |
Index: trunk/phase3/languages/messages/MessagesAr.php |
— | — | @@ -377,7 +377,6 @@ |
378 | 378 | 'LinkSearch' => array( 'بحث_الوصلات' ), |
379 | 379 | 'DeletedContributions' => array( 'مساهمات_محذوفة' ), |
380 | 380 | 'Tags' => array( 'وسوم' ), |
381 | | - 'Createpage' => array( 'إنشاء_صفحة' ), |
382 | 381 | ); |
383 | 382 | |
384 | 383 | /** |
Index: trunk/phase3/languages/messages/MessagesMk.php |
— | — | @@ -172,7 +172,6 @@ |
173 | 173 | 'LinkSearch' => array( 'ПребарајВрска' ), |
174 | 174 | 'DeletedContributions' => array( 'ИзбришаниПридонеси' ), |
175 | 175 | 'Tags' => array( 'Приврзоци' ), |
176 | | - 'Createpage' => array( 'КреирајСтраница' ), |
177 | 176 | ); |
178 | 177 | |
179 | 178 | $magicWords = array( |
Index: trunk/phase3/languages/messages/MessagesIt.php |
— | — | @@ -161,7 +161,6 @@ |
162 | 162 | 'Blankpage' => array( 'PaginaVuota' ), |
163 | 163 | 'LinkSearch' => array( 'CercaCollegamenti' ), |
164 | 164 | 'DeletedContributions' => array( 'ContributiCancellati' ), |
165 | | - 'Createpage' => array( 'CreaPagina' ), |
166 | 165 | ); |
167 | 166 | |
168 | 167 | $magicWords = array( |
Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -2983,18 +2983,6 @@ |
2984 | 2984 | 'htmlform-reset', |
2985 | 2985 | 'htmlform-selectorother-other', |
2986 | 2986 | ), |
2987 | | - 'createpage' => array( |
2988 | | - 'createpage', |
2989 | | - 'createpage-url', |
2990 | | - 'createpage-summary', |
2991 | | - 'createpage-submitbutton', |
2992 | | - 'createpage-instructions', |
2993 | | - 'createpage-entertitle', |
2994 | | - 'createpage-titleexists', |
2995 | | - 'createpage-tryagain', |
2996 | | - 'createpage-editexisting', |
2997 | | - 'createpage-badtitle', |
2998 | | - ), |
2999 | 2987 | ); |
3000 | 2988 | |
3001 | 2989 | /** Comments for each block */ |
— | — | @@ -3200,5 +3188,4 @@ |
3201 | 3189 | 'special-tags' => 'Special:Tags', |
3202 | 3190 | 'db-error-messages' => 'Database error messages', |
3203 | 3191 | 'html-forms' => 'HTML forms', |
3204 | | - 'createpage' => 'Special:CreatePage', |
3205 | 3192 | ); |
Index: trunk/phase3/maintenance/language/messageTypes.inc |
— | — | @@ -154,8 +154,6 @@ |
155 | 155 | 'upload-summary', |
156 | 156 | 'newuserlogentry', |
157 | 157 | 'wantedtemplates-summary', |
158 | | - 'createpage-summary', |
159 | | - 'createpage-url', |
160 | 158 | ); |
161 | 159 | |
162 | 160 | /** Optional messages, which may be translated only if changed in the target language. */ |
Index: trunk/phase3/CREDITS |
— | — | @@ -56,7 +56,6 @@ |
57 | 57 | * Victor Vasiliev |
58 | 58 | |
59 | 59 | == Patch Contributors == |
60 | | -* Adam Mckaig |
61 | 60 | * Agbad |
62 | 61 | * Brad Jorsch |
63 | 62 | * Brent G |
— | — | @@ -66,21 +65,18 @@ |
67 | 66 | * church of emacs |
68 | 67 | * Daniel Arnold |
69 | 68 | * Danny B. |
70 | | -* Evan Wheeler |
71 | 69 | * FunPika |
72 | 70 | * Happy-melon |
73 | 71 | * Jeremy Baron |
74 | 72 | * Jidanni |
75 | 73 | * Juliano F. Ravasi |
76 | | -* Louperivois |
77 | 74 | * Lucas Garczewski |
| 75 | +* Louperivois |
78 | 76 | * Luigi Corsaro |
79 | 77 | * Manuel Menal |
80 | 78 | * Marcin Cieślak |
81 | | -* Mark Johnston |
82 | 79 | * Marooned |
83 | 80 | * Max Semenik |
84 | | -* Merrick Schaefer |
85 | 81 | * Michael De La Rue |
86 | 82 | * Michael Walsh |
87 | 83 | * Mike Horvath |
— | — | @@ -97,7 +93,6 @@ |
98 | 94 | * Simon Walker |
99 | 95 | * Stefano Codari |
100 | 96 | * Str4nd |
101 | | -* Travis Derouin |
102 | 97 | |
103 | 98 | == Translators == |
104 | 99 | * Anders Wegge Jakobsen |