[Bug 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-09-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

Bug 52683 depends on bug 51308, which changed state.

Bug 51308 Summary: mw.Title cannot parse titles starting with a period.
https://bugzilla.wikimedia.org/show_bug.cgi?id=51308

   What|Removed |Added

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

-- 
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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-09-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

bs...@wikimedia.org 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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-09-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

--- Comment #16 from Gerrit Notification Bot  ---
Change 82575 merged by jenkins-bot:
Get rid of some javascript mw.title related code

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

-- 
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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-09-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

Gerrit Notification Bot  changed:

   What|Removed |Added

 Status|REOPENED|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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-09-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

--- Comment #15 from Gerrit Notification Bot  ---
Change 82575 had a related patch set uploaded by Bsitu:
Get rid of some javascript mw.title related code

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

-- 
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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-08-29 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

bs...@wikimedia.org changed:

   What|Removed |Added

   Assignee|wikibugs-l@lists.wikimedia. |bs...@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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-08-29 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

Andre Klapper  changed:

   What|Removed |Added

 Depends on||51308
   Assignee|nischay...@gmail.com|wikibugs-l@lists.wikimedia.
   ||org

--- Comment #14 from Andre Klapper  ---
(In reply to comment #12 by Erik)
> Not sure why Nischay is an assignee, he is no longer at WMF. Andre, could you
> check the default assignee list?

Default assignee had been nobody@ already; Nischay was set manually.

(In reply to comment #13 by Krinkle)
> The underlying bug is in core.

I assume it's bug 51308, adding dependency.

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


[Bug 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-08-28 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

Fabrice Florin  changed:

   What|Removed |Added

 Blocks||53504

-- 
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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-08-28 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

Krinkle  changed:

   What|Removed |Added

 CC||krinklem...@gmail.com

--- Comment #13 from Krinkle  ---
The underlying bug is in core. mw.Title is a mess right now that in some cases
is more strict and sometimes less strict than the Title.php equivalent.

I'm currently working on rewriting that core module.

Meanwhile, I think this NewPageFeed bug is caused by something no longer
catching the exception when constructing a mw.Title object from arbitrary input
(like page names). Or perhaps it never caught it to begin with.

Either way, though I don't like this pattern, in JS right now mw.Title throws
on invalid titles, just like Title.php returns null instead of a Title instance
from Title::newFromText if the input is invalid.


So where in PHP you need:

 $t = Title::newFromText();
 if ( $t !== null ) {
 } else {
 }

in JS you need:

 try {
  $t = new mw.Title();
 } catch (e) {
 }

-- 
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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-08-28 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

Erik Moeller  changed:

   What|Removed |Added

 CC||bs...@wikimedia.org,
   ||e...@wikimedia.org

--- Comment #12 from Erik Moeller  ---
Not sure why Nischay is an assignee, he is no longer at WMF. Andre, could you
check the default assignee list? Adding Benny who should be able to help with
this.

Fabrice, this is a pretty critical new bug which we'll have to get sorted out
ASAP.

-- 
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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-08-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

Oliver Keyes  changed:

   What|Removed |Added

   Priority|Unprioritized   |High
   Severity|normal  |major

--- Comment #11 from Oliver Keyes  ---
And reprioritising, too. This has left the suite totally broken.

-- 
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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-08-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

Oliver Keyes  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|DUPLICATE   |---

--- Comment #10 from Oliver Keyes  ---
Reopening; sorry, but side-effects of an existing bug do not simply reappear,
independent of the initial bug, N months later, without any tweaks in the
interim.

-- 
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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-08-12 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

--- Comment #9 from Oliver Keyes  ---
Sure, but again, we've had that bug live and present for months and it has
never caused those effects before. I'm not particularly technical, but I'd
suggest there are two possible scenarios here:

*The mw.Title parse failure is the source of the weird failure to display old
pages - something that has never happened before, even with other failures in
the same system to parse full stops;
*The two bugs are unrelated and occurring at the same time; the old page is
loaded, generating the mw.Title parse error message, and then drops out of
existence due to a second issue - something that would make sense since in
testing the failure of the "old" view I've noticed that it's not failing to
load the content: it loads as a FOUC and then vanishes from view.

-- 
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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-08-12 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

--- Comment #8 from Bartosz Dziewoński  ---
(In reply to comment #7)
> Are we sure this is the same bug? It wasn't previously breaking on full-stop
> including pages.

This seems rather clear:

(In reply to comment #5)
> Error: Error: mw.Title: Could not parse title ".digamma"

-- 
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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

--- Comment #7 from Oliver Keyes  ---
Are we sure this is the same bug? It wasn't previously breaking on full-stop
including pages.

-- 
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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

Bartosz Dziewoński  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||matma@gmail.com
 Resolution|--- |DUPLICATE

--- Comment #6 from Bartosz Dziewoński  ---


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

-- 
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 52683] "Old" is broken: Error: mw.Title: Could not parse title ".digamma"

2013-08-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

Andre Klapper  changed:

   What|Removed |Added

Summary|"Old" is broken |"Old" is broken: Error:
   ||mw.Title: Could not parse
   ||title ".digamma"

--- Comment #5 from Andre Klapper  ---
Confirming the JS error on http://en.wikipedia.org/wiki/Special:NewPagesFeed :
Error: Error: mw.Title: Could not parse title ".digamma"
Source File:
http://bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=ext.centralNotice.bannerController%7Cext.uls.displaysettings%2Ci18n%2Cime%2Cinit%2Cinputsettings%2Cinterface%2Clanguagenames%2Clanguagesettings%2Cpreferences%2Cwebfonts%7Cext.uls.webfonts.repository%7Cext.vector.footerCleanup%7Cext.wikimediaShopLink.core%7Cjquery.client%2Ccookie%2CdelayedBind%2Ci18n%2Cime%2CjStorage%2Cjson%2CmwExtension%2Ctipsy%2Culs%2Cwebfonts%7Cjquery.uls.data%2Cgrid%7Cmediawiki.Title%2CUri%2Capi%2Ccldr%2CjqueryMsg%2Clanguage%2Cnotify%2Cuser%2Cutil%7Cmediawiki.api.parse%7Cmediawiki.language.data%2Cinit%7Cmediawiki.legacy.ajax%2Cwikibits%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.startup%7Cskins.vector.js%7Cwikibase.client.init&skin=vector&version=20130810T072154Z&*
Line: 320


(In reply to comment #2)
> Forum threads?

Whatever URL(s) "Reported by multiple users." resolves to.

> The exact URl is Special:NewPagesFeed; there's no real way to modify that
> URL.

An URL would be http://test.wikipedia.org/wiki/Special:NewPagesFeed ,
"Special:NewPagesFeed" is only a pagename on some wiki with its configuration.
I prefer to not check https://noc.wikimedia.org/conf/InitialiseSettings.php.txt
everytime to find out where an extension might be deployed (or not).

-- 
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 52683] "Old" is broken

2013-08-09 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

Superzerocool  changed:

   What|Removed |Added

 CC||dennis.to...@gmail.com

--- Comment #4 from Superzerocool  ---
I confirm the error. There is an error with javascript that renders mw.Title
item.

Chrome 28.0, Fedora 19

-- 
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 52683] "Old" is broken

2013-08-09 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

--- Comment #3 from Oliver Keyes  ---
Also on Chrome 28.0.1500.95/Windows 7.

-- 
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 52683] "Old" is broken

2013-08-09 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

--- Comment #2 from Oliver Keyes  ---
Forum threads?

The exact URl is Special:NewPagesFeed; there's no real way to modify that URL.
Firefox 22/Windows 7, Iceweasel 17/latest stable Debian release. I'll ask other
users for their info.

-- 
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 52683] "Old" is broken

2013-08-09 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

--- Comment #1 from Andre Klapper  ---
Cannot confirm with Firefox 22.0 on F19 on
http://en.wikipedia.org/wiki/Special:NewPagesFeed though the "loading"
animation next to the "Refresh list" button does not stop.

Exact URLs and browser info to reproduce welcome (in general), and/or links to
forum threads.

-- 
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 52683] "Old" is broken

2013-08-09 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52683

Oliver Keyes  changed:

   What|Removed |Added

   Assignee|wikibugs-l@lists.wikimedia. |nischay...@gmail.com
   |org |

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