[Bug 31419] Entering a site for the first time with a global account logged in causes an error.

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31419

Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #13 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 08:00:48 
UTC ---
I discovered that this is a variation of the same unstub loop caused by r97367
and fixed in r97887. I merged and deployed r97887 and that fixed it. Tested on
testwiki by adding .* newaccountonly to the blacklist and provoking a
CentralAuth autocreation.

-- 
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 32380] Make powered by link protocol relative

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32380

Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||roan.katt...@gmail.com
 Resolution||FIXED

--- Comment #1 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 08:07:03 
UTC ---
Fixed in r102945.

-- 
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 31534] SQL errors with corrupted table name aliases Database::select() generated queries

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31534

--- Comment #3 from Dmitriy Sintsov ques...@rambler.ru 2011-11-14 08:18:42 
UTC ---
The first error (in 1.19) disappeared when I changed my code following by Reedy
recommendations (tweaking a bit). The last error disappeared when I've updated
my farm's code to 1.17 release from some earlier SVN snapshot.

The first error is probably valid, however manifests itself only when using old
and discouraging coding style. I don't know whether should I close this error
or not, leaving it up to 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 26909] Implement 'dir' for query properties.

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26909

Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED

--- Comment #8 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 08:26:52 
UTC ---
(In reply to comment #7)
 Created attachment 9435 [details]
 add dir param for
 prop=links|templates|categories|extlinks|iwlinks|langlinks|images|duplicatefiles
 
Thanks for the patch. Modified patch committed in r102947.

 It also changed the handling of ORDER BY in ApiQueryBase::addWhereRange. This
 is needed, because the order by can given as array and that was not handled
 there.
 
Good catch. I cleaned up the ApiQueryBase changes a bit before committing. It
looked like it would've generated a notice because the access to
$this-options['ORDER BY'] wasn't protected with isset() (there was an isset
call nearby, but 1) the array access was done unconditionally anyway and 2)
isset was called on a variable that was set unconditionally, which means it was
used to check for null, which is evil) and the logic with wrapping a non-array
value in an array could be replaced with an (array) cast. I ended up using:

$optionOrderBy = isset( $this-options['ORDER BY'] ) ?
(array)$this-options['ORDER BY'] : array();
$optionOrderBy[] = $order;

 Feel free to modify the patch.
 
The only other modification I made was to drop the ApiQueryExternalLinks.php
changes. They added an ORDER BY on el_to which is a partially-indexed blob
field, so that would filesort. The query isn't very nice as it is, but this
would make it worse.

-- 
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 12907] Special page to list links to other pages

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=12907

Bug 12907 depends on bug 26909, which changed state.

Bug 26909 Summary: Implement 'dir' for query properties.
https://bugzilla.wikimedia.org/show_bug.cgi?id=26909

   What|Old Value   |New Value

 Status|REOPENED|RESOLVED
 Resolution||FIXED

-- 
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 32241] WikiEditor scrolls the browser and does not insert on IE7, IE8, IE9 if textarea doesn't fit on screen

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32241

Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #11 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 08:37:55 
UTC ---
(In reply to comment #10)
 Created attachment 9441 [details]
 jquery.textSelection.js patch to restore window's scroll state after focus() 
 on
 IE
 
 Patch corrected. Behavior identical.
Thanks for your patch. Applied in r102945.

-- 
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 24493] WikiEditor issues (tracking)

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24493

Bug 24493 depends on bug 32241, which changed state.

Bug 32241 Summary: WikiEditor scrolls the browser and does not insert on IE7, 
IE8, IE9 if textarea doesn't fit on screen
https://bugzilla.wikimedia.org/show_bug.cgi?id=32241

   What|Old Value   |New Value

 Status|NEW |RESOLVED
 Resolution||FIXED

-- 
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 31912] Localized language name as title attribute of language code-proficiency part

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31912

Daniel Friesen mediawiki-b...@nadir-seen-fire.com changed:

   What|Removed |Added

 CC||mediawiki-bugs@nadir-seen-f
   ||ire.com

--- Comment #4 from Daniel Friesen mediawiki-b...@nadir-seen-fire.com 
2011-11-14 08:40:16 UTC ---
(In reply to comment #3)
 Page content cannot depend on user language, not without help from JavaScript
 at least.

There is a little bit of room for post-processing. Like how it's done with the
edit section link 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 31613] API UsageException when saving a collection to a page

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31613

--- Comment #21 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 08:42:19 
UTC ---
(In reply to comment #19)
 Fixes like this one will probably be deployed in a few days time.
 I'll try to ping someone tomorrow.
Deployed.

-- 
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 31613] API UsageException when saving a collection to a page

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31613

Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED

-- 
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 31516] localization of server default timezone in Preferences is missing

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31516

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

 CC||niklas.laxst...@gmail.com,
   ||s.mazel...@xs4all.nl
  Component|User preferences|CLDR
Version|1.18|any
Product|MediaWiki   |MediaWiki extensions

--- Comment #1 from Siebrand s.mazel...@xs4all.nl 2011-11-14 08:45:40 UTC ---
Making this CLDR component.

-- 
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 30077] Special:ListFiles shows table_pager_limit_label instead of actual label

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30077

Niklas Laxström niklas.laxst...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||niklas.laxst...@gmail.com
 Resolution||FIXED

--- Comment #1 from Niklas Laxström niklas.laxst...@gmail.com 2011-11-14 
08:49:44 UTC ---
Fixed in later revisions.

-- 
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 32388] No way to regenerate DjVu cached thumb with right height

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32388

--- Comment #4 from Nemo_bis federicol...@tiscali.it 2011-11-14 08:56:24 UTC 
---
(In reply to comment #3)
 I can't reproduce this...

Do you mean locally, or on Commons? I'm in Europe, by the way.

-- 
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 32241] WikiEditor scrolls the browser and does not insert on IE7, IE8, IE9 if textarea doesn't fit on screen

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32241

Lupo lupo.bugzi...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |

--- Comment #12 from Lupo lupo.bugzi...@gmail.com 2011-11-14 08:57:43 UTC ---
What about the flickering and the remaining direct calls to native focus() in
the other sources? I wrote in comment 9 that this patch did *not* fully solve
the problem. It fixes the functionality, but the visual effects are hideous.

-- 
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 24493] WikiEditor issues (tracking)

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24493

Bug 24493 depends on bug 32241, which changed state.

Bug 32241 Summary: WikiEditor scrolls the browser and does not insert on IE7, 
IE8, IE9 if textarea doesn't fit on screen
https://bugzilla.wikimedia.org/show_bug.cgi?id=32241

   What|Old Value   |New Value

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |

-- 
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 32241] WikiEditor scrolls the browser and does not insert on IE7, IE8, IE9 if textarea doesn't fit on screen

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32241

--- Comment #13 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 09:05:17 
UTC ---
(In reply to comment #12)
 What about the flickering and the remaining direct calls to native focus() in
 the other sources? I wrote in comment 9 that this patch did *not* fully solve
 the problem. It fixes the functionality, but the visual effects are hideous.
Hmm. I don't know where the flickering comes from. I have a hard time seeing
how the native focus() calls you've listed (which are still a problem,
granted), would be reached when clicking the bold button, or at all.

-- 
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 31912] Localized language name as title attribute of language code-proficiency part

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31912

--- Comment #5 from Niklas Laxström niklas.laxst...@gmail.com 2011-11-14 
09:11:51 UTC ---
Is there any documentation on that? Is there general consensus that more post
processing is fine?

-- 
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 32317] PDF export extension fails to render Arabic characters in monospace text (code, preformatted)

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32317

--- Comment #5 from Volker Haas volker.h...@pediapress.com 2011-11-14 
09:14:56 UTC ---
(In reply to comment #4)
 Thanks Brion, Now I can understand why it has problem also in first page 
 (cover
 of book that uses higher height font).

That problem was unrelated. I fixed it with
https://github.com/pediapress/mwlib.rl/commit/4adfadd716af1e04f0631883a7dc8569a2294c09


 
 
 as I understood for each language we needs more that 6 fonts (4 fonts for
 Normal,Bold,Italic,Bold-Italic) 2 fonts(monospaced,High Height Font).

Currently font switching isn't done for monospaced fonts. Since we use GNU
Freefont arabic glyphs can't be displayed:
http://www.gnu.org/s/freefont/coverage.html

The easiest way to fix the monospace problem for arabic would probably be to
add it to GNU Freefont.

 
 To have better result in general for languages that they didn't define correct
 font,In my opinion it is better to define Normal-Font as default-Font for each
 cases doesn't have font definition.

-- 
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 31516] localization of server default timezone in Preferences is missing

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31516

--- Comment #2 from Niklas Laxström niklas.laxst...@gmail.com 2011-11-14 
09:16:38 UTC ---
To be exact this particular bugs asks to localize only the timezone name
provided by the server, which can be anything.

Other timezone names are already translated, though without help from CLDR.

-- 
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 3922] links are not properly rendered in a BiDi category list

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3922

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Priority|Low |High

-- 
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 22724] Localization of custom editintro messages

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22724

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Priority|Low |High

-- 
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 24692] Upload wizard: RTL support is incomplete

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24692

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

 AssignedTo|tpars...@wikimedia.org  |amir.ahar...@mail.huji.ac.i
   ||l

--- Comment #25 from Siebrand s.mazel...@xs4all.nl 2011-11-14 09:23:34 UTC ---
Probably resolved, but Amir is going to check.

-- 
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 24692] Upload wizard: RTL support is incomplete

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24692

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Priority|Normal  |High

-- 
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 25309] Liquid thread sorting order submit button should have its own message

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25309

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Priority|Low |High
 CC||s.mazel...@xs4all.nl

-- 
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 28523] MediaWiki:Mwe-upwiz-thanks-caption likely needs rewording

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28523

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Priority|Normal  |High
 CC||s.mazel...@xs4all.nl

-- 
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 30619] Date formatting for Finnish is wrong

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30619

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Priority|Low |High
 CC||s.mazel...@xs4all.nl
 AssignedTo|wikibugs-l@lists.wikimedia. |niklas.laxst...@gmail.com
   |org |

-- 
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 30878] Narayam Icon change

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30878

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Priority|Normal  |High
 CC||s.mazel...@xs4all.nl
 AssignedTo|wikibugs-l@lists.wikimedia. |santhosh.thottingal@gmail.c
   |org |om

--- Comment #2 from Siebrand s.mazel...@xs4all.nl 2011-11-14 09:25:07 UTC ---
Will be addressed one way or another soon.

-- 
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 31330] do not use templates when Babel information exist for a language

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31330

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Priority|Normal  |High
 CC||s.mazel...@xs4all.nl

-- 
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 31467] Tracking bug for getting the Android app on translatewiki

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31467

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Priority|Normal  |High
 AssignedTo|wikibugs-l@lists.wikimedia. |niklas.laxst...@gmail.com
   |org |

-- 
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 31769] Add font for Cherokee to WebFonts

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31769

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Priority|Low |High

-- 
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 31917] Change the Disable Narayam preference to Enable Narayam

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31917

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

   Priority|Normal  |High
 CC||s.mazel...@xs4all.nl

-- 
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 29854] External link search and protocol-relative URLs

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29854

Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #8 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 09:28:10 
UTC ---
(In reply to comment #6)
 Created attachment 9340 [details]
 Possible patch to implement Brion's solution
 
Thanks for the patch. I modified it a bit and applied it in r101951 and
r101954.

 I tried my hand at writing the necessary patch; I copied doTemplatelinksUpdate
 for the MySQL database updating. There are probably things that could be done
 better. Even if the patch is good, someone would still have to write updaters
 for the non-MySQL databases.
I did end up changing that part quite a bit, yeah. I took the slow
replication-aware code and moved it into a maintenance script. I also changed
the queries a bit, they now use INSERT IGNORE and there's now two INSERT
queries followed by a DELETE.

-- 
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 20342] Support for protocol-relative URLs (tracking)

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20342

Bug 20342 depends on bug 29854, which changed state.

Bug 29854 Summary: External link search and protocol-relative URLs
https://bugzilla.wikimedia.org/show_bug.cgi?id=29854

   What|Old Value   |New Value

 Status|NEW |RESOLVED
 Resolution||FIXED

-- 
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 29854] External link search and protocol-relative URLs

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29854

--- Comment #9 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 09:28:33 
UTC ---
(In reply to comment #8)
 Thanks for the patch. I modified it a bit and applied it in r101951 and
 r101954.
 
Of course I meant r102951 and r102954.

-- 
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 30725] A link to the index is missing for single paged documents

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30725

Andrea Zanni zanni.andre...@gmail.com changed:

   What|Removed |Added

 CC||zanni.andre...@gmail.com

--- Comment #1 from Andrea Zanni zanni.andre...@gmail.com 2011-11-14 09:39:00 
UTC ---
This would be important for all wikisources, there are many documents which are
single-page in all of them.

-- 
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 32400] New: CU doesn't check the permissions in /trunk

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32400

   Web browser: ---
 Bug #: 32400
   Summary: CU doesn't check the permissions in /trunk
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: CheckUser
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: benap...@gmail.com
CC: aschulz4...@gmail.com
Classification: Unclassified


Hi, I just would like to notice that latest rev doesn't check the permissions
so that anyone can use it even anon users, it was deleted from sources while
clean up of sources was done (I already marked one revision fixme), you can
check it here: http://hgwp.tm-irc.org/test/wiki/Special:CheckUserLog or
:CheckUser

-- 
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 32400] CU doesn't check the permissions in /trunk

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32400

--- Comment #1 from Peter Bena benap...@gmail.com 2011-11-14 09:45:59 UTC ---
I believe that r100506 is probably one of that which caused it

-- 
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 32400] CU doesn't check the permissions in /trunk

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32400

p858snake p858sn...@gmail.com changed:

   What|Removed |Added

 CC||j...@compwhizii.net,
   ||p858sn...@gmail.com

--- Comment #2 from p858snake p858sn...@gmail.com 2011-11-14 09:49:57 UTC ---
CC'ing John, Since its appears his revision did 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 31115] Users by language shouldn't be shown if the system is setup not to use categories

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31115

--- Comment #3 from Robin Pepermans (SPQRobin) robinp.1...@gmail.com 
2011-11-14 09:51:35 UTC ---
It doesn't link if babel-footer is *empty*. That message does not exist
locally on mw-wiki, but it is taken from the i18n files, so it is not empty. If
you created that page on mw-wiki, and emptied it, the link would no longer
appear.

-- 
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 31115] Users by language shouldn't be shown if the system is setup not to use categories

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31115

Sumana Harihareswara suma...@panix.com changed:

   What|Removed |Added

   Keywords||i18n

-- 
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 31115] Users by language shouldn't be shown if the system is setup not to use categories

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31115

Niklas Laxström niklas.laxst...@gmail.com changed:

   What|Removed |Added

 CC||niklas.laxst...@gmail.com

--- Comment #4 from Niklas Laxström niklas.laxst...@gmail.com 2011-11-14 
09:56:40 UTC ---
I can confirm that settings the message content to - hides the link. It is a
bit weird that it links by default to a category that needs to be populated
manually.

-- 
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 31912] Localized language name as title attribute of language code-proficiency part

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31912

--- Comment #6 from Robin Pepermans (SPQRobin) robinp.1...@gmail.com 
2011-11-14 10:15:12 UTC ---
(In reply to comment #5)
 Is there general consensus that more post processing is fine?
In that case it would be nice to have the top and footer in the user language
:)

Anyway, what I suppose is certainly possible is having it in the content
language of the wiki, regardless of user language (as it is on en.wiktionary).

-- 
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 31912] Localized language name as title attribute of language code-proficiency part

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31912

--- Comment #7 from Robin Pepermans (SPQRobin) robinp.1...@gmail.com 
2011-11-14 10:36:37 UTC ---
Just thinking out loud... It could be nice to have a title tooltip on the whole
box which could be the text in the content language (like, This user has
advanced knowledge of French, when the box says Cet utilisateur dispose de
connaissances avancées en français.), but then we would be stuck with the
links that don't display nicely in a title attribute.

-- 
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 31238] Create an internal mailing list for Wikimedia Bangladesh

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31238

Tanvir Rahman wikitan...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #2 from Tanvir Rahman wikitan...@gmail.com 2011-11-14 10:40:55 
UTC ---
Philippe, the list has been created already. See here:
https://lists.wikimedia.org/mailman/listinfo/wikimedia-bd-internal. I think
someone forgot to mark this bug resolved.

-- 
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 31459] Gender in user namespaces for Portuguese Wikipedia

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31459

Reedy s...@reedyboy.net changed:

   What|Removed |Added

 CC||s...@reedyboy.net

--- Comment #12 from Reedy s...@reedyboy.net 2011-11-14 10:41:18 UTC ---
(In reply to comment #10)
 
 $wgExtraNamespaces should also be set as
 
 'ptwiki' = array(
   NS_USER = 'Usuário(a)',
   NS_USER_TALK = 'Usuário(a)_Discussão',
   100 = 'Portal',
   101 = 'Portal_Discussão',
   102 = 'Anexo',
   103 = 'Anexo_Discussão',
   104 = 'Livro',
   105 = 'Livro_Discussão',
 ),
 
 Sorry for not being clear.


Isn't this definitely correct? Having a namespace with (a) looks strange, at
best

-- 
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 32400] CU doesn't check the permissions in /trunk

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32400

John Du Hart j...@compwhizii.net changed:

   What|Removed |Added

 AssignedTo|wikibugs-l@lists.wikimedia. |j...@compwhizii.net
   |org |

--- Comment #3 from John Du Hart j...@compwhizii.net 2011-11-14 10:47:52 UTC 
---
Yup, my fault. Will fix.

-- 
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 31459] Gender in user namespaces for Portuguese Wikipedia

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31459

--- Comment #13 from mybugs.m...@gmail.com 2011-11-14 10:51:36 UTC ---
(In reply to comment #12)
 Isn't this definitely correct? Having a namespace with (a) looks strange, at
 best

It is analogous to the construction he/she used in English:
http://www.google.com.br/search?q=%22the+user+*+he%2Fshe%22

-- 
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 31459] Gender in user namespaces for Portuguese Wikipedia

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31459

Reedy s...@reedyboy.net changed:

   What|Removed |Added

 CC|s...@reedyboy.net|

--- Comment #14 from Reedy s...@reedyboy.net 2011-11-14 10:52:32 UTC ---
(In reply to comment #13)
 (In reply to comment #12)
  Isn't this definitely correct? Having a namespace with (a) looks strange, 
  at
  best
 
 It is analogous to the construction he/she used in English:
 http://www.google.com.br/search?q=%22the+user+*+he%2Fshe%22

So that is a yes, this is definitely correct? ie being like neutral?

-- 
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 31459] Gender in user namespaces for Portuguese Wikipedia

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31459

--- Comment #15 from mybugs.m...@gmail.com 2011-11-14 10:54:29 UTC ---
(In reply to comment #14)
 So that is a yes, this is definitely correct? ie being like neutral?

Yes, and for some Portuguese examples, see:
http://www.google.com.br/search?q=o+(a)+Usuário(a)

-- 
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 26909] Implement 'dir' for query properties.

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26909

Umherirrender umherirrender_de...@web.de changed:

   What|Removed |Added

   Keywords|need-review |reviewed

--- Comment #9 from Umherirrender umherirrender_de...@web.de 2011-11-14 
11:01:17 UTC ---
Thank you for review and commit.

(In reply to comment #8)
 (In reply to comment #7)
  Feel free to modify the patch.
  
 The only other modification I made was to drop the ApiQueryExternalLinks.php
 changes. They added an ORDER BY on el_to which is a partially-indexed blob
 field, so that would filesort. The query isn't very nice as it is, but this
 would make it worse.

It there a way to get the dir param also for ApiQueryExternalLinks.php? Should
I create a new bug to track this (and which gets maybe LATER or WONTFIX)?
Thanks.

-- 
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 26909] Implement 'dir' for query properties.

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26909

--- Comment #10 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 11:05:27 
UTC ---
(In reply to comment #9)
 It there a way to get the dir param also for ApiQueryExternalLinks.php? Should
 I create a new bug to track this (and which gets maybe LATER or WONTFIX)?
 Thanks.
You should submit a new patch, either on this bug or on a new one (I don't
really care) that doesn't add the order by on el_to. I realize this may mean
the result set isn't completely reversed,  but that's unavoidable; it's either
that or no dir param at all.

-- 
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 31516] localization of server default timezone in Preferences is missing

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31516

--- Comment #3 from Umherirrender umherirrender_de...@web.de 2011-11-14 
11:12:34 UTC ---
In the most cases, the server timezone is one of the list on
Special:Preferences and therefor can be localized in the same way. Having a way
to localize all possible timezone with CLDR sound like a new 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 21416] Account creation form should check username validity interactively

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21416

tomash...@gmail.com changed:

   What|Removed |Added

 CC||tomash...@gmail.com

--- Comment #1 from tomash...@gmail.com 2011-11-14 11:52:31 UTC ---
Yes, I have just spent five minutes trying to sing up to wikipedia - and that
was too tedious. Only good thing about that was that checking whether given
username exists happens before checking captcha. I think this is related to
https://bugzilla.wikimedia.org/show_bug.cgi?id=28085 - both make it harder to
make an account and contribute more.

-- 
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 31459] Gender in user namespaces for Portuguese Wikipedia

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31459

Reedy s...@reedyboy.net changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #16 from Reedy s...@reedyboy.net 2011-11-14 11:55:30 UTC ---
Done

-- 
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 3348] Passwords should be checked for strength before being set

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3348

tomash...@gmail.com changed:

   What|Removed |Added

 CC||tomash...@gmail.com

--- Comment #12 from tomash...@gmail.com 2011-11-14 11:55:50 UTC ---
If this is implemented, it should be make sure the requirements for the
password are shown when opening a new account (there is nothing more
frustrating then typing a 4-character password and being told it must be
longer, then typing in 6-characer password and being told the same, finally
typing an 8-character long password and being told it must have at least one
number and so on). I think it should be shown when loging in as well - often
people have different password strengths and do nto remember which one is used
on a given site.

-- 
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 17905] Add a magic word to specify the default format for the new formatdate parser function

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17905

Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

   Attachment #6584|0   |1
is obsolete||

--- Comment #5 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 11:56:10 
UTC ---
Created attachment 9442
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=9442
Rebased patch against trunk r102954

The patch didn't quite apply cleanly any more so I've rebased it against HEAD.
I've attached it here but it can't be applied in its current state.

It mostly looks good to me except for one critical thing: the logic involving
$defaultPref and $defaultpref in CoreParserFunctions::formatDate() is very
weird and looks like a mistake. Specifically, the second if ( $pref ==
'default' ) condition looks like it will never be triggered, the existence of
two different (!) variables $defaultPref and $defaultpref with different
semantics is confusing, and there are no comments to clarify what's going on.

Once that's fixed, the patch can be committed. I would fix it but I have no
clue what you meant that particular piece of code to do and the most sensible
behavior isn't obvious to me offhand.

-- 
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 17905] Add a magic word to specify the default format for the new formatdate parser function

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17905

Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

   Keywords|need-review |reviewed
 CC||roan.katt...@gmail.com

--- Comment #6 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 11:56:35 
UTC ---
And, per the keywords, this magic word would need parser test cases too.

-- 
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 28085] allow login with email as well as username

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28085

tomash...@gmail.com changed:

   What|Removed |Added

 CC||tomash...@gmail.com

--- Comment #2 from tomash...@gmail.com 2011-11-14 11:58:55 UTC ---
Yes, this would be nice. I have just spent five minutes trying to find a
suitable username on wikipedie and almost given up.

Related to bug 21416.

-- 
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 20050] Reference with numbered list triggers Tidy to corrupt reference list

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=20050

Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 CC||roan.katt...@gmail.com
 Resolution||FIXED

--- Comment #14 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 12:03:37 
UTC ---
Thanks for the patch. I tested it with the reporter's test case mentioned in
comment 0 and it worked fine. Applied in r102970.

-- 
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 2542] Tidy sucks (tracking)

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=2542

Bug 2542 depends on bug 20050, which changed state.

Bug 20050 Summary: Reference with numbered list triggers Tidy to corrupt 
reference list
https://bugzilla.wikimedia.org/show_bug.cgi?id=20050

   What|Old Value   |New Value

 Status|REOPENED|RESOLVED
 Resolution||FIXED

-- 
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 32241] WikiEditor scrolls the browser and does not insert on IE7, IE8, IE9 if textarea doesn't fit on screen

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32241

--- Comment #14 from Lupo lupo.bugzi...@gmail.com 2011-11-14 12:06:07 UTC ---
It appears that IE makes a distinction between the focused element and the
active element. A focused element always is also the active element, but an
element can be active without being focused.

The point with IE is: if an element is focused, the browser brings it into
view, as we've seen. If you only activate an element, it doesn't!

See 
http://msdn.microsoft.com/en-us/library/ms536738%28v=VS.85%29.aspx (setActive)
and
http://msdn.microsoft.com/en-us/library/ms536425%28v=VS.85%29.aspx (focus)

It appears that an element must be active, not necessarily focused, for
createRange() to work properly.

I've played around using textarea.setActive() instead of textarea.focus(), and
that indeed seems to solve this IE-specific problem completely: insertions work
as expected, and there's no screen flicker on IE8 anymore.

(Test code replacing jquery.textSelection is at [[:commons:User:Lupo
Test/common.js]].)

I'll test a bit more, and if I don't find any problems, I'll post a new patch
tonight (UTC). Using an IE-specific non-standard operation like setActive()
should be OK in these code paths that are taken on IE only anyway.

-- 
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 32401] New: Implement 'dir' for prop=extlinks

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32401

   Web browser: ---
 Bug #: 32401
   Summary: Implement 'dir' for prop=extlinks
   Product: MediaWiki
   Version: 1.19-svn
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: API
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: umherirrender_de...@web.de
CC: bryan.tongm...@gmail.com, roan.katt...@gmail.com,
s...@reedyboy.net, soxre...@gmail.com
Classification: Unclassified


Please add a dir param for prop=extlinks.

Backed out of bug 26909, because I have at the moment no idea, how I can
receive that without a filesort. Maybe some one has an idea. Thanks.

from bug 26909 comment 8:
 They added an ORDER BY on el_to which is a partially-indexed blob
 field, so that would filesort. The query isn't very nice as it is, but this
 would make it worse.

from bug 26909 comment 10:
 You should submit a new patch, either on this bug or on a new one (I don't
 really care) that doesn't add the order by on el_to. I realize this may mean
 the result set isn't completely reversed,  but that's unavoidable; it's either
 that or no dir param at all.

-- 
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 26909] Implement 'dir' for query properties.

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26909

--- Comment #11 from Umherirrender umherirrender_de...@web.de 2011-11-14 
12:21:22 UTC ---
backed out to bug 32401

-- 
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 17865] Mismatched input syntax for Cite error messages

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17865

Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

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

--- Comment #8 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 12:22:20 
UTC ---
(In reply to comment #6)
 Created attachment 9421 [details]
 Fix double-parsed error messages
 
 Here is a patch to fix the second of the two issues, where MediaWiki:Cite 
 error
 references no backlink label and MediaWiki:Cite error references no text are
 double-parsed and so cannot contain wikilinks or external links.
Modified patch applied in r102972.

-- 
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 32397] #userlogin is too narrow

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32397

Sumana Harihareswara suma...@panix.com changed:

   What|Removed |Added

   Keywords||design, i18n
 CC||suma...@panix.com
Summary|#userlogin is to narrow |#userlogin is too narrow

-- 
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 26441] quoted and unquoted attributes are not handled the same in Sanitizer.php

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26441

Umherirrender umherirrender_de...@web.de changed:

   What|Removed |Added

   Attachment #7932|0   |1
is obsolete||

--- Comment #9 from Umherirrender umherirrender_de...@web.de 2011-11-14 
12:34:42 UTC ---
Comment on attachment 7932
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=7932
change the attribs regex to handle the quoted and unquoted attributes same

I am not able to provide a new patch with parser tests or which have the right
regex for the specifition.

Marking patch as obsolete.

-- 
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 26441] quoted and unquoted attributes are not handled the same in Sanitizer.php

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26441

Umherirrender umherirrender_de...@web.de changed:

   What|Removed |Added

   Keywords|patch, reviewed |

-- 
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 17865] Mismatched input syntax for Cite error messages

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17865

--- Comment #9 from Gabriel Wicke wi...@wikidev.net 2011-11-14 12:36:22 UTC 
---
Created attachment 9443
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=9443
Alternate solution using MessageCache::singleton()-parse()

Alternate solution to Roan's committed one using
MessageCache::singleton()-parse() for all error messages- we were working on
the same bug. Does not support categories from error messages. Might be a good
or bad thing.

-- 
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 32402] New: Implement 'dir' for prop=globalusage

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32402

   Web browser: ---
 Bug #: 32402
   Summary: Implement 'dir' for prop=globalusage
   Product: MediaWiki extensions
   Version: any
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: GlobalUsage
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: umherirrender_de...@web.de
CC: bryan.tongm...@gmail.com
Blocks: 23855
Classification: Unclassified


Please allow descending order for prop=globalusage.

Thanks.

-- 
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 23855] Non Core API Tracking bug

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=23855

Umherirrender umherirrender_de...@web.de changed:

   What|Removed |Added

 Depends on||32402

-- 
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 16294] Update to cite.php refs: ids fixed, footnotes, globbed links

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16294

Gabriel Wicke wi...@wikidev.net changed:

   What|Removed |Added

 CC||wi...@wikidev.net

--- Comment #10 from Gabriel Wicke wi...@wikidev.net 2011-11-14 13:07:49 UTC 
---
Nicholas, I'd like to help with getting this patch finally reviewed and checked
in. Cite has changed in the meantime, so the patch will need to be updated to
latest trunk. Do you have a more up-to-date version? If you do, then this would
save the duplicate effort of forward-porting it.

-- 
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 32344] Non-clear error message.

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32344

Jeroen De Dauw jeroen_ded...@yahoo.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||jeroen_ded...@yahoo.com
 Resolution||FIXED

--- Comment #1 from Jeroen De Dauw jeroen_ded...@yahoo.com 2011-11-14 
13:13:05 UTC ---
Applied such a fix in r102978 :)

-- 
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 32403] New: RTL title ending in a neutral-direction character displays incorrectly when viewing in an LTR language

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32403

   Web browser: ---
 Bug #: 32403
   Summary: RTL title ending in a neutral-direction character
displays incorrectly when viewing in an LTR language
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: User interface
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: mt.cut...@btinternet.com
Blocks: 745
Classification: Unclassified


When viewing a page like [[ar:عمان (مدينة)]]‏‎ (ending in a bracket, a neutral
character) with an LTR langauge chosen as the interface language, the final
character of the title is displayed to the right of the word, as if it is at
the start, when it should obviously be displayed at the left (at the end). It
displays correctly if the interface language is RTL.

This bug seems to have started when a recent interface change was made, when
the layout started to depend on the selected interface language rather than the
language of the wiki.
Basically, before a recent change, the layout of RTL wikis was always the same
no matter what the interface language was, and was a mirror of the interface on
LTR wikis. Recently, that was changed, so that the menu is on the left side if
you select an LTR interface language. For some reason, this also changed the
side the title is displayed on, and also introduced this bug.

As this bug also appears on he.wiki ([[he:מכבי תל אביב (כדורגל)]]‏‎), I’d guess
this is a general bug on RTL wikis, rather than one specific wiki.

I’ve confirmed that this bug occurs on both Chrome and Firefox, and on both
vector and monobook skins.

-- 
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 745] RTL/bidirectional issues (tracking)

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=745

Matthew Cutler mt.cut...@btinternet.com changed:

   What|Removed |Added

 Depends on||32403

-- 
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 32376] XML dump contains gender-specific namespaces that breaks search indexing of those namespaces

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32376

--- Comment #8 from Ariel T. Glenn ar...@wikimedia.org 2011-11-14 13:25:05 
UTC ---
I think the right behavior is probably what was suggested by the reporter, to
use the canonical namespace names in the dump.  I'm not opposed to including
the variants in the siteinfo along with which gender they go with, but that's
secondary.

-- 
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 32344] Non-clear error message.

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32344

--- Comment #2 from f.trott f.tr...@gmx.net 2011-11-14 13:26:42 UTC ---
Even included some nice HTML. Thanks! :)

-- 
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 32241] WikiEditor scrolls the browser and does not insert on IE7, IE8, IE9 if textarea doesn't fit on screen

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32241

--- Comment #15 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 13:33:30 
UTC ---
(In reply to comment #14)
 I'll test a bit more, and if I don't find any problems, I'll post a new patch
 tonight (UTC). Using an IE-specific non-standard operation like setActive()
 should be OK in these code paths that are taken on IE only anyway.
Yay, thanks!

-- 
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 32403] RTL title ending in a neutral-direction character displays incorrectly when viewing in an LTR language

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32403

--- Comment #1 from Matthew Cutler mt.cut...@btinternet.com 2011-11-14 
13:34:13 UTC ---
I can’t edit the bug description? Well, I’ll put the bare URLs of my two
attempted links here:
http://ar.wikipedia.org/wiki/%D8%B9%D9%85%D8%A7%D9%86_%28%D9%85%D8%AF%D9%8A%D9%86%D8%A9%29
http://he.wikipedia.org/wiki/%D7%9E%D7%9B%D7%91%D7%99_%D7%AA%D7%9C_%D7%90%D7%91%D7%99%D7%91_%28%D7%9B%D7%93%D7%95%D7%A8%D7%92%D7%9C%29

-- 
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 26322] Requesting FlaggedRevs be enabled on ru.wikinews

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26322

--- Comment #4 from Artem Korzhimanov korzhimanov.ar...@gmail.com 2011-11-14 
13:36:47 UTC ---
The most important configurations are:
$wgFlaggedRevsNamespaces = [0, 10, 14] (articles, templates and categories)
$wgFlaggedRevsOverride = enabled (stable version on default)
$wgFlaggedRevsWhitelist = Main_page (no revision needed for the Main page)
$wgFlaggedRevsAutoReview = enabled (every edit by a user with 'autoreview'
rights is automatically reviewed upon save)
$wgFlaggedRevsAutoReviewNew = enabled ( every new page by a user with
'autoreview' rights is automatically reviewed upon save)
$wgGroupPermissions['sysop']['review'] = true (allow administrators to review
revisions)

We also want registered users to see current revision rather than stable. I am
not sure about variable configurating this ($wgFlaggedRevsExceptions, I think).
We also will use only editor user group and review right so everything
regarding reviewers and validation is not important at all. Is there anything
else you need to know?

-- 
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 6569] Avoid nested definition lists

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=6569

Gabriel Wicke wi...@wikidev.net changed:

   What|Removed |Added

 AssignedTo|wikibugs-l@lists.wikimedia. |wi...@wikidev.net
   |org |

--- Comment #7 from Gabriel Wicke wi...@wikidev.net 2011-11-14 13:45:23 UTC 
---
Additional information from
http://lists.wikimedia.org/pipermail/wikitext-l/2011-November/000483.html.
Nested definition lists are rare enough to allow us to decide on a new standard
without breaking too many pages:

 Can we deconstruct the current parser's processing steps and build a set
 of rules that must be followed?

I think the commonly-used structures are quite clearly defined, but the
behaviour of these strange permutations is quite unspecified. The parser
output for the case reported in the bug already changed in the meantime..

 I think we need to get a dump of English Wikipedia and start using a
 simple PEG parser to scan through it looking for patterns and figuring
 out how often certain things are used - if ever.

I just ran an en-wiki article dump through a zcat/tee/grep pipeline:

patterncountexample
--
^548498738 (total number of lines)
^;681495
^;[^:]+:153997; bla : blub
^[;:*#]+;[^:]+:3817*; bla : blub
^;; 2332
^[:;*#]*;[^:]*::41most probably ;::
^[;:*#]*;[^:]+::17;; bla :: blub

Nested definition lists are not exactly common. Lines starting with ';;'
often appear as comments in code listings. The most common other
application appears to be indentation and emphasis. Any change in the
produced structure that keeps indentation and bolding should thus avoid
breaking pages.

-- 
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 31673] JavaScript Error: Object expected makes Special Characters section of (enhanced) toolbar of MW 1.18 unusable on IE 8

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31673

Lupo lupo.bugzi...@gmail.com changed:

   What|Removed |Added

 CC||lupo.bugzi...@gmail.com

--- Comment #4 from Lupo lupo.bugzi...@gmail.com 2011-11-14 13:49:47 UTC ---
(In reply to comment #2)
 That's very strange. I wonder what the value of 'character' was in that case.  0
 in character works fine if character is an array, and the Object expected
 error only seems to appear in cases where Firefox also throws an error.

It's undefined.

I think it's caused by the stray comma at the end of line 752 in
jquery.wikiEditor.toolbar.config.js

That apparently makes IE8 add a 185th undefined element to the array.

I think though, besides removing that comma, the function
jquery.wikiEditor.toolbar.buildCharacter() should be made more robust by
returning an empty string if typeof character == 'undefined'. Possibly log the
error somewhere, but don't let such misconfigurations break the whole thing.

-- 
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 31673] JavaScript Error: Object expected makes Special Characters section of (enhanced) toolbar of MW 1.18 unusable on IE 8

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31673

--- Comment #5 from Roan Kattouw roan.katt...@gmail.com 2011-11-14 13:52:52 
UTC ---
(In reply to comment #4)
 (In reply to comment #2)
  That's very strange. I wonder what the value of 'character' was in that 
  case. 0
  in character works fine if character is an array, and the Object expected
  error only seems to appear in cases where Firefox also throws an error.
 
 It's undefined.
 
 I think it's caused by the stray comma at the end of line 752 in
 jquery.wikiEditor.toolbar.config.js
 
Thanks for spotting that, removed in r102980. Deploying that now.

 That apparently makes IE8 add a 185th undefined element to the array.
 
Well that's better than throwing a syntax error, which is what happens for
trailing commas in object definitions :(

 I think though, besides removing that comma, the function
 jquery.wikiEditor.toolbar.buildCharacter() should be made more robust by
 returning an empty string if typeof character == 'undefined'. Possibly log the
 error somewhere, but don't let such misconfigurations break the whole thing.
There should probably be a typeof foo != 'string' check yeah.

-- 
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 4220] Unique identity constraints for XML dump format schema

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=4220

--- Comment #7 from Ariel T. Glenn ar...@wikimedia.org 2011-11-14 14:13:03 
UTC ---
This patch looks good to me also.  Might as well apply it as far back as we
can; if someone is producing old schema dumps that violate these constraints
they have bigger problems on their hands than this enforcement change.

Hmm with one exception I guess, if someone produces XML files with multiple
entries for a given pageid (but each entry contains different revision ids),
that could be a problem.

-- 
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 29935] Improve formatting of examples in ApiParamInfo

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29935

Reedy s...@reedyboy.net changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #2 from Reedy s...@reedyboy.net 2011-11-14 14:25:43 UTC ---
Removing the old would be breaking. Closing bug as fixed

-- 
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 25325] User preferences, like Hide my edits from the watchlist, doesn't works for RSS feeds

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25325

Reedy s...@reedyboy.net changed:

   What|Removed |Added

   Attachment #7706|0   |1
is obsolete||

--- Comment #7 from Reedy s...@reedyboy.net 2011-11-14 14:36:18 UTC ---
Comment on attachment 7706
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=7706
add wlexcludeuser to feedwatchlist

Applied Platonides' patch in r102987

-- 
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 25325] User preferences, like Hide my edits from the watchlist, doesn't works for RSS feeds

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25325

Reedy s...@reedyboy.net changed:

   What|Removed |Added

   Keywords|need-review |reviewed

-- 
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 25325] RSS feeds doesn't respect watchlist preferences

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25325

Reedy s...@reedyboy.net changed:

   What|Removed |Added

Summary|User preferences, like  |RSS feeds doesn't respect
   |Hide my edits from the |watchlist preferences
   |watchlist, doesn't works   |
   |for RSS feeds   |

--- Comment #8 from Reedy s...@reedyboy.net 2011-11-14 14:40:19 UTC ---
Retitling bug

Presumably all of the following sohuld be respected if they are not currently

 Expand watchlist to show all changes, not just the most recent
  Hide minor edits from the watchlist
  Hide bot edits from the watchlist
  Hide my edits from the watchlist
  Hide edits by anonymous users from the watchlist
  Hide edits by logged in users from the watchlist

-- 
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 32404] New: namespaceDupes.php does not update pagelinks table

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32404

   Web browser: ---
 Bug #: 32404
   Summary: namespaceDupes.php does not update pagelinks table
   Product: MediaWiki
   Version: 1.19-svn
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: Unprioritized
 Component: Maintenance scripts
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: malaf...@clix.pt
CC: innocentkil...@gmail.com
Classification: Unclassified


Currently (14-Nov-2011 dump), at pt.wiktionary, we have entries in the
page_links table such as:

pl_from   pl_namespace  pl_title
458396Crystal_Clear_app_aim2.png
258396   0Imagem:Flag_of_Esperanto.svg

Although Imagem is an alias for namespace 6, the second record above appears
as a namespace 0 page, with namespace 6 prefix.

RoanKattouw and apergos realized that running namespaceDupes.php does not
correct the situation because it doesn't touch the pagelinks table.

Somehow, a maintenance operation is needed to update namespace dupes in tables
other than the page table. Possibly, it could be included in the main
namespaceDupes.php script.

-- 
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 32404] namespaceDupes.php does not update pagelinks table

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32404

--- Comment #1 from Ariel T. Glenn ar...@wikimedia.org 2011-11-14 14:56:32 
UTC ---
It looks like pagelinks, imagelinks and externallinks (why does that have links
to local images anyways?) all need cleaned up across the various wikis.

-- 
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 31986] Fix gender in user namespaces for Portuguese wikis

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31986

--- Comment #2 from Reedy s...@reedyboy.net 2011-11-14 15:00:30 UTC ---
You realise putting them in images makes it harder, right? ;)

-- 
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 27992] user names show up in ip tags

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27992

--- Comment #2 from Ariel T. Glenn ar...@wikimedia.org 2011-11-14 15:06:20 
UTC ---
gleim, what does your patch do exactly?

-- 
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 31986] Fix gender in user namespaces for Portuguese wikis

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31986

--- Comment #3 from Platonides platoni...@gmail.com 2011-11-14 15:11:14 UTC 
---
Created attachment 9444
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=9444
Proposed fix

I think the attached patch fixes it (I also added some more aliases that were
missing). I'm assuming $namespaceNames['NS_USER'] is the used namespace when
there's no specific gender.
I'm not keen of using foo(a) forms, though. Would prefer to see some more
support from users that it is indeed the right thing to do in Portuguese (not
in being valid language, but what would be used normally).

-- 
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 31986] Fix gender in user namespaces for Portuguese wikis

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31986

Platonides platoni...@gmail.com changed:

   What|Removed |Added

   Keywords|shell   |need-review
 CC||platoni...@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 27992] user names show up in ip tags

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27992

Platonides platoni...@gmail.com changed:

   What|Removed |Added

 CC||platoni...@gmail.com

--- Comment #3 from Platonides platoni...@gmail.com 2011-11-14 15:18:34 UTC 
---
What do you propose to do with values such as 210.50.203.xxx or
123.office.bomis.com ?

If researchers are going to make software to crawl it by themselves, doesn't
seem unreasonable that they filter such values to their liking, 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 17865] Mismatched input syntax for Cite error messages

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17865

--- Comment #10 from Brad Jorsch b-jor...@alum.northwestern.edu 2011-11-14 
15:19:09 UTC ---
(In reply to comment #9)
 Alternate solution to Roan's committed one using
 MessageCache::singleton()-parse() for all error messages- we were working on
 the same bug. Does not support categories from error messages. Might be a good
 or bad thing.

Categories in the error messages are heavily used on enwiki. There are even
bots that watch these categories to try to fix the errors.

Also, did you test this with the other errors? In a quick test here, it seems
to do just as I predicted in comment 5.

-- 
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 27618] Backup dumps could contain a title index

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27618

--- Comment #8 from Ariel T. Glenn ar...@wikimedia.org 2011-11-14 15:23:35 
UTC ---
Out of curiosity, what do the various bz2 offline readers need, byte, or byte
and bit, or bzip2 boundary and offset?  

I expect the offline readers don't really use namespace or page ids for
anything, so adding the full page title (i.e. namespace:title) should suffice. 
If we're talking only about things in the main article space then it doesn't
matter at all (but what about images?)...

-- 
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 27618] Backup dumps could contain a title index

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27618

Ángel González keis...@gmail.com changed:

   What|Removed |Added

 CC||keis...@gmail.com

--- Comment #9 from Ángel González keis...@gmail.com 2011-11-14 15:46:09 UTC 
---
I used bzip2 boundary + title hash.
If your index is 315 MB, even dropping the ability to perform random search,
you will hardly be efficient in a consumer PC with maybe just 512 MB of RAM.

-- 
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 32380] Make powered by link protocol relative

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32380

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 CC||has...@free.fr
   Target Milestone|--- |1.19wmf deployment

-- 
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 7240] Usernames in history of imported pages should refer to original wiki

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=7240

Nemo_bis federicol...@tiscali.it changed:

   What|Removed |Added

 CC||mike.lifeguard+bugs@gmail.c
   ||om

--- Comment #5 from Nemo_bis federicol...@tiscali.it 2011-11-14 15:51:39 UTC 
---
*** Bug 13798 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 13798] Imported edits can be incorrectly attributed to whoever creates that account

2011-11-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=13798

Nemo_bis federicol...@tiscali.it changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 CC||federicol...@tiscali.it
 Resolution||DUPLICATE

--- Comment #9 from Nemo_bis federicol...@tiscali.it 2011-11-14 15:51:39 UTC 
---


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

-- 
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


  1   2   3   >