[Bug 24639] Special:Allmessages message grouping

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24639

--- Comment #5 from Nemo federicol...@tiscali.it ---
(In reply to JAn Dudík from comment #4)
 What about adding some posiibility of search in messages?

https://translatewiki.net/wiki/Special:SearchTranslations

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


[Bug 54033] Files/images should be fetched in batch by parser, not one at a time

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=54033

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

 Blocks||64056

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


[Bug 64056] [InstantCommons] Page with hundreds image links takes 60 seconds to parse

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64056

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

 Depends on||54033

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


[Bug 58970] Promoted sandbox accounts don't get NewUserMessage welcome

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58970

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #5 from Nemo federicol...@tiscali.it ---
Worked: https://translatewiki.net/wiki/User_talk:Joscarlossr

-- 
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 65332] New: infoAction::pageCounts use rev_user instead of rev_user_text

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65332

Bug ID: 65332
   Summary: infoAction::pageCounts use rev_user instead of
rev_user_text
   Product: MediaWiki
   Version: 1.23-git
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Database
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: sprin...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

InfoAction::pageCounts() does these two queries:

// Total number of distinct authors
$authors = (int)$dbr-selectField(
'revision',
'COUNT(DISTINCT rev_user_text)',
array( 'rev_page' = $id ),
__METHOD__
);

SELECT COUNT(DISTINCT rev_user_text) FROM `revision` WHERE rev_page = '453'
LIMIT 1;

// Recent number of distinct authors
$authors = (int)$dbr-selectField(
'revision',
'COUNT(DISTINCT rev_user_text)',
array(
'rev_page' = $id,
rev_timestamp =  . $dbr-addQuotes( $threshold )
),
__METHOD__
);

SELECT COUNT(DISTINCT rev_user_text) FROM `revision` WHERE rev_page = '453' AND
rev_timestamp = '2014041500' LIMIT 1;

Generally OK except for certain pages which have quite a lot of hits, such as
the wikidata example id 443 above. Sometimes examples run for up to 300s if
data is cold. Obviously these results are for caching, but they correspond to
disk io spikes which would be nice to avoid.

These versions using rev_user are faster:

SELECT COUNT(DISTINCT rev_user) FROM `revision` WHERE rev_page = '453' LIMIT 1;

SELECT COUNT(DISTINCT rev_user) FROM `revision` WHERE rev_page = '453' AND
rev_timestamp = '2014041500' LIMIT 1;

Two reasons:

1. Counting integers is marginally faster than strings. Small deal.

2. Optimizer choose to retrieve the results entirely from existing indexes
without touching rows at all. Big deal!

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


[Bug 5451] Moving category description pages

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=5451

--- Comment #24 from Nemo federicol...@tiscali.it ---
Added to https://www.mediawiki.org/wiki/MediaWiki_1.24

-- 
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 49156] Add mediawiki.cookie module to allow reading and writing cookies with correct settings

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=49156

Matthew Flaschen mflasc...@wikimedia.org changed:

   What|Removed |Added

   Target Milestone|1.23.0 release  |1.24.0 release

--- Comment #3 from Matthew Flaschen mflasc...@wikimedia.org ---
I think this only needs to go in 1.24, unless someone needs it backported.

-- 
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 65332] infoAction::pageCounts use rev_user instead of rev_user_text

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65332

Sean Pringle sprin...@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 65333] Wikibase\EntityPerPageTable::getItemsWithoutSitelinks slow query with large LIMIT offset

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65333

Sean Pringle sprin...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal

-- 
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 65333] New: Wikibase\EntityPerPageTable::getItemsWithoutSitelinks slow query with large LIMIT offset

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65333

Bug ID: 65333
   Summary: Wikibase\EntityPerPageTable::getItemsWithoutSitelinks
slow query with large LIMIT offset
   Product: MediaWiki extensions
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: sprin...@wikimedia.org
CC: wikidata-b...@lists.wikimedia.org
   Web browser: ---
   Mobile Platform: ---

This query form appears in the slow log for wikidatawiki on WMF S5:

SELECT /* Wikibase\EntityPerPageTable::getItemsWithoutSitelinks ? */
epp_entity_id AS entity_id FROM `wb_entity_per_page` LEFT JOIN
`wb_items_per_site` ON ((ips_item_id = epp_entity_id)) WHERE (ips_site_page IS
NULL) AND epp_entity_type = 'item' ORDER BY epp_page_id DESC LIMIT 194, 51;

Offset 194... wow! :-)

Can we cap the possible limit offset, or handle pagination differently?

-- 
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 65334] New: Translation help

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65334

Bug ID: 65334
   Summary: Translation help
   Product: Parsoid
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: General
  Assignee: gwi...@wikimedia.org
  Reporter: nehaldc...@gmail.com
CC: jforres...@wikimedia.org, ssas...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

https://translatewiki.net/w/i.php?title=Supportoffset=20140515062059lqt_mustshow=42240#translation_help_42217

This is the page where I asked for help. In sa.wikipedia page translated things
are not shown, Please do something... 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 65335] New: MWException in preferences file when selecting Mathjax rendering.

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65335

Bug ID: 65335
   Summary: MWException in preferences file when selecting Mathjax
rendering.
   Product: MediaWiki extensions
   Version: master
  Hardware: PC
OS: Linux
Status: UNCONFIRMED
  Severity: major
  Priority: Unprioritized
 Component: Math
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: fe...@kngnt.org
CC: peter.krautzber...@mathjax.org, phy...@ckurs.de
   Web browser: Firefox
   Mobile Platform: ---

Following directions from Math extension wiki, I have disabled PNG rendering
($wgMathValidModes = array( MW_MATH_SOURCE );). However, this setting in
LocalSettings.php leads to a MWException in preferences, if previously have not
been set Appearance-Math preferences to Leave it as Tex and Mathjax.

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


[Bug 65332] infoAction::pageCounts use rev_user instead of rev_user_text

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65332

Kunal Mehta (Legoktm) legoktm.wikipe...@gmail.com changed:

   What|Removed |Added

 CC||b...@mzmcbride.com,
   ||legoktm.wikipe...@gmail.com

--- Comment #1 from Kunal Mehta (Legoktm) legoktm.wikipe...@gmail.com ---
I believe the reason it's using rev_user_text instead of rev_user is so that
different IP addresses are considered to be different users. With rev_user, all
IPs just show up are 0, so they'd be counted as one user.

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


[Bug 65315] anchor links to each beta feature

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65315

Gerrit Notification Bot gerritad...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

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


[Bug 65315] anchor links to each beta feature

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65315

--- Comment #1 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 133419 had a related patch set uploaded by Legoktm:
Add an anchor for individual features

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

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


[Bug 65315] anchor links to each beta feature

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65315

--- Comment #2 from Kunal Mehta (Legoktm) legoktm.wikipe...@gmail.com ---
(In reply to Kaity Hammerstein from comment #0)
 Add anchor links to each feature so that a user could send someone directly
 to a feature. For example,
 https://en.wikipedia.org/wiki/Special:Preferences#mw-prefsection-
 betafeatures#VisualEditor

I don't think double anchors like that even work?

In my patch the links are created like
https://en.wikipedia.org/wiki/Special:Preferences#mw-prefsection-betafeatures-betafeatures-vector-compact-personal-bar

Where betafeatures-vector-compact-personal-bar is the preference key used for
the CPB BF in VectorBeta. So for VE it would be visualeditor-enable.

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


[Bug 65315] Beta Features: Provide an anchor link for each beta feature

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65315

James Forrester jforres...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
   Assignee|wikibugs-l@lists.wikimedia. |legoktm.wikipe...@gmail.com
   |org |
Summary|anchor links to each beta   |Beta Features: Provide an
   |feature |anchor link for  each beta
   ||feature
   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 64685] Template used as campaign headerLabel is cached unwantedly

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64685

--- Comment #9 from Gilles Dubuc gdu...@wikimedia.org ---
You'll need to re-save the template and the changes should trickle down. The
caching introduced at the end of last year was probably introduced as an
operational necessity, I imagine that the lack of caching was inefficient. That
sort of thing is rarely introduced for frivolous reasons, in all likelihood it
means that the old cache-less technique was a strain on servers.

The caching is what's preventing the time-based template from updating
automatically. Re-saving each campaign shouldn't be necessary, just re-saving
the common template should do the job. That sounds like a reasonable workaround
to me. The automatic time-based conditions won't work (since you have to
re-save the template anyway), but at least there's only one template to update
for all campaigns. Thus it scales to any amount of campaigns running at the
same time. I agree that having to re-save all campaigns would be a major
inconvenience and time sink, but it's not necessary (granted, once again, that
the template existed the last time the campaigns were saved).

The issue of having to re-save the template at a specific time remains the only
inconvenience, but it's a side-effect of the caching that I think can't be
worked around easily. I'm not very familiar with templates, could you show me
what rules/syntax are used for the time-based stuff? This way I could
investigate how they work and if there's any chance the campaigns could support
them better. I'm not very hopeful at this point, though, I think it's quite
likely that this limitation is going to be impossible to avoid.

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


[Bug 65067] Enable VisualEditor as Beta Feature on Wikimedia Commons

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65067

James Forrester jforres...@wikimedia.org changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #5 from James Forrester jforres...@wikimedia.org ---
Now live.

-- 
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 65005] Wikimedia Hackathon Zürich 2014

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65005
Bug 65005 depends on bug 65067, which changed state.

Bug 65067 Summary: Enable VisualEditor as Beta Feature on Wikimedia Commons
https://bugzilla.wikimedia.org/show_bug.cgi?id=65067

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED

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


[Bug 37883] Bug and feature requests related to Wikimedia Commons (tracking)

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37883
Bug 37883 depends on bug 65067, which changed state.

Bug 65067 Summary: Enable VisualEditor as Beta Feature on Wikimedia Commons
https://bugzilla.wikimedia.org/show_bug.cgi?id=65067

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED

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


[Bug 65322] VisualEditor: Font is too small in dialogs in standalone VE

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65322

James Forrester jforres...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Low
 Status|NEW |ASSIGNED

-- 
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 52463] VisualEditor: Media insertion dialog should display a message if no media is found for the given search

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52463

James Forrester jforres...@wikimedia.org changed:

   What|Removed |Added

   Target Milestone|--- |VE-deploy-2014-05-15

-- 
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 65314] VisualEditor: [Regression pre-wmf5] Make full size button remains disabled for any image in Betalabs

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65314

James Forrester jforres...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |High
   Target Milestone|--- |VE-deploy-2014-05-15

-- 
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 65321] VisualEditor: Use $.when() rather than sourceCount in MediaSearchWidget

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65321

James Forrester jforres...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
 Status|NEW |ASSIGNED

-- 
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 50955] VisualEditor: Clearer message when cancelling out of active edit

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=50955

James Forrester jforres...@wikimedia.org changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|jforrester+veteambztickets@ |kren...@wikimedia.org
   |wikimedia.org   |
   Target Milestone|--- |VE-deploy-2014-05-15

-- 
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 40590] Ogg files stammer

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=40590

TeleComNasSprVen drevit...@gmail.com changed:

   What|Removed |Added

 CC||drevit...@gmail.com
Web browser|--- |Firefox

--- Comment #11 from TeleComNasSprVen drevit...@gmail.com ---
Can you still reproduce this with the latest version of Firefox?

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


[Bug 65243] Flow: Obey the Exlinks gadget (open external links in new tab/window)

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65243

Kunal Mehta (Legoktm) legoktm.wikipe...@gmail.com changed:

   What|Removed |Added

 CC||legoktm.wikipe...@gmail.com

--- Comment #3 from Kunal Mehta (Legoktm) legoktm.wikipe...@gmail.com ---
(In reply to Erik Bernhardson from comment #2)
 you could just change the selector from $('a.external') to $('a.external,
 a[rel=mw:ExtLink]'). then it would work for all parsoid content, but i
 don't have an edit button for that gadget.

Why isn't parsoid adding the 'external' class?

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


[Bug 65335] MWException in preferences file when selecting Mathjax rendering.

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65335

--- Comment #1 from physikerwelt phy...@ckurs.de ---
did you set 
/**
 * Option to use MathJax library to do client-side math rendering
 * when JavaScript is available. In supporting browsers this makes nice output
 * that's scalable for zooming, printing, and high-resolution displays.
 *
 * Not guaranteed to be stable at this time.
 */
$wgUseMathJax = true;
The correct name would be $wgMathJax, since $wgUseMathJax violates the naming
conventions and makes it difficould to find, given the large amount of config
option.
I made several attempts to change that but I never got code review for that. So
I resigned from that change.

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


[Bug 65320] VisualEditor: Create hooks for extensions to show/hide things when VE activates/deactivates

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65320

James Forrester jforres...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
   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 64772] VisualEditor: On load, async pre-load all the TemplateData for the page to make editing templates speedier

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64772

James Forrester jforres...@wikimedia.org changed:

   What|Removed |Added

   Target Milestone|VE-deploy-2014-05-15|---

--- Comment #2 from James Forrester jforres...@wikimedia.org ---
(Needs performance investigation.)

-- 
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 65243] Flow: Obey the Exlinks gadget (open external links in new tab/window)

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65243

Kunal Mehta (Legoktm) legoktm.wikipe...@gmail.com changed:

   What|Removed |Added

 Depends on||56756

--- Comment #4 from Kunal Mehta (Legoktm) legoktm.wikipe...@gmail.com ---
(In reply to Kunal Mehta (Legoktm) from comment #3)

 Why isn't parsoid adding the 'external' class?

Hmm, this is also tracked as bug 56756 in Flow which is blocked by 51245 in
Parsoid.

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


[Bug 56756] Flow: Parsoid doesn't give external links class=external text or rel=nofollow

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56756

Kunal Mehta (Legoktm) legoktm.wikipe...@gmail.com changed:

   What|Removed |Added

 Blocks||65243

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


[Bug 56756] Flow: Parsoid doesn't give external links class=external text or rel=nofollow

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56756

Kunal Mehta (Legoktm) legoktm.wikipe...@gmail.com changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |NEW
 CC||legoktm.wikipe...@gmail.com

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


[Bug 64911] VisualEditor: [Regression pre] There is an extra space appearing in media search result dialog (scroll bar displacing last column of results)

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64911

James Forrester jforres...@wikimedia.org changed:

   What|Removed |Added

   Target Milestone|VE-deploy-2014-05-15|VE-deploy-2014-05-22
Summary|VisualEditor: [Regression   |VisualEditor: [Regression
   |pre-wmf4] There is an extra |pre] There is an extra
   |space appearing in media|space appearing in media
   |search result dialog in |search result dialog
   |betalabs|(scroll bar displacing last
   ||column of results)

-- 
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 64332] VisualEditor: In Firefox, the context menu's background sometimes does not appear for items inside a media caption (but the icons appear still)

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64332

James Forrester jforres...@wikimedia.org changed:

   What|Removed |Added

   Target Milestone|VE-deploy-2014-05-15|---

--- Comment #1 from James Forrester jforres...@wikimedia.org ---
Needs investigation as to the cause.

-- 
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 65335] MWException in preferences file when selecting Mathjax rendering.

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65335

--- Comment #2 from Felix fe...@kngnt.org ---
Yes, I set this option (as advised on the Math extension).

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


[Bug 65334] Translation help

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65334

James Forrester jforres...@wikimedia.org changed:

   What|Removed |Added

 CC|ssas...@wikimedia.org   |da...@sheetmusic.org.uk,
   ||niklas.laxst...@gmail.com,
   ||siebr...@kitano.nl
  Component|General |Translate
   Assignee|gwi...@wikimedia.org|wikibugs-l@lists.wikimedia.
   ||org
Product|Parsoid |MediaWiki extensions

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


[Bug 24639] Special:Allmessages message grouping

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24639

--- Comment #6 from JAn Dudík jan.du...@gmail.com ---
(In reply to Nemo from comment #5)
 (In reply to JAn Dudík from comment #4)
  What about adding some posiibility of search in messages?
 
 https://translatewiki.net/wiki/Special:SearchTranslations

I mean adding to wiki page (top of special:Allmessages). Via translatewiki I
found corresponding mediawiki message, but it was already deleted as
obsolete...

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


[Bug 62383] User preference section for beta-feature no longer available

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62383

--- Comment #2 from [[kgh]] mediaw...@kghoffmeyer.de ---
Sure, thank you for asking. This is the configuration in LocalSettings.php:

## WikiEditor
require extensions/WikiEditor/WikiEditor.php;
$wgWikiEditorFeatures['toc'] = array(
'global' = false,
'user' = false
);
$wgDefaultUserOptions['usebetatoolbar'] = 1;
$wgDefaultUserOptions['usebetatoolbar-cgd'] = 1;
$wgDefaultUserOptions['wikieditor-preview'] = 1;


This is what I get in MW 1.19:

Beta features
-
* Enable enhanced editing toolbar
* Enable dialogs for inserting links, tables and more
Labs features
-
* Enable side-by-side preview
* Enable step-by-step publishing


This is what I get in MW 1.21+:

Labs features
-
* Enable side-by-side preview
* Enable step-by-step publishing

So what happened to the user preferences controlling the beta-features? Not
controllable any longer?

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


[Bug 24639] Special:Allmessages message grouping

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24639

--- Comment #7 from Nemo federicol...@tiscali.it ---
(In reply to JAn Dudík from comment #6)
 I mean adding to wiki page (top of special:Allmessages).

Please file a separate bug for this request, it's off topic here; we'll
continue discussion there.

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


[Bug 65336] New: Echo tests are failing

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65336

Bug ID: 65336
   Summary: Echo tests are failing
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: major
  Priority: Unprioritized
 Component: Echo
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: legoktm.wikipe...@gmail.com
CC: agarr...@wikimedia.org, bs...@wikimedia.org,
dh...@wikimedia.org, legoktm.wikipe...@gmail.com,
pandiculat...@gmail.com
   Web browser: ---
   Mobile Platform: ---

It's this silly test again:

07:35:43 There was 1 failure:
07:35:43 
07:35:43 1) EchoTalkPageFunctionalTest::testAddCommentsToTalkPage
07:35:43 Detected section title must match
07:35:43 Failed asserting that two strings are equal.
07:35:43 --- Expected
07:35:43 +++ Actual
07:35:43 @@ @@
07:35:43 -'Section 8'
07:35:43 +''
07:35:43 
07:35:43
/srv/ssd/jenkins-slave/workspace/mwext-Thanks-testextensions-master/extensions/Echo/tests/TalkPageFunctionalTest.php:72
07:35:43
/srv/ssd/jenkins-slave/workspace/mwext-Thanks-testextensions-master/extensions/Echo/tests/TalkPageFunctionalTest.php:41
07:35:43
/srv/ssd/jenkins-slave/workspace/mwext-Thanks-testextensions-master/tests/phpunit/MediaWikiTestCase.php:133
07:35:43
/srv/ssd/jenkins-slave/workspace/mwext-Thanks-testextensions-master/tests/phpunit/MediaWikiPHPUnitCommand.php:42

This is blocking merges to Echo and 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 64685] Template used as campaign headerLabel is cached unwantedly

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64685

--- Comment #10 from vriul...@hotmail.com ---
(In reply to Gilles Dubuc from comment #9)
 You'll need to re-save the template and the changes should trickle down.

I tried to re-save the template but it did not work after Romaine re-saved each
campaign. Probably a campaign should have a definition for starting and ending
time to manage it correctly avoiding a trick with templates.

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


[Bug 62383] User preference section for beta-feature no longer available

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62383

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

--- Comment #3 from [[kgh]] mediaw...@kghoffmeyer.de ---
Ok, I get it. Sometimes I need this extra kick in the you know what. Beta is
now stable an was moved to the regular editor preference section. Probably I
did not see it because it was not only moved to another section but the second
preference description was changed from  Enable dialogs for inserting links,
tables and more to Enable wizards for inserting links, tables as well as the
search and replace function. Yeah, so everything is fluffy I suppose. Cool!
Closing this as RESOLVED INVALID.

Plese continue to support for side-by-side preview and step-by-step
publishing since this is a very much liked feature for third parties to my
experience. Writing this just in case somebody involved with the development of
WikiEditor is reading 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 64724] Cannot delete cohort if cohort is empty.

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64724

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 131232 merged by Nuria:
Fixes problem with deleting empty cohorts.

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

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


[Bug 65336] Echo tests are failing

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65336

--- Comment #1 from Kunal Mehta (Legoktm) legoktm.wikipe...@gmail.com ---
vagrant@mediawiki-vagrant:/vagrant/mediawiki$ php tests/phpunit/phpunit.php
extensions/Echo/tests/TalkPageFunctionalTest.php 
PHPUnit 3.7.28 by Sebastian Bergmann.

Configuration read from /vagrant/mediawiki/tests/phpunit/suite.xml

...

Time: 2.41 seconds, Memory: 56.00Mb

OK (3 tests, 19 assertions)

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


[Bug 62383] User preference section for beta-feature no longer available

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62383

--- Comment #4 from Nemo federicol...@tiscali.it ---
Good! Speaking of kicks, I'm not sure the option currently works: see bug
65331, by filing which I found this one.

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


[Bug 65336] Echo tests are failing

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65336

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 133426 had a related patch set uploaded by Legoktm:
Mark EchoTalkPageFunctionalTest::testAddCommentsToTalkPage as broken

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

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


[Bug 65336] Echo tests are failing

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65336

Gerrit Notification Bot gerritad...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

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


[Bug 63819] Worker processes left hanging

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63819

--- Comment #3 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 130588 merged by Ottomata:
Make upstart track the wikimetrics PID

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

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

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=1
Bug 1 depends on bug 44913, which changed state.

Bug 44913 Summary: Document deployment step by step on mediawiki.org
https://bugzilla.wikimedia.org/show_bug.cgi?id=44913

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED

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


[Bug 44913] Document deployment step by step on mediawiki.org

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44913

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

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED

-- 
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 65337] New: Get python-gear 0.5.4 uploaded to Debian

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65337

Bug ID: 65337
   Summary: Get python-gear 0.5.4 uploaded to Debian
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Continuous integration
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: has...@free.fr
CC: g...@wikimedia.org, has...@free.fr,
innocentkil...@gmail.com, krinklem...@gmail.com
   Web browser: ---
   Mobile Platform: ---

I maintain the python-gear Debian package which is sponsored by mika (Jenkins
debian glue author).


The package fail to build from source:

writing dependency_links to gear.egg-info/dependency_links.txt
writing entry points to gear.egg-info/entry_points.txt
[pbr] Reusing existing SOURCES.txt
   debian/rules override_dh_auto_test
make[1]: Entering directory '/tmp/buildd/python-gear-0.5.4'
# Command comes from upstream tox.ini
python setup.py testr --slowest
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: setup.py --help [cmd1 cmd2 ...]
   or: setup.py --help-commands
   or: setup.py cmd --help

error: invalid command 'testr'
debian/rules:20: recipe for target 'override_dh_auto_test' failed
make[1]: *** [override_dh_auto_test] Error 1
make[1]: Leaving directory '/tmp/buildd/python-gear-0.5.4'
debian/rules:13: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2


Additionally the changelog message needs to be proper english:

 * python-statsd is now a build depends (required to run tests) but is only a
   suggestion since it users do not need to have it configured.

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


[Bug 55324] Commons Delinker local clock dependency

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=55324

Yusuke Matsubara w...@whym.org changed:

   What|Removed |Added

 CC||w...@whym.org
  Component|General |delinker

-- 
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 64883] JPEGs on Commons: Several versions uploaded but only one record in history

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64883

Rainer Rillke @commons.wikimedia ril...@wikipedia.de changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

-- 
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 11456] Add [[Special:History/Page]] and [[Special:Edit/Page]] as functional internal wiki links

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11456

This, that and the other at.li...@live.com.au changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |NEW
 CC||at.li...@live.com.au

-- 
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 11456] Add [[Special:History/Page]] and [[Special:Edit/Page]] as functional internal wiki links

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11456

Kunal Mehta (Legoktm) legoktm.wikipe...@gmail.com changed:

   What|Removed |Added

   Assignee|legoktm.wikipe...@gmail.com |wikibugs-l@lists.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 65334] Translation help

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65334

--- Comment #1 from NehalDaveND nehaldc...@gmail.com ---
Hi I want to know what is the problem here... Please solve 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 65316] Extend FlaggedRevs to more namespaces on de.wiktionary

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65316

Tomasz W. Kozlowski twkozlow...@gmail.com changed:

   What|Removed |Added

   Keywords||community-consensus-needed
   Priority|Unprioritized   |Normal
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Severity|normal  |enhancement

--- Comment #1 from Tomasz W. Kozlowski twkozlow...@gmail.com ---
Please provide a link to a discussion showing community consensus for this
change. Thank you!

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


[Bug 64709] VisualEditor: ve.ce.ProtectedNode.prototype.onProtectedSetup is a performance hog

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64709

James Forrester jforres...@wikimedia.org changed:

   What|Removed |Added

   Target Milestone|VE-deploy-2014-05-15|---

--- Comment #9 from James Forrester jforres...@wikimedia.org ---
Additional fixes made for the 2014-05-15 release – but not sure what counts as
fixing this bug. Jon, could you re-test?

-- 
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 64883] JPEGs on Commons: Several versions uploaded but only one record in history

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64883

Gerrit Notification Bot gerritad...@wikimedia.org changed:

   What|Removed |Added

 Status|ASSIGNED|PATCH_TO_REVIEW

-- 
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 64883] JPEGs on Commons: Several versions uploaded but only one record in history

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64883

--- Comment #16 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 133434 had a related patch set uploaded by Rillke:
UploadWizard: Check for duplicate titles

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

-- 
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 63895] Change Sanskrit transliteration rules

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63895

--- Comment #18 from Runa Bhattacharjee run...@gmail.com ---
We need help with the suggestions that have been given to us on Bugzilla and on
the Talk page.

As per Nehal's suggestion on Bugzilla[1], the mapping should be:

e = ए
E = ऍ
ai = ऎ

o = ओ
O = ऑ
au = औ


and the Talk page [2] suggests:

e - ए
E - ऎ
o - ओ
O - ऒ

Please note there are discrepancies in the characters suggested for E, O and
also the additional characters on 'ai' and 'au'. Can someone please give us a
very specific list of characters and the keys on which they are to be mapped.


[1] https://bug-attachment.wikimedia.org/attachment.cgi?id=15101


[2]
https://sa.wikipedia.org/wiki/%E0%A4%B5%E0%A4%BF%E0%A4%95%E0%A4%BF%E0%A4%AA%E0%A5%80%E0%A4%A1%E0%A4%BF%E0%A4%AF%E0%A4%BE:%E0%A4%B5%E0%A4%BF%E0%A4%9A%E0%A4%BE%E0%A4%B0%E0%A4%AE%E0%A4%A3%E0%A5%8D%E0%A4%A1%E0%A4%AA%E0%A4%AE%E0%A5%8D_%28%E0%A4%A4%E0%A4%BE%E0%A4%A8%E0%A5%8D%E0%A4%A4%E0%A5%8D%E0%A4%B0%E0%A4%BF%E0%A4%95%E0%A4%95%E0%A4%BE%E0%A4%B0%E0%A5%8D%E0%A4%AF%E0%A4%AE%E0%A5%8D%29#.E0.A4.8F_.E0.A4.93_-_.E0.A4.87.E0.A4.A4.E0.A5.8D.E0.A4.AF.E0.A5.87.E0.A4.A4.E0.A4.AF.E0.A5.8B.E0.A4.83_.E0.A4.89.E0.A4.9F.E0.A5.8D.E0.A4.9F.E0.A4.99.E0.A5.8D.E0.A4.95.E0.A4.A8.E0.A5.87_.E0.A4.95.E0.A5.8D.E0.A4.B2.E0.A5.87.E0.A4.B6.E0.A4.83

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


[Bug 63895] Change Sanskrit transliteration rules

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63895

Runa Bhattacharjee run...@gmail.com changed:

   What|Removed |Added

   Assignee|wikibugs-l@lists.wikimedia. |run...@gmail.com
   |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 64883] JPEGs on Commons: Several versions uploaded but only one record in history

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64883

Rainer Rillke @commons.wikimedia ril...@wikipedia.de changed:

   What|Removed |Added

   Priority|High|Highest
 CC||nischay...@gmail.com,
   ||steinsplit...@wikipedia.de
  Component|Media storage   |UploadWizard
Version|wmf-deployment  |master
Product|Wikimedia   |MediaWiki extensions

-- 
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 63895] Change Sanskrit transliteration rules

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63895

--- Comment #19 from NehalDaveND nehaldc...@gmail.com ---
I am explaining to you this. ऒ ऎ etc.. useless in sanskrit language. but some
time adopting english words like Dr. we can write डॉ that's why I wrote that.
That is for usefull for every one. Thank you for helping...

-- 
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 63416] Update list of most often used messages for MediaWiki core at Wikimedia

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63416

--- Comment #6 from Nemo federicol...@tiscali.it ---
(In reply to Siebrand Mazeland from comment #2)
 For previous
 versions, this took about 30 minutes of Tim Starling's time to gather the
 data, IIRC.

I was wondering, was that a live hack or is there a commit on some wmf branch
in SVN? The code may also be available to shell users on Tim's home directory
on fenari or whatever; it takes a couple minutes to look it up.

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


[Bug 63416] Update list of most often used messages for MediaWiki core at Wikimedia

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63416

--- Comment #7 from Siebrand Mazeland siebr...@kitano.nl ---
(In reply to Nemo from comment #6)
 (In reply to Siebrand Mazeland from comment #2)
  For previous
  versions, this took about 30 minutes of Tim Starling's time to gather the
  data, IIRC.
 
 I was wondering, was that a live hack or is there a commit on some wmf
 branch in SVN? The code may also be available to shell users on Tim's home
 directory on fenari or whatever; it takes a couple minutes to look it up.

There's a patch set somewhere in Subversion, I think (or maybe in Gerrit
already). I say that, because I think I remember he reverted that to stop
profiling.

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


[Bug 63895] Change Sanskrit transliteration rules

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63895

--- Comment #20 from NehalDaveND nehaldc...@gmail.com ---
please see this... we want like this

https://bug-attachment.wikimedia.org/attachment.cgi?id=15101

-- 
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 65338] New: action=upload overwrites files despite ignorewarnings is not set

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65338

Bug ID: 65338
   Summary: action=upload overwrites files despite ignorewarnings
is not set
   Product: MediaWiki
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: API
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: ril...@wikipedia.de
CC: bjor...@wikimedia.org, bryan.tongm...@gmail.com,
roan.katt...@gmail.com, s...@reedyboy.net
   Web browser: ---
   Mobile Platform: ---

Original bug title:
action=upload overwrites files despite ignorewarnings is not set

Follow-up from Bug 64883

Description:
UploadWizard does never set ignorewarnings when publishing files through API.
And the API upload module is supposed to give a warning if a file exists. Thus,
Upload Wizard isn't able [in theory] to overwrite files. But exactly this
happened because the API returned success instead of a warning.

There are plenty of examples in Bug 64883

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


[Bug 65339] New: Several versions uploaded but only one record in history

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65339

Bug ID: 65339
   Summary: Several versions uploaded but only one record in
history
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: major
  Priority: Unprioritized
 Component: Media storage
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: ril...@wikipedia.de
CC: aarcos.w...@gmail.com, bawolff...@gmail.com,
fflo...@wikimedia.org, gti...@wikimedia.org,
mtrac...@member.fsf.org, steinsplit...@wikipedia.de
   Web browser: ---
   Mobile Platform: ---

Clone of Bug 64883.
Bug title: Several versions uploaded but only one record in history

https://commons.wikimedia.org/wiki/File:Treppe__test_upload.jpg

History tab: one entry [for upload]
File history: three entries [for upload]
Log: three entries [for upload]

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


[Bug 65339] Several versions uploaded but only one record in history

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65339

Rainer Rillke @commons.wikimedia ril...@wikipedia.de changed:

   What|Removed |Added

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

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


[Bug 65338] action=upload overwrites files despite ignorewarnings is not set

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65338

Rainer Rillke @commons.wikimedia ril...@wikipedia.de changed:

   What|Removed |Added

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

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


[Bug 64883] JPEGs on Commons: Several versions uploaded but only one record in history

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64883

Rainer Rillke @commons.wikimedia ril...@wikipedia.de changed:

   What|Removed |Added

   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=65338,
   ||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=65339

--- Comment #17 from Rainer Rillke @commons.wikimedia ril...@wikipedia.de ---
Follow-up:
Bug 65338 - API: action=upload overwrites files despite ignorewarnings is not
set
Bug 65339 - MediaStorage: Several versions uploaded but only one record in
history

-- 
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 63895] Change Sanskrit transliteration rules

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63895

--- Comment #21 from Runa Bhattacharjee run...@gmail.com ---
(In reply to NehalDaveND from comment #20)
 please see this... we want like this
 
 https://bug-attachment.wikimedia.org/attachment.cgi?id=15101

As per comment #9 you mention that the mappings as per the image on the left is
to be used. So to confirm, you are asking for the mapping to be:

e = ए
E = ऍ
ai = ऎ

o = ओ
O = ऑ
au = औ

Please let me know so that I can make the changes and prepare it for testing.
Thanks.

-- 
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 63895] Change Sanskrit transliteration rules

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63895

Runa Bhattacharjee run...@gmail.com changed:

   What|Removed |Added

 CC||pgi...@wikimedia.org,
   ||santhosh.thottingal@gmail.c
   ||om
  Component|Internationalization|UniversalLanguageSelector
Product|MediaWiki   |MediaWiki extensions

-- 
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 64393] Let error responses pass through the proxy if they contain contents

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64393

Liangent liang...@gmail.com changed:

   What|Removed |Added

Summary|Let 404 responses pass  |Let error responses pass
   |through the proxy if they   |through the proxy if they
   |contain contents|contain contents

--- Comment #1 from Liangent liang...@gmail.com ---
This blocks development for me currently. Django catches exceptions then
displays them using an HTTP 500 page, so no content is left in error.log.
However the proxy catches those HTTP 500 pages further, and replaces them with
a standard error page, making me unable to see any exception details anywhere.

-- 
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 64393] Let error responses pass through the proxy if they contain contents

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64393

Liangent liang...@gmail.com changed:

   What|Removed |Added

 CC||yuvipa...@gmail.com

--- Comment #2 from Liangent liang...@gmail.com ---
Yuvi, are you a maintainer of the proxy?

-- 
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 65331] Enable enhanced editing toolbar preference not respected

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65331

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

   What|Removed |Added

 CC||hartman.w...@gmail.com

--- Comment #1 from Derk-Jan Hartman hartman.w...@gmail.com ---
Might be related to this:
https://gerrit.wikimedia.org/r/#/c/132601/

The error is not related, it's just module store complaining that you disabled
localStorage.

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


[Bug 63895] Change Sanskrit transliteration rules

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63895

--- Comment #22 from NehalDaveND nehaldc...@gmail.com ---
ai ऐ

-- 
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 65331] Enable enhanced editing toolbar preference not respected

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65331

Gerrit Notification Bot gerritad...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

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


[Bug 65331] Enable enhanced editing toolbar preference not respected

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65331

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 133438 had a related patch set uploaded by TheDJ:
Revert Make the toolbar and dialogs enabled by default.

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

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


[Bug 63895] Change Sanskrit transliteration rules

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63895

--- Comment #23 from shubha shubhaz...@gmail.com ---
Namaste,

I just want to make one thing clear here. 
For ai you have mentioned ऎ - may be by mistake. It is ऐ (that the line above
must be straight.)
Hope my words are clear. Thanks.

-- 
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 65331] Enable enhanced editing toolbar preference not respected

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65331

--- Comment #3 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 133438 merged by jenkins-bot:
Revert Make the toolbar and dialogs enabled by default.

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

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


[Bug 65331] Enable enhanced editing toolbar preference not respected

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65331

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

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED

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


[Bug 65331] Enable enhanced editing toolbar preference not respected

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65331

--- Comment #4 from Nemo federicol...@tiscali.it ---
Thanks. I had also tried reversing the checkbox selection but that wasn't the
culprit. The good thing is that this back and forth doesn't seem to have reset
user preferences as a change of $wgDefaultUserOptions would.

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


[Bug 65337] Get python-gear 0.5.4 uploaded to Debian

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65337

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

   What|Removed |Added

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

--- Comment #1 from Antoine hashar Musso has...@free.fr ---
Fixed by creating a Debian sid cowbuilder image and adding back the proper
build dependencies. Changelog message tweaked.

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


[Bug 64569] Fix GettingStarted exclude format in generator

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64569

Gerrit Notification Bot gerritad...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

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


[Bug 64569] Fix GettingStarted exclude format in generator

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64569

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 133440 had a related patch set uploaded by Phuedx:
Fix excluded categories config format

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

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


[Bug 64569] Fix GettingStarted exclude format in generator

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64569

Sam Smith samsm...@wikimedia.org changed:

   What|Removed |Added

   Assignee|wikibugs-l@lists.wikimedia. |samsm...@wikimedia.org
   |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 65071] Move ApiQueryRecentChanges::parseRCType to static method on RecentChange

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65071

Gerrit Notification Bot gerritad...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

-- 
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 65071] Move ApiQueryRecentChanges::parseRCType to static method on RecentChange

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65071

--- Comment #3 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 133441 had a related patch set uploaded by Kishanio:
Move ApiQueryRecentChanges::parseRCType to static method on RecentChange

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

-- 
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 63594] Global usage shows file usage on deleted pages

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63594

Steinsplitter steinsplit...@wikipedia.de changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED

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


[Bug 65337] Get python-gear 0.5.4 uploaded to Debian

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65337

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

   What|Removed |Added

   Assignee|wikibugs-l@lists.wikimedia. |has...@free.fr
   |org |

--- Comment #2 from Antoine hashar Musso has...@free.fr ---
The package has been uploaded to the Debian project by Michael mika Prokop,
Jenkins Debian Glue author who already sponsored the package.

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


[Bug 65248] Global permission, license, copyright tag

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65248

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 133293 abandoned by Dan-nl:
Global permission, license, copyright tag

Reason:
having a problem merging https://gerrit.wikimedia.org/r/#/c/133041/ and 
https://gerrit.wikimedia.org/r/#/c/133293/. the two are related so will put
them into one patch instead.

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

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


[Bug 64060] GWToolset silently wraps some fields into MediaWiki templates, which is problematic

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64060

--- Comment #3 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 133041 abandoned by Dan-nl:
Make template wrapping optional

Reason:
having a problem merging https://gerrit.wikimedia.org/r/#/c/133041/ and 
https://gerrit.wikimedia.org/r/#/c/133293/. the two are related so will put
them into one patch instead.

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

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


[Bug 65340] New: Gadgets not purged on wikidata.org

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65340

Bug ID: 65340
   Summary: Gadgets not purged on wikidata.org
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: blocker
  Priority: Unprioritized
 Component: Wikidata
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: thiemo.maet...@wikimedia.de
   Web browser: ---
   Mobile Platform: ---

A gadget thats crucial for the community and enabled by default was broken in
Firefox and got fixed yesterday:
https://www.wikidata.org/wiki/Special:Diff/129233461

It works in debug mode:
https://www.wikidata.org/wiki/Q1523127?debug=1
(Note the web links in the values, e.g. the VIAF identifier is linked to the
viaf.org website.)

It constantly refuses to work in non-debug mode:
https://www.wikidata.org/wiki/Q1523127

I tried everything I can think of: Dump the Firefox cache, dump localStore
explicitly, disable the Firefox cache completely, purge both the gadget and the
example page. It's reproducible on other machines. Shift+reloading the page
produces random-like results: Sometimes it works a single time but if you
reload the page again it's broken again.

As far as I can tell either the RessourceLoader itself or some configuration is
to blame. I don't know who to ask or what to do next. Please help.

-- 
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 63594] Global usage shows file usage on deleted pages

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63594

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

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

--- Comment #11 from Aaron Schulz aschulz4...@gmail.com ---
The script needs to actually be run. This bug can track 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 65281] Installer: logo should use $wgStylePath

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65281

--- Comment #1 from Waldir wal...@email.com ---
Any pointers on where/how to fix this? I'd be happy t submit a patch.

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


[Bug 65281] Installer: logo should use $wgStylePath

2014-05-15 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65281

--- Comment #2 from Waldir wal...@email.com ---
Actually, this seems to be a dupe of bug 48084 (btw, palindrome bug :D)

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