[Bug 24854] Black/striped thumbnails of CMYK JPEGs

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24854

Kevin J Morgan morgankev...@gmail.com changed:

   What|Removed |Added

 CC||morgankev...@gmail.com

--- Comment #17 from Kevin J Morgan morgankev...@gmail.com 2012-08-10 
06:17:11 UTC ---
another example:
https://commons.wikimedia.org/wiki/File:WendyDavis.jpeg

-- 
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 38666] When searching no specific region should be highlighted in the map

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38666

Santhosh Thottingal santhosh.thottin...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||srik@gmail.com
 AssignedTo|wikibugs-l@lists.wikimedia. |santhosh.thottingal@gmail.c
   |org |om

--- Comment #1 from Santhosh Thottingal santhosh.thottin...@gmail.com 
2012-08-10 06:20:58 UTC ---
Addressed in gerrit 18448

-- 
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 39101] ULS Search auto-complete suggestions over write the input in Indic

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39101

Santhosh Thottingal santhosh.thottin...@gmail.com changed:

   What|Removed |Added

   Keywords||i18n

--- Comment #1 from Santhosh Thottingal santhosh.thottin...@gmail.com 
2012-08-10 06:23:05 UTC ---
Addressed in gerrit 18247

-- 
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 37367] Error creating thumbnail: convert: Insufficient memory (case 4) (High resolution JPG)

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37367

--- Comment #3 from Marco maic...@yahoo.com 2012-08-10 07:27:47 UTC ---
This is a duplicate of bug #24228 ?!

-- 
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 24228] Memory problem with large progressive jpegs (on Commons and other wikis)

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24228

--- Comment #5 from Marco maic...@yahoo.com 2012-08-10 07:33:34 UTC ---
I created a cat. to keep track of those images.
https://commons.wikimedia.org/wiki/Category:Progressive_mode_JPGs_to_be_saved_in_Baseline_mode

-- 
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 35003] Process: Call to undefined method SMWDIWikiPage::getTypeID()

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35003

jjbus...@gmail.com changed:

   What|Removed |Added

 CC||jjbus...@gmail.com

--- Comment #7 from jjbus...@gmail.com 2012-08-10 07:41:07 UTC ---
Thanks in advance when fix done.
Any temporary workarounds for this one?

-- 
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 38622] Merge the Wikidata ContentHandler branch

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38622

--- Comment #15 from Tim Starling tstarl...@wikimedia.org 2012-08-10 07:54:33 
UTC ---
I could see those revisions once I deleted the local branch and recreated it.
Here's a few review comments for you.

There are still a lot of long lines. Pretty much every time there is a comment
on the end of a line, it makes the line too long, so you should probably not do
that.

What are the changes to DairikiDiff.php for? The code changes don't match the
commit message.

In DifferenceEngine.php:

} elseif( Hooks::isRegistered( 'ArticleViewCustom' )
 !wfRunHooks( 'ArticleViewCustom', array(
ContentHandler::getContentText( $this-mNewContent ), $this-mNewPage, $out ) )
) { #NOTE: deperecated hook, B/C only

This is a common pattern. I suggest you provide a wrapper function for running
legacy hooks so that code like this will be shorter and more legible. Something
like:

ContentHandler::runLegacyHook( 'ArticleViewCustom', array( $this-mNewContent, 
$this-mNewPage, $out ) )

with runLegacyHook() something along the lines of

function runLegacyHook( $hookName, $args ) {
foreach ( $args as $key = $value ) {
if ( $value instanceof Content ) {
$args[$key] = ContentHandler::getContentText( $value );
}
}
return wfRunHooks( $hookName, $args );
}

#XXX: generate a warning if $old or $new are not instances of TextContent?
#XXX: fail if $old and $new don't have the same content model? or what?

These are good questions, and there are many more fixme comments like them
throughout the Wikidata code. I can't approve it with these kinds of flaws
remaining. If nothing will ever call this function with anything other than
TextContent, then throwing an exception is the right thing to do. Diffing the
serialized representation does not seem right to me, for non-text content.

#XXX: text should be already segmented. what does that mean?

It means that $wgContLang-segmentForDiff() should have been run on it. The
comment is an error introduced by me in r13029, you certainly should *not*
segment the input of that function.

In Article.php:

$contentHandler = ContentHandler::getForTitle( $this-getTitle() );
$de = $contentHandler-createDifferenceEngine( $this-getContext(), $oldid,
$diff, $rcid, $purge, $unhide );

Surely the content type used to get the diff engine should depend on the
content of the revisions involved, not just the title. Same issue throughout
commit 88f8ab8e90a77f1d51785ba63f2eac10599c3063.

-- 
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 39218] New: Create the My best KB layout for Gurumukhi Punjabi in Narayam

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39218

   Web browser: ---
 Bug #: 39218
   Summary: Create the My best KB layout for Gurumukhi Punjabi in
Narayam
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Narayam
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: shijua...@hotmail.com
CC: asha...@wikimedia.org, junu.pv+pub...@gmail.com,
s.mazel...@xs4all.nl, santhosh.thottin...@gmail.com,
srik@gmail.com
Classification: Unclassified
   Mobile Platform: ---


Created attachment 10949
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=10949
My best keyboard layout

The Mybest keyboard layout is requested by some Punjabi users to be enabled in
Narayam in Punjabi wikipedia. The details of the keyboard is available in the
attachment. I got some details of this keyboard layout from this site
http://www.gurbanifiles.org/unicode/index.htm 


This keyboard layout has the sikh symbol Khanda
(http://en.wikipedia.org/wiki/Khanda_%28Sikh_symbol%29) in it (assigned to the
 key). Its unicode codepoint is U+262C (☬)

-- 
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 39218] Create the My best KB layout for Gurumukhi Punjabi in Narayam

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39218

Shiju Alex shijua...@hotmail.com changed:

   What|Removed |Added

 CC||shijua...@hotmail.com

--- Comment #1 from Shiju Alex shijua...@hotmail.com 2012-08-10 08:38:09 UTC 
---
Forgot to mention, the my best KB layout is very similar to the currently
enabled Gurumukhi Phonetic KB layout So we might be able to reuse few code.

-- 
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 39219] New: Research and Update Gurumukhi Inscript Layout

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39219

   Web browser: ---
 Bug #: 39219
   Summary: Research and Update Gurumukhi Inscript Layout
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Narayam
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: shijua...@hotmail.com
CC: asha...@wikimedia.org, junu.pv+pub...@gmail.com,
s.mazel...@xs4all.nl, santhosh.thottin...@gmail.com,
srik@gmail.com
Classification: Unclassified
   Mobile Platform: ---


There is request from a Punjabi user mentioning that the letter that key N
produces is wrong in Gurumukhi Inscript layout in Punjabi Wikipedia. Now the
key N gives ਲ਼ (dot is after the character).

But accoring to him the dot should appear before character. Could you verify
this. I have checked the Redhat Punjabi Inscript layout and few other images
available on the web http://bit.ly/MXycoj. In many places it is as per current
Narayam implementation 

The one place I saw an image as per user's suggestion is here
http://www.5abi.com/dosh/fontU-dnld2.htm Could you verify this  and update the
Gurumukhi Punjabi layout as per the accepted standards.

-- 
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 37768] Tweak message 'wb-special-createitem-new-item-notification'

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37768

Aude aude.w...@gmail.com changed:

   What|Removed |Added

   Keywords||i18n
 CC||aude.w...@gmail.com

-- 
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 39201] SpecialItemByLabel should/should not redirect to the ordinary item page

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39201

--- Comment #1 from jeb...@gmail.com 2012-08-10 08:58:38 UTC ---
Note that always show the list from the disambiguation page means that this
also should happen when hitting submit, that is the special page will then
never show the item content.

Originally the item content was shown in the special page like in
SpecialItemByTitle.

-- 
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 39218] Create the My best KB layout for Gurumukhi Punjabi in Narayam

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39218

Srikanth Logic srik@gmail.com changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
 AssignedTo|wikibugs-l@lists.wikimedia. |srik@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 39201] SpecialItemByLabel should/should not redirect to the ordinary item page

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39201

--- Comment #2 from jeb...@gmail.com 2012-08-10 09:09:28 UTC ---
Could do a redirect to get to the correct page if its only one in the set.

-- 
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 39220] New: A bad filename should be changed silently instead of stopping the upload with unknown-warning

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39220

   Web browser: ---
 Bug #: 39220
   Summary: A bad filename should be changed silently instead of
stopping the upload with unknown-warning
   Product: MediaWiki extensions
   Version: master
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: UploadWizard
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: raimond.spekk...@gmail.com
CC: mtrac...@member.fsf.org
Classification: Unclassified
   Mobile Platform: ---


When the filename on the local computer has an invalid/bad character (like a
leading space in my case) the UW stops the upload with a non helpful
unknown-warning.

The old upload form shows at least the better message 

'badfilename' = 'Filename has been changed to $1.',

and I can retry with the changed filename.

I think the UW should change the filename silently and continue with the
upload, maybe notifying the user in the last step about the changed filename.

-- 
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 39219] Gurumukhi LLA should have dot to the left of Gurumukhi LA

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39219

Srikanth Logic srik@gmail.com changed:

   What|Removed |Added

   Keywords||upstream
  Component|Narayam |WebFonts
   See Also||https://bugzilla.redhat.com
   ||/show_bug.cgi?id=847249
Summary|Research and Update |Gurumukhi LLA should have
   |Gurumukhi Inscript Layout   |dot to the left of
   ||Gurumukhi LA

--- Comment #1 from Srikanth Logic srik@gmail.com 2012-08-10 09:26:23 UTC 
---
This is a font issue, filed a bug on Lohit-Punjabi.
https://bugzilla.redhat.com/show_bug.cgi?id=847249

-- 
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 39215] Make page move reason text box single lined

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39215

Alexandre Emsenhuber [IAlex] ialex.w...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||ialex.w...@gmail.com
 Resolution||DUPLICATE

--- Comment #1 from Alexandre Emsenhuber [IAlex] ialex.w...@gmail.com 
2012-08-10 09:28:30 UTC ---


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

-- 
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 13627] The move reason field should be one line only

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=13627

Alexandre Emsenhuber [IAlex] ialex.w...@gmail.com changed:

   What|Removed |Added

 CC||to.aru.shiroi.n...@gmail.co
   ||m

--- Comment #18 from Alexandre Emsenhuber [IAlex] ialex.w...@gmail.com 
2012-08-10 09:28:30 UTC ---
*** Bug 39215 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 39090] Curation Toolbar Deletion Tag Wizard: Additional Requirements

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39090

Heather Walls hwa...@wikimedia.org changed:

   What|Removed |Added

 CC||hwa...@wikimedia.org

--- Comment #5 from Heather Walls hwa...@wikimedia.org 2012-08-10 09:30:21 
UTC ---
Choosing PROD (Proposed Deletion (Living People)) from the toolbar results in
an error:

This template must be substituted. Replace {{Prod blp|reason}} with
{{subst:Prod blp|reason}}.

-- 
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 39217] Parsoid: components in bugzilla mis-spelled

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39217

Andre Klapper a9016...@gmx.de changed:

   What|Removed |Added

 CC||a9016...@gmx.de

--- Comment #1 from Andre Klapper a9016...@gmx.de 2012-08-10 09:51:00 UTC ---
https://bugzilla.wikimedia.org/describecomponents.cgi?product=Parsoid

What exactly is misspelled? Missing capitalization? Tokeniser vs Tokenizer in
the description? Rather unclear from this report...

-- 
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 16306] Allow user to specify block settings from CU form

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16306

--- Comment #4 from Marco Aurelio maure...@gmx.es 2012-08-10 10:05:33 UTC ---
Related: bug 39213

-- 
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 39072] Add AWB to list of products

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39072

Andre Klapper a9016...@gmx.de changed:

   What|Removed |Added

 CC||a9016...@gmx.de

--- Comment #1 from Andre Klapper a9016...@gmx.de 2012-08-10 10:06:29 UTC ---
Hi Marios,
that means that both 
https://en.wikipedia.org/wiki/Wikipedia_talk:AutoWikiBrowser/Bugs  and
https://en.wikipedia.org/wiki/Wikipedia_talk:AutoWikiBrowser/Feature_requests
would be obsoleted by using bugzilla.wikimedia.org instead?

Out of curiosity, do you plan to manually copy existing tickets to Bugzilla?

For the theoretical case of a future reorganization of products in this
Bugzilla, where would you add AWB in the section Proposed products on 
https://www.mediawiki.org/wiki/Requests_for_comment/Bugzilla_taxonomy ?

-- 
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 39145] Remove the nousekeys parameter from the API

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39145

jeb...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

-- 
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 24482] Checkuser mass blocker should block e-mail by default

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24482

Marco Aurelio maure...@gmx.es changed:

   What|Removed |Added

 CC||maure...@gmx.es

--- Comment #3 from Marco Aurelio maure...@gmx.es 2012-08-10 10:07:19 UTC ---
Related: bug 39213

-- 
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 24894] CheckUser mass blocker unexpectedly blocks talk page access

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24894

Marco Aurelio maure...@gmx.es changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #5 from Marco Aurelio maure...@gmx.es 2012-08-10 10:19:48 UTC ---
This doesn't seem to be happening again. Reopen if you do encounter further
issues. Regarding customizable block options please see bug 39213 and bug
16306.

-- 
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 39140] wbgetitems to return revid (2)

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39140

jeb...@gmail.com changed:

   What|Removed |Added

 CC||jeb...@gmail.com

--- Comment #2 from jeb...@gmail.com 2012-08-10 10:25:45 UTC ---
This seems to be called lastrevid in the rest of the API, using this name to
be consistent. Can't see any pros and cons in any direction, except for being
consistent.

-- 
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 39072] Add AWB to list of products

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39072

--- Comment #2 from Marios Magioladitis magioladi...@gmail.com 2012-08-10 
10:27:57 UTC ---
Yes. I think the best strategy is to obsolete the existing lists and change the
code so that the bugs are uploaded in Bugzilla after the person who reports
creates an account.

I could copy the old bugs manually.

-- 
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 37840] ProofreadPage extension should provide css

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37840

Tpt thoma...@hotmail.fr changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||thoma...@hotmail.fr
 AssignedTo|wikibugs-l@lists.wikimedia. |thoma...@hotmail.fr
   |org |

--- Comment #1 from Tpt thoma...@hotmail.fr 2012-08-10 10:30:54 UTC ---
Patch push to gerrit : https://gerrit.wikimedia.org/r/#/c/18460/

-- 
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 18826] PNG cannot display thumbnails if the original over 12.5 megapixels

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=18826

Marco maic...@yahoo.com changed:

   What|Removed |Added

 CC||maic...@yahoo.com

--- Comment #10 from Marco maic...@yahoo.com 2012-08-10 10:36:42 UTC ---
I think this is a dupl. of Bug #9497 !?

-- 
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 23343] Allow blocking open proxies based on X-Forwarded-For header

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=23343

Marco Aurelio maure...@gmx.es changed:

   What|Removed |Added

 CC||billinghu...@gmail.com,
   ||maure...@gmx.es

--- Comment #12 from Marco Aurelio maure...@gmx.es 2012-08-10 10:38:37 UTC ---
I do support being able to block XFF headers.

Admins  CUs know that many vandals and spammers abuse open proxies to abuse
our projects. Some of them are transparent so we know their real range but
since they use proxy, blocking the underlying *real* range does no effect as
they're editting through the proxy, which can be changed any time they wish.

We can start blocking random proxys but that's mostly wasting our time. There
are more than enough open proxies in the web. So the abuse continues.

Providing us such a feature would be very good and time-saving.

MediaWiki software perhaps should also check edits against and OP list (dayly
updated automatically) and if matched, prevent 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 37633] Add an edit link to the languages (3)

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37633

--- Comment #1 from denny vrandecic denny.vrande...@wikimedia.de 2012-08-10 
11:07:05 UTC ---
See also http://www.mediawiki.org/wiki/Extension:Interlanguage/WMF_Design_Pass

-- 
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 39221] New: Inconsistent state within the internal storage backends

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39221

   Web browser: ---
 Bug #: 39221
   Summary: Inconsistent state within the internal storage
backends
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Media storage
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: yan...@gmail.com
CC: bhartsho...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


These images are not available. When trying to revert to a previous version,
the following message appears: The file
mwstore://local-multiwrite/local-public/archive/e/e7/20120802104424!Begbroke_Church_-_geograph.org.uk_-_1386361.jpg
is in an inconsistent state within the internal storage backends

Same problem with the following images:
http://commons.wikimedia.org/wiki/File:St_Tudno%27s_Church_from_the_Lych_Gate_-_geograph.org.uk_-_1419145.jpg
http://commons.wikimedia.org/wiki/File:B%C3%A9thancourt-en-Valois_(Oise).jpg
http://commons.wikimedia.org/wiki/File:Iglesia_de_San_Miguel_(Fuentespina)_-_1.jpg
http://commons.wikimedia.org/wiki/File:Lezaeta.jpg
http://commons.wikimedia.org/wiki/File:M%C3%A5b%C3%B8_bru.jpg
http://commons.wikimedia.org/wiki/File:Vibrator_Delight.JPG
http://commons.wikimedia.org/wiki/File:360%E5%BA%A6%E5%85%A8%E6%96%B9%E4%BD%8D%E3%83%91%E3%83%8E%E3%83%A9%E3%83%9E%E5%86%99%E7%9C%9F.jpg

See
http://commons.wikimedia.org/wiki/Commons:Village_pump#Image_scaler_problems

-- 
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 38696] Allow users to scroll to the next region

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38696

Daniel Werner danwe...@web.de changed:

   What|Removed |Added

 CC||danwe...@web.de
   Severity|normal  |enhancement

--- Comment #1 from Daniel Werner danwe...@web.de 2012-08-10 11:18:54 UTC ---
So if you are in Europe/Middle East/Africa and you reach the bottom, you
automatically jump to Asia/Australia/Pacific and the scrollbar is at the top
again?
I think this could be funny if you want a language at the bottom. Perhaps a
button at the bottom would be more sufficient.

-- 
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 26342] Tutorial language should use the usual language fallback mechanisms

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26342

Liangent liang...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||liang...@gmail.com

--- Comment #9 from Liangent liang...@gmail.com 2012-08-10 11:21:52 UTC ---
gerrit 18461

-- 
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 39222] New: In Worldwide, scrolling shouldn't remove the focus from Worldwide

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39222

   Web browser: ---
 Bug #: 39222
   Summary: In Worldwide, scrolling shouldn't remove the focus
from Worldwide
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: UniversalLanguageSelector
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: danwe...@web.de
CC: aloli...@gmail.com, amir.ahar...@mail.huji.ac.il,
niklas.laxst...@gmail.com, pgi...@wikimedia.org,
s.mazel...@xs4all.nl, santhosh.thottin...@gmail.com,
srik@gmail.com
Classification: Unclassified
   Mobile Platform: ---


When going to Worldwide and then scrolling, the focus will automatically
shifted to another area, depending on your position in the view. This is nice,
but it shouldn't remove the blue focus from Worldwide and perhaps focus the
other area in another colour instead.

-- 
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 39222] In Worldwide, scrolling shouldn't remove the focus from Worldwide

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39222

Srikanth Logic srik@gmail.com changed:

   What|Removed |Added

   Keywords||design
   Priority|Unprioritized   |Normal
 CC||arun.plane...@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 39140] wbgetitems to return revid (2)

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39140

--- Comment #3 from jeb...@gmail.com 2012-08-10 11:48:31 UTC ---
Included as default if props are not redefined, and will then be added together
with a few other bits of information. This is basically the same as the
ordinary query module is returning. The field revid is called lastrevid to
be consistent with the this module.

https://gerrit.wikimedia.org/r/18463

Note that the ordinary id for the item is returned unconditionally as it should
be possible to use props= to create a lightweight query. It could be argued
that lastrevid should also be returned unconditionally.

-- 
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 39223] New: Clicking Worldwide after clicking some other area first doesn't show all languages

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39223

   Web browser: ---
 Bug #: 39223
   Summary: Clicking Worldwide after clicking some other area
first doesn't show all languages
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: Unprioritized
 Component: UniversalLanguageSelector
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: danwe...@web.de
CC: aloli...@gmail.com, amir.ahar...@mail.huji.ac.il,
niklas.laxst...@gmail.com, pgi...@wikimedia.org,
s.mazel...@xs4all.nl, santhosh.thottin...@gmail.com,
srik@gmail.com
Classification: Unclassified
   Mobile Platform: ---


I open the ULS, click on Asia, then on Worldwide, I only get 13 languages.
Tested in FF and Opera, version I49351f62

-- 
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 39224] New: Scrolling in languages when one of the three areas is selected makes the selection jump

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39224

   Web browser: ---
 Bug #: 39224
   Summary: Scrolling in languages when one of the three areas is
selected makes the selection jump
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: UniversalLanguageSelector
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: danwe...@web.de
CC: aloli...@gmail.com, amir.ahar...@mail.huji.ac.il,
niklas.laxst...@gmail.com, pgi...@wikimedia.org,
s.mazel...@xs4all.nl, santhosh.thottin...@gmail.com,
srik@gmail.com
Classification: Unclassified
   Mobile Platform: ---


When selecting one area, e.g. Europe, then scrolling down, the selection above
sometimes changes to other areas even though the view still shows Europe.
Tested in FF and with I49351f62

-- 
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 24228] Memory problem with large progressive jpegs (on Commons and other wikis)

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24228

--- Comment #6 from Bawolff bawolff...@gmail.com 2012-08-10 12:12:53 UTC ---
We should perhaps keep track of if a jpeg is progressive, and not give
progressive jpeg's the exemption to the max image size to scale limit that
they currently enjoy.

-- 
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 38999] Edit toolbar link tool shows Page exists for a non-existing page

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38999

Eran Roz en...@walla.co.il changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||en...@walla.co.il
 Resolution||DUPLICATE

--- Comment #2 from Eran Roz en...@walla.co.il 2012-08-10 12:20:11 UTC ---


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

-- 
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 38820] [Regression] Link dialog flags all pages as existing and breaks on invalid titles

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38820

Eran Roz en...@walla.co.il changed:

   What|Removed |Added

 CC||vss...@gmail.com

--- Comment #2 from Eran Roz en...@walla.co.il 2012-08-10 12:20:11 UTC ---
*** Bug 38999 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 39223] Clicking Worldwide after clicking some other area first doesn't show all languages

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39223

--- Comment #1 from Srikanth Logic srik@gmail.com 2012-08-10 12:46:18 UTC 
---
This is correct. Worldwide is supposed to show only those languages which don't
have specific geographic region attached to it. 

I understand that meant something different for you(may be you expected every
language). Thanks for reporting.

-- 
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 38696] Allow users to scroll to the next region

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38696

--- Comment #2 from Pau Giner pgi...@wikimedia.org 2012-08-10 13:01:25 UTC ---
Daniel, there is not suposed to be a jump just continue scrolling. The jump
only happens when you click on a map region.

I'll try to clarify this. For example, you click on Europe/ME/Africa and you
got the whole world list in the following order: Europe/ME/Africa, Asia,
Worldwide, America. So you can keep scrolling. 

Whether Asia, Worldwide and America regions are all loaded in that order
when the user clicks on the region or they are dynamically loaded as the user
scroll is an implementation decision. But the user should perceive the
scrolling as continuous without any jump (except when clicking on the map).

-- 
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 39225] New: #babel does not add a page to User-lang category

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39225

   Web browser: ---
 Bug #: 39225
   Summary: #babel does not add a page to User-lang category
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Babel
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: an...@mif.pg.gda.pl
CC: asha...@wikimedia.org, s.mazel...@xs4all.nl,
srik@gmail.com
Classification: Unclassified
   Mobile Platform: ---


{{#babel:en}} does not add a page to the User-pl category on plwikisource
(Mediawiki 1.20wmf9).

It works OK on plwiki (Mediawiki 1.20wmf8) and frwikisource (also Mediawiki
1.20wmf9)

Babel 1.7.4 everywhere.

-- 
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 39226] New: Special:Articles is blank

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39226

   Web browser: ---
 Bug #: 39226
   Summary: Special:Articles is blank
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: EducationProgram
AssignedTo: jeroen_ded...@yahoo.com
ReportedBy: rages...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


The Articles (Education Program) special page doesn't display any content:
http://test2.wikipedia.org/wiki/Special:Articles

-- 
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 39225] #babel does not add a page to User-lang category

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39225

Amir E. Aharoni amir.ahar...@mail.huji.ac.il changed:

   What|Removed |Added

 CC||amir.ahar...@mail.huji.ac.i
   ||l, benap...@gmail.com,
   ||wikimedia.b...@snowolf.eu
  Component|Babel   |Site configuration
Product|MediaWiki extensions|Wikimedia

-- 
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 39225] #babel does not add a page to User-lang category

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39225

Amir E. Aharoni amir.ahar...@mail.huji.ac.il changed:

   What|Removed |Added

   Keywords||shell

--- Comment #1 from Amir E. Aharoni amir.ahar...@mail.huji.ac.il 2012-08-10 
13:21:28 UTC ---
It probably needs configuration of relevant variables, such as
$wgBabelCategoryNames.

-- 
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 39205] Special:OnlineAmbassadors gives internal error message

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39205

--- Comment #2 from Sage Ross rages...@gmail.com 2012-08-10 13:21:48 UTC ---
Same for Manage my courses:
http://test2.wikipedia.org/wiki/Special:ManageCourses

-- 
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 39226] Special:Articles is blank

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39226

Sam Reed (reedy) s...@reedyboy.net changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE

--- Comment #1 from Sam Reed (reedy) s...@reedyboy.net 2012-08-10 13:22:44 
UTC ---


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

-- 
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 37595] Special:Articles should at least have a message on it

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37595

Sam Reed (reedy) s...@reedyboy.net changed:

   What|Removed |Added

 CC||rages...@gmail.com

--- Comment #3 from Sam Reed (reedy) s...@reedyboy.net 2012-08-10 13:22:44 
UTC ---
*** Bug 39226 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 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 37595] Special:Articles should at least have a message on it

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37595

--- Comment #4 from Sage Ross rages...@gmail.com 2012-08-10 13:25:40 UTC ---
Under what conditions does this page display content? There's at least one
class with one student who has made edits to an assigned article right now on
test2. But it still does not show anything.

-- 
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 39206] Add portal namespace at sewiki

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39206

Sam Reed (reedy) s...@reedyboy.net changed:

   What|Removed |Added

   Severity|normal  |enhancement

-- 
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 39223] Clicking Worldwide after clicking some other area first doesn't show all languages

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39223

--- Comment #2 from Daniel Werner danwe...@web.de 2012-08-10 13:38:51 UTC ---
I understand. Not sure how this could be communicated more clearly.

The confusing thing about this might just be, that the first time you open the
dialogue, you get ALL languages. But after you clicked one of the sections
above, you can't go back to the view where you see all languages. Perhaps add
another section next to Worldwide, All? Or simply make Worldwide the
start section instead of displaying all languages in a state you can't go back
to.

-- 
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 39227] New: action=mobileview override parameter is not described

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39227

   Web browser: ---
 Bug #: 39227
   Summary: action=mobileview override parameter is not described
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: trivial
  Priority: Unprioritized
 Component: MobileFrontend
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: s...@reedyboy.net
CC: aricha...@wikimedia.org, prei...@wikimedia.org,
tf...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


The override parameter has no description

-- 
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 39156] Update jquery.tablesorter to work with jQuery 1.8

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39156

--- Comment #4 from Sam Reed (reedy) s...@reedyboy.net 2012-08-10 13:55:34 
UTC ---
1.8 is out, but luckily this had already been fixed...
http://bugs.jquery.com/ticket/12153

-- 
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 39156] Update jquery.tablesorter to work with jQuery 1.8

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39156

Sam Reed (reedy) s...@reedyboy.net changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #5 from Sam Reed (reedy) s...@reedyboy.net 2012-08-10 14:00:36 
UTC ---
Confirmed test is no longer broken on 1.8

-- 
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 39228] New: mediawiki.api qunit test failures

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39228

   Web browser: ---
 Bug #: 39228
   Summary: mediawiki.api qunit test failures
   Product: MediaWiki
   Version: 1.20-git
  Platform: All
OS/Version: All
Status: NEW
  Keywords: javascript
  Severity: normal
  Priority: Unprioritized
 Component: Unit tests
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: s...@reedyboy.net
CC: has...@free.fr, krinklem...@gmail.com,
m...@everybody.org
Classification: Unclassified
   Mobile Platform: ---


mediawiki.api: Basic functionality (1, 1, 2)Rerun
Expected 3 assertions, but 1 were run
Source: 
at F.QUnit.asyncTest
(http://192.168.0.190/w/resources/jquery/jquery.qunit.js:316:9)

mediawiki.api: Deprecated callback methods (1, 1, 2)Rerun
Expected 3 assertions, but 1 were run
Source: 
at F.QUnit.asyncTest
(http://192.168.0.190/w/resources/jquery/jquery.qunit.js:316:9)

-- 
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 39229] New: mediawiki.user getGroups qunit tests fail

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39229

   Web browser: ---
 Bug #: 39229
   Summary: mediawiki.user getGroups qunit tests fail
   Product: MediaWiki
   Version: 1.20-git
  Platform: All
OS/Version: All
Status: NEW
  Keywords: javascript
  Severity: normal
  Priority: Unprioritized
 Component: Unit tests
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: s...@reedyboy.net
CC: has...@free.fr, krinklem...@gmail.com,
m...@everybody.org
Classification: Unclassified
   Mobile Platform: ---


mediawiki.user: getGroups (2, 1, 3)Rerun
* is the first group
Expected: 
*
Result: 
undefined
Diff: 
* undefined 
Source: 
at Object.anonymous
(http://192.168.0.190/w/tests/qunit/suites/resources/mediawiki/mediawiki.user.test.js:40:10)
at fire
(http://192.168.0.190/w/load.php?debug=truelang=en-gbmodules=jquery%2Cmediawikionly=scriptsskin=vectorversion=20120810T140017Z:1075:30)
at Object.self.fireWith
(http://192.168.0.190/w/load.php?debug=truelang=en-gbmodules=jquery%2Cmediawikionly=scriptsskin=vectorversion=20120810T140017Z:1193:7)
at Object.self.fire
(http://192.168.0.190/w/load.php?debug=truelang=en-gbmodules=jquery%2Cmediawikionly=scriptsskin=vectorversion=20120810T140017Z:1200:10)
at Object.anonymous
(http://192.168.0.190/w/resources/mediawiki/mediawiki.user.js:43:22)
at fire
(http://192.168.0.190/w/load.php?debug=truelang=en-gbmodules=jquery%2Cmediawikionly=scriptsskin=vectorversion=20120810T140017Z:1075:30)
at Object.self.fireWith
(http://192.168.0.190/w/load.php?debug=truelang=en-gbmodules=jquery%2Cmediawikionly=scriptsskin=vectorversion=20120810T140017Z:1193:7)
Array contains all groups, just like wgUserGroups
Expected: 
[
  *,
  autoconfirmed,
  bureaucrat,
  checkuser,
  svnadmins,
  sysop,
  user
]
Result: 
[]
Diff: 
[
  *,
  autoconfirmed,
  bureaucrat,
  checkuser,
  svnadmins,
  sysop,
  user
] [] 
Source: 
at Object.anonymous
(http://192.168.0.190/w/tests/qunit/suites/resources/mediawiki/mediawiki.user.test.js:43:10)
at fire
(http://192.168.0.190/w/load.php?debug=truelang=en-gbmodules=jquery%2Cmediawikionly=scriptsskin=vectorversion=20120810T140017Z:1075:30)
at Object.self.fireWith
(http://192.168.0.190/w/load.php?debug=truelang=en-gbmodules=jquery%2Cmediawikionly=scriptsskin=vectorversion=20120810T140017Z:1193:7)
at Object.self.fire
(http://192.168.0.190/w/load.php?debug=truelang=en-gbmodules=jquery%2Cmediawikionly=scriptsskin=vectorversion=20120810T140017Z:1200:10)
at Object.anonymous
(http://192.168.0.190/w/resources/mediawiki/mediawiki.user.js:43:22)
at fire
(http://192.168.0.190/w/load.php?debug=truelang=en-gbmodules=jquery%2Cmediawikionly=scriptsskin=vectorversion=20120810T140017Z:1075:30)
at Object.self.fireWith
(http://192.168.0.190/w/load.php?debug=truelang=en-gbmodules=jquery%2Cmediawikionly=scriptsskin=vectorversion=20120810T140017Z:1193:7)

-- 
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 12701] (last change) in new messages box should link to combined diff of all changes since last visit

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=12701

Liangent liang...@gmail.com changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 CC||liang...@gmail.com
 Resolution||FIXED

--- Comment #34 from Liangent liang...@gmail.com 2012-08-10 14:33:29 UTC ---
Already merged.

-- 
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 38638] Interface messages needing rewording or documentation and other issues with existing messages (tracking)

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38638

Bug 38638 depends on bug 12701, which changed state.

Bug 12701 Summary: (last change) in new messages box should link to combined 
diff of all changes since last visit
https://bugzilla.wikimedia.org/show_bug.cgi?id=12701

   What|Old Value   |New Value

 Status|ASSIGNED|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 16012] Schema change rotation script (tracking)

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16012

Bug 16012 depends on bug 12701, which changed state.

Bug 12701 Summary: (last change) in new messages box should link to combined 
diff of all changes since last visit
https://bugzilla.wikimedia.org/show_bug.cgi?id=12701

   What|Old Value   |New Value

 Status|ASSIGNED|RESOLVED
 Resolution||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 39230] New: Autocompletion does not get cleared on region change

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39230

   Web browser: ---
 Bug #: 39230
   Summary: Autocompletion does not get cleared on region change
   Product: MediaWiki extensions
   Version: master
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: UniversalLanguageSelector
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: pgi...@wikimedia.org
CC: aloli...@gmail.com, amir.ahar...@mail.huji.ac.il,
niklas.laxst...@gmail.com, pgi...@wikimedia.org,
s.mazel...@xs4all.nl, santhosh.thottin...@gmail.com,
srik@gmail.com
Classification: Unclassified
   Mobile Platform: ---


When I write part of a language name with an autocompletion suggestion (e.g.,
Eng) and I change to a different region using the map, the autocompletion
suggestion is not cleared.

-- 
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 39230] Autocompletion does not get cleared on region change

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39230

Pau Giner pgi...@wikimedia.org changed:

   What|Removed |Added

   Keywords||i18n

-- 
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 39231] New: Use full area names instead of shorthands

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39231

   Web browser: ---
 Bug #: 39231
   Summary: Use full area names instead of shorthands
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: UniversalLanguageSelector
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: danwe...@web.de
CC: aloli...@gmail.com, amir.ahar...@mail.huji.ac.il,
niklas.laxst...@gmail.com, pgi...@wikimedia.org,
s.mazel...@xs4all.nl, santhosh.thottin...@gmail.com,
srik@gmail.com
Classification: Unclassified
   Mobile Platform: ---


Instead of WW, EU, SA, AF and so on, the full names of areas could be
used in the scrollable view of ULS. I don't see a point in not doing this,
there certainly is enough space and one doesn't have to think about what that
shorthand could mean.

-- 
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 35987] Ambiguous Password: header on Special:ChangeEmail

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35987

Liangent liang...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||liang...@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 39231] Use full area names instead of shorthands

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39231

--- Comment #1 from Niklas Laxström niklas.laxst...@gmail.com 2012-08-10 
14:51:15 UTC ---
Proper labels depends on i18n which depends on project milkshake which we are
working in the coming weeks.

-- 
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 38466] Add link to user page for anonymous user on contribsub message (subtitle of Special:Contributions)

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38466

Liangent liang...@gmail.com changed:

   What|Removed |Added

 CC||liang...@gmail.com

--- Comment #6 from Liangent liang...@gmail.com 2012-08-10 14:53:20 UTC ---
(In reply to comment #5)
 The difference is, that the anonymous user name (IP address) is everywhere a
 link except on the contributions page. The user page and the talk page is
 consistent between anonymous users and normal users. But the contributions 
 page
 is not consistent between anonymous users and normal users. The only way to
 reach the user page of anonymous users is click on the talk page and then on
 the user page. Then you are an the contributions page of a anonymous user you
 can not even see that a user page exists. You first have to click to the
 possible not existing talk page to see that a user page exist.

The anonymous user name (IP address) is everywhere a link ***to the user's
contributions page*** and on the contributions page it should be a selflink
which should be shown as plain text.

-- 
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 39201] SpecialItemByLabel should/should not redirect to the ordinary item page

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39201

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 CC||daniel.kinz...@wikimedia.de

--- Comment #3 from Daniel Kinzler daniel.kinz...@wikimedia.de 2012-08-10 
14:59:28 UTC ---
(In reply to comment #2)
 Could do a redirect to get to the correct page if its only one in the set.

I don't like that. I'd prefer to *always* show a list, even if there is just
one entry (or none).

I would also suggest to always show the input form.

-- 
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 38466] Add link to user page for anonymous user on contribsub message (subtitle of Special:Contributions)

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38466

Nemo_bis federicol...@tiscali.it changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX

--- Comment #7 from Nemo_bis federicol...@tiscali.it 2012-08-10 15:03:40 UTC 
---
Per liangent, this looks like a WONTFIX. Perhaps another (more general) bug
should be filed, asking a solution to make IP user pages more accessible
without proposing a specific (inconsistent) solution.

-- 
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 38638] Interface messages needing rewording or documentation and other issues with existing messages (tracking)

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38638

Bug 38638 depends on bug 38466, which changed state.

Bug 38466 Summary: Add link to user page for anonymous user on contribsub 
message (subtitle of Special:Contributions)
https://bugzilla.wikimedia.org/show_bug.cgi?id=38466

   What|Old Value   |New Value

 Status|NEW |RESOLVED
 Resolution||WONTFIX

-- 
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 39232] New: Incorrect path detection in NoLocalSettings.php

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39232

   Web browser: ---
 Bug #: 39232
   Summary: Incorrect path detection in NoLocalSettings.php
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Installer
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: liang...@gmail.com
CC: innocentkil...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


If any pathinfo is passed in (like /index.php/SOMETHING), the pathinfo part is
misread as a part of path, leading to invalid path
(/SOMETHING/mw-config/index.php).

See also gerrit 18466

-- 
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 39233] New: direction of justtranslated is not set according to the language

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39233

   Web browser: ---
 Bug #: 39233
   Summary: direction of justtranslated is not set according to
the language
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Keywords: i18n
  Severity: normal
  Priority: Unprioritized
 Component: Translate
AssignedTo: niklas.laxst...@gmail.com
ReportedBy: amir.ahar...@mail.huji.ac.il
CC: asha...@wikimedia.org, s.mazel...@xs4all.nl,
srik@gmail.com
Blocks: 745
Classification: Unclassified
   Mobile Platform: ---


The justtranslated feature in quickedit.js is very nice, except it doesn't
apply the right direction to the result.

I tried to fix it myself, but couldn't find an easy way to get the direction
from the language code. Apparently, there is not obvious way to do something
like Language::factory() and Language::getDir() in MediaWiki's JavaScript, but
maybe I missed something.

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

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=745

Amir E. Aharoni amir.ahar...@mail.huji.ac.il changed:

   What|Removed |Added

 Depends on||39233

-- 
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 39234] New: no courses are listed in the current courses column of Special:Students

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39234

   Web browser: ---
 Bug #: 39234
   Summary: no courses are listed in the current courses column
of Special:Students
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: EducationProgram
AssignedTo: jeroen_ded...@yahoo.com
ReportedBy: rages...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


The Special:Students page has a column for current courses. It doesn't seem to
be working.

As a test case, User:Sageross is signed up as a student in two current courses,
which appear in the student profile:
http://test2.wikipedia.org/wiki/Special:Student/Sageross

However, nothing shows up in the courses column at
http://test2.wikipedia.org/wiki/Special:Students

-- 
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 38388] MediaWiki:Config-support-info is confusing, needs rewording

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38388

--- Comment #4 from Nemo_bis federicol...@tiscali.it 2012-08-10 15:25:49 UTC 
---
How about the above vs. below confusion?

-- 
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 38388] MediaWiki:Config-support-info is confusing, needs rewording

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38388

Liangent liang...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||liang...@gmail.com

--- Comment #3 from Liangent liang...@gmail.com 2012-08-10 15:19:46 UTC ---
gerrit 18471

-- 
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 39201] SpecialItemByLabel should/should not redirect to the ordinary item page

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39201

--- Comment #4 from jeb...@gmail.com 2012-08-10 15:47:23 UTC ---
You and Denny can discuss that! :D

-- 
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 39233] direction of justtranslated is not set according to the language

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39233

--- Comment #1 from Amir E. Aharoni amir.ahar...@mail.huji.ac.il 2012-08-10 
15:48:02 UTC ---
A simplistic fix here:
https://gerrit.wikimedia.org/r/#/c/18470/

It just applies dir=auto, but should apply proper direction.

If there's no dynamic way to find the direction, maybe it can be taken from the
translating textarea somehow, but I'm not sure how.

-- 
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 38388] MediaWiki:Config-support-info is confusing, needs rewording

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38388

--- Comment #5 from Liangent liang...@gmail.com 2012-08-10 15:58:11 UTC ---
(In reply to comment #4)
 How about the above vs. below confusion?

Obviously users get confused because they assume MediaWiki puts the list to let
users choose in at the place of $1.

-- 
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 39099] PHP Warning: Invalid argument supplied for foreach() in /www/w/includes/Uri.php on line 262

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39099

Tyler Romeo tylerro...@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 39235] New: substing issue

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39235

   Web browser: ---
 Bug #: 39235
   Summary: substing issue
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: PageTriage
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: oke...@wikimedia.org
CC: fflo...@wikimedia.org, rkald...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


The BLP-PROD tag isn't being correctly substituted in.

-- 
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 39235] substing issue

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39235

--- Comment #1 from Oliver Keyes oke...@wikimedia.org 2012-08-10 16:26:43 UTC 
---
See http://en.wikipedia.org/wiki/Wikipedia_talk:Page_Curation#BLP_PROD_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 39236] New: Some valid Email addresses cannot be accepted

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39236

   Web browser: ---
 Bug #: 39236
   Summary: Some valid Email addresses cannot be accepted
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: liang...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


Either by validating JavaScript and PHP. Check the validator against [[Email
address#Examples]]

-- 
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 39236] Some valid Email addresses cannot be accepted

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39236

--- Comment #1 from Liangent liang...@gmail.com 2012-08-10 16:29:07 UTC ---
link? [[Email address#Examples]]

-- 
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 39237] New: Bugzilla's autowrap breaks wikilinks

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39237

   Web browser: ---
 Bug #: 39237
   Summary: Bugzilla's autowrap breaks wikilinks
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Bugzilla
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: liang...@gmail.com
CC: s...@reedyboy.net, thehelpfulonew...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


See bug 39236. I typed comment 0 in a single line.

-- 
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 39236] Some valid Email addresses cannot be accepted

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39236

--- Comment #2 from Liangent liang...@gmail.com 2012-08-10 16:31:54 UTC ---
Specifically these addresses are in problem:

user@[IPv6:2001:db8:1ff::a0b:dbd0]
much.more unusual@example.com
very.unusu...@.unusual.com@example.com
()[]:,;@\\\!#$%'*+-/=?^_`{}| ~  ? ^_`{}|~.a@example.org
@example.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 39238] New: PROD copy change

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39238

   Web browser: ---
 Bug #: 39238
   Summary: PROD copy change
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: PageTriage
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: oke...@wikimedia.org
CC: fflo...@wikimedia.org, rkald...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


Alter Why do you think this page should be deleted? to please explain why
this article should be deleted, and provide links to the relevant policies
wherever possible to avoid subjectivity.

-- 
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 39231] Use full area names instead of shorthands

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39231

--- Comment #2 from Siebrand s.mazel...@xs4all.nl 2012-08-10 16:34:08 UTC ---
Ref: https://www.mediawiki.org/wiki/Project_Milkshake

-- 
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 39239] New: Some invalid Email addresses are accepted

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39239

   Web browser: ---
 Bug #: 39239
   Summary: Some invalid Email addresses are accepted
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: liang...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


See [[Email_address#Examples]]:

a...@example.com
abc.@example.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 39239] Some invalid Email addresses are accepted

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39239

Liangent liang...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=39236

-- 
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 39236] Some valid Email addresses cannot be accepted

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39236

Liangent liang...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=39239

-- 
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 39217] Parsoid: components in bugzilla mis-spelled

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39217

--- Comment #2 from Gabriel Wicke gwi...@wikimedia.org 2012-08-10 16:52:48 
UTC ---
s/Tokeniser/Tokenizer/ and s/Serialiser/Serializer/. This is the canonical
spelling in computer science (see refs on obscure website) and - more
importantly - the code.

-- 
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 39216] Parsoid: Over-eager wikitext escaping introduces dirty diff for dds

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39216

Gabriel Wicke gwi...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 AssignedTo|gwi...@wikimedia.org|ssas...@wikimedia.org

-- 
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 38170] [ReplaceText] Incorrect error: You must select at least one namespace.

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38170

Jerry Pank jer...@connected-uk.com changed:

   What|Removed |Added

 CC||jer...@connected-uk.com

--- Comment #3 from Jerry Pank jer...@connected-uk.com 2012-08-10 16:54:45 
UTC ---
Have the same problem - no solution but maybe a few pointers:

MediaWiki1.18.1
PHP5.3.3 (apache2handler)
MySQL5.1.61
Replace Text (Version 0.9.1)

Other installed extensions here:
http://www.cookipedia.co.uk/recipes_wiki/Special:Version

Replace text was working - now fails with You must select at least one
namespaceerror on a huge replace (2000 pages)

The namespace checkbox info is not being passed by Javascript hence unchecked
ns error.

This is the javascript error generated 

Timestamp: 10/08/2012 17:29:40
Error: ReferenceError: mwToggleSearchCheckboxes is not defined
Source File: http://www.cookipedia.co.uk/recipes_wiki/Special:ReplaceText

From the system error log I see:

[Fri Aug 10 17:29:38 2012] [error] [client nnn.nnn.nnn.nnn] File does not
exist:
/home/httpd/vhosts/cookipedia.co.uk/httpdocs/wiki/skins/common/search.js,
referer: http://www.cookipedia.co.uk/recipes_wiki/Special:ReplaceText

probably called from line 330 SpecialReplaceText.php : 

// add javascript specific to special:search
$wgOut-addScriptFile( 'search.js' );

No search.js anywhere in my wiki dir tree
No search.js in a fresh test install of the mw repo
No search.js in the ReplaceText repo

I'm not sure where to look now?

-- 
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 36798] The countries drop-down in Special:BannerAllocation is not ordered in the user's language

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36798

Peter Gehres (WMF) pgeh...@wikimedia.org changed:

   What|Removed |Added

 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 39235] substing issue

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39235

Ryan Kaldari rkald...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |High
   Severity|normal  |major

-- 
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 39235] substing issue

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39235

Ryan Kaldari rkald...@wikimedia.org changed:

   What|Removed |Added

 AssignedTo|wikibugs-l@lists.wikimedia. |bs...@wikimedia.org
   |org |
   Severity|major   |normal

--- Comment #2 from Ryan Kaldari rkald...@wikimedia.org 2012-08-10 17:19:09 
UTC ---
How much of a problem is this? Should it delay the announcement at
Special:NewPages?

-- 
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 12701] (last change) in new messages box should link to combined diff of all changes since last visit

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=12701

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

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||s.mazel...@xs4all.nl
 Resolution|FIXED   |

--- Comment #35 from Siebrand s.mazel...@xs4all.nl 2012-08-10 17:19:27 UTC ---
Looks like I missed this patch set before it was merged. The current solution
suffers heavily from patchwork disease. It's bound to be pretty much impossible
to translate in some languages.

Could this be rewritten to use only 2 messages instead of the current 4.

Current:
# You have $1 from {{PLURAL:$3|another user|$3 users}} ($2).
# You have $1 from many users ($2).
# {{PLURAL:$1|a new message|new messages}}
# last {{PLURAL:$1|change|changes}}

Should be:
# You have [$1 {{PLURAL:$2|a new message|new messages}}] from
{{PLURAL:$3|another user|$3 users}} ([$4 last {{PLURAL:$1|change|changes]}}).
# You have [$1 {{PLURAL:$2|a new message|new messages}}] from many users ([$4
last {{PLURAL:$1|change|changes]}}).

Parameters:
* $1: link to user talk page
* $2: number of talk page edits since last read
* $3: number of unique editors of user talk page since last read
* $4: link to diff for talk page (last visited - to current)

The message probably has to be wrapped in a span so that the external link icon
doesn't pop up.

-- 
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 38638] Interface messages needing rewording or documentation and other issues with existing messages (tracking)

2012-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38638

Bug 38638 depends on bug 12701, which changed state.

Bug 12701 Summary: (last change) in new messages box should link to combined 
diff of all changes since last visit
https://bugzilla.wikimedia.org/show_bug.cgi?id=12701

   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


  1   2   >