[Bug 4073] Support exporting content in DocBook format

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=4073

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

 CC||imalc...@kde.org,
   ||molly.whi...@gmail.com
 Blocks||35925

--- Comment #6 from Nemo federicol...@tiscali.it ---
DocBook is important for many reasons. The smartest (big) publishers are
converting their traditional books to DocBook to have high-quality ebooks that
can be converted in any format may arise in the next decades; wikis like
userbase.kde.org convert their pages to DocBook format with some scripts for
later reuse.

The problem with this is that wiki pages are like a low quality energy, which
you convert to high quality energy i.e. DocBook with big losses and then
becomes whatever you need... not so effective. Probably doesn't make sense if
MediaWiki doesn't even have a concept of book in the first place; maybe
GorillaWarfare has ideas on this.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 35925] Wikisource related bugs and enhancements (tracking)

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35925

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

 Depends on||4073

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47443] Local dates comparsion seems to be broken.

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47443

Dmitriy Sintsov ques...@rambler.ru changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Dmitriy Sintsov ques...@rambler.ru ---
Did not get a reply about now+nday, made a Scribunto module for generation of
past and future dates instead.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 3311] Automatic category redirects

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3311

Tyler Romeo tylerro...@gmail.com changed:

   What|Removed |Added

 CC||tylerro...@gmail.com

--- Comment #66 from Tyler Romeo tylerro...@gmail.com ---
The more you know...

The current query for getting category members is:
SELECT ...
FROM `page`
INNER JOIN `categorylinks`
FORCE INDEX (cl_sortkey)
ON ((cl_from = page_id))
LEFT JOIN `category`
ON ((cat_title = page_title) AND page_namespace = '14')
WHERE cl_to = 'Test' AND cl_type = 'page'
ORDER BY cl_sortkey
LIMIT 201

And, true enough, if you change the cl_to check from a comparison to an IN
operator, it triggers a filesort. *However*, if you instead move the contents
of the WHERE clause into the INNER JOIN condition, then the filesort
disappears. The resulting query is:

SELECT ...
FROM `page`
INNER JOIN `categorylinks`
FORCE INDEX (cl_sortkey)
ON ((cl_from = page_id) AND (cl_to IN ('Test')) AND (cl_type = 'page'))
LEFT JOIN `category`
ON ((cat_title = page_title) AND page_namespace = '14')
ORDER BY cl_sortkey
LIMIT 201

Now I'm not too much of an expert on databases, but theoretically this should
produce the exact same results (since it's an INNER JOIN) but still be
efficient (because the cl_sortkey index includes the cl_from and cl_to
columns).

This would eliminate the need for any new columns and whatnot.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47530] New: Open username policy in tooltip

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47530

   Web browser: ---
Bug ID: 47530
   Summary: Open username policy in tooltip
   Product: MediaWiki
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: User login
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: swall...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

In some current forms (e.g. English Wikipedia, French, others) and the new
redesign currently being drafted in core
(https://gerrit.wikimedia.org/r/#/c/57823/), there is either reference to or a
link to the username policy. 

Especially in our redesign, it probably makes sense to have a pithy description
of the username policy provided by a tooltip. When we've ran remote usability
tests, we've seen users go to the username policy page and then bounce back to
the account creation page. This is validated by the data from
https://meta.wikimedia.org/wiki/Schema:ServerSideAccountCreation: the logs for
which currently show that the username policy is the number three referrer for
account creation on English Wikipedia.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47530] Open username policy in tooltip

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47530

Steven Walling swall...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
 CC||mas...@wikimedia.org,
   ||mflasc...@wikimedia.org,
   ||sp...@wikimedia.org,
   ||swall...@wikimedia.org

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47531] New: Option to view/track filters their logs, topic or grouping /clubbing wise

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47531

   Web browser: ---
Bug ID: 47531
   Summary: Option to view/track filters  their logs,  topic or
grouping /clubbing  wise
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: AbuseFilter
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: mahit...@yahoo.co.in
CC: agarr...@wikimedia.org, nischay...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

Hi,

Present problems to edit filter managers and patrollers on wikis where lot many
filters are in use 

1) On single topic/subject/issue there can be multiple filters for various
reasons created as and when required and thus they are not in single order to
track or compare or make changes in them. 

For example in english wikipedia if one has to search all  filters that handle
abusive language one has to go from one page to next page seraching
visiually.SO this process can miss the fact that a filter is already available
and just not tweaking and he may end up working on a different filter or
creating a new filter effectivly causing a  duplication of activity .


Requested Solution may be 

a)Search titles  Filter ID no: Add filter IDs not in search and save search

or

b) assign topic/group/issue name to existing filters 


2) The same thing is about Special:AbuseLog  either it gives filter log of only
single  filters or all filters together 


Heare in this case solution seems simple


Special:AbuseLog laready has a search fileld Filter ID: This search field 
should accept filters ids with commas and should have a capacity to save search



*This bug is created by splitted point no 2 from bug 47494. Again in this bug
their are 2 points please guide if I do need to split it again

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 15434] Periodical run of currently disabled special pages

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=15434

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

 CC||rauna...@gmail.com

--- Comment #65 from Nemo federicol...@tiscali.it ---
*** Bug 47470 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47470] Update Wanted pages for et.wikipedia

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47470

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||federicol...@tiscali.it
 Resolution|--- |DUPLICATE

--- Comment #4 from Nemo federicol...@tiscali.it ---
(In reply to comment #3)
 See also bug 15434.

Thanks, all the reports like this have historically been merged to the main
one.

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

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 29782] Maintenance scripts waiting to be run on Wikimedia wikis (tracking)

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29782

Bug 29782 depends on bug 47470, which changed state.

Bug 47470 Summary: Update Wanted pages for et.wikipedia
https://bugzilla.wikimedia.org/show_bug.cgi?id=47470

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47494] Option to view public filter and its logs only for abuse filter management

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47494

--- Comment #2 from Mahitgar mahit...@yahoo.co.in ---
Hi,

Thnks for response I have created a separate bug for point no2 with better
description.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47532] New: Agora CSS gives labels conflicting styles

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47532

   Web browser: ---
Bug ID: 47532
   Summary: Agora CSS gives labels conflicting styles
   Product: MediaWiki
   Version: 1.22-git
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Skin and page rendering
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: sp...@wikimedia.org
CC: krinklem...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

resources/mediawiki.ui/sourcefiles/scss/components/default/_forms.scss gives
conflicting CSS for labels.  Line 25 specifies
  margin: 0;
  width: 100%
but then line 39 in the same   div block specifies
  width: auto;
  margin: 0 0 0.2em 0;

The later CSS wins according to Firebug.

Perhaps we can just remove label from the first Sass selector. But then the
label isn't styled display: block , and AIUI as a result in Firefox it's
squeezed tighter to the input field underneath.  I think you get identical
effective CSS by adding
 display: block;
 @include box-sizing(border-box);

to the label declaration, but maybe that's overthinking it.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47532] Agora CSS gives labels conflicting styles

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47532

sp...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
 CC||mas...@wikimedia.org

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47533] New: Audio player takes a long time to initialize

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47533

   Web browser: ---
Bug ID: 47533
   Summary: Audio player takes a long time to initialize
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Score
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: e...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

When requesting Vorbis output to be made available via a score invocation,
the resulting TMH player takes a long time to render. On this test page I'm
counting several seconds of wait time per score:

https://en.wikipedia.org/wiki/User:Eloquence/Score

In comparison, just embedding a [[File:Whatever.ogg]] into a page doesn't incur
the same performance penalty; the TMH player is initialized much faster in that
case.

[Tested with FF19 and Chrome 24.]

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 189] Add a music wikimodule

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=189

--- Comment #126 from Erik Moeller e...@wikimedia.org ---
Filed as bug 47533.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47532] Agora CSS gives labels conflicting styles

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47532

--- Comment #1 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Related URL: https://gerrit.wikimedia.org/r/60373 (Gerrit Change
Ibd36f818865aa5ec99cc187bef983261485966d3)

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 45580] Make the year field default to the current year on [[Special:Contribs]]

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45580

Alexandre Emsenhuber [IAlex] wikib...@emsenhuber.ch changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 CC||wikib...@emsenhuber.ch
 Resolution|--- |FIXED

--- Comment #8 from Alexandre Emsenhuber [IAlex] wikib...@emsenhuber.ch ---
Change merged.

-- 
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 47165] Don't UPGRADE SMW 1.8.0.4 data

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47165

jesus.perez jesus.pe...@upf.edu changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #5 from jesus.perez jesus.pe...@upf.edu ---
Hello,

I've got successfull in UPGRADE Semantic MediaWiki. I've installed two versions
of runJobs.php. The new version didn't go, but with the old version was ok.

Now I've installed SemanticForms Extension and I got new errors. But I'll open
a new post.

Thanks.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 35925] Wikisource related bugs and enhancements (tracking)

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35925

billinghurst billinghu...@gmail.com changed:

   What|Removed |Added

 Depends on||47533

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47533] Audio player takes a long time to initialize

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47533

billinghurst billinghu...@gmail.com changed:

   What|Removed |Added

 CC||billinghu...@gmail.com
 Blocks||35925

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47533] Audio player takes a long time to initialize

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47533

--- Comment #1 from billinghurst billinghu...@gmail.com ---
Would there be the option to *not* have Vorbis player display by default, or
have it display over the work but as required?  When the Wikisources are trying
to replicate a work it would be useful to have that capacity to preserve any
formatting that would be in place, and not have it moveed around with . A
slight delay in the player is probably of less a concern when we start plugging
this into something like Grove's [[s:en:Dictionary of Music and Musicians]]

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47524] uasort() Array was modified by the user comparison function

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47524

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

   What|Removed |Added

   Priority|Unprioritized   |Low

--- Comment #1 from Niklas Laxström niklas.laxst...@gmail.com ---
Seems to be harmless and even bogus message from PHP, though I do not
understand enough of the internals to be absolutely sure.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47501] rebuildLocalisationCache blows up the database with messages for 363 languages

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47501

--- Comment #2 from Karin Haenelt karin.haen...@kontext.fraunhofer.de ---
Yes, because we are running a wiki farm, and if we blow up all the wikis on the
farm we are running out of disk space

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47533] Audio player takes a long time to initialize

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47533

--- Comment #2 from Erik Moeller e...@wikimedia.org ---
That's already the case -- I just requested it with vorbis=1 on the example
page. See https://www.mediawiki.org/wiki/Extension:Score for documentation and
examples.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47526] Install postgresql

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47526

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Severity|normal  |enhancement

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 45780] Gerrit mangles Wikipedia permalinks with anchor

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45780

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|High|Normal

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44073] Pending Changes/FlaggedRevs on a page prevents Page Curation Toolbar from working

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44073

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Keywords||browser-test-bug

--- Comment #9 from Andre Klapper aklap...@wikimedia.org ---
The keyword is unrelated whether to its's related to browsers (whatever that
means), see its description first before removing it.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47529] MediaWiki should check ETags

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47529

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
Version|unspecified |1.22-git

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47501] rebuildLocalisationCache blows up the database with messages for 363 languages

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47501

--- Comment #3 from Karin Haenelt karin.haen...@kontext.fraunhofer.de ---
currently we are using a very simple bug fix:
$codes = array_keys( Language::getLanguageNames( true ) ); //1.18.1, and
similar in 1.20.2
$codes = array(en, de, de-formal); // our added line

alternative coding:
$wgOurLanguageCodes = array (...);
if ($wgOurLanguageCodes) {$codes = $wgOurLanguageCodes;}
else $codes = array_keys( Language::getLanguageNames( true ) );

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 45853] Have filter option to view wikidata changes only

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45853

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Severity|normal  |enhancement

-- 
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 45605] Incorrect spelling in Odia in ULS

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45605

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #9 from Niklas Laxström niklas.laxst...@gmail.com ---
Per Siebrand above.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47531] Option to group filters their logs

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47531

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Lowest
 CC|aklap...@wikimedia.org  |
Summary|Option to view/track|Option to group filters 
   |filters  their logs,   |their logs
   |topic or grouping /clubbing |
   | wise   |
   Severity|normal  |enhancement

--- Comment #1 from Andre Klapper aklap...@wikimedia.org ---
feature request - severity = enhancement

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47528] Create a VisualEditor plugin tool to add/edit Scores

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47528

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47125] Improve performance of dispatchChanges::getPendingChanges

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47125

--- Comment #4 from Gerrit Notification Bot gerritad...@wikimedia.org ---
https://gerrit.wikimedia.org/r/59388 (Gerrit Change
I677d5fe46fcd7cf565443aa581f69e73c28fa940) | change APPROVED and MERGED [by
Aude]

-- 
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 47415] creation of new claims (and perhaps other edits) can be (auto)patrolled on wikidata

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47415

T. H. Kelly pinkampersand.wikime...@gmail.com changed:

   What|Removed |Added

 CC||pinkampersand.wikimedia@gma
   ||il.com

--- Comment #3 from T. H. Kelly pinkampersand.wikime...@gmail.com ---
Echoing Lego's comment, if there's a way to turn off the log function for
*automatic* patrolling, but not manual, that'd be great. In fact, even without
any server-related concerns that'd be great, since a log entry accompanying
every edit essentially makes the patrol logs impossible to navigate. (There are
a handful of circumstances where it's important to know who patrolled a page,
e.g. if an obviously vandalistic page has been marked as patrolled and you want
to know who did that, so you can explain things to them or pull their rights if
necessary.)

-- 
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 47534] New: Converting to PNG...GS exited with status: 9

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47534

   Web browser: ---
Bug ID: 47534
   Summary: Converting to PNG...GS exited with status: 9
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: major
  Priority: Unprioritized
 Component: Score
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: g...@grin.hu
Classification: Unclassified
   Mobile Platform: ---

https://hu.wikipedia.org/wiki/Szerkeszt%C5%91:Grin/lilypond

(First one may be me, but the ghostscript error cannot be circumvented.)


Processing `.../file.ly'
Parsing...
.../file.ly:14:0: error: syntax error, unexpected \header

\header {
.../file.ly:34:24: error: syntax error, unexpected '}'

}Interpreting music... [8]
Preprocessing graphical objects...
Finding the ideal number of pages...
Fitting music on 1 page...
Drawing systems...
Layout output to `file.eps'...
Converting to PNG...GS exited with status: 9

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47534] Converting to PNG...GS exited with status: 9

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47534

--- Comment #1 from Peter Gervai (grin) g...@grin.hu ---
Possibly should be reassigned to wikimedia admins... your reassign skills are
appreciated. ;)

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47523] Add 'Retina' hi-dpi display support to Extension:Score

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47523

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Low
   Severity|normal  |enhancement

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47533] Audio player takes a long time to initialize

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47533

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Keywords||performance
   Priority|Unprioritized   |Normal

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27334] Enable the adding of rel=license ; property=cc:attributionName on File pages

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27334

Derk-Jan Hartman hartman.w...@gmail.com changed:

   What|Removed |Added

 Depends on||33886

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 33886] to support for microdata and rdfa, allow a tags so external links can have ref/rel attributes

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=33886

Derk-Jan Hartman hartman.w...@gmail.com changed:

   What|Removed |Added

 Blocks||27334

-- 
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 47534] Unable to compile LilyPond input file: Converting to PNG...GS exited with status: 9

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47534

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |High
Summary|Converting to PNG...GS  |Unable to compile LilyPond
   |exited with status: 9   |input file: Converting to
   ||PNG...GS exited with
   ||status: 9

--- Comment #2 from Andre Klapper aklap...@wikimedia.org ---
Is the c,4 a typo?

== Example ==
score
\header {
  title =   Something
  enteredby =   grin
}
\version 2.14.2
\relative c' { 
c e c e g2 g2  
c,4 e c e g2 g2   
c4 b a g f2 a2 
g4 f e d c2 c2
}
/score

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47275] morebots goes into an infinite loop of doing nothing after a connection reset

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47275

Ori Livneh o...@wikimedia.org changed:

   What|Removed |Added

 CC||o...@wikimedia.org

--- Comment #3 from Ori Livneh o...@wikimedia.org ---
(In reply to comment #1)
 Added some relevant developers to the CC list.

Is this urgent? If not, I'd like to continue working with Legoktm on his patch,
which is coming along well.

Some notes to help with testing changes:

* irc 0.4.8-1 is available in Ubuntu Precise as 'python-irclib'
* Argument parsing is faulty at the moment, which means you *have* to specify a
config file by passing --config=/path/to/mybot.py
* There's a sample configuration file in the repo: 'config.py'

-- 
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 47289] l10n cache doesn't actually cache (due to specific extension localization pair not in hash, marking the cache as invalid)

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47289

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

Summary|l10n cache doesn't actually |l10n cache doesn't actually
   |cache   |cache (due to specific
   ||extension localization pair
   ||not in hash, marking the
   ||cache as invalid)
 Whiteboard||aklapper-moreinfo

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47517] Catchable fatal error: Argument 4 passed to EducationProgram\ArticleTable::__construct() must be an array, integer given

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47517

--- Comment #1 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Related URL: https://gerrit.wikimedia.org/r/60376 (Gerrit Change
Id72faa91f88e2359d44129b07a32e3063b49a075)

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47518] Thumbnails that are inline should break paragraphs

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47518

--- Comment #1 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Related URL: https://gerrit.wikimedia.org/r/60378 (Gerrit Change
I47ac2c0e73331bb6829427d58138984337df14e0)

-- 
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 47518] Thumbnails that are inline should break paragraphs

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47518

--- Comment #2 from ssas...@wikimedia.org ---
Ignore this -- I used the wrong bug id in the commit message.

-- 
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 46722] reload is necessary to add second qualifier

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46722

Lydia Pintscher lydia.pintsc...@wikimedia.de changed:

   What|Removed |Added

   Priority|Unprioritized   |High
   Severity|normal  |major

--- Comment #1 from Lydia Pintscher lydia.pintsc...@wikimedia.de ---
Setting this to high/major as this is annoying more and more people.

-- 
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 47513] Parsoid: Numbered Cite blocks are not generated starting from 1 but from a (random?) other number

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47513

--- Comment #3 from ssas...@wikimedia.org ---
Patch submitted @ https://gerrit.wikimedia.org/r/#/c/60378/2

-- 
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 47465] OGV thumbnails can have artifacts (squares)

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47465

--- Comment #4 from Jan Gerber jger...@wikimedia.org ---
This is a limitation/bug of libav/ffmpeg regarding ogg theora videos with large
gaps between keyframes. We might be able to tune this but some videos will fail
unless libav/ffmpeg is fixed to decode from the previous keyframe.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47535] New: SF_UploadWindow2.php ERROR

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47535

   Web browser: ---
Bug ID: 47535
   Summary: SF_UploadWindow2.php ERROR
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: SemanticForms
  Assignee: yaro...@gmail.com
  Reporter: jesus.pe...@upf.edu
Classification: Unclassified
   Mobile Platform: ---

Created attachment 12159
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=12159action=edit
SF_UploadWindow2.php

Hello,

I've installed SemanticForms extension version 2.1 from
http://www.mediawiki.org/wiki/Extension:Semantic_Forms/ and I saw all wiki
pages correctly, except when I go into SPECIAL PAGES in my toolbox. In this
page I see the following error:

Strict Standards: Declaration of SFUploadWindow2::userCanExecute() should be
compatible with that of SpecialPage::userCanExecute() in
/usr/local/apache2/htdocs/mediawiki/extensions/SemanticForms/specials/SF_UploadWindow2.php
on line 697

I've attached SF_UploadWindow2.php.

Thank you.

-- 
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 47536] New: \cadenzaOn Lilypond command does not work

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47536

   Web browser: ---
Bug ID: 47536
   Summary: \cadenzaOn Lilypond command does not work
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: Score
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: mediazi...@gl00on.net
Classification: Unclassified
   Mobile Platform: ---

The \cadenzaOn Lilypond command for creating unmetered music[1] does not work.
For instance, the following (fairly minimal) snippet throws an error:

 score\relative c' { \cadenzaOn c1 \cadenzaOff }/score

Messages:

 Unable to compile LilyPond input file:

 Processing `.../file.ly'
 Parsing...
 Interpreting music... 
 warning: cannot find or create `Timing' called `'
 warning: cannot find or create `Timing' called `'
 Preprocessing graphical objects...
 Interpreting music... 
 warning: cannot find or create `Timing' called `'
 warning: cannot find or create `Timing' called `'

 exited with status: 139

1.
http://lilypond.org/doc/v2.17/Documentation/notation/displaying-rhythms#unmetered-music

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47537] New: PHP fatal error when override_midi is used and a Lilypond error is encountered

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47537

   Web browser: ---
Bug ID: 47537
   Summary: PHP fatal error when override_midi is used and a
Lilypond error is encountered
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: Score
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: mediazi...@gl00on.net
Classification: Unclassified
   Mobile Platform: ---

In addition to bug 47536, attempting to use the override_midi property on a
score snippet that throws a Lilypond error causes a PHP fatal error.

For instance, this:

 score override_midi=Las notas Musicales .MID\relative c' { \cadenzaOn
c1 \cadenzaOff }/score

yields this upon attempts to save or preview the page:

 PHP fatal error in
/usr/local/apache/common-local/php-1.22wmf2/extensions/Score/Score.body.php
line 130:
 Object of class ForeignDBFile could not be converted to string

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 46333] Make new user login/account creation the only version after testing and MW namespace cleanup

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46333

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |High

--- Comment #1 from Andre Klapper aklap...@wikimedia.org ---
Matthew: Is there any timeframe (or Is this stable enough / Should any bug
reports get fixed first and hence block this one which is about 'deployment')?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47538] New: qtop command not on all OGE submit hosts

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47538

   Web browser: ---
Bug ID: 47538
   Summary: qtop command not on all OGE submit hosts
   Product: Wikimedia Labs
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: trivial
  Priority: Unprioritized
 Component: tools
  Assignee: m...@uberbox.org
  Reporter: addshorew...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

The qtop command only appears to be on -login.
Could it also be on all submission hosts?

-- 
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 46422] convertPlural makes using 0= and 1= rules impossible

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46422

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
Version|unspecified |1.22-git
   Severity|normal  |major

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 46496] tablesorter should support genitive month names

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46496

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |High

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 46424] Urls with curid query indexed by Google

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46424

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 46561] cleanUp UTF normalization tests should use data providers

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46561

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Keywords||performance
   Priority|Unprioritized   |Normal

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 46561] cleanUp UTF normalization tests should use data providers

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46561

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

Version|unspecified |1.22-git

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 46588] worker-javascript.js is 404 when editing

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46588

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
Version|unspecified |1.22-git

--- Comment #4 from Andre Klapper aklap...@wikimedia.org ---
(In reply to comment #3 by Ori)
 I'll poke around a bit.

Ori: Did you have time to do that?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 46634] Avoid breakage of conversion rules from [numeric-only string] to [something else] by replacing array_merge() calls by operator+

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46634

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
Version|unspecified |1.22-git
Summary|Avoid breakage of   |Avoid breakage of
   |conversion rules from   |conversion rules from
   |[numeric-only string] to|[numeric-only string] to
   |[something else]|[something else] by
   ||replacing array_merge()
   ||calls by operator+

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 46545] Add SASS and Compass support to ResourceLoader

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46545

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Low

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 46640] Add proper email bounce handling to MediaWiki (with VERP)

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46640

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Low
Version|unspecified |1.22-git
Summary|Add proper bounce handling  |Add proper email bounce
   |to MediaWiki (with VERP)|handling to MediaWiki (with
   ||VERP)
   Severity|normal  |enhancement

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 46463] Edit preview renders in wrong directionality

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46463

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Keywords||patch-in-gerrit
   Priority|Unprioritized   |Normal
 Blocks||745

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 745] RTL/bidirectional issues (tracking)

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=745

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

 Depends on||46463

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 46549] File size shrinks during rotation (action: 'imagerotate') // Rotation not lossless?

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46549

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
   See Also||https://rt.wikimedia.org/Ti
   ||cket/Display.html?id=4821

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 45589] Add custom field to Bugzilla for RT (rt.wikimedia.org)

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45589

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

--- Comment #4 from Andre Klapper aklap...@wikimedia.org ---
Deployed, see e.g. https://bugzilla.wikimedia.org/show_bug.cgi?id=46549

-- 
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 47402] Better diff for revision deletions: Show indicator of what visibility restrictions were set or unset

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47402

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Low
Version|unspecified |1.22-git
Summary|Better diff for revision|Better diff for revision
   |deletions   |deletions: Show indicator
   ||of what visibility
   ||restrictions were set or
   ||unset
   Severity|normal  |enhancement

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47370] Internet Explorer prints only one page when 8 pages are expected

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47370

--- Comment #2 from Andre Klapper aklap...@wikimedia.org ---
This sounds a lot like an IE bug to me (or less likely a printer driver bug) -
can the user reproduce the problem with a different browser?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47370] Internet Explorer prints only one page when 8 pages are expected

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47370

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Low

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47375] Transaction idle or pre-commit callbacks still pending

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47375

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Low

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47278] LoginForm returns wrongpassword instead of something sensible when the username/password is correct, but no domain is provided

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47278

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Low
Version|unspecified |1.22-git
 Blocks||38638

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38638] Interface messages needing rewording or documentation and other issues with existing messages (tracking)

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38638

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

 Depends on||47278

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47206] Backslash in database password field when installing MediaWiki causes issues by getting escaped

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47206

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
Summary|Backslash in database   |Backslash in database
   |password field when |password field when
   |installing MediaWiki causes |installing MediaWiki causes
   |issues  |issues by getting escaped

--- Comment #2 from Andre Klapper aklap...@wikimedia.org ---
MZMcBride: Which MW version is this about?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 46741] The same name detection prevents uploading same file in different format.

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46741

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Low
Version|unspecified |1.22-git

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47356] Use of undefined constant JSON_UNESCAPED_SLASHES

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47356

--- Comment #6 from Fomafix foma...@googlemail.com ---
It would be nice to have a checker which checks all required
packages/extensions/functions. This checker should run on installation and on
the fatal error exception error page.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47539] New: SemanticForms ERRORS to create a category, a form, a template and start of form

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47539

   Web browser: ---
Bug ID: 47539
   Summary: SemanticForms ERRORS to create a category, a form, a
template and start of form
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: SemanticForms
  Assignee: yaro...@gmail.com
  Reporter: jesus.pe...@upf.edu
Classification: Unclassified
   Mobile Platform: ---

Hello,

I've installed SemanticForms Extension version 2.1. In Special Pages I have the
following options in Semantic Forms:
* Create a category
* Create a class
* Create a form
* Create a property
* Create a template
* Edit with form
* Run query
* Start of form

When I click on Create a category I see the following error:

Fatal error: Call to undefined method Xml::hidden() in
/usr/local/apache2/htdocs/mediawiki/extensions/SemanticForms/specials/SF_CreateCategory.php
on line 87

When I click on Create a form I see the following error:

Fatal error: Call to undefined method Xml::hidden() in
/usr/local/apache2/htdocs/mediawiki/extensions/SemanticForms/specials/SF_CreateForm.php
on line 205

The same with Create a template:

Fatal error: Call to undefined method SMWDIProperty::getWikiValue() in
/usr/local/apache2/htdocs/mediawiki/extensions/SemanticForms/specials/SF_CreateTemplate.php
on line 40

And finally with Start of form:

Fatal error: Call to undefined method Xml::hidden() in
/usr/local/apache2/htdocs/mediawiki/extensions/SemanticForms/specials/SF_FormStart.php
on line 109

Someone help me.

Thank you.

-- 
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 47457] Slow user/user talk pages load on Commons with Firefox

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47457

--- Comment #6 from Robert Myers bidgee-w...@virginbroadband.com.au ---
Disabling WikiLove in the Preferences seems to fix the issue (for both
Firefox and Safari). Tell
websites I do not want to be tracked was only a temporary fix, since the issue
returned, whether it was selected or not.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47540] New: Freeze some components for archived extensions in MediaWiki extension product

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47540

   Web browser: ---
Bug ID: 47540
   Summary: Freeze some components for archived extensions in
MediaWiki extension product
   Product: Wikimedia
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Bugzilla
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: liang...@gmail.com
CC: aklap...@wikimedia.org, s...@reedyboy.net,
thehelpfulonew...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

The first one, ABC, has been archived[1], for example.

Maybe also close existing open bugs as resolved wontfix?

[1]
https://www.mediawiki.org/w/index.php?title=Extension:ABCdiff=622929oldid=571606

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47541] New: Update the description of Extension:Score to include ABC notation.

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47541

   Web browser: ---
Bug ID: 47541
   Summary: Update the description of Extension:Score to include
ABC notation.
   Product: Wikimedia
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Bugzilla
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: liang...@gmail.com
CC: aklap...@wikimedia.org, s...@reedyboy.net,
thehelpfulonew...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

See [[Extension:Score]]. ABC notation is also supported in addition to
LilyPond.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47541] Update the description of Extension:Score to include ABC notation.

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47541

--- Comment #1 from Liangent liang...@gmail.com ---
Should be [[mw:Extension:Score]].

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43911] Special:Undelete fails when too many checkboxes are checked

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43911

Graham87 graha...@jazi.net changed:

   What|Removed |Added

 CC||graha...@jazi.net

--- Comment #8 from Graham87 graha...@jazi.net ---
This bug was discussed in this thread on the technical village pump:
http://en.wikipedia.org/wiki/Wikipedia:Village_pump_(technical)#Bug_in_undeleting_2_pages_with_many_edits

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47541] Update the description of Extension:Score to include ABC notation.

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47541

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

   What|Removed |Added

  Component|Bugzilla|Score
Product|Wikimedia   |MediaWiki extensions
   Severity|normal  |enhancement

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47541] Update the description of Extension:Score to include ABC notation.

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47541

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

   What|Removed |Added

 CC|s...@reedyboy.net|
 Blocks||1

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on 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)

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=1

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

   What|Removed |Added

 Depends on||47541

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47541] Update the description of Extension:Score to include ABC notation.

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47541

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

   What|Removed |Added

 CC||s...@reedyboy.net
  Component|Score   |Bugzilla
Product|MediaWiki extensions|Wikimedia

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47541] Update the description of Extension:Score to include ABC notation.

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47541

--- Comment #2 from Sam Reed (reedy) s...@reedyboy.net ---
It is now: Render and display musical scores with LilyPond and ABC (Homepage)

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 46875] [TUX] Proofread tooltip stuck in wrong place

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46875

--- Comment #2 from Niklas Laxström niklas.laxst...@gmail.com ---
Still happening. Will attach screenshot. The filters actually do not depend on
the user, you should see the same thing if you are logged in. Just make sure
that the tooltip appears before switching filter or mode.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47542] New: Catchable fatal error

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47542

   Web browser: ---
Bug ID: 47542
   Summary: Catchable fatal error
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: SemanticForms
  Assignee: yaro...@gmail.com
  Reporter: jesus.pe...@upf.edu
Classification: Unclassified
   Mobile Platform: ---

Hello,

I've installed SemanticForms Extension. I thought it was all ok. But, there are
some pages with the following error:

Catchable fatal error: Argument 1 passed to SMWSQLStore3::getInProperties()
must be an instance of SMWDataItem, instance of SMWWikiPageValue given, called
in
/usr/local/apache2/htdocs/mediawiki/extensions/SemanticForms/includes/SF_FormLinker.php
on line 36 and defined in
/usr/local/apache2/htdocs/mediawiki/extensions/SemanticMediaWiki/includes/storage/SQLStore/SMW_SQLStore3.php
on line 313

I don't know because there are some pages ok and anothers with that error.

When I've installed Semantic Extension and execute php
/maintenance/runJobs.php, all pages were good.

Regards.
Thank you.

-- 
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 47358] Fatal error: Call to a member function format() on a non-object in Language.php on line 1325

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47358

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Niklas Laxström niklas.laxst...@gmail.com ---
I saw a fix for this in gerrit 60079.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47262] Galician localization for the Scribunto extension in Galician

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47262

--- Comment #16 from Gerrit Notification Bot gerritad...@wikimedia.org ---
https://gerrit.wikimedia.org/r/59652 (Gerrit Change
I738ad78b30193ca9227a932b768a7c62bf76022c) | change APPROVED and MERGED [by
jenkins-bot]

-- 
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 47543] New: Make Russian as the fallback language for bxr.wikipedia.org instead of English language

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47543

   Web browser: ---
Bug ID: 47543
   Summary: Make Russian as the fallback language for
bxr.wikipedia.org instead of English language
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: major
  Priority: Unprioritized
 Component: Language setup
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: grazero...@rambler.ru
Classification: Unclassified
   Mobile Platform: ---

Here's the previous discussion:
https://bugzilla.wikimedia.org/show_bug.cgi?id=46751
Nemo 2013-04-13 08:49:57 MSD: Please file a separate request to make ru the
fallback language for bxr, after confirming with the community that they don't
mind the Russian default.

Buryatia is Russian Republic and almost 100 % of Buryats know
Russian language, not English. And also Buryat language uses Cyrillic script
(as Russian), not Latin script (as English) so many international words simply
no need do translate.
-
Here is discussion with previous sysop of bxr.wikipedia Gubin Michail:
http://bxr.wikipedia.org/wiki/Википеэди:Community_Portal/Archive_2012#.D0.97.D0.B0.D1.81.D0.B8.D0.BB.D1.8C.D0.B5_.D0.BB.D0.B0.D1.82.D0.B8.D0.BD.D0.B8.D1.86.D1.8B_.D0.B2_.D0.BA.D0.BE.D0.B4.D0.B5

He argeed that it will be better to using Russian instead of English. Here's
the opinion of another native speaker, user Aldar Badmaev:
http://bxr.wikipedia.org/w/index.php?title=User_talk%3ASoul_Traindiff=31713oldid=31702

«... As for the system, I think it is important to translate it in the Buryat
language. If necessary, [using] Russian language.»

So and I, temporary sysop of bxr.wikipedia.org, user Soul Train, request to
change the fallback language for bxr.wikipedia.org from English to Russian.
Thanks.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47544] New: references/ list item must not wrap the text in span

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47544

   Web browser: ---
Bug ID: 47544
   Summary: references/ list item must not wrap the text in
span
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Keywords: easy
  Severity: normal
  Priority: Unprioritized
 Component: Cite
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: dann...@email.cz
Blocks: 700
Classification: Unclassified
   Mobile Platform: ---

Currently, the code of reference item in reference list is:

li id=cite_note-1
  span class=mw-cite-backlinka href=#cite_ref-1↑/a/span
  span class=reference-textLorem ipsum./span
/li


This is wrong, because it disallows block elements in references. (In fact, if
one puts the block elements there, they are being converted by Tidy in very
unpredictable way.)


The easiest solution is to remove the span class=reference-text wrapper.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 700] Code quality issues (tracking)

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=700

Danny B. dann...@email.cz changed:

   What|Removed |Added

 Depends on||47544

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 4073] Support exporting content in DocBook format

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=4073

--- Comment #7 from Molly White molly.whi...@gmail.com ---
DocBook is different from wikitext/HTML/etc. because its tags mark what the
content is, not how it should be displayed. Instead of using, for example,
==Chapter== and h1Chapter/h1, it uses chapterChapter/chapter. Then the
formats to which it is later converted can decide how they want to display
chapter titles, if at all, without having to hope that every == or h1 denotes
the beginning of a chapter. Nemo's energy analogy is apt.

I do believe that DocBook should be added as an exportation format, although I
disagree that we need to wait for a book concept to be added. DocBook is no
more exclusive to books than it is to technical documentation; Wikipedia
articles can just as easily benefit from this format. That said, it might be
wise to wait until a better book representation is created before putting too
much effort into implementing this for Wikibooks/Wikisource.

I'll CC jeremyb on this -- he's discussed his interest in this becoming a
feature, and may have some further input.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47313] Disable You have new messages for anonymous users after 30 days (as IPs often are dynamic)

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47313

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Low
Version|unspecified |1.22-git
Summary|Disable You have new   |Disable You have new
   |messages for anonymous |messages for anonymous
   |users after 30 days |users after 30 days (as IPs
   ||often are dynamic)

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47544] references/ list item must not wrap the text in span

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47544

Danny B. dann...@email.cz changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
 Whiteboard||usability

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47543] Make Russian as the fallback language for bxr.wikipedia.org instead of English language

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47543

--- Comment #1 from Sam Reed (reedy) s...@reedyboy.net ---
We don't have a MessagesBxr.php ? :/

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 47545] New: delete git repos operations/debs/python-{statsd,voluptuous}

2013-04-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=47545

   Web browser: ---
Bug ID: 47545
   Summary: delete git repos
operations/debs/python-{statsd,voluptuous}
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: git-deploy
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: has...@free.fr
CC: has...@free.fr, rlan...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

Can you delete the following git repositories:

operations/debs/python-statsd
operations/debs/python-voluptuous

We originally wanted to handle the package grunt work in Gerrit, finally we use
upstream SVN repository to attract code review from the Debian folks.

Thanks!

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


  1   2   3   4   5   >