Tim Starling | 1 Feb 2006 05:34
Picon

phase3/includes Linker.php,1.69,1.70

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

Modified Files:
	Linker.php 
Log Message:
documentation, code cleanup

Index: Linker.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/includes/Linker.php,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- Linker.php	19 Jan 2006 06:29:41 -0000	1.69
+++ Linker.php	1 Feb 2006 04:34:47 -0000	1.70
 <at>  <at>  -77,8 +77,15  <at>  <at> 
 	}

 	/**
-	 * Note: This function MUST call getArticleID() on the link,
-	 * otherwise the cache won't get updated properly.  See LINKCACHE.DOC.
+	 * This function is a shortcut to makeLinkObj(Title::newFromText($title),...). Do not call
+	 * it if you already have a title object handy. See makeLinkObj for further documentation.
+	 *
+	 *  <at> param string $title The text of the title
+	 *  <at> param string $text Link text
+	 *  <at> param string $query Optional query part
+	 *  <at> param string $trail Optional trail. Alphabetic characters at the start of this string will
+	 *                      be included in the link text. Other characters will be appended after 
(Continue reading)

Tim Starling | 1 Feb 2006 05:41
Picon

phase3 RELEASE-NOTES,1.735,1.736

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

Modified Files:
	RELEASE-NOTES 
Log Message:
Various improvements to interwiki transclusion. Introduced {{raw:..}}, to force raw transclusion when
subst: isn't in use. Referer header set in wfGetHTTP(), this could be for weak (honour-bound) detection
of the external site, for statistics or license notices.

Index: RELEASE-NOTES
===================================================================
RCS file: /cvsroot/wikipedia/phase3/RELEASE-NOTES,v
retrieving revision 1.735
retrieving revision 1.736
diff -u -d -r1.735 -r1.736
--- RELEASE-NOTES	31 Jan 2006 04:09:59 -0000	1.735
+++ RELEASE-NOTES	1 Feb 2006 04:41:52 -0000	1.736
 <at>  <at>  -258,6 +258,7  <at>  <at> 
   character before doing anything with them. This prevents certain kinds of
   spam filter evasion.
 * (bug 4783) : Fix for "{{ns:0}} does not render"
+* Improved support for interwiki transclusion

 Upload:
 * (bug 2527) Always set destination filename when new file is selected
Tim Starling | 1 Feb 2006 05:44
Picon

phase3/skins/monobook main.css,1.90,1.91

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

Modified Files:
	main.css 
Log Message:
Use a.external instead of a[href ^="http://"] to detect external links. This is to support interwiki
transclusion with action=render. The protocol-specific rules below still seem to work.

Index: main.css
===================================================================
RCS file: /cvsroot/wikipedia/phase3/skins/monobook/main.css,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -d -r1.90 -r1.91
--- main.css	29 Jan 2006 07:35:28 -0000	1.90
+++ main.css	1 Feb 2006 04:44:23 -0000	1.91
 <at>  <at>  -562,7 +562,7  <at>  <at> 
 ** keep the whitespace in front of the ^=, hides rule from konqueror
 ** this is css3, the validator doesn't like it when validating as css2
 */
-#bodyContent a[href ^="http://"],
+#bodyContent a.external,
 #bodyContent a[href ^="gopher://"] {
 	background: url(external.png) center right no-repeat;
 	padding-right: 13px;
Tim Starling | 1 Feb 2006 05:41
Picon

phase3/includes HttpFunctions.php, 1.9, 1.10 MagicWord.php, 1.60, 1.61 Parser.php, 1.585, 1.586 Title.php, 1.265, 1.266

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

Modified Files:
	HttpFunctions.php MagicWord.php Parser.php Title.php 
Log Message:
Various improvements to interwiki transclusion. Introduced {{raw:..}}, to force raw transclusion when
subst: isn't in use. Referer header set in wfGetHTTP(), this could be for weak (honour-bound) detection
of the external site, for statistics or license notices.

Index: Title.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/includes/Title.php,v
retrieving revision 1.265
retrieving revision 1.266
diff -u -d -r1.265 -r1.266
--- Title.php	25 Jan 2006 11:25:56 -0000	1.265
+++ Title.php	1 Feb 2006 04:41:53 -0000	1.266
 <at>  <at>  -494,7 +494,7  <at>  <at> 
 	function isTrans() {
 		global $wgTitleInterwikiCache, $wgDBname;

-		if ($this->mInterwiki == '' || !$this->isLocal())
+		if ($this->mInterwiki == '')
 			return false;
 		# Make sure key is loaded into cache
 		$this->getInterwikiLink( $this->mInterwiki );
 <at>  <at>  -752,6 +752,13  <at>  <at> 

 		if ( $this->isExternal() ) {
(Continue reading)

Tim Starling | 1 Feb 2006 05:41
Picon

phase3/languages Language.php,1.798,1.799

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

Modified Files:
	Language.php 
Log Message:
Various improvements to interwiki transclusion. Introduced {{raw:..}}, to force raw transclusion when
subst: isn't in use. Referer header set in wfGetHTTP(), this could be for weak (honour-bound) detection
of the external site, for statistics or license notices.

Index: Language.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/languages/Language.php,v
retrieving revision 1.798
retrieving revision 1.799
diff -u -d -r1.798 -r1.799
--- Language.php	22 Jan 2006 00:49:58 -0000	1.798
+++ Language.php	1 Feb 2006 04:41:53 -0000	1.799
 <at>  <at>  -253,10 +253,11  <at>  <at> 
 	MAG_PLURAL               => array( 0,    'PLURAL:'                ),
 	MAG_FULLURL              => array( 0,    'FULLURL:'               ),
 	MAG_FULLURLE             => array( 0,    'FULLURLE:'              ),
-	MAG_LCFIRST		 => array( 0,    'LCFIRST:'               ),
-	MAG_UCFIRST		 => array( 0,    'UCFIRST:'               ),
-	MAG_LC			 => array( 0,    'LC:'                    ),
-	MAG_UC			 => array( 0,    'UC:'                    ),
+	MAG_LCFIRST              => array( 0,    'LCFIRST:'               ),
+	MAG_UCFIRST              => array( 0,    'UCFIRST:'               ),
+	MAG_LC                   => array( 0,    'LC:'                    ),
+	MAG_UC                   => array( 0,    'UC:'                    ),
(Continue reading)

Brion Vibber | 1 Feb 2006 11:04
Picon

mwdumper build.xml,1.2,1.3

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

Modified Files:
	build.xml 
Log Message:
bundle mysql connector

Index: build.xml
===================================================================
RCS file: /cvsroot/wikipedia/mwdumper/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- build.xml	25 Jan 2006 08:36:15 -0000	1.2
+++ build.xml	1 Feb 2006 10:04:28 -0000	1.3
 <at>  <at>  -38,6 +38,7  <at>  <at> 
 			<zipfileset src="libs/xml-apis.jar" />
 			<zipfileset src="libs/xercesImpl.jar" />
 			<zipfileset src="libs/swing-layout-1.0.jar" />
+			<zipfileset src="libs/mysql-connector-java-3.1.11-bin.jar" />
 		</jar>
 	</target>
 	
Brion Vibber | 1 Feb 2006 22:24
Picon

phase3/skins MonoBook.php,1.81,1.82

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

Modified Files:
	MonoBook.php 
Log Message:
* (bug 4824) IE7 beta 2 broke compatibility with PNG logo workarounds,
  and seems to work ok with other bits. No longer including the IE
  workarounds JavaScript for IE 7 and above.

Index: MonoBook.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/skins/MonoBook.php,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -d -r1.81 -r1.82
--- MonoBook.php	20 Jan 2006 19:01:54 -0000	1.81
+++ MonoBook.php	1 Feb 2006 21:24:04 -0000	1.82
 <at>  <at>  -62,7 +62,7  <at>  <at> 
 		<!--[if lt IE 5.5000]><style type="text/css"> <at> import "<?php $this->text('stylepath') ?>/<?php
$this->text('stylename') ?>/IE50Fixes.css";</style><![endif]-->
 		<!--[if IE 5.5000]><style type="text/css"> <at> import "<?php $this->text('stylepath') ?>/<?php
$this->text('stylename') ?>/IE55Fixes.css";</style><![endif]-->
 		<!--[if gte IE 6]><style type="text/css"> <at> import "<?php $this->text('stylepath') ?>/<?php
$this->text('stylename') ?>/IE60Fixes.css";</style><![endif]-->
-		<!--[if IE]><script type="<?php $this->text('jsmimetype') ?>" src="<?php
$this->text('stylepath') ?>/common/IEFixes.js"></script>
+		<!--[if lt IE 7]><script type="<?php $this->text('jsmimetype') ?>" src="<?php
$this->text('stylepath') ?>/common/IEFixes.js"></script>
 		<meta http-equiv="imagetoolbar" content="no" /><![endif]-->
(Continue reading)

Brion Vibber | 1 Feb 2006 22:24
Picon

phase3 RELEASE-NOTES,1.736,1.737

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

Modified Files:
	RELEASE-NOTES 
Log Message:
* (bug 4824) IE7 beta 2 broke compatibility with PNG logo workarounds,
  and seems to work ok with other bits. No longer including the IE
  workarounds JavaScript for IE 7 and above.

Index: RELEASE-NOTES
===================================================================
RCS file: /cvsroot/wikipedia/phase3/RELEASE-NOTES,v
retrieving revision 1.736
retrieving revision 1.737
diff -u -d -r1.736 -r1.737
--- RELEASE-NOTES	1 Feb 2006 04:41:52 -0000	1.736
+++ RELEASE-NOTES	1 Feb 2006 21:24:04 -0000	1.737
 <at>  <at>  -585,6 +585,9  <at>  <at> 
   which is blank for main namespace, or like e.g. "User_talk"
 * Adjust user login/creation form hooks to work with a captcha plugin
 * (bug 1284) Inline styles for diffs in Recent Changes RSS/Atom feeds
+* (bug 4824) IE7 beta 2 broke compatibility with PNG logo workarounds,
+  and seems to work ok with other bits. No longer including the IE
+  workarounds JavaScript for IE 7 and above.

 
 === Caveats ===
Brion Vibber | 2 Feb 2006 02:39
Picon

phase3/skins MonoBook.php,1.42.2.3,1.42.2.4

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

Modified Files:
      Tag: REL1_5
	MonoBook.php 
Log Message:
* (bug 4824) IE7 beta 2 broke compatibility with PNG logo workarounds,
  and seems to work ok with other bits. No longer including the IE
  workarounds JavaScript for IE 7 and above.

Index: MonoBook.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/skins/MonoBook.php,v
retrieving revision 1.42.2.3
retrieving revision 1.42.2.4
diff -u -d -r1.42.2.3 -r1.42.2.4
--- MonoBook.php	20 Oct 2005 20:56:12 -0000	1.42.2.3
+++ MonoBook.php	2 Feb 2006 01:39:28 -0000	1.42.2.4
 <at>  <at>  -61,7 +61,7  <at>  <at> 
     <!--[if lt IE 5.5000]><style type="text/css"> <at> import "<?php $this->text('stylepath') ?>/<?php
$this->text('stylename') ?>/IE50Fixes.css";</style><![endif]-->
     <!--[if IE 5.5000]><style type="text/css"> <at> import "<?php $this->text('stylepath') ?>/<?php
$this->text('stylename') ?>/IE55Fixes.css";</style><![endif]-->
     <!--[if gte IE 6]><style type="text/css"> <at> import "<?php $this->text('stylepath') ?>/<?php
$this->text('stylename') ?>/IE60Fixes.css";</style><![endif]-->
-    <!--[if IE]><script type="<?php $this->text('jsmimetype') ?>" src="<?php
$this->text('stylepath') ?>/common/IEFixes.js"></script>
+    <!--[if lt IE 7]><script type="<?php $this->text('jsmimetype') ?>" src="<?php
$this->text('stylepath') ?>/common/IEFixes.js"></script>
(Continue reading)

Brion Vibber | 2 Feb 2006 02:39
Picon

phase3 RELEASE-NOTES,1.353.2.139,1.353.2.140

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

Modified Files:
      Tag: REL1_5
	RELEASE-NOTES 
Log Message:
* (bug 4824) IE7 beta 2 broke compatibility with PNG logo workarounds,
  and seems to work ok with other bits. No longer including the IE
  workarounds JavaScript for IE 7 and above.

Index: RELEASE-NOTES
===================================================================
RCS file: /cvsroot/wikipedia/phase3/RELEASE-NOTES,v
retrieving revision 1.353.2.139
retrieving revision 1.353.2.140
diff -u -d -r1.353.2.139 -r1.353.2.140
--- RELEASE-NOTES	27 Jan 2006 23:51:45 -0000	1.353.2.139
+++ RELEASE-NOTES	2 Feb 2006 01:39:28 -0000	1.353.2.140
 <at>  <at>  -1053,6 +1053,10  <at>  <at> 
 * Performance bugfix: propagate equality manually for Revision fetches
 * (bug 4773) PHP fatal error when invalid title passed to Special:Export
 * Added missing table defs. for transcache (were in updaters, but not install schema)
+* (bug 4824) IE7 beta 2 broke compatibility with PNG logo workarounds,
+  and seems to work ok with other bits. No longer including the IE
+  workarounds JavaScript for IE 7 and above.
+

 === Caveats ===

(Continue reading)


Gmane