Brion Vibber | 1 Dec 2004 02:22
Picon

phase3/config index.php,1.84,1.85

Update of /cvsroot/wikipedia/phase3/config
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28980/config

Modified Files:
	index.php 
Log Message:
(bug 961) Treat languages without names more cleanly

Index: index.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/config/index.php,v
retrieving revision 1.84
retrieving revision 1.85
diff -C2 -d -r1.84 -r1.85
*** index.php	21 Nov 2004 02:09:31 -0000	1.84
--- index.php	1 Dec 2004 01:22:36 -0000	1.85
***************
*** 1045,1053 ****
  		if( preg_match( '/Language([A-Z][a-z_]+)\.php$/', $f, $m ) ) {
  			$code = str_replace( '_', '-', strtolower( $m[1] ) );
  			if( in_array( $code, $latin1 ) ) {
! 				$codes[$code] = "$code - " . $wgLanguageNames[$code] . " - Unicode";
! 				$codes[$code.'-latin1'] = "$code - " . $wgLanguageNames[$code] . " - Latin-1";
  			} else {
! 				$codes[$code] = "$code - " . $wgLanguageNames[$code];
  			}
  		}
--- 1045,1058 ----
  		if( preg_match( '/Language([A-Z][a-z_]+)\.php$/', $f, $m ) ) {
  			$code = str_replace( '_', '-', strtolower( $m[1] ) );
(Continue reading)

Brion Vibber | 1 Dec 2004 09:46
Picon

phase3/includes DefaultSettings.php, 1.214, 1.215 DifferenceEngine.php, 1.55, 1.56 GlobalFunctions.php, 1.136, 1.137 LinkCache.php, 1.38, 1.39 SpecialRecentchanges.php, 1.49, 1.50

Update of /cvsroot/wikipedia/phase3/includes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24616/includes

Modified Files:
	DefaultSettings.php DifferenceEngine.php GlobalFunctions.php 
	LinkCache.php SpecialRecentchanges.php 
Log Message:
Profiling points. Bump version to 1.4.0beta0; update HISTORY notes to current 1.3; prepare for REL1_4 branch.

Index: DifferenceEngine.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/includes/DifferenceEngine.php,v
retrieving revision 1.55
retrieving revision 1.56
diff -C2 -d -r1.55 -r1.56
*** DifferenceEngine.php	25 Nov 2004 23:49:52 -0000	1.55
--- DifferenceEngine.php	1 Dec 2004 08:46:48 -0000	1.56
***************
*** 588,591 ****
--- 588,592 ----
  		$x = $xoff;
  		for ($chunk = 0; $chunk < $nchunks; $chunk++) {
+ 			wfProfileIn( "$fname-chunk" );
  			if ($chunk > 0)
  				for ($i = 0; $i <= $this->lcs; $i++)
***************
*** 621,624 ****
--- 622,626 ----
  				}
  			}
(Continue reading)

Brion Vibber | 1 Dec 2004 09:46
Picon

phase3 HISTORY,1.2,1.3 RELEASE-NOTES,1.39,1.40

Update of /cvsroot/wikipedia/phase3
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24616

Modified Files:
	HISTORY RELEASE-NOTES 
Log Message:
Profiling points. Bump version to 1.4.0beta0; update HISTORY notes to current 1.3; prepare for REL1_4 branch.

Index: RELEASE-NOTES
===================================================================
RCS file: /cvsroot/wikipedia/phase3/RELEASE-NOTES,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** RELEASE-NOTES	16 Nov 2004 05:28:47 -0000	1.39
--- RELEASE-NOTES	1 Dec 2004 08:46:47 -0000	1.40
***************
*** 5,12 ****

  
! *** COMMITTERS! Before 1.4 release, make sure 1.3.x release notes are
! *** up to date in the file HISTORY. Don't put 1.3 updates here please.

! == MediaWiki 1.4 PRE-ALPHA ==

  Major changes from 1.3.x:
--- 5,11 ----

  
! == MediaWiki 1.4 BETA ==
(Continue reading)

Brion Vibber | 1 Dec 2004 09:48
Picon

phase3/includes LinkCache.php,1.39,1.40

Update of /cvsroot/wikipedia/phase3/includes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25226/includes

Modified Files:
	LinkCache.php 
Log Message:
Revert accidental checkin of unused experimental code.

Index: LinkCache.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/includes/LinkCache.php,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** LinkCache.php	1 Dec 2004 08:46:48 -0000	1.39
--- LinkCache.php	1 Dec 2004 08:48:31 -0000	1.40
***************
*** 74,81 ****
  		}
  	}
- 	
- 	function addBadLinkObj( &$nt ) {
- 		$this->addBadLink( $nt->getPrefixedDBkey() );
- 	}

  	function addImageLink( $title ) {
--- 74,77 ----
Brion Vibber | 1 Dec 2004 09:50
Picon

extensions Syslog.php,NONE,1.1

Update of /cvsroot/wikipedia/extensions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25533

Added Files:
	Syslog.php 
Log Message:
Moved Evan's sample hook-using extension from phase3 to extensions module.
The extensions directory in the phase3 distribution is meant to be empty.

--- NEW FILE: Syslog.php ---
<?php
/* Syslog.php -- an extension to log events to the system logger
 * Copyright 2004 Evan Prodromou <evan <at> wikitravel.org>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *  <at> author Evan Prodromou <evan <at> wikitravel.org>
 *  <at> package MediaWiki
(Continue reading)

Brion Vibber | 1 Dec 2004 09:51
Picon

phase3/extensions Syslog.php,1.9,NONE

Update of /cvsroot/wikipedia/phase3/extensions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25890

Removed Files:
	Syslog.php 
Log Message:
Moved Evan's sample hook-using extension from phase3 to extensions module.
The extensions directory in the phase3 distribution is meant to be empty.

--- Syslog.php DELETED ---
Tim Starling | 1 Dec 2004 12:41
Picon

phase3/extensions FindSpam.php,NONE,1.1.2.1

Update of /cvsroot/wikipedia/phase3/extensions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25950

Added Files:
      Tag: REL1_3A
	FindSpam.php 
Log Message:
interwiki IP address contributions search for finding spam

--- NEW FILE: FindSpam.php ---
<?php

# This is a simple example of a special page module
# Given a string in UTF-8, it converts it to HTML entities suitable for 
# an ISO 8859-1 web page.

$wgExtensionFunctions[] = "wfFindSpam";

function wfFindSpam() {

require_once( "SpecialPage.php" );

class FindSpamPage extends SpecialPage
{
	function FindSpamPage() {
		SpecialPage::SpecialPage("FindSpam", "sysop");
	}

	function execute( $par ) {
		global $wgRequest, $wgOut, $wgTitle, $wgLocalDatabases, $conf, $wgCanonicalNamespaceNames, $wgLang;
(Continue reading)

Brion Vibber | 1 Dec 2004 15:19
Picon

phase3/config index.php,1.85,1.85.2.1

Update of /cvsroot/wikipedia/phase3/config
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28314/config

Modified Files:
      Tag: REL1_4
	index.php 
Log Message:
Merge table prefix installer fixes from HEAD

Index: index.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/config/index.php,v
retrieving revision 1.85
retrieving revision 1.85.2.1
diff -C2 -d -r1.85 -r1.85.2.1
*** index.php	1 Dec 2004 01:22:36 -0000	1.85
--- index.php	1 Dec 2004 14:19:57 -0000	1.85.2.1
***************
*** 322,325 ****
--- 322,326 ----
  	$conf->DBpassword = importPost( "DBpassword" );
  	$conf->DBpassword2 = importPost( "DBpassword2" );
+ 	$conf->DBprefix = importPost( "DBprefix" );
  	$conf->RootPW = importPost( "RootPW" );
  	$conf->LanguageCode = importPost( "LanguageCode", "en" );
***************
*** 343,346 ****
--- 344,350 ----
  	$errs["DBpassword2"] = "Passwords don't match!";
  }
(Continue reading)

Brion Vibber | 1 Dec 2004 15:19
Picon

phase3/includes SpecialUncategorizedcategories.php, NONE, 1.1.2.1 SpecialPage.php, 1.25, 1.25.2.1 SpecialUncategorizedpages.php, 1.5, 1.5.2.1

Update of /cvsroot/wikipedia/phase3/includes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28314/includes

Modified Files:
      Tag: REL1_4
	SpecialPage.php SpecialUncategorizedpages.php 
Added Files:
      Tag: REL1_4
	SpecialUncategorizedcategories.php 
Log Message:
Merge table prefix installer fixes from HEAD

Index: SpecialUncategorizedpages.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/includes/SpecialUncategorizedpages.php,v
retrieving revision 1.5
retrieving revision 1.5.2.1
diff -C2 -d -r1.5 -r1.5.2.1
*** SpecialUncategorizedpages.php	13 Nov 2004 20:40:28 -0000	1.5
--- SpecialUncategorizedpages.php	1 Dec 2004 14:19:57 -0000	1.5.2.1
***************
*** 17,21 ****
   */
  class UncategorizedPagesPage extends PageQueryPage {
! 
  	function getName() {
  		return "Uncategorizedpages";
--- 17,22 ----
   */
  class UncategorizedPagesPage extends PageQueryPage {
(Continue reading)

Brion Vibber | 1 Dec 2004 15:19
Picon

phase3/languages Language.php,1.390,1.390.2.1

Update of /cvsroot/wikipedia/phase3/languages
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28314/languages

Modified Files:
      Tag: REL1_4
	Language.php 
Log Message:
Merge table prefix installer fixes from HEAD

Index: Language.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/languages/Language.php,v
retrieving revision 1.390
retrieving revision 1.390.2.1
diff -C2 -d -r1.390 -r1.390.2.1
*** Language.php	29 Nov 2004 15:32:41 -0000	1.390
--- Language.php	1 Dec 2004 14:19:57 -0000	1.390.2.1
***************
*** 1017,1020 ****
--- 1017,1021 ----
  'lonelypages'	=> 'Orphaned pages',
  'uncategorizedpages'	=> 'Uncategorized pages',
+ 'uncategorizedcategories'	=> 'Uncategorized categories',
  'unusedimages'	=> 'Unused images',
  'popularpages'	=> 'Popular pages',

Gmane