[Bug 69207] Parsoid: Interwiki links are halfway converted to external links, and completely broken

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69207

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

   What|Removed |Added

   Priority|Unprioritized   |High
 CC||ssas...@wikimedia.org
  Component|General |serializer
   Assignee|jforrester+veteambztickets@ |parsoid-t...@wikimedia.org
   |wikimedia.org   |
Product|VisualEditor|Parsoid
Summary|VisualEditor (or Parsoid?): |Parsoid: Interwiki links
   | Interwiki links are|are halfway converted to
   |halfway converted to|external links, and
   |external links, and |completely broken
   |completely broken   |

--- Comment #2 from James Forrester jforres...@wikimedia.org ---
Ick. Regression?

-- 
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 55016] Extended version information in user-agent

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=55016

John Mark Vandenberg jay...@gmail.com changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
 CC||jay...@gmail.com,
   ||valhall...@arctus.nl
Version|unspecified |core (2.0)

--- Comment #1 from John Mark Vandenberg jay...@gmail.com ---
In July there were three threads of discussion about user-agents for bots.

http://thread.gmane.org/gmane.science.linguistics.wikipedia.technical/78356

http://lists.wikimedia.org/pipermail/pywikipedia-l/2014-July/008924.html

http://lists.wikimedia.org/pipermail/pywikipedia-l/2014-July/008932.html

Following that Amir did some work to allow customisation of the user-agent,
specifically adding site based information
(https://gerrit.wikimedia.org/r/#/c/147381/), and I've put up a patch to allow
the user agent functionality to be usable in more circumstances and be tested
more easily. https://gerrit.wikimedia.org/r/#/c/152200/

As it is now a customisable string, it is possible to add email addresses,
links to bot approvals, etc, etc.  And lightly documented at

https://www.mediawiki.org/wiki/Manual:Pywikibot/User-agent

During the discussions I suggested something like what this bug is about: 
Identifying what code is running, is it the 'maintainer' version or customised
by the bot operator, and putting that in the useragent.

http://article.gmane.org/gmane.science.linguistics.wikipedia.technical/78363
http://article.gmane.org/gmane.science.linguistics.wikipedia.technical/78413

In an IRC discussion with valhallasw, I suggested that we include the contact
details of the maintainers of the running script, which can be parsed from the
script docstring.

So, currently pywikibot _has_ the commit hash, sequential pywikibot revision,
and 

It only puts the sequential pywikibot revision into the user-agent, in the
variable {version}.  The sequential pywikibot revision is only a good reference
point, but the running code could be different.

The commit hash is (almost) useless for ops staff, as it frequently changes.

The $Rev$ for each file that is checked in is more granular, but that doesnt
help if the script file is modified or isnt checked in.

If I understand this enhancement request, it is suggesting that we get a hash
of some/all of module that are used by the running script, and include that in
the user-agent.

IMO, the first step is to get a hash for the script/module executed on the
command line.  This hash will change less frequently, and will often be common
even for different branches of pywikibot.  If the file is unmodified, I suggest
we keep the existing user-agent value for {script}/{version}, which has a
version prefix of 'g' and 's' for git or subversion.  If the file is modified,
I suggest we put the file hash in {version}, with a different prefix - e.g.
'm69789e1' where 'm' is for 'modified'.

-- 
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 68255] [OPS] Jenkins: Package php5-parsekit missing in Trusty

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=68255

--- Comment #12 from Antoine hashar Musso has...@free.fr ---
xargs can runs tasks in parallel.  I tried on tin with a warmed up disk cache
against a wmf branch and 4 parallel process:

time (find /a/common/php-1.24wmf16 -name '*.php' -or -name '*.inc' -or -name
'*.phtml' |xargs -n1 -P 4 -exec php -l)

real0m57.913s
user2m9.552s
sys1m22.673s


Compared to:

time lint /a/common/php-1.24wmf16

real0m5.389s
user0m5.088s
sys0m0.272s

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


[Bug 69183] tox runs all tests (including manual ones)

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69183

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

   What|Removed |Added

 CC||has...@free.fr

--- Comment #1 from Antoine hashar Musso has...@free.fr ---
tox is just a wrapper around virtualenv, it then execute a given command. In
this case 'nosetests'.  Good news, nosetests let one flag tests with an
attribute which can then be included/excluded at will using  --attr=.

I discussed about it with Pywikibot folks, they have unit tests and tests that
target the production site.   We wanted to prevent running tests again a site. 
What they ended up with is a base class for each kind of tests that adds an
attribute and let them skip tests running against a site.

Some magic code at: https://gerrit.wikimedia.org/r/#/c/151604/4/tests/utils.py


You could go with a ManualTestCase that will have an attribute manual_test .
Then exclude those tests by running: nosetests --attr='!manual_test'.That
could be added to the commands= stanza in tox.ini

Note, you can create a new tox environment to execute the manual test easily
and end up with something like:

 # Default env executed for py26,py27 targets
 # Excludes manual tests
 [testenv]
 ...
 commands = nosetests --attr='!manual_test'

 # Only run manual tests, execute with: tox -emanual_test
 [testenv:manual_test]
 commands = nosetests --attr='manual_test'

 # produce coverage report
 [testenv:cover]
 commands = nosetests --attr='!manual_test' --with-coverage --cover-html

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


[Bug 69168] De emphasize pre selected edit summaries

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69168

--- Comment #6 from Derk-Jan Hartman hartman.w...@gmail.com ---
Ideally, I think you'd want to start ppl off with a flow like that, and then
after they have passed the screen a few times, you would 'nudge' them and ask
instead of picking one of the predefined summaries, you can write your own.
Try 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 69172] Change Algerian Arabic so does not use Arabic digits

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69172

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152064 merged by jenkins-bot:
Fixes Algerian messages file so it does not convert to Arabic digits.

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

-- 
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 53527] Tablesorter places sort arrows to wrong row

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53527

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

   What|Removed |Added

 Status|REOPENED|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 53527] Tablesorter places sort arrows to wrong row

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53527

--- Comment #8 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152225 had a related patch set uploaded by TheDJ:
jquery.tablesorter: Only look at th's for headers

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

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


[Bug 69172] Change Algerian Arabic so does not use Arabic digits

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69172

Joel Sahleen jsahl...@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 69214] New: ResourceLoader::getSkipFunction(): undefined variable $fileName

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69214

Bug ID: 69214
   Summary: ResourceLoader::getSkipFunction(): undefined variable
$fileName
   Product: MediaWiki
   Version: 1.24-git
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: ResourceLoader
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: legoktm.wikipe...@gmail.com
CC: krinklem...@gmail.com, roan.katt...@gmail.com,
tpars...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

I'm not sure what it's supposed to be.

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


[Bug 69168] De emphasize pre selected edit summaries

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69168

--- Comment #7 from Dan Garry dga...@wikimedia.org ---
(In reply to Derk-Jan Hartman from comment #6)
 Ideally, I think you'd want to start ppl off with a flow like that, and then
 after they have passed the screen a few times, you would 'nudge' them and
 ask instead of picking one of the predefined summaries, you can write your
 own. Try it !

Agreed. It is not made clear enough that the edit summary step is optional and
that one can save without an edit summary. We are undoubtedly losing some edits
because of this.

That said, not our immediate priority right now, per the above. :-)

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


[Bug 68678] Add translation in Korean in description of play store about Wikipedia Android app

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=68678

Dan Garry dga...@wikimedia.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #1 from Dan Garry dga...@wikimedia.org ---
As this is not a bug, I am closing this as invalid.

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


[Bug 69214] ResourceLoader::getSkipFunction(): undefined variable $fileName

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69214

--- Comment #1 from Kunal Mehta (Legoktm) legoktm.wikipe...@gmail.com ---
Introduced in I87a0ea888d791ad39f114380c42e2daeca470961

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


[Bug 69183] tox runs all tests (including manual ones)

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69183

--- Comment #2 from nuria nu...@wikimedia.org ---
You could go with a ManualTestCase that will have an attribute manual_test 
Right, we already have such an attribute. I just opened the bug to make sure we
do not forget to update our tox config.

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


[Bug 51423] VisualEditor: Broken DivX browser plugin causes myEventWatcherDiv to be injected into the page

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=51423

Alex Monk kren...@wikimedia.org changed:

   What|Removed |Added

 CC||kren...@wikimedia.org

--- Comment #18 from Alex Monk kren...@wikimedia.org ---
Has anyone here managed to actually get this to happen in their browser yet?
James tried the DivX plugin in Safari on his Mac and couldn't get it to insert
the bad content.

-- 
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 69173] Show history in left navbar

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69173

Dan Garry dga...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #1 from Dan Garry dga...@wikimedia.org ---
This would clutter the sidebar up and create a confusing mental model for what
purpose the sidebar serves. Leaving free space in the sidebar is quite
intentional, and not just because we've not found things to fill it with yet.
:-)

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


[Bug 69215] New: Mispositioned magnify icon on Special:GlobalUsage

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69215

Bug ID: 69215
   Summary: Mispositioned magnify icon on Special:GlobalUsage
   Product: MediaWiki extensions
   Version: master
  Hardware: All
   URL: https://en.wikipedia.org/wiki/Special:GlobalUsage/Part
s_of_a_musical_note.svg
OS: All
Status: NEW
  Severity: trivial
  Priority: Unprioritized
 Component: GlobalUsage
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: foma...@googlemail.com
CC: aarcos.w...@gmail.com, bawolff...@gmail.com,
bryan.tongm...@gmail.com, fflo...@wikimedia.org,
gti...@wikimedia.org, mtrac...@member.fsf.org
   Web browser: ---
   Mobile Platform: ---

Mispositioned magnify icon on [[Special:GlobalUsage]].

Reason: class=mw-content-ltr is missing.

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


[Bug 69215] Mispositioned magnify icon on Special:GlobalUsage

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69215

--- Comment #1 from Fomafix foma...@googlemail.com ---
Created attachment 16147
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=16147action=edit
Screenshot of GlobalUsage

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


[Bug 65227] VisualEditor: (Possibly) Yet Another Broken Browser Plugin injecting mess into edits (Google Maps?)

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65227

Alex Monk kren...@wikimedia.org changed:

   What|Removed |Added

 Status|ASSIGNED|UNCONFIRMED
 Ever confirmed|1   |0

-- 
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 52327] VisualEditor: Broken browser plugins cause cruft to be injected into the page (tracker)

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52327
Bug 52327 depends on bug 65227, which changed state.

Bug 65227 Summary: VisualEditor: (Possibly) Yet Another Broken Browser Plugin 
injecting mess into edits (Google Maps?)
https://bugzilla.wikimedia.org/show_bug.cgi?id=65227

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

-- 
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 65227] VisualEditor: (Possibly) Yet Another Broken Browser Plugin injecting mess into edits (Google Maps?)

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65227

Alex Monk kren...@wikimedia.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #5 from Alex Monk kren...@wikimedia.org ---
apparently worksforme is the correct resolution for this situation

-- 
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 69216] New: Kazakh keyboard doesn't show up in Special:TranslationStash

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69216

Bug ID: 69216
   Summary: Kazakh keyboard doesn't show up in
Special:TranslationStash
   Product: MediaWiki extensions
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Translate
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: kartik.mis...@gmail.com
CC: da...@sheetmusic.org.uk, niklas.laxst...@gmail.com,
siebr...@kitano.nl
   Web browser: ---
   Mobile Platform: ---

While interacting with new user at TWN (Special:TranslationStash), Kazakh
keyboard/IME can't find there. This works fine with Wikipedia or TWN other
pages/accounts (ie for me/Niklas).

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


[Bug 69217] New: {{PD-art-100}} not accepted by custom license field

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69217

Bug ID: 69217
   Summary: {{PD-art-100}} not accepted by custom license field
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: UploadWizard
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: verade...@gmail.com
CC: aarcos.w...@gmail.com, bawolff...@gmail.com,
fflo...@wikimedia.org, gti...@wikimedia.org,
mtrac...@member.fsf.org, nischay...@gmail.com,
steinsplit...@wikipedia.de
   Web browser: ---
   Mobile Platform: ---

The license {{PD-art-100}} is not recognized as a valid option by the Another
reason not mentioned above option.

It is a valid license: https://commons.wikimedia.org/wiki/Template:PD-art-100

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


[Bug 69217] {{PD-art-100}} not accepted by custom license field

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69217

--- Comment #1 from Vera de Kok verade...@gmail.com ---
Created attachment 16148
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=16148action=edit
License not accepted

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


[Bug 69170] EntityIdInput.js refers to local mw.util.wikiScript( 'api' ), need to refer Wikidata API

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69170

--- Comment #1 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152232 had a related patch set uploaded by Hoo man:
Don't default to the local api if repo's api is needed

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

-- 
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 57921] Implement tests for exporting pages to PDF files using Chrome

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57921

--- Comment #6 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 105179 abandoned by Zfilipin:
Adding pdf tests for chrome

Reason:
No reply in a month.

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

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


[Bug 69170] EntityIdInput.js refers to local mw.util.wikiScript( 'api' ), need to refer Wikidata API

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69170

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 69094] Special:AdvancedTranslate gets internal error

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69094

--- Comment #5 from Niklas Laxström niklas.laxst...@gmail.com ---
Sigh looks like I broke it in different way. Looking into it.

-- 
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 57921] Implement tests for exporting pages to PDF files using Chrome

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=57921

Željko Filipin zfili...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #7 from Željko Filipin zfili...@wikimedia.org ---
I have no plans on implementing this in the near future. If somebody wants to
work on this, please move it to a pdf extension.

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


[Bug 69218] New: The iOS app cannot be found by its Hebrew name in the App Store

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69218

Bug ID: 69218
   Summary: The iOS app cannot be found by its Hebrew name in the
App Store
   Product: Wikipedia App
   Version: Beta
  Hardware: All
OS: All
Status: NEW
  Keywords: i18n
  Severity: normal
  Priority: Unprioritized
 Component: iOS App
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: amir.ahar...@mail.huji.ac.il
CC: dga...@wikimedia.org, kl...@wikimedia.org,
yuvipa...@gmail.com
   Web browser: ---
   Mobile Platform: ---

I got an iPod touch device. I set my device's language to Hebrew, and it
changed most of the interface to Hebrew. When I went to the App Store, the UI
language was English. When I tried to search for the Wikipedia app using its
Hebrew name ויקיפדיה, the App Store couldn't find any results.

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


[Bug 69219] New: Parsoid: Definition list items with times in them are parsed incorrectly

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69219

Bug ID: 69219
   Summary: Parsoid: Definition list items with times in them are
parsed incorrectly
   Product: Parsoid
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General
  Assignee: parsoid-t...@wikimedia.org
  Reporter: roan.katt...@gmail.com
CC: jforres...@wikimedia.org, ssas...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

See e.g.
http://parsoid-lb.eqiad.wikimedia.org/wikimania2014wiki/Submissions%2FVisualEditor_%E2%80%94_engineering_against_the_odds?oldid=47825
vs
https://wikimania2014.wikimedia.org/wiki/Submissions/VisualEditor_%E2%80%94_engineering_against_the_odds?oldid=47825

Wikitext:

; '''Sunday August 10, 12:30, [[Frobisher 123]]'''

Parsoid HTML:

dldt bSunday August 10, 12/b/dtddb30, a rel=mw:WikiLink
href=./Frobisher_123Frobisher 123/a/b/dd/dl


PHP parser HTML:

dldtbSunday August 10, 12:30, a href=/wiki/Frobisher_123
title=Frobisher 123Frobisher 123/a/b/dt/dl

It looks like this might be a syntax ambiguity, but hopefully we can have
bug-for-bug compatibility with the PHP parser? :)

-- 
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 69220] New: FOUC on slow connections

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69220

Bug ID: 69220
   Summary: FOUC on slow connections
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Flow
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: mmul...@wikimedia.org
CC: dh...@wikimedia.org, ebernhard...@wikimedia.org,
mpinc...@wikimedia.org, pandiculat...@gmail.com,
sp...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

As reported by Jon on https://gerrit.wikimedia.org/r/#/c/152104/

Confirmed FOUC on:
* anon warning
* new-topic content textarea

Both of those have .flow-form-collapsible, which will be hidden/displayed by JS
based on the form's data-flow-initial-state. Before that JS is loaded/executed,
those elements will be visible (though the default state for all currently is
to hide them)

We probably have to tweak that implementation. I'd suggest to have the
show/hide in CSS rather than JS, roughly like this:

[data-flow-initial-state=hidden] {
display: none;
}
[data-flow-initial-state=collapsed] .flow-form-collapsible {
display: none
}

Rest of the collapse logic can probably stay in JS (I guess.. Other
implementations are fine - this is just my initial thought)


Please add to this bug if there are other FOUC that need to be addressed.

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


[Bug 69219] Parsoid: Definition list items with times in them are parsed incorrectly

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69219

Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 CC||roan.katt...@gmail.com

--- Comment #1 from Roan Kattouw roan.katt...@gmail.com ---
Also, if you try to edit this, the resulting wikitext is something like
'''Sunday August 10, 11''':30, [[Frobisher 123]]''' . It's trying to close the
bolding twice.

-- 
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 69218] The iOS app cannot be found by its localized name in the App Store

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69218

--- Comment #2 from Amir E. Aharoni amir.ahar...@mail.huji.ac.il ---
s/to/two/

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


[Bug 69218] The iOS app cannot be found by its localized name in the App Store

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69218

Amir E. Aharoni amir.ahar...@mail.huji.ac.il changed:

   What|Removed |Added

Summary|The iOS app cannot be found |The iOS app cannot be found
   |by its Hebrew name in the   |by its localized name in
   |App Store   |the App Store

--- Comment #1 from Amir E. Aharoni amir.ahar...@mail.huji.ac.il ---
... Searching in Russian Википедия finds to other apps: one app for other
encyclopedia and one app that generates crosswords from Wikipedia words.

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


[Bug 64698] Upload hangs after describe step

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64698

Katie Chan k...@ktchan.info changed:

   What|Removed |Added

Summary|Big PNG upload hangs after  |Upload hangs after
   |describe step |describe step

--- Comment #1 from Katie Chan k...@ktchan.info ---
Not only applicable when uploading PNGs. It happens to me all the time while
uploading JPEGs. Size of the images may contribute to the problem though.

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


[Bug 60283] Commons connectivity issue in Hong-Kong

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60283

--- Comment #31 from Deryck Chan deryckc...@gmail.com ---
(In reply to Andre Klapper from comment #30)
 (In reply to Faidon Liambotis from comment #29)
  it'd be interesting to hear if Deryck still has issues (if ever).
 
 Deryck: ping?

Haven't tried big uploads since February, sorry! Also I spent half a year in
northeastern China (aka Manchuria) which had really really slow internet so
Hong Kong suddenly felt very fast when I returned home.

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


[Bug 69180] 50GB Fractal image Upload

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69180

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

   What|Removed |Added

 CC||bawolff...@gmail.com

--- Comment #9 from Bawolff (Brian Wolff) bawolff...@gmail.com ---
(In reply to ev_said from comment #8)
 Ok, what's the max dimensions/size you could handle,
 so i'll try to upload a reduced version ?
 
 thanks

1 GB is the limit from upload wizard. Given your usecase, I think we should
stick to that limit as the max.

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


[Bug 69221] New: Flow: no-JS cancel buttons also submit the form

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69221

Bug ID: 69221
   Summary: Flow: no-JS cancel buttons also submit the form
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Flow
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: mmul...@wikimedia.org
CC: dh...@wikimedia.org, ebernhard...@wikimedia.org,
mpinc...@wikimedia.org, pandiculat...@gmail.com,
sp...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

We're using buttons for Cancel. There's some javascript that will properly
destroy the forms when that button is clicked, but without JS, that button will
also submit the form. That's probably not what you'd expect when you hit
cancel.

We probably just want to hide those buttons if users run Flow without JS, like:

.client-nojs button[data-role=cancel] {
display: none;
}

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


[Bug 69222] New: list=logevents slow for users with last log action long time ago

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69222

Bug ID: 69222
   Summary: list=logevents slow for users with last log action
long time ago
   Product: MediaWiki
   Version: unspecified
  Hardware: All
   URL: https://de.wikipedia.org/w/api.php?action=querylist=l
ogeventslelimit=1leprop=timestampleuser=Gardinifor
mat=jsonfm
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: API
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: listenle...@gmail.com
CC: bjor...@wikimedia.org, bryan.tongm...@gmail.com,
roan.katt...@gmail.com, s...@reedyboy.net
   Web browser: ---
   Mobile Platform: ---

Loading
https://de.wikipedia.org/w/api.php?action=querylist=logeventslelimit=1leprop=timestampleuser=Gardiniformat=jsonfm
takes for me 114 seconds (try to append some bogus parameter if you hit the
cache), and I have similar results for other users which are inactive for a
long time. OTOH https://de.wikipedia.org/wiki/Spezial:Logbuch/Gardini is fast,
though it provides even more information.

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


[Bug 69221] Flow: no-JS cancel buttons also submit the form

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69221

--- Comment #1 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152241 had a related patch set uploaded by Matthias Mullie:
(bug 69221) Hide cancel buttons for no-js

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

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


[Bug 69221] Flow: no-JS cancel buttons also submit the form

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69221

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 69219] The : char in a definition list should be parsed differently in a bold-italics context

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69219

ssas...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
  Component|General |tokenizer
Summary|Parsoid: Definition list|The : char in a
   |items with times in them|definition list should be
   |are parsed incorrectly|parsed differently in a
   ||bold-italics context

--- Comment #2 from ssas...@wikimedia.org ---
Thankfully, this is not related to time, but more related to context-sensitive
tokenization of the : char in a dt-dl list.

;a:b
;''a:b''

The behavior require a bit more testing. Ideally, this is reasonably
well-behaved that it can be fixed in the tokenizer without requiring a DOM
transformation fixup.

-- 
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 69223] New: Support using KVM/QEMU vm provider

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69223

Bug ID: 69223
   Summary: Support using KVM/QEMU vm provider
   Product: MediaWiki-Vagrant
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: General
  Assignee: o...@wikimedia.org
  Reporter: bda...@wikimedia.org
CC: o...@wikimedia.org, yuvipa...@gmail.com
   Web browser: ---
   Mobile Platform: ---

Add configuration support for KVM/QEMU as a virtual machine provider.

See https://github.com/adrahon/vagrant-kvm

-- 
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 69224] New: Unicode in query results in strange behavior

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69224

Bug ID: 69224
   Summary: Unicode in query results in strange behavior
   Product: Analytics
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Quarry
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: aaron.halfa...@gmail.com
CC: yuvipa...@gmail.com
   Web browser: ---
   Mobile Platform: ---

Example query:
use kkwiki_p;
SELECT COUNT(*) FROM categorylinks WHERE cl_to = Мәдениет;

Expected:
+--+
| count(*) |
+--+
| 2416 |
+--+
1 row in set (0.07 sec)

Actual:

  Count: 0

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


[Bug 69215] Mispositioned magnify icon on Special:GlobalUsage

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69215

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 69215] Mispositioned magnify icon on Special:GlobalUsage

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69215

Fomafix foma...@googlemail.com changed:

   What|Removed |Added

   Assignee|wikibugs-l@lists.wikimedia. |foma...@googlemail.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 69215] Mispositioned magnify icon on Special:GlobalUsage

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69215

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152250 had a related patch set uploaded by Gerrit Patch Uploader:
Add class=mw-content-$dir

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

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


[Bug 69225] New: in the Recent screen of the iOS app the date is not localized

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69225

Bug ID: 69225
   Summary: in the Recent screen of the iOS app the date is not
localized
   Product: Wikipedia App
   Version: Beta
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: iOS App
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: amir.ahar...@mail.huji.ac.il
CC: dga...@wikimedia.org, kl...@wikimedia.org,
yuvipa...@gmail.com
   Web browser: ---
   Mobile Platform: ---

In the Recent screen of the iOS app the date is not localized. I see that it
says היום August 07 2014 - the word today is in Hebrew, but the month name
is in Hebrew.

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


[Bug 67396] [Monolingual] Valid language codes are not saved when typed manually

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=67396

Marius Hoch h...@online.de changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 CC||h...@online.de
 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 69226] New: Phrase matching with stemming in CirrusSearch

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69226

Bug ID: 69226
   Summary: Phrase matching with stemming in CirrusSearch
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: CirrusSearch
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: edwardbe...@gmail.com
CC: dga...@wikimedia.org, innocentkil...@gmail.com,
neverett+bugzi...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

Here is my example query: station box AND Helsinki

If I try this search on English Wikipedia I get 'Helsinki Metro' as result with
LuceneSearch, but no results with CirrusSearch.

The wiki text contains this: Two [[station box]]es were constructed in
Hakaniemi.

Stemming in phrase searches in LuceneSearch was a bug, but now I have code that
depends on this bug.

I found that Bug 54020, requested this change, disabling stemming in phrase
matches.

It would be useful if it were possible to use CirrusSearch to search for terms
next to each, like a phrase search, but with stemming. The syntax doesn't need
to be the same as LuceneSearch. Stemming in phrase matching could be a tick box
in advanced search and/or an extra parameter in the search API.

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


[Bug 69227] New: Broken mwoauth dependency

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69227

Bug ID: 69227
   Summary: Broken mwoauth dependency
   Product: Analytics
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Quarry
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: samsm...@wikimedia.org
CC: yuvipa...@gmail.com
   Web browser: ---
   Mobile Platform: ---

Following a pip install -r requirements.txt, python -m quarry.web.app fails
with the following:

Traceback (most recent call last):
  File
/usr/local/Cellar/python/2.7.7_1/Frameworks/Python.framework/Versions/2.7/lib/python2.7/runpy.py,
line 162, in _run_module_as_main
__main__, fname, loader, pkg_name)
  File
/usr/local/Cellar/python/2.7.7_1/Frameworks/Python.framework/Versions/2.7/lib/python2.7/runpy.py,
line 72, in _run_code
exec code in run_globals
  File /Users/phuedx/Code/web/quarry/web/app.py, line 9, in module
from mwoauth import ConsumerToken, Handshaker

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


[Bug 68421] Parsoid is not graceful about an empty template call {{ }}

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=68421

Marc Ordinas i Llopis marc...@wikimedia.org changed:

   What|Removed |Added

 CC||marc...@wikimedia.org
   Assignee|parsoid-t...@wikimedia.org  |marc...@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 69227] Broken mwoauth dependency

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69227

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

   What|Removed |Added

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

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


[Bug 68421] Parsoid is not graceful about an empty template call {{ }}

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=68421

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 69207] Parsoid: Interwiki links are halfway converted to external links, and completely broken

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69207

--- Comment #3 from ssas...@wikimedia.org ---
I cannot reproduce this on
http://en.wikipedia.beta.wmflabs.org/w/index.php?title=User:Whatamidoing_(WMF)/Sandboxoldid=101159
when I try to edit again.

However, I can reproduce it locally on the commandline if a data-parsoid flag
is removed.

[subbu@earth lib] echo '[[mw:User talk:Whatamidoing (WMF)|on Mediawiki]]' |
node parse | sed 's/isIW:true,//g;' | node parse --html2wt
[mw:User talk:Whatamidoing (WMF) on Mediawiki]

So, it is unclear how this might have happened. Clearly, the original and
modified HTML differed on all these links for them to get re-serialized and
because of the missing attribute in data-parsoid, the serialization breaks.

Could this have been a transient VE bug that clobbered data-parsoid somehow?

-- 
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 68421] Parsoid is not graceful about an empty template call {{ }}

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=68421

--- Comment #1 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152254 had a related patch set uploaded by Marcoil:
Bug 68421: Parsoid is not graceful about an empty template call {{ }}

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

-- 
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 65040] [twn] Support gerrit repos in mediawiki/skins

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65040

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 65040] [twn] Support gerrit repos in mediawiki/skins

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65040

--- Comment #6 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152249 had a related patch set uploaded by Siebrand:
Rename MediaWiki/mediawiki-defines.txt to MediaWiki/mediawiki-extensions.txt

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

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


[Bug 69228] New: [cxserver] Hangs during editing some article(s)

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69228

Bug ID: 69228
   Summary: [cxserver] Hangs during editing some article(s)
   Product: MediaWiki extensions
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: ContentTranslation
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: kartik.mis...@gmail.com
CC: amir.ahar...@mail.huji.ac.il, asha...@wikimedia.org,
da...@sheetmusic.org.uk, jsahl...@wikimedia.org,
kartik.mis...@gmail.com, niklas.laxst...@gmail.com,
pgi...@wikimedia.org, run...@gmail.com,
santhosh.thottin...@gmail.com,
sucheta.ghos...@gmail.com
   Web browser: ---
   Mobile Platform: ---

1. Go to:
/Special:ContentTranslationpage=Faringitis+estreptocócicafrom=esto=catargettitle=
2. In translation column, try to edit text filled by MT.
3. Hung!

Also, console bring output like:

61560=0, 661561=0, 661562=0, 661563=0, 661564=0, 661565=0, 661566=0, 661567=0,
661568=0, 661569=0, 661570=0, 661571=0, 661572=0, 661573=0, 661574=0, 661575=0,
661576=0, 661577=0, 661578=0, 661579=0, 661580=0, 661581=0, 661582=0, 661583=0,


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


[Bug 67134] create build for PageTriage browser test

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=67134

Željko Filipin zfili...@wikimedia.org changed:

   What|Removed |Added

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

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


[Bug 67134] create build for PageTriage browser test

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=67134

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 149327 merged by jenkins-bot:
Add job for PageTriage tests

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

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


[Bug 64040] Minor edit class inconsistent

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=64040

masterl...@null.net changed:

   What|Removed |Added

 CC||masterl...@null.net

--- Comment #5 from masterl...@null.net ---
Is there a way to trace where the changes should be made?

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


[Bug 65040] [twn] Support gerrit repos in mediawiki/skins

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65040

--- Comment #7 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152259 had a related patch set uploaded by Siebrand:
Infrastructure updates for adding support for MediaWiki skins

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

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


[Bug 69229] New: Firefox: Cite/Add more information responds to right-click but should not

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69229

Bug ID: 69229
   Summary: Firefox: Cite/Add more information responds to
right-click but should not
   Product: VisualEditor
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Keywords: browser-test-bug
  Severity: minor
  Priority: Unprioritized
 Component: General
  Assignee: jforrester+veteambztick...@wikimedia.org
  Reporter: cmcma...@wikimedia.org
CC: jforres...@wikimedia.org, ryasm...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

Created attachment 16149
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=16149action=edit
Add more information element

At the bottom of the Cite web UI is an element Add more information.

In Chrome, a right-click on Add more information correctly has no effect. 

But in Firefox, a right-click Add more information has the same effect as a
left-click, triggering the action.

-- 
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 69229] Firefox: Cite/Add more information responds to right-click but should not

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69229

Chris McMahon cmcma...@wikimedia.org changed:

   What|Removed |Added

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

-- 
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 65040] [twn] Support gerrit repos in mediawiki/skins

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65040

--- Comment #8 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152249 merged by jenkins-bot:
Rename MediaWiki/mediawiki-defines.txt to MediaWiki/mediawiki-extensions.txt

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

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


[Bug 65040] [twn] Support gerrit repos in mediawiki/skins

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65040

--- Comment #9 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152259 merged by jenkins-bot:
Infrastructure updates for adding support for MediaWiki skins

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

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


[Bug 69230] Firefox: Cite/Add more information responds to right-click but should not

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69230

Chris McMahon cmcma...@wikimedia.org changed:

   What|Removed |Added

   Severity|normal  |minor

-- 
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 69230] New: Firefox: Cite/Add more information responds to right-click but should not

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69230

Bug ID: 69230
   Summary: Firefox: Cite/Add more information responds to
right-click but should not
   Product: VisualEditor
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Keywords: browser-test-bug
  Severity: normal
  Priority: Unprioritized
 Component: General
  Assignee: jforrester+veteambztick...@wikimedia.org
  Reporter: cmcma...@wikimedia.org
CC: jforres...@wikimedia.org, ryasm...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

Created attachment 16150
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=16150action=edit
Add more information element

At the bottom of the Cite web UI is an element Add more information.

In Chrome, a right-click on Add more information correctly has no effect. 

But in Firefox, a right-click Add more information has the same effect as a
left-click, triggering the action.

-- 
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 69223] Support using KVM/QEMU vm provider

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69223

--- Comment #1 from Bryan Davis bda...@wikimedia.org ---
Working with a volunteer in this at the hackathon.

Some things we are trying:

$ vagrant plugin install vagrant-kvm
$ vagrant plugin install vagrant-mutate
$ vagrant mutate trusty-cloud kvm
$ vagrant up --provider=kvm

You may need things like:
$ apt-get install redir

$ apt-get install apparmor-utils
$ sudo aa-complain /usr/lib/libvert/virt-aa-helper

-- 
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 69223] Support using KVM/QEMU vm provider

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69223

--- Comment #2 from Bryan Davis bda...@wikimedia.org ---
We added a config block for the kvm provider that was basically a copy of the
vagrant provider block.

-- 
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 69226] Phrase matching with stemming in CirrusSearch

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69226

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

   What|Removed |Added

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

--- Comment #1 from Nik Everett neverett+bugzi...@wikimedia.org ---
Already done:  station box~ helsinki.

There is documentation for this but its kind of buried:
https://www.mediawiki.org/wiki/Search/CirrusSearchFeatures#Quotes_and_exact_matches

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


[Bug 69180] 50GB Fractal image Upload

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69180

--- Comment #10 from ev_s...@hotmail.com ---
Noted :-)
Thanks a lot

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


[Bug 68858] Add Jenkins jobs for WhitelistPages extension repo

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=68858

Addshore addshorew...@gmail.com changed:

   What|Removed |Added

 CC||addshorew...@gmail.com
Summary|Add Jenkins jobs for|Add Jenkins jobs for
   |WhitelistPage extension |WhitelistPages extension
   |repo|repo

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


[Bug 69215] Mispositioned magnify icon on Special:GlobalUsage

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69215

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

   What|Removed |Added

   Priority|Unprioritized   |Normal

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


[Bug 69214] ResourceLoader::getSkipFunction(): undefined variable $fileName

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69214

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

   What|Removed |Added

   Priority|Unprioritized   |Normal

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


[Bug 69231] New: Invalid callback in hooks for LinkBegin

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69231

Bug ID: 69231
   Summary: Invalid callback in hooks for LinkBegin
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Translate
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: jarry1...@gmail.com
CC: da...@sheetmusic.org.uk, jsahl...@wikimedia.org,
niklas.laxst...@gmail.com, siebr...@kitano.nl
   Web browser: ---
   Mobile Platform: ---

Error generated by visiting

/w/index.php?title=Special%3AAllPagesfrom=to=namespace=6

on a clean (vagrant+i18n role) install updated to git master.

Offending line is Translate.php:186

$GLOBALS['wgHooks']['LinkBegin'][] = 'SpecialMyLanguage::linkfix';

which apparently is invalid since /includes/Linker.php:212 errors out trying to
run 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 69231] Invalid callback in hooks for LinkBegin

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69231

--- Comment #1 from Jarry1250 jarry1...@gmail.com ---
Page name isn't important, I appear to get this on all pages. Will bisect.

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


[Bug 69170] EntityIdInput.js refers to local mw.util.wikiScript( 'api' ), need to refer Wikidata API

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69170

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152232 merged by jenkins-bot:
Don't default to the local api if repo's api is needed

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

-- 
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 69232] New: Provide authenticate endpoint for regular users

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69232

Bug ID: 69232
   Summary: Provide authenticate endpoint for regular users
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: OAuth
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: mitar.bugzillawikime...@tnode.com
CC: aschulz4...@gmail.com, bjor...@wikimedia.org,
cste...@wikimedia.org
   Web browser: ---
   Mobile Platform: ---

MediaWiki currently provides only authorize endpoint, but this means that
users have to confirm the application again and again. By providing
authenticate endpoint, users could just sign in and get immediately
redirected back, without having to confirm anything, if all permissions are
still same, and user has not revoked the application.

See Twitter documentation for more information:
https://dev.twitter.com/docs/api/1/get/oauth/authenticate

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


[Bug 9424] [CharInsert] Use event binding from a module instead of inline javascript

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=9424

--- Comment #10 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152076 had a related patch set uploaded by TheDJ:
Use event binding from a module instead of inline javascript

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

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


[Bug 69231] Invalid callback in hooks for LinkBegin

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69231

Jarry1250 jarry1...@gmail.com changed:

   What|Removed |Added

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

--- Comment #2 from Jarry1250 jarry1...@gmail.com ---
Ah, this has already been fixed in Translate master. The fact that updating
core caused the trouble was just confusing me. Ooops.

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


[Bug 69227] Broken mwoauth dependency

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69227

Aaron Halfaker aaron.halfa...@gmail.com changed:

   What|Removed |Added

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

--- Comment #1 from Aaron Halfaker aaron.halfa...@gmail.com ---
Fixed in 0.2.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 69157] Images: image thumbnail without caption lacks a bottom border

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69157

ssas...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
Summary|Parsoid: image thumbnail|Images: image thumbnail
   |without caption lacks a |without caption lacks a
   |bottom border   |bottom border

-- 
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 69152] Images: Unnecessary url encoding applied to links

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69152

ssas...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
Summary|Parsoid adds garbled link   |Images: Unnecessary url
   |parameter to wiki text of   |encoding applied to links
   |[[Image with accents]]  |

-- 
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 69152] Images: Unnecessary url encoding applied to link image option

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69152

ssas...@wikimedia.org changed:

   What|Removed |Added

Summary|Images: Unnecessary url |Images: Unnecessary url
   |encoding applied to links   |encoding applied to link
   ||image option

-- 
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 68421] Parsoid is not graceful about an empty template call {{ }}

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=68421

--- Comment #2 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152254 merged by jenkins-bot:
Bug 68421: Parsoid is not graceful about an empty template call {{ }}

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

-- 
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 69222] list=logevents slow for users with last log action long time ago

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69222

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

   What|Removed |Added

 CC||sprin...@wikimedia.org

--- Comment #1 from Brad Jorsch bjor...@wikimedia.org ---
Sean, this seems to be a database issue. The database query here is:

 SELECT log_id,log_type,log_action,log_timestamp,log_deleted  FROM `logging`
LEFT JOIN `user` ON ((user_id=log_user)) LEFT JOIN `page` ON
((log_namespace=page_namespace) AND (log_title=page_title))  WHERE (log_type !=
'suppress') AND log_user = '103726' AND ((log_deleted  12) != 12)  ORDER BY
log_timestamp DESC,log_id DESC LIMIT 2

This seems to run fine on db1026, db1021, and db1045; EXPLAIN says it's using
the user_time index, which makes sense. On db1005, db1037, and db1049, EXPLAIN
says it uses the times index and executes slowly.

db1005
stdClass Object
(
[id] = 1
[select_type] = SIMPLE
[table] = logging
[type] = index
[possible_keys] = type_time,user_time,log_user_type_time
[key] = times
[key_len] = 16
[ref] = 
[rows] = 6716
[Extra] = Using where
)
db1026
stdClass Object
(
[id] = 1
[select_type] = SIMPLE
[table] = logging
[type] = ref
[possible_keys] = type_time,user_time,log_user_type_time
[key] = user_time
[key_len] = 4
[ref] = const
[rows] = 21108
[Extra] = Using where
)
db1021
stdClass Object
(
[id] = 1
[select_type] = SIMPLE
[table] = logging
[type] = ref
[possible_keys] = type_time,user_time,log_user_type_time
[key] = user_time
[key_len] = 4
[ref] = const
[rows] = 21108
[Extra] = Using where
)
db1037
stdClass Object
(
[id] = 1
[select_type] = SIMPLE
[table] = logging
[type] = index
[possible_keys] = type_time,user_time,log_user_type_time
[key] = times
[key_len] = 16
[ref] = 
[rows] = 6194
[Extra] = Using where
)
db1045
stdClass Object
(
[id] = 1
[select_type] = SIMPLE
[table] = logging
[type] = ref
[possible_keys] = type_time,user_time,log_user_type_time
[key] = user_time
[key_len] = 4
[ref] = const
[rows] = 21108
[Extra] = Using where
)
db1049
stdClass Object
(
[id] = 1
[select_type] = SIMPLE
[table] = logging
[type] = index
[possible_keys] = type_time,user_time,log_user_type_time
[key] = times
[key_len] = 16
[ref] = 
[rows] = 6497
[Extra] = Using where
)

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


[Bug 62511] Mass rendering tests / visual diff

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=62511

ssas...@wikimedia.org changed:

   What|Removed |Added

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

--- Comment #4 from ssas...@wikimedia.org ---
Now deployed and mostly working ... still has some issues, but it is more in
the realm of tweaking and bug fixing.

-- 
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 69190] Page title is not passed through expandtemplates API calls

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69190

ssas...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
Summary|Page title is not passed|Page title is not passed
   |throw the expandtemplates   |through expandtemplates API
   |API calls   |calls

-- 
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 69226] Phrase matching with stemming in CirrusSearch

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69226

--- Comment #2 from Edward Betts edwardbe...@gmail.com ---
A search for station box on LuceneSearch gives 42 results. Searching for
station box~ on CirrusSearch gives 327 results, so the new search is matching
many more pages.

An example from the first 20 CirrusSearch reslts, [[Ormside railway station]],
doesn't contain any occurrence of the term 'station' followed by the term
'box'.

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


[Bug 69207] Parsoid: Interwiki links are halfway converted to external links, and completely broken

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69207

ssas...@wikimedia.org changed:

   What|Removed |Added

   Priority|High|Normal

--- Comment #4 from ssas...@wikimedia.org ---
Unrelated to the bug report: we'll probably make our link handling code more
robust since we can recover most information without the flag being present.
This is part of the general link handling cleanup that needs to happen 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 52719] Requesting adding AdorshoLipi font for Bangla

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=52719

--- Comment #35 from Nasir Khan Saikat nasir8...@gmail.com ---
The font designer is not responding the on the issue of font scaling
(https://github.com/shabab/AdorshoLipi-font/issues/1). So it is better to
discrete the patch and not merge with the ULS.

-- 
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 65063] PHP Notice: Undefined index

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65063

Lewis Cawte lewisca...@googlemail.com changed:

   What|Removed |Added

 CC||lewisca...@googlemail.com

--- Comment #2 from Lewis Cawte lewisca...@googlemail.com ---
Is this still an issue?

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


[Bug 65063] PHP Notice: Undefined index

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=65063

--- Comment #3 from [[kgh]] mediaw...@kghoffmeyer.de ---
Affirmative after just testing this with MW 1.23.2. Only translation updates
since the revision mentioned in my original 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 69215] Mispositioned magnify icon on Special:GlobalUsage

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69215

--- Comment #3 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 152283 had a related patch set uploaded by Gerrit Patch Uploader:
CSS style for thumbs on special pages

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

-- 
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 35679] SMW_dumpRDF.php is not executable (1.7.1)

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35679

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

   What|Removed |Added

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

--- Comment #2 from [[kgh]] mediaw...@kghoffmeyer.de ---
Merged with
https://github.com/SemanticMediaWiki/SemanticMediaWiki/commit/e8ea2db3150cceed5ce94f85bda70a49d66a1c3b
on July 5, 2014. Thus RESOLVED 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 69228] [cxserver] Hangs during editing some article(s)

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69228

--- Comment #1 from Santhosh Thottingal santhosh.thottin...@gmail.com ---
This happens with the buggy apertium packaged for Ubuntu. Just invoking aperium
with some sentence will also make the machine very slow and hanging. Upgrading
apertium or rebuilding package in Ubuntu will solve this.

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


[Bug 69228] [cxserver] Hangs during editing some article(s)

2014-08-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=69228

--- Comment #2 from Kartik Mistry kartik.mis...@gmail.com ---
I'm on latest 'stable' package we fixed (rebuild). I'll try new 'upstream'
version and report back.

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