Brion Vibber | 1 Jan 2006 02:05
Picon

phase3/includes Licenses.php, 1.12, 1.13 SpecialUpload.php, 1.96, 1.97

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

Modified Files:
	Licenses.php SpecialUpload.php 
Log Message:
* (bug 3318) UI workarounds for disabled items in license selector
  MSIE/Win: items now grayed out, JS will revert to 'non selected' if clicked
  Safari: JS will revert to 'non selected' if clicked (but not gray)
  MSIE/Mac: indented items now visible (JS hack)

Index: SpecialUpload.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/includes/SpecialUpload.php,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -d -r1.96 -r1.97
--- SpecialUpload.php	4 Dec 2005 18:27:59 -0000	1.96
+++ SpecialUpload.php	1 Jan 2006 01:05:21 -0000	1.97
 <at>  <at>  -609,10 +609,13  <at>  <at> 
 		<tr>" );
 	
 	if ( $licenseshtml != '' ) {
+		global $wgStylePath;
 		$wgOut->addHTML( "
 			<td align='right'><label for='wpLicense'>$license:</label></td>
 			<td align='left'>
-				<select name='wpLicense' id='wpLicense' tabindex='4'>
+				<script type='text/javascript' src=\"$wgStylePath/common/upload.js\"></script>
+				<select name='wpLicense' id='wpLicense' tabindex='4'
(Continue reading)

Brion Vibber | 1 Jan 2006 02:05
Picon

phase3/skins/common upload.js,NONE,1.1

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

Added Files:
	upload.js 
Log Message:
* (bug 3318) UI workarounds for disabled items in license selector
  MSIE/Win: items now grayed out, JS will revert to 'non selected' if clicked
  Safari: JS will revert to 'non selected' if clicked (but not gray)
  MSIE/Mac: indented items now visible (JS hack)

--- NEW FILE: upload.js ---
function licenseSelectorCheck() {
	var selector = document.getElementById("wpLicense");
	if (selector.selectedIndex > 0 &&
		selector.options[selector.selectedIndex].value == "" ) {
		// Browser is broken, doesn't respect disabled attribute on <option>
		selector.selectedIndex = 0;
	}
}

function licenseSelectorFixup() {
	// for MSIE/Mac; non-breaking spaces cause the <option> not to render
	// but, for some reason, setting the text to itself works
	var selector = document.getElementById("wpLicense");
	var ua = navigator.userAgent;
	var isMacIe = (ua.indexOf("MSIE") != -1) && (ua.indexOf("Mac") != -1);
	if (isMacIe) {
		for (var i = 0; i < selector.options.length; i++) {
			selector.options[i].text = selector.options[i].text;
(Continue reading)

Brion Vibber | 1 Jan 2006 02:05
Picon

phase3 RELEASE-NOTES,1.625,1.626

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

Modified Files:
	RELEASE-NOTES 
Log Message:
* (bug 3318) UI workarounds for disabled items in license selector
  MSIE/Win: items now grayed out, JS will revert to 'non selected' if clicked
  Safari: JS will revert to 'non selected' if clicked (but not gray)
  MSIE/Mac: indented items now visible (JS hack)

Index: RELEASE-NOTES
===================================================================
RCS file: /cvsroot/wikipedia/phase3/RELEASE-NOTES,v
retrieving revision 1.625
retrieving revision 1.626
diff -u -d -r1.625 -r1.626
--- RELEASE-NOTES	30 Dec 2005 23:16:41 -0000	1.625
+++ RELEASE-NOTES	1 Jan 2006 01:05:19 -0000	1.626
 <at>  <at>  -382,6 +382,11  <at>  <at> 
     namespace are changed
 * Removed $wgUseCategoryMagic option, categories are now enabled unconditionally
 * (bug 4359) red [[user:#id]] links generated in [[special:Log]]
+* (bug 3318) UI workarounds for disabled items in license selector
+  MSIE/Win: items now grayed out, JS will revert to 'non selected' if clicked
+  Safari: JS will revert to 'non selected' if clicked (but not gray)
+  MSIE/Mac: indented items now visible (JS hack)
+

 === Caveats ===
(Continue reading)

Ævar Arnfjörð Bjarmason | 1 Jan 2006 06:14
Picon

phase3/config index.php,1.145,1.146

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

Modified Files:
	index.php 
Log Message:
* It's 2006, update copyright notice

Index: index.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/config/index.php,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -d -r1.145 -r1.146
--- index.php	20 Dec 2005 19:31:34 -0000	1.145
+++ index.php	1 Jan 2006 05:14:40 -0000	1.146
 <at>  <at>  -1462,7 +1462,7  <at>  <at> 
 			<li><a href="http://meta.wikipedia.org/wiki/MediaWiki_User's_Guide">User's Guide</a></li>
 			<li><a href="http://meta.wikimedia.org/wiki/MediaWiki_FAQ">FAQ</a></li>
 		</ul>
-		<p style="font-size:90%;margin-top:1em">MediaWiki is Copyright &copy; 2001-2005 by Magnus
Manske, Brion Vibber, Lee Daniel Crocker, Tim Starling, Erik M&ouml;ller, Gabriel Wicke and others.</p>
+		<p style="font-size:90%;margin-top:1em">MediaWiki is Copyright &copy; 2001-2006 by Magnus
Manske, Brion Vibber, Lee Daniel Crocker, Tim Starling, Erik M&ouml;ller, Gabriel Wicke and others.</p>
 	</div></div>
 </div>

Ævar Arnfjörð Bjarmason | 1 Jan 2006 06:14
Picon

phase3/includes SpecialVersion.php,1.37,1.38

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

Modified Files:
	SpecialVersion.php 
Log Message:
* It's 2006, update copyright notice

Index: SpecialVersion.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/includes/SpecialVersion.php,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- SpecialVersion.php	29 Dec 2005 20:27:25 -0000	1.37
+++ SpecialVersion.php	1 Jan 2006 05:14:43 -0000	1.38
 <at>  <at>  -64,7 +64,7  <at>  <at> 
 		"__NOTOC__
 		<div dir='ltr'>
 		This wiki is powered by '''[http://www.mediawiki.org/ MediaWiki]''',  
-		copyright (C) 2001-2005 Magnus Manske, Brion Vibber, Lee Daniel Crocker,
+		copyright (C) 2001-2006 Magnus Manske, Brion Vibber, Lee Daniel Crocker,
 		Tim Starling, Erik Möller, and others.
 		 
 		MediaWiki is free software; you can redistribute it and/or modify
Niklas Laxström | 1 Jan 2006 15:07
Picon

phase3/languages LanguageTr.php,1.11,1.12

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

Modified Files:
	LanguageTr.php 
Log Message:
* (bug 4436) Update for Turkish language (tr)
 Update from DBL2010

Index: LanguageTr.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/languages/LanguageTr.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- LanguageTr.php	21 Dec 2005 23:26:22 -0000	1.11
+++ LanguageTr.php	1 Jan 2006 14:07:00 -0000	1.12
 <at>  <at>  -34,14 +34,14  <at>  <at> 

 /* private */ $wgAllMessagesTr = array(

-# User preference toggles
-'tog-editondblclick' => 'Makaleyi çift tıklayarak değiştirmeya başla (JavaScript)',
+# User preference toggles  # Kullanıcı seçenekleri
+'tog-editondblclick' => 'Sayfayı çift tıklayarak değiştirmeye başla (JavaScript)',
 'tog-editsection' => 'Bölümleri [değiştir] bağlantıları ile değiştirme hakkı ver',
 'tog-editsectiononrightclick' => 'Bölüm başlığına sağ tıklayarak bölümde değişikliğe
izin ver.(JavaScript)',
 'tog-editwidth' => 'Yazma alanı tam genişlikte olsun',
-'tog-enotifminoredits' => 'Send me an email also for minor edits of pages',
(Continue reading)

Niklas Laxström | 1 Jan 2006 15:07
Picon

phase3 RELEASE-NOTES,1.626,1.627

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

Modified Files:
	RELEASE-NOTES 
Log Message:
* (bug 4436) Update for Turkish language (tr)
 Update from DBL2010

Index: RELEASE-NOTES
===================================================================
RCS file: /cvsroot/wikipedia/phase3/RELEASE-NOTES,v
retrieving revision 1.626
retrieving revision 1.627
diff -u -d -r1.626 -r1.627
--- RELEASE-NOTES	1 Jan 2006 01:05:19 -0000	1.626
+++ RELEASE-NOTES	1 Jan 2006 14:06:59 -0000	1.627
 <at>  <at>  -386,6 +386,7  <at>  <at> 
   MSIE/Win: items now grayed out, JS will revert to 'non selected' if clicked
   Safari: JS will revert to 'non selected' if clicked (but not gray)
   MSIE/Mac: indented items now visible (JS hack)
+* (bug 4436) Update for Turkish language (tr)

 
 === Caveats ===
Niklas Laxström | 1 Jan 2006 15:22
Picon

phase3/languages LanguageNv.php,1.14,1.15

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

Modified Files:
	LanguageNv.php 
Log Message:
removed untranslated quickbarsettings

Index: LanguageNv.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/languages/LanguageNv.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- LanguageNv.php	18 Aug 2005 16:17:27 -0000	1.14
+++ LanguageNv.php	1 Jan 2006 14:22:08 -0000	1.15
 <at>  <at>  -9,9 +9,6  <at>  <at> 

 require_once( "LanguageUtf8.php" );

-if($wgMetaNamespace === FALSE)
-	$wgMetaNamespace = str_replace( ' ', '_', $wgSitename );
-
 /* private */ $wgNamespaceNamesNv = array(
 	NS_MEDIA            => 'Media',
 	NS_SPECIAL          => 'Special',
 <at>  <at>  -33,9 +30,6  <at>  <at> 
 	NS_CATEGORY_TALK    => 'T\'ááłáhági_át\'éego_baa_yinísht\'į́'
 );

(Continue reading)

Rob Church | 1 Jan 2006 15:36
Picon

phase3/languages LanguageSl.php,1.60,1.61

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

Modified Files:
	LanguageSl.php 
Log Message:
* (bug 4061) Update of Slovene Wikipedia (:sl) language file (LanguageSl.php)

Index: LanguageSl.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/languages/LanguageSl.php,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- LanguageSl.php	21 Dec 2005 23:26:21 -0000	1.60
+++ LanguageSl.php	1 Jan 2006 14:36:55 -0000	1.61
 <at>  <at>  -37,7 +37,7  <at>  <at> 
 	NS_TEMPLATE       => "Predloga",
 	NS_TEMPLATE_TALK  => "Pogovor_k_predlogi",
 	NS_CATEGORY       => "Kategorija",
-	NS_CATEGORY_TALK  => "Pogovor_k_kategoriji"
+	NS_CATEGORY_TALK  => "Pogovor_h_kategoriji"
 ) + $wgNamespaceNamesEn;

 /* private */ $wgQuickbarSettingsSl = array(
Rob Church | 1 Jan 2006 15:36
Picon

phase3 RELEASE-NOTES,1.627,1.628

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

Modified Files:
	RELEASE-NOTES 
Log Message:
* (bug 4061) Update of Slovene Wikipedia (:sl) language file (LanguageSl.php)

Index: RELEASE-NOTES
===================================================================
RCS file: /cvsroot/wikipedia/phase3/RELEASE-NOTES,v
retrieving revision 1.627
retrieving revision 1.628
diff -u -d -r1.627 -r1.628
--- RELEASE-NOTES	1 Jan 2006 14:06:59 -0000	1.627
+++ RELEASE-NOTES	1 Jan 2006 14:36:54 -0000	1.628
 <at>  <at>  -387,7 +387,7  <at>  <at> 
   Safari: JS will revert to 'non selected' if clicked (but not gray)
   MSIE/Mac: indented items now visible (JS hack)
 * (bug 4436) Update for Turkish language (tr)
-
+* (bug 4061) Update of Slovene Wikipedia (:sl) language file (LanguageSl.php)

 === Caveats ===


Gmane