[Bug 59988] ActiveUsersPager query expensive when specifying a starting rc_user_text value

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

Sean Pringle  changed:

   What|Removed |Added

   Priority|Unprioritized   |High
 CC||aschulz4...@gmail.com

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


[Bug 59988] New: ActiveUsersPager query expensive when specifying a starting rc_user_text value

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

   Web browser: ---
Bug ID: 59988
   Summary: ActiveUsersPager query expensive when specifying a
starting rc_user_text value
   Product: MediaWiki
   Version: 1.23-git
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Special pages
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: sprin...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

ActiveUsersPager generates a query like this when a user name is supplied as a
starting value:

SELECT /* IndexPager::buildQueryInfo (ActiveUsersPager) */ rc_user_text AS
user_name, rc_user_text, MAX(rc_user) AS user_id, COUNT(*) AS recentedits FROM
`recentchanges` FORCE INDEX (rc_user_text) WHERE (rc_user > 0) AND (rc_log_type
IS NULL OR rc_log_type != 'newusers') AND (rc_timestamp >= '?') AND (NOT EXISTS
(SELECT 1 FROM `ipblocks` WHERE (rc_user=ipb_user) AND ipb_deleted = '1' )) AND
(rc_user_text >= '?') GROUP BY rc_user_text ORDER BY rc_user_text LIMIT 101;

Without the rc_user_text >= '?' clause the query executes in seconds. With the
clause it takes minutes. Removing the FORCE INDEX doesn't help.

EXPLAIN from an enwiki slave:

*** 1. row ***
   id: 1
  select_type: PRIMARY
table: recentchanges
 type: range
possible_keys: rc_user_text
  key: rc_user_text
  key_len: 273
  ref: NULL
 rows: 4013039  <-- eek!
Extra: Using index condition; Using where
*** 2. row ***
   id: 2
  select_type: DEPENDENT SUBQUERY
table: ipblocks
 type: ref
possible_keys: ipb_user
  key: ipb_user
  key_len: 4
  ref: enwiki.recentchanges.rc_user
 rows: 1
Extra: Using where
2 rows in set (0.25 sec)

The functionality to specify a starting rc_user_text value should be disabled,
or the page redesigned.

-- 
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 59983] Investigate noto font as potential replacement for diverse font families.

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

--- Comment #3 from Runa Bhattacharjee  ---
(In reply to comment #2)

> First, it is not always clear what is being requested. 

> Second, you did not anticipate the performance impact of loading web fonts,
> and
> thus could not have represented it fairly to the community. The requests from
> the community were thus made in ignorance of the trade-offs involved.

> Third, with all due respect to the autonomy of, say, the Arabic Wikipedia, I
> do
> not think that they can decide how Arabic font should be rendered in articles
> on the French Wikipedia. In fact I would imagine that the requestors would be
> surprised to discover that their request was used to underwrite this
> decision.

The first point is always a risk and it often takes endless back and forth
communication and evaluations to come to some understanding. You would already
know this. The languages other than the one for which the performance impact
was already analysed, i.e. languages with open requests for fonts, we are going
to rely heavily on the guidelines that Santhosh has been putting together:

https://www.mediawiki.org/wiki/Universal_Language_Selector/WebFonts#Selection_of_fonts

> The Noto font family could be used on each wiki to provide support for all
> languages which are not the primary content language.

This means the Noto fonts would also have to be evaluated similarly. If you
think we could address things beyond the items in the previous link, you could
suggest them directly on the page. It would be of immense help to add more
perspectives. Thanks.

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


[Bug 59987] SpecialContributions Revision::getParentLengths wrong load balancing db connection

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

Sean Pringle  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 59987] New: SpecialContributions Revision::getParentLengths wrong load balancing db connection

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

   Web browser: ---
Bug ID: 59987
   Summary: SpecialContributions Revision::getParentLengths wrong
load balancing db connection
   Product: MediaWiki
   Version: 1.23-git
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Special pages
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: sprin...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

SpecialContributions::doBatchLookups() calls Revision::getParentLengths() like
this:

Revision::getParentLengths( $this->getDatabase(), $revIds );

getDatabase returns $this->mDb which is set in the SpecialContributions
constructor using 'contributions' to identify it to the database load balancer:

$this->mDb = wfGetDB( DB_SLAVE, 'contributions' );

Passing mDb to getParentLengths is not ideal as the query type is quite
different and limits what can be done in the backend. Consider passing a normal
unnamed slave connection instead.

On WMF production shards mDb is usually a connection to a slave set aside for
special queries on a shard. One of the possible optimizations that can be
applied to such slaves is table partitioning based on range or hash of rev_user
 (this approach is proving effective for the similar LogPager queries).

Unfortunately partitioning increases the cost of some other types of queries
including the huge batched lookups generated by getParentLengths. It would be
nice to have the best of both worlds.

-- 
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 59983] Investigate noto font as potential replacement for diverse font families.

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

--- Comment #2 from Ori Livneh  ---
(In reply to comment #1)
> The fonts(default and options) for each language is based on bug
> reports/requests from community.

This is not persuasive.

First, it is not always clear what is being requested. For example, the first
request-url for Amiri cites . The request
in comments #7 and #10 is simply for the font to be made available by the
extension, not loaded automatically. But then there are comments #11, #16, and
#18:

> As there are problems with including the fonts. I request the extension to
> be disabled, because it is of no use now on the AR wikis.

> Hi, WebFonts might be causing long pages to overload; can it be made into
> a gadget?

> Now, the webfont extension is displaying the Amiri webfont for all users,
> because of some rendering issues related to Windows perhaps, I suggest
> showing the webfonts only for users who selected them.

Second, you did not anticipate the performance impact of loading web fonts, and
thus could not have represented it fairly to the community. The requests from
the community were thus made in ignorance of the trade-offs involved.

Third, with all due respect to the autonomy of, say, the Arabic Wikipedia, I do
not think that they can decide how Arabic font should be rendered in articles
on the French Wikipedia. In fact I would imagine that the requestors would be
surprised to discover that their request was used to underwrite this decision.
The Noto font family could be used on each wiki to provide support for all
languages which are not the primary content language.

-- 
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 57491] Make betafeatures_user_counts table available

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

--- Comment #4 from Kunal Mehta (Legoktm)  ---
Coren: Any updates?

-- 
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 20541] Watchlist, LiquidThreads and Echo notifications need to be unified

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

--- Comment #7 from Quim Gil  ---
(In reply to comment #5)
> Andre: Well, the fix for this bug is replacing LQT with Flow, which Brandon
> is
> designing. That fix won't happen for a year or so though. This is one case
> where I would actually argue that 'LATER' is the correct resolution, although
> we don't have that option any more.

Pong! Now Flow starts to exist, and its notifications are indeed integrated to
Echo.

As Kaldari explained in comment 3, Watchlist has still its own channel of
notifications (by design), while LiquidThreads is on a clear way of deprecation
at least in the Wikimedia context.

I wonder whether anything else is expected to happen in order to resolve this
report in a way or another.

-- 
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 59979] Search index not updating on en.wikipedia.org

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

Chad H.  changed:

   What|Removed |Added

   Priority|Unprioritized   |High
 Status|UNCONFIRMED |NEW
 CC||innocentkil...@gmail.com
 Ever confirmed|0   |1
   Severity|normal  |major

--- Comment #1 from Chad H.  ---
Confirmed. Probably unrelated to bug 46530 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 42942] [TUX] [Language Selector] Depends on ULS extension

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

MZMcBride  changed:

   What|Removed |Added

 Blocks||56433

-- 
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 56433] Temporarily scale back deployment of UniversalLanguageSelector (ULS) to Wikimedia wikis

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

MZMcBride  changed:

   What|Removed |Added

 Depends on||42942

-- 
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 59975] PDF from Archive.org and uploaded to the Wikimedia Commons won't thumbnail

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

--- Comment #4 from Bawolff (Brian Wolff)  ---
> (And no ghostscript error output as gs doesn't have its stderr
> redirected, only convert does, which is probably a mistake)

Making that side issue into bug 59986.

-- 
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 59986] New: PDFHandler doesn't redirect gs stderr, so errors in that stage not reported

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

   Web browser: ---
Bug ID: 59986
   Summary: PDFHandler doesn't redirect gs stderr, so errors in
that stage not reported
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Keywords: easy
  Severity: normal
  Priority: Unprioritized
 Component: PdfHandler
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: bawolff...@gmail.com
CC: aarcos.w...@gmail.com, bawolff...@gmail.com,
fflo...@wikimedia.org, gti...@wikimedia.org,
mtrac...@member.fsf.org
Classification: Unclassified
   Mobile Platform: ---

Marking easy, as this is probably a straightforward bug to fix.

Currently PDFHandler runs gs and convert in a pipeline (See
PdfHandler::doTransform). It sticks 2>&1 on the end of the command to catch
error output, however that doesn't apply to the whole pipeline, only the last
command. Hence ghostscript (gs) errors are missed.

Recommended fix: remove the 2>&1, and instead of calling wfShellExec, call
wfShellExecWithStderr. (This will also catch errors for other commands, like
the resource limit things, so its better than using 2>&1 anyways).

-- 
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 57724] PostgreSQL / PHPUnit tests / MW 1.21.0 / $wikiPage->doDeleteArticle causes DatabasePostgres::reportQueryError: No transaction to rollback, something got out of sync

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

Bug 57724 depends on bug 47055, which changed state.

Bug 47055 Summary: Revision::fetchFromConds SELECT ... FOR UPDATE invalid in 
Postgres
https://bugzilla.wikimedia.org/show_bug.cgi?id=47055

   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 47055] Revision::fetchFromConds SELECT ... FOR UPDATE invalid in Postgres

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

Tyler Romeo  changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|wikibugs-l@lists.wikimedia. |tylerro...@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 49523] Can not delete image (Postgres)

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

Bug 49523 depends on bug 47055, which changed state.

Bug 47055 Summary: Revision::fetchFromConds SELECT ... FOR UPDATE invalid in 
Postgres
https://bugzilla.wikimedia.org/show_bug.cgi?id=47055

   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 384] PostgreSQL/pgsql support (tracking)

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

Bug 384 depends on bug 47055, which changed state.

Bug 47055 Summary: Revision::fetchFromConds SELECT ... FOR UPDATE invalid in 
Postgres
https://bugzilla.wikimedia.org/show_bug.cgi?id=47055

   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 59975] PDF from Archive.org and uploaded to the Wikimedia Commons won't thumbnail

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

Bawolff (Brian Wolff)  changed:

   What|Removed |Added

 CC||bawolff...@gmail.com

--- Comment #3 from Bawolff (Brian Wolff)  ---
(In reply to comment #2)
> Or ImageMagick lacks the "advanced" JPEG2000 stuff. I see that is listed at
> https://en.wikipedia.org/wiki/JPEG_2000#Application_support as having only
> "basic" JPEG2000 support. The OpenJPEG library is listed as having the
> advanced
> stuff, but that was added to ImageMagick just a few days ago:
> http://www.imagemagick.org/script/changelog.php (2013-12-30).

Its probably the old-ish version of ghost script we use's fault. gs converts to
a jpeg file first, and then we use image magick to resize. gs would be the
program responsible for interpreting the JPEG2000 stuff. The error message
would mention convert, because convert would choke on the lack of input from gs
erroring out (And no ghostscript error output as gs doesn't have its stderr
redirected, only convert does, which is probably a mistake)

-- 
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 56295] Malayalam Wiki Projects [Tracking]

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

Bug 56295 depends on bug 57278, which changed state.

Bug 57278 Summary: Issue with PDFs downloaded from Archive.org
https://bugzilla.wikimedia.org/show_bug.cgi?id=57278

   What|Removed |Added

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

-- 
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 57278] Issue with PDFs downloaded from Archive.org

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

Bawolff (Brian Wolff)  changed:

   What|Removed |Added

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

--- Comment #6 from Bawolff (Brian Wolff)  ---
Closing worksforme.

I downloaded the file, and looked at it with various tools:
*The text layer appears to be empty, It has no OCR data, hence proofread page
cannot retrieve the text of the document. (Proofread page doesn't do OCR, it
only extracts what is embedded in the document)
*The file does have a low resolution. Other PDF tools also display it very
small.

(If you think there's still a bug here, please re-open)

-- 
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 41037] PDF related bugs and enhancements (tracking)

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

Bug 41037 depends on bug 57278, which changed state.

Bug 57278 Summary: Issue with PDFs downloaded from Archive.org
https://bugzilla.wikimedia.org/show_bug.cgi?id=57278

   What|Removed |Added

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

-- 
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 59983] Investigate noto font as potential replacement for diverse font families.

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

--- Comment #1 from Santhosh Thottingal  ---
The fonts(default and options) for each language is based on bug
reports/requests from community. 

Whether noto font can "replace" the current fonts for languages as requested by
community is not really a question the team can answer. 

See
https://www.mediawiki.org/wiki/Universal_Language_Selector/WebFonts#Selection_of_fonts

But WMF Language Engineering team is in contact with Google team, we even had
face to face meetings in 2012.

We do have a story card to add these fonts as optional fonts
https://wikimedia.mingle.thoughtworks.com/projects/language_engineering/cards/3621
- of course this has to be done by per language investigation and communication
with community.

-- 
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 59984] Adapt unicode feature detection code from Modernizr

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

--- Comment #1 from Santhosh Thottingal  ---
It is not that easy as we imagine, unfortunately.

It is documented it in detail here:
https://www.mediawiki.org/wiki/Universal_Language_Selector/WebFonts#Font_detection
(Also in the FAQ section of that document)

ULS webfonts apply fonts by default to a subset of languages that it supports.
This list of languages is given at
https://www.mediawiki.org/wiki/Universal_Language_Selector/WebFonts#Table_of_languages_and_default_fonts

Each of this language is chosen based on community requests. Each language has
their own reasons to choose default font embedding and reason for choosing a
particular font. For all other languages, nothing happens unless user choose a
font using preferences UI.

The bug reports causing default webfonts for the above set of languages is
documented inside the code too. Eg:
https://git.wikimedia.org/blob/mediawiki%2Fextensions%2FUniversalLanguageSelector/23c961e4ba812ae75c791d7d31c9bb74f0a037c9/data%2Ffontrepo%2Ffonts%2FShapour%2Ffont.ini#L6

-- 
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 59699] MultimediaViewer's throbber is of a low resolution

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

--- Comment #2 from MZMcBride  ---
Mark: did this get fixed? I think the throbber/spinner may be gone now (I
looked at mediawiki.org briefly and it didn't seem to be there).

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


[Bug 47055] Revision::fetchFromConds SELECT ... FOR UPDATE invalid in Postgres

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

--- Comment #21 from Gerrit Notification Bot  ---
Change 107112 merged by jenkins-bot:
Changed FOR UPDATE handling in Postgresql

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

-- 
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 47055] Revision::fetchFromConds SELECT ... FOR UPDATE invalid in Postgres

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

--- Comment #20 from Gerrit Notification Bot  ---
Change 69767 merged by jenkins-bot:
Changed FOR UPDATE handling in Postgresql

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

-- 
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 58435] Oracle: installer fails to create the main page; external links cause database error

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

--- Comment #11 from Gerrit Notification Bot  ---
Change 107111 merged by jenkins-bot:
Add sequence support for externallinks table

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

-- 
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 47055] Revision::fetchFromConds SELECT ... FOR UPDATE invalid in Postgres

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

--- Comment #19 from Gerrit Notification Bot  ---
Change 107112 had a related patch set uploaded by MarkAHershberger:
Changed FOR UPDATE handling in Postgresql

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

-- 
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 58435] Oracle: installer fails to create the main page; external links cause database error

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

--- Comment #10 from Gerrit Notification Bot  ---
Change 107111 had a related patch set uploaded by MarkAHershberger:
Add sequence support for externallinks table

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

-- 
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 58435] Oracle: installer fails to create the main page; external links cause database error

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

Mark A. Hershberger  changed:

   What|Removed |Added

 CC||m...@everybody.org

--- Comment #9 from Mark A. Hershberger  ---
Straight cherry-pick isn't possible since post-1.22 the directory structure
changed.  I'll do something, but I hope to get it reviewed ASAP.

-- 
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 56433] Temporarily scale back deployment of UniversalLanguageSelector (ULS) to Wikimedia wikis

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

Faidon Liambotis  changed:

   What|Removed |Added

 CC||fai...@wikimedia.org

--- Comment #18 from Faidon Liambotis  ---
Can we have some numbers showing the performance & bandwidth effect that ULS
has, both from the client-side performance perspective, as well as from the
backend performance (mostly bandwidth, I assume)? Similarly, can we get some
hard numbers on the benefit that ULS has (presumably, % of users)?

Quantifying this would personally help me understand the feature better and
have a more informed opinion. I know that e.g. the extra bandwidth can be
detrimental on users' usage in some countries, the extra page latency (load
performance) has been directly correlated to user retention by multiple studies
and the extra CPU & bandwidth can be directly mapped to an increase in
operational costs (very rough calculations of the bandwidth cost of ULS for the
interlanguage links as deployed between July-September was 40-50k USD).

On the flip side, I'm sure there are arguments about e.g. user/editor retention
in favor of ULS. I don't know much about them, but I'd certainly like to hear
more as I currently have a skewed perception of the issue; pointers welcome.

In the end, we have to make a comparison of what we gain and what we lose in
each case, evaluate the tradeoff and possibly compromise.

It is my opinion that this case has to be made by the people wishing to
*enable* this feature, not by the ones arguing to disable it. We can't make
this the single performance engineer's problem (or, similarly, ops' problem)
and ask them to make the comparative analysis for every single feature that is
being developed & deployed in production. 

Since this has been clearly controversial and has produced issues in the past,
and until we do have such a preliminary analysis, it is also my opinion that we
need to temporarily disable ULS in production or at least limit its deployment
considerably (e.g. only small non-Latin wikis and/or beta features).

-- 
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 59985] New: Possible to file bugs in obsolete components using guided bug entry

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

   Web browser: ---
Bug ID: 59985
   Summary: Possible to file bugs in obsolete components using
guided bug entry
   Product: Wikimedia
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Bugzilla
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: at.li...@live.com.au
CC: aklap...@wikimedia.org, s...@reedyboy.net,
thehelpfulonew...@gmail.com
Blocks: 36762
Classification: Unclassified
   Mobile Platform: ---

https://bugzilla.wikimedia.org/enter_bug.cgi?format=guided&product=Wikimedia

Obsolete components such as "WAP mobile gateway" and "Prototype server" are
available. These components are not available when using the classic form.

-- 
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 36762] enter_bug.cgi?format=guided not properly configured

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

This, that and the other  changed:

   What|Removed |Added

 Depends on||59985

-- 
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 43817] Include short descriptions for extensions bundled in the release

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

--- Comment #8 from Gerrit Notification Bot  ---
Change 107110 had a related patch set uploaded by MarkAHershberger:
Include short descriptions for extensions bundled in the release

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

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


[Bug 43120] Create a VisualEditor plugin tool to add/edit Poem blocks

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

James Forrester  changed:

   What|Removed |Added

  Component|General |Poem
Product|VisualEditor|MediaWiki extensions

--- Comment #4 from James Forrester  ---
(In reply to comment #3)
> (a) and (b), I guess. See bug 52061. I was going through a list of bugs in
> the Poem component, since they will all need to be moved once the change
> is merged (hoping it *is* merged, of course). Sorry if I'm getting too far
> ahead of myself, but this bug did seem like an odd one out, so I moved it
> out here.

Moving back to Poem, then. The bug can be moved the MediaWiki/editing or
whatever later, when bug 52061 is closed-fixed.

> (In reply to comment #2)
> > > so I'm punting back to VisualEditor.
> > 
> > Why? It's not VisualEditor's problem that an extension hasn't been updated
> > yet…
> 
> Well, if Poem is to become a MediaWiki core feature, then it will turn into
> something for the VE team to worry about.

No, not really. It'll remain the responsibility of some code's maintainer,
whoever that is (you?). In the absence of an obvious maintainer, that's the
"Platform team", which sucks, but is rather outwith this bug report.

The VE team build VE and some of the MW-specific VE tools. We're not going to
make an editor for EasyTimeline, and we're not going to make one for Poem, for
the same reason. :-)

> Also, if I may point it out, the WikiHiero extension is seemingly supported
> in VisualEditor core. The extension itself knows nothing about VE. is that
> an anomaly?

Yes; the code's yet to be moved into that repo. Give me a spare 10 minutes. :-)

-- 
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 43120] Create a VisualEditor plugin tool to add/edit Poem blocks

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

--- Comment #3 from This, that and the other  ---
(a) and (b), I guess. See bug 52061. I was going through a list of bugs in the
Poem component, since they will all need to be moved once the change is merged
(hoping it *is* merged, of course). Sorry if I'm getting too far ahead of
myself, but this bug did seem like an odd one out, so I moved it out here.

(In reply to comment #2)
> > so I'm punting back to VisualEditor.
> 
> Why? It's not VisualEditor's problem that an extension hasn't been updated
> yet…

Well, if Poem is to become a MediaWiki core feature, then it will turn into
something for the VE team to worry about.

Also, if I may point it out, the WikiHiero extension is seemingly supported in
VisualEditor core. The extension itself knows nothing about VE. is that an
anomaly?

-- 
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 56433] Temporarily scale back deployment of UniversalLanguageSelector (ULS) to Wikimedia wikis

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

--- Comment #17 from Kunal Mehta (Legoktm)  ---
(In reply to comment #14)
> It seems certain that doing this will lead to some predictable results:
> * People who hate it will rebel to prevent turning web fonts back on

People "hate" it because it's slow. If the performance issues were resolved, I
doubt people would care that much.

> * People who most need web fonts will have their user experience severely
> impacted during the test

In comment 4, I gave two options on how to safely disable ULS. I would advocate
for option #2 here, because it addresses the performance issues for the
majority of users, and those who need web fonts can enable them and take the
performance hit.

-- 
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 54455] Drilldown has issues with strings using plus signs and numbers

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

--- Comment #1 from Yaron Koren  ---
Hi - sorry for the long delay. It looks like this problem has been fixed, no?

-- 
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 43817] Include short descriptions for extensions bundled in the release

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

--- Comment #7 from Gerrit Notification Bot  ---
Change 89340 merged by jenkins-bot:
Include short descriptions for extensions bundled in the release

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

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


[Bug 48930] (Tracking) Database replication services

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

Bug 48930 depends on bug 48694, which changed state.

Bug 48694 Summary: Show replication lags in Ganglia
https://bugzilla.wikimedia.org/show_bug.cgi?id=48694

   What|Removed |Added

 Status|RESOLVED|REOPENED
 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 48694] Show replication lags in Ganglia

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

Tim Landscheidt  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||sprin...@wikimedia.org
 Resolution|FIXED   |---

--- Comment #4 from Tim Landscheidt  ---
(In reply to comment #3)
> Looks like it's working fine to me.

No, as discussed on IRC, it's still running under my personal account.

As it would be useful to show replication lag for every MariaDB slave, I wanted
to discuss this as a wider change with Asher.  But:

a) chance never came about, and
b) it's already there!  For db1035, go to
http://ganglia.wikimedia.org/latest/?c=MySQL%20eqiad&h=db1035.eqiad.wmnet&m=cpu_report&r=hour&s=descending&hc=4&mc=2
and search for "mysql_slave_lag".

However, this isn't available for labsdb* yet (cf.
http://ganglia.wikimedia.org/latest/?c=MySQL%20eqiad&h=labsdb1001.eqiad.wmnet&m=cpu_report&r=hour&s=descending&hc=4&mc=2),
and at the moment can't be enabled anyway as the monitoring for db1035 et al.
assumes that only /one/ MariaDB instance runs on any server, while on labsdb*
there are several and so mysql_slave_log & Co. need to be prefixed by, for
example, "s1_".

So to resolve this bug, we need to:

a) refactor the monitoring bits and pieces that they handle multiple instances
on one server,
b) enable such monitoring for labsdb*, and
c) create a ganglia::view where *_mysql_slave_lag for labsdb* is combined in
one report so that the information isn't scattered over three pages and
literally hundreds of graphs.

-- 
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 43120] Create a VisualEditor plugin tool to add/edit Poem blocks

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

James Forrester  changed:

   What|Removed |Added

  Component|Editing Tools   |General
   Assignee|rm...@wikimedia.org |wikibugs-l@lists.wikimedia.
   ||org

--- Comment #2 from James Forrester  ---
(In reply to comment #1)
> This is not a bug/enhancement in the Poem extension itself,

False. The Poem extension fails to register a VisualEditor enhanced editor for
itself. This is a problem with that extension. See also bug 43115, bug 43118,
bug 43127, etc.

> so I'm punting back to VisualEditor.

Why? It's not VisualEditor's problem that an extension hasn't been updated yet…

> If I've got this wrong, please don't move the bug back to Poem, as this
> component is hopefully going to be removed soon.

Please justify this.

All MW extensions that are deployed on the WMF cluster (and many that aren't)
have a Bugzilla component, by policy. Are you saying that:

 (a) you want us to remove this extension from the cluster,
 (b) you want us to merge this extension into MW core, or
 (c) you want us to break our existing policy for this 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 36130] Some PDF files not handled properly by the viewer

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

--- Comment #1 from Andrzej Krzysztofowicz  ---
As I see today, the problem has already disappeared. The pages mentioned
display properly.

Does anybody know the source of this problem? May it be closed?

-- 
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 56199] {{formatnum}} arguments 'R' and 'NOSEP' should match the entire string, not just part of the string

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

--- Comment #3 from Gerrit Notification Bot  ---
Change 100198 merged by jenkins-bot:
Raw option of parser functions should match complete word

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

-- 
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 59936] View segments of images in full resolution

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

--- Comment #3 from Mark Holmquist  ---
We plan to "fix" this by adding a link to the image element itself that leads
to the original size of the image. Different solutions like actually zooming in
on parts of the image are farther out on our priority list IMO.

-- 
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 59936] View segments of images in full resolution

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

Aalekh Nigam  changed:

   What|Removed |Added

 CC||aalekh1...@rediffmail.com

--- Comment #2 from Aalekh Nigam  ---
Just had a question in order to fix this bug can i add some enhancement like:
http://www.ajax-zoom.com/examples/example20.php  ..  not strictly this
enhancement

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


[Bug 4714] Increasing the length of the edit summary (tracking)

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

Marco  changed:

   What|Removed |Added

   Priority|Normal  |High

--- Comment #14 from Marco  ---
(In reply to comment #3)
> There's no point in writing long summaries. If you want it long,
> write in the talk page.

There is a bot running on Wikimedia Commons which cleans up overcategorization.
It is essential to explain every edit in detail. (i.e. what categories are
removed and why!) Of course the bot can not create a new talk page for every
edit.
The length of the edit summary needs to be increased because if two, three or
more categories are removed the space is not enough.

Link to the Bots contributions:
https://commons.wikimedia.org/wiki/Special:Contributions/OverBot (search for
"...)" to find truncated edit summaries)




Furthermore there was a discussion on de.wiki about this bug. The result was
100% support (13) and 0% oppose (0). The discussion concluded that in some
cases about 512 bytes are necessary to explain a rollback/revert.

Quote: "speziell beim Revertieren während des Sichtens muss ich ständig den
vorgegebenen Text "Änderung von xxx wurde rückgängig gemacht und ...
wiederhergestellt" kürzen, um einem Anfänger höflich und genau mitzuteilen,
warum ich seine Änderung verworfen habe"

https://de.wikipedia.org/wiki/Wikipedia:Umfragen/Technische_W%C3%BCnsche/Versionsgeschichte_%26_Zusammenfassung#4714

-- 
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 59975] PDF from Archive.org and uploaded to the Wikimedia Commons won't thumbnail

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

--- Comment #2 from Lupo  ---
Or ImageMagick lacks the "advanced" JPEG2000 stuff. I see that is listed at
https://en.wikipedia.org/wiki/JPEG_2000#Application_support as having only
"basic" JPEG2000 support. The OpenJPEG library is listed as having the advanced
stuff, but that was added to ImageMagick just a few days ago:
http://www.imagemagick.org/script/changelog.php (2013-12-30).

-- 
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 59969] Wmf labs SVG checker doesn't display rendered image

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

--- Comment #4 from trl...@hotmail.com ---
(In reply to comment #3)
> Okay, let's start again: I'm Tim.  I have never used "SVG Checker", I don't
> know how it should behave, how it actually behaves on Toolserver and how on
> Tools.
> 
> Given that, could you describe the problem in a way so I can reproduce it? 
> Thanks!

Oh, I'm sorry! I thought you meant URLs of files that didn't work. I didn't
realize I needed to list the URL of the tool!

Both versions of the SVG Checker are provided as links at
http://commons.wikimedia.org/wiki/Commons:SVG_Check

Steps to reproduce:

1. Pick any one of the files I mentioned, or any other valid SVG file, and
download it to your computer.
2. Go the above page and the link at the top.
3. Upload the SVG file in step 1, and click the button to submit.

Expected results:
A PNG version of the SVG should be rendered and displayed in the next page, on
top of a checkerboard background to indicate transparency.

Actual results:
A checkerboard pattern is displayed by itself.



To see how it is supposed to work, follow the above steps, but click the link
at the bottom of the page. That will take you to the toolserver version.

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


[Bug 59984] New: Adapt unicode feature detection code from Modernizr

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

   Web browser: ---
Bug ID: 59984
   Summary: Adapt unicode feature detection code from Modernizr
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: UniversalLanguageSelector
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: o...@wikimedia.org
CC: alolita.sha...@gmail.com,
amir.ahar...@mail.huji.ac.il, kartik.mis...@gmail.com,
niklas.laxst...@gmail.com, pgi...@wikimedia.org,
run...@gmail.com, santhosh.thottin...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

Use it to determine which browsers need to load additional fonts in order to
render text on the page.

https://github.com/Modernizr/Modernizr/blob/master/feature-detects/unicode.js 

See also unicode-range feature detection and relevant spec:
https://github.com/Modernizr/Modernizr/blob/master/feature-detects/unicode-range.js
http://www.w3.org/TR/2013/CR-css-fonts-3-20131003/#descdef-unicode-range

-- 
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 59975] PDF from Archive.org and uploaded to the Wikimedia Commons won't thumbnail

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

Lupo  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||lupo.bugzi...@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Lupo  ---
That PDF contains jpx/jp2 encoded images. Presumably ImageMagic's convert lacks
a JPEG 2000 decoder.

-- 
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 59983] New: Investigate noto font as potential replacement for diverse font families.

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

   Web browser: ---
Bug ID: 59983
   Summary: Investigate noto font as potential replacement for
diverse font families.
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: UniversalLanguageSelector
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: o...@wikimedia.org
CC: alolita.sha...@gmail.com,
amir.ahar...@mail.huji.ac.il, e...@wikimedia.org,
kartik.mis...@gmail.com, niklas.laxst...@gmail.com,
pgi...@wikimedia.org, run...@gmail.com,
santhosh.thottin...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

Noto is a font family from Google's internationalization team. Its goal is "to
achieve visual harmonization (e.g., compatible heights and stroke thicknesses)
across languages. Noto fonts are under Apache License 2.0. Our current plan is
to support all living scripts in Unicode by the end of 2014."



-- 
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 59983] Investigate noto font as potential replacement for diverse font families.

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

Ori Livneh  changed:

   What|Removed |Added

 CC||o...@wikimedia.org
   Severity|normal  |enhancement

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


[Bug 59970] Show clearer error on non-recursive clone

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

--- Comment #3 from Mpaa  ---
Clearer now, thanks. I was missing the Python 3 ... next year may be ... :-)

-- 
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 59970] Show clearer error on non-recursive clone

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

--- Comment #2 from Merlijn van Deen  ---
Both are python 2 (Queue)/ python 3 (queue) import blocks. However, the issue
is *not* queue, even though the error sounds like that.

What happens is:

   try:
  from httplib2 import SSLHandshakeError <-- fails
  import Queue
  import urlparse
  import cookielib
   except ImportError: <- this is meant for people who run python 3
  from ssl import SSLError as SSLHandshakeError <-- this also works on py2
  import queue as Queue <-- but this doesn't!


I think we should probably change those blocks to explicit blocks, i.e.

   if sys.version_info[0] == 2:
  from httplib2 import SSLHandshakeError
   else:
  ...

However, that would just change the error to

Traceback (most recent call last):
  File "C:\rewrite\pwb.py", line 123, in 
tryimport_pwb()
  File "C:\rewrite\pwb.py", line 30, in tryimport_pwb
import pywikibot
  File "C:\rewrite\pywikibot\__init__.py", line 412, in 
from .page import Page, ImagePage, Category, Link, User, ItemPage,
PropertyPage, Claim
  File "C:\rewrite\pywikibot\page.py", line 17, in 
import pywikibot.site
  File "C:\rewrite\pywikibot\site.py", line 32, in 
from pywikibot import pagegenerators
  File "C:\rewrite\pywikibot\pagegenerators.py", line 31, in 
from pywikibot.comms import http
  File "C:\rewrite\pywikibot\comms\http.py", line 35, in 
from httplib2 import SSLHandshakeError
ImportError: No module named httplib2

which still needs the 'You probably forgot the submodules' clarification

-- 
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 15434] Periodical run of currently disabled special pages

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

--- Comment #107 from Dennis C. During  ---
Thanks. I hope it stays fixed. There is some room for reduction in frequency or
elimination of certain reports. If wikis had so kind of resource budget for
maintenance reports, it would be possible for them to decide which reports were
worth it for them.

OTOH, there are some items like Special:Unwatched Pages for which the maximum
of 5,000 pages makes the report silly for a wiki like English Wiktionary. That
is connected to the larger question of watchlist editing.

-- 
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 59967] Gerrit Patch Uploader: Doesn't submit

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

Fomafix  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #1 from Fomafix  ---
Works again.

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


[Bug 53132] Notifications are not sent when a user mentions another if the signature of the sender contains localized namespaces

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

--- Comment #25 from Quiddity  ---
(In reply to comment #24)
> I presume this edit 
> should
> have invoked a notification towards [[User:Whym]], but it didn't.

Confirmed.  I've been testing it at jpwikt, and cannot get mention
notifications to work. I tried twice with my interface language (for both
accounts) set to Japanese, and to English. Neither worked.

-- 
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 59970] Show clearer error on non-recursive clone

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

Mpaa  changed:

   What|Removed |Added

 CC||mpaa.w...@gmail.com

--- Comment #1 from Mpaa  ---
Actually the problem seems to be the missing queue module.

In pywikibot\comms\http.py there is a try ... except ... to handle a missing
hhtplib2, unless this is not updated any longer.

  try:
  from httplib2 import SSLHandshakeError
  import Queue  -> this looks to be preferred!!
  import urlparse
  import cookielib
  except ImportError:
  from ssl import SSLError as SSLHandshakeError
  import queue as Queue
  import urllib as urlparse
  from http import cookiejar as cookielib

Speaking about queue ... in different parts of pywikibot, there is a preference
for "Queue" over "queue" and viceversa.

In pywikibot\__init__.py there is:
  try:
  from queue import Queue -> this looks to be preferred!!
  except ImportError:
  from Queue import Queue

Sounds strange to me.

-- 
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 18295] Strip markers exposed in anchor links with ==[[Link|text]]==

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

Jackmcbarn  changed:

   What|Removed |Added

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

-- 
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 25417] ref inside Wikilinks leave UNIQ

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

Jackmcbarn  changed:

   What|Removed |Added

 CC||jackmcbarn+w...@gmail.com
   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=18295

-- 
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 59982] New: Adding level 2 warning, even if level 2 warning exists

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

   Web browser: ---
Bug ID: 59982
   Summary: Adding level 2 warning, even if level 2 warning exists
   Product: Huggle
   Version: 3.0.0
  Hardware: PC
OS: Windows 7
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: Application
  Assignee: benap...@gmail.com
  Reporter: gladjona...@outlook.com
CC: benap...@gmail.com, mmovc...@wikipedia.de
Classification: Unclassified
   Mobile Platform: ---

Huggle 3.0 Build 796 adds a lvl 2 warning even if one exists already.

See
[https://en.wikipedia.org/w/index.php?title=User_talk%3A71.108.77.231&diff=590405095&oldid=590404758
this edit].

-- 
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 57278] Issue with PDFs downloaded from Archive.org

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

Marco  changed:

   What|Removed |Added

 CC||maic...@yahoo.com
 Blocks||41037

-- 
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 59981] New: Allow OAuth applications to change a user's preferences (editmyoptions)

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

   Web browser: ---
Bug ID: 59981
   Summary: Allow OAuth applications to change a user's
preferences (editmyoptions)
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: OAuth
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: legoktm.wikipe...@gmail.com
CC: aschulz4...@gmail.com, bjor...@wikimedia.org,
cste...@wikimedia.org, dga...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

I've written an application that lets a user set a preference globally, except
OAuth doesn't give any grant the 'editmyoptions' right
([[mw:Special:OAuth/grants]]).

-- 
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 41037] PDF related bugs and enhancements (tracking)

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

Marco  changed:

   What|Removed |Added

 Depends on||57278

-- 
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 41037] PDF related bugs and enhancements (tracking)

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

Marco  changed:

   What|Removed |Added

 Depends on||59975

-- 
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 59975] PDF from Archive.org and uploaded to the Wikimedia Commons won't thumbnail

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

Marco  changed:

   What|Removed |Added

 CC||maic...@yahoo.com
   Hardware|PC  |All
 Blocks||41037
 OS|Windows 7   |All

-- 
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 59980] New: jenkins-bot verified an invalid puppet manifest in gerrit

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

   Web browser: ---
Bug ID: 59980
   Summary: jenkins-bot verified an invalid puppet manifest in
gerrit
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: Continuous integration
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: guido.iaqui...@gmail.com
CC: has...@free.fr, innocentkil...@gmail.com,
krinklem...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

gerrit change 107037

the first patch contain a not valid puppet manifest:

modules/generic/manifests/upstart_job.pp
line 13:
wner=> 'root',
instead of
owner=> 'root',

it could be useful if we try to understand why the build passed

-- 
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 48834] PdfHandler Fatal exception when used with MediaWiki 1.21

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

Marco  changed:

   What|Removed |Added

 CC||maic...@yahoo.com
 Blocks|31552   |41037

-- 
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 31552] PDF related (Collection extension) bugs (tracking)

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

Marco  changed:

   What|Removed |Added

 Depends on|48834   |

-- 
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 41037] PDF related bugs and enhancements (tracking)

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

Marco  changed:

   What|Removed |Added

 Depends on||48834

-- 
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 41037] PDF related bugs and enhancements (tracking)

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

Marco  changed:

   What|Removed |Added

 Depends on||36130

-- 
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 36130] Some PDF files not handled properly by the viewer

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

Marco  changed:

   What|Removed |Added

 CC||maic...@yahoo.com
 Blocks||41037

-- 
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 59969] Wmf labs SVG checker doesn't display rendered image

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

--- Comment #3 from Tim Landscheidt  ---
Okay, let's start again: I'm Tim.  I have never used "SVG Checker", I don't
know how it should behave, how it actually behaves on Toolserver and how on
Tools.

Given that, could you describe the problem in a way so I can reproduce it? 
Thanks!

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


[Bug 14626] mergehistory permission on Danish Wikipedia

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

John F. Lewis  changed:

   What|Removed |Added

 Status|REOPENED|ASSIGNED
 CC||johnflewi...@gmail.com
   Assignee|wikibugs-l@lists.wikimedia. |johnflewi...@gmail.com
   |org |

--- Comment #5 from John F. Lewis  ---
Consensus is old, assigning to self since the request is straight forward, will
poke the community to see if this is what they still want.

-- 
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 59979] New: Search index not updating on en.wikipedia.org

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

   Web browser: ---
Bug ID: 59979
   Summary: Search index not updating on en.wikipedia.org
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: lucene-search-2
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: spontaneousgrumb...@gmail.com
CC: neverett+bugzi...@wikimedia.org, rain...@eunet.rs
Classification: Unclassified
   Mobile Platform: ---

Symptoms similar to bugzilla 46530. Search index build last completed about 5–6
January 2014. To demonstrate, do a Special:search on ~2014, notice that the
search indicates the page was updated 5 January 2014. Pull up the page's
revision history and see that many updates have occurred on 6-7-8-9-10-11-12
January 2014.

-- 
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 59971] inconsistent state within the internal storage backends

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

Marco  changed:

   What|Removed |Added

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

--- Comment #3 from Marco  ---
Thanks!

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


[Bug 59978] Crash when reporting user

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

gladjona...@outlook.com changed:

   What|Removed |Added

 CC||gladjona...@outlook.com

--- Comment #1 from gladjona...@outlook.com ---
I was using Huggle 3.0 Build 796 425d116

-- 
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 59978] New: Crash when reporting user

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

   Web browser: ---
Bug ID: 59978
   Summary: Crash when reporting user
   Product: Huggle
   Version: 3.0.0
  Hardware: PC
OS: Windows 7
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: Application
  Assignee: benap...@gmail.com
  Reporter: gladjona...@outlook.com
CC: benap...@gmail.com, mmovc...@wikipedia.de
Classification: Unclassified
   Mobile Platform: ---

Unfortunately huggle has crashed. Please submit the following information
together with details of what were you doing to http://bugzilla.wikimedia.org/

Ring log
==
sö 12. jan 20:26:19 2014: ERROR: no diff available for Madhwa Kanva Brahmins
unable to rescore
sö 12. jan 20:25:52 2014: ERROR: no diff available for Laurietta unable to
rescore
sö 12. jan 20:25:34 2014: ERROR: no diff available for Faik al-Meer unable to
rescore
sö 12. jan 20:25:11 2014: ERROR: no diff available for Shishir pokhrel unable
to rescore
sö 12. jan 20:25:10 2014: ERROR: no diff available for Faik al-Mir unable to
rescore
sö 12. jan 20:23:18 2014: Successfuly delivered message to 188.78.187.70
sö 12. jan 20:23:13 2014: Sending message to user 188.78.187.70
sö 12. jan 20:22:26 2014: ERROR: no diff available for Gemma Styles unable to
rescore
sö 12. jan 20:22:13 2014: WARNING: unable to retrieve diff for edit Oliver
Leadbitter fallback to web rendering
sö 12. jan 20:22:12 2014: ERROR: no diff available for Oliver Leadbitter unable
to rescore
sö 12. jan 20:21:17 2014: WARNING: unable to retrieve diff for edit Borovan
Municipality fallback to web rendering
sö 12. jan 20:20:40 2014: ERROR: no diff available for Borovan Municipality
unable to rescore
sö 12. jan 20:20:27 2014: Successfuly delivered message to 50.162.226.207
sö 12. jan 20:20:23 2014: Successfuly delivered message to 24.79.33.39
sö 12. jan 20:20:22 2014: Sending message to user 50.162.226.207
sö 12. jan 20:20:18 2014: Sending message to user 24.79.33.39
sö 12. jan 20:19:28 2014: WARNING: unable to retrieve diff for edit Topp Dogg
fallback to web rendering
sö 12. jan 20:19:21 2014: ERROR: no diff available for Vista Celestial unable
to rescore
sö 12. jan 20:19:11 2014: ERROR: no diff available for Adalric, Bishop of Asti
unable to rescore
sö 12. jan 20:18:36 2014: WARNING: unable to retrieve diff for edit Melissa
Gira Grant fallback to web rendering
sö 12. jan 20:15:53 2014: Successfuly delivered message to Ashtonsgirl
sö 12. jan 20:15:49 2014: Sending message to user Ashtonsgirl
sö 12. jan 20:14:09 2014: ERROR: no diff available for Dylan harvey unable to
rescore
sö 12. jan 20:13:22 2014: ERROR: no diff available for Topp Dogg unable to
rescore
sö 12. jan 20:12:57 2014: ERROR: no diff available for BAli-Phy unable to
rescore
sö 12. jan 20:12:44 2014: ERROR: no diff available for File:Wilmington Academy
Logo.png unable to rescore
sö 12. jan 20:11:36 2014: ERROR: no diff available for Grant Fieldgrove unable
to rescore
sö 12. jan 20:11:14 2014: ERROR: no diff available for Augusto Martínez Sánchez
unable to rescore
sö 12. jan 20:10:45 2014: ERROR: no diff available for Melissa Gira Grant
unable to rescore
sö 12. jan 20:09:43 2014: ERROR: no diff available for User:SameR EGY unable to
rescore
sö 12. jan 20:06:52 2014: ERROR: no diff available for Adam Anouer unable to
rescore
sö 12. jan 20:04:29 2014: Successfuly delivered message to 86.18.9.142
sö 12. jan 20:04:25 2014: Sending message to user 86.18.9.142
sö 12. jan 20:03:25 2014: ERROR: no diff available for Trojan.gen downloader
unable to rescore
sö 12. jan 20:03:24 2014: ERROR: no diff available for FAR Tractor Company
unable to rescore
sö 12. jan 20:02:51 2014: ERROR: no diff available for Category:Landmarks of
Cherkasy Oblast unable to rescore
sö 12. jan 20:00:24 2014: WARNING: unable to retrieve diff for edit Archie
lemons fallback to web rendering
sö 12. jan 20:00:23 2014: ERROR: no diff available for User:Lord Lingden unable
to rescore
sö 12. jan 20:00:21 2014: ERROR: no diff available for Archie lemons unable to
rescore
sö 12. jan 19:59:43 2014: ERROR: no diff available for User:Jazz
mayank/UserProfileIntro unable to rescore
sö 12. jan 19:59:24 2014: ERROR: no diff available for Yinzcam unable to
rescore
sö 12. jan 19:59:14 2014: WARNING: unable to retrieve diff for edit Madhwa
kanva brahmins fallback to web rendering
sö 12. jan 19:59:13 2014: WARNING: unable to retrieve diff for edit List of
Snapple Real Facts fallback to web rendering
sö 12. jan 19:59:10 2014: WARNING: unable to retrieve diff for edit 1987 Texas
A&M Aggies football team fallback to web rendering
sö 12. jan 19:58:18 2014: ERROR: no diff available for Madhwa kanva brahmins
unable to rescore
sö 12. jan 19:57:48 2014: ERROR: no diff available for List of Snapple Real
Facts unable to rescore
sö 12. jan 19:56:35 2014: Successfuly delivered message to Therealillumina

[Bug 59977] New: Spambots is outdated and gives false positives

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

   Web browser: ---
Bug ID: 59977
   Summary: Spambots is outdated and gives false positives
   Product: Tool Labs tools
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WMT bots
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: johnflewi...@gmail.com
CC: johnflewi...@gmail.com, mfwarb...@googlemail.com,
pirsquare...@gmail.com, quentin...@gmail.com,
shanmuga...@gmail.com
Classification: Unclassified
   Mobile Platform: ---

The spambot's regexes currently are extremely out of date (1+ years old) and a
majority of the warnings are false or reasons for the matching of 'spambots' is
literally two closely named accounts.

Task list;
[ ] Check if the current regexes have any value anymore
[ ] Update it with new spambots or LTAs. AbuseFilters may help here.

-- 
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 59971] inconsistent state within the internal storage backends

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

Aaron Schulz  changed:

   What|Removed |Added

 CC||aschulz4...@gmail.com

--- Comment #2 from Aaron Schulz  ---
Fixed now

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


[Bug 59968] Link shown in red when target page exist.

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

Kunal Mehta (Legoktm)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||legoktm.wikipe...@gmail.com
 Resolution|--- |INVALID

--- Comment #1 from Kunal Mehta (Legoktm)  ---
(In reply to comment #0)
> There is an article called "Single-Page Application" at this url
> http://en.wikipedia.org/wiki/Single-Page_Application

This page doesn't exist. It's actually at [[Single-page application]].
> 
> Creating this link produce a red link
> [[Single-Page Application]]

Fixed:
https://en.wikipedia.org/w/index.php?title=Durandal_%28disambiguation%29&diff=590397365&oldid=590351417

-- 
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 59969] Wmf labs SVG checker doesn't display rendered image

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

--- Comment #2 from trl...@hotmail.com ---
I can give you multiple examples, as it fails on every SVG.

Just semi-randomly going through my copies of the SVGs I've uploaded:

https://commons.wikimedia.org/wiki/File:Uppercase_Alpha_and_Omega_in_Times_New_Roman.svg

https://commons.wikimedia.org/wiki/File:2PanesGlass_Const_%26_Dest_interference.svg
 

https://en.wikipedia.org/wiki/File:2000_Stanley_Cup_logo.svg

https://commons.wikimedia.org/wiki/File:Identical-fraternal-sperm-egg.svg

https://en.wikipedia.org/wiki/File:C.D._Santa_Clara_logo.svg

https://commons.wikimedia.org/wiki/File:Function_x%5E2.svg

The list can go on. The problem does not seem to be with the file.

-- 
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 59815] #bodyContent : max-width: 715px is a waste of space on wider screens

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

Bartosz Dziewoński  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |WONTFIX

--- Comment #30 from Bartosz Dziewoński  ---
I'm going to try resolving this again as WONTFIX, as that best reflects the
position of the team. There's no point in keeping it open, since, as it was
repeatedly stated, this is not going to be fixed (in the meaning of "fixed"
favored by the commenters here, that is removing the max-width now).

(I'll also state that I too believe this to be a very bad idea and sincerely
hope that it will be killed with fire in future iterations, if killing it with
fire right now is not an option.)

-- 
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 42942] [TUX] [Language Selector] Depends on ULS extension

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

Nemo  changed:

   What|Removed |Added

 CC||federicol...@tiscali.it

--- Comment #3 from Nemo  ---
It's not the first nor the last extension requiring another extension to work
but I agree it's ugly and it regularly confuses sysadmins (even someusing
[[mw:MLEB]], sadly).

-- 
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 59815] #bodyContent : max-width: 715px is a waste of space on wider screens

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

--- Comment #29 from Quim Gil  ---
About the status of this report, I propose that we keep it open as "Normal -
Enhancement", moving the discussion about the topic reported in
https://www.mediawiki.org/wiki/Talk:Typography_refresh#max-width:_715px   

The maintainers of this beta feature say that the fixed width is part of the
experiment and therefore it is not a bug, which is a fair argument. They are
also the ones to decide which importance/urgency this report has in the context
of their work.

The contributors disliking this feature argue that in any case it is a core
issue to be considered in this beta experiment, and therefore this report can't
be simply resolved as invalid. This is also a fair argument, considering how
things happened. Resolving the bug as invalid can be confused with considering
the point reported invalid, bringing unnecessary friction.

The deployment of beta features is new to everybody, and some differences in
understanding about how to handle feedback may be expected at the beginning. By
design Beta Features encourage users to provide feedback to their related
discussion pages. Maybe this needs to be more stressed wherever appropriate.
For what is worth https://www.mediawiki.org/wiki/About_Beta_Features says "You
can also comment on each feature's discussion page (see links above and on your
Beta Features preferences page). If you find any technical bugs, please report
them here [in Bugzilla]."

Please, let's stop arguing here about priority status and let's focus the
discussion about fixed width at the talk page.

-- 
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 59976] New: Hyphen "-" in value param causes error metatag to be not recognized anymore

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

   Web browser: ---
Bug ID: 59976
   Summary: Hyphen "-" in value param causes error metatag to be
not recognized anymore
   Product: Tool Labs tools
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: DrTrigonBot - subster
  Assignee: dr.tri...@surfeu.ch
  Reporter: dr.tri...@surfeu.ch
Classification: Unclassified
   Mobile Platform: ---

Error metatag does not get cleaned automatically if the value param contains a
hypen "-". I assume this is due to hypens beeing used as separators to
split/scan the tag-names.

https://de.wikipedia.org/w/index.php?title=Benutzer_Diskussion:DrTrigon&oldid=126339862#Aktuelle_ELO-Zahlen

-- 
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 59975] New: PDF from Archive.org and uploaded to the Wikimedia Commons won't thumbnail

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

   Web browser: ---
Bug ID: 59975
   Summary: PDF from Archive.org and uploaded to the Wikimedia
Commons won't thumbnail
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: PC
OS: Windows 7
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: jack...@smu.edu.sg
Classification: Unclassified
   Mobile Platform: ---

I uploaded to the Wikimedia Commons the PDF "File:John Stuart Mill,
Considerations on Representative Government (1st ed, 1861).pdf"
(https://commons.wikimedia.org/wiki/File:John_Stuart_Mill,_Considerations_on_Representative_Government_(1st_ed,_1861).pdf)
which I had downloaded from Archive.org, but none of the pages will thumbnail
properly. I tried purging the page to no avail.

I reported this problem at the Commons Village Pump, and another editor said
that when he tried to view the thumbnail at
https://upload.wikimedia.org/wikipedia/commons/thumb/7/70/John_Stuart_Mill%2C_Considerations_on_Representative_Government_%281st_ed%2C_1861%29.pdf/page1-76px-John_Stuart_Mill%2C_Considerations_on_Representative_Government_%281st_ed%2C_1861%29.pdf.jpg
he encountered this error message:

"Error creating thumbnail: convert: no decode delegate for this image format
`/tmp/magick-hg7YMuoz' @ error/constitute.c/ReadImage/532."
"convert: missing an image filename `/tmp/transform_b1c9d0271ec9-1.jpg' @
error/convert.c/ConvertImageCommand/3011."

-- 
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 59969] Wmf labs SVG checker doesn't display rendered image

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

--- Comment #1 from Tim Landscheidt  ---
Can you please add a URL that fails?

-- 
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 42942] [TUX] [Language Selector] Depends on ULS extension

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

MZMcBride  changed:

   What|Removed |Added

 CC||b...@mzmcbride.com

--- Comment #2 from MZMcBride  ---
(In reply to comment #1)
> Translate with the new translation editor will require the MediaWiki
> UniversalLanguageSelector extension.

Why is this? Modularized code should be modular. Why the hard dependency?

-- 
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 59963] "git: command not found" shown if git is not installed

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

Merlijn van Deen  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 59963] "git: command not found" shown if git is not installed

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

--- Comment #4 from Gerrit Notification Bot  ---
Change 107007 merged by jenkins-bot:
(bug 59963) ignore git not found errors

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

-- 
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 59901] Author: & Portal: namespace not recognized in bnwikisource ( as English word)

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

Jayanta Nath  changed:

   What|Removed |Added

 Blocks||40760

-- 
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 59963] "git: command not found" shown if git is not installed

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

--- Comment #3 from Gerrit Notification Bot  ---
Change 107006 merged by jenkins-bot:
(bug 59963) ignore git not found errors

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

-- 
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 40760] Bengali Wiki projects (tracking)

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

Jayanta Nath  changed:

   What|Removed |Added

 Depends on||59901

-- 
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 40760] Bengali Wiki projects (tracking)

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

Jayanta Nath  changed:

   What|Removed |Added

 Depends on||56087

-- 
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 55536] Give Bugzilla's "Save Changes" button some style.

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

--- Comment #5 from Andre Klapper  ---
(Maybe my comment 3 towards the bug reporter was confusing for third parties,
as it might have implied that I recommend and already support this change.)

So the proposed style can be seen e.g. for "Create another account" on
https://en.wiktionary.org/w/index.php?title=Special:UserLogin&returnto=Wiktionary%3AMain+Page&type=signup
but not for "Save" at the bottom of
https://www.mediawiki.org/wiki/Special:Preferences?useskin=vector which is
semantically close enough to Bugzilla's "Save Changes" button.

Hence I am not convinced why we should introduce such style inconsistency and
make buttons look that much different from all other UI elements in our
Bugzilla, but I welcome good arguments. :)

Technically: For approaches to make Bugzilla look more like MediaWiki's Vector
skin, editing the CSS file /skins/contrib/Wikimedia/vector.css feels like a
better fit.

-- 
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 56087] Proposal for Hindustani Traditional Musical Notation (Swaralipi) as like Extension:Score

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

Jayanta Nath  changed:

   What|Removed |Added

 Blocks||40760

-- 
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 55985] Failure to bring up save dialog, addition of navbox

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

Elitre  changed:

   What|Removed |Added

   Severity|normal  |major

-- 
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 55985] Failure to bring up save dialog, addition of navbox

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

--- Comment #2 from Elitre  ---
Same on the Italian Wikipedia (when you try to add the equivalent of
Template:Sister).

The template I wanted to add is the one highlighted in
https://it.wikipedia.org/w/index.php?title=Utente%3AElitre_%28WMF%29%2FSandbox_VE&diff=63505903&oldid=63505798
.

Please notice the switch to wikitext option didn't work as well.
The message asking for confirmation was displayed (twice, the second time with
an option to dismiss further questions), but nothing happened.

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


  1   2   3   >