[Bug 21468] SelectCategoryTagCloud doesn't work after system upgrade

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21468

Christian Boltz mediawiki-b...@cboltz.de changed:

   What|Removed |Added

 CC||mediawiki-b...@cboltz.de
Summary|SelectCategory doesn't work |SelectCategoryTagCloud
   |after system upgrade|doesn't work after system
   ||upgrade

-- 
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 38374] New: [patch] option to disallow selecting the top-level category

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38374

   Web browser: ---
 Bug #: 38374
   Summary: [patch] option to disallow selecting the top-level
category
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: SelectCategory
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: mediawiki-b...@cboltz.de
Classification: Unclassified
   Mobile Platform: ---


Created attachment 10846
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=10846
patch (for latest SVN) to implement $wgSelectCategoryToplevelAllowed

The attached patch adds the config option $wgSelectCategoryToplevelAllowed.

If you set it to false, the checkbox for the top-level category will be hidden,
so users can only select sub-categories.

The reason for implementing this is that it doesn't make sense to add a page to
the top-level category in many cases. 

For example, I have the top-level category pictures for the File: namespace,
and (nearly) all files would fit into this category. This means it doesn't make
sense to categorize all uploaded files as pictures. Instead, the users
can/have to select one or more sub-category (for example cat pictures) that
matches better.

-- 
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 38366] Trying to edit a title containing a BOM and not having permissions to edit is causing 504 error

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38366

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE

--- Comment #2 from Antoine hashar Musso has...@free.fr 2012-07-13 08:12:28 
UTC ---
Definitely the same as bug 38364, so I am closing this bug as a duplicate.

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

-- 
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 38364] apache segfaults on [[special:upload]] submit to testwiki

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38364

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

   What|Removed |Added

 CC||bugrepor...@to.mabomuja.de

--- Comment #1 from Antoine hashar Musso has...@free.fr 2012-07-13 08:12:28 
UTC ---
*** Bug 38366 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 38364] apache segfaults on [[special:upload]] submit to testwiki

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38364

--- Comment #2 from Antoine hashar Musso has...@free.fr 2012-07-13 08:13:37 
UTC ---
From bug 38366, you get it segfaulting with
http://test.wikipedia.org/w/index.php?title=%EF%BB%BFTestaction=edit , well
Apache will spam fatal.log with lot of segfaulting children. Definitely
something wrong on srv193.

-- 
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 38364] Apache segfaults on test.wikipedia.org (srv193)

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38364

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

   What|Removed |Added

   Priority|Unprioritized   |High
 CC||has...@free.fr
Summary|apache segfaults on |Apache segfaults on
   |[[special:upload]] submit   |test.wikipedia.org (srv193)
   |to testwiki |

-- 
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 30705] Charset Error on Special Page

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30705

--- Comment #12 from Markus Krötzsch mar...@semantic-mediawiki.org 2012-07-13 
08:19:33 UTC ---
I believe that the cause of this problem is that a temporary table is created
to compute the results of this particular special page. The problem then occurs
due to incompatible character encoding settings between your existing tables
and this new table.

The way in which SMW creates the temporary table on MySQL is:

CREATE TEMPORARY TABLE tablename( title VARCHAR(255) ) ENGINE=MEMORY

The encoding used in this table therefore defaults to the global settings. It
is possible that these are not the same as for the other tables. It should be
possible to fix the problem by changing all table encodings to be the same, and
making sure that this is also the encoding used as a default.

The deeper architectural problem is that MediaWiki uses the global variable
$wgDBTableOptions for defining additional options, including specific charsets
(I think). However, these global options usually include the ENGINE setting. So
we cannot use them for temporary tables. So if somebody changes
$wgDBTableOptions to use a non-default charset, SMW will take this into account
only for its normal tables. Do you have a custom setting for $wgDBTableOptions?

In the long run, we should also find a more efficient way to compute the
results on this special page. The current solution does not scale to bigger
wikis.

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


[Bug 38364] Apache segfaults on test.wikipedia.org (srv193)

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38364

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

   What|Removed |Added

 CC||fai...@wikimedia.org,
   ||tstarl...@wikimedia.org

--- Comment #3 from Antoine hashar Musso has...@free.fr 2012-07-13 08:29:00 
UTC ---
Segfaulting since july 11th 21:16:31 UTC

I have opened RT ticket 3264 and adding to CC Tim  Faidon.

https://rt.wikimedia.org/Ticket/Display.html?id=3264

-- 
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 38333] Finding that account creations avoiding Global blocked IP addresses

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38333

--- Comment #1 from billinghurst billinghu...@gmail.com 2012-07-13 08:35:21 
UTC ---
03:36, 11 July 2012 Billinghurst (talk | contribs | block) globally blocked
User:31.193.7.128/27 (expires 03:36, 11 July 2013) (Open proxy:
whois.domaintools.com/31.193.7.146)

(mediawiki)

12 July 2012
(Logs) . . 22:20 . . xxx (Talk | contribs | block) BriannaAhr created a
user account
IP: 31.193.7.148   Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
SV1; MRA 5.8 (build 4157); .NET CLR 2.0.50727; AskTbPTV/5.11.3.15590)

-- 
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 38333] Finding that account creations avoiding Global blocked IP addresses

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38333

Pine deyntest...@hotmail.com changed:

   What|Removed |Added

   Priority|Unprioritized   |High
 CC||deyntest...@hotmail.com
   Severity|normal  |major

--- Comment #2 from Pine deyntest...@hotmail.com 2012-07-13 09:01:22 UTC ---
Since this has security implications and we aren't sure how widespread the
effects are, I'm marking this as high-major for the moment.

-- 
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 33158] Upgrade Bugzilla to 4.2

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=33158

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

   What|Removed |Added

 CC||suma...@panix.com

--- Comment #8 from Sumana Harihareswara suma...@panix.com 2012-07-13 
11:19:25 UTC ---
Other good things about Bugzilla 4.2:
https://globau.wordpress.com/2012/07/13/bugzilla-4-2-whats-new-searching/

especially:

improved custom search builder

the custom search builder on the advanced search tab has been improved; it’s
now easier and quicker to construct queries.

-- 
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 38375] New: Monobook main.css incomplete, which makes modification difficult

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38375

   Web browser: ---
 Bug #: 38375
   Summary: Monobook main.css incomplete, which makes modification
difficult
   Product: MediaWiki extensions
   Version: REL1_19 branch
  Platform: All
OS/Version: All
Status: UNCONFIRMED
  Severity: minor
  Priority: Unprioritized
 Component: [other]
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: y...@gmx.de
Classification: Unclassified
   Mobile Platform: ---


In the 1.19.1 release, the main.css for the Monobook skin is missing lines that
are important to change colors.

For example, the 1.16 release had the lines

h1, h2, h3, h4, h5, h6 {
color: #A67C52;
background: none;
font-weight: normal;
margin: 0;
overflow: hidden;
padding-top: .5em;
padding-bottom: .17em;
border-bottom: 1px solid #aaa;
}

which allow users to set heading colors for a color changed version of
Monobook, or to override colors in the MediaWiki:Monobook.css page. These lines
are not included in the main.css of the 1.19.1 release, which makes it
impossible to change heading colors by modifiying a copy of the main.css. I was
only able to solve this for my own site by going through the backup that still
had the 1.16 main.css.

I suggest that all main.css files should include all neccessary lines to change
color, size, and fonts of all elements of the skin.

-- 
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 38260] Jenkins can't fingerprint .git/FETCH_HEAD

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38260

--- Comment #3 from Antoine hashar Musso has...@free.fr 2012-07-13 13:31:37 
UTC ---
The workaround is to use the jenkins-fingerprint macro or take-fingerprints
target introduced with https://gerrit.wikimedia.org/r/15596.  That is a
workaround to copy the - hidden to jenkins - files in a fingerprints directory.

Marking lower priority since we have a workaround 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 24156] Messages of log entries should support GENDER

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24156

--- Comment #17 from Umherirrender umherirrender_de...@web.de 2012-07-13 
14:06:11 UTC ---
(In reply to comment #16)
 As this is only one of my pet projects, it gets pushed farther when other 
 stuff
 comes up, haven't had that much time for other stuff lately, so help would be
 appreciated.

With gerrit 4506 one part was already done, because with that change the GENDER
parser function is using the GenderCache and that Cache is filled by the
LinkBatch which is already there. In the most case the gender state will be
already populated for the log and not generating one query per parser function
call.

-- 
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 38190] API help docs should document token as param-required for modules that use tokens

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38190

--- Comment #5 from Umherirrender umherirrender_de...@web.de 2012-07-13 
14:25:32 UTC ---
(In reply to comment #4)
 So it looks like this isn't working properly?

It works (you have to set the user param, but it works), you get the token and
a warning about The gettoken parameter has been deprecated..

You code snap is from method ApiBase::getPossibleErrors which only gets all
possible errors for action=paraminfo. it will never trigger the error.

In ApiMain::setupModule the check for the token param exist.

It looks like needsToken is superseeded by getTokenSalt.

-- 
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 10667] Category link tables sometimes contain orphaned entries

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=10667

Umherirrender umherirrender_de...@web.de changed:

   What|Removed |Added

 CC||umherirrender_de...@web.de

--- Comment #6 from Umherirrender umherirrender_de...@web.de 2012-07-13 
14:44:47 UTC ---
See bug 16112/bug 36195

-- 
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 38279] Provide an option to show all categories in [[Special:Categories]]

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38279

Umherirrender umherirrender_de...@web.de changed:

   What|Removed |Added

 CC||umherirrender_de...@web.de

--- Comment #1 from Umherirrender umherirrender_de...@web.de 2012-07-13 
14:45:37 UTC ---
See bug 10915

-- 
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 38278] Provide a filter to hide empty categories in list=allcategories

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38278

Umherirrender umherirrender_de...@web.de changed:

   What|Removed |Added

 CC||umherirrender_de...@web.de

--- Comment #2 from Umherirrender umherirrender_de...@web.de 2012-07-13 
14:49:09 UTC ---
related: bug 26411

-- 
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 10915] Special:Categories hides categories having 0 current members

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=10915

Umherirrender umherirrender_de...@web.de changed:

   What|Removed |Added

 CC||umherirrender_de...@web.de

--- Comment #8 from Umherirrender umherirrender_de...@web.de 2012-07-13 
14:49:33 UTC ---
related: bug 26411

-- 
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 38235] Can't run update.php under SQLite 3.6.12: Syntax error

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38235

--- Comment #9 from Brandon Sky brandonskypime...@gmail.com 2012-07-13 
14:50:50 UTC ---
(In reply to comment #8)
 That's not something you should have to install.

So then, what's wrong?

I have the same problem with AbuseFilter (bug 38371).

-- 
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 38376] New: Fatal error: Call to undefined method ThumbnailImage::getPath()

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38376

   Web browser: ---
 Bug #: 38376
   Summary: Fatal error:  Call to undefined method
ThumbnailImage::getPath()
   Product: MediaWiki
   Version: 1.20-git
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: API
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: s...@reedyboy.net
CC: bryan.tongm...@gmail.com, roan.katt...@gmail.com,
s...@reedyboy.net, soxre...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


Fatal error:  Call to undefined method ThumbnailImage::getPath() in
/usr/local/apache/common-local/php-1.20wmf6/includes/api/ApiQueryImageInfo.php
on line 359

-- 
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 38376] Fatal error: Call to undefined method ThumbnailImage::getPath()

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38376

Umherirrender umherirrender_de...@web.de changed:

   What|Removed |Added

 CC||umherirrender_de...@web.de

--- Comment #1 from Umherirrender umherirrender_de...@web.de 2012-07-13 
15:08:43 UTC ---
gerrit 15606

-- 
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 38377] New: Fix MediaWiki:Continue-editing

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38377

   Web browser: ---
 Bug #: 38377
   Summary: Fix MediaWiki:Continue-editing
   Product: MediaWiki
   Version: 1.20-git
  Platform: All
   URL: https://translatewiki.net/wiki/Thread:Support/About_ne
w_Continue_editing_link_in_MediaWiki
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Page editing
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: federicol...@tiscali.it
Classification: Unclassified
   Mobile Platform: ---


See URL

-- 
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 38375] Monobook main.css incomplete, which makes modification difficult

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38375

Krenair kren...@gmail.com changed:

   What|Removed |Added

 CC||kren...@gmail.com

--- Comment #1 from Krenair kren...@gmail.com 2012-07-13 15:25:12 UTC ---
What extension is this? And why is it so difficult for you to just add the
relevant lines?

-- 
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 38378] New: Revision deletion terminology is confusing, mixes hiding with deleting etc.

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38378

   Web browser: ---
 Bug #: 38378
   Summary: Revision deletion terminology is confusing, mixes
hiding with deleting etc.
   Product: MediaWiki
   Version: unspecified
  Platform: All
   URL: https://translatewiki.net/wiki/Thread:Support/About_Me
diaWiki:Revdelete-text/fi
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Revision deletion
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: federicol...@tiscali.it
CC: aschulz4...@gmail.com, niklas.laxst...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


See e.g. MediaWiki:Revdelete-text ; not to mention that revdeletion is
impossible to translate.
Any idea to improve the situation?

-- 
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 38378] Revision deletion terminology is confusing, mixes hiding with deleting etc.

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38378

Nemo_bis federicol...@tiscali.it changed:

   What|Removed |Added

   Keywords||design

-- 
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 38379] New: mediawiki-1.19.1 on Amazon: installer fatal err in Parser::parse() line 558 - if GD library is installed

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38379

   Web browser: ---
 Bug #: 38379
   Summary: mediawiki-1.19.1 on Amazon: installer fatal err in
Parser::parse() line 558 - if GD library is installed
   Product: MediaWiki
   Version: 1.19
  Platform: All
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: Installer
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: bugzi...@karasevstudio.com
CC: innocentkil...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


Just started deploying the current mediawiki-1.19.1 as per
http://www.mediawiki.org/wiki/Manual:Installation_guide , on Amazon EC2 (Apache
web server)

The prerequisites screen (next after language selection) specified all OK but
due to no GD thumbnailing would be disabled.

Deployed GD via `sudo yum install php-gd` and restarted Apache server.

After this, can't even get to the language selection screen - get HTTP Error
500 (Internal Server Error): An unexpected condition was encountered while the
server was attempting to fulfill the request.

In the server error log, I see:
[Fri Jul 13 15:40:42 2012] [error] [client x.x.x.x] PHP Catchable fatal error: 
Argument 2 passed to Parser::parse() must be an instance of Title, null given,
called in /var/www/html/mediawiki-1.19.1/includes/installer/Installer.php on
line 558 and defined in
/var/www/html/mediawiki-1.19.1/includes/parser/Parser.php on line 318, referer:
http://site.xyz

PHP Version 5.3.14
Apache Version Apache/2.2.22 (Amazon)

phpinfo() reports:
GD Supportenabled
GD Versionbundled (2.0.34 compatible)

-- 
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 38379] mediawiki-1.19.1 on Amazon: installer fatal err in Parser::parse() line 558 - if GD library is installed

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38379

Sasha K bugzi...@karasevstudio.com changed:

   What|Removed |Added

   Platform|All |Other
Web browser|--- |Google Chrome
 OS/Version|All |Linux
   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 38377] Fix MediaWiki:Continue-editing

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38377

Sam Reed (reedy) s...@reedyboy.net 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 38379] mediawiki-1.19.1 on Amazon: installer fatal err in Parser::parse() line 558 - if GD library is installed

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38379

Max Semenik maxsem.w...@gmail.com changed:

   What|Removed |Added

 CC||maxsem.w...@gmail.com

--- Comment #1 from Max Semenik maxsem.w...@gmail.com 2012-07-13 16:15:58 UTC 
---
Did it work before GD was installed?

-- 
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 38379] mediawiki-1.19.1 on Amazon: installer fatal err in Parser::parse() line 558 - if GD library is installed

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38379

--- Comment #2 from Max Semenik maxsem.w...@gmail.com 2012-07-13 16:16:50 UTC 
---
Meh, didn't see that this was in installer itself.

-- 
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 38379] mediawiki-1.19.1 on Amazon: installer fatal err in Parser::parse() line 558 - if GD library is installed

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38379

--- Comment #3 from Sasha K bugzi...@karasevstudio.com 2012-07-13 16:23:15 
UTC ---
Max, before GD was installed (or any of its prerequisite packages, I reckon), I
was indeed getting to the language selection screen (the very first screen
after clicking the Please complete the installation link on the new
deployment), as well as the next screen that reported on the environment - all
without any web server errors.

After GD was installed, clicking the Please complete the installation link
was generating server error 500 as reported above. I've even tried blowing away
the mediawiki directory and re-extracting the .tar.gz, to reset the install
process - still the same error. So it must be due to the environmental change
as a result of GD.

-- 
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 38379] mediawiki-1.19.1 on Amazon: installer fatal err in Parser::parse() line 558 - if GD library is installed

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38379

--- Comment #4 from Sasha K bugzi...@karasevstudio.com 2012-07-13 16:29:32 
UTC ---
Here are the exact effects from running sudo yum install php-gd :

[root@corp1]# cat /var/log/yum.log | grep 'Jul 13 '
Jul 13 15:27:58 Updated: php-common-5.3.14-2.21.amzn1.x86_64
Jul 13 15:27:59 Updated: php-cli-5.3.14-2.21.amzn1.x86_64
Jul 13 15:27:59 Updated: php-pdo-5.3.14-2.21.amzn1.x86_64
Jul 13 15:27:59 Installed: libXpm-3.5.8-2.8.amzn1.x86_64
Jul 13 15:27:59 Installed: t1lib-5.1.2-6.5.amzn1.x86_64
Jul 13 15:27:59 Installed: php-gd-5.3.14-2.21.amzn1.x86_64
Jul 13 15:28:00 Updated: php-mysql-5.3.14-2.21.amzn1.x86_64
Jul 13 15:28:00 Updated: php-5.3.14-2.21.amzn1.x86_64

-- 
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 25302] Enable UserOptionStats extension on Hungarian Wikipedia

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25302

--- Comment #12 from Tisza Gergő gti...@gmail.com 2012-07-13 17:12:04 UTC ---
(In reply to comment #3)
 * It loads the user option blob for each user. Currently, there are 150'000
 users on huwiki.

Would limiting it to active users help? That would be an improvement anyway, we
want the stats for the current user base, and settings/gadgets which have been
there for a longer time are overrepresented unless we filter by activity.

-- 
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 38373] Commons Upload Request

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38373

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Sam Reed (reedy) s...@reedyboy.net 2012-07-13 17:23:34 
UTC ---
reedy@fenari:/tmp$ sudo -u apache mwscript importImages.php --wiki=commonswiki
--comment-ext=txt --user=Fastily /tmp/upload/
Import Images

Importing SouthSanJose20120623Set1.ogv...done.

Found: 1
Added: 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 38368] Make sure Android app manifest specifies MIPS compatibility

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38368

--- Comment #1 from Brion Vibber br...@wikimedia.org 2012-07-13 17:30:31 UTC 
---
Looks like we do specify all the screen sizes... from what I can tell Google
Play should only be filtering by ABI if the app contains native libraries,
which we don't...

-- 
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 30845] Use a meaningful file name for the download

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30845

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

   What|Removed |Added

Summary|Suggestion for improvement: |Use a meaningful file name
   |use a meaningful file name  |for the download
   |for the PDF download link   |
   |to have meaningful  |
   |filenames when storing  |
   |locally |

-- 
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 38373] Commons Upload Request

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38373

--- Comment #2 from Fastily fast...@yahoo.com 2012-07-13 17:38:17 UTC ---
Thank you!! :D

-- 
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 38278] Provide a filter to hide empty categories in list=allcategories

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38278

--- Comment #3 from Umherirrender umherirrender_de...@web.de 2012-07-13 
17:48:03 UTC ---
With gerrit 15604 the same condition was added to list=allpages, which is
already used on Special:Categories (cat_pages  0).

Maybe that is enough to fix 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 34386] Enable e-mailing password based on e-mail address on Wikimedia wikis

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34386

--- Comment #7 from Umherirrender umherirrender_de...@web.de 2012-07-13 
17:51:17 UTC ---
(In reply to comment #4)
 Do you want an RT ticket creating?

Has somebody create a RT ticket?

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

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


[Bug 745] RTL/bidirectional issues (tracking)

2012-07-13 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||31243

-- 
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 31243] DoubleWiki view has bug in RTL wikis direction

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31243

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

   What|Removed |Added

 CC||amir.ahar...@mail.huji.ac.i
   ||l
 Blocks||745

-- 
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 38299] Installation of computer modern font

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38299

--- Comment #7 from Gauravjuvekar gauravjuve...@gmail.com 2012-07-13 18:44:51 
UTC ---
File:Test.svg on commons, version as of 00:09, 14 July 2012. The PNG rendering
falls back to Liberation sans I suppose(i'm not sure). Firefox falls it back to
Liberation serif (when opened in full) as I don't have any cm font on my ubuntu
system (11.10).

-- 
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 38093] Gender of changed user groups missing in Special:Log/rights

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38093

Umherirrender umherirrender_de...@web.de changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

--- Comment #7 from Umherirrender umherirrender_de...@web.de 2012-07-13 
18:57:08 UTC ---
The quick fix is merged successfully, so this bug is fixed.

Rewriting the rightslog to use a LogFormatter is still the better way, but that
is waiting for review, but this quick fix should not break 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 38381] New: i18n int-hack does not work very well in JavaScript....

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38381

   Web browser: ---
 Bug #: 38381
   Summary: i18n int-hack does not work very well in
JavaScript
   Product: MediaWiki
   Version: 1.20-git
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: JavaScript
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: mtrac...@member.fsf.org
CC: krinklem...@gmail.com, tpars...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


Background:
http://www.mediawiki.org/wiki/Localisation#Messages_quoting_each_other

I have the following message in an i18n file:

'ethereditor-warn-others' = 'Warning: Some other users are currently editing
this page in a collaborative session using the EtherEditor extension. While you
are welcome to keep editing here, their changes may conflict with yours. Please
consider clicking the {{int:ethereditor-collaborate-button}} button in the
top right of the page screen to join them, and avoid merge conflicts.'

This is a great thing and all, since I don't want people to need to update this
message if the ethereditor-collaborate-button message gets changed. OK, good
stuff.

However, the JavaScript message object has two huge problems with this:

1. The JS message object doesn't even glance at the {{int:}} part, just
leaves it.
2. Even if it did look at it, I never included 'ethereditor-collaborate-button'
in the required messages for this module, so there would be exactly no way for
the library to sanely handle the int-hack method.

So, possible solutions:

1. Compile the int-hack bits of the message on the server before it gets sent
to the client. This isn't ideal, since the client couldn't modify the message
if necessary (for example, I use a message in the same extension to generate a
regular expression).
2. Auto-include the int-hacked messages (in this case,
ethereditor-collaborate-button) in the resource loader's loaded messages, and
then consider {{int:}} parts of a message while parsing. This would take some
doing, but it's possible. Also, a potential problem (and this is perhaps a
consideration for the entire l10n system, not just client-side) is that {{int}}
is a valid template on some wikis. I'm not sure if that's important, maybe if
the parser looks for {{int:something}}, there won't be overlap with
{{int|something}}.

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 38382] New: Automatic summary for undo button for multiple edits

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38382

   Web browser: ---
 Bug #: 38382
   Summary: Automatic summary for undo button for multiple edits
   Product: MediaWiki
   Version: unspecified
  Platform: All
   URL: https://en.wikipedia.org/w/index.php?title=List_of_lon
gest-running_TV_shows_by_categoryaction=editundoafte
r=494349895undo=501790738
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: History/Diffs
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: federicol...@tiscali.it
Classification: Unclassified
   Mobile Platform: ---


Currently available only for single-edit undoing; see example (random page and
edits which currently can be undone).
See https://translatewiki.net/wiki/Thread:Support/Undo_multiple_revisions

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

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


[Bug 38382] Automatic summary for undo button for multiple edits

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38382

Nemo_bis federicol...@tiscali.it changed:

   What|Removed |Added

   Priority|Unprioritized   |Low

-- 
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 38383] New: Swap gitweb for cgit

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38383

   Web browser: ---
 Bug #: 38383
   Summary: Swap gitweb for cgit
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Git/Gerrit
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: innocentkil...@gmail.com
CC: dann...@email.cz, innocentkil...@gmail.com,
rlan...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


Gitweb is ugly and cluttered. Cgit is much cleaner and seems more intuitive. It
also has a treeview \o/

Gerrit supports cgit out of the box, so it should be a simple config change + a
package install.

Will also need to adjust the /gitweb/ redirects I made.

-- 
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 35669] Background of Wikimedia public key list fails to load

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35669

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Sam Reed (reedy) s...@reedyboy.net 2012-07-13 19:46:54 
UTC ---
Fixed

Changed to https://svn.wikimedia.org/skins/custom/images/page-base.png

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

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


[Bug 17500] store DEFAULTSORT in the database

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17500

Umherirrender umherirrender_de...@web.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||umherirrender_de...@web.de
 Resolution||FIXED

--- Comment #2 from Umherirrender umherirrender_de...@web.de 2012-07-13 
19:46:55 UTC ---
Setting fixed per comment 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 35670] Text bundle of Wikimedia public key list is incomplete

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35670

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Sam Reed (reedy) s...@reedyboy.net 2012-07-13 19:56:02 
UTC ---
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 27139] WikiBhasha does not work with Wikipedia's secure server

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27139

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

   What|Removed |Added

 Status|ASSIGNED|UNCONFIRMED
 Ever Confirmed|1   |0

--- Comment #8 from Sam Reed (reedy) s...@reedyboy.net 2012-07-13 19:57:22 
UTC ---
Does this work on the new secure, ie https://xx.wikipedia.org ?

If so, this bug should be closed, we're not making it work on secure.wm.o

-- 
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 38384] New: Wikimedia public key list needs moving from singer

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38384

   Web browser: ---
 Bug #: 38384
   Summary: Wikimedia public key list needs moving from singer
   Product: Wikimedia
   Version: unspecified
  Platform: All
   URL: https://secure.wikimedia.org/keys.html
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: SSL related
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: s...@reedyboy.net
Classification: Unclassified
   Mobile Platform: ---


I suspect this would be fine put on fenari/noc.wm.o, and add a redirect to
files/apache/sites/secure.wikimedia.org so old links carry on working...

-- 
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 31243] DoubleWiki view has bug in RTL wikis direction

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31243

--- Comment #3 from Robin Pepermans (SPQRobin) robinp.1...@gmail.com 
2012-07-13 20:01:40 UTC ---
Should be fixed in gerrit change 15637
(https://gerrit.wikimedia.org/r/#/c/15637/) by using mw-content-ltr/rtl
classes.

-- 
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 38385] New: Implement the ISO3166 extension

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38385

   Web browser: ---
 Bug #: 38385
   Summary: Implement the ISO3166 extension
   Product: Monuments database
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: maar...@mdammers.nl
Classification: Unclassified
   Mobile Platform: ---


Siebrand already created the extension. ISO3166 can be found at
https://en.wikipedia.org/wiki/ISO_3166-2

It should probably just be a simple php array of messages with the form:
prefix-iso code.

Just a few country (us, nl, de) and some subcountry codes should be added
(us-ny, us-dc, nl-nh) to start with.

-- 
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 38386] New: Make use of the ISO3166 extension for adm regions

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38386

   Web browser: ---
 Bug #: 38386
   Summary: Make use of the ISO3166 extension for adm regions
   Product: Monuments database
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: API
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: maar...@mdammers.nl
Depends on: 38385
Classification: Unclassified
   Mobile Platform: ---


The api should be modified to lookups in the ISO3166 extension when browsing
the admin_tree. You probably want to return adm0-4 with the code and a
different variable containing the localized name.

-- 
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 38385] Implement the ISO3166 extension

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38385

Maarten Dammers maar...@mdammers.nl changed:

   What|Removed |Added

 Blocks||38386

-- 
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 38386] Make use of the ISO3166 extension for adm regions

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38386

Maarten Dammers maar...@mdammers.nl changed:

   What|Removed |Added

 Depends on||38313

-- 
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 38313] Implement admin_tree browsing in the monuments api

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38313

Maarten Dammers maar...@mdammers.nl changed:

   What|Removed |Added

 Blocks||38386

-- 
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 38383] Swap gitweb for cgit

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38383

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 38369] Auth_remoteuser: PHP Strict Standards errors

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38369

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

   What|Removed |Added

  Attachment #10842|0   |1
   is patch||
  Attachment #10842|application/octet-stream|text/plain
  mime type||

-- 
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 38337] Add search by point for the monuments database

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38337

--- Comment #2 from Maarten Dammers maar...@mdammers.nl 2012-07-13 20:17:23 
UTC ---
If I understand this correctly your taking a point, build a bounding box around
that point and than use the bounding box to get points.

Isn't it possible to ask the database the 100 nearest points from a certain
point? Or do we need a pre-compiled table like prox_search for that?

-- 
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 38369] Auth_remoteuser: PHP Strict Standards errors

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38369

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||FIXED

--- Comment #1 from Sam Reed (reedy) s...@reedyboy.net 2012-07-13 20:24:50 
UTC ---
Fixed in https://gerrit.wikimedia.org/r/15640

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

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

   Web browser: ---
 Bug #: 38388
   Summary: MediaWiki:Config-support-info is confusing, needs
rewording
   Product: MediaWiki
   Version: unspecified
  Platform: All
   URL: https://translatewiki.net/wiki/Thread:Support/looks_li
ke_MediaWiki:Config-support-info_says_below_instead_
of_above
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Installer
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: federicol...@tiscali.it
CC: amir.ahar...@mail.huji.ac.il, innocentkil...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


And surely documentation in /qqq

-- 
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-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38388

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

   What|Removed |Added

   Keywords||i18n

--- Comment #1 from Sam Reed (reedy) s...@reedyboy.net 2012-07-13 20:53:33 
UTC ---
(In reply to comment #0)
 And surely documentation in /qqq

I'm guessing you mean the addition of qqq docs?

-- 
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-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38388

--- Comment #2 from Nemo_bis federicol...@tiscali.it 2012-07-13 21:08:24 UTC 
---
(In reply to comment #1)
 (In reply to comment #0)
  And surely documentation in /qqq
 
 I'm guessing you mean the addition of qqq docs?

Yes

-- 
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 38337] Add search by point for the monuments database

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38337

--- Comment #3 from Max Semenik maxsem.w...@gmail.com 2012-07-13 21:16:16 UTC 
---
(In reply to comment #2)
 If I understand this correctly your taking a point, build a bounding box 
 around
 that point and than use the bounding box to get points.
 
 Isn't it possible to ask the database the 100 nearest points from a certain
 point? Or do we need a pre-compiled table like prox_search for that?

I don't tink it's possible to do performantly in SQL.

-- 
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 36019] Special:Categories does not keep from parameter between list size changes

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36019

--- Comment #4 from Malafaya malaf...@clix.pt 2012-07-13 21:16:18 UTC ---
This seems to be fixed at this time. Close?

-- 
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 36019] Special:Categories does not keep from parameter between list size changes

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36019

Marcin Cieślak marcin.cies...@gmail.com changed:

   What|Removed |Added

 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 36608] Many parameters and other messages not documented (1.7.1)

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36608

[[kgh]] mediaw...@kghoffmeyer.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #3 from [[kgh]] mediaw...@kghoffmeyer.de 2012-07-13 21:34:03 UTC 
---
Done, thus RESOLVED FIXED. 

Thank you to Jeroen for assisting on several occasions in clarifying the status
of messages.

-- 
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 1] Documentation is out of date, incomplete (tracking)

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=1

Bug 1 depends on bug 36608, which changed state.

Bug 36608 Summary: Many parameters and other messages not documented (1.7.1)
https://bugzilla.wikimedia.org/show_bug.cgi?id=36608

   What|Old Value   |New Value

 Status|NEW |RESOLVED
 Resolution||FIXED

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

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


[Bug 38140] Special:UnusedProperties does not show umlauts like ä, ü, ö, ß (1.8 alpha)

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38140

[[kgh]] mediaw...@kghoffmeyer.de changed:

   What|Removed |Added

   Priority|Unprioritized   |Low
 Status|UNCONFIRMED |NEW
 CC||mediaw...@kghoffmeyer.de
Version|REL1_18 branch  |unspecified
Summary|Special:Unused Properties   |Special:UnusedProperties
   |don't show Umlaute like   |does not show umlauts like
   |ä,ü,ö,ß |ä,ü,ö,ß (1.8 alpha)
 Ever Confirmed|0   |1
   Severity|normal  |minor

--- Comment #4 from [[kgh]] mediaw...@kghoffmeyer.de 2012-07-13 21:53:04 UTC 
---
I can confirm this for SMW 1.8 alpha though this bug is around for quite some
time now. SMW 1.5.x was affected, too. However, except for corrupted listing
and that it is not possible to navigate to them via Special:UnusedProperties I
experienced no other side effects. The properties containing such characters
are still there and functional.

Thus changing status to NEW and importance to low and minor. A fix would be
cool though since I suspect that not only German special characters are
affected.

-- 
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 30845] Use a meaningful file name for the download

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30845

Christoph Kepper christoph.kep...@pediapress.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||christoph.kepper@pediapress
   ||.com
 Resolution||FIXED

--- Comment #2 from Christoph Kepper christoph.kep...@pediapress.com 
2012-07-13 22:09:34 UTC ---
I just submitted a patch for this bug: gerrit change
I0c53d31e43354a63dcc115b59a961e43bb86e8c4

It still has a few issues though:
- it works only for Latin-1
- Accented characters will be converted to ASCII
- Everything else will be dropped
- If everything is dropped, collection + EXT will be used as 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 31552] PDF related bugs and enhancements (tracking)

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31552

Bug 31552 depends on bug 30845, which changed state.

Bug 30845 Summary: Use a meaningful file name for the download
https://bugzilla.wikimedia.org/show_bug.cgi?id=30845

   What|Old Value   |New Value

 Status|NEW |RESOLVED
 Resolution||FIXED

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

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


[Bug 38390] New: Preloading {{PAGENAME}} in embedded query forms does not work with MW 1.19

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38390

   Web browser: ---
 Bug #: 38390
   Summary: Preloading {{PAGENAME}} in embedded query forms does
not work with MW 1.19
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: SemanticForms
AssignedTo: yaro...@gmail.com
ReportedBy: daniel_5...@ymail.com
CC: wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


Until MediaWiki 1.18 I was able to preload the {{PAGENAME}} magic word into
query forms embedded in normal wiki pages.

In MW 1.19 this functionality seems to be broken - {{PAGENAME}} does not give
me the actual page name anymore, but the name of the embedded special page
(RunQuery/Form name).

SMW version is 1.7.1. (I tried SMW 1.8 alpha and the last git code for SF, but
had the same problem)

Example:

http://cordoba.nuestraciudad.info/portal/Query_Inclusion

Example with MW 1.18 (working):

http://scratchpad.referata.com/wiki/Other_name

Coud be related to this feature request:

https://bugzilla.wikimedia.org/show_bug.cgi?id=33426

-- 
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 35526] jquery.tablesorter should preserve original order of equal cells when reversing sort order twice

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35526

--- Comment #3 from Richard Guk richardg...@yahoo.com 2012-07-13 23:04:07 UTC 
---
Fix proposed by Anomie at Gerrit change #15638

-- 
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 4430] Use Unicode Character Folding for accents, punctuation chars in search index

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=4430

Nemo_bis federicol...@tiscali.it changed:

   What|Removed |Added

 CC||federicol...@tiscali.it,
   ||niklas.laxst...@gmail.com

--- Comment #5 from Nemo_bis federicol...@tiscali.it 2012-07-13 23:07:09 UTC 
---
This is the same bug as in
https://translatewiki.net/wiki/Thread:Support/Search_index_should_ignore_punctuation,
isn't 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 32731] WikiEditor dropdowns should behave normally, closing when they lose focus or when ESC is pressed

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32731

Mark Holmquist mtrac...@member.fsf.org changed:

   What|Removed |Added

 CC||mtrac...@member.fsf.org

--- Comment #3 from Mark Holmquist mtrac...@member.fsf.org 2012-07-14 
00:23:03 UTC ---
+1. This is a significant UI bug.

Realistically, the dropdowns should just be select elements, not only
removing the need for a fix in this case (because it would act like it's
supposed to), but also increasing accessibility and consistency.

See, e.g., my work with the ep_wikitext plugin:

http://etherpad.wmflabs.org/pad/p/vBU2I6uMSf

(the dropdown that says headlines is an actual select, this is how it
*should* work)

-- 
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 38263] API: return a list of supported wikis

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38263

jeb...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||jeb...@gmail.com
 Resolution||INVALID

--- Comment #1 from jeb...@gmail.com 2012-07-14 01:24:15 UTC ---
All that have code=wiki and are not closed, private or fishbowl. We do not
support linking on alternate URLs, neither for ordinary aliases or language
variants. Use the canonical form.

The sitematrix is the source for valid siteids
http://meta.wikimedia.org/w/api.php?action=sitematrixsmtype=language

You can also get the list used by individual modules by using the url
http://wikidata-test-repo.wikimedia.de/w/api.php?action=paraminfomodules=wbgetitems

Note that the last list will contain all valid siteids, and do no distinction
on which group they belong to. Sitelinks mimicking interlanguage links on
Wikipedia should only come from the group identified by code=wiki

Note especially that the following are redirected
* http://cz.wikipedia.org http://cs.wikipedia.org dbname=cswiki
* http://dk.wikipedia.org http://da.wikipedia.org dbname=dawiki
* http://epo.wikipedia.org http://eo.wikipedia.org dbname=eowiki
* http://jp.wikipedia.org http://ja.wikipedia.org dbname=jawiki
* http://minnan.wikipedia.org http://zh-min-nan.wikipedia.org
dbname=zh_min_nanwiki
* http://nan.wikipedia.org same as zh-min-nan
* http://nb.wikipedia.org http://no.wikipedia.org dbname=nowiki
* http://zh-cfr.wikipedia.org same as zh-min-nan

For example will nowiki (aka no) work while adding links, but not nbwiki
(aka nb). The aliases is visible at Special:Sitematix as they have red
links.
http://meta.wikimedia.org/wiki/Special:SiteMatrix

There could be sitelinks to additional groups, or even sites outside Wikimedia,
but for now only Wikipedia is supported.

Note also that there are a small number of closed wikis
* http://aa.wikipedia.org
* http://cho.wikipedia.org
* http://ho.wikipedia.org
* http://hz.wikipedia.org
* http://ii.wikipedia.org
* http://kj.wikipedia.org
* http://kr.wikipedia.org
* http://mh.wikipedia.org
* http://mo.wikipedia.org
* http://mus.wikipedia.org
* http://ng.wikipedia.org

There could be others that should not be listed.

-- 
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 38354] wbsetitem does not set bot flag

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38354

jeb...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||jeb...@gmail.com
 Resolution||FIXED

--- Comment #1 from jeb...@gmail.com 2012-07-14 01:26:12 UTC ---
https://gerrit.wikimedia.org/r/#/c/15554/

-- 
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 38211] Internal error when viewing Special:Log

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38211

Aaron Schulz aschulz4...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||WORKSFORME

--- Comment #3 from Aaron Schulz aschulz4...@gmail.com 2012-07-14 02:15:55 
UTC ---
Closed; lacking information.

-- 
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 25302] Enable UserOptionStats extension on Hungarian Wikipedia

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25302

--- Comment #13 from Niklas Laxström niklas.laxst...@gmail.com 2012-07-14 
02:53:10 UTC ---
Since the preferences migration this extensions could just scan the
user_properties table, which should be fast enough even for 150k users.

-- 
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 30845] Use a meaningful file name for the download

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30845

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

   What|Removed |Added

 CC||santhosh.thottingal@gmail.c
   ||om

--- Comment #3 from Santhosh Thottingal santhosh.thottin...@gmail.com 
2012-07-14 03:03:36 UTC ---
(In reply to comment #0)
 Better would be a meaningful file name title which corresponds to the Wiki
 book/collection page title. Non-ASCII character need to be stripped, or
 transliterated or url-encoded, and spaces replaced with underscore.

Please don't forget that titles in non-english wiki projects are completely
Non-ASCII. So don't drop them :)
What issue do you see when file name contains valid UTF-8 characters?

-- 
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 38387] Special:ValidationStatistics should use properly localised time

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38387

--- Comment #1 from Aaron Schulz aschulz4...@gmail.com 2012-07-14 03:14:07 
UTC ---
The Language::formatTimePeriod() function is used, which gets the result from
various MediaWiki messages. I don't know what else FlaggedRevs can do here.

-- 
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 34568] Allow selecting all namespaces on Special:UnreviewedPages

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34568

--- Comment #4 from Aaron Schulz aschulz4...@gmail.com 2012-07-14 03:35:45 
UTC ---
(In reply to comment #3)
 PendingChanges uses either the flaggedpages table (pending items are indexed)
 or the flaggedpages_pending (which is a denormalization) tables. Both of which
 work well for this purpose, and don't require scanning massive portions of the
 page table. The number of pending pages tends to be from zero to a few
 dozen-thousand. Filtering by namespaces is thus easy.
 
 The only way to do this well is to page on page_id rather than page_title. It
 would be confusing to page differently based on whether an namespace is
 provided, so we would have to always page by page_id, which would be slower if
 I specify a namespace that's only gets a small portion of edits.
 
 UnreviewedPages is really only useful for getting really old pages that still
 haven't been reviewed. It seems like NewPages would be more useful (filtered
 for unpatrolled). Maybe that can have a category selector?

Another problem with paging on page_id is that it increases the average number
of rows to be scanned when oldest is selected, since older pages are more
likely to be reviewed (whereas paging on page_title is more random).

Another trick would be to still page on page_title but do a UNION query (like
recentchanges) on all reviewable namespaces. Given how many rows this special
page already has to scan, I'd be a bit hesitant to do that either, though it
seems to still be fairly fast on dewiki.

-- 
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 34568] Allow selecting all namespaces on Special:UnreviewedPages

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34568

Aaron Schulz aschulz4...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||LATER

--- Comment #5 from Aaron Schulz aschulz4...@gmail.com 2012-07-14 03:44:29 
UTC ---
Closing until there is more demand for this.

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

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


[Bug 38391] New: Disable anonymous account creation or enable CheckUser on beta.wmflabs

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38391

   Web browser: ---
 Bug #: 38391
   Summary: Disable anonymous account creation or enable CheckUser
on beta.wmflabs
   Product: Wikimedia Labs
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: jas...@jasperswebsite.co.cc
CC: benap...@gmail.com, rlan...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


The amount of spam accounts on the beta.wmflabs.org wikis is staggering, partly
because CheckUser is not available to root out their IP addresses as they are
for the main WMF wikis.

If for some reason, CheckUser cannot be enabled, account creation should either
go through the ConfirmAccount extension or otherwise require approval from
existing users, because this spam is too much to deal with.

-- 
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 38392] New: language selection list shows up on the wrong side in RTL locale on tablets

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38392

   Web browser: ---
 Bug #: 38392
   Summary: language selection list shows up on the wrong side in
RTL locale on tablets
   Product: Wikipedia App
   Version: 3.2 (iOS) / 1.2 (Android)
  Platform: All
OS/Version: All
Status: NEW
  Keywords: i18n
  Severity: normal
  Priority: Unprioritized
 Component: Localization/Translation/Language
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: amir.ahar...@mail.huji.ac.il
Blocks: 34166
Classification: Unclassified
   Mobile Platform: ---


Steps to reproduce:

0. Try it on an Android tablet. I tried it on a TEAC tablet with Android 4.
1. Switch the locale of the tablet to Hebrew.
2. Open the app and open some article.
3. Press the language switching button.

Results with my tests:

1. Empty white space appears on the left of the screen.
2. The language list appears on the right side of the screen, and it overlaps
with the article content.

-- 
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-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34166

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

   What|Removed |Added

 Depends on||38392

-- 
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 38393] New: Edit link doesn't work on an Android tablet

2012-07-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38393

   Web browser: ---
 Bug #: 38393
   Summary: Edit link doesn't work on an Android tablet
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Keywords: i18n
  Severity: normal
  Priority: Unprioritized
 Component: MobileFrontend
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: amir.ahar...@mail.huji.ac.il
CC: aricha...@wikimedia.org, prei...@wikimedia.org,
tf...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


This happened to me on a TEAC tablet with Android 4.03:

1. Open the browser.
2. Go to an article in the Hebrew Wikipedia, for example:
https://he.wikipedia.org/wiki/%D7%90 . Make sure that you are in the desktop
version.
3. Press the section edit link.

When I try to do this, the Edit link appears at the section, but if I press
it nothing happens.

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