[Bug 70698] Pokey does not always show on flyout on IE 8

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

Matthew Flaschen  changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED
   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 70631] Have Jenkins run a voting PHPUnit job for GettingStarted

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

--- Comment #3 from Matthew Flaschen  ---
It looks like the issue was in our extension (it was already running tests,
presumably the core ones, but not our own).

BTW, I made a minor change to the docs to clarify it was talking about PHPUnit
(https://www.mediawiki.org/w/index.php?title=Continuous_integration/Tutorials/Adding_a_MediaWiki_extension&diff=1163392&oldid=1021658).
 Correct me if I'm wrong.

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


[Bug 70855] Login as another user no longer works

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

--- Comment #12 from Jon  ---
https://bugzilla.wikimedia.org/show_bug.cgi?id=49890

There was discussion on mailing lists about killing this behaviour.

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


[Bug 70631] Have Jenkins run a voting PHPUnit job for GettingStarted

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

Gerrit Notification Bot  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 70631] Have Jenkins run a voting PHPUnit job for GettingStarted

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

--- Comment #2 from Gerrit Notification Bot  ---
Change 160608 had a related patch set uploaded by Mattflaschen:
Register PHPUnit tests

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

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


[Bug 69420] hhvmsh does not load MediaWiki's context

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

Matthew Flaschen  changed:

   What|Removed |Added

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

--- Comment #1 from Matthew Flaschen  ---
This is apparently 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 70351] MediaWiki UI styles are applied to core instead of relevant skins

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

--- Comment #12 from Matthew Flaschen  ---
(In reply to Isarra from comment #11)
> That being said, this also comes up with regard to js gadgets, which will
> often use special buttons even when the skin may not, and they will need a
> sane coloured button default.

That's kind of what I'm getting at below (the login page was just an example). 
JS gadgets and user scripts (even on-wiki content, for mediawiki.ui.button
specifically) have access to the MW UI modules.  However, if a JS gadget makes
a MW UI button, it's going to look however MW UI buttons look in the skin.  If
there are no MW UI styles in that skin, it's going to look totally unstyled.

There's not going to be an exception where FooSkin MW UI buttons from core
pages normally look like X, but gadgets running on a FooSkin wiki look like Y. 
All FooSkin MW UI buttons are going to look the same (except that constructive
looks different from progressive, etc.).

> All three should be options. We need a sane default (in core, that can be
> used by whatever skin if desired, and will be included in the main one(s))

That's the existing implementation.

> > > Is there any documentation on how to do that, or use the underlying
> > > framework? From where I'm standing it looks like the only option is to
> > > manually override all the styles, and when they keep changing and getting
> > > more complex, that's pretty horrible.
> > 
> > The basic tool is
> > https://www.mediawiki.org/wiki/Manual:$wgResourceModuleSkinStyles , along
> > with the discussion above about whether you're augmenting or replacing
> > styles (that is important re what I said about 'default').
> > 
> > Importantly, there are also mixins at
> > https://git.wikimedia.org/tree/mediawiki%2Fcore.git/
> > e2e6f7767ef58659904422c36d390c230b59852f/resources%2Fsrc%2Fmediawiki.less
> > which you can use (note the mediawiki.less/mediawiki.ui directory, which has
> > mixins and variables).  These can be imported with e.g.:
> > 
> > @import "mediawiki.ui/variables";
> 
> But if that's variables, what about the framework? What all can we change?

There are also mixins at mediawiki.ui/mixins (e.g. button-colors, which will
let you make MW UI-style buttons, but have your own color choices).  (I realize
some skins might want to go for a totally different button approach, but this
is one tool)

See 
https://git.wikimedia.org/blob/mediawiki%2Fcore.git/HEAD/resources%2Fsrc%2Fmediawiki.less%2Fmediawiki.ui%2Fmixins.less

> How do we include the js for the form elements (since a lot simply CANNOT be
> styled with css alone)?

MediaWiki UI has no JavaScript currently, though it may be necessary for future
work.

> How do we create our own styles from the ground up,
> not just change some colours and crap? Or is that all in there somewhere?

If you're doing it from the ground up, basically the same as any other LESS or
CSS (you can use either).

You would then use +foo or foo (see
https://www.mediawiki.org/wiki/Manual:$wgResourceModuleSkinStyles) depending on
whether you're replacing the whole module, or augmenting it (MW UI itself is
broken into multiple modules, which will probably make your job easier, since
you can choose to e.g. replace the button module, but leave the checkbox module
intact).

This requires the 'default' thing I mentioned earlier, which I'll try to do
soon, since it doesn't actually hurt anything (even if no one actually makes a
skin-specific MW UI).

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


[Bug 57617] watchlist table not available on labs

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

Dispenser  changed:

   What|Removed |Added

 Blocks||66868

-- 
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 66868] Migrate http://toolserver.org/~dispenser/* to Tool Labs

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

Dispenser  changed:

   What|Removed |Added

 Depends on||57617

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


[Bug 70868] deployment-salt can't talk to itself, git deploy hangs

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

jeremyb  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||bugzilla+org.wikimedia@tuxm
   ||achine.com
 Resolution|--- |FIXED

--- Comment #3 from jeremyb  ---
2 prerequisites before booting salt-minion:

* kill all the existing salt-minion/grain-ensure/salt-call/etc. procs
* make sure /etc/salt/minion has been fixed after
a31fd6929216e15a40a20a4b5716f9c75932bc62 (by puppet or by hand)

all are now salty except:
* deployment-saio
* deployment-parsoidcache02
* deployment-soa-cache01

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


[Bug 47694] "Remember me" on Login interface should state duration

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

--- Comment #65 from Matthew Flaschen  ---
Created attachment 16479
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=16479&action=edit
Google 2-factor "remember me" text

(In reply to Matt Walker from comment #17)
> (In reply to comment #15)
> > "Keep me logged in" satisfies this need.
> 
> Keep me logged in implies perpetuity. Which is what triggers the confusion
> when someone is logged out.
> 
> Look at a service like Gmail -- initially it says "keep me logged in"
> because it will. But if you have two factor auth; it then gives you a new
> form that specifically says "Remember this computer for 30 days."

Is this still the case?  This is a different use case anyway, because it's a
distinct feature (this computer is particularly private, so I don't want to
enter my 2-factor code every time) from the regular login screen.

However, it looks like they're using (screenshot attached), "Don't ask for
codes again on this computer" now unless we're considering different forms.

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


[Bug 28419] Replace MD5 password hashing with more secure hash

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

--- Comment #109 from Gerrit Notification Bot  ---
Change 148442 abandoned by Parent5446:
Replaced hash_equals with a custom function

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

-- 
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 70676] ChangeEmail does not always allow you to cancel if you have an invalid email

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

Matthew Flaschen  changed:

   What|Removed |Added

   Assignee|wikibugs-l@lists.wikimedia. |rohan1...@yahoo.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 70755] Update PageLoader::getRevision to pull revision id from Parsoid content-revision-id header

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

Santhosh Thottingal  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 70755] Update PageLoader::getRevision to pull revision id from Parsoid content-revision-id header

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

--- Comment #2 from Santhosh Thottingal  ---
The header content-revision-id was introduced in parsoid in this commit:
https://gerrit.wikimedia.org/r/#/c/159773/

-- 
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 70844] LocalisationUpdate failed: mwversionsinuse returned empty list

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

Bryan Davis  changed:

   What|Removed |Added

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

--- Comment #2 from Bryan Davis  ---
Looks to be fixed 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 70801] Styles conflicting with GettingStarted modal buttons

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

Matthew Flaschen  changed:

   What|Removed |Added

Summary|styles conflicting with |Styles conflicting with
   |guided tour |GettingStarted modal
   ||buttons

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


[Bug 64440] Language setting keeps resetting itself at kk:

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

This, that and the other (TTO)  changed:

   What|Removed |Added

 CC||at.li...@live.com.au

--- Comment #9 from This, that and the other (TTO)  ---
[1] looks suspicious. No other language converters set $wgLanguageCode...

[1]
http://git.wikimedia.org/blob/mediawiki%2Fcore.git/38d7a2abf1a94b3f637f49177a5bc7b993087229/languages%2Fclasses%2FLanguageKk.php#L302

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


[Bug 55733] [[w:]] on betawikiversity points to https://beta.wikipedia.org which doesn't exist

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

This, that and the other (TTO)  changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |NEW

--- Comment #4 from This, that and the other (TTO)  ---
Will be fixed once interwiki.cdb is synched.

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


[Bug 53011] Make interwiki links in br.wikimedia.org point to Portuguese projects iunstead of Breton

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

This, that and the other (TTO)  changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |NEW

--- Comment #4 from This, that and the other (TTO)  ---
Will be fixed once interwiki.cdb is synched.

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


[Bug 70879] Simple accessibility preferences

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

--- Comment #1 from Quiddity  ---
There's a wireframe mockup idea, and some notes, at 
https://www.mediawiki.org/wiki/Talk:Requests_for_comment/Redesign_user_preferences#The_Appearance_menu

Ideally it would Not be in Special:Preferences, but would instead be a menu
that all users, even readers who are not logged-in, can use. Saved in
cookies/localstorage, if the user isn't logged-in.

I included "Appearance" as well as "Accessibility", partially because they
often overlap, and partially because FLOE and GPII do the same, eg
http://www.floeproject.org/prefsEditors.html (both the top-right live-example
of "Show display preferences", and the video).

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


[Bug 70818] mediawiki.ui: dependency to module .anchor caused button regression

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

--- Comment #2 from Matthew Flaschen  ---
It's not unused, unfortunately (it's used for the "Alerts (0)" or however many
you have, which is "(echo-notification-alert)"), but this is a valid bug.

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


[Bug 55733] [[w:]] on betawikiversity points to https://beta.wikipedia.org which doesn't exist

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

--- Comment #3 from Gerrit Notification Bot  ---
Change 94593 merged by jenkins-bot:
Add language override and extra link support for dumpInterwiki

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

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


[Bug 56207] "w" interwiki on 'br.wikimedia' is linking to 'br.wikipedia'

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

--- Comment #6 from Gerrit Notification Bot  ---
Change 94593 merged by jenkins-bot:
Add language override and extra link support for dumpInterwiki

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

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


[Bug 53011] Make interwiki links in br.wikimedia.org point to Portuguese projects iunstead of Breton

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

--- Comment #3 from Gerrit Notification Bot  ---
Change 94593 merged by jenkins-bot:
Add language override and extra link support for dumpInterwiki

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

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


[Bug 70879] Simple accessibility preferences

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

Matthew Flaschen  changed:

   What|Removed |Added

   Keywords||accessibility

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


[Bug 70879] Simple accessibility preferences

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

Matthew Flaschen  changed:

   What|Removed |Added

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

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


[Bug 70879] New: Simple accessibility preferences

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

Bug ID: 70879
   Summary: Simple accessibility preferences
   Product: MediaWiki
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: User preferences
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: mflasc...@wikimedia.org
CC: agarr...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

There should be easy to use accessibility options.  A couple things to
consider:

* Options to change the main colors (e.g. regular links, visited links, "red"
links, button colors, etc.) easily, targeted for color-blind users (I'm not
saying our colors are particularly bad for color-blind users, but this still
might be a useful option.

* Font size

Based on suggestions by George Barnick on the design list.

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


[Bug 48946] Add font size adjustment feature to the mobile front end

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

Matthew Flaschen  changed:

   What|Removed |Added

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

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


[Bug 70834] Crash caused by pressing Retry button on connection issue error

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

Gerrit Notification Bot  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 70834] Crash caused by pressing Retry button on connection issue error

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

--- Comment #2 from Gerrit Notification Bot  ---
Change 160604 had a related patch set uploaded by BearND:
Slow down retry button

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

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


[Bug 70834] Crash caused by pressing Retry button on connection issue error

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

--- Comment #1 from Bernd Sitzmann  ---
I was able to repro this pretty much every time. I believe this is the same as
Alex was able to.
Airplane mode on -> follow link to another page -> Airplane mode off -> hit the
retry button like a madman, esp. before the connection comes back -> boom

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


[Bug 70856] VisualEditor: Style and bgcolor attributes normalized by Internet Explorer

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

James Forrester  changed:

   What|Removed |Added

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

--- Comment #8 from James Forrester  ---
Deploy scheduled for 08:00 SF time tomorrow.

-- 
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 70855] Login as another user no longer works

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

--- Comment #11 from Tyler Romeo  ---
(In reply to Betacommand from comment #10)
> Actually its not. That particular issue has existed for as long as I can
> remember (~2006) If I log in via a bot, the cookies/session is kept and
> reused as needed. If I then login via a web browser, both sessions work.
> However if I log out via the web browser, the session/tokens that the bot
> have been using get invalidated and cause the bot to no longer be logged in. 
> 
> That is about as core as one can get, prior to this a user could be logged
> in as themselves, note their bot has a new message, log into the bot
> account, clear the message, and then log back into the main account without
> ever logging out. This enables multiple logins and does not cause issues
> where the bot or user gets logged out on other devices/locations.

I can assure you that MediaWiki core does not simultaneously log out all
sessions. All logging out does is clear your cookies. I also just tested this
on my Vagrant instance using two different browsers,

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


[Bug 70867] Production log errors: Treebuilder library related?

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

Arlo Breault  changed:

   What|Removed |Added

 CC||abrea...@wikimedia.org
   Assignee|parsoid-t...@wikimedia.org  |abrea...@wikimedia.org

-- 
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 70856] VisualEditor: Style and bgcolor attributes normalized by Internet Explorer

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

--- Comment #7 from Gerrit Notification Bot  ---
Change 160597 merged by Catrope:
Use ve.parseXhtml() and ve.serializeXhtml()

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

-- 
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 70856] VisualEditor: Style and bgcolor attributes normalized by Internet Explorer

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

--- Comment #6 from Gerrit Notification Bot  ---
Change 160596 merged by Catrope:
Use ve.parseXhtml() and ve.serializeXhtml()

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

-- 
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 70855] Login as another user no longer works

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

--- Comment #10 from Betacommand  ---
Actually its not. That particular issue has existed for as long as I can
remember (~2006) If I log in via a bot, the cookies/session is kept and reused
as needed. If I then login via a web browser, both sessions work. However if I
log out via the web browser, the session/tokens that the bot have been using
get invalidated and cause the bot to no longer be logged in. 

That is about as core as one can get, prior to this a user could be logged in
as themselves, note their bot has a new message, log into the bot account,
clear the message, and then log back into the main account without ever logging
out. This enables multiple logins and does not cause issues where the bot or
user gets logged out on other devices/locations.

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


[Bug 70855] Login as another user no longer works

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

--- Comment #9 from Tyler Romeo  ---
(In reply to Betacommand from comment #8)
> However logging out can cause problems because it invalidates all login
> sessions. If a user is operating a bot and switches to remove the new
> message talk page notice, it logs the bot out. 

That is CentralAuth, not a property of core.

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


[Bug 70856] VisualEditor: Style and bgcolor attributes normalized by Internet Explorer

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

--- Comment #5 from Gerrit Notification Bot  ---
Change 160584 merged by jenkins-bot:
Use ve.parseXhtml() and ve.serializeXhtml()

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

-- 
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 70856] VisualEditor: Style and bgcolor attributes normalized by Internet Explorer

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

--- Comment #4 from Gerrit Notification Bot  ---
Change 160597 had a related patch set uploaded by Jforrester:
Use ve.parseXhtml() and ve.serializeXhtml()

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

-- 
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 70856] VisualEditor: Style and bgcolor attributes normalized by Internet Explorer

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

--- Comment #3 from Gerrit Notification Bot  ---
Change 160596 had a related patch set uploaded by Jforrester:
Use ve.parseXhtml() and ve.serializeXhtml()

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

-- 
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 70855] Login as another user no longer works

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

Betacommand  changed:

   What|Removed |Added

 CC||phoenixoverr...@gmail.com

--- Comment #8 from Betacommand  ---
However logging out can cause problems because it invalidates all login
sessions. If a user is operating a bot and switches to remove the new message
talk page notice, it logs the bot out. 

Honestly I think what this is fixing is a mole hill compared to the mountain of
problems that it creates.

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


[Bug 70878] New: Flow QA: Lock post action is offscreen and browser test fails

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

Bug ID: 70878
   Summary: Flow QA: Lock post action is offscreen and browser
test fails
   Product: MediaWiki extensions
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Flow
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: sp...@wikimedia.org
CC: cmcma...@wikimedia.org, dh...@wikimedia.org,
ebernhard...@wikimedia.org, mpinc...@wikimedia.org,
pandiculat...@gmail.com, sp...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

Since build 215 Flow "Lock and unlock topics" browser test has failed on
Firefox with
   "Element is not currently visible and so may not be interacted with"

If you watch the screencast, the Lock topic action is indeed off-screen, below
the bottom of the window.

As we add more items to the action menus, this is more likely to happen. We
could position the [...] higher before clicking it, or tell the test to find
the action item element, scroll it into view, and then click it.  I think a
Flow test already solved a similar problem.

See e.g.
https://integration.wikimedia.org/ci/job/browsertests-Flow-en.wikipedia.beta.wmflabs.org-linux-firefox-sauce/215/testReport/junit/%28root%29/Lock%20and%20unlock%20topics/Locking_a_topic_and_then_changing_your_mind/

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


[Bug 70855] Login as another user no longer works

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

--- Comment #7 from Tyler Romeo  ---
(In reply to Bartosz Dziewoński from comment #5)
> Indeed, but it should be easy enough to show the form instead of redirecting
> when the user is logged in and there's no 'returnto' parameter.

(In reply to Jon from comment #6)
> To play devils advocate, why would you want to visit the login form whilst
> logged in? What is wrong with logging out and then visiting it?

These two sort of go together.

The only situation in which there would be no 'returnto' parameter is if you
manually navigated to the login page by typing "Special:Userlogin" in the
search bar (or by entering it in your address bar). I feel like it is much
easier and trivial to simply click Logout and then log back in again.

We might be able to improve the experience by having the logout page redirect
back to the login page automatically, and just display a message saying you
were logged out.

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


[Bug 70874] Empty query in /data/project/quentinv57-tools/public_html/tools/sulinfo.php on line 207

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

Technical 13  changed:

   What|Removed |Added

   Priority|Unprioritized   |High

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


[Bug 70856] VisualEditor: Style and bgcolor attributes normalized by Internet Explorer

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

--- Comment #2 from Gerrit Notification Bot  ---
Change 160584 had a related patch set uploaded by Catrope:
Use ve.parseXhtml() and ve.serializeXhtml()

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

-- 
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 70856] VisualEditor: Style and bgcolor attributes normalized by Internet Explorer

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

Gerrit Notification Bot  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 70856] VisualEditor: Style and bgcolor attributes normalized by Internet Explorer

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

--- Comment #1 from Gerrit Notification Bot  ---
Change 160583 had a related patch set uploaded by Catrope:
Work around IE's normalization of style attributes by abusing XML parsers

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

-- 
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 70877] Support

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

Jackmcbarn  changed:

   What|Removed |Added

 CC||jackmcbarn+w...@gmail.com

--- Comment #1 from Jackmcbarn  ---
IMO, a better option is "breaking" it in PHP rather than "fixing" it in
Parsoid.

-- 
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 70877] New: Support

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

Bug ID: 70877
   Summary: Support 
   Product: Parsoid
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: tokenizer
  Assignee: parsoid-t...@wikimedia.org
  Reporter: gwi...@wikimedia.org
CC: jforres...@wikimedia.org, ssas...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

The PHP parser eats this, we don't.

-- 
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 51798] VisualEditor: There should be help links in every context - dialog boxes, inspectors, etc.

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

James Forrester  changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |ASSIGNED

--- Comment #16 from James Forrester  ---
The page settings ("meta") dialog now has a complete set of contextual help.
Will wait for further user feedback before doing the rest of the dialogs.

-- 
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 51798] VisualEditor: There should be help links in every context - dialog boxes, inspectors, etc.

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

--- Comment #15 from Gerrit Notification Bot  ---
Change 160371 merged by jenkins-bot:
Add contextual help to all remaining meta dialog controls

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

-- 
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 70876] New: vagrant run-test parameter parsing is broken on Windows

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

Bug ID: 70876
   Summary: vagrant run-test parameter parsing is broken on
Windows
   Product: MediaWiki-Vagrant
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: yu...@wikimedia.org
CC: dduv...@wikimedia.org, o...@wikimedia.org,
yuvipa...@gmail.com
   Web browser: ---
   Mobile Platform: ---

vagrant run-tests works fine without parameters, but breaks as follows on my
Windows box:

~/mw/v/mediawiki/includes/content
$ vagrant run-tests
/vagrant/mediawiki/tests/phpunit/includes/content/JsonContentTest.php
bash: -c: line 0: syntax error near unexpected token `('
bash: -c: line 0: `run-mediawiki-tests C:/Program Files
(x86)/Git/vagrant/mediawiki/tests/phpunit/includes/content/JsonContentTest.php'

~/mw/v/mediawiki/includes/content
$ vagrant run-tests ../../tests/phpunit/includes/content/JsonContentTest.php
Cannot open file "../../tests/phpunit/includes/content/JsonContentTest.php".

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


[Bug 17577] Image urls should have far future expires

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

Gabriel Wicke  changed:

   What|Removed |Added

 CC||gwi...@wikimedia.org
 Depends on||64214

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


[Bug 64214] Use content hash based image / thumb URLs

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

Gabriel Wicke  changed:

   What|Removed |Added

 Blocks||17577

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


[Bug 70855] Login as another user no longer works

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

Jon  changed:

   What|Removed |Added

 CC||jrob...@wikimedia.org

--- Comment #6 from Jon  ---
To play devils advocate, why would you want to visit the login form whilst
logged in? What is wrong with logging out and then visiting it?

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


[Bug 70874] Empty query in /data/project/quentinv57-tools/public_html/tools/sulinfo.php on line 207

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

Cometstyles  changed:

   What|Removed |Added

 CC||cometsty...@yahoo.com

--- Comment #1 from Cometstyles  ---
Luxo's GUC tool is failing to search IP contributions as well...may be
related..
http://tools.wmflabs.org/guc/index.php < test it with an IP ..

"0 wikis searched. "

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


[Bug 69559] Redlinks show in stable after VE or wikitext edit

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

--- Comment #7 from Jon  ---
FYI in preview this was by design so that editors could work out if they
created a real link or not.

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


[Bug 70875] New: Links with attributes containing escaped right square brackets don't close properly

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

Bug ID: 70875
   Summary: Links with attributes containing escaped right square
brackets don't close properly
   Product: MediaWiki
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Parser
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: jackmcbarn+w...@gmail.com
CC: bjor...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

In this wikitext:

*hello [[Example|convert: invalid
number]] world
*The following link [[The End]] stops the link from the previous line!

The  ends up inside the title attribute, where it (obviously) doesn't work.
This makes the link extend up until the next link instead of ending where it
should.

Originally reported at https://en.wikipedia.org/w/index.php?diff=625356218

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


[Bug 70495] TemplateSandbox doesn't handle things like #ifexist and Scribunto's getContent

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

--- Comment #8 from Gerrit Notification Bot  ---
Change 160572 had a related patch set uploaded by Jackmcbarn:
Use RevisionFromTitle instead of a template callback

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

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


[Bug 70495] TemplateSandbox doesn't handle things like #ifexist and Scribunto's getContent

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

--- Comment #9 from Jackmcbarn  ---
All of the patches needed to fix this are now uploaded.

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


[Bug 63120] Set up automatic builds for extensions ported to HHVM

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

Bug 68256 Summary: Jenkins: Set up integration slaves with Ubuntu Trusty
https://bugzilla.wikimedia.org/show_bug.cgi?id=68256

   What|Removed |Added

 Status|ASSIGNED|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 68256] Jenkins: Set up integration slaves with Ubuntu Trusty

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

Krinkle  changed:

   What|Removed |Added

 Status|ASSIGNED|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 66056] Jenkins: Upgrade nodejs from 0.8.x to 0.10.x on wmflabs integration slaves

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

Bug 68256 Summary: Jenkins: Set up integration slaves with Ubuntu Trusty
https://bugzilla.wikimedia.org/show_bug.cgi?id=68256

   What|Removed |Added

 Status|ASSIGNED|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 63899] Upgrade servers to Ubuntu 14.04

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

Bug 68256 Summary: Jenkins: Set up integration slaves with Ubuntu Trusty
https://bugzilla.wikimedia.org/show_bug.cgi?id=68256

   What|Removed |Added

 Status|ASSIGNED|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 66056] Jenkins: Upgrade nodejs from 0.8.x to 0.10.x on wmflabs integration slaves

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

Krinkle  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 70843] Fatal error, timeout when running composer install

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

Gerrit Notification Bot  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 70843] Fatal error, timeout when running composer install

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

--- Comment #8 from Gerrit Notification Bot  ---
Change 160571 had a related patch set uploaded by Dduvall:
Split HHVM php.ini into common and fcgi hiera settings

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

-- 
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 70843] Fatal error, timeout when running composer install

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

Dan Duvall  changed:

   What|Removed |Added

   Assignee|wikibugs-l@lists.wikimedia. |dduv...@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 68571] OOjs UI: Auto-shortening of dialog titles when there's insufficient space isn't working

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

Bartosz Dziewoński  changed:

   What|Removed |Added

   Assignee|jforres...@wikimedia.org|matma@gmail.com

-- 
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 68132] SecurePoll Redesign: Voter Eligibility form throws error if you only fill out basic options

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

--- Comment #2 from Gerrit Notification Bot  ---
Change 150871 merged by jenkins-bot:
Improve hidden field validation

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

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


[Bug 70495] TemplateSandbox doesn't handle things like #ifexist and Scribunto's getContent

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

--- Comment #7 from Gerrit Notification Bot  ---
Change 160570 had a related patch set uploaded by Jackmcbarn:
Add RevisionFromTitle hook

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

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


[Bug 68106] Mobile pages are cached in the file cache

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

--- Comment #3 from Gerrit Notification Bot  ---
Change 160568 had a related patch set uploaded by MaxSem:
Disable file caching for mobile pageviews

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

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


[Bug 70874] New: Empty query in /data/project/quentinv57-tools/public_html/tools/sulinfo.php on line 207

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

Bug ID: 70874
   Summary: Empty query in
/data/project/quentinv57-tools/public_html/tools/sulin
fo.php on line 207
   Product: Tool Labs tools
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Quentinv57's tools
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: technical...@yahoo.com
CC: cybernet...@yahoo.com, quentin...@gmail.com
   Web browser: ---
   Mobile Platform: ---

SUL Info

Warning: mysqli::query(): Empty query in
/data/project/quentinv57-tools/public_html/tools/sulinfo.php on line 207
SUL info

Name : Singh parichay

User ID : 30319760

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


[Bug 70873] New: Cirrus unable to find insource:"mazovia.pl" on pl.wp where the phrase occurs in a URL

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

Bug ID: 70873
   Summary: Cirrus unable to find insource:"mazovia.pl" on pl.wp
where the phrase occurs in a URL
   Product: MediaWiki extensions
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: CirrusSearch
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: matma@gmail.com
CC: dga...@wikimedia.org, innocentkil...@gmail.com,
neverett+bugzi...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

Cirrus unable to find insource:"mazovia.pl" on pl.wp where the phrase occurs in
a URL. insource:/mazovia\.pl/, however, does find it, but takes ages to run. I
can't tell if this is a bug or expected behavior for some reason.

For example,
https://pl.wikipedia.org/w/index.php?title=Specjalna%3ASzukaj&profile=default&search=insource%3A%22mazovia.pl%22&fulltext=Search
should find https://pl.wikipedia.org/wiki/Elżbieta_Lanc , but doesn't.

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


[Bug 70777] VisualEditor: [Regression wmf21] Inserting multi-node template (?) causes endless snowmen

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

--- Comment #5 from Rummana Yasmeen  ---
Verified the fix in mediawiki.org with the case mentioned above.

-- 
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 65955] VisualEditor: Additional keyboard shortcuts (tracking)

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

Bug 60257 Summary: VisualEditor: Add a shortcut for strikethrough (?which?)
https://bugzilla.wikimedia.org/show_bug.cgi?id=60257

   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 60257] VisualEditor: Add a shortcut for strikethrough (?which?)

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

James Forrester  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 52597] VisualEditor: Add keyboard shortcut for code element/style

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

James Forrester  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 65955] VisualEditor: Additional keyboard shortcuts (tracking)

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

Bug 52597 Summary: VisualEditor: Add keyboard shortcut for code element/style
https://bugzilla.wikimedia.org/show_bug.cgi?id=52597

   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 68106] Mobile pages are cached in the file cache

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

--- Comment #2 from Gerrit Notification Bot  ---
Change 160563 had a related patch set uploaded by MaxSem:
Add a hook to allow extensions to prevent HTML file caching

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

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


[Bug 68106] Mobile pages are cached in the file cache

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

Gerrit Notification Bot  changed:

   What|Removed |Added

 Status|UNCONFIRMED |PATCH_TO_REVIEW
 Ever confirmed|0   |1

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


[Bug 69952] NPEs from concurrency.SaneAsyncTask.onCatch

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

Gerrit Notification Bot  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 69952] NPEs from concurrency.SaneAsyncTask.onCatch

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

--- Comment #2 from Gerrit Notification Bot  ---
Change 160562 had a related patch set uploaded by BearND:
Guard against page being null in savePage

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

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


[Bug 70578] VisualEditor: [Regression wmf21] In Safari, Cannot enter any input in any dialog and VE gets unresponsive after trying to do that

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

--- Comment #6 from Rummana Yasmeen  ---
Verified the fix in test2

-- 
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 51141] VisualEditor: Nicer removal of Cite.php's class=error

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

--- Comment #4 from Alex Monk  ---
(In reply to James Forrester from comment #3)
> Sorry!
> 
> This refers to the hacky fix for bug 50423 which added (eventually):
> 
>   /* HACK: Hide Ref errors in templates */
>   .mw-ext-cite-error {
>   display: none;
>   }
> 
> … to ve.ce.MWReferenceNode.css
> 
> This bug is asking for a way for these errors to not be shown that doesn't
> just suppress the conent (they're caused by the templates rendering out of
> context).

I guess we could send some 'nocontext' parameter in the HTTP request which
would suppress errors based on missing information... Sounds like it would be
even worse than the current solution though.

-- 
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 70768] VisualEditor: [Regression wmf21] Editor is displayed with two toolbars on second initialisation

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

--- Comment #9 from Rummana Yasmeen  ---
Verified the fix in test2

-- 
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 70782] VisualEditor: [Regression wmf21] Cannot open any inspector, throwing error "Uncaught TypeError: Cannot read property 'top' of undefined"

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

--- Comment #2 from Rummana Yasmeen  ---
Verified the fix in test2

-- 
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 70770] VisualEditor: [Regression wmf 21] “Uncaught TypeError: Cannot read property 'top' of undefined” when Editor is launched

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

--- Comment #11 from Rummana Yasmeen  ---
Verified the fix in test2

-- 
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 70870] VisualEditor: [Regression wmf21] The Cite and Re-use options remains enabled even if the toolbar gets disabled when user clicks outside

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

--- Comment #2 from Gerrit Notification Bot  ---
Change 160556 merged by jenkins-bot:
Check whether there is a range selected when enabling/disabling re-use citation
tool

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

-- 
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 60257] VisualEditor: Add a shortcut for strikethrough (?which?)

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

--- Comment #5 from Gerrit Notification Bot  ---
Change 160174 merged by jenkins-bot:
Add keyboard shortcuts for strikethrough and code annotations

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

-- 
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 70870] VisualEditor: [Regression wmf21] The Cite and Re-use options remains enabled even if the toolbar gets disabled when user clicks outside

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

Alex Monk  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 52597] VisualEditor: Add keyboard shortcut for code element/style

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

--- Comment #5 from Gerrit Notification Bot  ---
Change 160174 merged by jenkins-bot:
Add keyboard shortcuts for strikethrough and code annotations

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

-- 
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 70870] VisualEditor: [Regression wmf21] The Cite and Re-use options remains enabled even if the toolbar gets disabled when user clicks outside

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

Gerrit Notification Bot  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 69952] NPEs from concurrency.SaneAsyncTask.onCatch

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

Bernd Sitzmann  changed:

   What|Removed |Added

 CC||bsitzm...@wikimedia.org

--- Comment #1 from Bernd Sitzmann  ---
The inner exception is usually more interesting.

version 2.0-r-2014-08-07

Caused by: java.lang.NullPointerException
at org.wikipedia.savedpages.SavedPage.writeToFileSystem(SavedPage.java:134)
at org.wikipedia.savedpages.SavePageTask.performTask(SavePageTask.java:33)
at org.wikipedia.savedpages.SavePageTask.performTask(SavePageTask.java:16)

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


[Bug 70870] VisualEditor: [Regression wmf21] The Cite and Re-use options remains enabled even if the toolbar gets disabled when user clicks outside

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

--- Comment #1 from Gerrit Notification Bot  ---
Change 160556 had a related patch set uploaded by Alex Monk:
Check whether there is a range selected when enabling/disabling re-use citation
tool

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

-- 
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 70495] TemplateSandbox doesn't handle things like #ifexist and Scribunto's getContent

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

--- Comment #6 from Jackmcbarn  ---
The exists problem and the getContent problem turn out to have totally separate
fixes. The above 4 patches fix the exists problem; the next set of patches will
fix the getContent 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 70855] Login as another user no longer works

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

--- Comment #5 from Bartosz Dziewoński  ---
Indeed, but it should be easy enough to show the form instead of redirecting
when the user is logged in and there's no 'returnto' parameter.

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


[Bug 67156] VisualEditor: Do not let me tab outside the dialog box in Chrome/Safari

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

James Forrester  changed:

   What|Removed |Added

   Target Milestone|--- |VE-deploy-2014-09-18

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


  1   2   3   4   5   >