[Bug 17020] Chinese needs sensible fallback character encoding set

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17020

--- Comment #10 from zayoo  2010-09-14 08:03:41 UTC ---
It works very nice in Mediawiki 1.16, while both client and server are Chinese,
and non-unicode is set to Chinese(PRC), using both IE and Firefox. I will test
it in English system soon.

PHP warnings occur several times about something undefined, so I made this in
LocalSettings.php:

if (!isset($_SERVER['REQUEST_URI']))
{
if(!isset($_SERVER['SCRIPT_NAME'])) $_SERVER['SCRIPT_NAME']='';
$_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'];
if(isset($_SERVER['QUERY_STRING'])) {
$_SERVER['REQUEST_URI'] .= "?" . $_SERVER['QUERY_STRING'];
}
}
if (!isset($_SERVER['REQUEST_METHOD'])) {$_SERVER['REQUEST_METHOD']='GET';}

By the way, when I use IIRF for rewrite, Chinese comes into massy code
sometimes (repeatable for certain titles), especially the number of Chinese is
ODD or there're ASCII letters inside, on both clicking a link and typing into
the bar. It occurs only when the server uses Chinese for non-unicode, but
becomes normal when set English for non-unicode. It is a bug of PHP (not
Mediawiki), but never occur on ASP pages (Why?). Fortunately, I did these and
it works for most of the titles. In iirf.ini:

RewriteRule ^/$ /i/index.php?title=%E9%A6%96%E9%A1%B5 [L,QSA]
RewriteRule ^/zh[/]*$ /i/index.php?title=%E9%A6%96%E9%A1%B5 [L,QSA]
RewriteRule ^/zh/(.*)[_\x20]\((.*)\)$ /i/index.php?title=$1|||$2|| [L,QSA]
RewriteRule ^/zh/(.*)$ /i/index.php?title=$1| [L,QSA]

and in LocalSettings.ini:

if (isset($_GET['title']))
{
$_GET['title']=str_replace("|||","_(",$_GET['title']);
$_GET['title']=str_replace("||",")",$_GET['title']);
$_GET['title']=str_replace("|","",$_GET['title']);
}

I know it's not a good method. I need some help.

And I also want Extension:SpecialUploadLocal for 1.16.0. I tried but failed -
there are too many classes involved in uploading. I think it's better to take
this function as an official (embedded) one.

Another question: can it be ignored for upper-lower case and/or
traditional-simplified Chinese for titles in Mediawiki?

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25164] Caught in unwanted Rangeblock

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25164

Huib abigor Laurens  changed:

   What|Removed |Added

   Priority|Normal  |Highest

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25168] New: CentralAuth: give links to secure server when logged-in into the secure server

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25168

   Summary: CentralAuth: give links to secure server when
logged-in into the secure server
   Product: MediaWiki extensions
   Version: any
  Platform: All
   URL: https://secure.wikimedia.org/wikipedia/meta/w/index.ph
p?title=Special%3ACentralAuth&target=Dferg+%28test%29
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: CentralAuth
AssignedTo: vasi...@gmail.com
ReportedBy: wmdf...@gmail.com
CC: agarr...@wikimedia.org


Logged in into the secure server. If you access Special:CentralAuth the links
that appears on the table points to the "non-secure" server. Please make that
if you are logged in into the secure server the links given in that table also
points to the secure server in those projects. See URL.

Thank you in advance.
- DF

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16574] Allow administrators to temporarily disable the account creation limit for an IP address

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16574

Raimond Spekking  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||raimond.spekk...@gmail.com
 Resolution||FIXED

--- Comment #1 from Raimond Spekking  2010-09-14 
09:02:44 UTC ---
[[MediaWiki:Ratelimit-excluded-ips]] added with r72959.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25169] New: Lqt post preview is broken

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25169

   Summary: Lqt post preview is broken
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Normal
 Component: LiquidThreads
AssignedTo: agarr...@wikimedia.org
ReportedBy: niklas.laxst...@gmail.com
CC: amil...@wikimedia.org, bhar...@wikimedia.org


Following javascript error:

Uncaught TypeError: Cannot read property 'dialogs' of undefined on line 175 of
lqt.js

174if ( $j.fn.wikiEditor && $j.wikiEditor.isSupported(
$j.wikiEditor.modules.toolbar ) ) {
175if ( wgWikiEditorPreferences.toolbar.dialogs &&
$j.wikiEditor.isSupported( $j.wikiEditor.modules.dialogs ) ) {

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25170] New: Please close Swahili Wikibooks

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25170

   Summary: Please close Swahili Wikibooks
   Product: Wikimedia
   Version: unspecified
  Platform: All
   URL: https://secure.wikimedia.org/wikipedia/meta/w/index.ph
p?title=Proposals_for_closing_projects/Closure_of_Swah
ili_Wikibooks&oldid=2121336
OS/Version: All
Status: NEW
  Keywords: shell
  Severity: normal
  Priority: Normal
 Component: Site requests
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: wmdf...@gmail.com


Per above discussion (URL) http://sw.wikibooks.org/ is to be closed and it's
content imported to the Incubator.

Thank you.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25171] New: Multiple fill ins in different quizzes after submit

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25171

   Summary: Multiple fill ins in different quizzes after submit
   Product: MediaWiki extensions
   Version: any
  Platform: PC
   URL: http://wiki.ziesche.de/wiki/Name,_Vorname,_Herkunftsla
nd_und_Adresse
OS/Version: Linux
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Quiz
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: orsch...@googlemail.com


To reproduce the error go to
http://wiki.ziesche.de/wiki/Name,_Vorname,_Herkunftsland_und_Adresse

Fill in the field "Wer ist der Mann?" and press "Korrektur". Your solution will
be applied also in every other quiz on the page. I think this happens because I
defined more than one quiz with its own  tags. So all the quizzes
are sharing the same names for the inputs (1, 2, 3...) which is wrong and
probably not even a legal name.

Is there any solution for this?

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25169] Lqt post preview is broken

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25169

Max Semenik  changed:

   What|Removed |Added

   Priority|Normal  |High

--- Comment #1 from Max Semenik  2010-09-14 10:14:49 UTC 
---
Other features such as CharInsert are broken, too.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25169] Lqt post preview is broken

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25169

--- Comment #2 from Niklas Laxström  2010-09-14 
10:18:30 UTC ---
(In reply to comment #1)
> Other features such as CharInsert are broken, too.

That is different bug:
80 function insertTags( tagOpen, tagClose, sampleText ) {
81 if ( typeof $j != 'undefined' && typeof $j.fn.textSelection !=
'undefined' &&
82 ( currentFocused.nodeName.toLowerCase() == 'iframe' ||
currentFocused.id == 'wpTextbox1' ) ) {


Uncaught TypeError: Cannot read property 'nodeName' of undefined on line 82 of
edit.js

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 15434] Periodical run of currently disabled special pages

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=15434

Danny B.  changed:

   What|Removed |Added

   Keywords||shell

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 24999] User Creation Issue in Sinhala Wikipedia

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24999

--- Comment #8 from Roan Kattouw  2010-09-14 12:13:09 
UTC ---
(In reply to comment #7)
> You failed. That C is the normal one.
> What I did was inserting a ZWJ between Cat and rope.
I knew that, I was just pointing out there's other ways to construct a username
looking just like 'Catrope' without using ZWJs or other characters currently
forbidden in usernames.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25143] Resource loader doing many queries on every request

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25143

Roan Kattouw  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |

--- Comment #3 from Roan Kattouw  2010-09-14 12:15:01 
UTC ---
I think we can do better still by grouping the queries. Reopening for now.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 20954] Local contribution lists of globally hidden accounts no longer visible to stewards

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20954

Leinad  changed:

   What|Removed |Added

 CC||danny.lei...@gmail.com
 Depends on||20476

--- Comment #8 from Leinad  2010-09-14 12:37:49 UTC ---
Bug20476 is very similar, so I added to section "Depends on" (but maybe this
bug should be marked as "Duplicate"?).

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 20476] Create new right/permisson to view hidden revision

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20476

Leinad  changed:

   What|Removed |Added

 Blocks||20954

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25164] Caught in unwanted Rangeblock

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25164

Roan Kattouw  changed:

   What|Removed |Added

 CC||roan.katt...@gmail.com

--- Comment #2 from Roan Kattouw  2010-09-14 12:43:28 
UTC ---
Investigation shows that even though the user had the ipblock-exempt right,
they were still getting the 'you are blocked' message. This doesn't seem to
come from anywhere in User::isBlocked().

I will investigate further at a later time, perhaps later today.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 24999] User Creation Issue in Sinhala Wikipedia

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24999

--- Comment #9 from Platonides  2010-09-14 12:45:46 UTC 
---
Sure you could use [[С]] for writing [[User:Сatrope]], and that would be
blocked by AntiSpoof.
The point is, ZWJ should not be allowed in usernames unless the bad usage keeps
blocked.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25164] Caught in unwanted Rangeblock

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25164

Platonides  changed:

   What|Removed |Added

 CC||platoni...@gmail.com

--- Comment #3 from Platonides  2010-09-14 14:36:20 UTC 
---
User::isBlockedFrom() also looks ok.
But the error must be coming from User::isBlocked() ->
EditPage::internalAttemptSave()-> EditPage::AS_BLOCKED_PAGE_FOR_USER ->
EditPage::blockedPage() -> OutputPage::blockedPage()

Additionally, trying to reproduce locally, it isn't happening. I wonder if
adding the other $ parameters to MediaWiki:Blockedtext would give any clue.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25102] Image.php throws E_STRICT error

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25102

--- Comment #4 from Christian Neubauer  2010-09-14 
15:32:09 UTC ---
Yeah good point.  I don't know.  There are no calls to "Image::" or "new Image"
in my extensions anywhere.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 24649] Special:Newmessages fails to load when there are many unread messages

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24649

Andrew Garrett  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #4 from Andrew Garrett  2010-09-14 16:07:18 
UTC ---
Resolved in r72707, by adding paging.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25169] Lqt post preview is broken

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25169

Andrew Garrett  changed:

   What|Removed |Added

 AssignedTo|agarr...@wikimedia.org  |amil...@wikimedia.org

--- Comment #3 from Andrew Garrett  2010-09-14 16:08:11 
UTC ---
Passing this one onto Adam.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 20004] LiquidThreads search supports only Lucene

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20004

--- Comment #2 from Andrew Garrett  2010-09-14 16:08:52 
UTC ---
The search feature hasn't been implemented for any search backend other than
Lucene, and it's not currently a priority to do so.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25172] New: Enable DynamicPageList extension on it.wikisource

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25172

   Summary: Enable DynamicPageList extension on it.wikisource
   Product: Wikimedia
   Version: unspecified
  Platform: All
   URL: http://it.wikisource.org/w/index.php?oldid=631787#Vota
zione_per_chiedere_l.27installazione_di_DynamicPageLis
t
OS/Version: All
Status: NEW
  Keywords: shell
  Severity: normal
  Priority: Normal
 Component: Site requests
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: webme...@gmail.com


As per local comunity request (see URL) please enable DynamicPageList extension
on it.wikisource. Thank you

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25000] Remove IP throttle for account creation

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25000

--- Comment #10 from MZMcBride  2010-09-14 17:03:08 UTC ---
Raymond likely resolved this bug with r72959.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25125] Please update logo for Kurdish Wikipedia

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25125

JeLuF  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #4 from JeLuF  2010-09-14 17:11:31 UTC ---
Your change has been completed.
Please reopen this ticket if anything went wrong.
The following configuration settings have been changed:
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision 1125)
+++ InitialiseSettings.php(working copy)
@@ -495,7 +495,7 @@
 'krcwiki'=> '$stdlogo',
 'kshwiki'   => '$stdlogo',
 'kswiki'=> '$stdlogo',
-'kuwiki'=>
'http://upload.wikimedia.org/wikipedia/commons/0/0b/Wikipedia-logo-ku.png',
+'kuwiki'=>
'http://upload.wikimedia.org/wikipedia/commons/e/e3/Wikipedia-logo-v2-ku.png',
 'kuwiktionary'  => '$stdlogo',
 'kvwiki'=> '$stdlogo',
 'kwwiki'=> '$stdlogo',
===
You can find the entire config file at
http://noc.wikimedia.org/conf/highlight.php?file=InitialiseSettings.php

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25170] Please close Swahili Wikibooks

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25170

JeLuF  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||je...@gmx.de
 Resolution||FIXED

--- Comment #1 from JeLuF  2010-09-14 17:41:24 UTC ---
The wiki has been closed.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25166] patroller on Fawiki

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25166

JeLuF  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from JeLuF  2010-09-14 17:44:01 UTC ---
Your change has been completed.
Please reopen this ticket if anything went wrong.
The following configuration settings have been changed:
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision 1126)
+++ InitialiseSettings.php(working copy)
@@ -5,7 +5,7 @@
 # When editing Devanagari text, some editor/terminal combinations (vim + 
 # xterm/kconsole) cause problems.  Try an X editor instead if this happens 
 # (gvim works well for me) - river
-# rev 73223
+# rev 73224
 #
 # WARNING: This file is publically viewable on the web. Do not put private
data here.

@@ -6161,6 +6161,7 @@
 'sysop' => array( 'autopatrolled', 'patroller', 'rollbacker',
'ipblock-exempt','flood' ),
 ),  
 '+fawiki' => array(
+'bureaucrat' => array( 'patroller' ),
 'sysop' => array( 'rollbacker', ),
 ),
 '+fiwiki' => array(
===
You can find the entire config file at
http://noc.wikimedia.org/conf/highlight.php?file=InitialiseSettings.php

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25130] Create Wikipedia in Komi-Permyak

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25130

JeLuF  changed:

   What|Removed |Added

 CC||je...@gmx.de
Summary|Wikipedia in Komi-Permyak   |Create Wikipedia in
   |setup   |Komi-Permyak

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25142] Set $wgGroupPermissions['*']['createpage'] = true; zhwiki (Allowed IP createpage)

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25142

JeLuF  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #8 from JeLuF  2010-09-14 17:46:59 UTC ---
Your change has been completed.
Please reopen this ticket if anything went wrong.
The following configuration settings have been changed:
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision 1127)
+++ InitialiseSettings.php(working copy)
@@ -5731,7 +5731,7 @@

 // due to mass vandalism complaint, 2006-04-11
 'zhwiki' => array( 
-   '*' => array( 'createpage' => false ),
+   // '*' => array( 'createpage' => false ),  # re-enabled createpage priv
according to bug 25142
'rollbacker' => array( 'rollback' => true ),
'patroller'=> array( 'patrol' => true, 'autopatrol' => true ),
'autoreviewer'  => array( 'autopatrol' => true ),
===
You can find the entire config file at
http://noc.wikimedia.org/conf/highlight.php?file=InitialiseSettings.php

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25160] Please create an "autopatrolled" usergroup at metawiki

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25160

JeLuF  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #3 from JeLuF  2010-09-14 17:50:33 UTC ---
Your change has been completed.
Please reopen this ticket if anything went wrong.
The following configuration settings have been changed:
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision 1128)
+++ InitialiseSettings.php(working copy)
@@ -5547,7 +5547,8 @@
   'user' => array( 'move' => false), // sigh. tired of this shit. brion
-2007-01-10
   //'bureaucrat' => array( 'centralauth-admin' => true ), //
https://bugzilla.wikimedia.org/show_bug.cgi?id=14461
   'steward' => array( 'userrights-interwiki' => true ), // new steward
stuff, yay 2007-12-27
-  'flood' => array( 'bot' => true ),
+  'flood' => array( 'bot' => true ),
+  'autopatrolled' => array( 'autopatrol' => true ),
 ),
 'mkwiki' => array(
 'autopatrolled' => array( 'autopatrol' => true ),
@@ -5967,6 +5968,7 @@
 '+metawiki' => array(
 'bureaucrat' => array( 'ipblock-exempt', 'bot', 'sysop',
'bureaucrat'),
 'checkuser'  => array( 'ipblock-exempt' ),
+'sysop'  => array( 'autopatrolled' ),
 ),
 '+mkwiki' => array(
 'bureaucrat' => array( 'patroller', 'autopatrolled', 'autoreviewed' ),
@@ -6228,6 +6230,7 @@
 '+metawiki' => array(
 'bureaucrat' => array( 'bot', 'sysop', 'bureaucrat', 'ipblock-exempt',
'flood' ),
 'checkuser'  => array( 'ipblock-exempt' ),
+'sysop'  => array( 'autopatrolled' ),
 ),
 '+mkwiki' => array(
 'bureaucrat' => array( 'patroller', 'autopatrolled', 'autoreviewed' ),
===
You can find the entire config file at
http://noc.wikimedia.org/conf/highlight.php?file=InitialiseSettings.php

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25128] Books namespace for fiwiki

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25128

JeLuF  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #2 from JeLuF  2010-09-14 17:56:45 UTC ---
Your change has been completed.
Please reopen this ticket if anything went wrong.
The following configuration settings have been changed:
===
Index: InitialiseSettings.php
===
--- InitialiseSettings.php(revision 1129)
+++ InitialiseSettings.php(working copy)
@@ -3686,6 +3686,8 @@
 101 => 'Keskustelu_teemasivusta',
 102 => 'Metasivu',
 103 => 'Keskustelu_metasivusta',
+104 => 'Kirja',
+105 => 'Keskustelu_kirjasta',
 ),
 'frwiki' => array( 
 100 => 'Portail', 
===
You can find the entire config file at
http://noc.wikimedia.org/conf/highlight.php?file=InitialiseSettings.php

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25173] New: Please set the Spanish Wikibooks logo: 'ttwikibooks' => '$stdlogo', changes to 'eswikibooks' => 'http://upload.wikimedia.org/wikibooks/tt/b/bc/Wiki.png',

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25173

   Summary: Please set the Spanish Wikibooks logo:
'ttwikibooks'   => '$stdlogo',  changes to
'eswikibooks'   =>
'http://upload.wikimedia.org/wikibooks/tt/b/bc/Wiki.pn
g',
   Product: Wikimedia
   Version: unspecified
  Platform: All
   URL: http://meta.wikimedia.org/wiki/Wikibooks/Logo/Update
OS/Version: All
Status: NEW
  Keywords: shell
  Severity: enhancement
  Priority: Normal
 Component: Site requests
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: ilnarshaidul...@rambler.ru


Please set the Spanish Wikibooks logo:

'ttwikibooks'   => '$stdlogo',

changes to

'eswikibooks'   =>
'http://upload.wikimedia.org/wikibooks/tt/b/bc/Wiki.png',

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25173] Please set the Spanish Wikibooks logo: 'ttwikibooks' => '$stdlogo', changes to 'eswikibooks' => 'http://upload.wikimedia.org/wikibooks/tt/b/bc/Wiki.png',

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25173

--- Comment #1 from Ilnar Shaidullov  2010-09-14 
18:07:59 UTC ---
(In reply to comment #0)
> Please set the Spanish Wikibooks logo:
> 
> 'ttwikibooks'   => '$stdlogo',
> 
> changes to
> 
> 'ttwikibooks'   =>
> 'http://upload.wikimedia.org/wikibooks/tt/b/bc/Wiki.png',

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25173] Please set the Spanish Wikibooks logo: 'ttwikibooks' => '$stdlogo', changes to 'eswikibooks' => 'http://upload.wikimedia.org/wikibooks/tt/b/bc/Wiki.png',

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25173

MZMcBride  changed:

   What|Removed |Added

 CC||b...@mzmcbride.com

--- Comment #2 from MZMcBride  2010-09-14 18:25:23 UTC ---
To clarify, this has nothing to do with the Spanish Wikibooks, just the Tatar
Wikibooks?

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25173] Please set the Spanish Wikibooks logo: 'ttwikibooks' => '$stdlogo', changes to 'eswikibooks' => 'http://upload.wikimedia.org/wikibooks/tt/b/bc/Wiki.png',

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25173

--- Comment #3 from Ilnar Shaidullov  2010-09-14 
18:33:52 UTC ---
Yes, all right. I just made a mistake in writing

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25173] Please change the Tatar Wikibooks logo

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25173

MZMcBride  changed:

   What|Removed |Added

Summary|Please set the Spanish  |Please change the Tatar
   |Wikibooks logo: |Wikibooks logo
   |'ttwikibooks'   =>  |
   |'$stdlogo',  changes to |
   | 'eswikibooks'   => |
   |'http://upload.wikimedia.or |
   |g/wikibooks/tt/b/bc/Wiki.pn |
   |g', |

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25173] Please change the Tatar Wikibooks logo

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25173

--- Comment #4 from Ilnar Shaidullov  2010-09-14 
18:36:32 UTC ---
that's the correct version:

Please set the Tatar Wikibooks logo:

'ttwikibooks'   => '$stdlogo',

changes to

'ttwikibooks'   =>
'http://upload.wikimedia.org/wikibooks/tt/b/bc/Wiki.png',

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25174] New: boolean (url) variables are treated differently by the api depending on if POST or GET is used

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25174

   Summary: boolean (url) variables are treated differently by the
api depending on if POST or GET is used
   Product: MediaWiki
   Version: 1.16
  Platform: All
OS/Version: All
Status: NEW
  Severity: trivial
  Priority: Normal
 Component: API
AssignedTo: roan.katt...@gmail.com
ReportedBy: bawolff...@gmail.com
CC: bryan.tongm...@gmail.com, s...@reedyboy.net,
vasi...@gmail.com, soxre...@gmail.com


I'm not 100% sure if this is even if this is a bug or not (And if it is, it
might be a php/apache bug, not a mediawiki bug), but it confused me for a
little bit.

Basically, make a GET request like
http://example.com/api.php?action=query&prop=revisions&titles=Main%20Page&rvprop=content&rvgeneratexml

It works as expected. Now try POSTing the equivelent (with a content-type of
application/x-www-form-urlencoded): 
action=query&prop=revisions&titles=Main%20Page&rvprop=content&rvgeneratexml

It doesn't work unless you have an = sign after the rvgeneratexml. This is
especially confusing because in the example given for the edit module it gives
the example
action=edit&title=Test&summary=NOTOC&minor&prependtext=__NOTOC__%0A&basetimestamp=20070824123454&token=%2B\

Which won't be marked as minor if POSTed. 

(I discovered this trying to figure out why my bot's edit wasn't being marked
as bot. I was doing my testing using wget if it matters.).

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25173] Please set the Tatar Wikibooks logo: 'ttwikibooks' => '$stdlogo', changes to 'ttwikibooks' => 'http://upload.wikimedia.org/wikibooks/tt/b/bc/Wiki.png'

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25173

Ilnar Shaidullov  changed:

   What|Removed |Added

Summary|Please change the Tatar |Please set the Tatar
   |Wikibooks logo  |Wikibooks logo:
   ||'ttwikibooks'   =>
   ||'$stdlogo',  changes to
   || 'ttwikibooks'   =>
   ||'http://upload.wikimedia.or
   ||g/wikibooks/tt/b/bc/Wiki.pn
   ||g'

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25166] patroller on Fawiki

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25166

--- Comment #2 from Mardetanha  2010-09-14 19:20:27 
UTC ---
tnx . works well

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25173] Please set the Tatar Wikibooks logo: 'ttwikibooks' => '$stdlogo', changes to 'ttwikibooks' => 'http://upload.wikimedia.org/wikibooks/tt/b/bc/Wiki.png'

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25173

JeLuF  changed:

   What|Removed |Added

 CC||je...@gmx.de

--- Comment #5 from JeLuF  2010-09-14 20:17:02 UTC ---
Please protect [[Image:Wiki.png]] on tt.wikibooks.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25173] Please set the Tatar Wikibooks logo: 'ttwikibooks' => '$stdlogo', changes to 'ttwikibooks' => 'http://upload.wikimedia.org/wikibooks/tt/b/bc/Wiki.png'

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25173

Casey Brown  changed:

   What|Removed |Added

 CC||mfwarb...@googlemail.com

--- Comment #6 from Casey Brown  2010-09-14 20:23:45 UTC 
---
*** Bug 25165 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25165] Activating the logo for tt.wikibooks

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25165

Casey Brown  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||b...@caseybrown.org
 Resolution||DUPLICATE

--- Comment #1 from Casey Brown  2010-09-14 20:23:45 UTC 
---
This bug is definitely clearer and was filed first, but another duplicate bug
was filed and received more attention, so this one gets marked as RESOLVED
DUPLICATE.

*** This bug has been marked as a duplicate of bug 25173 ***

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25175] New: honor $wgCacheDirectory

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25175

   Summary: honor $wgCacheDirectory
   Product: MediaWiki
   Version: 1.16
  Platform: All
OS/Version: All
Status: NEW
  Severity: minor
  Priority: Normal
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: ktdre...@ktdreyer.com


This is a slight correction to r52503, which first created $wgCacheDirectory.
This patch allows $wgCacheDirectory to actually work. The if/else logic was
setting $dir fine, but it was not actually using $dir when it was time to
define $this->mFileCache.

Patch is against 1.16, /branches/REL1_16/ in subversion.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25175] honor $wgCacheDirectory

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25175

--- Comment #1 from Ken Dreyer  2010-09-14 23:41:24 UTC 
---
Created attachment 7688
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=7688
use $dir, taking into account $wgCacheDirectory

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25164] Caught in unwanted Rangeblock

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25164

RonaldB  changed:

   What|Removed |Added

 CC||rbeela...@gmail.com

--- Comment #4 from RonaldB  2010-09-15 00:39:32 UTC ---
In order to make sure that the IP exempt is properly working on a range block,
I have done some testing on this page:
http://nl.wikipedia.org/wiki/Gebruiker:RonaldBtest/IPexempt

Tried several things in order to emulate the recent blocking history of this
user, including attempts to edit during a block of this test account of mine.
Everything appeared to work as expected.

To assist the resolution of this issue, I checked possible interferences with
blocks for this user on other projects, but could not find any. The range block
in question is not unique for nlwiki. I found others, for the same reason (open
proxies).

Assuming the block is real, which is not possible to determine unambiguously
from here, the only remaining cause I could think of that there is a problem
with the way this user is connecting to the internet. Indirectly (via all kind
of turmoil messages I've received via-via), I assume it is via a VPN between
his home IP and the IP where one of his websites is hosted. I don't know what
could go wrong here.

This idea came to my mind because last night somebody sent an OTRS ticket
reporting a session problem message (repeatedly) when trying to register. But
that was from a normal IP, so has probably nothing to do with this issue.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25176] New: Special:NewPages shows inexisting pages

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25176

   Summary: Special:NewPages shows inexisting pages
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Normal
 Component: Special pages
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: dann...@email.cz


Special:NewPages shows inexisting pages.

Steps to reproduce:
1) Create "Foo"
2) Move "Foo" to "Bar", leave no redirect
3) Special:NewPages shows "Foo" instead of "Bar"

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25175] honor $wgCacheDirectory

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25175

Bawolff  changed:

   What|Removed |Added

   Keywords||need-review, patch
 CC||bawolff...@gmail.com

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 11190] Chat rooms for individual pages

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11190

Monomium  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||monom...@gmail.com
 Resolution|WONTFIX |

--- Comment #4 from Monomium  2010-09-15 01:20:05 UTC ---
Actually, if the channels were organized by topic, then we wouldn't have 3
million, but perhaps 40. If there was interest, the channel number could grow
and cover more specific topics. I'd start with channels (or chatrooms or
whatever you want to call them) for:

Culture · Geography · Health · History · Mathematics · Natural sciences ·
People · Philosophy · Religion · Society · Technology

Any thoughts?

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25176] Special:NewPages shows inexisting pages

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25176

Chad H.  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||innocentkil...@gmail.com
 Resolution||DUPLICATE

--- Comment #1 from Chad H.  2010-09-15 01:29:41 UTC 
---


*** This bug has been marked as a duplicate of bug 17463 ***

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 17463] New pages log doesn't remove/update item after suppression redirect

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17463

Chad H.  changed:

   What|Removed |Added

 CC||dann...@email.cz

--- Comment #5 from Chad H.  2010-09-15 01:29:41 UTC 
---
*** Bug 25176 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16530] Edit summaries containing multiple autocomments are broken

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16530

Jeff G.  changed:

   What|Removed |Added

 CC||rsyqfiojg...@spammotel.com

--- Comment #4 from Jeff G.  2010-09-15 01:34:04 
UTC ---
It is still not working.  I have a test case at
http://en.wikipedia.org/w/index.php?title=Help:Edit_summary&diff=384901084&oldid=384900839

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25177] New: Queries for values not functioning as expected for format=template

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25177

   Summary: Queries for values not functioning as expected for
format=template
   Product: MediaWiki extensions
   Version: any
  Platform: All
   URL: http://sandbox.semantic-mediawiki.org/wiki/Record_Quer
y_Test
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Semantic MediaWiki
AssignedTo: mar...@semantic-mediawiki.org
ReportedBy: cparmstr...@liberty.edu


The query "{{#ask: [[{{FULLPAGENAME}}]] | ?testString| format=table}}" returns
a table with one row per testString property on the page.  According to the
documentation on
http://semantic-mediawiki.org/wiki/Help:Template_format#Using_templates_for_custom_formatting
"If a template is specified, all result «rows» are formatted using this
template."  However this does not appear to be the case.  The query "{{#ask:
[[{{FULLPAGENAME}}]] | ?testString| format=template | template=testTemplate}}"
only uses the template once sending a long string of each value separated by
commas as {{{1}}}.

I've made a page demonstrating the problem here: 
http://sandbox.semantic-mediawiki.org/wiki/Record_Query_Test

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25178] New: Records with values containing "&" cannot be queried

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25178

   Summary: Records with values containing "&" cannot be queried
   Product: MediaWiki extensions
   Version: any
  Platform: All
   URL: http://sandbox.semantic-mediawiki.org/wiki/Test%26Page
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Normal
 Component: Semantic MediaWiki
AssignedTo: mar...@semantic-mediawiki.org
ReportedBy: cparmstr...@liberty.edu


I believe I have found a bug, demonstrated here:
http://sandbox.semantic-mediawiki.org/wiki/Test%26Page

When querying for record values using the FULLPAGENAME magic word, and the page
name contains an  "&" character, results are not as expected.  I believe that
the "&" character is being parsed as "&", and the semicolon is being
interpreted as a seperator between record fields.  Interestingly if the text of
the page title is used explicitly rather than the magic word, the query works.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25177] Queries for values not functioning as expected for format=template

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25177

cparmstr...@liberty.edu changed:

   What|Removed |Added

   Severity|enhancement |normal

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25178] Records with values containing "&" cannot be queried

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25178

cparmstr...@liberty.edu changed:

   What|Removed |Added

   Severity|enhancement |normal

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25128] Books namespace for fiwiki

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25128

ollinpos...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |

--- Comment #3 from ollinpos...@gmail.com 2010-09-15 05:29:16 UTC ---
Hello, 

thank you for namespace add, it works. But still, there is a problem. The book
tool still wants to add community books to Wikipedia:Kirjat/

How you could change that?

Please see screenshot.
http://img38.imageshack.us/img38/262/booktoolproblem.png

thanks
Olli

P.S. Could it be possible to update Collection extension strings from
translatewiki to fiwiki?

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25164] Caught in unwanted Rangeblock

2010-09-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25164

--- Comment #5 from Huib abigor Laurens  
2010-09-15 06:26:59 UTC ---
Qute: Assuming the block is real, which is not possible to determine
unambiguously
from here, the only remaining cause I could think of that there is a problem
with the way this user is connecting to the internet. 

The block is real otherwhise I would have been able to edit for the last few
days, there is even a screenshot here. Its very strange that you doubt the
realnes of this bug.

There is no problem with how I can connect to the internet, I can work on all
wiki's without a problem only nl.wiki is giving problems with the message that
I'm blocked because my ip is a open proxxy because you blocked it, my ip isn't
a open proxxy at all, its only used by me.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l