[Bug 60618] Database error when using Special:WhatLinksHere on Commons

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60618

Brad Jorsch bjor...@wikimedia.org changed:

   What|Removed |Added

 CC||bjor...@wikimedia.org,
   ||sprin...@wikimedia.org

--- Comment #1 from Brad Jorsch bjor...@wikimedia.org ---
The underlying cause seems to be the query killer mentioned in bug 58157
comment 5. The query here appears to be along the lines of:

 SELECT /*! STRAIGHT_JOIN */ page_id,page_namespace,page_title,rd_from  FROM
`templatelinks`,`page` LEFT JOIN `redirect` ON ((rd_from = page_id) AND
rd_namespace = '828' AND rd_title = 'Fallbacklist' AND (rd_interwiki = '' OR
rd_interwiki IS NULL))  WHERE (page_id=tl_from) AND tl_namespace = '828' AND
tl_title = 'Fallbacklist' AND page_namespace = '828'  ORDER BY tl_from LIMIT
51;

Presumably it's slow because Module:Fallbacklist probably has something like 25
million transclusions, few of which are in the Module namespace. What might be
done about that, though, I have no idea.

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


[Bug 53068] Permissions info should not be stored in JSON

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53068

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 53068] Permissions info should not be stored in JSON

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53068

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 110378 had a related patch set uploaded by Chiborg:
Remove permission info from JSON

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

-- 
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 60515] Welcoming user who are 'old'

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60515

--- Comment #3 from Peter Bena benap...@gmail.com ---
what question

-- 
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 60515] Welcoming user who are 'old'

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60515

--- Comment #4 from Peter Bena benap...@gmail.com ---
hmm I see it's completely broken now :P

-- 
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 60515] Welcoming user who are 'old'

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60515

--- Comment #5 from gladjona...@outlook.com ---
The Huggle can't retrieve the talk page, are you sure that you want to welcome
this user? I pressed yes. Still, nothing happened.

-- 
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 55960] wbmergeitems api modules did not correctly merge Q7 and Q194

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=55960

--- Comment #6 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 110380 had a related patch set uploaded by Addshore:
Check for Label/Description conflicts in ChangeOpsMerge

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

-- 
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 55960] wbmergeitems api modules did not correctly merge Q7 and Q194

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=55960

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 60515] Welcoming user who are 'old'

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60515

--- Comment #6 from Peter Bena benap...@gmail.com ---
http://git.io/YMQRIg

-- 
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 60618] Database error when using Special:WhatLinksHere on Commons

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60618

--- Comment #2 from Bawolff (Brian Wolff) bawolff...@gmail.com ---
Removing the /*! STRAIGHT_JOIN */ would probably help as there is only 163
pages in the module namespace in commons (On tool labs, query without straight
join took 0.16 seconds), so much more efficient to join the other way around.

However that doesn't really help the general case of a template with millions
of transclusions none of which are in the namespace being looked for, and that
namespace also has millions of pages. I'm not sure if anything can help with
that case short of duplicating the namespace of tl_from into template links
table (Wouldn't it be nice if indexes could cross table boundaries?)




https://commons.wikimedia.org/w/index.php?title=Special%3AWhatLinksHeretarget=Module%3AFallbacklistnamespace=828
 

If you really wanted to know, the modules that link to Fallbacklist are:

+--+
| page_title   |
+--+
| File |
| Coordinates  |
| Fallback |
| Fallbacklist |
| Fallbacklist/doc |
| Coordinates/doc  |
| Fallback/sandbox |
| File/doc |
+--+

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


[Bug 60350] Misc varnish cluster blocks PUT access to Logstash Elasticsearch cluster

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60350

--- Comment #3 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 109330 merged by Ori.livneh:
Allow PUT method to hosts behind the misc Varnish cluster

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

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


[Bug 57591] Special page for wbmergeitems api module

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57591

--- Comment #5 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 98281 merged by Addshore:
Special page for wbmergeitems api module

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

-- 
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 57471] Search listing redirects as redirect Wikispecies:WS:xyz instead of just WS:xyz

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57471

--- Comment #9 from PiRSquared17 pirsquare...@gmail.com ---
This is still happening.

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


[Bug 60609] Install CirrusSearch as a betafeature on Chinese Wikipedia.

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60609

Nik Everett neverett+bugzi...@wikimedia.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Nik Everett neverett+bugzi...@wikimedia.org ---
The link in the request didn't work.  This one takes you to the comment:
https://zh.wikipedia.org/wiki/Wikipedia:%E4%BA%92%E5%8A%A9%E5%AE%A2%E6%A0%88/%E6%8A%80%E6%9C%AF#Tech_News:_2014-04
.  I'm not good with bugzilla's magic links so there might be a better way to
write that out.

I'm a little weary to do this before we get our extra machines in early
February because we're filling up our disks.  If zhwiki were smaller I'd
totally do it.  I've added zhwiki here:
https://www.mediawiki.org/wiki/Search#Wikis so we'll make sure it is scheduled
as soon as the extra machine come in or we shrink the index files a whole
bunch.

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


[Bug 60619] New: have all repositories to pass jshint test

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60619

   Web browser: ---
Bug ID: 60619
   Summary: have all repositories to pass jshint test
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: Continuous integration
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: has...@free.fr
CC: has...@free.fr, innocentkil...@gmail.com,
krinklem...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

When we started with jshint, we made the jslint jobs non voting by default. 
The reason was to enable reporting while developers are busy fixing their
jshint errors.  We eventually came out with a lot of exceptions to whitelist
passing repositories.

I believe it is time to reverse the logic and enforce jshint by default on all
repositories.

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


[Bug 60619] have all repositories to pass jshint test

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60619

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 60619] have all repositories to pass jshint test

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60619

--- Comment #1 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 110385 had a related patch set uploaded by Hashar:
make jslint voting by default

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

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


[Bug 60620] New: Better error message needed when adding a member to a project he's already a member of

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60620

   Web browser: ---
Bug ID: 60620
   Summary: Better error message needed when adding a member to a
project he's already a member of
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: OpenStackManager
  Assignee: rlan...@gmail.com
  Reporter: t...@tim-landscheidt.de
Classification: Unclassified
   Mobile Platform: ---

If you try to add a member to a project he's already a member of (for example
https://wikitech.wikimedia.org/w/index.php?title=Special:NovaProjectaction=addmemberprojectname=toolsmember=Tim+Landscheidt),
the error message is very general: Failed to add Tim Landscheidt to tools.

It would be nice if this could be more verbose in this (common) case, because
otherwise, to confirm that this is the true cause of the error, you have to go
to the project's page and search through all the members to see if he's already
there.

-- 
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 60620] Better error message needed when adding a member to a project he's already a member of

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60620

Shreyas shreyass...@gmail.com changed:

   What|Removed |Added

 CC||shreyass...@gmail.com

--- Comment #1 from Shreyas shreyass...@gmail.com ---
Could you specify the file that handles projects and project members

-- 
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 60618] Database error when using Special:WhatLinksHere on Commons

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60618

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

   What|Removed |Added

   Keywords||performance
   Priority|Unprioritized   |Normal
Version|unspecified |1.23-git
   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=58157

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


[Bug 58157] IndexPager::buildQueryInfo database query error when selecting namespace on Special:Contributions

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=58157

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

   What|Removed |Added

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

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


[Bug 57471] Search listing redirects as redirect Wikispecies:WS:xyz instead of just WS:xyz

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57471

--- Comment #10 from Andre Klapper aklap...@wikimedia.org ---
Note: CirrusSearch can be tested by attaching ?srbackend=CirrusSearch to the
URL (and Cirrus is available according to
https://species.wikimedia.org/wiki/Special:Version ).

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


[Bug 60398] VisualEditor: Show a user's recent uploads in the MW insert media dialog

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60398

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 60398] VisualEditor: Show a user's recent uploads in the MW insert media dialog

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60398

--- Comment #6 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 109670 had a related patch set uploaded by Esanders:
WIP Show recent uploads in MWMediaSearchWidget

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

-- 
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 60584] Add support for running headless browser tests to mediawiki-selenium Rubygem

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60584

--- Comment #9 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 110390 had a related patch set uploaded by Zfilipin:
Make it possible to run VisualEditor tests in headless mode

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

-- 
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 52484] VisualEditor: Making a paragraph with forced line breaks in it a heading should strip the line breaks

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52484

Ed Sanders esand...@wikimedia.org changed:

   What|Removed |Added

 CC||gwi...@wikimedia.org

--- Comment #2 from Ed Sanders esand...@wikimedia.org ---
We shoud try to stop the user from putting line breaks in MWHeadings, but also
Parsoid should probably never create invalid wikitext.

-- 
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 60619] have all repositories to pass jshint test

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60619

--- Comment #2 from Antoine hashar Musso has...@free.fr ---
Created attachment 14415
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=14415action=edit
list of jslint jobs non voting in Zuul

Attached is a list of jslint jobs which are non voting as per
https://gerrit.wikimedia.org/r/#/c/110385

We should verify whether it is currently passing, and if so make it voting,
else have a bug filled so the project owners start fixing the jshint issues.

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


[Bug 60488] Redirect loop accessing the non-SSL root URL for logstash.wikimedia.org

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60488

--- Comment #6 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 110393 had a related patch set uploaded by BryanDavis:
varnish: Add X-Forwarded-Proto to Vary on redirects

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

-- 
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 60618] Very slow query for Special:WhatLinksHere limitted to a namespace when page has large number of backlinks

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60618

Bawolff (Brian Wolff) bawolff...@gmail.com changed:

   What|Removed |Added

Summary|Database error when using   |Very slow query for
   |Special:WhatLinksHere on|Special:WhatLinksHere
   |Commons |limitted to a namespace
   ||when page has large number
   ||of backlinks

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


[Bug 46779] Provide a way to persistently disable CodeEditor (no cookie -- hidden user preference)

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46779

MZMcBride b...@mzmcbride.com changed:

   What|Removed |Added

Summary|Provide a way to disable|Provide a way to
   |CodeEditor in user  |persistently disable
   |preferences |CodeEditor (no cookie --
   ||hidden user preference)

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


[Bug 46779] Provide a way to persistently disable CodeEditor (no cookie -- hidden user preference)

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46779

--- Comment #5 from MZMcBride b...@mzmcbride.com ---
Based on discussion on this bug report, I tried to clarify the bug summary. I
don't think adding a hidden user preference will be very difficult, so I've
marked this bug report with the easy keyword accordingly.

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


[Bug 60488] Redirect loop accessing the non-SSL root URL for logstash.wikimedia.org

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60488

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 46779] Provide a way to disable CodeEditor in user preferences

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=46779

MZMcBride b...@mzmcbride.com changed:

   What|Removed |Added

   Keywords||easy

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


[Bug 60350] Misc varnish cluster blocks PUT access to Logstash Elasticsearch cluster

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60350

Bryan Davis bda...@wikimedia.org changed:

   What|Removed |Added

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

--- Comment #4 from Bryan Davis bda...@wikimedia.org ---
Verified that Kibana dashboard saves work now.

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


[Bug 29908] (Old) Edit toolbar not displayed on .js and .css pages

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29908

MZMcBride b...@mzmcbride.com changed:

   What|Removed |Added

 CC||matma@gmail.com

--- Comment #1 from MZMcBride b...@mzmcbride.com ---
Eh? Is there a bug about killing the old toolbar. We really should.

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


[Bug 55419] CodeEditor should honour user preferences to disable advanced editing toolbars

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=55419

--- Comment #3 from MZMcBride b...@mzmcbride.com ---
(In reply to comment #2)

Do not merge indeed. I think this bug is probably a duplicate of bug 45850.

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


[Bug 60262] parsoid should allow binding to a specific IP or interface

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60262

--- Comment #4 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 110230 merged by jenkins-bot:
Add port and host env vars to ParsoidService

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

-- 
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 60611] Ability to message all users on the wiki

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60611

MZMcBride b...@mzmcbride.com changed:

   What|Removed |Added

 Status|NEW |UNCONFIRMED
 CC||gpaum...@wikimedia.org,
   ||tba...@wikimedia.org
 Ever confirmed|1   |0

--- Comment #2 from MZMcBride b...@mzmcbride.com ---
Setting this to unconfirmed for now as I'm not sure this is a valid bug.

For small wikis, you can just generate a list of usernames and make an input
list using the {{#target:}} parser function. For large wikis, sending a message
to every user is probably a very bad idea.

We already have a variety of notices built in to MediaWiki (Anonnotice,
Sitenotice, watchlist notices [kind of]) and its extensions (CentralNotice) for
the purpose of distributing important information to a wiki community.

Copying Guillaume and Tilman.

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


[Bug 60621] New: Add a new mailing list for WMT staff

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60621

   Web browser: ---
Bug ID: 60621
   Summary: Add a new mailing list for WMT staff
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Mailing lists
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: quentin...@gmail.com
CC: b...@caseybrown.org, jalexan...@wikimedia.org,
pbeaude...@wikimedia.org, thehelpfulonew...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

Hi.

Could you please create a mailing list for the project IRC/WMT ? It would make
internal communication easier.

Thanks by advance !

Regards,
Quentinv57

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


[Bug 60178] enable Flow on two enwiki WikiProject pages

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60178

--- Comment #26 from MZMcBride b...@mzmcbride.com ---
The deployment of Flow to two English Wikipedia WikiProject pages has been
rescheduled to Monday, February 3 (cf.
https://wikitech.wikimedia.org/w/index.php?title=Deploymentsoldid=97702#Week_of_February_3rd).
None of the dependencies of this bug report have been resolved.

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


[Bug 31397] Custom namespaces are not shown correctly in the log

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31397

se4598 wikipe...@se4598.eu changed:

   What|Removed |Added

 CC||wikipe...@se4598.eu

--- Comment #1 from se4598 wikipe...@se4598.eu ---
Hey, if you still have this bug or a testcase, can you provide more
information, e.g. on your used namespaces?

I'm especially interested in the ID (number) of the custom namespace.

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


[Bug 31682] [Regression] broke Edittools for Special:Upload

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31682

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

   Keywords||javascript
 CC||mybugs.m...@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 35071] mediawiki.action.edit.js always setting legacy function

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35071

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 CC||mybugs.m...@gmail.com

--- Comment #1 from Helder mybugs.m...@gmail.com ---
This is kind of fixed since window.addButton and window.insertTags were
deprecated on gerrit change 95764.
https://git.wikimedia.org/blob/mediawiki%2Fcore.git/a6f0a996ebe55496dda685da750f08f0b02bca14/resources%2Fmediawiki.action%2Fmediawiki.action.edit.js#L132

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


[Bug 35071] mediawiki.action.edit.js always setting legacy function

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35071

Bartosz Dziewoński matma@gmail.com changed:

   What|Removed |Added

 CC||matma@gmail.com

--- Comment #2 from Bartosz Dziewoński matma@gmail.com ---
Yeah, that's probably as 'fixed' as this is going to get. Thoughts?

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


[Bug 60488] Redirect loop accessing the non-SSL root URL for logstash.wikimedia.org

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60488

--- Comment #8 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 110396 merged by Ori.livneh:
kibana: Set Vary: X-Forwarded-Proto on HTTP - HTTPS 301s

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

-- 
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 60488] Redirect loop accessing the non-SSL root URL for logstash.wikimedia.org

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60488

--- Comment #9 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 110393 abandoned by BryanDavis:
varnish: Add X-Forwarded-Proto to Vary on redirects

Reason:
Ori's workaround in Id2cc29f911fa36805320cdb606a5da1226c9d230 is less yucky

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

-- 
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 35071] mediawiki.action.edit.js always setting legacy function

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35071

--- Comment #3 from Helder mybugs.m...@gmail.com ---
Should we wait until the deprecated code is actually removed to consider this
as 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 52071] Add mw.hook event for when wpTextbox1's content is used (to beused by extensions providing WYSIWYG/code highlighting etc. functionality)

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52071

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 52071] Add mw.hook event for when wpTextbox1's content is used (to beused by extensions providing WYSIWYG/code highlighting etc. functionality)

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52071

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 110347 had a related patch set uploaded by Helder.wiki:
Fire hook LivePreviewPrepare

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

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


[Bug 60622] New: abuse_filter_log table only uses tinyint not int for namespace ID

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60622

   Web browser: ---
Bug ID: 60622
   Summary: abuse_filter_log table only uses tinyint not int for
namespace ID
   Product: MediaWiki extensions
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: AbuseFilter
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: wikipe...@se4598.eu
CC: agarr...@wikimedia.org, nischay...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

In the abuse_filter_log table, afl_namespace is created as a signed tinyint.
Since namespaces are ints, not tinyints, in MediaWiki, this will form incorrect
links in the log if the namespace ID is higher than 127. – RobinHood70 talk
00:12, 22 August 2013 (UTC)

(reported at
https://www.mediawiki.org/w/index.php?title=Extension_talk:AbuseFilteroldid=821410#Bug_Report)

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


[Bug 60488] Redirect loop accessing the non-SSL root URL for logstash.wikimedia.org

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60488

--- Comment #7 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 110396 had a related patch set uploaded by Ori.livneh:
kibana: Set Vary: X-Forwarded-Proto on HTTP - HTTPS 301s

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

-- 
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 37657] [[MediaWiki:Edittools]] should be loaded only with old editor (classic toolbar)

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37657

Bartosz Dziewoński matma@gmail.com changed:

   What|Removed |Added

 CC||matma@gmail.com

--- Comment #3 from Bartosz Dziewoński matma@gmail.com ---
This might not necessarily be a good idea, I know people depend on old
edittools even when using the new toolbar.

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


[Bug 37657] [[MediaWiki:Edittools]] should be loaded only with old editor (classic toolbar)

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37657

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

Summary|Edit tools should be loaded |[[MediaWiki:Edittools]]
   |only with old editor|should be loaded only with
   ||old editor (classic
   ||toolbar)

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


[Bug 52484] Parsoid: Making a paragraph with forced line breaks in it a heading should strip the line breaks

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52484

Ed Sanders esand...@wikimedia.org changed:

   What|Removed |Added

 CC||ssas...@wikimedia.org
  Component|Data Model  |General
   Assignee|esand...@wikimedia.org  |gwi...@wikimedia.org
Product|VisualEditor|Parsoid
Summary|VisualEditor: Making a  |Parsoid: Making a paragraph
   |paragraph with forced line  |with forced line breaks in
   |breaks in it a heading  |it a heading should strip
   |should strip the line   |the line breaks
   |breaks  |

--- Comment #3 from Ed Sanders esand...@wikimedia.org ---
Assigning to Parsoid as it would be impossible to prevent the user from adding
a line break character to certain elements in the DM. Conversion, mentioned
above, would be fixable, but there's copy and paste, paragraph merging and
probably others etc.

The only sensible approach is to convert these to spaces at Parsoid's end.

-- 
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 60488] Redirect loop accessing the non-SSL root URL for logstash.wikimedia.org

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60488

Bryan Davis bda...@wikimedia.org changed:

   What|Removed |Added

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

--- Comment #10 from Bryan Davis bda...@wikimedia.org ---
Ori fixed this with a cool bit of Apache config:

  RewriteRule ^/(.*)$ https://%{HTTP_HOST}%{REQUEST_URI}
[R=301,E=ProtoRedirect]
  Header always merge Vary X-Forwarded-Proto env=ProtoRedirect

This works around an annoying bit of esoteric Apache internals where headers
are stripped during redirect generation and have to be reapplied later. See
http://stackoverflow.com/a/370/8171 for a description of the underlying
feature that is being addressed.

-- 
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 28947] The enhanced editing toolbar causes focus to be removed from the edit box.

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28947

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 CC||mybugs.m...@gmail.com

--- Comment #2 from Helder mybugs.m...@gmail.com ---
Is this still a problem?

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


[Bug 28856] Move classic (old) edit toolbar (from module mediawiki.action.edit) into an extension

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28856

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

   Keywords||javascript
Summary|Move classic edit toolbar   |Move classic (old) edit
   |into an extension   |toolbar (from module
   ||mediawiki.action.edit) into
   ||an extension

--- Comment #4 from Helder mybugs.m...@gmail.com ---
Adding a few keywords since I had difficulty finding this bug 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 60624] New: jenkins-bot just posted FAILURE

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60624

   Web browser: ---
Bug ID: 60624
   Summary: jenkins-bot just posted FAILURE
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Git/Gerrit
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: mflasc...@wikimedia.org
CC: christ...@quelltextlich.at, innocentkil...@gmail.com,
marcin.cies...@gmail.com, rlan...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

In one message, jenkins-bot posted only the text FAILURE, without any links
or other info.  It posted normal build/test logs in an earlier message:
https://gerrit.wikimedia.org/r/#/c/110316/2

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


[Bug 60602] VisualEditor:Apply Changes button remains active even though Size values are invalid appears in Advanced Media Settings

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60602

--- Comment #1 from Moriel Schottlender mor...@gmail.com ---
This is actually intended behavior, but one that's not clearly explained; if
the size parameters are invalid, the media edit dialog will apply all other
changes except for size (so to allow other changes like image type, alternate
text, etc)

There are two ways to solve this bug imho:

1. Adjust the message to Size values are invalid and will not be applied.

2. Make the 'apply' button inactive if size is invalid, forcing the user to
find valid parameters or cancel -- but this will also mean that if other
changes were made in the dialog, and the user doesn't know or want to change
the size after seeing it is invalid (or wants to revert to the previous
dimensions) we force them to cancel *all* changes and redo them again.

I am leaning towards #1, but we should discuss and see if we want to apply #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 21970] Update classic edit toolbar design

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21970

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

   Keywords||design
 CC||mybugs.m...@gmail.com

--- Comment #1 from Helder mybugs.m...@gmail.com ---
The enhanced toolbar is now at [[mw:Extension:WikiEditor]] and is the default
edit toolbar on WMF wikis. On the other hand, it is being considered the idea
of moving the old toolbar from MediaWiki core into an extension:
https://www.mediawiki.org/wiki/Suggestions_to_split_from_core_into_extensions#Monobook_.28old_or_classic.29_edit_toolbar

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


[Bug 44915] EditPage.php assumes mediawiki.action.edit module present (breaks mobile)

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44915

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 CC||mybugs.m...@gmail.com
 Depends on||28856

--- Comment #2 from Helder mybugs.m...@gmail.com ---
Will this be fixed once the code is moved out of core? (bug 28856)

-- 
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 28856] Move classic (old) edit toolbar (from module mediawiki.action.edit) into an extension

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28856

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 Blocks||44915

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


[Bug 29908] (Old) Edit toolbar not displayed on .js and .css pages

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29908

--- Comment #2 from Helder mybugs.m...@gmail.com ---
Bug 28856 is about moving it into an extension, but I think it will not be
killed...

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


[Bug 21970] Update classic edit toolbar design

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21970

--- Comment #2 from Helder mybugs.m...@gmail.com ---
Eh.. according to bug 26914, WikiEditor is already bundled with MediaWiki.

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


[Bug 60602] VisualEditor:Apply Changes button remains active even though Size values are invalid appears in Advanced Media Settings

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60602

Tony Thomas 01tonytho...@gmail.com changed:

   What|Removed |Added

 CC||01tonytho...@gmail.com

--- Comment #2 from Tony Thomas 01tonytho...@gmail.com ---
 I am leaning towards #1, but we should discuss and see if we want to apply
 #2.
Wont #2 be more obvious ?

-- 
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 55463] LiquidThreads: Live preview of a reply doesn't work anymore

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=55463

--- Comment #3 from Helder mybugs.m...@gmail.com ---
Krinkle, should this be marked as FIXED or it requires some extra cleanup?

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


[Bug 60215] Mails to any wikimedia.org account/list from any account @wikimedia.org.ve bounces

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60215

--- Comment #8 from James Alexander jalexan...@wikimedia.org ---
(In reply to comment #7)
 James Alexander: Any idea how to start debugging here? Or is this ops
 territory?

Sadly I think this is completely ops territory, this sounds like it's outside
of mailman. I believe Philippe had issues emailing wikimedia.org.ve from a
staff email account too though I've pinged him to get more info on his test.

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


[Bug 60625] New: File:Double_slit.theora.ogv doesn't show unsupported browser warning

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60625

   Web browser: ---
Bug ID: 60625
   Summary: File:Double_slit.theora.ogv doesn't show unsupported
browser warning
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: TimedMediaHandler
  Assignee: md...@wikimedia.org
  Reporter: bawolff...@gmail.com
CC: aarcos.w...@gmail.com, bawolff...@gmail.com,
fflo...@wikimedia.org, gti...@wikimedia.org,
jger...@wikimedia.org, mtrac...@member.fsf.org
Classification: Unclassified
   Mobile Platform: ---

http://commons.wikimedia.org/wiki/File:Double_slit.theora.ogv doesn't display
the for help use a supported browser warning on IE.

-- 
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 52717] libvips-tools, libtiff etc install

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52717

Tim Landscheidt t...@tim-landscheidt.de changed:

   What|Removed |Added

   Keywords||ops
 Status|PATCH_TO_REVIEW |ASSIGNED

--- Comment #14 from Tim Landscheidt t...@tim-landscheidt.de ---
The change to the package has been merged, now it must be built and put into
the WMF repo.  On IRC, paravoid said this is usually done by the one who merged
the change - Coren :-).

-- 
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 53691] browsertests: triggers for VisualEditor

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53691

--- Comment #24 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 102960 abandoned by Jhall:
[Browser test] WIP Modifications for PhantomJS compatibility

Reason:
Abandoning this patch since we have implemented support for headless browser
testing in the mediawiki-selenium Rubygem (rather than implementing it in each
individual repo).

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

-- 
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 55463] LiquidThreads: Live preview of a reply doesn't work anymore

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=55463

Alex Monk kren...@gmail.com changed:

   What|Removed |Added

 CC||kren...@gmail.com

--- Comment #4 from Alex Monk kren...@gmail.com ---
(Quoting comment #1)
 I'll undo that part of the optimisation for now but this is really something
 that LQT should fix.

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


[Bug 53691] browsertests: triggers for VisualEditor

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53691

Jeff Hall jh...@wikimedia.org 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 60602] VisualEditor:Apply Changes button remains active even though Size values are invalid appears in Advanced Media Settings

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60602

--- Comment #3 from Moriel Schottlender mor...@gmail.com ---
The problem in my opinion with #2 is that if a user spent time working on new
settings (caption / alternate text / position etc) we force them to deal with
size before applying the rest. In general I think that might be less convenient
in the long run.

I think the better approach (giving the user more leeway) is to alert the user
that the parameter is wrong and won't be applied, save everything else, and
allow the user to go back in and deal with the size widget specifically if they
want to (or decide they don't want to deal with numerical values and resize
with the mouse)

I think that while it's less like others are doing, this might give the user
more leeway when fixing and working on stuff. Instead of forcing the user to
deal with a problem they might just want to undo, we let the user save
everything else and choose if they want to go back to retrying the size
specifically.

-- 
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 35887] Chrome: Editing undos limited until last edit toolbar click

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35887

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 Blocks||17653

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


[Bug 29908] (Old) Edit toolbar not displayed on .js and .css pages

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29908

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 Blocks||17653

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


[Bug 17653] Edit toolbar Edit tools (tracking)

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=17653

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 CC||mybugs.m...@gmail.com
 Depends on||28856, 29908, 21970, 5645,
   ||9754, 45144, 45145, 11131,
   ||35887, 31780, 23058, 19848

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


[Bug 21970] Update classic edit toolbar design

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=21970

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 Blocks||17653

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


[Bug 31780] WikiEditor dialogs kill the undo buffer in IE and Chrome

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31780

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 Blocks||17653

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


[Bug 19848] not all editing icons always applicable

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19848

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 Blocks||17653

-- 
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 60626] New: VisualEditor: Character set in mathematical symbols is out of order (degree, seconds, minutes)

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60626

   Web browser: ---
Bug ID: 60626
   Summary: VisualEditor:  Character set in mathematical symbols
is out of order (degree, seconds, minutes)
   Product: VisualEditor
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: trivial
  Priority: Unprioritized
 Component: General
  Assignee: jforres...@wikimedia.org
  Reporter: wmf.whatamido...@yahoo.com
CC: jforres...@wikimedia.org, jh...@wikimedia.org,
krinklem...@gmail.com, ryasm...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Reproducible: Always

http://mediawiki.org/wiki/MediaWiki:Visualeditor-specialcharinspector-characterlist-insert
should have the logical order of degrees, minutes, seconds, not with seconds in
the middle.

-- 
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 45144] Load toolbar on element ready instead of content ready

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45144

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 Blocks||17653

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


[Bug 23058] More edit toolbar buttons

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=23058

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 Blocks||17653

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


[Bug 5645] Hide signature button from edit toolbar in main namespace

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=5645

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 Blocks||17653

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


[Bug 28856] Move classic (old) edit toolbar (from module mediawiki.action.edit) into an extension

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28856

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 Blocks||17653

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


[Bug 45145] Load editing toolbar on element ready instead of content ready

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45145

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 Blocks||17653

-- 
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 9754] Customisable per-user edit tools

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=9754

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 Blocks||17653

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


[Bug 11131] Edit toolbar needs more appropriate alt text for buttons

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11131

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 Blocks||17653

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


[Bug 31397] Custom namespaces are not shown correctly in the log

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31397

--- Comment #2 from Patrick Westerhoff patrickwesterh...@gmail.com ---
Uh, well, that’s somewhat difficult after all this time :D

I did look through a few thousand filter log entries now but couldn’t find a
recent example, so I don’t know if the issue still exists or not.

The namespace where this originally happened is `202`.

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


[Bug 19848] not all editing icons always applicable

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19848

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

 CC||mybugs.m...@gmail.com

--- Comment #3 from Helder mybugs.m...@gmail.com ---
(In reply to comment #0)
 3.mathInsert formula here/math
(...)
 Maybe 3 also needs to be sensitive to some variable but I didn't check.

Solved by bug 60471?

-- 
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 60543] Special:PrefixIndex omits stripprefix=1 for Next page link

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60543

--- Comment #7 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 110408 had a related patch set uploaded by Se4598:
update RELEASE-NOTES-1.22 for bug 60543

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

-- 
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 60584] Add support for running headless browser tests to mediawiki-selenium Rubygem

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60584

--- Comment #10 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 110390 merged by jenkins-bot:
Make it possible to run VisualEditor tests in headless mode

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

-- 
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 59953] action=querymeta=filerepoinfo reports boolean not in api way for xml format

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=59953

--- Comment #4 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 108315 merged by jenkins-bot:
treat true as empty string, skip false in xml format

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

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


[Bug 60628] New: add endpoint to show invalid users as html page

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60628

   Web browser: ---
Bug ID: 60628
   Summary: add endpoint to show invalid users as html page
   Product: Analytics
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: Wikimetrics
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: suma...@wikimedia.org
CC: christ...@quelltextlich.at, dandree...@wikimedia.org,
dvanli...@gmail.com, nu...@wikimedia.org,
tneg...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

followup to bug 58208 .

Knock together a template for /cohorts/detail/invalid-users/[number] that would
display a list of those invalid wiki usernames (or user IDs) and state what
invalid means in this context.

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


[Bug 56085] Move config folder to mediawiki-selenium gem

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56085

--- Comment #45 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 110356 merged by jenkins-bot:
[browser test] cucumber.yml is no longer needed

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

-- 
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 60262] parsoid should allow binding to a specific IP or interface

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60262

Arlo Breault abrea...@wikimedia.org changed:

   What|Removed |Added

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

--- Comment #5 from Arlo Breault abrea...@wikimedia.org ---
Now exposed as PARSOID_PORT  PARSOID_HOST.

-- 
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 60629] New: HTTP 500 - {{#language:codeʹ1|code2}} if code2 contains single/double quotes or ampersand

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60629

   Web browser: ---
Bug ID: 60629
   Summary: HTTP 500 - {{#language:codeʹ1|code2}} if code2
contains single/double quotes or ampersand
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: ParserFunctions
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: verd...@wanadoo.fr
Classification: Unclassified
   Mobile Platform: ---

Summary: we get a Server HTTP error 500 instantly with
  {{#language:code1|code2}}
if code2 contains a single or double quote, or an ampersand.

So,
  {{#language:en|'}} or
  {{#language:en|}} or
  {{#language:en|}}
DO crash. As these three character are not valid in BCP47 language/locale codes
(or the few legacy non-standard codes used in Wikimedia sites and remaining in
various historic pages), the codes in parameter are returned verbatim without
mapping them to a native language name.

But,
  {{#language:'}} or {{#language:'|en}} or
  {{#language:}} or {{#language:|en}} or
  {{#language:}} or {{#language:|en}}
DO NOT crash: the y are returned verbatim (in fact only as decimal numeric
character entities.

Details follow.

---

No language codes shoud ever contain these three characters (but some local
extensions may want to use other characters such as spaces/underscores, colons,
slashes, arrobaces, dots... but these don't crash the #language function, not
even if we attempt to feed non-ASCII characters), so any occurence of these
characters in parameter 1 will make #language return the input string verbatim
without translating it, so:

{{#language:français}} returns français
{{#language:Slovopedia}} returns Slovopedia

Now let's use a valid language code in parameter but feed the second parameter
(to indicate that we want the language name translated in another target
language, if possible:

{{#language:fr|en}} returns French
{{#language:fr|fr}} returns français
{{#language:fr|de}} returns Französisch

OK now with missing translations (and no fallback):

{{#language:pdc|ckb}} returns Pennsylvany German:
  both codes are valid, there's no other fallback than English

{{#language:pdc|ckb-brai}} returns Pennsylvany German:
  both codes are valid BCP47 codes, but the Braille script variant of language
code ckb is still undefined (this would require implementing the
transliteration scheme to Braille for this language); the server may retry
using BCP47 rules looking for a translation in diq only, it does not find it,
and after looking for defined fallbacks of ckb, will finally select the
default to give a name of pdc in English.

Now with invalid codes:
{{#language:pdc|ckb+brai(1)}} returns Plattdütsch:
  the second code is invalid under all rules, so it is ignored. No fallback
chain can be determined, so the server will try to find the native name (all
supported languages in MEdiaWiki have a native name or autonym.

Now with invalid codes including the apostrophe-quote:
{{{#language:pdc|ckb it's failing}} the server crashes with HTTP 500.

This is a serious issue which, could cause a DoS attack on the server, if the
following very simple code:
{{#language:en|'}}
is inserted in a widely used template, so that it will block the navigation
over lots of page (and many server error 500 may drain a lot of resources, if
thie eror 500 comes from a PHP instance crash that must be restarted).

This code could be generated by feeding the second parameter with a subpagename
(coming from {{SUBPAGENAME}} where it is HTML-encoded, or from {{SUBPAGENAMEE}}
where it is URL-encoded with the legacy WIKI style).

To correct this:

The 2nd parameter of #language must be checked like the 1st one; if the string
is longer than allowed language codes (you could accept up to the max length of
a page name), or if it contains characters in ['], treat this parameter as an
invalid language code, and ignore it (but you can still use the 1st code to
return the autonym mapped to it)

For now, on Mediawiki-Wiki I completed the following article about the issues
and tricky details (and other related bugs/inconsistencies I discovered)

[[mw:Manual:PAGENAMEE encoding]]

Look at the table in this page showing the effects of the various encodings
used in pagenames or for the three styles of urlencodings and anchorencode.


But the real issue in this bug report is in #language.


To avoid this bug, in pages that attempt to detect if a page is a translation
or the source page of trnaslations by checking the content of their last
subpagename, I also performed many tests to make sure that



[[m:Template:Pagelang]] on Meta-Wiki and on MediaWiki-Wiki will now NEVER
return any subpage name that:

* matches the full page (this is not a subpage of another base page, so it is
not a translation produced by the Translate extension).

* is 

[Bug 60629] HTTP 500 - {{#language:code1|code2}} if code2 contains single/double quotes or ampersand

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60629

Philippe Verdy verd...@wanadoo.fr changed:

   What|Removed |Added

Summary|HTTP 500 -  |HTTP 500 -
   |{{#language:codeʹ1|code2}}  |{{#language:code1|code2}}
   |if code2 contains   |if code2 contains
   |single/double quotes or |single/double quotes or
   |ampersand   |ampersand

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


[Bug 45145] Load editing toolbar on element ready instead of content ready

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=45145

Helder mybugs.m...@gmail.com changed:

   What|Removed |Added

   Keywords||javascript
 CC||mybugs.m...@gmail.com

-- 
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 60628] add endpoint to show invalid users as html page

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60628

--- Comment #1 from Bingle bingle-ad...@wikimedia.org ---
Prioritization and scheduling of this bug is tracked on Mingle card
https://wikimedia.mingle.thoughtworks.com/projects/analytics/cards/cards/1423

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


[Bug 55463] LiquidThreads: Live preview of a reply doesn't work anymore

2014-01-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=55463

--- Comment #5 from Helder mybugs.m...@gmail.com ---
Should we change the bug title then?
(The live preview of a reply is working 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


<    1   2   3   4   5   6   >