[Bug 34205] history (from June 2002, till january 2004) looks lost in Oriya Wikipedia

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34205

Srikant Kedia  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 34205] New: history (from June 2002, till january 2004) looks lost in Oriya Wikipedia

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34205

   Web browser: ---
 Bug #: 34205
   Summary: history (from June 2002, till january 2004) looks lost
in Oriya Wikipedia
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: wikiodis...@gmail.com
Classification: Unclassified


There is a problem in the 1st edit [https://or.wikipedia.org/wiki/?oldid=1],
the history looks lost here. As or.wikipedia was created on June 2002, but it
shows that the 1st edit was done on 29th January 2004. Please check 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 34203] UnknownAction hook problem: the hook must pass the unknown action to the callee and not the value "nosuchaction"

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34203

T. Gries  changed:

   What|Removed |Added

Summary|Unknown page action hook|UnknownAction hook problem:
   |problem: the hook must pass |the hook must pass the
   |the unknown action to the   |unknown action to the
   |callee and not the value|callee and not the value
   |"nosuchaction"  |"nosuchaction"

-- 
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 34202] pls. add Extension:PdfBook to the Bugzilla option list, as this is in MW SVN

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34202

Sam Reed (reedy)  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED
   Severity|normal  |enhancement

--- Comment #1 from Sam Reed (reedy)  2012-02-04 22:36:03 
UTC ---
Done

-- 
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 34203] Unknown page action hook problem: the hook must pass the unknown action to the callee and not the value "nosuchaction"

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34203

--- Comment #2 from T. Gries  2012-02-04 22:11:08 UTC ---
The problem is in Article:getActionName() , which returns 'nosuchaction' but
the UnknownAction hook should be called _before_ an (internally) unknown action
value gets overwritten.

-- 
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 34204] Unable to publish my article

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34204

Sam Reed (reedy)  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID

-- 
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 34203] Unknown page action hook problem: the hook must pass the unknown action to the callee and not the value "nosuchaction"

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34203

--- Comment #1 from T. Gries  2012-02-04 22:03:43 UTC ---
Analysis part:

when using the (admittedly) deprecated, but still present UnknownAction hook,
it returns currently 'nosuchaction' - and Extensions which hooks on an
&action=feed value will fail 

because


in wiki.php getAction() is called, and getActionName() returns $act ==
'nosuchaction' . This overwrites the &action=xyz value the hook should have a
chance to see, instead, it passes 'nosuchaction' to the hook.

wiki.php:

when called with &action=feed (as example; I added a debug output)

480 $act = $this->getAction(); /// $act = 'nosuchaction' and overwriting
our 'feed' value
480awfDebug( "Wiki:performAction:act = $act\n" );
481 
482 $action = Action::factory( $act, $page );
483 if ( $action instanceof Action ) {
484 $action->show();
485 wfProfileOut( __METHOD__ );
486 return;
487 }
488 
488a// the hook sees 'nosuchaction' instead of 'feed'
489 if ( wfRunHooks( 'UnknownAction', array( $act, $page ) ) ) {
490 $output->showErrorPage( 'nosuchaction', 'nosuchactiontext' );
491 }
492 

I am not courageous and competent enough to fix this in this very core part.
Please can anyone of your core developers fix it ?

The debug log proves my analysis:

GET /phase3/index.php?title=Sandbox2&action=feed&feed=rss
Wiki:performAction:act = nosuchaction <<< wrong; should be 'feed'

-- 
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 34204] New: Unable to publish my article

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34204

   Web browser: ---
 Bug #: 34204
   Summary: Unable to publish my article
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Installation
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: dxlara...@gmail.com
CC: innocentkil...@gmail.com
Classification: Unclassified


I have written an article and saved it but it will not post. 

http://en.wikipedia.org/wiki/User:Dixie_Aragon/Conscious_baby_boom

I followed all of the instructions and it will not post - it is stuck in User
Format.  Can you assist me with this problem so my article can post, 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 34161] WikiArticleFeeds not working with 1.19-svn

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34161

T. Gries  changed:

   What|Removed |Added

 AssignedTo|wikibugs-l@lists.wikimedia. |m...@tgries.de
   |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 34203] Unknown page action hook problem: the hook must pass the unknown action to the callee and not the value "nosuchaction"

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34203

T. Gries  changed:

   What|Removed |Added

 Blocks||34161

-- 
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 34161] WikiArticleFeeds not working with 1.19-svn

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34161

T. Gries  changed:

   What|Removed |Added

 Depends on||34203

--- Comment #1 from T. Gries  2012-02-04 21:19:57 UTC ---
Problem has been identified, but not finally solved.

Depends on https://bugzilla.wikimedia.org/show_bug.cgi?id=34203
(Unknown page action hook problem: the hook must pass the unknown action to the
callee and not the value "nosuchaction"

-- 
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 34203] Unknown page action hook problem: the hook must pass the unknown action to the callee and not the value "nosuchaction"

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34203

T. Gries  changed:

   What|Removed |Added

URL||https://www.mediawiki.org/w
   ||iki/Extension:RSS

-- 
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 34203] Unknown page action hook problem: the hook must pass the unknown action to the callee and not the value "nosuchaction"

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34203

T. Gries  changed:

   What|Removed |Added

   Priority|Unprioritized   |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 34203] New: Unknown page action hook problem: the hook must pass the unknown action to the callee and not the value "nosuchaction"

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34203

   Web browser: ---
 Bug #: 34203
   Summary: Unknown page action hook problem: the hook must pass
the unknown action to the callee and not the value
"nosuchaction"
   Product: MediaWiki
   Version: 1.19-svn
  Platform: All
OS/Version: All
Status: NEW
  Severity: blocker
  Priority: Unprioritized
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: m...@tgries.de
Classification: Unclassified


I found (at least) in Extension:WikiArticleFeeds the problem, that an url like

&action=feed&feed=atom

calls the hook with value action == nosuchaction .

This is a deviation from previous behavious (I would say, serious).
Pls. correct me, if I am wrong, or can you correct the problem in core ?

-- 
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 33878] HTML dump is missing all images due to new FileBackend code

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=33878

Aaron Schulz  changed:

   What|Removed |Added

 CC||aschulz4...@gmail.com

--- Comment #1 from Aaron Schulz  2012-02-04 21:11:38 
UTC ---
Try testing it after r110703.

-- 
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 34202] New: pls. add Extension:PdfBook to the Bugzilla option list, as this is in MW SVN

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34202

   Web browser: ---
 Bug #: 34202
   Summary: pls. add Extension:PdfBook to the Bugzilla option
list, as this is in MW SVN
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Bugzilla
AssignedTo: mhershber...@wikimedia.org
ReportedBy: m...@tgries.de
CC: innocentkil...@gmail.com, s...@reedyboy.net
Classification: Unclassified


Extension:PdfBook is present in SVN, but not selectable in bugzilla.

I will then add the bugzilla links on
https://www.mediawiki.org/wiki/Extension:PdfBook

-- 
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 34201] words in place names in an RTL script appear in the wrong order on the maps

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34201

Brion Vibber  changed:

   What|Removed |Added

   Keywords||upstream

-- 
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 33545] Adding options to Special:ListUsers (hide permanent and temporary blocks)

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=33545

--- Comment #3 from Bawolff  2012-02-04 19:40:58 UTC ---
(In reply to comment #2)
> Hi,
> 
> I would like to take this as my first bug and attempt to fix it. Kindly give
> some more guidelines as to what needs to be done.
> 
> Thanks,
> Aashish

Awesome!

I'm going to assume you already have a trunk copy of MediaWiki downloaded, and
some knowledge of SQL. (If you don't know anything about SQL this might not be
a good choice for a first bug).

The file you would have to modify is includes/specials/SpecialListusers.php 
You would have to modify UserPager::getPageHeader to add some sort of interface
to trigger the filtering, UserPager::__construct to set some flag to indicate
the filtering is in use, and UserPager::getQueryInfo to actually filter via
blocked status. The last part will probably be the hardest part - you'll have
to change the outer join condition to still join on non-"deleted" blocks (at
least when doing this filtering), change the ipb_deleted condition to be ok
with either 0 or null (since you'd sometimes have it joined on non-deleted
blocks after the change) and add some conds for the actual filtering based on
being blocked.

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

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


[Bug 34166] tracking bug for RTL bugs in the Wikimedia Mobile Android app

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34166

Amir E. Aharoni  changed:

   What|Removed |Added

 Depends on||34201

-- 
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 34201] New: words in place names in an RTL script appear in the wrong order on the maps

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34201

   Web browser: ---
 Bug #: 34201
   Summary: words in place names in an RTL script appear in the
wrong order on the maps
   Product: Wikimedia Mobile
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Keywords: i18n
  Severity: normal
  Priority: Unprioritized
 Component: android
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: amir.ahar...@mail.huji.ac.il
CC: herman.w...@nitobi.com, tf...@wikimedia.org
Blocks: 34166
Classification: Unclassified


Words in place names in an RTL script appear in the wrong order on the maps. It
happens only in long name that span several lines, but this happens quite
often. Each word appears correctly, but the order of the words is something
like this:
סיטי
לייק
סולט

In Latin script it would something like
City
Lake
Salt

This is an upstream bug, reported in http://trac.openstreetmap.org/ticket/1515.

-- 
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 19412] #time parser function can't read local language month names

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19412

--- Comment #12 from Siddhartha Ghai  2012-02-04 
18:04:48 UTC ---
(In reply to comment #10)
> Why don't you pass {{CURRENTMONTHNAME}} and {{CURRENTYEAR}} as different
> parameters?

Well, firstly, I'd have to fix up
http://hi.wikipedia.org/wiki/Template:Multiple_issues to accept two parameters
(this isn't a big deal), then I'd have to fix up Twinkle to pass two parameters
to the template,(big deal for me) and then I'd have to get users who input the
template manually to use two parameters instead of one (really really big
deal). Even after that, I'd still need a date check mechanism for the current
transclusions, (or I'll have to manually fix them). And I find doing all that
stuff much more difficult than creating a template like this.

And this particular format aside, using different parameters doesn't really
solve the problem (as evident by Jayant's example above). I really think a
solution for this should be found before more templates start springing up.

-- 
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 34200] Allow filtering action=sitematrix by language code

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34200

Sam Reed (reedy)  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 34199] Allow filtering action=sitematrix by project code

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34199

Sam Reed (reedy)  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 33907] Please create a Marathi Wikisource

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=33907

--- Comment #18 from Sam Reed (reedy)  2012-02-04 17:37:25 
UTC ---
(In reply to comment #17)
> If the +5.30 is not possible then the UTC time zone will also work.
> 
> Thanks
> 
> Rahul

Have a look at http://php.net/manual/en/timezones.php

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

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


[Bug 33907] Please create a Marathi Wikisource

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=33907

--- Comment #17 from Rahul  2012-02-04 
16:20:25 UTC ---
If the +5.30 is not possible then the UTC time zone will also work.

Thanks

Rahul

-- 
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 33020] page search check box disappers

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=33020

--- Comment #2 from Rahul  2012-02-04 16:18:10 
UTC ---
The check box is available through 
mr.wikipedia.org/wiki/
but not available on
mr.wikipedia.org/w/

Please look in to.

Rahul

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

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=23855

Sam Reed (reedy)  changed:

   What|Removed |Added

 Blocks||34199

-- 
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 34199] Allow filtering action=sitematrix by project code

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34199

Sam Reed (reedy)  changed:

   What|Removed |Added

  Component|API |SiteMatrix
Version|1.18|any
 Depends on||23855
Product|MediaWiki   |MediaWiki extensions

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

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=23855

Sam Reed (reedy)  changed:

   What|Removed |Added

 Depends on||34200

-- 
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 34200] Allow filtering action=sitematrix by language code

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34200

Sam Reed (reedy)  changed:

   What|Removed |Added

  Component|API |SiteMatrix
Version|1.18|any
 Blocks||23855
Product|MediaWiki   |MediaWiki extensions

-- 
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 34200] New: Allow filtering action=sitematrix by language code

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34200

   Web browser: ---
 Bug #: 34200
   Summary: Allow filtering action=sitematrix by language code
   Product: MediaWiki
   Version: 1.18
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: API
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: dann...@email.cz
CC: bryan.tongm...@gmail.com, roan.katt...@gmail.com,
s...@reedyboy.net, soxre...@gmail.com
Classification: Unclassified


Allow filtering action=sitematrix by language code. For instance when user
wants
just the list of all French projects, still has to download the entire matrix.

-- 
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 34199] New: Allow filtering action=sitematrix by project code

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34199

   Web browser: ---
 Bug #: 34199
   Summary: Allow filtering action=sitematrix by project code
   Product: MediaWiki
   Version: 1.18
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: API
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: dann...@email.cz
CC: bryan.tongm...@gmail.com, roan.katt...@gmail.com,
s...@reedyboy.net, soxre...@gmail.com
Classification: Unclassified


Allow filtering action=sitematrix by project code. For instance when user wants
just the list of Wiktionaries, still has to download the entire matrix.

-- 
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 34195] Gadgets stopped working on enwiki beta and commons beta

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34195

Erwin Dokter  changed:

   What|Removed |Added

Summary|Gadgets stopped working on  |Gadgets stopped working on
   |enwiki beta |enwiki beta and commons
   ||beta

--- Comment #2 from Erwin Dokter  2012-02-04 14:33:58 UTC ---
OK, some work, some don't. Those that don't work simply don't have their JS
components not loaded. Popups is broken on Commons, but EditTop works.

-- 
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 34197] Can't save text including the protocol https on wikimania2012, translating it into Korean

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34197

--- Comment #3 from qbphc...@sharklasers.com 2012-02-04 14:29:37 UTC ---
(In reply to comment #1)
> Likely dupe of bug 34182.

Thank you for letting me know the 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 34197] Can't save text including the protocol https on wikimania2012, translating it into Korean

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34197

qbphc...@sharklasers.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE

--- Comment #2 from qbphc...@sharklasers.com 2012-02-04 14:21:31 UTC ---
Aha, I see what the error is. Thank you.

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

-- 
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 34182] Page translation with external link needing CAPTCHA

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34182

qbphc...@sharklasers.com changed:

   What|Removed |Added

 CC||qbphc...@sharklasers.com

--- Comment #4 from qbphc...@sharklasers.com 2012-02-04 14:21:31 UTC ---
*** Bug 34197 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 33280] WIkipedia Android app forward button at times does nothing

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=33280

--- Comment #5 from Yuvi Panda  2012-02-04 12:32:46 UTC ---
Doesn't crash anymore (fixed with 7a44d9fde0c3f6743fab0a753f9488459ea90f1b).
Still needs to be disabled more times.

-- 
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 34198] first item in the history shows no information about its size

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34198

--- Comment #1 from Umherirrender  2012-02-04 
12:28:57 UTC ---
On Special:Contributions the new revisions has the same problem. Maybe also use
the size of that page as added size?

-- 
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 33866] Wikipedia Android app should have a setting to turn off images

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=33866

--- Comment #2 from Tomasz Finc  2012-02-04 11:52:17 UTC 
---
I started hacking on this on the plane over to FOSDEM. Andrea .. if you haven't
started then i can take the 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 34185] login-progress message should be in past tense, not present

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34185

--- Comment #2 from Guttorm Flatabø  2012-02-04 
11:41:45 UTC ---
(In reply to comment #1)
> Sometimes the icons take a bit to load, though.  In those cases, present tense
> makes sense.

Present tense makes sense when the first wiki (/icon) is loading, present and
past makes equally much sense when one has been loaded and one is loading,
while thereafter past tense makes more sense, in my opinion.

-- 
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 28026] Enable e-mail notifications for watchlist (EnotifWatchlist) on all small wikis

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28026

--- Comment #46 from Nemo_bis  2012-02-04 11:38:38 UTC 
---
(In reply to comment #45)
> The mail servers are currently being migrated/re-installed, so still in
> progress

The migration is over since a while, any update?

-- 
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 34198] New: first item in the history shows no information about its size

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34198

   Web browser: ---
 Bug #: 34198
   Summary: first item in the history shows no information about
its size
   Product: MediaWiki
   Version: 1.19-svn
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: History/Diffs
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: umherirrender_de...@web.de
Classification: Unclassified


With MediaWiki 1.19 the history page was changed from showing the size to
showing the diff and giving the size in the tooltip.

But now the first item in the history has no information about it size.

New pages in the RecentChanges getting the whole size as added, maybe the first
item can get this also?

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 12124] Sending multiple http status code headers kills fastcgi causing misery (and ugliness since RL does this)

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=12124

--- Comment #4 from Uwe Kaminski  2012-02-04 10:53:36 UTC ---
This bug prevents the usage of Mediawiki in environments using FastCGI
completely. As there also is no workaround (yet) I suggest to increase the
priority/importance of this bug. 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 29555] PostgreSQL: pg_query() [function.pg-query]: Query failed: ERROR: syntax error at or near "ENGINE"

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29555

Anton Kochkov  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #9 from Anton Kochkov  2012-02-04 10:50:50 
UTC ---
Fixed after removing all SMW tables and recreating them from scratch.
Only need to add schema prefix 'mediawiki.' into tables names in file
SMW_Postgres_Schema.sql

-- 
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 33957] Android app v1.1 tracker - features

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=33957

Bug 33957 depends on bug 33826, which changed state.

Bug 33826 Summary: developer email should state more clearly that it is public
https://bugzilla.wikimedia.org/show_bug.cgi?id=33826

   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 33826] developer email should state more clearly that it is public

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=33826

Yuvi Panda  changed:

   What|Removed |Added

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

--- Comment #2 from Yuvi Panda  2012-02-04 10:50:04 UTC ---
Has been made private 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 33722] Thumbnails of PDFs with non-standard page sizes are rendered incorrectly

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=33722

This, that and the other  changed:

   What|Removed |Added

 CC||at.li...@live.com.au
Summary|preview size|Thumbnails of PDFs with
   ||non-standard page sizes are
   ||rendered incorrectly

-- 
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 29555] PostgreSQL: pg_query() [function.pg-query]: Query failed: ERROR: syntax error at or near "ENGINE"

2012-02-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29555

--- Comment #8 from Anton Kochkov  2012-02-04 09:45:27 
UTC ---
Trunk Mediawiki 110689 rev, trunk SemanticMediaWiki, PostgreSQL 9.1.1:

Setting up standard database configuration for SMW ...
Selected storage engine is "SMWSQLStore2" (or an extension thereof)
Checking table "smw_ids" ...
   Table already exists, checking structure ...
   ... field smw_id is fine.
   ... field smw_namespace is fine.
   ... field smw_title is fine.
   ... changing type of field smw_iw from 'TEXT' to 'TEXT NOT NULL' ... done.
   ... creating field smw_subobject ... 

Warning:  pg_query() [function.pg-query]: Query failed: ERROR:  column
"smw_subobject" contains null values in
/home/droid-dev/www/includes/db/DatabasePostgres.php on line 254

Warning:  pg_query() [function.pg-query]: Query failed: ERROR:  current
transaction is aborted, commands ignored until end of transaction block in
/home/droid-dev/www/includes/db/DatabasePostgres.php on line 254

Warning:  pg_query() [function.pg-query]: Query failed: ERROR:  current
transaction is aborted, commands ignored until end of transaction block in
/home/droid-dev/www/includes/db/DatabasePostgres.php on line 254

Warning:  pg_query() [function.pg-query]: Query failed: ERROR:  current
transaction is aborted, commands ignored until end of transaction block in
/home/droid-dev/www/includes/db/DatabasePostgres.php on line 254

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