daniel | 1 Aug 2006 14:45

SVN: [15902] trunk/phase3/maintenance/installExtension.php

Revision: 15902
Author:   daniel
Date:     2006-08-01 05:45:43 -0700 (Tue, 01 Aug 2006)

Log Message:
-----------
Rewrote installExtension.php; now using "repository" concept, OO design, and no longer patches
LocalSettings.php per default.

Modified Paths:
--------------
    trunk/phase3/maintenance/installExtension.php
Modified: trunk/phase3/maintenance/installExtension.php
===================================================================
--- trunk/phase3/maintenance/installExtension.php	2006-07-30 23:50:26 UTC (rev 15901)
+++ trunk/phase3/maintenance/installExtension.php	2006-08-01 12:45:43 UTC (rev 15902)
 <at>  <at>  -21,23 +21,287  <at>  <at> 
  *  <at> subpackage Maintenance
  */

-$optionsWithArgs = array( 'target' );
+$optionsWithArgs = array( 'target', 'repository', 'repos' );

 require_once( 'commandLine.inc' );

+define('EXTINST_NOPATCH', 0);
+define('EXTINST_WRITEPATCH', 6);
+define('EXTINST_HOTPATCH', 10);
+
+class InstallerRepository {
(Continue reading)

daniel | 1 Aug 2006 14:52

SVN: [15903] trunk/phase3/maintenance/installExtension.php

Revision: 15903
Author:   daniel
Date:     2006-08-01 05:52:25 -0700 (Tue, 01 Aug 2006)

Log Message:
-----------
(k) fix minor glitch in installExtension.php

Modified Paths:
--------------
    trunk/phase3/maintenance/installExtension.php
Modified: trunk/phase3/maintenance/installExtension.php
===================================================================
--- trunk/phase3/maintenance/installExtension.php	2006-08-01 12:45:43 UTC (rev 15902)
+++ trunk/phase3/maintenance/installExtension.php	2006-08-01 12:52:25 UTC (rev 15903)
 <at>  <at>  -573,7 +573,7  <at>  <at> 

 if ( !$repos ) $repos = 'http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions';

-if( !isset( $args[0] ) && !$options['list'] ) {
+if( !isset( $args[0] ) && ! <at> $options['list'] ) {
 	die( "USAGE: installExtension.php [options] <name> [source]\n" .
 		"OPTIONS: \n" . 
 		"    --list            list available extensions. <name> is ignored / may be omitted.\n" .
rotem | 1 Aug 2006 17:25

SVN: [15904] trunk/phase3

Revision: 15904
Author:   rotem
Date:     2006-08-01 08:25:18 -0700 (Tue, 01 Aug 2006)

Log Message:
-----------
Adding initial language file for Tajik (tg); currently includes only namespace translations from http://bugzilla.wikimedia.org/show_bug.cgi?id=6897

Modified Paths:
--------------
    trunk/phase3/RELEASE-NOTES

Added Paths:
-----------
    trunk/phase3/languages/MessagesTg.php
Modified: trunk/phase3/RELEASE-NOTES
===================================================================
--- trunk/phase3/RELEASE-NOTES	2006-08-01 12:52:25 UTC (rev 15903)
+++ trunk/phase3/RELEASE-NOTES	2006-08-01 15:25:18 UTC (rev 15904)
 <at>  <at>  -109,6 +109,7  <at>  <at> 
   framework and wgAjaxSearch to enable the suggest feature for the search box.
 * Added experimental installer for extensions. 
   See maintenance/installExtension.php
+* Added Tajic (tg) language file.

 == Languages updated ==

 <at>  <at>  -128,6 +129,7  <at>  <at> 
 * Polish (pl)
 * Russian (ru)
(Continue reading)

rotem | 1 Aug 2006 18:25

SVN: [15905] trunk/phase3

Revision: 15905
Author:   rotem
Date:     2006-08-01 09:24:55 -0700 (Tue, 01 Aug 2006)

Log Message:
-----------
rmy localisation: Namespaces + grammar.

Modified Paths:
--------------
    trunk/phase3/RELEASE-NOTES
    trunk/phase3/languages/MessagesRmy.php

Added Paths:
-----------
    trunk/phase3/languages/LanguageRmy.php
Modified: trunk/phase3/RELEASE-NOTES
===================================================================
--- trunk/phase3/RELEASE-NOTES	2006-08-01 15:25:18 UTC (rev 15904)
+++ trunk/phase3/RELEASE-NOTES	2006-08-01 16:24:55 UTC (rev 15905)
 <at>  <at>  -127,9 +127,10  <at>  <at> 
 * Indonesian (id)
 * Korean (ko)
 * Polish (pl)
+* Romani (rmy)
 * Russian (ru)
+* Tajic (tg)
 * Telugu (te)
-* Tajic (tg)

(Continue reading)

david | 1 Aug 2006 23:15

SVN: [15906] branches/liquidthreads/extensions

Revision: 15906
Author:   david
Date:     2006-08-01 14:15:00 -0700 (Tue, 01 Aug 2006)

Log Message:
-----------
Added archive TOC -- for until we get archive search

Modified Paths:
--------------
    branches/liquidthreads/extensions/LqtSpecialNamespaces.php
    branches/liquidthreads/extensions/ThreadView.php
    branches/liquidthreads/skins/common/lqt.js
    branches/liquidthreads/skins/monobook/main.css
Modified: branches/liquidthreads/extensions/LqtSpecialNamespaces.php
===================================================================
--- branches/liquidthreads/extensions/LqtSpecialNamespaces.php	2006-08-01 16:24:55 UTC (rev 15905)
+++ branches/liquidthreads/extensions/LqtSpecialNamespaces.php	2006-08-01 21:15:00 UTC (rev 15906)
 <at>  <at>  -57,7 +57,7  <at>  <at> 
 		  
 		  $wgOut->addHTML(
 		       wfOpenElement('div', array('class'=>'lqt_archive_browser')) .
-		       wfOpenElement('form', array('action'=>$this->talkTitle->getFUllURL())) .
+		       wfOpenElement('form', array('action'=>$this->talkTitle->getFullURL())) .
 		       wfOpenElement('select', array('name'=>'lqt_show_month')));

 		  $recent_option_attribs = $showing_recent ? array('value'=>'recent', 'selected'=>'true')
 <at>  <at>  -76,10 +76,29  <at>  <at> 
 		  $wgOut->addHTML(
 		       wfCloseElement('select') .
(Continue reading)

brion | 1 Aug 2006 23:23

SVN: [15907] trunk/phase3/languages/MessagesFr.php

Revision: 15907
Author:   brion
Date:     2006-08-01 14:23:16 -0700 (Tue, 01 Aug 2006)

Log Message:
-----------
fix typo

Modified Paths:
--------------
    trunk/phase3/languages/MessagesFr.php
Modified: trunk/phase3/languages/MessagesFr.php
===================================================================
--- trunk/phase3/languages/MessagesFr.php	2006-08-01 21:15:00 UTC (rev 15906)
+++ trunk/phase3/languages/MessagesFr.php	2006-08-01 21:23:16 UTC (rev 15907)
 <at>  <at>  -1455,7 +1455,7  <at>  <at> 
 'confirmemail_loggedin' => 'Votre adresse est maintenant confirmée',
 'confirmemail_error' => 'Un problème est survenu en voulant enregistrer votre confirmation',
 'confirmemail_subject' => 'Confirmation d\'adresse de courriel pour {{SITENAME}}',
-'confirmemail_body' => 'Quelqu\'un, probablement vous avec l\'adresse email $1, a enregistré un
compte « $2 » avec cette adresse de courriel sur le site {{SITENAME}}.
+'confirmemail_body' => 'Quelqu\'un, probablement vous avec l\'adresse IP $1, a enregistré un compte
« $2 » avec cette adresse de courriel sur le site {{SITENAME}}.

 Pour confirmer que ce compte vous appartient vraiment et activer les fonctions de messagerie sur
{{SITENAME}}, veuillez suivre le lien ci dessous dans votre navigateur :

_______________________________________________
MediaWiki-CVS mailing list
MediaWiki-CVS <at> wikimedia.org
(Continue reading)

tstarling | 2 Aug 2006 05:19

SVN: [15908] trunk/phase3/languages/Language.php

Revision: 15908
Author:   tstarling
Date:     2006-08-01 20:19:55 -0700 (Tue, 01 Aug 2006)

Log Message:
-----------
Fixed {{grammar:}} tags in namespace names

Modified Paths:
--------------
    trunk/phase3/languages/Language.php
Modified: trunk/phase3/languages/Language.php
===================================================================
--- trunk/phase3/languages/Language.php	2006-08-01 21:23:16 UTC (rev 15907)
+++ trunk/phase3/languages/Language.php	2006-08-02 03:19:55 UTC (rev 15908)
 <at>  <at>  -1466,11 +1466,9  <at>  <at> 
 			# Allowing full message-style parsing would make simple requests 
 			# such as action=raw much more expensive than they need to be. 
 			# This will hopefully cover most cases.
-			if ( preg_match( '/{{grammar:(.*?)\|(.*?)}}/i', $talk, $m ) ) {
-				$talk = str_replace( ' ', '_', 
-					$this->convertGrammar( trim( $m[2] ), trim( $m[1] ) )
-				);
-			}
+			$talk = preg_replace_callback( '/{{grammar:(.*?)\|(.*?)}}/', 
+				array( &$this, 'replaceGrammarInNamespace' ), $talk );
+			$talk = str_replace( ' ', '_', $talk );
 			$this->namespaceNames[NS_PROJECT_TALK] = $talk;
 		}
 		
(Continue reading)

tstarling | 2 Aug 2006 05:27

SVN: [15909] trunk/phase3/includes/Wiki.php

Revision: 15909
Author:   tstarling
Date:     2006-08-01 20:27:08 -0700 (Tue, 01 Aug 2006)

Log Message:
-----------
Don't run jobs in read only mode.

Modified Paths:
--------------
    trunk/phase3/includes/Wiki.php
Modified: trunk/phase3/includes/Wiki.php
===================================================================
--- trunk/phase3/includes/Wiki.php	2006-08-02 03:19:55 UTC (rev 15908)
+++ trunk/phase3/includes/Wiki.php	2006-08-02 03:27:08 UTC (rev 15909)
 <at>  <at>  -270,7 +270,7  <at>  <at> 
 	function doJobs() {
 		global $wgJobRunRate;
 		
-		if ( $wgJobRunRate <= 0 ) {
+		if ( $wgJobRunRate <= 0 || wfReadOnly() ) {
 			return;
 		}
 		if ( $wgJobRunRate < 1 ) {
erik | 2 Aug 2006 07:00

SVN: [15910] trunk/extensions/Wikidata/WiktionaryZ

Revision: 15910
Author:   erik
Date:     2006-08-01 21:59:59 -0700 (Tue, 01 Aug 2006)

Log Message:
-----------
some changes in terminology:
Relation=>RecordSet
Tuple=>Record
Heading=>Structure
primarily to avoid confusion between different types of "relation"

some files renamed

Modified Paths:
--------------
    trunk/extensions/Wikidata/WiktionaryZ/HTMLtable.php
    trunk/extensions/Wikidata/WiktionaryZ/SpecialSuggest.php
    trunk/extensions/Wikidata/WiktionaryZ/WiktionaryZ.php
    trunk/extensions/Wikidata/WiktionaryZ/WiktionaryZAttributes.php
    trunk/extensions/Wikidata/WiktionaryZ/converter.php
    trunk/extensions/Wikidata/WiktionaryZ/type.php

Added Paths:
-----------
    trunk/extensions/Wikidata/WiktionaryZ/Attribute.php
    trunk/extensions/Wikidata/WiktionaryZ/Editor.php
    trunk/extensions/Wikidata/WiktionaryZ/Record.php
    trunk/extensions/Wikidata/WiktionaryZ/RecordSet.php

(Continue reading)

tstarling | 2 Aug 2006 16:44

SVN: [15911] trunk/phase3/languages/LanguageCs.php

Revision: 15911
Author:   tstarling
Date:     2006-08-02 07:43:59 -0700 (Wed, 02 Aug 2006)

Log Message:
-----------
Got rid of user namespace customisation, use the standard methods instead.

Modified Paths:
--------------
    trunk/phase3/languages/LanguageCs.php
Modified: trunk/phase3/languages/LanguageCs.php
===================================================================
--- trunk/phase3/languages/LanguageCs.php	2006-08-02 04:59:59 UTC (rev 15910)
+++ trunk/phase3/languages/LanguageCs.php	2006-08-02 14:43:59 UTC (rev 15911)
 <at>  <at>  -10,18 +10,6  <at>  <at> 
 #--------------------------------------------------------------------------

 class LanguageCs extends Language {
-	function fixUpSettings() {
-		parent::fixUpSettings();
-
-		# Yucky hardcoding hack
-		global $wgMetaNamespace;
-		if ( $wgMetaNamespace == 'Wikipedie' || $wgMetaNamespace == 'Wikipedia' ) {
-			$this->namespaceNames[NS_USER] = 'Wikipedista'; 
-		}
-		$this->namespaceNames[NS_USER_TALK] = str_replace( '$1', 
-			$this->namespaceNames[NS_USER], $this->namespaceNames[NS_USER_TALK] );
-	}
(Continue reading)


Gmane