r81656 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r81655‎ | r81656 | r81657 >
Date:23:01, 7 February 2011
Author:catrope
Status:ok
Tags:
Comment:
1.17wmf1: Merge r81520, r81654 from REL1_17
Modified paths:
  • /branches/wmf/1.17wmf1/RELEASE-NOTES (modified) (history)
  • /branches/wmf/1.17wmf1/extensions/Collection/Collection.php (modified) (history)
  • /branches/wmf/1.17wmf1/extensions/ExtensionDistributor/ExtensionDistributor.i18n.php (modified) (history)
  • /branches/wmf/1.17wmf1/extensions/Vector/Vector.hooks.php (modified) (history)
  • /branches/wmf/1.17wmf1/extensions/WikiEditor/modules/ext.wikiEditor.dialogs.js (modified) (history)
  • /branches/wmf/1.17wmf1/extensions/WikiEditor/modules/jquery.wikiEditor.iframe.js (modified) (history)
  • /branches/wmf/1.17wmf1/extensions/WikiEditor/modules/jquery.wikiEditor.js (modified) (history)
  • /branches/wmf/1.17wmf1/includes/DefaultSettings.php (modified) (history)
  • /branches/wmf/1.17wmf1/includes/LinksUpdate.php (modified) (history)
  • /branches/wmf/1.17wmf1/includes/OutputPage.php (modified) (history)
  • /branches/wmf/1.17wmf1/includes/db/LoadBalancer.php (modified) (history)
  • /branches/wmf/1.17wmf1/includes/parser/Parser.php (modified) (history)
  • /branches/wmf/1.17wmf1/includes/resourceloader/ResourceLoaderContext.php (modified) (history)
  • /branches/wmf/1.17wmf1/includes/specials/SpecialWhatlinkshere.php (modified) (history)
  • /branches/wmf/1.17wmf1/languages/messages/MessagesBe.php (modified) (history)
  • /branches/wmf/1.17wmf1/maintenance/edit.php (modified) (history)
  • /branches/wmf/1.17wmf1/maintenance/runJobs.php (modified) (history)
  • /branches/wmf/1.17wmf1/resources/jquery/jquery.textSelection.js (modified) (history)
  • /branches/wmf/1.17wmf1/skins/vector/screen.css (modified) (history)

Diff [purge]

Index: branches/wmf/1.17wmf1/maintenance/edit.php
@@ -36,7 +36,7 @@
3737 }
3838
3939 public function execute() {
40 - global $wgUser, $wgArticle;
 40+ global $wgUser, $wgTitle;
4141
4242 $userName = $this->getOption( 'u', 'Maintenance script' );
4343 $summary = $this->getOption( 's', '' );
@@ -53,19 +53,19 @@
5454 $wgUser->addToDatabase();
5555 }
5656
57 - $title = Title::newFromText( $this->getArg() );
58 - if ( !$title ) {
 57+ $wgTitle = Title::newFromText( $this->getArg() );
 58+ if ( !$wgTitle ) {
5959 $this->error( "Invalid title", true );
6060 }
6161
62 - $wgArticle = new Article( $title );
 62+ $article = new Article( $wgTitle );
6363
6464 # Read the text
6565 $text = $this->getStdin( Maintenance::STDIN_ALL );
6666
6767 # Do the edit
6868 $this->output( "Saving... " );
69 - $status = $wgArticle->doEdit( $text, $summary,
 69+ $status = $article->doEdit( $text, $summary,
7070 ( $minor ? EDIT_MINOR : 0 ) |
7171 ( $bot ? EDIT_FORCE_BOT : 0 ) |
7272 ( $autoSummary ? EDIT_AUTOSUMMARY : 0 ) |
Property changes on: branches/wmf/1.17wmf1/maintenance/edit.php
___________________________________________________________________
Added: svn:mergeinfo
7373 Merged /branches/sqlite/maintenance/edit.php:r58211-58321
7474 Merged /trunk/phase3/maintenance/edit.php:r78372,79828,79830,79848,79853,79950-79951,79954,79989,80006-80007,80013,80016,80080,80083,80124,80128,80238,81519,81611
7575 Merged /branches/new-installer/phase3/maintenance/edit.php:r43664-66004
7676 Merged /branches/wmf-deployment/maintenance/edit.php:r60970
7777 Merged /branches/REL1_15/phase3/maintenance/edit.php:r51646
7878 Merged /branches/wmf/1.16wmf4/maintenance/edit.php:r67177,69199,76243,77266
7979 Merged /branches/REL1_17/phase3/maintenance/edit.php:r81654
Index: branches/wmf/1.17wmf1/maintenance/runJobs.php
@@ -2,6 +2,10 @@
33 /**
44 * This script starts pending jobs.
55 *
 6+ * Usage:
 7+ * --maxjobs <num> (default 10000)
 8+ * --type <job_cmd>
 9+ *
610 * This program is free software; you can redistribute it and/or modify
711 * it under the terms of the GNU General Public License as published by
812 * the Free Software Foundation; either version 2 of the License, or
@@ -29,7 +33,6 @@
3034 $this->addOption( 'maxjobs', 'Maximum number of jobs to run', false, true );
3135 $this->addOption( 'type', 'Type of job to run', false, true );
3236 $this->addOption( 'procs', 'Number of processes to use', false, true );
33 - $this->addOption( 'exclusive', 'Run only one exclusive runJobs script at a time. Timeout is 1800 seconds. Useful for cron scripts.', false );
3437 }
3538
3639 public function memoryLimit() {
@@ -38,10 +41,6 @@
3942 }
4043
4144 public function execute() {
42 - if ( $this->lock() === false ) {
43 - exit( 0 );
44 - }
45 -
4645 global $wgTitle;
4746 if ( $this->hasOption( 'procs' ) ) {
4847 $procs = intval( $this->getOption( 'procs' ) );
@@ -50,7 +49,6 @@
5150 }
5251 $fc = new ForkController( $procs );
5352 if ( $fc->start( $procs ) != 'child' ) {
54 - $this->unlock();
5553 exit( 0 );
5654 }
5755 }
@@ -87,9 +85,6 @@
8886 }
8987 }
9088 }
91 - if ( !$this->hasOption( 'procs' ) ) {
92 - $this->unlock();
93 - }
9489 }
9590
9691 /**
@@ -100,25 +95,6 @@
10196 $this->output( wfTimestamp( TS_DB ) . " $msg\n" );
10297 wfDebugLog( 'runJobs', $msg );
10398 }
104 -
105 - protected function lock() {
106 - if ( $this->hasOption( 'exclusive' ) ) {
107 - $cache = wfGetCache( CACHE_ANYTHING );
108 - $running = $cache->get( wfMemcKey( 'runjobs' ) );
109 - if ( $running ) {
110 - return false;
111 - } else {
112 - $cache->set( wfMemcKey( 'runjobs' ), '1', 1800 );
113 - return true;
114 - }
115 - }
116 - return true;
117 - }
118 -
119 - protected function unlock() {
120 - wfGetCache( CACHE_ANYTHING )->delete( wfMemcKey( 'runjobs' ) );
121 - }
122 -
12399 }
124100
125101 $maintClass = "RunJobs";
Index: branches/wmf/1.17wmf1/skins/vector/screen.css
@@ -1147,7 +1147,6 @@
11481148 #ca-watch.icon {
11491149 margin-right:1px;
11501150 }
1151 -/* OVERRIDDEN BY COMPLIANT BROWSERS */
11521151 #ca-unwatch.icon a,
11531152 #ca-watch.icon a {
11541153 margin: 0;
@@ -1157,17 +1156,14 @@
11581157 width: 26px;
11591158 /* This hides the text but shows the background image */
11601159 padding-top: 3.1em;
1161 - margin-top: -0.8em;
 1160+ margin-top: 0;
 1161+ /* Only applied in IE6 */
 1162+ margin-top: -0.8em !ie;
11621163 height: 0;
11631164 overflow: hidden;
11641165 /* @embed */
11651166 background-image: url(images/watch-icons.png);
11661167 }
1167 -/* IGNORED BY IE6 */
1168 -html > body #ca-unwatch.icon a,
1169 -html > body #ca-watch.icon a {
1170 - margin-top: 0;
1171 -}
11721168 #ca-unwatch.icon a {
11731169 background-position: -43px 60%;
11741170 }
Index: branches/wmf/1.17wmf1/extensions/ExtensionDistributor/ExtensionDistributor.i18n.php
@@ -43,8 +43,6 @@
4444
4545 If your wiki is on a remote server, extract the files to a temporary directory on your local computer, and then upload '''all''' of the extracted files to the extensions directory on the server.
4646
47 -Note that some extensions need a file called ExtensionFunctions.php, located at <tt>extensions/ExtensionFunctions.php</tt>, that is, in the ''parent'' directory of this particular extension's directory. The snapshot for these extensions contains this file as a tarbomb, extracted to ./ExtensionFunctions.php. Do not neglect to upload this file to your remote server.
48 -
4947 After you have extracted the files, you will need to register the extension in LocalSettings.php. The extension documentation should have instructions on how to do this.
5048
5149 If you have any questions about this extension distribution system, please go to [[Extension talk:ExtensionDistributor]].",
@@ -140,8 +138,6 @@
141139
142140 لو أن الويكي الخاص بك على خادم بعيد، استخرج الملفات إلى مجلد مؤقت على حاسوبك المحلي، ثم ارفع '''كل''' الملفات المستخرجة إلى مجلد الامتدادات على الخادم.
143141
144 -لاحظ أن بعض الامتدادات تحتاج إلى ملف يسمى ExtensionFunctions.php، موجود في <tt>extensions/ExtensionFunctions.php</tt>، هذا, في المجلد ''الأب'' لمجلد الامتدادات المحدد هذا. اللقطة لهذه الامتدادات تحتوي على هذا الملف كتار بومب، يتم استخراجها إلى ./ExtensionFunctions.php. لا تتجاهل رفع هذا الملف إلى خادمك البعيد.
145 -
146142 بعد استخراجك للملفات، ستحتاج إلى تسجيل الامتداد في LocalSettings.php. وثائق الامتداد ينبغي أن تحتوي على التعليمات عن كيفية عمل هذا.
147143
148144 لو كانت لديك أية أسئلة حول نظام توزيع الامتدادات هذا، من فضلك اذهب إلى [[Extension talk:ExtensionDistributor]].",
@@ -191,8 +187,6 @@
192188
193189 لو أن الويكى الخاص بك على خادم بعيد، استخرج الملفات إلى مجلد مؤقت على حاسوبك المحلى، ثم ارفع '''كل''' الملفات المستخرجة إلى مجلد الامتدادات على الخادم.
194190
195 -لاحظ أن بعض الامتدادات تحتاج إلى ملف يسمى ExtensionFunctions.php، موجود فى <tt>extensions/ExtensionFunctions.php</tt>، هذا, فى المجلد ''الأب'' لمجلد الامتدادات المحدد هذا. اللقطة لهذه الامتدادات تحتوى على هذا الملف كتار بومب، يتم استخراجها إلى ./ExtensionFunctions.php. لا تتجاهل رفع هذا الملف إلى خادمك البعيد.
196 -
197191 بعد استخراجك للملفات، ستحتاج إلى تسجيل الامتداد فى LocalSettings.php. وثائق الامتداد ينبغى أن تحتوى على التعليمات عن كيفية عمل هذا.
198192
199193 لو كانت لديك أية أسئلة حول نظام توزيع الامتدادات هذا، من فضلك اذهب إلى [[Extension talk:ExtensionDistributor]].",
@@ -203,6 +197,48 @@
204198 * @author Haqmar
205199 */
206200 $messages['ba'] = array(
 201+ 'extensiondistributor' => 'MediaWiki киңәйеүҙәрен күсереп алырға',
 202+ 'extensiondistributor-desc' => 'Киңәйеүҙәр менән дистрибутивты күсереп алыу өсөн киңәйеү',
 203+ 'extdist-not-configured' => 'Зинһар, $wgExtDistTarDir һәм $wgExtDistWorkingCopy көйләгеҙ',
 204+ 'extdist-wc-missing' => 'Көйләүҙәрҙә күрһәтелгән эшләй торған күсермә директорияһы юҡ!',
 205+ 'extdist-no-such-extension' => '"$1" киңәйеүе юҡ',
 206+ 'extdist-no-such-version' => '"$1" киңәйеүенең "$2" өлгөһө юҡ',
 207+ 'extdist-choose-extension' => 'Күсереп алыу өсөн киңәйеү һайлағыҙ:',
 208+ 'extdist-wc-empty' => 'Көйләүҙәрҙә күрһәтелгән эшләй торған күсермә директорияһының таратмалы киңәйеүҙәре юҡ!',
 209+ 'extdist-submit-extension' => 'Дауам итергә',
 210+ 'extdist-current-version' => 'Эшләп сығарыу өлгөһө (trunk)',
 211+ 'extdist-choose-version' => '<big>Һеҙ <b>$1</b> киңәйеүен күсереп алаһығыҙ.</big>
 212+
 213+MediaWiki өлгөгөҙҙө һайлағыҙ.
 214+
 215+Киңәйеүҙәрҙең күбеһе төрлө MediaWiki өлгөләре менән эшләй, шуға күрә әгәр һеҙҙең MediaWiki өлгөһө бында күрһәтелмәһә, йәки һеҙгә һуңғы киңәйеү өлгөһөнөң мөмкинлектәре кәрәкһә, ағымдағы өлгөнө ҡулланып ҡарағыҙ.',
 216+ 'extdist-no-versions' => 'Һайланған киңәйеүҙе ($1) бер өлгөлә лә алып булмай!',
 217+ 'extdist-submit-version' => 'Дауам итергә',
 218+ 'extdist-no-remote' => 'Алыҫтағы Subversion клиенты менән бәйләнеш булдырыу мөмкин түгел.',
 219+ 'extdist-remote-error' => 'Алыҫтағы Subversion клиентынан хата: <pre>$1</pre>',
 220+ 'extdist-remote-invalid-response' => 'Алыҫтағы Subversion клиентынан алынған яуап дөрөҫ түгел.',
 221+ 'extdist-svn-error' => 'Subversion хатаһы: <pre>$1</pre>',
 222+ 'extdist-svn-parse-error' => '«svn info» фарманынан алынған XML-ды эшкәртеү мөмкин түгел: <pre>$1</pre>',
 223+ 'extdist-tar-error' => 'Tar $1 коды ҡайтарҙы:',
 224+ 'extdist-created' => "MediaWiki өсөн <b>$1</b> киңәйеүенең <b>$2</b> өлгөһөнөң <b>$3</b> күсермәһе булдырылды. Күсереп алыу 5 секундтан үҙенән-үҙе башланырға тейеш.
 225+
 226+Был күсермәнең URL адресы:
 227+:$4
 228+Был адрес серверға туранан-тура күсереп алыу өсөн ҡулланыла ала, әммә, зинһар, был һылтанманы Һайланғандарға өҫтәмәгеҙ, сөнки эстәлек яңырмаясаҡ, һәм һуңыраҡ юйылыуы ихтимал.
 229+
 230+Tar-архив һеҙҙең киңәйеүҙәр директорияһына бушатылырға тейеш. Мәҫәлән unix-ҡа оҡшаш ОС-лар өсөн:
 231+
 232+<pre>
 233+tar -xzf $5 -C /var/www/mediawiki/extensions
 234+</pre>
 235+
 236+Windows-та файлдарҙы бушатыу өсөн, һеҙ [http://www.7-zip.org/ 7-zip] программаһын ҡуллана алаһығыҙ.
 237+
 238+Әгәр викилар алыҫтағы серверҙа урынлашҡан булһа, файлдарҙы урындағы компьютерҙың ваҡытлы директорияһына бушатығыҙ һәм '''бөтә''' бушатылған файлдарҙы серверҙағы киңәйеүҙәр директорияһына тейәгеҙ.
 239+
 240+Файлдарҙы бушатҡандан һуң, һеҙгә был киңәйеүҙе LocalSettings.php файлында теркәргә кәрәк буласаҡ. Киңәйеүҙең документтарында быны нисек эшләргә кәрәклеге тураһында күрһәтмә булырға тейеш.
 241+
 242+Әгәр һеҙҙең был киңәйеүҙе таратыу системаһы тураһында һорауҙарығыҙ булһа, зинһар, [[Extension talk:ExtensionDistributor]] битен ҡарағыҙ.",
207243 'extdist-want-more' => 'Башҡа киңәйеү алырға',
208244 );
209245
@@ -251,8 +287,6 @@
252288
253289 Калі Вашая вікі знаходзіцца на аддаленым сэрвэры, распакуйце файлы ў часовую дырэкторыю на Вашым кампутары, і потым загрузіце '''ўсе''' распакаваныя файлы ў дырэкторыю пашырэньня на сэрвэры.
254290
255 -Майце на ўвазе, што некаторыя пашырэньні патрабуюць файл з назвай ExtensionFunctions.php, які знаходзіцца на <tt>extensions/ExtensionFunctions.php</tt>, што знаходзіцца ў ''галоўнай'' дырэкторыі гэтага пашырэньня. Архіў гэтага пашырэньня ўтрымлівае гэты файл як tarbomb, які распакаваны ў ./ExtensionFunctions.php. Не забудзьце загрузіць гэты файл на Ваш аддалены сэрвэр.
256 -
257291 Пасьля распакоўкі файлаў, Вам трэба зарэгістраваць пашырэньне ў LocalSettings.php. Дакумэнтацыя пашырэньня павінна ўтрымліваць інструкцыю, як гэта зрабіць.
258292
259293 Калі Вы маеце якія-небудзь пытаньні пра сыстэму ўсталяваньня пашырэньня, калі ласка, задайце іх на старонцы [[Extension talk:ExtensionDistributor]].",
@@ -341,8 +375,6 @@
342376
343377 M'emañ ho wiki war ur servijer a-bell, tennit an diell en ur c'havlec'h padennek en ho urzhiataer lec'hel, ha da c'houde ezporzhiañ '''holl''' an dielloù tennet er c'havlec'h astenn war ar servijer.
344378
345 -Astennoù 'zo o deus ezhomm eus un diell anvet ExtensionFunctions.php, lec'hiet er c'havlec'h <tt>extensions/ExtensionFunctions.php</tt>, hag a zo evit an astenn ispisial-mañ en uskavlec'h. An eilad evit an astenn-mañ a zo ennañ un diell tar, tennet diwar ./ExtensionFunctions.php. Na zisoñjit ket da ezporzhiañ an diell en ho servijer a-bell.
346 -
347379 Goude bezañ bet tennet an diell, ezhomm ho po enrollañ an astenn e LocalSettings.php. Teulliadur an astenn a rank kaout kemennadurioù d'ober kement-mañ.
348380
349381 M'ho peus goulennoù diwar-benn an reizhiad dasparzh an astennoù-mañ, kit war [[Extension talk:ExtensionDistributor]].",
@@ -392,8 +424,6 @@
393425
394426 Ako je Vaš wiki na udaljenom serveru, otpakujte datoteke u privremeni direktorij na Vašem računaru, zatim postavite '''sve''' otpakovane datoteke u direktorij za proširenja na serveru.
395427
396 -Zapamtite da neka proširenja trebaju datoteku pod imenom ExtensionFunctions.php, koja se nalazi u <tt>extensions/ExtensionFunctions.php</tt>, to jest, u ''nadređenom'' direktoriju određenog direktorija proširenja. Prikaz za ova proširenja sadrži ovu datoteku kao tarbomb, otpakovanu u ./ExtensionFunctions.php. Nemojte zaboraviti postaviti ovu datoteku na Vaš udaljeni server.
397 -
398428 Nakon što otpakujete datoteke, morat ćete registrovati proširenje u LocalSettings.php. Dokumentacija proširenja bi trebala imati detaljna objašnjenja kako se ovo radi.
399429
400430 Ako imate nekih pitanja oko ovog sistema distribucije proširenja, molimo pogledajte [[Extension talk:ExtensionDistributor]].",
@@ -473,8 +503,6 @@
474504
475505 Pokud vaše wiki běží na vzdáleném serveru, rozbalte si archiv do nějakého dočasného adresáře na lokálním počítači a poté nahrajte '''všechny''' rozbalené soubory do adresáře <tt>extensions</tt> na vzdáleném serveru.
476506
477 -Nezapomeňte, že některá rozšíření vyžadují soubor <tt>ExtensionFunctions.php</tt>, který se nachází na <tt>extensions/ExtensionFunctions.php</tt>, tzn. v adresáři ''nadřazeném'' příslušnému rozšíření. Vytvořený balíček tento soubor obsahuje, po rozbalení se objeví v aktuálním adresáři (<tt>./ExtensionFunctions.php</tt>). Nezapomeňte na vzdálený server nahrát i tento soubor.
478 -
479507 Po rozbalení souborů budete muset rozšíření zaregistrovat v souboru <tt>LocalSettings.php</tt>. Podrobnější informace by měla obsahovat dokumentace k rozšíření.
480508
481509 Případné dotazy k tomuto systému distribuce rozšíření můžete klást na stránce [[Extension talk:ExtensionDistributor]].",
@@ -528,8 +556,6 @@
529557
530558 Wenn dein Wiki auf einem entfernten Server läuft, entpacke die Dateien in ein temporäres Verzeichnis auf deinem lokalen Computer und lade dann '''alle''' entpackten Dateien auf den entfernten Server hoch.
531559
532 -Bitte beachte, dass einige Erweiterungen die Datei <tt>ExtensionFunctions.php</tt> benötigen. Sie liegt unter <tt>extensions/ExtensionFunctions.php</tt>, dem Heimatverzeichnis der Erweiterungen. Der Schnappschuss dieser Erweiterung enthält diese Datei als tarbomb, entpackt nach <tt>./ExtensionFunctions.php</tt>. Vergiss nicht, auch diese Datei auf deinen entfernten Server hochzuladen.
533 -
534560 Nachdem du die Dateien entpackt hast, musst du die Erweiterung in der <tt>LocalSettings.php</tt> registrieren. Die Dokumentation zur Erweiterung sollte eine Anleitung dazu enthalten.
535561
536562 Wenn du Fragen zu diesem Erweiterungs-Verteil-System hast, gehe bitte zur Seite [[Extension talk:ExtensionDistributor]].",
@@ -564,8 +590,6 @@
565591
566592 Wenn Ihr Wiki auf einem entfernten Server läuft, entpacken Sie die Dateien in ein temporäres Verzeichnis auf Ihrem lokalen Computer und laden Sie dann '''alle''' entpackten Dateien auf den entfernten Server hoch.
567593
568 -Bitte beachte, dass einige Erweiterungen die Datei <tt>ExtensionFunctions.php</tt> benötigen. Sie liegt unter <tt>extensions/ExtensionFunctions.php</tt>, dem Heimatverzeichnis der Erweiterungen. Der Schnappschuss dieser Erweiterung enthält diese Datei als tarbomb, entpackt nach <tt>./ExtensionFunctions.php</tt>. Vergiss nicht, auch diese Datei auf deinen entfernten Server hochzuladen.
569 -
570594 Nachdem Sie die Dateien entpackt haben, müssen Sie die Erweiterung in der <tt>LocalSettings.php</tt> registrieren. Die Dokumentation zur Erweiterung sollte eine Anleitung dazu enthalten.
571595
572596 Wenn Sie Fragen zu diesem Erweiterungs-Verteil-System haben, gehen Sie bitte zur Seite [[Extension talk:ExtensionDistributor]].",
@@ -615,8 +639,6 @@
616640
617641 Eke wikiya şıma yew pêşkeşwano dûr de ya, dosyayanê xo compiterê xo u dıma '''heme''' dosyayê veteyan parçeya rêzkerdışê compiteri de kopya bıkerê.
618642
619 -tayê parçeyan de extiyaciyê na dosya ExtensionFunctions.php esta, <tt>extensions/ExtensionFunctions.php</tt> de, rêzkerdışo ''bıngeyın'' de yo. veciyayo ExtensionFunctions.php.
620 -
621643 badê vetışê dosyayan, parçe LocalSettings.php'de gani qeyd bıbo. dokumantasyonê parçeyi raye mocnena şıma.
622644
623645 Eke no sistem de yew problemê şıma bıbo, kerem kerê şêrê [[Extension talk:ExtensionDistributor]].",
@@ -666,8 +688,6 @@
667689
668690 Jolic twój wiki jo na zdalonem serwerje, rozpakuj dataje do nachylnego zapisa na swójom lokalnem licadle a nagraj pótom '''wše''' rozpakowane dataje do zapisa rozšyrjenjow na serwerje.
669691
670 -Źiwaj na to, až někotare rozšyrjenja trjebaja dataju z mjenim ExtensionFunctions.php, kótaraž jo w <tt>extensions/ExtensionFunctions.php</tt>, to groni, w ''nadrědowanem'' zapisu zapisa wótpowědnego rozšyrjenja. Pakśik za toś te rozšyrjenja wopśimujo toś tu dataju ako tar-bombu, rozpakowanu do ./ExtensionFunctions.php. Njezabudni toś tu dataju do swójogo zdalonego serwera nagraś.
671 -
672692 Za tym, az sy rozpakował dataje, musyš rozšyrjenje w dataji localSettings.php registrěrowaś. Dokumentacija rozšyrjenja by měła instrukcije wopśimjeś, kak se dajo cyniś.
673693
674694 Jolic maš pšašanja wo toś tom systemje rozdźělowanja rozšyrjenjow, źi pšosym k [[Extension talk:ExtensionDistributor]].",
@@ -719,8 +739,6 @@
720740
721741 Αν το wiki σας είναι σε έναν απομακρυσμένο εξυπηρετητή, αποσυμπιέστε τα αρχεία σε έναν προσωρινό κατάλογο στον τοπικό σας υπολογιστή, και μετά επιφορτώστε '''όλα''' τα αποσυμπιεσμένα αρχεία στον κατάλογο επεκτάσεων στον εξυπηρετητή.
722742
723 -Σημειώστε ότι μερικές επεκτάσεις χρειάζονται ένα αρχείο με ονομασία ExtensionFunctions.php, το οποίο βρίσκεται στη διαδρομή <tt>extensions/ExtensionFunctions.php</tt>, δηλαδή στον ''πατρικό'' κατάλογο αυτού του συγκεκριμένου καταλόγου επεκτάσεων. Το στιγμιότυπο για αυτές τις επεκτάσεις περιέχει αυτό το αρχείο ως tarbomb, αποσυμπιεσμένο στο ./ExtensionFunctions.php. Μην αμελήσετε να επιφορτώσετε αυτό το αρχείο στον απομακρυσμένο εξυπηρετητή σας.
724 -
725743 Αφότου αποσυμπιέσετε τα αρχεία, θα χρειαστεί να εγγράψετε την επέκταση στο αρχείο LocalSettings.php. Η τεκμηρίωση της επέκτασης θα πρέπει να έχει οδηγίες για το πως να το κάνετε.
726744
727745 Αν έχετε ερωτήσεις για αυτό το σύστημα διανομής επεκτάσεων, παρακαλώ πηγαίνετε στη σελίδα [[Extension talk:ExtensionDistributor]].",
@@ -770,8 +788,6 @@
771789
772790 Se via vikio estas en ektera servilo, eltiru la dosierojn al provizoran dosierujon en via loka komputilo, kaj poste alŝutu '''ĉiuj''' de la eltiritaj dosieroj al la kromprograma dosierujo en la servilo.
773791
774 -Notu, ke iuj kromprogramoj bezonas dosieron nomitan ExtensionFunctions.php, lokitan en <tt>extensions/ExtensionFunctions.php</tt>, alivorte, la ''patra'' dosierujo de la dosierujo de ĉi tiu kromprogramo. La statika kopio por ĉi tiuj kromprogramoj enhavas ĉi tiun dosieron kiel ''tar-bombo'', eltiritan al ./ExtensionFunctions.php. Ne forgesu alŝuti ĉi tiun dosieron al via ekstera servilo.
775 -
776792 Post vi eltiris la dosierojn, vi bezonas registri la kromprogramon en LocalSettings.php. La kromprograma dokumentado havos la instrukcioj kiel fari.
777793
778794 Se vi havas iujn demandojn pri ĉi tiu kromprograma distribuada sistemo, bonvolu komenti al [[Extension talk:ExtensionDistributor]].",
@@ -825,8 +841,6 @@
826842
827843 Si tu wiki está en un archivo remoto, extrae el archivo a un directorio temporal en tu computadora local, y luego carga '''todo''' de los archivos extraídos al directorio de extensiones en el servidor.
828844
829 -Nota que algunas extensiones necesitan un archivo llamado ExtensionFunctions.php, localizado en <tt>extensions/ExtensionFunctions.php</tt>, que está, en el directorio ''matriz'' de éste particular directorio de extensiones. la instantánea de estas extensiones contiene este archivo como una bomba de alquitrán, extraído a ./ExtensionFunctions.php. No olvides de cargar éste archivo a tu servidor remoto.
830 -
831845 Después que has extraído los archivos, necesitarás registrar la extensión en LocalSettings.php. La documentación de extensiones deberían tener instrucciones de como hacer esto.
832846
833847 Si tienes algunas preguntas acerca de éste sistema de distribución de extensiones, por favor ve a [[Extension talk:ExtensionDistributor]].",
@@ -911,8 +925,6 @@
912926
913927 اگر ویکی شما یک کارساز ازراه‌دور است، پرونده‌ها را در یک دایرکتوری موقتی در رایانهٔ محلی‌تان استخراج کنید، و سپس '''همهٔ''' پرونده‌های استخراج‌شده را به دایرکتوری افزونه‌ها در سرور بارگذاری کنید.
914928
915 -توجه کنید که برخی افزونه‌ها به فایلی که ExtensionFunctions.php خوانده می‌شود نیاز دارند، که در <tt>extensions/ExtensionFunctions.php</tt>، واقع در دایرکتوری ''مادر'' از این دایرکتوری افزونه‌های مخصوص، قرار دارد. عکس‌فوری برای این افزونه‌ها این پرونده را به عنوان tarbomb استخراج‌شده در ./ExtensionFunctions.php، در بر دارد. از بارگذاری این پرونده به کارساز راه‌دور را غفلت نکنید.
916 -
917929 پس از آنکه پرونده‌ها را استخراج کردید، لازم است افزونه را در LocalSettings.php ثبت کنید. توضیحات افزونه باید این دستورالعمل که چطور این را انجام دهیم را داشته باشد.
918930
919931 در صورتی که هرگونه پرسشی دربارهٔ سامانهٔ توزیع این افزونه دارید، لطفاً به [[Extension talk:ExtensionDistributor]] بروید.",
@@ -965,8 +977,6 @@
966978
967979 Jos wikisi on etäpalvelimella, pura tiedostot väliaikaishakemistoon paikalliselle tietokoneelle ja tämän jälkeen lähetä '''kaikki''' puretut tiedostot extensions-hakemistoon etäpalvelimelle.
968980
969 -Huomaa, että jotkin laajennukset vaativat tiedoston ''ExtensionFunctions.php'', jonka sijainti on <tt>extensions/ExtensionFunctions.php</tt>. Tiedosto sijaitsee varsinaisen laajennushakemiston ''ylähakemistossa''. Näille laajennuksille luotu tilannevedos sisältää tämän tiedoston tar-pommina, purettuna juuressa ./ExtensionFunctions.php. Älä jätä lähettämättä tätä tiedostoa etäpalvelimellesi.
970 -
971981 Kun olet purkanut tiedostot, sinun tulee rekisteröidä laajennus LocalSettings.php-tiedostoon. Laajennuksen ohjeissa pitäisi olla ohjeet siihen.
972982
973983 Jos sinulla on kysymyksiä tähän jakelujärjestelmään liittyen, sivulla [[Extension talk:ExtensionDistributor]] voi keskustella aiheesta.",
@@ -1020,8 +1030,6 @@
10211031
10221032 Si votre wiki est hébergé sur un serveur distant, extrayez les fichiers dans un répertoire temporaire de votre ordinateur local, puis téléversez-les '''tous''' dans le répertoire extensions du serveur.
10231033
1024 -Notez que quelques extensions nécessitent un fichier nommé <tt>ExtensionFunctions.php</tt> stocké dans le répertoire <tt>extensions</tt>, lui-même situé dans le répertoire ''parent'' du répertoire particulier pour cette extension. L’image de telles extensions contient ce fichier dans l’archive tar, il sera extrait sous <tt>./ExtensionFunctions.php</tt>. N’omettez pas de le téléverser aussi sur votre serveur distant.
1025 -
10261034 Une fois les fichiers extraits et installés, il vous faudra enregistrer l’extension dans <tt>LocalSettings.php</tt>. La documentation de l’extension devrait contenir un guide d’installation expliquant comment procéder.
10271035
10281036 Si vous avez des questions concernant ce système de distribution des extensions, veuillez consulter [[Extension talk:ExtensionDistributor]].",
@@ -1103,8 +1111,6 @@
11041112
11051113 Se o seu wiki está nun servidor remoto, extraia os ficheiros nun directorio temporal no seu computador e logo cargue '''todos''' os ficheiros extraídos no directorio de extensións do servidor.
11061114
1107 -Déase de conta de que algunhas extensións precisan dun ficheiro chamado ExtensionFunctions.php, localizado en <tt>extensions/ExtensionFunctions.php</tt>, que está no directorio ''parente'' deste directorio particular da extensión. A fotografía destas extensións contén este ficheiro como un tarbomb, extraído en ./ExtensionFunctions.php. Non se descoide ao cargar este ficheiro no seu servidor remoto.
1108 -
11091115 Despois de extraer os ficheiros, necesitará rexistrar a extensión en LocalSettings.php. A documentación da extensión deberá ter instrucións de como facer isto.
11101116
11111117 Se ten algunha dúbida ou pregunta acerca do sistema de distribución das extensións, por favor, vaia a [[Extension talk:ExtensionDistributor]].",
@@ -1163,8 +1169,6 @@
11641170
11651171 Wänn Dyy Wiki uf eme entfärnte Server lauft, no pack d Dateie in e temporäre Verzeichnis uf Dyynem lokale Computer uus un lad deno '''alli''' uuspackte Dateie uf dr entfärnt Server uffe.
11661172
1167 -Bitte gib Acht, ass e Teil Erwyterige d Datei <tt>ExtensionFunctions.php</tt> bruuche. Si lyt unter <tt>extensions/ExtensionFunctions.php</tt>, em Heimetverzeichnis vu dr Erwyterige. Im Schnappschuss vu däre Erwyterig het s die Datei as tarbomb, no <tt>./ExtensionFunctions.php</tt> uuspackt. Vergiss nit, au die Datei uf Dyy entfärnte Server uufezlade.
1168 -
11691173 Wänn Du d Dateie uuspackt hesch, muesch d Erwyterig in dr <tt>LocalSettings.php</tt> regischtriere. In dr Dokumentation zue dr Erwyterig sott s a Aaleitig derzue haa.
11701174
11711175 Wänn Du Froge hesch zue däm Erwyterigs-Verteil-Syschtem, no gang bitte uf d Syte [[Extension talk:ExtensionDistributor]].",
@@ -1215,8 +1219,6 @@
12161220
12171221 אם אתר הוויקי שלכם הוא בשרת מרוחק, פרסו את הקבצים לתוך תיקייה זמנית במחשב המקומי שלכם, ואז העלו את '''כל''' הקבצים שנפרסו לתיקיית ההרחבות בשרת.
12181222
1219 -שימו לב שכמה הרחבות דורשות קובץ הנקרא ExtensionFunctions.php, הממוקם בתיקייה <tt>extensions/ExtensionFunctions.php</tt>, כלומר, בתיקיית ה'''הורה''' של התיקייה של ההרחבה המסוימת הזאת. הקובץ שנוצר להרחבות כאלה מכיל את הקובץ כקובץ שנפרס לתיקיית העבודה הנוכחית (Tarbomb), כלומר נפרס לנתיב ./ExtensionFunctions.php. אל תשכחו להעלות גם את הקובץ הזה לשרת המרוחק שלכם.
1220 -
12211223 לאחר שפרסתם את הקבצים, תצטרכו לרשום את ההרחבה בקובץ LocalSettings.php. תיעוד ההרחבה אמור לכלול הנחיות כיצד לעשות זאת.
12221224
12231225 אם יש לכם שאלות כלשהן על מערכת הפצת ההרחבות הזו, אנא עברו לדף [[Extension talk:ExtensionDistributor]].",
@@ -1267,9 +1269,6 @@
12681270
12691271 Ukoliko je vaš wiki na udaljenom poslužitelju, raspakirajte datoteke u privremeni direktorij lokalno i potom ih sve snimite u direktorij za ekstenzije na poslužitelju.
12701272
1271 -Primijetite da neke ekstenzije trebaju datoteku ExtensionFunctions.php, koja se nalazi u direktoriju <tt>extensions/ExtensionFunctions.php</tt>, to jest u direktoriju iznad direktorija dotične ekstenzije.
1272 -Nemojte zaboraviti snimiti tu datoteku na poslužitelj.
1273 -
12741273 Nakon što se raspakirali arhivu, potrebno je uključiti ekstenziju u LocalSettings.php datoteci. Dokumentacije ekstenzije opisuje taj postupak.
12751274
12761275 Ukoliko imate pitanja u svezi sustava distribucije ekstenzija, pogledajte ovu stranicu: [[Extension talk:ExtensionDistributor]].',
@@ -1319,8 +1318,6 @@
13201319
13211320 Jeli twój wiki je na nazdalnym serwerje, wupakuj dataje do nachwilneho zapisa na swojim lokalnym ličaku a nahraj potom '''wšě''' wupakowane dataje do zapisa rozšěrjenjow na serwerje.
13221321
1323 -Dźiwaj na to, zo někotre rozšěrjenja trjebaja dataju z mjenom ExtensionFunctions.php, kotraž je na <tt>extensions/ExtensionFunctions.php</tt>, to rěka, w ''nadrjadowanym'' zapisu zapisa wotpowědneho rozšěrjenja. Pakćik za tute rozšěrjenja wobsahuje tutu dataju jako tar-bombu, wupakowana do ./ExtensionFunctions.php. Njezabudź tutu dataju na swój nazdalny serwer nahrać.
1324 -
13251322 Po tym zo sy dataje wupakował, dyrbiš rozšěrjenje w dataji LocalSettings.php registrować. Dokumentacija rozšěrjenja dyrbjała instrukcije wobsahować, kak móžeš to činić.
13261323
13271324 Jeli maš prašenja wo systemje rozdźělowanja rozšěrjenjow, prošu dźi k [[Extension talk:ExtensionDistributor]].",
@@ -1372,8 +1369,6 @@
13731370
13741371 Ha a wikid egy távoli szerveren van, bontsd ki a fájlokat egy ideiglenes könyvtárba a helyi számítógépeden, majd tölds fel '''az összes''' kitömörített fájlt a szerver kiterjesztések könyvtárába.
13751372
1376 -Néhány kiterjesztésnek szüksége van egy ExtensionFunctions.php nevű fájlra, amelynek elérési útja: <tt>extensions/ExtensionFunctions.php</tt>, azaz az aktuális kiterjesztés ''szülő'' könyvtára. Ezeknek a kiterejsztéseknek a pillanatfelvétele tarbomb-ként tartalmazza ezt a fájlt, a ./ExtensionFunctions.php mappába kibontva. Ne felejtsd el feltölteni ezt a fájlt a távoli szerverre.
1377 -
13781373 Miután kibontottad a fájlokat, regisztrálnod kell a kiterjesztést a LocalSettings.php-ben. Erről a kiterjesztés dokumentációjának kell bővebb útmutatást adnia.
13791374
13801375 Ha bármi kérdésed van a kiterjesztésterjesztő rendszerrel kapcsolatban, keresd fel az [[Extension talk:ExtensionDistributor]] lapot.",
@@ -1424,8 +1419,6 @@
14251420
14261421 Si tu wiki es situate in un servitor remote, extrahe le files in un directorio temporari in tu computator local, e postea carga '''tote''' le files extrahite verso le directorio de extensiones in le servitor.
14271422
1428 -Nota ben que alcun extensiones require un file con nomime ExtensionFunctions.php, situate a <tt>extensions/ExtensionFunctions.php</tt>, isto es, in le directorio ''superior'' al directorio de iste extension particular. Le instantaneo pro iste extensiones contine iste file como un \"tarbomb\" que se extrahe in ./ExtensionFunctions.php. Non oblidar cargar iste file a tu servitor remote.
1429 -
14301423 Quando tu ha extrahite le files, tu debe registrar le extension in LocalSettings.php. Le documentation del extension deberea continer instructiones super como facer lo.
14311424
14321425 Si tu ha alcun questiones super iste systema de distribution de extensiones, per favor visita [[Extension talk:ExtensionDistributor]].",
@@ -1480,8 +1473,6 @@
14811474
14821475 Jika Wiki Anda di server jauh, ekstrak file ke direktori sementara pada komputer lokal Anda, dan kemudian meng-upload'' 'semua''' file yang diekstrak ke direktori ekstensi pada server.
14831476
1484 -Perhatikan bahwa beberapa ekstensi yang membutuhkan file yang bernama ExtensionFunctions.php, terletak di <tt>extensions/ExtensionFunctions.php</tt>, yaitu di''induk''direktori khusus ekstensi ini . Snapshot untuk perluasan ini berisi file ini sebagai tarbomb, diekstrak ke ./ExtensionFunctions.php. Jangan lalai untuk meng-upload file ini ke server jauh.
1485 -
14861477 Setelah Anda ekstrak file, Anda harus mendaftarkan ekstensi di LocalSettings.php. Dokumentasi exktensi harus mempunyai petunjuk tentang cara untuk melakukan ini.
14871478
14881479 Jika Anda memiliki pertanyaan tentang sistem distribusi ekstensi ini, silakan ke [[Extension talk:ExtensionDistributor]].",
@@ -1536,8 +1527,6 @@
15371528
15381529 Se la tua wiki si trova su un server remoto, estrai i file in una cartella temporanea sul tuo computer locale e in seguito carica '''tutti''' i file estratti nella directory delle estensioni sul server.
15391530
1540 -Fai attenzione che alcune estensioni hanno bisogno di un file chiamato ExtensionFunctions.php, situato in <tt>extensions/ExtensionFunctions.php</tt>, che è la cartella ''superiore'' di questa particolare directory della estensione. L'istantanea per queste estensioni contiene questo file come una tarbom, estratta in ./ExtensionFunctions.php. Non dimenticare di caricare questo file sul tuo server locale.
1541 -
15421531 Dopo che hai estratto i file, avrai bisogno di registrare l'estensione in LocalSettings.php. Il manuale dell'estensione dovrebbe contenere le istruzioni su come farlo.
15431532
15441533 Se hai qualche domanda riguardo al sistema di distribuzione di questa estensione vedi [[Extension talk:ExtensionDistributor]].",
@@ -1589,8 +1578,6 @@
15901579
15911580 ウィキを遠隔サーバーに設置している場合、ローカル・コンピュータの一時ディレクトリにアーカイブを展開し、アーカイブに含まれていた'''全ての'''ファイルをサーバー上の拡張機能ディレクトリへアップロードしてください。
15921581
1593 -なお、いくつかの拡張機能は ExtensionFunctions.php というファイルを extensions/ExtensionFunctions.php、つまりこの拡張機能用ディレクトリの親ディレクトリに置く必要があります。このような拡張機能のスナップショットにはこのファイルが ''tarbomb'' として含まれていて、./ExtensionFunctions.php に展開します。このファイルを遠隔サーバーにアップロードするのを忘れないでください。
1594 -
15951582 ファイルを全て展開したら、その拡張機能を LocalSettings.php へ登録する必要があります。具体的な作業手順は各拡張機能のドキュメントで解説されています。
15961583
15971584 この拡張機能の配布システムに何かご質問がある場合は、[[Extension talk:ExtensionDistributor]] でお尋ねください。",
@@ -1666,8 +1653,6 @@
16671654
16681655 만약 당신의 위키가 원격 서버에 있다면. 당신의 컴퓨터에 임시로 압축을 푼 뒤, 압축이 풀어진 '''모든''' 파일을 서버의 확장 기능 폴더에 올리십시오.
16691656
1670 -일부 확장 기능은<tt>extensions/ExtensionFunctions.php</tt>에 위치한 ExtensionFunctions.php라는 파일을 필요로 할 것입니다. 이 파일은 각각의 확장 기능 폴더의 상위 폴더에 위치하고 있습니다. 이러한 확장 기능의 묶음은 ./ExtensionFunctions.php에 압축이 풀리도록 이 파일을 포함하고 있습니다. 당신의 원격 서버에 이 파일을 올리는 것을 잊지 마십시오.
1671 -
16721657 압축을 푼 후, 확장 기능을 LocalSettings.php에 등록해야 합니다. 확장 기능의 설명 문서가 어떻게 확장 기능을 등록하는 지에 대한 설명을 담고 있습니다.
16731658
16741659 이 확장 기능에 대해 어떤 질문이 있다면, [[Extension talk:ExtensionDistributor]] 문서를 방문해주십시오.",
@@ -1717,8 +1702,6 @@
17181703
17191704 Wann Ding Wiki nit op dämm Rääschner läuf, wo de di Aschif-Datei lijje häß, dann donn se en e Zwescheverzeichnis ußpacke, un dann donn '''jede''' usjepackte Datei un '''jedes''' usjepackte Verzeichnis op Dingem Wiki singe Server en et <code lang=\"en\">extensions</code>-Verzeichnis huhlade.
17201705
1721 -Paß op: Etlijje Zosätz bruche en Dattei mem Name <code>ExtensionFunctions.php</code> em Verzeischnes <tt>extensions/ExtensionFunctions.php</tt>, alsu em ''Bovver''verzeischnes fun dämm, wo däm Zosatz sing Projramme jewöhnlesch lijje. Dä Schnappschoß för esu en Zosätz enthällt di Dattei als e <code>tar</code>-Aschiif, noh <code>./ExtensionFunctions.php</code> ußjepack. Dengk draan, dat Dinge och huhzelaade.
1722 -
17231706 Wan De mem Ußpacke (un velleich Huhlade) fadesch bes, do moß De dä Zosatz en <code>LocalSettings.php</code> enndraare. De Dokementazjohn för dä Zosatz sät jenouer, wi dat em einzelne jeiht.
17241707
17251708 Wann De Frore övver dat Süßteem zom Zosätz erunger Lade haß, da jangk noh [[Extension talk:ExtensionDistributor]].",
@@ -1794,8 +1777,6 @@
17951778
17961779 Als uw wiki op een op afstand beheerde server staat, pak de bestanden dan uit in een tijdelijke map op uw computer. Upload daarna \'\'\'alle\'\'\' uitgepakte bestanden naar de map "extensions/" op de server.
17971780
1798 -Een aantal uitbreidingen hebben het bestand ExtensionFunctions.php nodig, <tt>extensions/ExtensionFunctions.php</tt>, dat in de map direct boven de map met de naam van de uitbreiding hoort te staan. De snapshots voor deze uitbreidingen bevatten dit bestand als tarbomb. Het wordt uitgepakt als ./ExtensionFunctions.php. Vergeet dit bestand niet te uploaden naar uw server.
1799 -
18001781 Nadat u de bestanden hebt uitgepakt en op de juiste plaatst hebt neergezet, moet u de uitbreiding registreren in LocalSettings.php. In de documentatie van de uitbreiding treft u de instructies aan.
18011782
18021783 Als u vragen hebt over dit distributiesysteem voor uitbreidingen, ga dan naar [[Extension talk:ExtensionDistributor]].',
@@ -1844,8 +1825,6 @@
18451826
18461827 Ако вашето вики е на оддалечен опслужувач, отпакувајте ги податотеките во привремен именик на вашиот локален сметач, а потоа подигнете ги '''сите''' отпакувани податотеки во именикот за додатоци на опслужувачот.
18471828
1848 -Имајте на ум дека некои додатоци бараат податотека наречена ExtensionFunctions.php, која ќе ја најдете на <tt>extensions/ExtensionFunctions.php</tt>, т.е., во ''родителскиот'' именик на именикот на ова конкретно додаток. Снимката за овие додатоци ја содржи оваа податотека како tar-бомба, која се распакува во ./ExtensionFunctions.php. Немојте да испуштите да ја подигнете оваа податотека на вашиот оддалечен опслужувач.
1849 -
18501829 Откако ќе ги распакувате податотеките, ќе треба да го регистрирате додатокот во LocalSettings.php. Документацијата на додатокот има напатствија за оваа постапка.
18511830
18521831 Доколку имате прашања за овој дистрибутивен систем на додатоци, обратете се на страницата [[Extension talk:ExtensionDistributor]].",
@@ -1896,8 +1875,6 @@
18971876
18981877 താങ്കളുടെ വിക്കി ഒരു വിദൂര സെ‌‌ർവറിലാണെങ്കിൽ, താങ്കളുടെ കൈയിലെ കമ്പ്യൂട്ടറിലെ താത്കാലിക ഡയറക്റ്ററിയിലേയ്ക്ക് പ്രമാണങ്ങൾ എക്സ്ട്രാക്റ്റ് ചെയ്ത ശേഷം, അവ എല്ലാം സെർവറിലെ അനുബന്ധങ്ങൾക്കുള്ള ഡയറക്റ്ററിയിലേയ്ക്ക് അപ്‌‌ലോഡ് ചെയ്ത് നൽകുക.
18991878
1900 -ചില അനുബന്ധങ്ങൾക്ക് അനുബന്ധങ്ങൾക്കായുള്ള ഒരു പ്രത്യേക ഡയറക്റ്ററിയുടെ മാതൃ ഡയറക്റ്ററിയായ <tt>extensions/ExtensionFunctions.php</tt> എന്നതിലെ ExtensionFunctions.php എന്ന പ്രമാണം ആവശ്യമാണെന്നോർക്കുക, അനുബന്ധങ്ങളുടെ തത്സമയ രൂപങ്ങളിൽ ഈ പ്രമാണം ടാർബോംബ് ആയി ഉണ്ടായിരിക്കും, ./ExtensionFunctions.php ആയിട്ടായിരിക്കും എക്സ്‌‌ട്രാക്റ്റ് ചെയ്യപ്പെടുക. ഈ പ്രമാണം വിദൂര സെ‌‌ർവറിലേയ്ക്ക് അപ്‌‌ലോഡ് ചെയ്യുമ്പോൾ അവഗണിക്കാതിരിക്കുക.
1901 -
19021879 പ്രമാണങ്ങൾ എക്സ്ട്രാക്റ്റ് ചെയ്ത ശേഷം, അവ LocalSettings.php എന്ന പ്രമാണത്തിൽ അടയാളപ്പെടുത്തേണ്ടതുണ്ട്. അനുബന്ധത്തിന്റെ സഹായ താളിൽ ഇതെങ്ങനെ ചെയ്യാമെന്ന് നൽകിയിട്ടുണ്ടായിരിക്കും.
19031880
19041881 ഈ അനുബന്ധ വിതരണ സംവിധാനത്തെ കുറിച്ച് എന്തെങ്കിലും ചോദ്യങ്ങൾ താങ്കൾക്കുണ്ടെങ്കിൽ, ദയവായി [[Extension talk:ExtensionDistributor|ബന്ധപ്പെട്ട സംവാദം താൾ]] പരിശോധിക്കുക.',
@@ -1948,8 +1925,6 @@
19491926
19501927 Sekiranya wiki anda terdapat dalam pelayan jauh, sila keluarkan fail-fail yang berkenaan ke dalam direktori sementara dalam komputer tempatan anda, kemudian muat naik '''semua''' fail yang telah dikeluarkan ke dalam direktori extensions dalam komputer pelayan.
19511928
1952 -Sesetengah penyambung memerlukan sebuah fail bernama ExtensionFunctions.php yang terletak di <tt>extensions/ExtensionFunctions.php</tt>, iaitu dalam direktori ''induk'' bagi direktori penyambung ini. Petikan bagi penyambung-penyambung ini mengandugi fail ini sebagai arkib tar, yang telah dikeluarkan ke dalam ./ExtensionFunctions.php. Jangan lupa untuk memuat naik fail ini ke dalam komputer jauh anda.
1953 -
19541929 Selepas anda mengeluarkan fail-fail yang berkenaan, anda perlu mendaftarkan penyambung tersebut dalam LocalSettings.php. Anda boleh mendapatkan arahan untuk melakukan pendaftaran ini dengan merujuk dokumentasi yang disertakan dengan penyambung tersebut.
19551930
19561931 Sekiranya anda mempunyai sebarang soalan mengenai sistem pengedaran penyambung ini, sila kunjungi [[Extension talk:ExtensionDistributor]].",
@@ -2007,8 +1982,6 @@
20081983
20091984 Wenn dien Wiki op en vun feern bedeenten Server löppt, pack de Datein in en temporäre Mapp op dien lokalen Reekner ut un laad denn '''all''' utpackte Datein op den Server hooch.
20101985
2011 -Acht dor op, dat welk Extensions de Datei <tt>ExtensionFunctions.php</tt> bruukt. De liggt ünner <tt>extensions/ExtensionFunctions.php</tt>, de Hööfdmapp för de Extensions. Bi den Snappschuss vun disse Extension is disse Datei ok as tarbomb bi, utpackt na <tt>./ExtensionFunctions.php</tt>. Vergeet nich, ok disse Datei op dien Server hoochtoladen.
2012 -
20131986 Nadem du de Datein utpackt hest, musst du de Extension in de <tt>LocalSettings.php</tt> registreren. In de Doku för de Extension schull dor wat to stahn.
20141987
20151988 Wenn du Fragen to dit Extensions-Verdeel-System hest, gah man na de Sied [[Extension talk:ExtensionDistributor]].",
@@ -2060,8 +2033,6 @@
20612034
20622035 Als uw wiki op een op afstand beheerde server staat, pak de bestanden dan uit in een tijdelijke map op uw computer. Upload daarna \'\'\'alle\'\'\' uitgepakte bestanden naar de map "extensions/" op de server.
20632036
2064 -Een aantal uitbreidingen hebben het bestand ExtensionFunctions.php nodig, <tt>extensions/ExtensionFunctions.php</tt>, dat in de map direct boven de map met de naam van de uitbreiding hoort te staan. De snapshots voor deze uitbreidingen bevatten dit bestand als tarbomb. Het wordt uitgepakt als ./ExtensionFunctions.php. Vergeet dit bestand niet te uploaden naar uw server.
2065 -
20662037 Nadat u de bestanden hebt uitgepakt en op de juiste plaatst hebt neergezet, moet u de uitbreiding registreren in LocalSettings.php. In de documentatie van de uitbreiding treft u de instructies aan.
20672038
20682039 Als u vragen hebt over dit distributiesysteem voor uitbreidingen, ga dan naar [[Extension talk:ExtensionDistributor]].',
@@ -2111,8 +2082,6 @@
21122083
21132084 Om wikien din er på ein ekstern tenar, pakk ut filene i ei midlertidig mappa på datamaskinen din, og last opp '''alle''' utpakka filer i utvidingsmappa på tenaren.
21142085
2115 -Merk at nokre utvidingar treng ei fil med namnet ExtensionFunctions.php, i mappa <tt>extensions/ExtensionFunctions.php</tt>, altso i ''foreldremappa'' til den enkelte utvidinga si mappa. Snøggskotet for desse utvidingane inneheld denne fila som ein ''tarbomb'' som blir pakka ut til ./ExtensionFunctions.php. Ikkje gløym å lasta opp denne fila til den eksterne tenaren.
2116 -
21172086 Etter å ha pakka ut filene må du registrera utvidinga i LocalSettings.php. Dokumentasjonen til utvidinga burde ha instruksjonar på korleis ein gjer dette.
21182087
21192088 Om du har spørsmål om dette distribusjonssytemet for utvidingar, gå til [http://www.mediawiki.org/wiki/Extension_talk:ExtensionDistributor Extension talk:ExtensionDistributor].",
@@ -2164,8 +2133,6 @@
21652134
21662135 Om wikien din er på en ekstern tjener, pakk ut filene i en midlertidig mappe på datamaskinen din, og last opp '''alle''' utpakkede filer i utvidelsesmappa på tjeneren.
21672136
2168 -Merk at noen utvidelser trenger en fil ved navn ExtensionFunctions.php, i mappa <tt>extensions/ExtensionFunctions.php</tt>, altså i ''foreldremappa'' til den enkelte utvidelsen sin mappe. Øyeblikksbildet for disse utvidelsene inneholder denne filen som en ''tarbomb'' som pakkes ut til ./ExtensionFunctions.php. Ikke glem å laste opp denne filen til den eksterne tjeneren.
2169 -
21702137 Etter å ha pakket ut filene må du registrere utvidelsen i LocalSettings.php. Dokumentasjonen til utvidelsen burde ha instruksjoner på hvordan man gjør dette.
21712138
21722139 Om du har spørsmål om dette distribusjonssytemet for utvidelser, gå til [http://www.mediawiki.org/wiki/Extension_talk:ExtensionDistributor Extension talk:ExtensionDistributor].",
@@ -2215,8 +2182,6 @@
22162183
22172184 Se vòstre wiki se tròba sus un servidor distant, extractatz los fichièrs dins un fichièr temporari sus vòstre ordenador local, e en seguida televersatz los '''totes''' dins lo repertòri d'extensions del servidor.
22182185
2219 -Notatz plan que qualques extensions necessitan un fichièr nomenat ExtensionFunctions.php, localizat sus <tt>extensions/ExtensionFunctions.php</tt>, qu'es dins lo repertòri ''parent'' del repertòri particular de ladicha extension. L’imatge d'aquestas extensions contenon aqueste fichièr dins l’archiu tar que serà extrach jos ./ExtensionFunctions.php. Neglijatz pas de le televersar tanben sul servidor.
2220 -
22212186 Un còp l’extraccion facha, auretz besonh d’enregistrar l’extension dins LocalSettings.php. Aquesta deuriá aver un mòde operatòri per aquò.
22222187
22232188 S'avètz de questions a prepaus d'aqueste sistèma de distribucion de las extensions, anatz sus [[Extension talk:ExtensionDistributor]].",
@@ -2287,8 +2252,6 @@
22882253
22892254 Jeśli Twoja wiki znajduje się na zdalnym serwerze, wypakuj pliki do tymczasowego katalogu na lokalnym komputerze a następnie prześlij na serwer '''wszystkie''' pliki do katalogu z rozszerzeniami.
22902255
2291 -Uwaga – niektóre rozszerzenia wymagają pliku o nazwie ExtensionFunctions.php, który znajduje się w <tt>extensions/ExtensionFunctions.php</tt>, tzn. w głównym katalogu danego rozszerzenia. Dla tego typu rozszerzeń skompresowane archiwum zawiera plik bez katalogu, który jest rozpakowywany w bieżącym katalogu ./ExtensionFunctions.php. Nie zapomnij przesłać ten plik na zdalny serwer.
2292 -
22932256 Po umieszczeniu plików w odpowiednich katalogach, należy włączyć rozszerzenie w pliku LocalSettings.php. Dokumentacja rozszerzenia powinna zawierać instrukcję jak to zrobić.
22942257
22952258 Jeśli masz jakieś pytania na temat systemu dystrybuującego rozszerzenia, zadaj je na stronie [[Extension talk:ExtensionDistributor]].",
@@ -2339,8 +2302,6 @@
23402303
23412304 Se toa wiki a l'é su un servent leugn, dëscompata j'archivi ant un dossié dzora a tò ordinator local, e peui caria '''tùit''' j'archivi dëscompatà ant ël dossié d'estension dzora al servent.
23422305
2343 -Nòta che chèiche estension a l'han dabzògn ëd n'archivi ciamà ExtensionFunctions.php, piassà an <tt>extensions/ExtensionFunctions.php</tt>, visadì, ant ël dossié ''pare'' dë sto particolar dossié d'estension. La còpia d'amblé për coste estension a conten st'archivi com un tarbomb, dëscompatà con ./ExtensionFunctions.php. Dësmentia pa ëd carié st'archivi-sì dzora a tò servent leugn.
2344 -
23452306 Apress ch'it l'has dëscompatà j'archivi, it deve argistré l'estension an LocalSettings.php. La documentassion ëd l'estension a dovrìa avèj d'istrussion su com fé sòn.
23462307
23472308 S'it l'has chèiche chestion su sto sistema ëd distribuì j'estension, për piasì va a [[Extension talk:ExtensionDistributor]].",
@@ -2392,8 +2353,6 @@
23932354
23942355 Se a sua wiki estiver localizada num servidor remoto, extraia os ficheiros para um directório temporário no seu computador local, e depois carregue '''todos''' os directórios e ficheiros extraídos para o directório de extensões da wiki no servidor.
23952356
2396 -Note que algumas extensões precisam que um ficheiro ExtensionFunctions.php seja colocado em <tt>extensions/ExtensionFunctions.php</tt>, ou seja, no directório acima do desta extensão. O instantâneo dessas extensões deverá conter este ficheiro como uma 'tarbomb', que é extraída para ./ExtensionFunctions.php. Não negligencie o carregamento deste ficheiro para o seu servidor remoto.
2397 -
23982357 Após ter colocado a extensão no directório de extensões da sua wiki, terá de registá-la em LocalSettings.php. A documentação da extensão deverá ter indicações sobre como o fazer.
23992358
24002359 Se tiver alguma questão sobre este sistema de distribuição de extensões, por favor, vá a [[Extension talk:ExtensionDistributor]].",
@@ -2443,8 +2402,6 @@
24442403
24452404 Se o seu wiki está num servidor remoto, extraia os ficheiros para um diretório temporário no seu computador local, e depois carregue '''todos''' os ficheiros extraídos no diretório de extensões do servidor.
24462405
2447 -Note que algumas extensões precisam de um arquivo chamado ExtensionFunctions.php, situado em <tt>extensions/ExtensionFunctions.php</tt>, ou seja, no diretório ''pai'' da diretoria desta extensão em particular. O instantâneo destas extensões contém este arquivo como uma 'tarbomb', extraída para ./ExtensionFunctions.php. Não negligencie o carregamento deste ficheiro para o seu servidor remoto.
2448 -
24492406 Após ter extraído os ficheiros, terá que registar a extensão em LocalSettings.php. A documentação da extensão deverá ter instruções de como o fazer.
24502407
24512408 Se tiver alguma questão sobre este sistema de distribuição de extensões, por favor, vá a [[Extension talk:ExtensionDistributor]].",
@@ -2527,8 +2484,6 @@
25282485
25292486 Если ваша вики находится на удалённом сервере, извлеките файлы во временную директорию вашего компьютера и затем загрузите '''все''' извлечённые файлы в директорию расширения на сервере.
25302487
2531 -Заметьте, что некоторые расширения требуют наличия файла ExtensionFunctions.php, размещённого в родительской директории по отношению к директории расширения — <tt>extensions/ExtensionFunctions.php</tt>. Снимок для таких расширений содержит этот файл в виде tar-бомбы, распакованной в ./ExtensionFunctions.php. Не забывайте загрузить этот файл на ваш сервер.
2532 -
25332488 После извлечения файлов, вам следует прописать это расширение в файл LocalSettings.php. Документация по расширению должна содержать соответствующие указания.
25342489
25352490 Если у вас есть вопрос об этой системе распространения расширений, пожалуйста, обратитесь к странице [[Extension talk:ExtensionDistributor]].",
@@ -2601,8 +2556,6 @@
26022557
26032558 Эн биикиҥ атын ыраах сиэрбэргэ турар буоллаҕына билэлэри быстах кэмҥэ оҥоһуллубут паапкаҕа хостоо, онтон хостоммут билэлэри '''барытын''' сиэрбэр тупсарыыга аналлаах паапкатыгар көһөр.
26042559
2605 -Сорох тупсарыылар ExtensionFunctions.php билэ баарын ирдииллэр, ол манна ''төрөппүт'' паапкаҕа баар — <tt>extensions/ExtensionFunctions.php</tt>. Маннык тупсарыылар снэпшоттара манна ./ExtensionFunctions.php tar-бомба көрүҥүҥэн сытар. Бу билэни бэйэҥ сиэрбэргэр хачайдыыргын умнума.
2606 -
26072560 Билэлэри хостоон баран тупсарыыны бу билэҕэ LocalSettings.php суруттарыахха наада. Тупсарыы дөкүмүөнүгэр манна аналлаах ыйыылар баар буолуохтахтар.
26082561
26092562 Тугу эмит бу туһунан ыйытыаххын баҕардаххына бу сирэйгэ киир: [[Extension talk:ExtensionDistributor]].",
@@ -2652,8 +2605,6 @@
26532606
26542607 Ak je vaša wiki na vzdialenom serveri, rozbaľte súbory do dočasného adresára na vašom lokálnom počítači a potom nahrajte '''všetky''' rozbalené súbory do adresára pre rozšírenia na serveri.
26552608
2656 -Všimnite si, že niektoré rozšírenia potrebujú nájsť súbor s názvom ExtensionFunctions.php v <tt>extensions/ExtensionFunctions.php</tt>, t.j. v ''nadradenom'' adresári adresára tohto konkrétneho rozšírenia. Snímka týchto rozšírení obsahuje tento súbor, ktorý sa rozbalí do ./ExtensionFunctions.php. Nezanedbajte nahrať tento súbor na vzdialený serer.
2657 -
26582609 Po rozbalení súborov budete musieť rozšírenie zaregistrovať v LocalSettings.php. Dokumentácia k rozšíreniu by mala obsahovať informácie ako to spraviť.
26592610
26602611 Ak máte otázky týkajúce sa tohto systému distribúcie rozšírení, navštívte [[Extension talk:ExtensionDistributor]].",
@@ -2703,8 +2654,6 @@
27042655
27052656 Če je vaš wiki na oddaljenem strežniku, razširite datoteke v začasno mapo na vašem lokalnem računalniku in nato '''vse''' razširjene datoteke naložite v mapo razširitev na strežniku.
27062657
2707 -Upoštevajte, da nekatere razširitve potrebujejo datoteko ExtensionFunctions.php, ki se nahaja na <tt>extensions/ExtensionFunctions.php</tt>, to je v ''starševskem'' imeniku mape te določene razširitve. Posnetek teh razširitev vsebuje omenjeno datoteko kot tarbomb, razširjeno v ./ExtensionFunctions.php. Ne izpustite te datoteke pri nalaganju na vaš oddaljeni strežnik.
2708 -
27092658 Po tem, ko ste razširili vse datoteke, morate registrirati razširitev v LocalSettings.php. Dokumentacija razširirtve bi morala vsebovati navodila, kako to storiti.
27102659
27112660 Če imate kakšna vprašanje glede sistema razdeljevanja razširitev, pojdite na [[Extension talk:ExtensionDistributor]].",
@@ -2772,8 +2721,6 @@
27732722
27742723 Om din wiki är på en fjärrserver, packa upp filerna till en tillfällig katalog på din lokala dator, och ladda sedan upp '''alla''' uppackade filer till extensions-katalogen på servern.
27752724
2776 -Observera att några programtillägg behöver filen ExtensionFunctions.php, som finns i <tt>extensions/ExtensionFunctions.php</tt>, det är i ''föräldra''katalogen till just det här filtilläggets katalog. Ögonblicksbilden för dessa programtillägg innehåller den här filen som en tarbomb, uppackad till ./ExtensionFunctions.php. Glöm inte att ladda upp den filen till din fjärrserver.
2777 -
27782725 Efter att du packat upp filerna, behöver du registrera programtillägget i LocalSettings.php. Programtilläggets dokumentation ska ha instruktioner om hur man gör det.
27792726
27802727 Om du har några frågor om programtilläggets distributionssystem, gå till [[Extension talk:ExtensionDistributor]].",
@@ -2831,8 +2778,6 @@
28322779
28332780 ถ้าวิกิของคุณอยู่ในเซิร์ฟเวอร์สั่งการทางไกล ให้ดึงไฟล์ออกมาวางไว้ที่โฟลเดอร์ชั่วคราวบนคอมพิวเตอร์ของคุณก่อน แล้วจึงอัพโหลดไฟล์'''ทั้งหมด'''ไปยังไดเร็กทอรีของซอฟต์แวร์เสริมบนเซิร์ฟเวอร์
28342781
2835 -อย่าลืมว่าซอฟต์แวร์เสริมบางอย่างต้องการไฟล์ที่ชื่อว่า ExtensionFunctions.php ซึ่งอยู่ที่ <tt>extensions/ExtensionFunctions.php</tt> ซึ่งนั่นก็คือไดเร็กทอรี''หลัก''ของซอฟต์แวร์เสริมนั้นๆ ไฟล์คัดลอกของซอฟต์แวร์เสริมเหล่านี้มีไฟล์ภายในที่อยู่ในลักษณะ tarbomb และถูกดึงออกไว้ที่ ./ExtensionFunctions.php ดังนั้นห้ามเว้นการอัพโหลดไฟล์นี้ไปยังเซิร์ฟเวอร์สั้งการของคุณ
2836 -
28372782 หลังจากที่คุณดึงไฟล์ออกมาแล้ว คุณจำเป็นต้องลงทะเบียนซอฟต์แวร์เสริมใน LocalSettings.php ซึ่งเอกสารแนบที่มากับซอฟต์แวร์เสริมจะมีขั้นตอนการทำอยู่
28382783
28392784 ถ้าคุณยังมีข้อสงสัยประการใดเกี่ยวกับระบบการแผยแพร่ซอฟต์แวร์เสริมนี้ กรุณาไปที่ [[Extension talk:ExtensionDistributor]].",
@@ -2906,8 +2851,6 @@
29072852
29082853 Kung ang wiki mo ay nasa ibabaw ng isang malayong serbidor/tagahain, hanguin ang mga talaksan patungo sa isang pansamantalang direktoryong nasa ibabaw ng pampook/lokal mong kompyuter, at pagkatapos ay ikarga pataas ang '''lahat''' ng nahangong mga talaksan papunta sa direktoryo ng mga karugtong na nasa ibabaw ng serbidor.
29092854
2910 -Tandaan na nangangailangan ang ilang mga karugtong ng isang talaksang tinatawag na ExtensionFunctions.php, na nasa <tt>extensions/ExtensionFunctions.php</tt>, na ang ibig sabihin ay nasa loob ng ''magulang'' na direktoryo ng partikular na direktoryong ito ng karugtong. Ang mga kuha ng larawang para sa mga karugtong na ito ay napapalooban ng ganitong talaksan upang magsilbi bilang isang \"pampasabog na tar\" (''tarbomb''), na hinahango patungo sa ./ExtensionFunctions.php. Huwag kalimutang ikarga pataas ang talaksang ito patungo sa iyong malayong serbidor.
2911 -
29122855 Matapos mong hangunin ang mga talaksan, kakailanganin mong itala/irehistro ang karugtong sa loob ng LocalSettings.php. Ang kasulatan ng karugtong ay dapat na mayroong mga panuntunan hinggil sa kung paano ito maisasagawa.
29132856
29142857 Kung mayroon kang anumang katanungan hinggil sa sistemang ito ng pagpapamahagi ng karugtong, mangyaring pumunta lamang po sa [[Extension talk:ExtensionDistributor]].",
@@ -2957,8 +2900,6 @@
29582901
29592902 Eğer vikiniz uzaktan bir sunucuda ise, dosyaları yerel bilgisayarınızda geçici bir dizine çıkarın, ve sonra '''bütün''' çıkarılan dosyaları sunucunun eklenti dizinine kopyalayın.
29602903
2961 -Bazı eklentiler ExtensionFunctions.php adlı bir dosyaya ihtiyaç duyar, <tt>extensions/ExtensionFunctions.php</tt>'de, bu belirli eklentinin dizininin ''ana'' dizininde. Bu eklentilerin anlık görüntüsü, bu dosyayı tarbomb olarak içerir, ExtensionFunctions.php'a çıkarılmıştır. Bu dosyayı uzaktan sunucunuza yüklemeyi ihmal etmeyin.
2962 -
29632904 Dosyaları çıkardıktan sonra, eklentiyi LocalSettings.php'de kaydetmelisiniz. Eklenti dokümantasyonu bunu nasıl yapacağınızın açıklamasını içerebilir.
29642905
29652906 Eğer bu eklenti dağıtım sistemi ile herhangi bir sorunuz varsa, lütfen [[Extension talk:ExtensionDistributor]]'a gidin.",
@@ -3012,8 +2953,6 @@
30132954
30142955 Якщо ваша вікі на віддаленому сервері, розпакуйте файли в тимчасову папку на вашому локальному комп'ютері, а потім завантажте '''всі''' розпаковані файли в каталог розширення на сервері.
30152956
3016 -Зверніть увагу, що деяким розширенням потрібен файл з назвою ExtensionFunctions.php, розташований в <tt>extensions/ExtensionFunctions.php</tt>, тобто в ''батьківському'' каталозі по відношенню до каталогу цього розширення. Знімок цих розширень містить цей файл у вигляді tar-бомби, розпакованої у ./ExtensionFunctions.php. Не варто нехтувати завантаженням цього файлу на віддалений сервер.
3017 -
30182957 Після того як ви отримали файли, вам необхідно зареєструвати розширення в LocalSettings.php. Документація розширення повинні мати інструкції про те, як це зробити.
30192958
30202959 Якщо у вас є питання по цій системі розповсюдження розширень, будь ласка, перейдіть до [[Extension talk:ExtensionDistributor]].",
@@ -3063,8 +3002,6 @@
30643003
30653004 Se la to wiki la se cata su de un server remoto, estrai i file in te na cartèla tenporanea sul to computer locale e in seguito carga '''tuti quanti''' i file estrati in te la cartèla de le estension sul server.
30663005
3067 -Stà tento che serte estension le gà bisogno de un file ciamà ExtensionFunctions.php, che se cata in <tt>extensions/ExtensionFunctions.php</tt>, che xe la cartèla ''superior'' de sta particolare cartèla de l'estension. L'istantanea par ste estensioni la contien sto file come na tarbom, estrata in ./ExtensionFunctions.php. No stà desmentegarte de cargar sto file sul to server locale.
3068 -
30693006 Dopo che ti gà estrato i file, te gavarè bisogno de registrar l'estension in LocalSettings.php. El manual de l'estension el dovarìa contegner le istrussion su come far.
30703007
30713008 Se ti gà qualche domanda riguardo el sistema de distribussion de sta estension, varda [[Extension talk:ExtensionDistributor]].",
@@ -3123,8 +3060,6 @@
31243061
31253062 Nếu wiki của bạn nằm ở máy chủ từ xa, hãy bung các tập tin đó vào một thư mục tạm trên máy tính hiện tại của bạn, rồi sau đó tải '''tất cả''' các tập tin đã giải nén lên thư mục chứa bộ mở rộng trên máy chủ.
31263063
3127 -Chú ý rằng một số bộ mở rộng cần một tập tin có tên ExtensionFunctions.php, nằm tại <tt>extensions/ExtensionFunctions.php</tt>, tức là, trong thư mục ''cha'' của thư mục chứa bộ mở rộng nào đó. Ảnh của các bộ mở rộng này có chứa tập này dưới dạng tarbomb, được giải nén thành ./ExtensionFunctions.php. Đừng quên tải tập tin này lên máy chủ từ xa của bạn.
3128 -
31293064 Sau khi đã giải nén tập tin, bạn sẽ cần phải đăng ký bộ mở rộng trong LocalSettings.php. Tài liệu đi kèm với bộ mở rộng sẽ có những hướng dẫn về cách thực hiện điều này.
31303065
31313066 Nếu bạn có câu hỏi nào về hệ thống phân phối bộ mở rộng này, xin đi đến [[Extension talk:ExtensionDistributor]].",
@@ -3175,8 +3110,6 @@
31763111
31773112 如果你嘅 wiki 係響一個遠端伺服器嘅話,就響電腦度解壓檔案到一個臨時目錄,然後再上載'''全部'''已經解壓咗嘅檔案到伺服器嘅擴展目錄。
31783113
3179 -要留意嘅有啲擴展係需要一個叫做 ExtensionFunctions.php 嘅檔案,響 <tt>extensions/ExtensionFunctions.php</tt>,即係,響呢個擴展目錄嘅''父''目錄。嗰啲擴展嘅映像都會含有以呢個檔案嘅 tarbomb 檔案,解壓到 ./ExtensionFunctions.php。唔好唔記得上載埋呢個檔案到你嘅遠端伺服器。
3180 -
31813114 響你解壓咗啲檔案之後,你需要響 LocalSettings.php 度註冊番個擴展。個擴展說明講咗點樣可以做到呢樣嘢。
31823115
31833116 如果你有任何對於呢個擴展發佈系統有問題嘅話,請去[[Extension talk:ExtensionDistributor]]。",
@@ -3229,8 +3162,6 @@
32303163
32313164 如果您的 wiki 是在一个远端服务器的话,就在电脑中解压缩文件到一个临时目录,然后再上载'''全部'''已经解压缩的文件到服务器的扩展目录上。
32323165
3233 -要留意的是有的扩展是需要一个名叫 ExtensionFunctions.php 的文件,在 <tt>extensions/ExtensionFunctions.php</tt>,即是,在这个扩展目录的''父''目录。那些扩展的映像都会含有以这个文件的 tarbomb 文件,解压缩到 ./ExtensionFunctions.php。不要忘记上载这个文件到您的远端服务器。
3234 -
32353166 响您解压缩文件之后,您需要在 LocalSettings.php 中注册该等扩展。该扩展之说明会有指示如何做到它。
32363167
32373168 如果您有任何对于这个扩展发布系统有问题的话,请去[[Extension talk:ExtensionDistributor]]。",
@@ -3282,8 +3213,6 @@
32833214
32843215 如果您的 wiki 是在一個遠端伺服器的話,就在電腦中解壓縮檔案到一個臨時目錄,然後再上載'''全部'''已經解壓縮的檔案到伺服器的擴展目錄上。
32853216
3286 -要留意的是有的擴展是需要一個名叫 ExtensionFunctions.php 的檔案,在 <tt>extensions/ExtensionFunctions.php</tt>,即是,在這個擴展目錄的''父''目錄。那些擴展的映像都會含有以這個檔案的 tarbomb 檔案,解壓縮到 ./ExtensionFunctions.php。不要忘記上載這個檔案到您的遠端伺服器。
3287 -
32883217 響您解壓縮檔案之後,您需要在 LocalSettings.php 中註冊該等擴展。該擴展之說明會有指示如何做到它。
32893218
32903219 如果您有任何對於這個擴展發佈系統有問題的話,請去[[Extension talk:ExtensionDistributor]]。",
Index: branches/wmf/1.17wmf1/extensions/WikiEditor/modules/jquery.wikiEditor.js
@@ -488,7 +488,7 @@
489489 * Save scrollTop and cursor position for IE
490490 */
491491 'saveCursorAndScrollTop': function() {
492 - if ( $.client.name === 'msie' ) {
 492+ if ( $.client.profile().name === 'msie' ) {
493493 var IHateIE = {
494494 'scrollTop' : context.$textarea.scrollTop(),
495495 'pos': context.$textarea.textSelection( 'getCaretPosition', { startAndEnd: true } )
@@ -500,7 +500,7 @@
501501 * Restore scrollTo and cursor position for IE
502502 */
503503 'restoreCursorAndScrollTop': function() {
504 - if ( $.client.name === 'msie' ) {
 504+ if ( $.client.profile().name === 'msie' ) {
505505 var IHateIE = context.$textarea.data( 'IHateIE' );
506506 if ( IHateIE ) {
507507 context.$textarea.scrollTop( IHateIE.scrollTop );
@@ -513,7 +513,7 @@
514514 * Save text selection for IE
515515 */
516516 'saveSelection': function() {
517 - if ( $.client.name === 'msie' ) {
 517+ if ( $.client.profile().name === 'msie' ) {
518518 context.$textarea.focus();
519519 context.savedSelection = document.selection.createRange();
520520 }
@@ -522,7 +522,7 @@
523523 * Restore text selection for IE
524524 */
525525 'restoreSelection': function() {
526 - if ( $.client.name === 'msie' && context.savedSelection !== null ) {
 526+ if ( $.client.profile().name === 'msie' && context.savedSelection !== null ) {
527527 context.$textarea.focus();
528528 context.savedSelection.select();
529529 context.savedSelection = null;
Index: branches/wmf/1.17wmf1/extensions/WikiEditor/modules/ext.wikiEditor.dialogs.js
@@ -508,7 +508,7 @@
509509 open: function() {
510510 // Cache the articlepath regex
511511 $(this).data( 'articlePathRegex', new RegExp(
512 - '^' + ( wgServer + wgArticlePath ).escapeRE()
 512+ '^' + $.escapeRE( wgServer + wgArticlePath )
513513 .replace( /\\\$1/g, '(.*)' ) + '$'
514514 ) );
515515 // Pre-fill the text fields based on the current selection
@@ -981,7 +981,7 @@
982982 flags += 'g';
983983 }
984984 if ( !isRegex ) {
985 - searchStr = searchStr.escapeRE();
 985+ searchStr = $.escapeRE( searchStr );
986986 }
987987 try {
988988 var regex = new RegExp( searchStr, flags );
Index: branches/wmf/1.17wmf1/extensions/WikiEditor/modules/jquery.wikiEditor.iframe.js
@@ -551,13 +551,13 @@
552552 return;
553553 },
554554 'saveSelection': function() {
555 - if ( $.client.name === 'msie' ) {
 555+ if ( $.client.profile().name === 'msie' ) {
556556 context.$iframe[0].contentWindow.focus();
557557 context.savedSelection = context.$iframe[0].contentWindow.document.selection.createRange();
558558 }
559559 },
560560 'restoreSelection': function() {
561 - if ( $.client.name === 'msie' && context.savedSelection !== null ) {
 561+ if ( $.client.profile().name === 'msie' && context.savedSelection !== null ) {
562562 context.$iframe[0].contentWindow.focus();
563563 context.savedSelection.select();
564564 context.savedSelection = null;
Index: branches/wmf/1.17wmf1/extensions/Collection/Collection.php
@@ -368,7 +368,9 @@
369369 if ( $t->isRedirect() ) {
370370 $a = new Article( $t, 0 );
371371 $t = $a->followRedirect();
372 - $title = $t->getPrefixedText();
 372+ if ( $t instanceof Title ) {
 373+ $title = $t->getPrefixedText();
 374+ }
373375 }
374376 if ( CollectionSession::findArticle( $title ) == - 1 ) {
375377 $result['action'] = 'add';
Index: branches/wmf/1.17wmf1/extensions/Vector/Vector.hooks.php
@@ -19,6 +19,9 @@
2020 'section' => 'rendering/advancedrendering',
2121 ),
2222 ),
 23+ 'requirements' => array(
 24+ 'vector-collapsiblenav' => true,
 25+ ),
2326 'configurations' => array(
2427 'wgCollapsibleNavBucketTest',
2528 'wgCollapsibleNavForceNewVersion',
@@ -37,6 +40,9 @@
3841 'section' => 'editing/advancedediting',
3942 ),
4043 ),
 44+ 'requirements' => array(
 45+ 'useeditwarning' => true,
 46+ ),
4147 'modules' => array( 'ext.vector.editWarning' ),
4248 ),
4349 'expandablesearch' => array(
Index: branches/wmf/1.17wmf1/includes/parser/Parser.php
@@ -4996,15 +4996,19 @@
49974997
49984998 /**
49994999 * Accessor for $mDefaultSort
5000 - * Will use the title/prefixed title if none is set
 5000+ * Will use the empty string if none is set.
50015001 *
 5002+ * This value is treated as a prefix, so the
 5003+ * empty string is equivalent to sorting by
 5004+ * page name.
 5005+ *
50025006 * @return string
50035007 */
50045008 public function getDefaultSort() {
50055009 if ( $this->mDefaultSort !== false ) {
50065010 return $this->mDefaultSort;
50075011 } else {
5008 - return $this->mTitle->getCategorySortkey();
 5012+ return '';
50095013 }
50105014 }
50115015
Property changes on: branches/wmf/1.17wmf1/includes/parser/Parser.php
___________________________________________________________________
Modified: svn:mergeinfo
50125016 Merged /branches/REL1_17/phase3/includes/parser/Parser.php:r81654
50135017 Merged /trunk/phase3/includes/parser/Parser.php:r79324,80841,81430,81488,81496,81554,81561,81589,81600,81611,81620,81622,81640,81648,81650-81652
Index: branches/wmf/1.17wmf1/includes/db/LoadBalancer.php
@@ -754,11 +754,20 @@
755755 }
756756
757757 /**
 758+ * Deprecated function, typo in function name
 759+ */
 760+ function closeConnecton( $conn ) {
 761+ $this->closeConnection( $conn );
 762+ }
 763+
 764+ /**
758765 * Close a connection
759766 * Using this function makes sure the LoadBalancer knows the connection is closed.
760767 * If you use $conn->close() directly, the load balancer won't update its state.
 768+ * @param $conn
 769+ * @return void
761770 */
762 - function closeConnecton( $conn ) {
 771+ function closeConnection( $conn ) {
763772 $done = false;
764773 foreach ( $this->mConns as $i1 => $conns2 ) {
765774 foreach ( $conns2 as $i2 => $conns3 ) {
Index: branches/wmf/1.17wmf1/includes/OutputPage.php
@@ -2231,7 +2231,8 @@
22322232 }
22332233 $sk->setupUserCss( $this );
22342234
2235 - $ret = Html::htmlHeader( array( 'lang' => wfUILang()->getCode() ) );
 2235+ $lang = wfUILang();
 2236+ $ret = Html::htmlHeader( array( 'lang' => $lang->getCode(), 'dir' => $lang->getDir() ) );
22362237
22372238 if ( $this->getHTMLTitle() == '' ) {
22382239 $this->setHTMLTitle( wfMsg( 'pagetitle', $this->getPageTitle() ) );
Property changes on: branches/wmf/1.17wmf1/includes/OutputPage.php
___________________________________________________________________
Modified: svn:mergeinfo
22392240 Merged /branches/REL1_17/phase3/includes/OutputPage.php:r81654
22402241 Merged /trunk/phase3/includes/OutputPage.php:r79324,80841,81430,81488,81496,81554,81561,81589,81600,81611,81620,81622,81640,81648,81650-81652
Index: branches/wmf/1.17wmf1/includes/LinksUpdate.php
@@ -72,7 +72,10 @@
7373 # it truncated by DB, and then doesn't get
7474 # matched when comparing existing vs current
7575 # categories, causing bug 25254.
76 - $sortkey = substr( $sortkey, 0, 255 );
 76+ # Also. substr behaves weird when given "".
 77+ if ( $sortkey !== '' ) {
 78+ $sortkey = substr( $sortkey, 0, 255 );
 79+ }
7780 }
7881
7982 $this->mRecursive = $recursive;
@@ -435,7 +438,7 @@
436439 global $wgContLang, $wgCategoryCollation;
437440 $diffs = array_diff_assoc( $this->mCategories, $existing );
438441 $arr = array();
439 - foreach ( $diffs as $name => $sortkey ) {
 442+ foreach ( $diffs as $name => $prefix ) {
440443 $nt = Title::makeTitleSafe( NS_CATEGORY, $name );
441444 $wgContLang->findVariantLink( $name, $nt, true );
442445
@@ -447,23 +450,12 @@
448451 $type = 'page';
449452 }
450453
451 - # TODO: This is kind of wrong, because someone might set a sort
452 - # key prefix that's the same as the default sortkey for the
453 - # title. This should be fixed by refactoring code to replace
454 - # $sortkey in this array by a prefix, but it's basically harmless
455 - # (Title::moveTo() has had the same issue for a long time).
456 - if ( $this->mTitle->getCategorySortkey() == $sortkey ) {
457 - $prefix = '';
458 - $sortkey = Collation::singleton()->getSortKey( $sortkey );
459 - } else {
460 - # Treat custom sortkeys as a prefix, so that if multiple
461 - # things are forced to sort as '*' or something, they'll
462 - # sort properly in the category rather than in page_id
463 - # order or such.
464 - $prefix = $sortkey;
465 - $sortkey = Collation::singleton()->getSortKey(
466 - $this->mTitle->getCategorySortkey( $prefix ) );
467 - }
 454+ # Treat custom sortkeys as a prefix, so that if multiple
 455+ # things are forced to sort as '*' or something, they'll
 456+ # sort properly in the category rather than in page_id
 457+ # order or such.
 458+ $sortkey = Collation::singleton()->getSortKey(
 459+ $this->mTitle->getCategorySortkey( $prefix ) );
468460
469461 $arr[] = array(
470462 'cl_from' => $this->mId,
@@ -699,11 +691,7 @@
700692 array( 'cl_from' => $this->mId ), __METHOD__, $this->mOptions );
701693 $arr = array();
702694 foreach ( $res as $row ) {
703 - if ( $row->cl_sortkey_prefix !== '' ) {
704 - $arr[$row->cl_to] = $row->cl_sortkey_prefix;
705 - } else {
706 - $arr[$row->cl_to] = $this->mTitle->getCategorySortkey();
707 - }
 695+ $arr[$row->cl_to] = $row->cl_sortkey_prefix;
708696 }
709697 return $arr;
710698 }
Index: branches/wmf/1.17wmf1/includes/resourceloader/ResourceLoaderContext.php
@@ -91,7 +91,8 @@
9292 if ( $this->direction === null ) {
9393 $this->direction = $this->request->getVal( 'dir' );
9494 if ( !$this->direction ) {
95 - $this->direction = Language::factory( $this->language )->getDir();
 95+ global $wgContLang;
 96+ $this->direction = $wgContLang->getDir();
9697 }
9798 }
9899 return $this->direction;
Index: branches/wmf/1.17wmf1/includes/DefaultSettings.php
@@ -3629,7 +3629,7 @@
36303630 $wgCookieExpiration = 30*86400;
36313631
36323632 /**
3633 - * Set to set an explicit domain on the login cookies eg, "justthis.domain. org"
 3633+ * Set to set an explicit domain on the login cookies eg, "justthis.domain.org"
36343634 * or ".any.subdomain.net"
36353635 */
36363636 $wgCookieDomain = '';
Property changes on: branches/wmf/1.17wmf1/includes/DefaultSettings.php
___________________________________________________________________
Modified: svn:mergeinfo
36373637 Merged /branches/REL1_17/phase3/includes/DefaultSettings.php:r81654
36383638 Merged /trunk/phase3/includes/DefaultSettings.php:r79324,80841,81430,81488,81496,81554,81561,81589,81600,81611,81620,81622,81640,81648,81650-81652
Index: branches/wmf/1.17wmf1/includes/specials/SpecialWhatlinkshere.php
@@ -236,7 +236,7 @@
237237 $wgOut->addHTML( $prevnext );
238238 }
239239
240 - $wgOut->addHTML( $this->listStart() );
 240+ $wgOut->addHTML( $this->listStart( $level ) );
241241 foreach ( $rows as $row ) {
242242 $nt = Title::makeTitle( $row->page_namespace, $row->page_title );
243243
@@ -256,18 +256,16 @@
257257 }
258258 }
259259
260 - protected function listStart() {
261 - return Xml::openElement( 'ul', array ( 'id' => 'mw-whatlinkshere-list' ) );
 260+ protected function listStart( $level ) {
 261+ return Xml::openElement( 'ul', ( $level ? array() : array( 'id' => 'mw-whatlinkshere-list' ) ) );
262262 }
263263
264264 protected function listItem( $row, $nt, $notClose = false ) {
265 - global $wgLang;
266 -
267265 # local message cache
268266 static $msgcache = null;
269267 if ( $msgcache === null ) {
270268 static $msgs = array( 'isredirect', 'istemplate', 'semicolon-separator',
271 - 'whatlinkshere-links', 'isimage', 'hist' );
 269+ 'whatlinkshere-links', 'isimage' );
272270 $msgcache = array();
273271 foreach ( $msgs as $msg ) {
274272 $msgcache[$msg] = wfMsgExt( $msg, array( 'escapenoentities' ) );
@@ -302,10 +300,8 @@
303301 }
304302
305303 # Space for utilities links, with a what-links-here link provided
306 - $tools = array();
307 - $tools[] = $this->wlhLink( $nt, $msgcache['whatlinkshere-links'] );
308 - $tools[] = $this->skin->linkKnown( $nt, $msgcache['hist'], array(), array( 'action' => 'history' ) );
309 - $wlh = Xml::wrapClass( '(' . $wgLang->pipeList( $tools ) . ')', 'mw-whatlinkshere-tools' );
 304+ $wlhLink = $this->wlhLink( $nt, $msgcache['whatlinkshere-links'] );
 305+ $wlh = Xml::wrapClass( "($wlhLink)", 'mw-whatlinkshere-tools' );
310306
311307 return $notClose ?
312308 Xml::openElement( 'li' ) . "$link $propsText $wlh\n" :
Index: branches/wmf/1.17wmf1/languages/messages/MessagesBe.php
@@ -58,7 +58,11 @@
5959 NS_CATEGORY_TALK => 'Размовы_пра_катэгорыю',
6060 );
6161
62 -$separatorTransformTable = array( ',' => '.', '.' => ',' );
 62+# Per discussion on http://translatewiki.net/wiki/Thread:Support/Customization_of number format
 63+$separatorTransformTable = array(
 64+ ',' => "\xc2\xa0", # nbsp
 65+ '.' => ','
 66+);
6367
6468 $linkTrail = '/^([абвгґджзеёжзійклмнопрстуўфхцчшыьэюяćčłńśšŭźža-z]+)(.*)$/sDu';
6569
Index: branches/wmf/1.17wmf1/RELEASE-NOTES
@@ -495,6 +495,7 @@
496496 * BREAKING CHANGE: Session keys returned by ApiUpload are now strings instead of integers
497497 * (bug 24650) Fix API to work with categorylinks changes
498498 * action=parse now correctly returns an error for nonexistent pages
 499+* (bug 27201) Special:WhatLinksHere output no longer contains duplicate IDs
499500
500501 * (bug 22738) Allow filtering by action type on query=logevent.
501502 * (bug 22764) uselang parameter for action=parse.
Property changes on: branches/wmf/1.17wmf1/RELEASE-NOTES
___________________________________________________________________
Modified: svn:mergeinfo
502503 Merged /branches/REL1_17/extensions/RELEASE-NOTES:r81654
503504 Merged /branches/REL1_17/phase3/RELEASE-NOTES:r81654
504505 Merged /trunk/phase3/RELEASE-NOTES:r79324,80841,81430,81488,81496,81554,81561,81589,81600,81611,81620,81622,81640,81648,81650-81652
Index: branches/wmf/1.17wmf1/resources/jquery/jquery.textSelection.js
@@ -261,7 +261,7 @@
262262 */
263263 scrollToCaretPosition: function( options ) {
264264 function getLineLength( e ) {
265 - return Math.floor( e.scrollWidth / ( $.os.name == 'linux' ? 7 : 8 ) );
 265+ return Math.floor( e.scrollWidth / ( $.client.profile().platform == 'linux' ? 7 : 8 ) );
266266 }
267267 function getCaretScrollPosition( e ) {
268268 // FIXME: This functions sucks and is off by a few lines most
@@ -304,7 +304,7 @@
305305 charInLine = caret - lastSpaceInLine;
306306 row++;
307307 }
308 - return ( $.os.name == 'mac' ? 13 : ( $.os.name == 'linux' ? 15 : 16 ) ) * row;
 308+ return ( $.client.profile().platform == 'mac' ? 13 : ( $.client.profile().platform == 'linux' ? 15 : 16 ) ) * row;
309309 }
310310 return this.each(function() {
311311 if ( $(this).is( ':hidden' ) ) {

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r81520MFT r81519demon15:06, 4 February 2011
r816541.17: MFT r78372, r79324, r80841, r81430, r81488, r81496, r81554, r81561, r81...catrope22:28, 7 February 2011

Status & tagging log