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

2012-08-14 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 39327] New: DB issues associated with leaving feedback

2012-08-14 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 */ 

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

2012-08-14 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 39141] wbsetitem should ignore a revid in the content

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

jeb...@gmail.com changed:

   What|Removed |Added

 CC||jeb...@gmail.com
   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=39140

-- 
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 39140] wbgetitems to return revid (2)

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

jeb...@gmail.com changed:

   What|Removed |Added

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

-- 
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 39329] New: Descendants of ApiModifyItem should set lastrevid

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

   Web browser: ---
 Bug #: 39329
   Summary: Descendants of ApiModifyItem should set lastrevid
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
AssignedTo: wikidata-b...@lists.wikimedia.org
ReportedBy: jeb...@gmail.com
CC: wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


All descendants of the ApiModifyItem should report lastrevid unconditionally as
the revision will be used for collision detection.

-- 
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 39140] wbgetitems to return revid (2)

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

jeb...@gmail.com changed:

   What|Removed |Added

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

-- 
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 39141] wbsetitem should ignore a revid in the content

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

jeb...@gmail.com changed:

   What|Removed |Added

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

-- 
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 39329] Descendants of ApiModifyItem should set lastrevid

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

jeb...@gmail.com changed:

   What|Removed |Added

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

-- 
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 39329] Descendants of ApiModifyItem should set lastrevid

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

jeb...@gmail.com changed:

   What|Removed |Added

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

-- 
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 38178] Implement undo for items (13)

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

--- Comment #1 from Daniel Kinzler daniel.kinz...@wikimedia.de 2012-08-14 
08:06:36 UTC ---
https://gerrit.wikimedia.org/r/17057 pending review

-- 
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 37991] implement reset for data items (5)

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

--- Comment #2 from Daniel Kinzler daniel.kinz...@wikimedia.de 2012-08-14 
08:07:13 UTC ---
https://gerrit.wikimedia.org/r/17057 pending review

-- 
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 39330] New: Code Editor extension page needs screenshots/demo site

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

   Web browser: ---
 Bug #: 39330
   Summary: Code Editor extension page needs screenshots/demo site
   Product: MediaWiki extensions
   Version: master
  Platform: All
   URL: http://www.mediawiki.org/wiki/Extension:CodeEditor
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: [other]
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: niklas.laxst...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


The extension page would greatly benefit from a screenshot or link to live
demo.

-- 
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 30924] Software doesn't accept underscores.

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

Derk-Jan Hartman hart...@videolan.org changed:

   What|Removed |Added

 CC||hart...@videolan.org

--- Comment #3 from Derk-Jan Hartman hart...@videolan.org 2012-08-14 08:38:14 
UTC ---
Possibly related to bug 39303

-- 
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 39220] A bad filename should be changed silently instead of stopping the upload with unknown-warning

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

Derk-Jan Hartman hart...@videolan.org changed:

   What|Removed |Added

 CC||hart...@videolan.org
 Depends on||39303

-- 
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-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=39303

Derk-Jan Hartman hart...@videolan.org changed:

   What|Removed |Added

 Blocks||39220

-- 
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 39329] Descendants of ApiModifyItem should set lastrevid

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

jeb...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

-- 
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 39303] Unknown error: unknown-warning on uploading

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

--- Comment #5 from Derk-Jan Hartman hart...@videolan.org 2012-08-14 08:41:16 
UTC ---
There are a lot of reports about this on the UW feedback page, we really should
prioritize resolution of this issue a bit.

-- 
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 39332] New: Database error can garble the page display

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

   Web browser: ---
 Bug #: 39332
   Summary: Database error can garble the page display
   Product: MediaWiki
   Version: 1.20-git
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: niklas.laxst...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


Created attachment 10963
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=10963
Display of broken output

I had weird output, and after some digging I found full html page with database
error in middle of another html page.

-- 
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 39332] Database error can garble the page display

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

--- Comment #1 from Niklas Laxström niklas.laxst...@gmail.com 2012-08-14 
08:54:21 UTC ---
Created attachment 10964
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=10964
The full html output

-- 
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 38863] Put the shorturl in a better place: current design is extremely ugly and confusing

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

Nemo_bis federicol...@tiscali.it changed:

   What|Removed |Added

   Priority|Unprioritized   |High
 CC||federicol...@tiscali.it
Summary|Put the shorturl in a   |Put the shorturl in a
   |better place|better place: current
   ||design is extremely ugly
   ||and confusing

--- Comment #2 from Nemo_bis federicol...@tiscali.it 2012-08-14 08:58:25 UTC 
---
Update summary: current situation is quite horrible IMHO, the URL is even
before the tagline and nothing explains what it is or why it's there.
Tooltip is not bad but ideally this URL should be along with the
export/collection (book), cite and printable version buttons; in the meanwhile,
why isn't it just in the toolbox which is currently the only proper solution?
See also
https://www.mediawiki.org/wiki/Collection_Extension_2#Wireframe_Layout_for_placing_the_print_and_Collection_extension_buttons
for a related issue.

-- 
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 39241] Contribs link in the information flyout takes you to a weird place

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

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

--- Comment #3 from matanya matanya.mo...@gmail.com 2012-08-14 09:17:41 UTC 
---
fix merged.

-- 
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 39235] substing issue

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

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

--- Comment #7 from matanya matanya.mo...@gmail.com 2012-08-14 09:18:15 UTC 
---
fix merged.

-- 
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 39303] Unknown error: unknown-warning on uploading

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 38351] Left/right aligned images should flip in RTL pages

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

--- Comment #8 from Derk-Jan Hartman hart...@videolan.org 2012-08-14 09:41:20 
UTC ---
I note that I had to purge the original reported page, before the change took
affect.

-- 
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 39194] Make Selenium tests for item reset, revert, undo, etc.

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

tobias.gritschac...@wikimedia.de changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||tobias.gritschacher@wikimed
   ||ia.de

-- 
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 39194] Make Selenium tests for item reset, revert, undo, etc.

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

tobias.gritschac...@wikimedia.de 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 on the CC list for the bug.

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


[Bug 39194] Make Selenium tests for item reset, revert, undo, etc. (8)

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

tobias.gritschac...@wikimedia.de changed:

   What|Removed |Added

Summary|Make Selenium tests for |Make Selenium tests for
   |item reset, revert, undo,   |item reset, revert, undo,
   |etc.|etc. (8)

-- 
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 39333] New: Reviewer autocompletion failing

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

   Web browser: ---
 Bug #: 39333
   Summary: Reviewer autocompletion failing
   Product: Wikimedia
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Git/Gerrit
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: niklas.laxst...@gmail.com
CC: innocentkil...@gmail.com, rlan...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


On https://gerrit.wikimedia.org/r/#/c/19430/ (DRAFT) I see:
{jsonrpc:2.0,method:suggestChangeReviewer,params:[{id:19430},amir,20],id:12,xsrfKey:-}
and it responds:
{jsonrpc:2.0,id:12,result:[]}

On https://gerrit.wikimedia.org/r/#/c/18234/3 I see
{jsonrpc:2.0,method:suggestChangeReviewer,params:[{id:18234},amir,20],id:14,xsrfKey:-}
and it responds:
{jsonrpc:2.0,id:14,result:[{accountInfo:{id:{id:54},fullName:Amire80,preferredEmail:amir.aharoni@...}}]}

-- 
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 39334] New: action=delete not working when trying to delete a data item

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

   Web browser: ---
 Bug #: 39334
   Summary: action=delete not working when trying to delete a data
item
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
AssignedTo: wikidata-b...@lists.wikimedia.org
ReportedBy: tobias.gritschac...@wikimedia.de
CC: wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


Create a new data item, then log in and try to delete the item again. It will
give you a PHP fatal error: Class 'Wikibase\ItemDeletion' not found in
C:\xampp\htdocs\mediawiki\extensions\Wikibase\repo\Wikibase.hooks.php on line
301

-- 
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 39334] action=delete not working when trying to delete a data item

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

tobias.gritschac...@wikimedia.de changed:

   What|Removed |Added

   Priority|Unprioritized   |High
   Severity|normal  |critical

-- 
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 38351] Default alignment of images does not respect the page title language and uses the content language alignment

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

Daniel Friesen mediawiki-b...@nadir-seen-fire.com changed:

   What|Removed |Added

 CC||mediawiki-bugs@nadir-seen-f
   ||ire.com
Summary|Left/right aligned images   |Default alignment of images
   |should flip in RTL pages|does not respect the page
   ||title language and uses the
   ||content language alignment

--- Comment #9 from Daniel Friesen mediawiki-b...@nadir-seen-fire.com 
2012-08-14 10:44:59 UTC ---
Confusing bug title

-- 
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 18834] Show estimate of number of edits to be reverted in rollback link

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch-need-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 39296] wmf9 deploy broke sortable tables in at least Safari 6

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch-need-review   |
 CC||matanya.mo...@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 5893] Categories redirect should treat as one category

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch-need-review   |
 CC||matanya.mo...@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 2700] Pre-save transform skips extensions using wikitext (gallery, references, footnotes, Cite, pipe trick, subst, signatures)

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@gmail.com

--- Comment #84 from matanya matanya.mo...@gmail.com 2012-08-14 10:52:59 UTC 
---
patch moved to gerrit, removing patch need review.

-- 
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 39335] New: SemanticMaps query seems to ignore header and link parameters

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

   Web browser: ---
 Bug #: 39335
   Summary: SemanticMaps query seems to ignore header and link
parameters
   Product: MediaWiki extensions
   Version: REL1_18 branch
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: SemanticMaps
AssignedTo: jeroen_ded...@yahoo.com
ReportedBy: mitchell_ne...@hotmail.com
Classification: Unclassified
   Mobile Platform: ---


Hi.

I'm running Semantic Maps/Maps 1.0.5.

When you click on a pin in the Google Map you get the bubble. All the property
names are clickable as well as their values. 

So I tried headers=plain, link=Subject and also link=none but it made no
difference. The property names remain clickable.

This is a nuisance as it takes users to the property definition pages which are
pretty meaningless to them. All they want is to be able to do is click through
the property values.

Thanks

-- 
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 38816] Feedback page - Clear all flags

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

Matthias Mullie mmul...@wikimedia.org changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|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 39043] ArticleFeedbackv5: Phase 1.5 (tracking)

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

Bug 39043 depends on bug 38816, which changed state.

Bug 38816 Summary: Feedback page - Clear all flags
https://bugzilla.wikimedia.org/show_bug.cgi?id=38816

   What|Old Value   |New Value

 Status|RESOLVED|REOPENED
 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 19239] Special:Preferences dies if user's date preference is not valid and the language does not have a formatting type named 'default'

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 38816] Feedback page - Clear all flags

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

--- Comment #3 from Matthias Mullie mmul...@wikimedia.org 2012-08-14 11:00:02 
UTC ---
Pushed a new patch to Gerrit (https://gerrit.wikimedia.org/r/#/c/19442/) 
prototype - now always voids all flags, not just flags on autohidden posts.

-- 
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 36524] Bots only edits on Special:RecentChanges

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

Alexandre Emsenhuber [IAlex] ialex.w...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #9 from Alexandre Emsenhuber [IAlex] ialex.w...@gmail.com 
2012-08-14 11:11:25 UTC ---
Now 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 14901] Email notification mistakes log action for new page creation

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@gmail.com

--- Comment #52 from matanya matanya.mo...@gmail.com 2012-08-14 11:11:44 UTC 
---
patch is in gerrit. moving patch-need-review.

-- 
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 38634] Get rid of duplicate image description pages

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

Dereckson dereck...@espace-win.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||dereck...@espace-win.org
   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=36118
 Ever Confirmed|0   |1

--- Comment #1 from Dereckson dereck...@espace-win.org 2012-08-14 11:19:10 
UTC ---
See also bug #36118

-- 
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 38634] Get rid of duplicate image description pages

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

Dereckson dereck...@espace-win.org changed:

   What|Removed |Added

 CC||bawolff...@gmail.com,
   ||bryan.tongm...@gmail.com
  Component|Site configuration  |File management
Product|Wikimedia   |MediaWiki
   Target Milestone|--- |Future release

--- Comment #2 from Dereckson dereck...@espace-win.org 2012-08-14 11:20:26 
UTC ---
Moving from Wikimedia to MediaWiki. It needs software code change, not only
site configuration.

-- 
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 5556] SpecialNewpages outputs empty editsummaries for feeds

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 7715] Use date_default_timezone_* instead of TZ environment variable if available

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 7028] action=rawtemplates=expand broken (1.7-svn)

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 2907] Unspecified default charset in CREATE DATABASE can cause install to fail

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 18273] Don't jumble Wanted Categories into Wanted Pages anymore

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 32861] rebuildrecentchanges.php broken on Postgres

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 4187] HTML and wiki-links in MediaWiki:Tagline are discarded

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 14698] Special:CreateAccount does not respect Prevent account creation from Special:BlockIP

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 33139] New diff color scheme, in response to r106884.

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 39294] Add support for Georgian

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

--- Comment #3 from Srikanth Logic srik@gmail.com 2012-08-14 11:40:03 UTC 
---
For now, there will be a new menu added next to Username / IP as shown in
http://www.mediawiki.org/wiki/File:NarayamMenu.png Upon clicking a menu will
come listing Georgian transliteration as an option to select in wikis with
Georgian as content language.

http://translatewiki.net/wiki/Main_Page?uselang=ka You can click the input
method in this link and see how it looks like.


A more detailed (translatable) help documentation is available at
http://www.mediawiki.org/wiki/Help:Extension:Narayam.

Sometime in near future when we have Universal Language Selector comes in
place, it will change the way it is for the better after doing a usability
study. http://www.mediawiki.org/wiki/Universal_Language_Selector

Thank you.

-- 
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 38997] Article Feedback Page - Remove survey button

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

--- Comment #1 from Matthias Mullie mmul...@wikimedia.org 2012-08-14 11:40:24 
UTC ---
Pushed to Gerrit (https://gerrit.wikimedia.org/r/#/c/19445/)  prototype

-- 
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 8828] Parameters are not passed to hooks

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 4759] Table headers !! and cells || should behave the same way

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|need-parsertest, patch, |
   |patch-need-review   |
 CC||matanya.mo...@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 1772] Unnecessary p paragraph tags within extension output

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 29482] $wgEmailConfirmToEdit removes diffs from Recent Changes feeds (RSS and Atom)

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 6405] Edit summary does not properly display links to shared-upload images

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 39294] Add support for Georgian

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

--- Comment #4 from George g.nat...@gmail.com 2012-08-14 11:51:17 UTC ---
Oh, I see it now on translatewiki.net. 
1) It seems to be too large - can we make smaller more input languages and
help buttons? They are extremely large and, in fact have no actual need. 
2) The button ` and ~ must also must be „ and “ .
3) The extension needs to be enabled by default.
Thank you.

-- 
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 3016] Editing RTL article confuses RC

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 27970] Wrong variable in phase3/resources/mediawiki/mediawiki.js

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 10204] Language.php missing else condition?

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 19797] Improve LogEventsList::showLogExtract (patch)

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 14226] Allow sup and sub in {{DISPLAYTITLE:}}

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 8867] Hook to alter upload form

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|easy, patch,|
   |patch-need-review   |
 CC||matanya.mo...@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 8418] Open links in new page (_blank)

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 31817] The bdi tag is sanitized

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@gmail.com

--- Comment #14 from matanya matanya.mo...@gmail.com 2012-08-14 12:05:19 UTC 
---
patch moved to gerrit. removing patch-need-review key word

-- 
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 25647] TIFF images that are too big to thumbnail don't display errors on image page

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

Bawolff bawolff...@gmail.com changed:

   What|Removed |Added

 Status|ASSIGNED|NEW

--- Comment #8 from Bawolff bawolff...@gmail.com 2012-08-14 12:05:55 UTC ---
Changing status Assigned - New, since it is assigned to wikibugs-l...

-- 
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 18834] Show estimate of number of edits to be reverted in rollback link

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

Derk-Jan Hartman hart...@videolan.org changed:

   What|Removed |Added

 CC||hart...@videolan.org

--- Comment #22 from Derk-Jan Hartman hart...@videolan.org 2012-08-14 
12:08:12 UTC ---
For future reference. In $wgMiserMode (enabled by default on WMF servers) the
rollback count for Special:RecentChanges and Special:Watchlist is disabled.

-- 
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 28357] Users can edit any page

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|
 CC||matanya.mo...@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 38818] Feedback Page - Split up featured and resolved

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

--- Comment #1 from Matthias Mullie mmul...@wikimedia.org 2012-08-14 12:10:00 
UTC ---
Pushed to Gerrit (https://gerrit.wikimedia.org/r/#/c/19447/)  prototype

-- 
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 29470] Date suggestion should extract time as well from EXIF data

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

matanya matanya.mo...@gmail.com changed:

   What|Removed |Added

   Keywords|i18n, patch,|
   |patch-need-review   |
 CC||matanya.mo...@gmail.com

--- Comment #8 from matanya matanya.mo...@gmail.com 2012-08-14 12:25:35 UTC 
---
removed i18n, as it isn't related to i18n. removed patch and patch need review
as this patch is in gerrit.

-- 
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 39336] New: Fatal exception of type MWException

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

   Web browser: ---
 Bug #: 39336
   Summary: Fatal exception of type MWException
   Product: MediaWiki
   Version: unspecified
  Platform: All
   URL: https://pt.wikipedia.org/wiki/Especial:P%C3%A1ginas_vi
giadas
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Watchlist
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: mybugs.m...@gmail.com
Depends on: 38095
Classification: Unclassified
   Mobile Platform: ---


When I tried to access my Watchlist I got a page whose HTML was this:

div id=mw-content-textdiv class=errorbox[158d962c] 2012-08-14 12:48:18:
Fatal exception of type MWException/div
!-- Set $wgShowExceptionDetails = true; at the bottom of LocalSettings.php to
show detailed debugging information. --/div

-- 
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 39337] New: No right column in Modern skin.

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

   Web browser: Firefox
 Bug #: 39337
   Summary: No right column in Modern skin.
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
   URL: http://www.omegawiki.org/DefinedMeaning:preposition_%2
8409140%29
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: OmegaWiki
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: fia...@fiable.biz
Classification: Unclassified
   Mobile Platform: ---


The picture, category of Commons and Wikipedia articles don't appear if the
Modern skin is chosen.

-- 
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 39338] New: Focus fix for add-link

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

   Web browser: ---
 Bug #: 39338
   Summary: Focus fix for add-link
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
AssignedTo: wikidata-b...@lists.wikimedia.org
ReportedBy: jeb...@gmail.com
CC: wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


It seems like proper implementation of re-focussing site links add button
after adding (https://gerrit.wikimedia.org/r/#/c/19449/) does not work always.
On some machines editing and then cancelling the edit in the last (or near
last) links, will then result in focusing of the add-link.

-- 
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 39339] New: Space between words not shown in an article

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

   Web browser: ---
 Bug #: 39339
   Summary: Space between words not shown in an article
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: Unprioritized
 Component: General/Unknown
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: snaevar-w...@gmx.com
Classification: Unclassified
   Mobile Platform: ---


http://is.wikipedia.org/w/index.php?title=RARIKoldid=1275127

Under the section Tenglar in the Icelandic Wikipedia article Rarik the
space between the words vefsíða and fyrirtækisins is not shown. Adding
nowiki between the words fixes the problem, but I am looking for an permanent
solution to the problem.

-- 
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 36430] Specify language fallback (8)

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

--- Comment #10 from denny vrandecic denny.vrande...@wikimedia.de 2012-08-14 
14:27:43 UTC ---
See also http://meta.wikimedia.org/wiki/Wikidata/Notes/Language_fallback

-- 
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 39340] New: Revisions reported to be empty in page history although containing text

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

   Web browser: ---
 Bug #: 39340
   Summary: Revisions reported to be empty in page history
although containing text
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: History/Diffs
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: menous...@yahoo.com
Classification: Unclassified
   Mobile Platform: ---


The following revisions in Arabic Wikipedia (arwiki) are displayed as empty in
the page history of [[ar:فلك (علم)]] although the revisions contain text which
can be evident when clicking the edit tab.

http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=41682
http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=3007
http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=2409
http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=2373
http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=1009
http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=513
http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=511
http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=472
http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=464
http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=461
http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=425
http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=345
http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=338
http://ar.wikipedia.org/w/index.php?title=%D9%81%D9%84%D9%83_(%D8%B9%D9%84%D9%85)oldid=202


Note that all the revisions date back to 2003-2004. I believe that there was a
problem in the script used add revision size to page history.

-- 
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 39341] New: Display something meaningful as Page-Title on Special:CreateItem

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

   Web browser: ---
 Bug #: 39341
   Summary: Display something meaningful as Page-Title on
Special:CreateItem
   Product: MediaWiki extensions
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: minor
  Priority: Unprioritized
 Component: WikidataRepo
AssignedTo: wikidata-b...@lists.wikimedia.org
ReportedBy: tobias.gritschac...@wikimedia.de
CC: wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---


When viewing an item sometghing like ItemLabel - NameOfTheWiki is
displayed as page-title. But when on Special:CreateItem just  -
NameOfTheWiki is shown. We should display something more meaningful here,
like e.g. Special:CreateItem - NameOfTheWiki.

-- 
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 39341] Display something meaningful as Page-Title on Special:CreateItem

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

tobias.gritschac...@wikimedia.de 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 on the CC list for the bug.

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


[Bug 39334] action=delete not working when trying to delete a data item

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

Aude aude.w...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||aude.w...@gmail.com

--- Comment #1 from Aude aude.w...@gmail.com 2012-08-14 15:28:32 UTC ---
fixed in https://gerrit.wikimedia.org/r/#/c/19455/

-- 
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 39342] New: Special character not handled properly in date properties

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

   Web browser: ---
 Bug #: 39342
   Summary: Special character not handled properly in date
properties
   Product: MediaWiki extensions
   Version: REL1_19 branch
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Semantic MediaWiki
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: misdre+mediaw...@gmail.com
CC: jeroen_ded...@yahoo.com, mar...@semantic-mediawiki.org
Classification: Unclassified
   Mobile Platform: ---


On a French wiki, some French translation of months have trouble to be parsed.
For instance, janvier (january) works well, as do the other months without
any special character, but not février (february) or décembre (december). A
small warning sign is displayed on the right of the date.

[[Date de sortie::21 mars 2012]] - ok

[[Date de sortie::21 février 2011]] - not ok

[[Date de sortie::21 fév 2011]] (short version) - not ok

[[Date de sortie::21 août 2012]] - not ok

This problem was already there in SMW 1.6 but it wasn't in a more distant past.

-- 
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] Add support for QR pedia URL's

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

Terence Eden bugzilla.wikimedia@shkspr.mobi changed:

   What|Removed |Added

 CC||bugzilla.wikimedia.org@shks
   ||pr.mobi

--- Comment #1 from Terence Eden bugzilla.wikimedia@shkspr.mobi 
2012-08-14 15:33:39 UTC ---
Please don't - it will mess up our statistics.

What we would prefer you do is wait for the X.m.wikipedia.org response and
intercept *that*.

So, user scans code, browser requests qrwp.org, we record the statistic, we
determine correct language to serve, we return (say) it.m.wikipedia, your app
captures that URL.

Thanks

Terence Eden 
(Co-creator of QRpedia and the chap currently running qrwp.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 38499] Problem with hidden feedback overlay

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

--- Comment #7 from Matthias Mullie mmul...@wikimedia.org 2012-08-14 15:34:29 
UTC ---
I've fixed a problem with the hide overlay in IE7, where it would not appear
upon hiding feedback - pushed to Gerrit
(https://gerrit.wikimedia.org/r/#/c/19495/)  prototype.
I doubt that this will be what is causing the oversighter-issue though, as it
should only have been problematic on IE7, plus because it appears that the
issue is caused by something completely causing javascript to stop executing
at some point.

-- 
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 13627] The move reason field should be one line only

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

--- Comment #21 from とある白い猫 to.aru.shiroi.n...@gmail.com 2012-08-14 15:35:48 
UTC ---
Sure I can java script hack my way on all of life's problems for everything
else there is mastercard. Right? It could also be a simple set of check boxes
allowing user to customize input fields.

Currently as previously mentioned... The page-file move box/edit summary
box/delete box/block box/protection box are different. Only one is multi-lined
other are single-lined. This irks me greatly. I however do not want to force
people who want to use multi-lined text boxes to use single lined.

The reasons of moving a page or file is routine. Far more routine than anything
else. You almost always use the same rationale so WHY is it that it is
multi-lined?

For filemove at least on commons and English wikipedia, drop down bot quoting
the rationale would be helpful. Drop down box input can be determined locally
just like how license list can be adjusted.

-- 
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 39340] Revisions reported to be empty in page history although containing text

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

Krenair kren...@gmail.com changed:

   What|Removed |Added

   Keywords||shell
 CC||kren...@gmail.com
  Component|History/Diffs   |General/Unknown
Product|MediaWiki   |Wikimedia

-- 
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 29470] Date suggestion should extract time as well from EXIF data

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

--- Comment #9 from Mark Holmquist mtrac...@member.fsf.org 2012-08-14 
16:01:16 UTC ---
matanya, the date format was why I was concerned, I didn't know if there was a
better way to localise the date for display. This could be a useful addition to
the mediawiki default modulesmaybe in my mw.Time. All right, fair enough,
this is clearly something I should look at :)

But until I get mw.Time merged and patched to do this, is there another way?

Also, I've been using patch and patch-need-review to indicate that it's
separate from non-patched bugs. Without that tag, people might visit this bug
looking for something to do, and only discover the patch after (best case)
reading five comments or (worst case) fixing the bug themselves. Is this wrong?
Should I do it a better way?

-- 
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 30625] UploadWizard does not handle 'duplicate-archive' errors correctly

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

Mark Holmquist mtrac...@member.fsf.org changed:

   What|Removed |Added

   Keywords|patch-need-review   |patch-in-gerrit

-- 
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 32247] Cannot go back after uploading files

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

Mark Holmquist mtrac...@member.fsf.org changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|patch-in-gerrit

-- 
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 39344] New: MediaWiki:Fileexists should be shown on Special:Upload whenever it applies (wpForReUpload=1 should not suppress it)

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

   Web browser: ---
 Bug #: 39344
   Summary: MediaWiki:Fileexists should be shown on Special:Upload
whenever it applies (wpForReUpload=1 should not
suppress it)
   Product: MediaWiki
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: Uploading
AssignedTo: wikibugs-l@lists.wikimedia.org
ReportedBy: rd...@hotmail.com
CC: bryan.tongm...@gmail.com
Classification: Unclassified
   Mobile Platform: ---


MediaWiki:Fileexists (a message about overwriting an existing file, when the
user has permission to do so) should be shown on Special:Upload whenever it
applies. Currently the message is suppressed if wpForReUpload=1 is set (as it
is from the Upload a new version of this file link below the File History).
Just because the user has specifically said I want to reupload doesn't mean
they shouldn't be reminded of the rules for doing so.

Alternatively, since the main motivation for this bug is Commons' need to
remind users of its overwriting rules, there could maybe be a different
setting, wpForSharedReUpload, which is used on shared repositories like
Commons, where stability of images is more important and so not overwriting
images when you shouldn't is more important. And that setting would either
display MediaWiki:Fileexists or a new message.

-- 
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 32843] UploadWizard - Adding same file twice results in strange behaviour

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

Mark Holmquist mtrac...@member.fsf.org changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|patch-in-gerrit

-- 
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 13627] The move reason field should be one line only

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

--- Comment #22 from Bawolff bawolff...@gmail.com 2012-08-14 16:18:14 UTC ---
Sure I can java script hack my way on all of life's problems for everything
else there is mastercard. Right?

Exactly! I think this should be MW's new slogan.

-

I do agree with comment 8 that the spacing between the reason box and the
destination box should be increased (even if the reason box is kept
multi-line).

-- 
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 37449] License texts missing when using campaigns in UploadWizard

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

Mark Holmquist mtrac...@member.fsf.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #8 from Mark Holmquist mtrac...@member.fsf.org 2012-08-14 
16:18:22 UTC ---
Closing because the above patch was merged (apparently). If problem persists
please reopen.

-- 
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-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37144

Bug 37144 depends on bug 37449, which changed state.

Bug 37449 Summary: License texts missing when using campaigns in UploadWizard
https://bugzilla.wikimedia.org/show_bug.cgi?id=37449

   What|Old Value   |New Value

 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 26505] Upload wizard: Add comment to file history

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

Mark Holmquist mtrac...@member.fsf.org changed:

   What|Removed |Added

   Keywords|patch, patch-need-review|patch-in-gerrit

-- 
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 37449] License texts missing when using campaigns in UploadWizard

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

Mark Holmquist mtrac...@member.fsf.org changed:

   What|Removed |Added

   Keywords|patch, patch-need-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 32469] file upload error messages don't work sanely

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

Mark Holmquist mtrac...@member.fsf.org changed:

   What|Removed |Added

   Keywords|patch-need-review   |patch-in-gerrit

--- Comment #7 from Mark Holmquist mtrac...@member.fsf.org 2012-08-14 
16:20:34 UTC ---
Mark, I have totally dropped the ball on this one. Can you take a glance at
this sometime soon?

(also, updating keyword to be more better)

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