[Bug 39328] New: redirectToFragment should try to avoid creating a double history entry on fragment redirects

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39328

   Web browser: ---
 Bug #: 39328
   Summary: redirectToFragment should try to avoid creating a
double history entry on fragment redirects
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: JavaScript
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: mediawiki-b...@nadir-seen-fire.com
CC: krinklem...@gmail.com, tpars...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


For fragment redirects we're currently using window.location.hash to update the
fragment when the user visits the page.

This has the undesired consequence of creating two entries in the history in
Firefox. So hitting the back button once just leaves you on the same page.

Instead of using location.hash we should consider using
window.history.replaceState and element.scrollIntoView if they are both
available.

Using replaceState will update the url by replacing the current history entry
instead of creating a new one. It will disable the implicit jump so we'll have
to use scrollIntoView to create the same effect.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39327] New: DB issues associated with leaving feedback

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39327

   Web browser: ---
 Bug #: 39327
   Summary: DB issues associated with leaving feedback
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: ArticleFeedbackv5
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: afeld...@wikimedia.org
CC: mmul...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


Leaving a few words of feedback on an article results in 19 db write queries,
wrapped in 3 transaction.  These result in incompatible row locks for the
length of each transaction that will result in serialization at the transaction
level.

Actual queries with transaction delimiters follow. This should speak for
itself, but everything occurring in the second and third transactions needs to
be eliminated, and the application logic behind this behavior redone.  Do not
use mysql rows as counters that are updated every time someone leaves feedback,
whether on the per-page basis, or especially the "all pages" afc_page_id = '0'
aggregates.  Do not update rows by deleting them and reinserting with the
desired value.  Deleting by secondary key essentially results in a table lock
for the duration of the transaction.  Anything that is a rollup should be
updated asynchronously in batches that combine and rollup writes.  

BEGIN

INSERT /* DatabaseBase::insert */  INTO `aft_article_feedback`
(af_page_id,af_revision_id,af_created,af_user_id,af_user_ip,af_user_anon_token,af_form_id,af_experiment,af_link_id,af_has_comment)
VALUES
('534366','506813755','20120813223135','14719981',NULL,'','6','M5_6','0','1')

INSERT /* ApiArticleFeedbackv5::saveUserRatings */  INTO `aft_article_answer`
(aa_field_id,aa_response_rating,aa_response_text,aa_response_boolean,aa_response_option_id,aa_feedback_id,aat_id)
VALUES ('16',NULL,NULL,'1',NULL,'253294',NULL),('17',NULL,'Well sourced
article! (this is a test comment) ',NULL,NULL,'253294',NULL)

UPDATE /* ApiArticleFeedbackv5::saveUserRatings */  `aft_article_feedback` SET
af_cta_id = '2' WHERE af_id = '253294'

INSERT /* ApiArticleFeedbackv5::saveUserProperties */  INTO
`aft_article_feedback_properties` (afp_feedback_id,afp_key,afp_value_int)
VALUES
('253294','contribs-lifetime','3'),('253294','contribs-6-months','0'),('253294','contribs-3-months','0'),('253294','contribs-1-months','0')

INSERT /* ApiArticleFeedbackv5::updateRollupRow */ IGNORE INTO
`aft_article_revision_feedback_ratings_rollup`
(afrr_page_id,afrr_revision_id,afrr_field_id,afrr_total,afrr_count) VALUES
('534366','506813755','16','0','0')

UPDATE /* ApiArticleFeedbackv5::updateRollupRow */ 
`aft_article_revision_feedback_ratings_rollup` SET afrr_total = afrr_total +
1,afrr_count = afrr_count + 1 WHERE afrr_page_id = '534366' AND
afrr_revision_id = '506813755' AND afrr_field_id = '16'

COMMIT 

---

BEGIN

DELETE /* ApiArticleFeedbackv5::updateRollupRow */ FROM
`aft_article_feedback_ratings_rollup` WHERE arr_page_id = '534366' AND
arr_field_id = '16'

INSERT /* ApiArticleFeedbackv5::updateRollupRow */ IGNORE INTO
`aft_article_feedback_ratings_rollup`
(arr_page_id,arr_field_id,arr_total,arr_count) VALUES ('534366','16','9','42')

COMMIT

---

BEGIN

INSERT /* ApiArticleFeedbackv5Utils::updateFilterCounts */ IGNORE INTO
`aft_article_filter_count` (afc_page_id,afc_filter_name,afc_filter_count)
VALUES
('534366','visible','0'),('0','visible','0'),('534366','notdeleted','0'),('0','notdeleted','0'),('534366','all','0'),('0','all','0'),('534366','visible-comment','0'),('0','visible-comment','0'),('534366','visible-relevant','0'),('0','visible-relevant','0')

UPDATE /* ApiArticleFeedbackv5Utils::updateFilterCounts */ 
`aft_article_filter_count` SET afc_filter_count = afc_filter_count + 1 WHERE
afc_page_id = '534366' AND afc_filter_name = 'visible'

UPDATE /* ApiArticleFeedbackv5Utils::updateFilterCounts */ 
`aft_article_filter_count` SET afc_filter_count = afc_filter_count + 1 WHERE
afc_page_id = '0' AND afc_filter_name = 'visible'

UPDATE /* ApiArticleFeedbackv5Utils::updateFilterCounts */ 
`aft_article_filter_count` SET afc_filter_count = afc_filter_count + 1 WHERE
afc_page_id = '534366' AND afc_filter_name = 'notdeleted'

UPDATE /* ApiArticleFeedbackv5Utils::updateFilterCounts */ 
`aft_article_filter_count` SET afc_filter_count = afc_filter_count + 1 WHERE
afc_page_id = '0' AND afc_filter_name = 'notdeleted'

UPDATE /* ApiArticleFeedbackv5Utils::updateFilterCounts */ 
`aft_article_filter_count` SET afc_filter_count = afc_filter_count + 1 WHERE
afc_page_id = '534366' AND afc_filter_name = 'all'

UPDATE /* ApiArticleFeedbackv5Utils::updateFilterCounts */ 
`aft_article_filter_count` SET afc_filter_count = afc_filter_count + 1 WHERE
afc_page_id = '0' AND afc_filter_name = 'all'

UPDATE /* ApiArticleFeedbackv5Utils::updateFilterCounts */ 
`a

[Bug 39326] New: Query to get relevant feedback for an article performs poorly

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39326

   Web browser: ---
 Bug #: 39326
   Summary: Query to get relevant feedback for an article performs
poorly
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: ArticleFeedbackv5
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: afeld...@wikimedia.org
CC: mmul...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


This query is regularly taking up to 8 seconds on enwiki and will worsen over
time in current form.  The ORDER BY is satisfied by the af_relevance_sort_af_id
index on aft_article_feedback, but that does nothing for any of the WHERE
constraints on that table.  af_page_id would be the most reasonable to include
in an index that can satisfy the ORDER BY.  That should help today but over
time, a large number of rows will still have to be scanned for popular
articles, so this needs a better long term solution.  A search engine would
handle this much better. 

SELECT /* ArticleFeedbackv5Fetch::run */ af_id, af_net_helpfulness,
af_relevance_sort, rating.aa_response_boolean AS yes_no FROM
`aft_article_feedback` LEFT JOIN `aft_article_answer` `rating` ON
((rating.aa_feedback_id = af_id) AND rating.aa_field_id IN ('-1', '1', '16') )
LEFT JOIN `aft_article_answer` `comment` ON ((comment.aa_feedback_id = af_id)
AND comment.aa_field_id IN ('-1', '2', '17') ) WHERE (af_is_deleted IS FALSE)
AND (af_is_hidden IS FALSE) AND ((af_is_featured IS TRUE OR af_has_comment is
true OR af_net_helpfulness > 0) AND af_relevance_score > -5) AND af_page_id =
'5043734' AND (( af_form_id = 1 OR af_form_id = 6 )) ORDER BY af_relevance_sort
ASC, af_id ASC LIMIT 51

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 167] Use a dedicated interface for adding interwiki/category links, not wikitext

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=167

--- Comment #32 from Daniel Friesen  
2012-08-14 04:43:12 UTC ---
I wouldn't call a core bug fixed when you have to install a large extension to
fix it.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39325] "https services" listed as unsupported at status.wikimedia.org

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39325

MZMcBride  changed:

   What|Removed |Added

Summary|HTTPS listed as |"https services" listed as
   |"unsupported"   |unsupported at
   |status.wikimedia.org|status.wikimedia.org

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39325] New: HTTPS listed as "unsupported" status.wikimedia.org

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39325

   Web browser: ---
 Bug #: 39325
   Summary: HTTPS listed as "unsupported" status.wikimedia.org
   Product: Wikimedia
   Version: unspecified
  Platform: All
   URL: http://status.wikimedia.org/
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: b...@mzmcbride.com
Classification: Unclassified
   Mobile Platform: ---


Currently an entry at  reads "https services
(unsupported)". I think the "(unsupported)" part is off-the-mark and should be
removed. Maybe it could be changed to "experimental" or "beta" or something? I
don't think any qualifier is needed, though.

I also considered that maybe it was referring to secure.wikimedia.org (which is
pretty much unsupported), but I don't see any evidence of that.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38946] Install Free Hebrew fonts, so that they will be available for SVG rendering

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38946

--- Comment #11 from Tim Starling  2012-08-14 04:06:36 
UTC ---
Created attachment 10962
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=10962
Debian directory of Matanya's proposed package

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38946] Install Free Hebrew fonts, so that they will be available for SVG rendering

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38946

--- Comment #10 from Tim Starling  2012-08-14 04:05:25 
UTC ---
(In reply to comment #8)
> I packaged it. bug#39324 has the link to the deb.

The link is:

https://docs.google.com/open?id=0B2k2TQQ0f0dqQ3A3UzFDbk8zcEk

I'm not sure if this package will work, since the files are in a strange
directory layout with spaces in directory names, and there are no
/etc/fonts/conf.d configuration files.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39324] upload request

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39324

Tim Starling  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||tstarl...@wikimedia.org
 Resolution||DUPLICATE

--- Comment #1 from Tim Starling  2012-08-14 04:03:35 
UTC ---


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

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38946] Install Free Hebrew fonts, so that they will be available for SVG rendering

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38946

Bug 38946 depends on bug 39324, which changed state.

Bug 39324 Summary: upload request
https://bugzilla.wikimedia.org/show_bug.cgi?id=39324

   What|Old Value   |New Value

 Status|NEW |RESOLVED
 Resolution||DUPLICATE

--- Comment #9 from Tim Starling  2012-08-14 04:03:35 
UTC ---
*** Bug 39324 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38946] Install Free Hebrew fonts, so that they will be available for SVG rendering

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38946

--- Comment #8 from matanya  2012-08-14 03:22:30 UTC 
---
I packaged it. bug#39324 has the link to the deb.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39324] upload request

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39324

matanya  changed:

   What|Removed |Added

   Keywords||shell

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38946] Install Free Hebrew fonts, so that they will be available for SVG rendering

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38946

matanya  changed:

   What|Removed |Added

 Depends on||39324

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39324] New: upload request

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39324

   Web browser: ---
 Bug #: 39324
   Summary: upload request
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Site configuration
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: matanya.mo...@gmail.com
CC: benap...@gmail.com, wikimedia.b...@snowolf.eu
Blocks: 38946
Classification: Unclassified
   Mobile Platform: ---


Please upload this[1] as a fix for bug#38946

[https://docs.google.com/open?id=0B2k2TQQ0f0dqQ3A3UzFDbk8zcEk]

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39242] remember minimised state for 24 hours

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39242

Ryan Kaldari  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Ryan Kaldari  2012-08-14 02:16:13 
UTC ---
fixed in https://gerrit.wikimedia.org/r/#/c/19423/

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 38636] [SRF] [ROADMAP] 1.8; Improve RSS and introduce Atom format

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38636

MWJames  changed:

   What|Removed |Added

 AssignedTo|jeroen_ded...@yahoo.com |jamesin.hongkon...@gmail.co
   ||m

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 38636] [SRF] [ROADMAP] 1.8; Improve RSS and introduce Atom format

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38636

MWJames  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||jamesin.hongkon...@gmail.co
   ||m,
   ||wikibugs-l@lists.wikimedia.
   ||org, yaro...@gmail.com
  Component|Semantic MediaWiki  |SemanticResultFormats
 Resolution||FIXED
 AssignedTo|wikibugs-l@lists.wikimedia. |jeroen_ded...@yahoo.com
   |org |
Summary|RSS format contains broken  |[SRF] [ROADMAP] 1.8;
   |stuff   |Improve RSS and introduce
   ||Atom format

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 167] Use a dedicated interface for adding interwiki/category links, not wikitext

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=167

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

   What|Removed |Added

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

--- Comment #31 from mybugs.m...@gmail.com 2012-08-14 01:51:10 UTC ---
I think [[m:Wikidata]] will solve the part of this bug related to Interlanguage
links.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27696] It should be possible to see the changes to the interwiki page in the watchlist

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27696

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

   What|Removed |Added

  Component|[other] |Interlanguage

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 13489] Special pages: Allow using templates / adding interwiki links

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=13489

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

   What|Removed |Added

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

--- Comment #6 from mybugs.m...@gmail.com 2012-08-14 01:42:40 UTC ---
(In reply to comment #5)
> Rather than templates this looks more like a request for all special pages to
> have implicit language links for every language link in the table.

+1

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39058] VisualEditor: Round-tripping of double apostrophes causes them to be interpreted as wikitext

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39058

Roan Kattouw  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

--- Comment #1 from Roan Kattouw  2012-08-14 01:35:05 
UTC ---
This is fixed in production in that it doesn't introduce the excess quotes any
more, see
https://www.mediawiki.org/w/index.php?title=VisualEditor%3ABug39058&diff=571888&oldid=571887
. It still adds  tags though, but that's fixed on master.

On my localhost, the diff I get is as follows, and I think that's perfectly
reasonable:

− '''This is a te''st page for bug 35058.'''
+ '''This is a ''te''st'' page for bug 35058.'''

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 39059] VisualEditor: #http://www.wikipedia.de round-trips to #http://www.wikipedia.de

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39059

Roan Kattouw  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

--- Comment #1 from Roan Kattouw  2012-08-14 01:30:12 
UTC ---
This is completely fixed on my localhost. In production, it's kind of fixed but
not completely, see
https://www.mediawiki.org/w/index.php?title=VisualEditor%3ABug39059&diff=571884&oldid=571883
.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 39296] wmf9 deploy broke sortable tables in at least Safari 6

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39296

--- Comment #5 from Roan Kattouw  2012-08-14 01:26:37 
UTC ---
Test to see if mail still works

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39296] wmf9 deploy broke sortable tables in at least Safari 6

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39296

Roan Kattouw  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||roan.katt...@gmail.com
 Resolution|FIXED   |

--- Comment #4 from Roan Kattouw  2012-08-14 01:25:47 
UTC ---
(In reply to comment #3)
> D'oh. I see what happened. Gerrit change #19216 should fix it.
This change is deployed now.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25647] TIFF images that are too big to thumbnail don't display errors on image page

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25647

--- Comment #7 from matanya  2012-08-14 01:22:27 UTC 
---
*** Bug 24984 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 23258] Enable PagedTiffHandler on all wikis, to allow display of TIFF files

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=23258

Bug 23258 depends on bug 24984, which changed state.

Bug 24984 Summary: Thumbnailing errors for tiffs
https://bugzilla.wikimedia.org/show_bug.cgi?id=24984

   What|Old Value   |New Value

 Status|NEW |RESOLVED
 Resolution||DUPLICATE

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 24984] Thumbnailing errors for tiffs

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24984

matanya  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||matanya.mo...@gmail.com
 Resolution||DUPLICATE

--- Comment #16 from matanya  2012-08-14 01:22:27 UTC 
---


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

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39323] New: Add support for QR pedia URL's

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39323

   Web browser: ---
 Bug #: 39323
   Summary: Add support for QR pedia URL's
   Product: Wikipedia App
   Version: 3.2 (iOS) / 1.2 (Android)
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Generic
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: tf...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


let's capture qrwp.org URLs directly and use them within the Wikipedia App.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39289] "List View" is not translated

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39289

Brion Vibber  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #3 from Brion Vibber  2012-08-14 00:39:33 UTC 
---
Merged

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39308] Babel configuration for is.wiktionary

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39308

Krenair  changed:

   What|Removed |Added

   Keywords||shellpolicy
 CC||kren...@gmail.com

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39241] Contribs link in the information flyout takes you to a weird place

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39241

--- Comment #2 from bs...@wikimedia.org 2012-08-14 00:28:24 UTC ---
Fix in: https://gerrit.wikimedia.org/r/#/c/19410/

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 39289] "List View" is not translated

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39289

--- Comment #2 from Jon  2012-08-14 00:24:19 UTC ---
Fixed in https://github.com/wikimedia/WLMMobile/pull/127

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39291] "Username", "Password" and "Login" are not translated

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39291

--- Comment #2 from Jon  2012-08-14 00:24:15 UTC ---
Fixed in https://github.com/wikimedia/WLMMobile/pull/127

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39289] "List View" is not translated

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39289

Jon  changed:

   What|Removed |Added

 CC||jrob...@wikimedia.org

--- Comment #1 from Jon  2012-08-14 00:18:48 UTC ---
This is due to an issue with jquery.localize.js - option tags cannot have a msg
tag child (or any other child)

Submitted a fix
https://gerrit.wikimedia.org/r/19409

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39243] Underscores appearing in page titles in templates instead of spaces.

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39243

--- Comment #1 from bs...@wikimedia.org 2012-08-13 23:52:46 UTC ---
Fixed in: https://gerrit.wikimedia.org/r/#/c/19375/

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 38868] After upload, return to Monument Detail screen or Uploads

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38868

Brion Vibber  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #3 from Brion Vibber  2012-08-13 23:49:35 UTC 
---
Merged.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39322] New: Pages don't load under ipv6+chromium / bits.wikimedia.org doesn't answer http requests

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39322

   Web browser: ---
 Bug #: 39322
   Summary: Pages don't load under ipv6+chromium /
bits.wikimedia.org doesn't answer http requests
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: wikimedia.20.orz...@spamgourmet.com
Classification: Unclassified
   Mobile Platform: ---


Created attachment 10960
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=10960
firefox/firebug/net screenshot showing the problem

Sometimes it does load but it then needs seveal minutes.

use case : i load a page in wikipedia from chromium, either directly or using
search. The page stays blank and load forever.

My understanding is that bits.wikimedia.org doesn't answer, or takes a very
long time to answer.

With firefox, the behaviour is different, but the same underlying problem can
be observed. The difference is that firefox manages to display the whole page
even if it still waits for data from bits.wikimedia.org, while chromium can't.

None of this happens with ipv4. When using ipv4, everything works flawlessly.

My configuration is the following : linux/gentoo with 3.5.1 kernel,
www-client/chromium-21.0.1180.57, www-client/firefox-bin-14.0.1. But i'm quite
confident this doesn't matter here.

I did few tests from this computer:
* bits.wikimedia.org resolves as ipv6, very quickly (2620:0:862:ed1a::a)
* it pings as ipv6 (very quickly, too)
* i can see ports 22/80/443 opened with "nmap -6 bits.wikimedia.org"
* if i copy/paste the bits.wikimedia.org url and use either curl or wget with
"-6" option to force ipv6, the file is downloaded without problem. I'm really
confused on what to conclude from that. I confirm that the file is NOT loading
both from firefox and chromium (unless using ipv4 of course).

I used firefox/firebug to make the attached snapshot using the "net tab".
Unfortunately, bits.wikimedia.org never answered to this very query.

You will also notice that some of the images took more than 10S even before the
download could be started. But this is a different issue : at least those
finally came in.

I'm very often connected on freenode as orzel, if you want some realtime tets.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39114] Remove nagios-wm from #wikimedia-tech

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39114

Daniel Zahn  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #4 from Daniel Zahn  2012-08-13 23:24:40 UTC 
---
killed the process and restarted. First wondered as well why it would keep
rejoining the channel but then found it was hardcoded in
/usr/local/bin/start-nagios-bot and removed it from there.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 39291] "Username", "Password" and "Login" are not translated

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39291

Jon  changed:

   What|Removed |Added

 CC||jrob...@wikimedia.org

--- Comment #1 from Jon  2012-08-13 23:21:18 UTC ---
https://gerrit.wikimedia.org/r/#/c/17016/ adds support for placeholder
attribute. We should take advantage of it
Looking into this now

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38868] After upload, return to Monument Detail screen or Uploads

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38868

--- Comment #2 from Jon  2012-08-13 23:19:02 UTC ---
Fixed in https://bugzilla.wikimedia.org/show_bug.cgi?id=38868

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 37626] CheckUser log indefinitely retains private information

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37626

--- Comment #8 from Trijnstel  2012-08-13 23:10:15 UTC 
---
(In reply to comment #7)
> (In reply to comment #4)
> > With that said, I think MZ's initial comment here is not off base.  
> > Personally,
> > I'd be fine with truncating the data somehow, but I'm not the primary user 
> > of
> > that tool: checkusers and stewards are.  Particularly for smaller wikis, we
> > should retain the logs for some time, but I don't think ther'es a need to
> > retain them indefinitely.  
> 
> Truncation is one option. Anonymization of the IP address information is
> another option. I think that's what places such as Google do. Or just removing
> the IP checks from the log altogether after a certain period of time, right?
> And just keeping the checks of usernames? Though... maybe truncation is best.
> I'm not sure much good comes from keeping this data around indefinitely.
> 
> > I"m going to chat with LCA's lawyers and see where they fall on the 
> > question.
> 
> Any follow up on this?

Again, strongly against this. We need to know the IPs - and there isn't much
info left in the logs besides the IPs and accounts. If we lose these too we
can't perform our checks well anymore. I really hope this isn't going to
happen.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38868] After upload, return to Monument Detail screen or Uploads

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38868

Jon  changed:

   What|Removed |Added

 CC||jrob...@wikimedia.org

--- Comment #1 from Jon  2012-08-13 22:56:07 UTC ---
Working on this

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39245] WLMMobile: back arrow is low-resolution

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39245

Jon  changed:

   What|Removed |Added

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

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38896] Cannot filter on ICS 4.0.4

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38896

Jon  changed:

   What|Removed |Added

   Priority|Unprioritized   |High

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39109] certain admin levels are empty

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39109

Jon  changed:

   What|Removed |Added

   Priority|Unprioritized   |High

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 37626] CheckUser log indefinitely retains private information

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37626

--- Comment #7 from MZMcBride  2012-08-13 22:43:14 UTC ---
(In reply to comment #4)
> With that said, I think MZ's initial comment here is not off base.  
> Personally,
> I'd be fine with truncating the data somehow, but I'm not the primary user of
> that tool: checkusers and stewards are.  Particularly for smaller wikis, we
> should retain the logs for some time, but I don't think ther'es a need to
> retain them indefinitely.  

Truncation is one option. Anonymization of the IP address information is
another option. I think that's what places such as Google do. Or just removing
the IP checks from the log altogether after a certain period of time, right?
And just keeping the checks of usernames? Though... maybe truncation is best.
I'm not sure much good comes from keeping this data around indefinitely.

> I"m going to chat with LCA's lawyers and see where they fall on the question.

Any follow up on this?

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39221] Inconsistent state within the internal storage backends

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39221

--- Comment #11 from Roan Kattouw  2012-08-13 22:28:13 
UTC ---
(In reply to comment #10)
> So, sudo chown apache *_geograph.org.uk_* ??
I'm currently running a find to list all files in the public upload directories
(i.e. excluding private wikis and excluding thumbnails, but including archived
versions) that aren't owned by the right user. This'll take a few more hours to
run, so I'll do a chown based on that list tomorrow.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 37840] ProofreadPage extension should provide css

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37840

matanya  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

--- Comment #2 from matanya  2012-08-13 22:21:39 UTC 
---
patch merged. bug fixed.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 35526] jquery.tablesorter should preserve original order of equal cells when reversing sort order twice

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35526

matanya  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||matanya.mo...@gmail.com
 Resolution||FIXED

--- Comment #4 from matanya  2012-08-13 22:19:44 UTC 
---
patch merged. seems to be resloved.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39313] Filters take up 2 lines in some languages

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39313

--- Comment #1 from Brion Vibber  2012-08-13 22:16:24 UTC 
---
Created attachment 10959
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=10959
screenshot on nexus 1

Didn't see this at first, only seems to affect when the 'distance' button is
added in when doing a location lookup.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38276] Wikipedia App scrolling is slow on Android Jelly Bean

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38276

Tomasz Finc  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID

--- Comment #3 from Tomasz Finc  2012-08-13 22:14:36 UTC 
---
I'm not seeing this either. Resolving as invalid.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39038] Full protection expiry should not affect semi-protection

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39038

David1217  changed:

   What|Removed |Added

 CC||davidswikipediaemail@gmail.
   ||com

--- Comment #1 from David1217  2012-08-13 
22:08:56 UTC ---
It would definitely be nice if this could be fixed. I'm not an admin, but I
could see where this could be problematic.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39320] Tablesorter: secondary sortkey is broken

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39320

Brad Jorsch  changed:

   What|Removed |Added

 CC||b-jorsch@alum.northwestern.
   ||edu

--- Comment #1 from Brad Jorsch  2012-08-13 
22:04:54 UTC ---
More data points: Works for me in Firefox 14.0.1, Chromium 20.0.1132.57, Safari
5.1.4, and IE 8. Not sure if/when I'll have a chance to try it in Safari 6.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39271] Adding uncategorised as a first tag borks the addition of multiple tags.

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39271

--- Comment #2 from bs...@wikimedia.org 2012-08-13 21:58:21 UTC ---
It seems to work. Tags positioned at the bottom don't support multi-tag.

If the other tags you selected are also positioned bottom, then they will be
placed at the end of the article

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 38205] Catch SqlBagOStuff exceptions

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38205

Aaron Schulz  changed:

   What|Removed |Added

 AssignedTo|tstarl...@wikimedia.org |aschulz4...@gmail.com

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 39188] New Pages Feed - Change Top Line to say Beta

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39188

Ryan Kaldari  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Ryan Kaldari  2012-08-13 21:51:28 
UTC ---
Fixed in https://gerrit.wikimedia.org/r/#/c/19396/

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 39253] disable 'Add tags' button in Curation toolbar while processing previous click

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39253

Ryan Kaldari  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #2 from Ryan Kaldari  2012-08-13 21:46:51 
UTC ---
fixed in https://gerrit.wikimedia.org/r/#/c/19392/

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 39321] Delete pages from NewPagesFeed after 30 days (instead of 60 days)

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39321

--- Comment #1 from bs...@wikimedia.org 2012-08-13 21:34:13 UTC ---
Fixed in: https://gerrit.wikimedia.org/r/#/c/19393/

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 36936] Mobile site clips edges of large tables

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36936

--- Comment #13 from Tomasz Finc  2012-08-13 21:24:55 UTC 
---
(In reply to comment #12)
> More examples: 
> http://en.m.wikipedia.org/wiki/Quantum_electrodynamics#section_3
> (latex equations)

In this case we're supporting the users phone iPhone OS 5_1_1 but are not
indicating that the table is scrollable. Adding a visual indicator would fix
this. I'd open a bug about this but keeping the discusion localized per Jon.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38320] Add Colombia in Spanish to the monuments database

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38320

--- Comment #2 from Platonides  2012-08-13 20:57:36 UTC 
---
Osmar was heping racso with them.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39320] Tablesorter: secondary sortkey is broken

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39320

Derk-Jan Hartman  changed:

   What|Removed |Added

   Keywords||code-update-regression,
   ||need-unittest

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39321] Delete pages from NewPagesFeed after 30 days (instead of 60 days)

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39321

Fabrice Florin  changed:

   What|Removed |Added

   Priority|Unprioritized   |Highest
 AssignedTo|wikibugs-l@lists.wikimedia. |bs...@wikimedia.org
   |org |
   Severity|normal  |critical

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39321] New: Delete pages from NewPagesFeed after 30 days (instead of 60 days)

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39321

   Web browser: ---
 Bug #: 39321
   Summary: Delete pages from NewPagesFeed after 30 days (instead
of 60 days)
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: PageTriage
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: fflo...@wikimedia.org
CC: fflo...@wikimedia.org, rkald...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


The reason is that we have too many pages to track, which could cause
performance issues, mostly caused by the amount of meta-data used in filters
for NewPagesFeed.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39320] New: Tablesorter: secondary sortkey is broken

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39320

   Web browser: ---
 Bug #: 39320
   Summary: Tablesorter: secondary sortkey is broken
   Product: MediaWiki
   Version: 1.20-git
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: JavaScript
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: hart...@videolan.org
CC: krinklem...@gmail.com, tpars...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


bug 39296 caused the secondary key functionality to break for me.

Secondary sortkey is triggered by sorting 1 column, then keeping shift pressed
and sorting another column.

Tested with Safari 6 on
https://en.wikipedia.org/wiki/Help:Sorting#Secondary_key

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39209] "patrolled" pages do not highlight the "reviewed" button in the curation toolbar

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39209

--- Comment #1 from Ryan Kaldari  2012-08-13 20:52:41 
UTC ---
Needs to be verified.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39319] Don't allow BLP-PRODing an article that is already BLP-PRODed

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39319

Ryan Kaldari  changed:

   What|Removed |Added

   Priority|Unprioritized   |Low

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39319] New: Don't allow BLP-PRODing an article that is already BLP-PRODed

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39319

   Web browser: ---
 Bug #: 39319
   Summary: Don't allow BLP-PRODing an article that is already
BLP-PRODed
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: minor
  Priority: Unprioritized
 Component: PageTriage
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: rkald...@wikimedia.org
CC: fflo...@wikimedia.org, rkald...@wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


If two people are reviewing an article at the same time, they could both add
BLP-PRODs. We should check and make sure the template isn't already present.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39297] Give some sort of error if animated gif size exceeds $wgMaxAnimatedGifArea

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39297

Jens K Andersen  changed:

   What|Removed |Added

 CC||jens@get2net.dk

--- Comment #2 from Jens K Andersen  2012-08-13 20:47:33 
UTC ---
Commons has a manually populated category:
http://commons.wikimedia.org/wiki/Category:Animated_gifs_exceeding_the_12.5MP_limit

An automatically populated category would be nice.
The default name might be
Category:Animated gifs exceeding the scaling limit

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39309] alter UX for (not) reviewed user's own page

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39309

Fabrice Florin  changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
 AssignedTo|wikibugs-l@lists.wikimedia. |rkald...@wikimedia.org
   |org |

--- Comment #1 from Fabrice Florin  2012-08-13 20:47:12 
UTC ---
Remove 'Mark as Reviewed' button from Curation Toolbar if this is a page that
you created.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39274] No info on who reviewed

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39274

Fabrice Florin  changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal
 AssignedTo|wikibugs-l@lists.wikimedia. |bs...@wikimedia.org
   |org |

--- Comment #1 from Fabrice Florin  2012-08-13 20:44:11 
UTC ---
Add "Reviewed by" at the end of the first section of Page Info in the Curation
Toolbar.

Eventually, it will be added in the flyouts for the the status icons on
NewPagesFeed as well.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39296] wmf9 deploy broke sortable tables in at least Safari 6

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39296

Derk-Jan Hartman  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 37711] Disambiguation pages and redirects should not be marked as orphans

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37711

Ryan Kaldari  changed:

   What|Removed |Added

Summary|Disambiguation pages and|Disambiguation pages and
   |redirects are permitted to  |redirects should not be
   |be orphans  |marked as orphans

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39241] Contribs link in the information flyout takes you to a weird place

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39241

bs...@wikimedia.org changed:

   What|Removed |Added

 CC||bs...@wikimedia.org
 AssignedTo|wikibugs-l@lists.wikimedia. |bs...@wikimedia.org
   |org |

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39243] Underscores appearing in page titles in templates instead of spaces.

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39243

bs...@wikimedia.org changed:

   What|Removed |Added

 CC||bs...@wikimedia.org
 AssignedTo|wikibugs-l@lists.wikimedia. |bs...@wikimedia.org
   |org |

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38992] Curation Toolbar Tag Wizard: More Footnotes parameters

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38992

Ryan Kaldari  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39242] remember minimised state for 24 hours

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39242

Ryan Kaldari  changed:

   What|Removed |Added

 AssignedTo|wikibugs-l@lists.wikimedia. |rkald...@wikimedia.org
   |org |

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39271] Adding uncategorised as a first tag borks the addition of multiple tags.

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39271

bs...@wikimedia.org changed:

   What|Removed |Added

 CC||bs...@wikimedia.org
 AssignedTo|wikibugs-l@lists.wikimedia. |bs...@wikimedia.org
   |org |

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39253] disable 'Add tags' button in Curation toolbar while processing previous click

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39253

--- Comment #1 from Ryan Kaldari  2012-08-13 20:20:16 
UTC ---
Add a spinner too.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 24491] Users shouldn't be given "Upload a new version of this file" when a file is protected

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24491

Krenair  changed:

   What|Removed |Added

 CC||kren...@gmail.com

--- Comment #6 from Krenair  2012-08-13 20:19:01 UTC ---
Gerrit change 19379

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39253] disable 'Add tags' button in Curation toolbar while processing previous click

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39253

Ryan Kaldari  changed:

   What|Removed |Added

 AssignedTo|wikibugs-l@lists.wikimedia. |rkald...@wikimedia.org
   |org |

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 37144] UploadWizard: Wiki Loves Monuments contest issues (tracking)

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37144

--- Comment #3 from Maarten Dammers  2012-08-13 20:16:03 
UTC ---
https://gerrit.wikimedia.org/r/#/q/project:mediawiki/extensions/UploadWizard+is:open,n,z
gives a good overview of what already has been done, but still waiting for
review

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39302] Bottom toolbar content not displaying

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39302

Ryan Kaldari  changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39302] Bottom toolbar content not displaying

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39302

--- Comment #1 from Ryan Kaldari  2012-08-13 20:11:12 
UTC ---
This is very weird. If you can reproduce this reliably I may need to borrow
your computer.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39271] Adding uncategorised as a first tag borks the addition of multiple tags.

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39271

Ryan Kaldari  changed:

   What|Removed |Added

   Priority|Unprioritized   |High
   Severity|normal  |major

--- Comment #1 from Ryan Kaldari  2012-08-13 20:06:28 
UTC ---
uncategorized doesn't support the multi-tag template so not sure what's going
on here.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39235] substing issue

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39235

--- Comment #6 from bs...@wikimedia.org 2012-08-13 20:05:53 UTC ---
Fixed in: https://gerrit.wikimedia.org/r/#/c/19375/

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 39296] wmf9 deploy broke sortable tables in at least Safari 6

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39296

Derk-Jan Hartman  changed:

   What|Removed |Added

Summary|sorting of tables is wrong  |wmf9 deploy broke sortable
   ||tables in at least Safari 6

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39318] New: Inconsistent behavior of enter key in site-link UI

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39318

   Web browser: ---
 Bug #: 39318
   Summary: Inconsistent behavior of enter key in site-link  UI
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Wikidata
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: danwe...@web.de
Classification: Unclassified
   Mobile Platform: ---


Pressing ENTER in the site-links UI behaves inconsistent. Pressing it to select
a site-id will not set the focus to the page field. Pressing enter in the page
field will save the site-link immediately in some browsers (ff) and simply
select the value in others (chrome). Pressing enter in the site-id field when
the page field has a value already will also try to save.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39317] New: Monument coordinates not being used in Get Directions

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39317

   Web browser: ---
 Bug #: 39317
   Summary: Monument coordinates not being used in Get Directions
   Product: WikiLoves Monuments Mobile
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: phili...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


In at least one case where there was no address for the monument, no Get
Directions link was displayed. The intention of this feature is to show Get
Directions at all times and to use coordinates if the address is not available.
Here is an example where coordinates are definitely shown on the WIkipedia page
(though that doesn't guarantee they will be present in the WLM database):
Weinhauser Pfarrkirche on de.wikipedia.org (Austria).

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19139] Text difficult to read (subpixel rendering), need to add new fonts

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19139

--- Comment #8 from Ryan Kaldari  2012-08-13 19:18:27 
UTC ---
Heh, of course I would prefer a free font, but it seems to me that character
support should trump ideological concerns. I'm sure others will beg to differ
though ;)

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19139] Text difficult to read (subpixel rendering), need to add new fonts

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19139

--- Comment #7 from Bawolff  2012-08-13 18:59:45 UTC ---
But...What...About...The...Idealogical...Imperatives...And...Stuff...

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39316] New: course pages should support communication between students and volunteers

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39316

   Web browser: ---
 Bug #: 39316
   Summary: course pages should support communication between
students and volunteers
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: EducationProgram
AssignedTo: jeroen_ded...@yahoo.com
ReportedBy: rages...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


The biggest thing I could see to help the course pages make it easier for
students to get started would be a simple way for them to communicate with the
editors (such as ambassadors or the instructor) who are helping them. To that
end, I suggest something like a big "ask a question" or "help me" button on the
course page that brings a popup entry box for a student to ask for help. The
student's request would get posted in a new section to the talk page (and the
popup confirmation message should link to the talk page).

Even better would be an opt-out option for instructors and ambassadors to be
notified on their own talk pages whenever a new help request is posted by a
student, pointing them to the talk page where they can answer the student.

This would significantly reduce the coordination cost and level of confusion
for ambassadors and students trying to figure out the best ways to communicate
with each other.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 36682] Can't scroll wide tables left to right

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36682

Jon  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE

--- Comment #2 from Jon  2012-08-13 18:53:07 UTC ---


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

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 35548] Unable to scroll horizontally

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35548

Jon  changed:

   What|Removed |Added

 CC||tf...@wikimedia.org

--- Comment #9 from Jon  2012-08-13 18:53:07 UTC ---
*** Bug 36682 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 19139] Text difficult to read (subpixel rendering), need to add new fonts

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=19139

--- Comment #6 from Ryan Kaldari  2012-08-13 18:52:29 
UTC ---
Fixed width fonts are inherently hard to read. I would rather stick with a
proportional font if possible.

There's actually no reason we have to use a free font for this extension since
we're not distributing any fonts with the software. According to U.S. law (and
most other countries as well) copyright is not applicable to typefaces (only to
the fonts themselves). In other words, there is no associated intellectual
property in the output of the font, only in the software of the font itself.

We should actually be using Arial Unicode MS:

Characters Glyphs
Arial Unicode MS38,917 50,377
DejaVu Sans 5,467  5,762
FreeSerif   7,203  8,995

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 36045] Image detail pages don't allow horizontal scrolling

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36045

Jon  changed:

   What|Removed |Added

 CC||aricha...@wikimedia.org,
   ||prei...@wikimedia.org,
   ||tf...@wikimedia.org
  Component|Generic |MobileFrontend
Version|1.1.1 (Android) |master
Product|Wikipedia App   |MediaWiki extensions

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 36045] Image detail pages don't allow horizontal scrolling

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36045

Jon  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||jrob...@wikimedia.org
 Resolution||WONTFIX

--- Comment #2 from Jon  2012-08-13 18:51:29 UTC ---
Users can still click full resolution etc to get this behaviour so marking as
won't fix.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39303] Unknown error: "unknown-warning" on uploading

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39303

Mark Holmquist  changed:

   What|Removed |Added

   Keywords||patch, patch-need-review
   Priority|Unprioritized   |Normal
   Severity|blocker |major

--- Comment #4 from Mark Holmquist  2012-08-13 
18:49:37 UTC ---
If you're using a bad filename like that, you shouldn't be able to proceed to
the upload, it should error out.

I feel like I fixed something like this at one point, but I could be wrong.
Possible fixes:

https://gerrit.wikimedia.org/r/#/c/7608/

https://gerrit.wikimedia.org/r/#/c/10995/

Thanks for the bug report, maybe someone will review my patches now :)

(I removed "all browsers" because there's no proof or even rumour that supports
that, and removed "Windows 7" because apparently there's a known cause)

(also, "blocker" isn't warranted here, seriously)

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 34293] Android app should allow pinch and zoom

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34293

Jon  changed:

   What|Removed |Added

   Priority|Normal  |Highest

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39292] The app name is not translated in the icon

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39292

--- Comment #9 from Amir E. Aharoni  2012-08-13 
18:46:29 UTC ---
Everything is possible in software given the resources, but it makes more sense
that you would do it.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 39292] The app name is not translated in the icon

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39292

--- Comment #8 from Yuvi Panda  2012-08-13 18:44:33 UTC ---
Indeed we could/should, but I was simply wondering if that could be done on the
twn side? (It is possible I'm completely naive about how these files make their
way from twn to github)

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are 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   >