[Wikidata-bugs] [Maniphest] [Merged] T52202: Diffing between different content models throws a fatal error

2019-01-18 Thread Tgr
Tgr closed this task as a duplicate of T214217: Improve handling of diffs between different content types.
TASK DETAILhttps://phabricator.wikimedia.org/T52202EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: TgrCc: thiemowmde, hoo, aude, Addshore, Bugreporter, Ricordisamoa, Aklapper, Jasper, Legoktm, Lydia_Pintscher, daniel, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, Wikidata-bugs, Jackmcbarn, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T213597: [REQUEST] Baselines for structured data on Commons

2019-01-18 Thread Neil_P._Quinn_WMF
Neil_P._Quinn_WMF added a comment.

In T213597#4893605, @mpopov wrote:
Here's the query I used, which I would like someone in #product-analytics (e.g. @chelsyx and @Neil_P._Quinn_WMF) to review:


Sure thing!

I noticed once big thing: it seems like your counts of file page edits (n_edits_total, n_additions_total, etc.) include the initial edit that creates the pages, so in the end you're getting the proportion of files which have metadata added in the first 2 months, including during the initial upload.

I tried excluding those initial creations (event_timestamp != page_creation_timestamp), and it looks like the proportion goes from 99% to 50%.

Query excluding intial creations

WITH summarized_revisions AS (
  SELECT
page_id, TO_DATE(page_creation_timestamp) AS creation_date,
COUNT(1) AS n_edits, -- not including reverts or reverted
SUM(IF(event_timestamp != page_creation_timestamp, 1, 0)) as n_later_edits,
SUM(IF(revision_text_bytes_diff > 0 AND DATEDIFF(event_timestamp, page_creation_timestamp) <= 60 AND event_timestamp != page_creation_timestamp, 1, 0)) AS n_additions_2mo
  FROM wmf.mediawiki_history
  WHERE snapshot = '2018-12'
AND wiki_db = 'commonswiki'
AND page_creation_timestamp between "2018-10-01" and "2018-10-08"
AND event_entity = 'revision'
AND page_namespace = 6
AND NOT revision_is_identity_revert -- don't count edits that are reverts
AND NOT revision_is_identity_reverted -- don't count edits that were reverted
AND NOT revision_is_deleted -- don't counts edits moved to archive table
AND page_id IS NOT NULL -- don't count deleted files
  GROUP BY page_id, TO_DATE(page_creation_timestamp)
)
SELECT
  creation_date,
  COUNT(1) AS n_uploaded, -- files uploaded
  SUM(IF(n_later_edits > 0, 1, 0)) AS n_later_edited, -- files whose pages were edited after upload
  SUM(IF(n_additions_2mo > 0, 1, 0)) AS n_added_to_2mo -- files that have had metadata added after creation and in first 2 months
  FROM summarized_revisions
GROUP BY creation_date;


creation_daten_uploadedn_later_editedn_added_to_2mo
2018-10-01233901330710248
2018-10-0218226113088947
2018-10-03227631680312142
2018-10-0417455128969088
2018-10-05173211139710261
2018-10-06201911245610558
2018-10-0721479115759853





Other comments

WITH summarized_revisions AS (
  SELECT
page_id, TO_DATE(page_creation_timestamp) AS creation_date,
COUNT(1) AS n_edits_total, -- not including reverts or reverted

I think this includes uploads of new file versions, not just metadata edits, but I don't think it would change the results much.

  SUM(IF(revision_text_bytes_diff > 0, 1, 0)) AS n_additions_total,
  SUM(IF(DATEDIFF(event_timestamp, page_creation_timestamp) <= 60, 1, 0)) AS n_edits_2mo,
  SUM(IF(revision_text_bytes_diff > 0 AND DATEDIFF(event_timestamp, page_creation_timestamp) <= 60, 1, 0)) AS n_additions_2mo
FROM wmf.mediawiki_history
WHERE snapshot = '2018-12'
  AND wiki_db = 'commonswiki'
  AND event_entity = 'revision'
  AND page_namespace = 6
  AND NOT revision_is_identity_revert -- don't count edits that are reverts
  AND NOT revision_is_identity_reverted -- don't count edits that were reverted
  AND NOT revision_is_deleted -- don't counts edits moved to archive table
  AND page_id IS NOT NULL -- don't count deleted files

I don't understand the point of this, since the NOT revision_is_deleted should have already removed deleted files. (Also the page_id isn't necessarily null for deleted pages; after all the MediaWiki archive table has ar_page_id.)

 GROUP BY page_id, TO_DATE(page_creation_timestamp)
)
SELECT
 creation_date,
 COUNT(1) AS n_total, -- files uploaded
 SUM(IF(n_edits_total > 0, 1, 0)) AS n_edited, -- files that have had metadata edited
 SUM(IF(n_additions_total > 0, 1, 0)) AS n_added_to, -- files that have had metadata added
 SUM(IF(n_edits_2mo > 0, 1, 0)) AS n_edited_2mo, -- files that have had metadata edited in first 2 months
 SUM(IF(n_additions_2mo > 0, 1, 0)) AS n_added_to_2mo -- files that have had metadata added in first 2 months
 FROM summarized_revisions
GROUP BY creation_date;TASK DETAILhttps://phabricator.wikimedia.org/T213597EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Neil_P._Quinn_WMFCc: Neil_P._Quinn_WMF, chelsyx, MNeisler, mpopov, kzimmerman, Ramsey-WMF, Abit, JKSTNK, Lahi, PDrouin-WMF, E1presidente, Cparle, Anooprao, SandraF_WMF, Tramullas, Acer, Silverfish, Susannaanas, Jane023, Wikidata-bugs, Base, matthiasmullie, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T214213: "Special:NewItem" form get frozen when Wikidata item doesn't exist

2019-01-18 Thread SJu
SJu created this task.SJu added projects: Multimedia, SDC General.Restricted Application added a subscriber: Aklapper.Restricted Application added a project: Wikidata.
TASK DESCRIPTIONCirca since 16 January 2019, the "Special:NewItem" form (opened through the "Add links" link in the interwiki section of the left menu) get frozen when a Wikimedia Commons category page should be joined with a Wikipedia article which have not its own Wikidata item yet. Tested on Category:Rabštejn (Hanušovická vrchovina). As "Link with page" button is clicked, the form works and works and works and never finishes.TASK DETAILhttps://phabricator.wikimedia.org/T214213EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SJuCc: MediaWiki-Interwiki, Wikidata, SJu, Aklapper, Nandana, JKSTNK, Lahi, PDrouin-WMF, Gq86, E1presidente, Ramsey-WMF, Cparle, Anooprao, SandraF_WMF, GoranSMilovanovic, QZanden, Tramullas, Acer, V4switch, LawExplorer, Silverfish, _jensen, Susannaanas, Wong128hk, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Matanya, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T213106: Modify wikidata entity completion search for per-language tuning parameters

2019-01-18 Thread gerritbot
gerritbot added a comment.
Change 484316 merged by jenkins-bot:
[mediawiki/extensions/Wikibase@master] Add per-language wbsearchentities profiles

https://gerrit.wikimedia.org/r/484316TASK DETAILhttps://phabricator.wikimedia.org/T213106EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: EBernhardson, gerritbotCc: gerritbot, Aklapper, dcausse, Smalyshev, EBernhardson, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, LawExplorer, Lewizho99, Maathavan, _jensen, Wikidata-bugs, aude, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T213597: [REQUEST] Baselines for structured data on Commons

2019-01-18 Thread mpopov
mpopov added subscribers: chelsyx, Neil_P._Quinn_WMF.mpopov added a comment.
Okay, here are the numbers which were calculated with the following conditions:


Using the December 2018 snapshot of MediaWiki History in the Data Lake
Only files which have not been deleted are counted
Only revisions to the metadata which were not reverted AND which were not reverts AND which were not deleted
"Metadata augmented w/in 1st 2mo" means there was at least 1 byte-adding revision to the file's page within the first 60 days after creation


Assuming my query is correct (pending review), then it looks like the baseline for % of files which have metadata added within the first 2 months is 99.993914% overall.

Yearly stats


YearFiles uploaded that yearMetadata augmented w/in 1st 2mo (60d)Proportion
200417,47817,42399.685319%
2005263,218263,05399.937314%
2006644,238644,08799.976561%
20071,202,2091,202,01999.984196%
20081,402,0611,401,90899.989087%
20091,926,0191,925,78699.987903%
20102,331,8372,331,58199.989022%
20113,881,4413,881,08999.990931%
20123,489,4353,489,25399.994784%
20134,592,1774,592,01899.996538%
20144,720,6574,720,53499.997394%
20155,684,4635,684,36099.998188%
20166,317,9066,317,72999.997198%
20178,184,7328,184,28699.994551%
20187,983,4517,982,99299.994251%





Monthly stats for 2018


MonthFiles uploaded that monthMetadata augmented w/in 1st 2mo (60d)Proportion
January 2018653,574653,51699.991126%
February 2018705,934705,86999.990792%
March 2018784,535784,46199.990568%
April 2018609,663609,62799.994095%
May 2018714,618714,52399.986706%
June 2018588,995588,87899.980136%
July 2018651,006651,00399.999539%
August 2018784,168784,16699.999745%
September 2018818,778818,77599.999634%
October 2018564,108564,10299.998936%
November 2018574,174574,174100.00%
December 2018533,898533,898100.00%





Appendix

Here's the query I used, which I would like someone in #product-analytics (e.g. @chelsyx and @Neil_P._Quinn_WMF) to review:

WITH summarized_revisions AS (
  SELECT
page_id, TO_DATE(page_creation_timestamp) AS creation_date,
COUNT(1) AS n_edits_total, -- not including reverts or reverted
SUM(IF(revision_text_bytes_diff > 0, 1, 0)) AS n_additions_total,
SUM(IF(DATEDIFF(event_timestamp, page_creation_timestamp) <= 60, 1, 0)) AS n_edits_2mo,
SUM(IF(revision_text_bytes_diff > 0 AND DATEDIFF(event_timestamp, page_creation_timestamp) <= 60, 1, 0)) AS n_additions_2mo
  FROM wmf.mediawiki_history
  WHERE snapshot = '2018-12'
AND wiki_db = 'commonswiki'
AND event_entity = 'revision'
AND page_namespace = 6
AND NOT revision_is_identity_revert -- don't count edits that are reverts
AND NOT revision_is_identity_reverted -- don't count edits that were reverted
AND NOT revision_is_deleted -- don't counts edits moved to archive table
AND page_id IS NOT NULL -- don't count deleted files
  GROUP BY page_id, TO_DATE(page_creation_timestamp)
)
SELECT
  creation_date,
  COUNT(1) AS n_total,
  SUM(IF(n_edits_total > 0, 1, 0)) AS n_edited,
  SUM(IF(n_additions_total > 0, 1, 0)) AS n_added_to,
  SUM(IF(n_edits_2mo > 0, 1, 0)) AS n_edited_2mo,
  SUM(IF(n_additions_2mo > 0, 1, 0)) AS n_added_to_2mo
  FROM summarized_revisions
GROUP BY creation_date;TASK DETAILhttps://phabricator.wikimedia.org/T213597EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: mpopovCc: Neil_P._Quinn_WMF, chelsyx, MNeisler, mpopov, kzimmerman, Ramsey-WMF, Abit, JKSTNK, Lahi, PDrouin-WMF, E1presidente, Cparle, Anooprao, SandraF_WMF, Tramullas, Acer, Silverfish, Susannaanas, Jane023, Wikidata-bugs, Base, matthiasmullie, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T210260: Stretch in docker registry forces ascii encoding

2019-01-18 Thread greg
greg closed this task as "Resolved".greg added a comment.

In T210260#4892443, @Ladsgroup wrote:

In T210260#4823617, @hashar wrote:
@Ladsgroup if you retry blubber for wikilabs, you should no more encounter the error. And I don't think you would need to set PYTHONUTF8=1 nor PYTHONIOENCODING: utf-8.


Yup, it works for me. Thanks!


re-resolvingTASK DETAILhttps://phabricator.wikimedia.org/T210260EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: akosiaris, gregCc: greg, gerritbot, LarsWirzenius, dduvall, hashar, akosiaris, Aklapper, Ladsgroup, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Vacio, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, Liudvikas, notconfusing, thcipriani, mobrovac, Wikidata-bugs, aude, Alchimista, Addshore, Mbch331, Jay8g___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T213571: Ignore babel box the user has set to knowing at level 0 on Commons (and so have different behaviour to Wikidata)

2019-01-18 Thread Pigsonthewing
Pigsonthewing added a comment.
I use =0 on Wikidata for languages I can sometimes edit, but cannot use to communicate. I want and would expect to do the same on Commons.

OP should not misuse Babel "to stop people from contacting me using languages I don't know"; and instead use prose for that.TASK DETAILhttps://phabricator.wikimedia.org/T213571EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: PigsonthewingCc: Pigsonthewing, Raymond, Nikerabbit, Roy17, Nemo_bis, Legoktm, Multichill, Lydia_Pintscher, Jdforrester-WMF, AlexisJazz, Aklapper, Keegan, Jd3main, Nandana, Lahi, Gq86, Ramsey-WMF, GoranSMilovanovic, TheDragonFire, QZanden, LawExplorer, Iniquity, _jensen, Wikidata-bugs, aude, SPQRobin, Ricordisamoa, Arrbee, KartikMistry, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T213585: Images (on articles, on file/category pages, and in the media viewer) should default to use their structured data caption as alt text when available

2019-01-18 Thread Pigsonthewing
Pigsonthewing added a comment.
Please no. Captions are not, generally, suitable for use as alt attribute text[*]. Please consult with screen reader users and/or accessibility professionals.


 and neither are file names.
TASK DETAILhttps://phabricator.wikimedia.org/T213585EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: PigsonthewingCc: Pigsonthewing, ChristianFerrer, Abbe98, Aklapper, Nandana, JKSTNK, Lahi, PDrouin-WMF, Gq86, E1presidente, Ramsey-WMF, Cparle, Anooprao, SandraF_WMF, GoranSMilovanovic, QZanden, Orienteerix, Tramullas, Acer, LawExplorer, Flycatchr, EHCliffe, Zppix, Silverfish, _jensen, Susannaanas, Volker_E, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Dinoguy1000, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331, Jay8g___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T213571: Ignore babel box the user has set to knowing at level 0 on Commons (and so have different behaviour to Wikidata)

2019-01-18 Thread Raymond
Raymond added a comment.
My usecase: I added fr-0 some days ago because I wanted to add the French name of a church. Even that I do not speak French (with the exception of 5 words) I am able to copy & paste into the captions.TASK DETAILhttps://phabricator.wikimedia.org/T213571EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: RaymondCc: Raymond, Nikerabbit, Roy17, Nemo_bis, Legoktm, Multichill, Lydia_Pintscher, Jdforrester-WMF, AlexisJazz, Aklapper, Keegan, Jd3main, Nandana, Lahi, Gq86, Ramsey-WMF, GoranSMilovanovic, TheDragonFire, QZanden, LawExplorer, Iniquity, _jensen, Wikidata-bugs, aude, SPQRobin, Ricordisamoa, Arrbee, KartikMistry, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T213571: Ignore the babel box for languages the user has set to knowing at level 0

2019-01-18 Thread Jdforrester-WMF
Jdforrester-WMF added a comment.

In T213571#4892511, @AlexisJazz wrote:

In T213571#4879390, @Jdforrester-WMF wrote:

In T213571#4875391, @AlexisJazz wrote:
@Jdforrester-WMF According to meta, level 0 doesn't understand the language at all. Level 1 can only read. Only level 2 and up are capable or writing in a language. So input fields (which require writing) should only be presented to those who consider themselves level 2 and up.


I appreciate that that random page on Meta that I'd never seen before says that, and made you think that adding dozens of -0 as a talisman to scare off users who speak those languages was a supported way to use the Babel extension, but it isn't and it wasn't.

I would very strongly recommend that you delete the mess of -0 boxes on your user page that mostly highlight your account to people that speak those languages (and disrupt your experience on Meta, with language links on the sides of articles on Wikipedia etc., on Wikidata, and now on Commons).


I would very strongly recommend to make language configuration a preference, which it should have been in the first place.


I agree that it is both surprising and confusing that the Babel extension combines fluff (user boxes) with configuration and does so via user pages. However, that ship sailed eleven years ago in 2008 when it got created, sadly, and changing it now would be very disruptive for users. I'd be in favour of initiating some work to re-evaluate this, probably eventually via a Tech RfC after a wide-ranging investigation into possible uses and improvements, but that's far outwith the scope of the SDC project, and would have to be done in communion with the Language team (as the experts), the Wikidata team (as one of the affected parties), many cross-language editors, and no-doubt other stakeholders.

Also, please don't edit-war over task titles. Making explicit that a task is asking for a deviation in behaviour between similar features is important to set context.TASK DETAILhttps://phabricator.wikimedia.org/T213571EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jdforrester-WMFCc: Nikerabbit, Roy17, Nemo_bis, Legoktm, Multichill, Lydia_Pintscher, Jdforrester-WMF, AlexisJazz, Aklapper, Keegan, Jd3main, Nandana, Lahi, Gq86, Ramsey-WMF, GoranSMilovanovic, TheDragonFire, QZanden, LawExplorer, Iniquity, _jensen, Wikidata-bugs, aude, SPQRobin, Ricordisamoa, Arrbee, KartikMistry, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Retitled] T213571: Ignore babel box the user has set to knowing at level 0 on Commons (and so have different behaviour to Wikidata)

2019-01-18 Thread Jdforrester-WMF
Jdforrester-WMF renamed this task from "Ignore the babel box for languages the user has set to knowing at level 0" to "Ignore babel box the user has set to knowing at level 0 on Commons (and so have different behaviour to Wikidata)".
TASK DETAILhttps://phabricator.wikimedia.org/T213571EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jdforrester-WMFCc: Nikerabbit, Roy17, Nemo_bis, Legoktm, Multichill, Lydia_Pintscher, Jdforrester-WMF, AlexisJazz, Aklapper, Keegan, Jd3main, Nandana, Lahi, Gq86, Ramsey-WMF, GoranSMilovanovic, TheDragonFire, QZanden, LawExplorer, Iniquity, _jensen, Wikidata-bugs, aude, SPQRobin, Ricordisamoa, Arrbee, KartikMistry, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T193701: Explore using user clicks data to tune Wikidata search parameters

2019-01-18 Thread debt
debt closed subtask T205111: [EPIC] Transform wikidata autocomplete click logs into a useful dataset as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T193701EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: debtCc: EBernhardson, Liuxinyu970226, Aklapper, EBjune, Lazhar, gabriel-wmde, debt, Smalyshev, ET4Eva, Nandana, Lahi, Gq86, Darkminds3113, GoranSMilovanovic, QZanden, LawExplorer, Avner, Gehel, _jensen, FloNight, Wikidata-bugs, aude, jayvdb, Mbch331, jeremyb___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T193701: Explore using user clicks data to tune Wikidata search parameters

2019-01-18 Thread debt
debt closed this task as "Resolved".debt claimed this task.
TASK DETAILhttps://phabricator.wikimedia.org/T193701EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: debtCc: EBernhardson, Liuxinyu970226, Aklapper, EBjune, Lazhar, gabriel-wmde, debt, Smalyshev, ET4Eva, Nandana, Lahi, Gq86, Darkminds3113, GoranSMilovanovic, QZanden, LawExplorer, Avner, Gehel, _jensen, FloNight, Wikidata-bugs, aude, jayvdb, Mbch331, jeremyb___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T205261: Add the ability to show terms in all entered languages on mobile

2019-01-18 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.33-notes (1.33.0-wmf.14; 2019-01-22).
TASK DETAILhttps://phabricator.wikimedia.org/T205261EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: ReleaseTaggerBotCc: gerritbot, Jakob_WMDE, Aklapper, Lea_WMDE, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T205261: Add the ability to show terms in all entered languages on mobile

2019-01-18 Thread gerritbot
gerritbot added a comment.
Change 485205 merged by jenkins-bot:
[mediawiki/extensions/Wikibase@master] Update Termbox

https://gerrit.wikimedia.org/r/485205TASK DETAILhttps://phabricator.wikimedia.org/T205261EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: gerritbotCc: gerritbot, Jakob_WMDE, Aklapper, Lea_WMDE, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T204267: Flood of WDQS requests from wbqc

2019-01-18 Thread Smalyshev
Smalyshev closed this task as "Resolved".Smalyshev claimed this task.
TASK DETAILhttps://phabricator.wikimedia.org/T204267EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SmalyshevCc: gerritbot, Tpt, Pintoch, Stashbot, Jonas, Addshore, TerraCodes, Liuxinyu970226, Aklapper, Smalyshev, Legado_Shulgin, Nandana, thifranc, AndyTan, Zylc, Davinaclare77, Qtn1293, 1978Gage2001, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Chicocvenancio, Th3d3v1ls, Hfbn0, QZanden, EBjune, Tbscho, merbst, LawExplorer, Zppix, JJMC89, _jensen, Agabi10, Xmlizer, srodlund, Wong128hk, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Gryllida, Lydia_Pintscher, faidon, scfc, Mbch331, Jay8g, Krenair, fgiunchedi, chasemp___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Retitled] T213994: A Commons search user should be able to search for only captions

2019-01-18 Thread EBernhardson
EBernhardson renamed this task from "A Commons search user should be able to search for captions" to "A Commons search user should be able to search for only captions".
TASK DETAILhttps://phabricator.wikimedia.org/T213994EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: EBernhardsonCc: Smalyshev, dcausse, Jdforrester-WMF, Aklapper, Cparle, EBernhardson, Abit, Nandana, JKSTNK, Lahi, PDrouin-WMF, Gq86, E1presidente, Ramsey-WMF, Anooprao, SandraF_WMF, GoranSMilovanovic, QZanden, EBjune, Tramullas, Acer, V4switch, LawExplorer, Silverfish, _jensen, Susannaanas, Wong128hk, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Matanya, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T213994: A Commons search user should be able to search for captions

2019-01-18 Thread Cparle
Cparle added a comment.
Ah ok, I didn't get the "limit" bitTASK DETAILhttps://phabricator.wikimedia.org/T213994EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: CparleCc: Smalyshev, dcausse, Jdforrester-WMF, Aklapper, Cparle, EBernhardson, Abit, Nandana, JKSTNK, Lahi, PDrouin-WMF, Gq86, E1presidente, Ramsey-WMF, Anooprao, SandraF_WMF, GoranSMilovanovic, QZanden, EBjune, Tramullas, Acer, V4switch, LawExplorer, Silverfish, _jensen, Susannaanas, Wong128hk, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Matanya, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T213994: A Commons search user should be able to search for captions

2019-01-18 Thread EBernhardson
EBernhardson added a comment.
@Cparle The original request was to limit search to pages that contain captions, or basically to limit the search to captions. A keyword against opening_text could do this probably by instantiating the TextFieldFilterFeatureTASK DETAILhttps://phabricator.wikimedia.org/T213994EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: EBernhardsonCc: Smalyshev, dcausse, Jdforrester-WMF, Aklapper, Cparle, EBernhardson, Abit, Nandana, JKSTNK, Lahi, PDrouin-WMF, Gq86, E1presidente, Ramsey-WMF, Anooprao, SandraF_WMF, GoranSMilovanovic, QZanden, EBjune, Tramullas, Acer, V4switch, LawExplorer, Silverfish, _jensen, Susannaanas, Wong128hk, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Matanya, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T205261: Add the ability to show terms in all entered languages on mobile

2019-01-18 Thread gerritbot
gerritbot added a comment.
Change 485205 had a related patch set uploaded (by Jakob; owner: Jakob):
[mediawiki/extensions/Wikibase@master] Update Termbox

https://gerrit.wikimedia.org/r/485205TASK DETAILhttps://phabricator.wikimedia.org/T205261EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: gerritbotCc: gerritbot, Jakob_WMDE, Aklapper, Lea_WMDE, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T205261: Add the ability to show terms in all entered languages on mobile

2019-01-18 Thread gerritbot
gerritbot added a project: Patch-For-Review.
TASK DETAILhttps://phabricator.wikimedia.org/T205261EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: gerritbotCc: gerritbot, Jakob_WMDE, Aklapper, Lea_WMDE, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T214034: IE(11) Javascript

2019-01-18 Thread Jakob_WMDE
Jakob_WMDE added a comment.
npm updated fixed the IE issues \o/
F27939255: Screenshot from 2019-01-18 16-55-39.pngTASK DETAILhttps://phabricator.wikimedia.org/T214034EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jakob_WMDECc: Jakob_WMDE, Aklapper, Pablo-WMDE, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T211015: Measure how often users click on more languages links

2019-01-18 Thread Addshore
Addshore added a comment.

In T211015#4891704, @Lea_WMDE wrote:
I'm surprised to see that the show count numbers are higher than the hidecount numbers, since by default users would only be able to see the "hide link".


I went back and checked the code and the tracking definitely looks correct (the right way around)

The only explanation I can come up with, is that most of the clicks originate from people who hide the termbox by default and then need to "unhide" it again, and that this number of people is higher than people who feel an urge to hide the termbox.

That indeed seems correct
How does one actually make the choice of open vs closed persist?

Also, a note on the data, the interaction tracking will not include people that ask not to be tracked, however the page view data would include these page views.
So the %s are probably ever so slightly lower than reality.TASK DETAILhttps://phabricator.wikimedia.org/T211015EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Michael, Addshore, gerritbot, Lydia_Pintscher, D3r1ck01, Aklapper, WMDE-leszek, Lea_WMDE, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, Jonas, Wikidata-bugs, aude, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T213318: Wikibase Front-End Architecture

2019-01-18 Thread daniel
daniel added a comment.
@Nikerabbit so, if you don't have the node service, you have no support for clients that can't do the client side rendering, and no optimization for anon visitors. But it would still work.TASK DETAILhttps://phabricator.wikimedia.org/T213318EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: danielCc: Nikerabbit, jijiki, CDanis, ArielGlenn, Milimetric, akosiaris, Joe, mobrovac, Krinkle, daniel, Lydia_Pintscher, Lea_WMDE, Addshore, Matthias_Geisler_WMDE, Jakob_WMDE, Pablo-WMDE, WMDE-leszek, Aklapper, Nandana, kostajh, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, D3r1ck01, SBisson, Wikidata-bugs, aude, GWicke, jayvdb, fbstj, santhosh, Jdforrester-WMF, Mbch331, Rxy, Jay8g, Ltrlg, bd808, Legoktm___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T213571: Ignore the babel box for languages the user has set to knowing at level 0

2019-01-18 Thread AlexisJazz
AlexisJazz updated the task description. (Show Details)
CHANGES TO TASK DESCRIPTION...Update 18 January: a better solution would actually be to configure the languages you see in https://meta.wikimedia.org/wiki/Special:Preferences. Levels and babel boxes wouldn't matter anymore. It would also make more sense, because no user can be expected to guess //this// is how you configure which languages you can edit.TASK DETAILhttps://phabricator.wikimedia.org/T213571EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AlexisJazzCc: Nikerabbit, Roy17, Nemo_bis, Legoktm, Multichill, Lydia_Pintscher, Jdforrester-WMF, AlexisJazz, Aklapper, Keegan, Jd3main, Nandana, Lahi, Gq86, Ramsey-WMF, GoranSMilovanovic, TheDragonFire, QZanden, LawExplorer, Iniquity, _jensen, Wikidata-bugs, aude, SPQRobin, Ricordisamoa, Arrbee, KartikMistry, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Retitled] T213571: Ignore the babel box for languages the user has set to knowing at level 0

2019-01-18 Thread AlexisJazz
AlexisJazz renamed this task from "Ignore babel box the user has set to knowing at level 0 on Commons (and so have different behaviour to Wikidata)" to "Ignore the babel box for languages the user has set to knowing at level 0".AlexisJazz updated the task description. (Show Details)
CHANGES TO TASK DESCRIPTION...Please ignore level 0 languages.

Update 18 January: a better solution would actually be to configure the languages you see in https://meta.wikimedia.org/wiki/Special:Preferences. Levels and babel boxes wouldn't matter anymore.TASK DETAILhttps://phabricator.wikimedia.org/T213571EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AlexisJazzCc: Nikerabbit, Roy17, Nemo_bis, Legoktm, Multichill, Lydia_Pintscher, Jdforrester-WMF, AlexisJazz, Aklapper, Keegan, Jd3main, Nandana, Lahi, Gq86, Ramsey-WMF, GoranSMilovanovic, TheDragonFire, QZanden, LawExplorer, Iniquity, _jensen, Wikidata-bugs, aude, SPQRobin, Ricordisamoa, Arrbee, KartikMistry, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T213571: Ignore babel box the user has set to knowing at level 0 on Commons (and so have different behaviour to Wikidata)

2019-01-18 Thread AlexisJazz
AlexisJazz added a comment.

In T213571#4879390, @Jdforrester-WMF wrote:

In T213571#4875391, @AlexisJazz wrote:
@Jdforrester-WMF According to meta, level 0 doesn't understand the language at all. Level 1 can only read. Only level 2 and up are capable or writing in a language. So input fields (which require writing) should only be presented to those who consider themselves level 2 and up.


I appreciate that that random page on Meta that I'd never seen before says that, and made you think that adding dozens of -0 as a talisman to scare off users who speak those languages was a supported way to use the Babel extension, but it isn't and it wasn't.

I would very strongly recommend that you delete the mess of -0 boxes on your user page that mostly highlight your account to people that speak those languages (and disrupt your experience on Meta, with language links on the sides of articles on Wikipedia etc., on Wikidata, and now on Commons).


I would very strongly recommend to make language configuration a preference, which it should have been in the first place. https://meta.wikimedia.org/wiki/User:Alexis_Jazz is not https://meta.wikimedia.org/wiki/Special:Preferences, it never was and it shouldn't be. If that would be done, I could make however much of a mess of my user page as I want. Wiki shouldn't break because I make a mess on my user page.TASK DETAILhttps://phabricator.wikimedia.org/T213571EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AlexisJazzCc: Nikerabbit, Roy17, Nemo_bis, Legoktm, Multichill, Lydia_Pintscher, Jdforrester-WMF, AlexisJazz, Aklapper, Keegan, Jd3main, Nandana, Lahi, Gq86, Ramsey-WMF, GoranSMilovanovic, TheDragonFire, QZanden, LawExplorer, Iniquity, _jensen, Wikidata-bugs, aude, SPQRobin, Ricordisamoa, Arrbee, KartikMistry, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T214037: style: breakpoint md and up should show label, desc, aliases in one line

2019-01-18 Thread gerritbot
gerritbot added a comment.
Change 485155 merged by jenkins-bot:
[wikibase/termbox@master] Prevent unwanted wrapping of flex elements

https://gerrit.wikimedia.org/r/485155TASK DETAILhttps://phabricator.wikimedia.org/T214037EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jakob_WMDE, gerritbotCc: gerritbot, Jakob_WMDE, Aklapper, Pablo-WMDE, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T206840: [Bug] Suggestion to create Lexeme when not found in search points to the wrong link

2019-01-18 Thread matej_suchanek
matej_suchanek closed this task as "Resolved".matej_suchanek claimed this task.matej_suchanek added a comment.
Also for "p:property".TASK DETAILhttps://phabricator.wikimedia.org/T206840EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: matej_suchanekCc: matej_suchanek, Greta_Doci_WMDE, Lydia_Pintscher, Lea_Lacroix_WMDE, Nandana, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T210260: Stretch in docker registry forces ascii encoding

2019-01-18 Thread Ladsgroup
Ladsgroup moved this task from Untriaged to Monitor on the Scoring-platform-team board.Ladsgroup added a comment.

In T210260#4823617, @hashar wrote:
@Ladsgroup if you retry blubber for wikilabs, you should no more encounter the error. And I don't think you would need to set PYTHONUTF8=1 nor PYTHONIOENCODING: utf-8.


Yup, it works for me. Thanks!TASK DETAILhttps://phabricator.wikimedia.org/T210260WORKBOARDhttps://phabricator.wikimedia.org/project/board/1901/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: akosiaris, LadsgroupCc: gerritbot, LarsWirzenius, dduvall, hashar, akosiaris, Aklapper, Ladsgroup, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Vacio, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, Liudvikas, notconfusing, thcipriani, mobrovac, Wikidata-bugs, aude, Alchimista, Addshore, Mbch331, Jay8g, greg___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T204488: Wikibase\MediaInfo\DataModel\MediaInfo must implement method `clear`

2019-01-18 Thread Addshore
Addshore added a comment.
So, the situation here changed and datamodel changed to avoid the breaking change.
MediaInfo now uses 9.x, but the MediaInfo entity does have a clear method, (that may not be used?), and also the entity does not implement ClearableEntity.

Either:


The clear method should be removed if it is not used.
MediaInfo entity should implement the ClearableEntity interface.
TASK DETAILhttps://phabricator.wikimedia.org/T204488EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Addshore, gerritbot, Aklapper, matthiasmullie, Eladio.15, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, V4switch, LawExplorer, _jensen, Wong128hk, Wikidata-bugs, aude, Fabrice_Florin, Matanya, Mbch331, Legoktm___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T181057: Make the Pattypan upload tool for Wikimedia Commons ready to work with Structured Commons as well

2019-01-18 Thread JeanFred
JeanFred added a comment.
I filed https://github.com/yarl/pattypan/issues/92 specifically to track File captions :)TASK DETAILhttps://phabricator.wikimedia.org/T181057EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Yarl, JeanFredCc: JeanFred, Abbe98, Abit, Aklapper, SandraF_WMF, Nandana, JKSTNK, Lahi, PDrouin-WMF, Gq86, E1presidente, Ramsey-WMF, Cparle, Anooprao, GoranSMilovanovic, QZanden, Tramullas, Acer, LawExplorer, Silverfish, _jensen, Susannaanas, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T204488: Wikibase\MediaInfo\DataModel\MediaInfo must implement method `clear`

2019-01-18 Thread Addshore
Addshore removed a project: Patch-For-Review.Addshore updated the task description. (Show Details)
CHANGES TO TASK DESCRIPTION**Outdated**

MediaInfo is currently on wikibase/data-model 7.3.0, but if/when we upgrade, we're going to have to implement `function clear`, which is now part of `interface EntityDocument` (or `interface Clearable`, actually)...TASK DETAILhttps://phabricator.wikimedia.org/T204488EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: gerritbot, Aklapper, matthiasmullie, Eladio.15, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, V4switch, LawExplorer, _jensen, Wong128hk, Wikidata-bugs, aude, Fabrice_Florin, Matanya, Mbch331, Legoktm, CucyNoiD, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Baloch007, Darkminds3113, Bsandipan, Lordiis, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, Lewizho99, Maathavan___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T214032: query service should send a retry-after header with a 429 response

2019-01-18 Thread Addshore
Addshore added a comment.
Yup, that code looks like it is definitely sent.

I guess we need to look at both the nginx proxy and the varnish proxy?
#traffic might know the answer for the varnish layer.

Can we get a reproducing case?

We could try hammering the endpoint?
There is a log line including response headers from the WDQS referenced in T204267#4887839. That is what it sees.TASK DETAILhttps://phabricator.wikimedia.org/T214032EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Smalyshev, Aklapper, Addshore, Nandana, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _jensen, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T214161: wikidata-dev wikidata-lexeme instance has been found to be running an unsupported operating system

2019-01-18 Thread Krenair
Krenair closed this task as a duplicate of T213913: Retire or update wikidata-dev/wikibase-lexeme trusty cloud VPS instance.
TASK DETAILhttps://phabricator.wikimedia.org/T214161EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: KrenairCc: MoritzMuehlenhoff, WMDE-leszek, Aklapper, Addshore, Krenair, Nandana, JKSTNK, Fheredia, AndyTan, Zylc, 1978Gage2001, Lahi, aborrero, Gq86, GoranSMilovanovic, Chicocvenancio, QZanden, Tbscho, LawExplorer, JJMC89, _jensen, srodlund, Wikidata-bugs, aude, Gryllida, scfc, Mbch331, Jay8g, bd808, chasemp___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T214161: wikidata-dev wikidata-lexeme instance has been found to be running an unsupported operating system

2019-01-18 Thread Krenair
Krenair added a comment.
yeah, this is a dupe, just missed due to lack of #cloud-vps-ubuntu-deprecation tagTASK DETAILhttps://phabricator.wikimedia.org/T214161EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: KrenairCc: MoritzMuehlenhoff, WMDE-leszek, Aklapper, Addshore, Krenair, Nandana, JKSTNK, Fheredia, AndyTan, Zylc, 1978Gage2001, Lahi, aborrero, Gq86, GoranSMilovanovic, Chicocvenancio, QZanden, Tbscho, LawExplorer, JJMC89, _jensen, srodlund, Wikidata-bugs, aude, Gryllida, scfc, Mbch331, Jay8g, bd808, chasemp___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Merged] T213913: Retire or update wikidata-dev/wikibase-lexeme trusty cloud VPS instance

2019-01-18 Thread Krenair
Krenair added subscribers: Krenair, MoritzMuehlenhoff.Krenair merged a task: T214161: wikidata-dev wikidata-lexeme instance has been found to be running an unsupported operating system.
TASK DETAILhttps://phabricator.wikimedia.org/T213913EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: WMDE-leszek, KrenairCc: MoritzMuehlenhoff, Krenair, Lydia_Pintscher, Aklapper, Tarrow, Addshore, WMDE-leszek, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, Jonas, Wikidata-bugs, aude, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T213913: Retire or update wikidata-dev/wikibase-lexeme trusty cloud VPS instance

2019-01-18 Thread WMDE-leszek
WMDE-leszek closed this task as "Resolved".WMDE-leszek triaged this task as "Normal" priority.WMDE-leszek claimed this task.WMDE-leszek added a comment.
Instanced removed.TASK DETAILhttps://phabricator.wikimedia.org/T213913EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: WMDE-leszekCc: Lydia_Pintscher, Aklapper, Tarrow, Addshore, WMDE-leszek, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, Jonas, Wikidata-bugs, aude, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T214161: wikidata-dev wikidata-lexeme instance has been found to be running an unsupported operating system

2019-01-18 Thread WMDE-leszek
WMDE-leszek added a comment.
Per decision in T213913, removing the instance should solve the running the outdated OS problem,TASK DETAILhttps://phabricator.wikimedia.org/T214161EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: WMDE-leszekCc: MoritzMuehlenhoff, WMDE-leszek, Aklapper, Addshore, Krenair, Nandana, JKSTNK, Fheredia, AndyTan, Zylc, 1978Gage2001, Lahi, aborrero, Gq86, GoranSMilovanovic, Chicocvenancio, QZanden, Tbscho, LawExplorer, JJMC89, _jensen, srodlund, Wikidata-bugs, aude, Gryllida, scfc, Mbch331, Jay8g, bd808, chasemp___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T204264: Add displaying/editing statements to File page

2019-01-18 Thread gerritbot
gerritbot added a project: Patch-For-Review.
TASK DETAILhttps://phabricator.wikimedia.org/T204264EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Cparle, gerritbotCc: gerritbot, Jdforrester-WMF, Ramsey-WMF, Aklapper, Cparle, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, V4switch, LawExplorer, Lewizho99, Maathavan, _jensen, Wong128hk, Wikidata-bugs, matthiasmullie, aude, Fabrice_Florin, Matanya, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T204264: Add displaying/editing statements to File page

2019-01-18 Thread gerritbot
gerritbot added a comment.
Change 485183 had a related patch set uploaded (by Cparle; owner: Cparle):
[mediawiki/extensions/WikibaseMediaInfo@master] Edit depicts statements on File page

https://gerrit.wikimedia.org/r/485183TASK DETAILhttps://phabricator.wikimedia.org/T204264EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Cparle, gerritbotCc: gerritbot, Jdforrester-WMF, Ramsey-WMF, Aklapper, Cparle, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, V4switch, LawExplorer, _jensen, Wong128hk, Wikidata-bugs, matthiasmullie, aude, Fabrice_Florin, Matanya, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T214161: wikidata-dev wikidata-lexeme instance has been found to be running an unsupported operating system

2019-01-18 Thread Krenair
Krenair created this task.Krenair added projects: Cloud-VPS (Ubuntu Trusty Deprecation), Wikidata.Restricted Application added a subscriber: Aklapper.
TASK DESCRIPTIONUbuntu Trusty is no longer available in Cloud VPS since Nov 2017 for new instances. The migration path is to replace such instances with Debian Stretch (or possibly Jessie), no new Ubuntu versions are supported for Wikimedia use. Around April 2019 Ubuntu Trusty support will be removed, and with it any accidental support for other versions of Ubuntu such as Xenial or Bionic.

The following VM has been detected as having been in-place-upgraded to an unsupported Ubuntu version instead of being replaced with Debian:

wikidata-lexeme.wikidata-dev.eqiad.wmflabs

Listed administrators are:

Aaron Schulz
Addshore
Adrian Heine
Andrew Bogott
Ataherivand
BryanDavis
Cparle
Daniel Kinzler
Hoo man
Jakob
Jeroen De Dauw
Ladsgroup
Lucas Werkmeister (WMDE)
Madhuvishy
Magnus Manske
MarkTraceur
Matthias Geisler
Matthias Mullie
Michael Große
Pablo Grass (WMDE)
Raz Shuty
Reedy
Smalyshev
Tarrow
Thiemo Kreuz (WMDE)
Tim Starling
Tobias Gritschacher
WMDE-leszek

More info in openstack browser: https://tools.wmflabs.org/openstack-browser/project/wikidata-devTASK DETAILhttps://phabricator.wikimedia.org/T214161WORKBOARDhttps://phabricator.wikimedia.org/project/board/3693/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: KrenairCc: Aklapper, Addshore, Krenair, Nandana, JKSTNK, Fheredia, AndyTan, Zylc, 1978Gage2001, Lahi, aborrero, Gq86, GoranSMilovanovic, Chicocvenancio, QZanden, Tbscho, LawExplorer, JJMC89, _jensen, srodlund, Wikidata-bugs, aude, Gryllida, scfc, Mbch331, Jay8g, bd808, chasemp___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T209931: Glosses: display the language name also in edit mode

2019-01-18 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.33-notes (1.33.0-wmf.14; 2019-01-22).
TASK DETAILhttps://phabricator.wikimedia.org/T209931EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Tarrow, ReleaseTaggerBotCc: Addshore, Tarrow, Liuxinyu970226, gerritbot, Lea_Lacroix_WMDE, Lydia_Pintscher, CucyNoiD, Nandana, NebulousIris, Mringgaard, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, Jonas, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T209931: Glosses: display the language name also in edit mode

2019-01-18 Thread gerritbot
gerritbot added a comment.
Change 477790 merged by jenkins-bot:
[mediawiki/extensions/WikibaseLexeme@master] Introduce LanguageSelectorWrapper Vue Widget

https://gerrit.wikimedia.org/r/477790TASK DETAILhttps://phabricator.wikimedia.org/T209931EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Tarrow, gerritbotCc: Addshore, Tarrow, Liuxinyu970226, gerritbot, Lea_Lacroix_WMDE, Lydia_Pintscher, CucyNoiD, Nandana, NebulousIris, Mringgaard, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, Jonas, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T214087: "I miss you" dysfunctions with the French Wiktionary

2019-01-18 Thread GoranSMilovanovic
GoranSMilovanovic added projects: WMDE-Analytics-Engineering, User-GoranSMilovanovic.
TASK DETAILhttps://phabricator.wikimedia.org/T214087EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: GoranSMilovanovicCc: Lea_Lacroix_WMDE, Lydia_Pintscher, GoranSMilovanovic, Aklapper, Pamputt, Nandana, Lahi, Gq86, Cinemantique, QZanden, LawExplorer, _jensen, Thibaut120094, jberkel, Psychoslave, Wikidata-bugs, aude, GPHemsley, Shizhao, Nemo_bis, Darkdadaah, Mbch331, Ltrlg, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T214087: "I miss you" dysfunctions with the French Wiktionary

2019-01-18 Thread GoranSMilovanovic
GoranSMilovanovic claimed this task.
TASK DETAILhttps://phabricator.wikimedia.org/T214087EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: GoranSMilovanovicCc: Lea_Lacroix_WMDE, Lydia_Pintscher, GoranSMilovanovic, Aklapper, Pamputt, Nandana, Lahi, Gq86, Cinemantique, QZanden, LawExplorer, _jensen, Thibaut120094, jberkel, Psychoslave, Wikidata-bugs, aude, GPHemsley, Shizhao, Nemo_bis, Darkdadaah, Mbch331, Ltrlg, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T214150: Change the "Observe" URI of diffusion mirror wikibase-termbox

2019-01-18 Thread WMDE-leszek
WMDE-leszek added a comment.
That was fast, thanks!TASK DETAILhttps://phabricator.wikimedia.org/T214150EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: MarcoAurelio, WMDE-leszekCc: MarcoAurelio, Matthias_Geisler_WMDE, Jakob_WMDE, Pablo-WMDE, Aklapper, Repository-Admins, WMDE-leszek, Nandana, Lahi, Gq86, GoranSMilovanovic, Gentlejack35, QZanden, LawExplorer, _jensen, MGChecker, Luke081515, Wikidata-bugs, aude, Florian, Mbch331, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T214150: Change the "Observe" URI of diffusion mirror wikibase-termbox

2019-01-18 Thread MarcoAurelio
MarcoAurelio edited projects, added Repository-Admins; removed Diffusion.MarcoAurelio moved this task from unsorted/backlog to archive on the User-MarcoAurelio board.
TASK DETAILhttps://phabricator.wikimedia.org/T214150WORKBOARDhttps://phabricator.wikimedia.org/project/board/2877/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: MarcoAurelioCc: MarcoAurelio, Matthias_Geisler_WMDE, Jakob_WMDE, Pablo-WMDE, Aklapper, Repository-Admins, WMDE-leszek, Nandana, Lahi, Gq86, GoranSMilovanovic, Gentlejack35, QZanden, LawExplorer, _jensen, MGChecker, Luke081515, Wikidata-bugs, aude, Florian, Mbch331, Krenair, Jay8g___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T214150: Change the "Observe" URI of diffusion mirror wikibase-termbox

2019-01-18 Thread MarcoAurelio
MarcoAurelio closed this task as "Resolved".MarcoAurelio claimed this task.MarcoAurelio added a comment.Restricted Application added a project: User-MarcoAurelio.
Done.TASK DETAILhttps://phabricator.wikimedia.org/T214150EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: MarcoAurelioCc: MarcoAurelio, Matthias_Geisler_WMDE, Jakob_WMDE, Pablo-WMDE, Aklapper, Repository-Admins, WMDE-leszek, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, Luke081515, Wikidata-bugs, aude, Mbch331, Jay8g, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Retitled] T214150: Change the "Observe" URI of diffusion mirror wikibase-termbox

2019-01-18 Thread WMDE-leszek
WMDE-leszek renamed this task from "Update the "Observe" URI of diffusion mirror wikibase-termbox" to "Change the "Observe" URI of diffusion mirror wikibase-termbox".
TASK DETAILhttps://phabricator.wikimedia.org/T214150EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: WMDE-leszekCc: Matthias_Geisler_WMDE, Jakob_WMDE, Pablo-WMDE, Aklapper, Repository-Admins, WMDE-leszek, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, Luke081515, Wikidata-bugs, aude, Mbch331, Jay8g, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T214150: Update the "Observe" URI of diffusion mirror wikibase-termbox

2019-01-18 Thread WMDE-leszek
WMDE-leszek created this task.WMDE-leszek added projects: Wikidata, Diffusion.Restricted Application added a subscriber: Aklapper.
TASK DESCRIPTIONWe've migrated code from github to gerrit.
Gerrit repository is: https://gerrit.wikimedia.org/r/#/admin/projects/wikibase/termbox

At WMDE we don't have permission to change the "Observe" URI, could one of Admins please do this for us?TASK DETAILhttps://phabricator.wikimedia.org/T214150EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: WMDE-leszekCc: Aklapper, Repository-Admins, WMDE-leszek, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, Luke081515, Wikidata-bugs, aude, Mbch331, Jay8g, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T213994: A Commons search user should be able to search for captions

2019-01-18 Thread Cparle
Cparle added a comment.
Captions data is injected into opening_text, and so it's searched with a normal search AFAICS

https://commons.wikimedia.org/w/index.php?search=bratach+Loch+Garmain=Special:Search=Go

Erm ... I don't actually see what the issue is here. @Abit ?TASK DETAILhttps://phabricator.wikimedia.org/T213994EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: CparleCc: Smalyshev, dcausse, Jdforrester-WMF, Aklapper, Cparle, EBernhardson, Abit, Nandana, JKSTNK, Lahi, PDrouin-WMF, Gq86, E1presidente, Ramsey-WMF, Anooprao, SandraF_WMF, GoranSMilovanovic, QZanden, EBjune, Tramullas, Acer, V4switch, LawExplorer, Silverfish, _jensen, Susannaanas, Wong128hk, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Matanya, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T211015: Measure how often users click on more languages links

2019-01-18 Thread Lea_WMDE
Lea_WMDE added a comment.
I'm surprised to see that the show count numbers are higher than the hidecount numbers, since by default users would only be able to see the "hide link". The only explanation I can come up with, is that most of the clicks originate from people who hide the termbox by default and then need to "unhide" it again, and that this number of people is higher than people who feel an urge to hide the termbox.
Or can you come up with any other explanation?TASK DETAILhttps://phabricator.wikimedia.org/T211015EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Addshore, Lea_WMDECc: Michael, Addshore, gerritbot, Lydia_Pintscher, D3r1ck01, Aklapper, WMDE-leszek, Lea_WMDE, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, Jonas, Wikidata-bugs, aude, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T210495: Number of Senses is decreasing on ListeriaBot's report

2019-01-18 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE added a comment.
@KaMan Can you try again and let us know if you still encounter issues? :)TASK DETAILhttps://phabricator.wikimedia.org/T210495EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Lea_Lacroix_WMDECc: Liuxinyu970226, Smalyshev, ArthurPSmith, KaMan, Lucas_Werkmeister_WMDE, Addshore, Ladsgroup, Aklapper, Lydia_Pintscher, Cyberpower678, Lea_Lacroix_WMDE, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _jensen, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unassigned] T214087: "I miss you" dysfunctions with the French Wiktionary

2019-01-18 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE removed Lea_Lacroix_WMDE as the assignee of this task.Lea_Lacroix_WMDE added a comment.
Thanks @Pamputt for the report.

@GoranSMilovanovic, could you have a look and identify what's wrong? :)TASK DETAILhttps://phabricator.wikimedia.org/T214087EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Lea_Lacroix_WMDECc: Lea_Lacroix_WMDE, Lydia_Pintscher, GoranSMilovanovic, Aklapper, Pamputt, Nandana, Lahi, Gq86, Cinemantique, QZanden, LawExplorer, _jensen, Thibaut120094, jberkel, Psychoslave, Wikidata-bugs, aude, GPHemsley, Shizhao, Nemo_bis, Darkdadaah, Mbch331, Ltrlg, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T214037: style: breakpoint md and up should show label, desc, aliases in one line

2019-01-18 Thread gerritbot
gerritbot added a project: Patch-For-Review.
TASK DETAILhttps://phabricator.wikimedia.org/T214037EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jakob_WMDE, gerritbotCc: gerritbot, Jakob_WMDE, Aklapper, Pablo-WMDE, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T214037: style: breakpoint md and up should show label, desc, aliases in one line

2019-01-18 Thread gerritbot
gerritbot added a comment.
Change 485155 had a related patch set uploaded (by WMDE-leszek; owner: Jakob):
[wikibase/termbox@master] Prevent unwanted wrapping of flex elements

https://gerrit.wikimedia.org/r/485155TASK DETAILhttps://phabricator.wikimedia.org/T214037EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jakob_WMDE, gerritbotCc: gerritbot, Jakob_WMDE, Aklapper, Pablo-WMDE, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs