[Wikidata-bugs] [Maniphest] [Commented On] T219123: Run Migration of item terms

2019-11-22 Thread Ladsgroup
Ladsgroup added a comment.


  We just passed Q43Mio now.

TASK DETAIL
  https://phabricator.wikimedia.org/T219123

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: Jdforrester-WMF, ArielGlenn, Aklapper, alaa_wmde, Iflorez, darthmon_wmde, 
DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, 
Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238729: CI failing with “Return value of MediaWikiServices::getStatsdDataFactory() must implement IBufferingStatsdDataFactory, instance of Mock_StatsdDataFa

2019-11-22 Thread Jdforrester-WMF
Jdforrester-WMF added a comment.


  Thank you for fixing this!

TASK DETAIL
  https://phabricator.wikimedia.org/T238729

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE, Jdforrester-WMF
Cc: Ladsgroup, Reedy, Jdforrester-WMF, Mooeypoo, WMDE-leszek, Liuxinyu970226, 
Lucas_Werkmeister_WMDE, Aklapper, Iflorez, darthmon_wmde, alaa_wmde, DannyS712, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331, 
Rxy, Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T238878: Data about how many file pages on Commons contain at least one structured data element

2019-11-22 Thread mpopov
mpopov added subscribers: Mayakp.wiki, daniel, Ladsgroup.
mpopov added a comment.


  I was looking at populateEntityUsage.php 

 (Maintenance script for populating wbc_entity_usage 
 based on the 
page_props  table.) So 
if the entity usage table is populated from page props table, it partially 
explains why the statements for File:Póvoa de Varzim -i---i- (25379025808).jpg 

 aren't showing up. They're not in the page props table:
  
  F31133752: Screen Shot 2019-11-22 at 4.30.41 PM.png 

  
SELECT *
FROM page_props AS pp
LEFT JOIN page ON pp.pp_page = page.page_id
WHERE pp_propname = 'wikibase_item'
--  AND page_namespace = 6 -- returns 0 results
LIMIT 100
  
  Only shows that basically only ns:0 (mostly pages listing categories) and 
ns:14 have the `wikibase_item` page property.
  
  @daniel @Ladsgroup: hi o/ I'm pinging you because you're listed as the 
authors on a bunch of the relevant Wikibase code (including that entity usage 
maintenance script). Can you please help point us at somewhere, anywhere that 
we can use to figure out how many files on Commons have had labels, depicts, 
and other statements added?
  
  A different strategy is to use the revision comments to look for how many 
ns:6 pages have had revisions where the comment included `wbset`, 
for example:
  
SELECT
  page_title, page_namespace, rev_id, IF(rev_comment = '', comment_text, 
rev_comment) AS revision_comment
FROM revision rev
LEFT JOIN page ON rev.rev_page = page.page_id
LEFT JOIN revision_comment_temp rct ON rev.rev_id = rct.revcomment_rev
LEFT JOIN `comment` ON rct.revcomment_comment_id = `comment`.comment_id
WHERE page_namespace = 6
  AND rev_page = 68860692
  AND (comment_text RLIKE 'wbset(claim|label)' OR rev_comment RLIKE 
'wbset(claim|label)')
  
  F31133865: Screen Shot 2019-11-22 at 5.00.30 PM.png 

  
  Which only looks at additions, not changes/removals but we can fix that. 
Anyways, using this method we can count how many files have had structured data 
added to them as of the end of October 2019 (using Analytics Engineering's 
MediaWiki History in Data Lake 
:
  
WITH structured_data_additions AS (
SELECT
page_id,
SUM(IF(event_comment RLIKE 'wbsetclaim', 1, 0)) > 0 AS 
had_claim_added,
SUM(IF(event_comment RLIKE 'wbsetlabel', 1, 0)) > 0 AS 
had_label_added
FROM mediawiki_history
WHERE snapshot = '2019-10'
  AND wiki_db = 'commonswiki'
  AND event_entity = 'revision'
  AND page_namespace = 6
  AND event_comment RLIKE 'wbset(label|claim)'
  AND NOT revision_is_identity_reverted
GROUP BY page_id
)
SELECT
CASE
  WHEN had_claim_added AND had_label_added THEN 'statement(s) and 
label(s)'
  WHEN had_claim_added AND NOT had_label_added THEN 'just statement(s)'
  WHEN had_label_added AND NOT had_claim_added THEN 'just label(s)'
END AS structured_data_added,
COUNT(1) AS n_files
FROM structured_data_additions
GROUP BY
CASE
WHEN had_claim_added AND had_label_added THEN 'statement(s) and 
label(s)'
WHEN had_claim_added AND NOT had_label_added THEN 'just statement(s)'
WHEN had_label_added AND NOT had_claim_added THEN 'just label(s)'
END;
  
  @Abit @Ramsey-WMF @Mayakp.wiki: this will be of interest to you. The total 
number of files which have had structured data //added// to them (and not 
reverted) before November 2019 is… 1,401,757. This doesn't include claim/label 
//removals//, so just a heads up there.
  
  | structured_data_added | n_files   |
  | - | - |
  | just label(s) | 1 112 577 |
  | just statement(s) | 163 200   |
  | statement(s) and label(s) | 125 980   |
  |
  
  For a more up-to-date count, here's an equivalent query for the MW replica in 
MariaDB, but it doesn't include revert status which is provided in the 
mediawiki_history data:
  
SELECT
  CASE WHEN had_claim_added AND had_label_added THEN 'statement(s) and 
label(s)'
   WHEN had_claim_added AND NOT had_label_added THEN 'just statement(s)'
   WHEN had_label_added AND NOT had_claim_added THEN 'just label(s)'
END AS structured_data_additions,
  COUNT(1) AS n_files
FROM (
  SELECT
rev_page,
SUM(IF(comment_text RLIKE 'wbsetclaim' OR rev_comment 

[Wikidata-bugs] [Maniphest] [Commented On] T238959: Make TextPassDumper work with 0.11 dump schema

2019-11-22 Thread daniel
daniel added a comment.


  @CCicalese_WMF I overlooks this. We use this mode in production, but nothing 
else does. The tests for this class use the default schema, so they'll pass as 
long as the default is 0.10. This is unfortunate, since it means that support 
for the 0.11 schema output is still incomplete and can't go into 1.34 as the 
default. Unless we fix this fast.

TASK DETAIL
  https://phabricator.wikimedia.org/T238959

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: daniel
Cc: CCicalese_WMF, Aklapper, Fjalapeno, ArielGlenn, gerritbot, daniel, 
darthmon_wmde, WDoranWMF, holger.knust, EvanProdromou, DannyS712, Nandana, 
Lahi, Gq86, Ramsey-WMF, GoranSMilovanovic, QZanden, LawExplorer, JJMC89, 
_jensen, rosalieper, Agabi10, Scott_WUaS, Pchelolo, Wikidata-bugs, aude, 
Jdforrester-WMF, Mbch331, Ltrlg
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Reopened] T174031: MCR: Include all slots in XML dumps

2019-11-22 Thread daniel
daniel reopened this task as "Open".
daniel added a comment.


  Re-opening due to T238959 

TASK DETAIL
  https://phabricator.wikimedia.org/T174031

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: daniel
Cc: gerritbot, ArielGlenn, Fjalapeno, Aklapper, daniel, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Ramsey-WMF, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, JJMC89, 
Maathavan, _jensen, rosalieper, Agabi10, Scott_WUaS, Wikidata-bugs, aude, 
Jdforrester-WMF, Mbch331, Ltrlg
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T238959: Make TextPassDumper work with 0.11 dump schema

2019-11-22 Thread daniel
daniel created this task.
daniel added projects: Wikidata, Structured Data Engineering, 
Multi-Content-Revisions (New Features), CPT Initiatives (MCR), 
Structured-Data-Backlog, Core Platform Team.

TASK DESCRIPTION
  TextPassDumper does a streaming read of an XML document and at the same time 
emits another XML document. The streaming read does not yet support the 0.11 
dump format.

TASK DETAIL
  https://phabricator.wikimedia.org/T238959

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: daniel
Cc: CCicalese_WMF, Aklapper, Fjalapeno, ArielGlenn, gerritbot, daniel, 
darthmon_wmde, WDoranWMF, holger.knust, EvanProdromou, DannyS712, Nandana, 
Lahi, Gq86, Ramsey-WMF, GoranSMilovanovic, QZanden, LawExplorer, JJMC89, 
_jensen, rosalieper, Agabi10, Scott_WUaS, Pchelolo, Wikidata-bugs, aude, 
Jdforrester-WMF, Mbch331, Ltrlg
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T237899: Wikidata item ID changes caused by merges do not update entities on Structured data on Commons

2019-11-22 Thread Tacsipacsi
Tacsipacsi added a comment.


  Links to renamed pages aren’t updated by the software, either (which comes 
handy when renaming is necessary due to a disambiguous title). This is not the 
case when merging Wikibase items, of course.

TASK DETAIL
  https://phabricator.wikimedia.org/T237899

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Tacsipacsi
Cc: Tacsipacsi, Aklapper, Jarekt, darthmon_wmde, DannyS712, Nandana, JKSTNK, 
Lahi, PDrouin-WMF, Gq86, E1presidente, Ramsey-WMF, Cparle, Anooprao, 
SandraF_WMF, GoranSMilovanovic, QZanden, Tramullas, Acer, LawExplorer, Salgo60, 
Silverfish, _jensen, rosalieper, Scott_WUaS, 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] [Closed] T183487: MCR schema migration stage 3: stop using legacy fields

2019-11-22 Thread CCicalese_WMF
CCicalese_WMF moved this task from In Progress to Done! on the Core Platform 
Team Workboards (User Stories) board.
CCicalese_WMF closed this task as "Resolved".

TASK DETAIL
  https://phabricator.wikimedia.org/T183487

WORKBOARD
  https://phabricator.wikimedia.org/project/board/4220/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: CCicalese_WMF
Cc: gerritbot, Tgr, Jdforrester-WMF, Anomie, Addshore, aude, Aklapper, daniel, 
darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, JJMC89, _jensen, rosalieper, Agabi10, Scott_WUaS, Wikidata-bugs, 
Mbch331, Ltrlg
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T183490: MCR schema migration stage 4: Migrate External Store URLs (wmf production)

2019-11-22 Thread CCicalese_WMF
CCicalese_WMF closed subtask T183487: MCR schema migration stage 3: stop using 
legacy fields as Resolved.

TASK DETAIL
  https://phabricator.wikimedia.org/T183490

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: CCicalese_WMF
Cc: ArielGlenn, jcrespo, Jdforrester-WMF, Anomie, Addshore, aude, Aklapper, 
daniel, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, JJMC89, _jensen, rosalieper, Agabi10, Scott_WUaS, 
Wikidata-bugs, Mbch331, Ltrlg
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T237899: Wikidata item ID changes caused by merges do not update entities on Structured data on Commons

2019-11-22 Thread Jarekt
Jarekt added a comment.


  I did not realized that we have volunteer run bot to fix redirects. I thought 
that was a task of internal wikidata software, the way page renames are 
automatically updated by wikimedia software (I assume?). Perhaps wikidata 
software should take over those tasks which will help with proper 
implementation of un-merge capabilities  as discussed at T237262 
.

TASK DETAIL
  https://phabricator.wikimedia.org/T237899

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Jarekt
Cc: Tacsipacsi, Aklapper, Jarekt, darthmon_wmde, DannyS712, Nandana, JKSTNK, 
Lahi, PDrouin-WMF, Gq86, E1presidente, Ramsey-WMF, Cparle, Anooprao, 
SandraF_WMF, GoranSMilovanovic, QZanden, Tramullas, Acer, LawExplorer, Salgo60, 
Silverfish, _jensen, rosalieper, Scott_WUaS, 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] [Commented On] T238878: Data about how many file pages on Commons contain at least one structured data element

2019-11-22 Thread mpopov
mpopov added a comment.


  Here are the missing screenshots:
  
  In T238878#5683048 , 
@Nuria wrote:
  
  > The work done by @mpopov  (if you are so kind @mpopov 
  > please upload your screenshots)
  > The wbc_entity_usage table is supposed to hold info on Wikidata usage for 
the pages For example, here's a random file I added some structured data to a 
few days ago: 
https://commons.wikimedia.org/wiki/File:P%C3%B3voa_de_Varzim_-i---i-_(25379025808).jpg
  > When you look for it the commonswiki replica, it has a page ID of 68860692. 
Looking for it in the wbc_entity_usage table we only see that it has a caption 
in English, which I added at basically the same time as several statements:
  
  F31133627: 1.png 
  
  The structured data is missing, despite being added //before// the caption.
  
  > eu_aspect column does have other values like "O" (statements) and "D" (not 
documented, but from a brief investigation looks like it's specifically for 
linking categories on Commons to Wikidata Q-items). There are some records of 
files with "O" aspects (as the MW page notes, it can refer to a variety to 
entity usages but typically it's statements) but then it gets weird because the 
language of the label isn't recorded and there's a bunch of seemingly 
unnecessary info? Take for example the MediaWiki DB data for 
https://commons.wikimedia.org/wiki/File:Jodrell_Bank_Mark_II_5.jpg
  
  F31133631: 2.png 
  
  F31133634: unnamed.png 
  
  > Woof! That's…not great. So, uh, clearly there's something funky going on 
with the Wikibase client extension? Or maybe that's data that was recorded by 
an earlier version of the extension before it knew to append language codes to 
labels? I don't know enough about the nitty-gritty there, so these are just 
vaguely educated guesses.

TASK DETAIL
  https://phabricator.wikimedia.org/T238878

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: mpopov
Cc: matthiasmullie, Addshore, kzimmerman, mpopov, Ramsey-WMF, Abit, Nuria, 
4748kitoko, darthmon_wmde, DannyS712, Nandana, JKSTNK, Akovalyov, Lahi, 
PDrouin-WMF, Gq86, E1presidente, Cparle, Anooprao, SandraF_WMF, 
GoranSMilovanovic, QZanden, Tramullas, Acer, LawExplorer, Salgo60, Silverfish, 
_jensen, rosalieper, Scott_WUaS, Susannaanas, JAllemandou, Jane023, 
terrrydactyl, Wikidata-bugs, Base, aude, Ricordisamoa, Wesalius, 
Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T174031: MCR: Include all slots in XML dumps

2019-11-22 Thread gerritbot
gerritbot added a comment.
Restricted Application added a project: Structured-Data-Backlog.


  Change 552565 had a related patch set uploaded (by Daniel Kinzler; owner: 
Daniel Kinzler):
  [operations/mediawiki-config@master] Ping XML dump schema version at 0.10 for 
now.
  
  https://gerrit.wikimedia.org/r/552565

TASK DETAIL
  https://phabricator.wikimedia.org/T174031

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: daniel, gerritbot
Cc: gerritbot, ArielGlenn, Fjalapeno, Aklapper, daniel, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Ramsey-WMF, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, JJMC89, 
Maathavan, _jensen, rosalieper, Agabi10, Scott_WUaS, Wikidata-bugs, aude, 
Jdforrester-WMF, Mbch331, Ltrlg
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238878: Data about how many file pages on Commons contain at least one structured data element

2019-11-22 Thread Nuria
Nuria added a comment.


  So, per my comment above, I think the number of items is actually smaller 
than the one @Addshore has computed but more wise folks can correct me if I am 
wrong.

TASK DETAIL
  https://phabricator.wikimedia.org/T238878

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Nuria
Cc: matthiasmullie, Addshore, kzimmerman, mpopov, Ramsey-WMF, Abit, Nuria, 
4748kitoko, darthmon_wmde, DannyS712, Nandana, JKSTNK, Akovalyov, Lahi, 
PDrouin-WMF, Gq86, E1presidente, Cparle, Anooprao, SandraF_WMF, 
GoranSMilovanovic, QZanden, Tramullas, Acer, LawExplorer, Salgo60, Silverfish, 
_jensen, rosalieper, Scott_WUaS, Susannaanas, JAllemandou, Jane023, 
terrrydactyl, Wikidata-bugs, Base, aude, Ricordisamoa, Wesalius, 
Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238443: Add P180 (Depicts) and P6243 (Digital representation of) structured data to Commons files representing artworks by Jakob Smits

2019-11-22 Thread Spinster
Spinster added a comment.


  And thanks to the Minefield tool, I have successfully added structured data 
to the files in that category now! \o/
  
  https://tools.wmflabs.org/quickstatements/#/batch/22170
  https://tools.wmflabs.org/quickstatements/#/batch/22157

TASK DETAIL
  https://phabricator.wikimedia.org/T238443

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Spinster
Cc: Husky, SandraF_WMF, Salgo60, Magnus, LucasWerkmeister, Spinster, MxLucy, 
Dat_doris, Phofx, darthmon_wmde, DannyS712, Nandana, JKSTNK, Lahi, PDrouin-WMF, 
Gq86, E1presidente, Ramsey-WMF, Cparle, Anooprao, GoranSMilovanovic, QZanden, 
Tramullas, Acer, LawExplorer, Silverfish, _jensen, rosalieper, Scott_WUaS, 
Susannaanas, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Ricordisamoa, 
Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331, 
Ainali
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T238045: Improve parallelism in WDQS updater

2019-11-22 Thread gerritbot
gerritbot added a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T238045

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: Gehel, Aklapper, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, 
Liugev6, QZanden, EBjune, merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, Smalyshev, 
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] [Commented On] T238045: Improve parallelism in WDQS updater

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552262 had a related patch set uploaded (by DCausse; owner: DCausse):
  [wikidata/query/rdf@master] Add more parallelism to the updater
  
  https://gerrit.wikimedia.org/r/552262

TASK DETAIL
  https://phabricator.wikimedia.org/T238045

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: Gehel, Aklapper, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Smalyshev, 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] T238229: WDQS is having high update lag for the last week

2019-11-22 Thread Addshore
Addshore added a comment.


  T221774  was done as part 1 of 
adding query service lag to max lag (already deployed)
  T238751  continues work on this 
area meaning the max lagged pool server will be used instead of the current 
median.
  Should be able to get that deployed next week.

TASK DETAIL
  https://phabricator.wikimedia.org/T238229

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore
Cc: Tarrow, Addshore, Envlh, Alicia_Fagerving_WMSE, Simon_Villeneuve, Ghuron, 
Lucas_Werkmeister_WMDE, Jheald, Fnielsen, Mahir256, Gehel, Aklapper, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, WSH1906, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, Smalyshev, 
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] T238751: Only generate maxlag from pooled query service servers.

2019-11-22 Thread gerritbot
gerritbot added a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T238751

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore, gerritbot
Cc: Joe, Addshore, Aklapper, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T221774: Add Wikidata query service lag to Wikidata maxlag

2019-11-22 Thread Addshore
Addshore moved this task from Test (Verification) to Done on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Addshore closed this task as "Resolved".
Addshore added a comment.


  Verified as working.
  Work continues on T238751 

TASK DETAIL
  https://phabricator.wikimedia.org/T221774

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore
Cc: Envlh, Gstupp, Sebotic, Tagishsimon, Liridon, Bugreporter, Magnus, Tpt, 
Pintoch, Lydia_Pintscher, Matthias_Geisler_WMDE, Simon_Villeneuve, 
Lea_Lacroix_WMDE, Tarrow, alaa_wmde, Andrawaag, Multichill, Ladsgroup, 
Smalyshev, fgiunchedi, hoo, Daniel_Mietchen, MisterSynergy, Addshore, 
Sjoerddebruin, Aklapper, Lucas_Werkmeister_WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Chicocvenancio, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, WSH1906, 
Lewizho99, Volans, Maathavan, _jensen, rosalieper, Scott_WUaS, 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] T238751: Only generate maxlag from pooled query service servers.

2019-11-22 Thread Addshore
Addshore edited projects, added Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞); removed Wikidata-Campsite.

TASK DETAIL
  https://phabricator.wikimedia.org/T238751

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore
Cc: Joe, Addshore, Aklapper, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, Iflorez, darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, 
DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, 
Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238751: Only generate maxlag from pooled query service servers.

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552544 had a related patch set uploaded (by Addshore; owner: Addshore):
  [mediawiki/extensions/Wikidata.org@master] Only generate QS maxlag for pooled 
servers
  
  https://gerrit.wikimedia.org/r/552544

TASK DETAIL
  https://phabricator.wikimedia.org/T238751

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore, gerritbot
Cc: Joe, Addshore, Aklapper, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T222193: Configure query service lag for Wikidata maxlag

2019-11-22 Thread Addshore
Addshore closed subtask T221774: Add Wikidata query service lag to Wikidata 
maxlag as Resolved.

TASK DETAIL
  https://phabricator.wikimedia.org/T222193

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore
Cc: alaa_wmde, Michael, Aklapper, Sjoerddebruin, Addshore, MisterSynergy, 
Daniel_Mietchen, Lucas_Werkmeister_WMDE, darthmon_wmde, DannyS712, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, Smalyshev, Wikidata-bugs, 
Jdouglas, aude, Tobias1984, Manybubbles, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T224013: Implement Shortend version

2019-11-22 Thread Rosalie_WMDE
Rosalie_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T224013

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Rosalie_WMDE
Cc: Rosalie_WMDE, Pintoch, Lea_WMDE, Aklapper, Lydia_Pintscher, 
Lucas_Werkmeister_WMDE, Liuxinyu970226, alaa_wmde, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] T226709: Add user agent to Wikidata Query UI code examples

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552541 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [wikidata/query/gui@master] Add default user agent to some more code examples
  
  https://gerrit.wikimedia.org/r/552541

TASK DETAIL
  https://phabricator.wikimedia.org/T226709

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: Lokal_Profil, Smalyshev, abian, Legoktm, ImreSamu, Alicia_Fagerving_WMSE, 
Aklapper, Lucas_Werkmeister_WMDE, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, Ferenczy, Meekrab2012, joker88john, 
DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, SandraF_WMF, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, Salgo60, 
WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, 
Omar_sansi, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T238878: Data about how many file pages on Commons contain at least one structured data element

2019-11-22 Thread Abit
Abit updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T238878

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Abit
Cc: matthiasmullie, Addshore, kzimmerman, mpopov, Ramsey-WMF, Abit, Nuria, 
4748kitoko, darthmon_wmde, DannyS712, Nandana, JKSTNK, Akovalyov, Lahi, 
PDrouin-WMF, Gq86, E1presidente, Cparle, Anooprao, SandraF_WMF, 
GoranSMilovanovic, QZanden, Tramullas, Acer, LawExplorer, Salgo60, Silverfish, 
_jensen, rosalieper, Scott_WUaS, Susannaanas, JAllemandou, Jane023, 
terrrydactyl, Wikidata-bugs, Base, aude, Ricordisamoa, Wesalius, 
Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238878: Data about how many file pages on Commons contain at least one structured data element

2019-11-22 Thread Nuria
Nuria added a comment.


  @Addshore : disclaimer: I know next to nothing about this but how are you 
taking into account that the revision is the last one for the page? That is, a 
page might have had a structured data item  in a prior revision and from its 
most current revision that structured data item is removed? In your select * i 
think* you are counting revisions with slots that contain data but if that 
revision is a past one for the page it should not be counted, as we only care 
about  structured data present in the page right now, correct? Hopefully this  
makes sense, I think you are discounting deleted "slots" but are counting 
"past" revisions for the page where those slots where "alive" as if they 
pertained to the count.

TASK DETAIL
  https://phabricator.wikimedia.org/T238878

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Nuria
Cc: matthiasmullie, Addshore, kzimmerman, mpopov, Ramsey-WMF, Abit, Nuria, 
4748kitoko, darthmon_wmde, DannyS712, Nandana, JKSTNK, Akovalyov, Lahi, 
PDrouin-WMF, Gq86, E1presidente, Cparle, Anooprao, SandraF_WMF, 
GoranSMilovanovic, QZanden, Tramullas, Acer, LawExplorer, Salgo60, Silverfish, 
_jensen, rosalieper, Scott_WUaS, Susannaanas, JAllemandou, Jane023, 
terrrydactyl, Wikidata-bugs, Base, aude, Ricordisamoa, Wesalius, 
Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T238901: Wikibase's Special:EntityData should not emit when responding with HTTP code 304

2019-11-22 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T238901

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Maintenance_bot
Cc: Ladsgroup, Aklapper, Joe, Addshore, darthmon_wmde, WMDE-leszek, Iflorez, 
alaa_wmde, DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, Meekrab2012, joker88john, CucyNoiD, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Af420, 
Darkminds3113, Bsandipan, Lordiis, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, 
WSH1906, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T181062: Adapt QuickStatements2 to be able to work with structured data on Commons as well

2019-11-22 Thread Husky
Husky added a comment.


  The tool mentioned by @Spinster above is done and working over here:
  
  https://tools.wmflabs.org/hay/minefield/
  
  It also supports PagePile ids.

TASK DETAIL
  https://phabricator.wikimedia.org/T181062

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Magnus, Husky
Cc: matthiasmullie, Spinster, Multichill, Husky, Jheald, Ramsey-WMF, 
ChristianKl, Abit, Aklapper, SandraF_WMF, darthmon_wmde, Tore_Danielsson_WMSE, 
DannyS712, Nandana, JKSTNK, tramm, Lahi, PDrouin-WMF, Gq86, E1presidente, 
Cparle, Anooprao, GoranSMilovanovic, QZanden, Tramullas, Acer, LawExplorer, 
Salgo60, Silverfish, _jensen, rosalieper, Scott_WUaS, Susannaanas, Jane023, 
Wikidata-bugs, Base, aude, Ricordisamoa, Wesalius, Lydia_Pintscher, 
Fabrice_Florin, Raymond, JeanFred, Steinsplitter, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238443: Add P180 (Depicts) and P6243 (Digital representation of) structured data to Commons files representing artworks by Jakob Smits

2019-11-22 Thread Husky
Husky added a comment.


  Well, the tool is done and working:
  
  https://tools.wmflabs.org/hay/minefield/

TASK DETAIL
  https://phabricator.wikimedia.org/T238443

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Husky
Cc: Husky, SandraF_WMF, Salgo60, Magnus, LucasWerkmeister, Spinster, MxLucy, 
Dat_doris, Phofx, darthmon_wmde, DannyS712, Nandana, JKSTNK, Lahi, PDrouin-WMF, 
Gq86, E1presidente, Ramsey-WMF, Cparle, Anooprao, GoranSMilovanovic, QZanden, 
Tramullas, Acer, LawExplorer, Silverfish, _jensen, rosalieper, Scott_WUaS, 
Susannaanas, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Ricordisamoa, 
Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331, 
Ainali
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T238901: Wikibase's Special:EntityData should not emit when responding with HTTP code 304

2019-11-22 Thread ReleaseTaggerBot
ReleaseTaggerBot edited projects, added MW-1.35-notes (1.35.0-wmf.5; 
2019-11-05); removed MW-1.35-notes (1.35.0-wmf.8; 2019-11-26).

TASK DETAIL
  https://phabricator.wikimedia.org/T238901

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, ReleaseTaggerBot
Cc: Ladsgroup, Aklapper, Joe, Addshore, darthmon_wmde, WMDE-leszek, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, alaa_wmde, 
Meekrab2012, joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T224013: Implement Shortend version

2019-11-22 Thread ReleaseTaggerBot
ReleaseTaggerBot edited projects, added MW-1.35-notes (1.35.0-wmf.8; 
2019-11-26); removed MW-1.35-notes (1.35.0-wmf.4; 2019-10-29).

TASK DETAIL
  https://phabricator.wikimedia.org/T224013

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Rosalie_WMDE, ReleaseTaggerBot
Cc: Rosalie_WMDE, Pintoch, Lea_WMDE, Aklapper, Lydia_Pintscher, 
Lucas_Werkmeister_WMDE, Liuxinyu970226, alaa_wmde, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] [Claimed] T238751: Only generate maxlag from pooled query service servers.

2019-11-22 Thread Addshore
Addshore claimed this task.
Restricted Application added a project: User-Addshore.

TASK DETAIL
  https://phabricator.wikimedia.org/T238751

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore
Cc: Joe, Addshore, Aklapper, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238878: Data about how many file pages on Commons contain at least one structured data element

2019-11-22 Thread matthiasmullie
matthiasmullie added a comment.


  As far as I can tell:
  @mpopov's queries (`wbc_entity_usage` based) include both MediaInfo items, 
along with Wikidata-items pulled in via Lua.
  @Addshore's queries are stricktly the amount of MediaInfo items.

TASK DETAIL
  https://phabricator.wikimedia.org/T238878

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: matthiasmullie
Cc: matthiasmullie, Addshore, kzimmerman, mpopov, Ramsey-WMF, Abit, Nuria, 
4748kitoko, darthmon_wmde, DannyS712, Nandana, JKSTNK, Akovalyov, Lahi, 
PDrouin-WMF, Gq86, E1presidente, Cparle, Anooprao, SandraF_WMF, 
GoranSMilovanovic, QZanden, Tramullas, Acer, LawExplorer, Salgo60, Silverfish, 
_jensen, rosalieper, Scott_WUaS, Susannaanas, JAllemandou, Jane023, 
terrrydactyl, Wikidata-bugs, Base, aude, Ricordisamoa, Wesalius, 
Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T224013: Implement Shortend version

2019-11-22 Thread Rosalie_WMDE
Rosalie_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T224013

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Rosalie_WMDE
Cc: Rosalie_WMDE, Pintoch, Lea_WMDE, Aklapper, Lydia_Pintscher, 
Lucas_Werkmeister_WMDE, Liuxinyu970226, alaa_wmde, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] [Edited] T224013: Implement Shortend version

2019-11-22 Thread Rosalie_WMDE
Rosalie_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T224013

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Rosalie_WMDE
Cc: Rosalie_WMDE, Pintoch, Lea_WMDE, Aklapper, Lydia_Pintscher, 
Lucas_Werkmeister_WMDE, Liuxinyu970226, alaa_wmde, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] [Edited] T224013: Implement Shortend version

2019-11-22 Thread Rosalie_WMDE
Rosalie_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T224013

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Rosalie_WMDE
Cc: Rosalie_WMDE, Pintoch, Lea_WMDE, Aklapper, Lydia_Pintscher, 
Lucas_Werkmeister_WMDE, Liuxinyu970226, alaa_wmde, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] T224013: Implement Shortend version

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 551780 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Add service to collect changed 
languages, for the summary message
  
  https://gerrit.wikimedia.org/r/551780

TASK DETAIL
  https://phabricator.wikimedia.org/T224013

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Rosalie_WMDE, gerritbot
Cc: Rosalie_WMDE, Pintoch, Lea_WMDE, Aklapper, Lydia_Pintscher, 
Lucas_Werkmeister_WMDE, Liuxinyu970226, alaa_wmde, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] T238901: Wikibase's Special:EntityData should not emit when responding with HTTP code 304

2019-11-22 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2019-11-22T15:16:47Z] 
 Synchronized php-1.35.0-wmf.5/extensions/Wikibase/repo/: 
Stop outputting anything in case of 304 responses in Special:EntityData 
(T238901 ) (duration: 00m 57s)

TASK DETAIL
  https://phabricator.wikimedia.org/T238901

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Stashbot
Cc: Ladsgroup, Aklapper, Joe, Addshore, darthmon_wmde, WMDE-leszek, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, alaa_wmde, 
Meekrab2012, joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238901: Wikibase's Special:EntityData should not emit when responding with HTTP code 304

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552519 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@wmf/1.35.0-wmf.5] Stop outputting anything in 
case of 304 responses in Special:EntityData
  
  https://gerrit.wikimedia.org/r/552519

TASK DETAIL
  https://phabricator.wikimedia.org/T238901

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Ladsgroup, Aklapper, Joe, Addshore, darthmon_wmde, WMDE-leszek, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, alaa_wmde, 
Meekrab2012, joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T237368: Track bridge opening performance

2019-11-22 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE moved this task from Doing to Verification on the 
Wikidata-Bridge-Sprint-10 board.
Lucas_Werkmeister_WMDE added a comment.


  Added to https://grafana-labs.wikimedia.org/d/00020/ (though there’s not 
much data).

TASK DETAIL
  https://phabricator.wikimedia.org/T237368

WORKBOARD
  https://phabricator.wikimedia.org/project/board/4390/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE
Cc: Addshore, Aklapper, Michael, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T238931: Wikibase lib with datavalues/geo 4.2.0 has a test failure

2019-11-22 Thread Reedy
Reedy added a project: DataValues.

TASK DETAIL
  https://phabricator.wikimedia.org/T238931

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Reedy
Cc: Aklapper, Reedy, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T238931: Wikibase lib with datavalues/geo 4.2.0 has a test failure

2019-11-22 Thread Reedy
Reedy created this task.
Reedy added projects: Wikidata, Wikidata-Campsite.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  In T215853#5668084 , 
@Reedy wrote:
  
  > The current failure is now:
  >
  >   15:41:57 There was 1 error:
  >   15:41:57 
  >   15:41:57 1) 
Wikibase\Lib\Tests\Formatters\GlobeCoordinateDetailsFormatterTest::testEscaping
  >   15:41:57 TypeError: Return value of 
Mock_GlobeCoordinateValue_2ce92031::getPrecision() must be of the type float or 
null, string returned
  >   15:41:57 
  >   15:41:57 
/workspace/src/vendor/data-values/geo/src/Formatters/GlobeCoordinateFormatter.php:50
  >   15:41:57 
/workspace/src/extensions/Wikibase/lib/includes/Formatters/GlobeCoordinateDetailsFormatter.php:70
  >   15:41:57 
/workspace/src/extensions/Wikibase/lib/tests/phpunit/Formatters/GlobeCoordinateDetailsFormatterTest.php:93
  >   15:41:57 /workspace/src/maintenance/doMaintenance.php:99
  >   15:41:57 
  
  Seen on https://gerrit.wikimedia.org/r/#/c/mediawiki/vendor/+/550666/ `Update 
datavalues/geo from 3.0.1 to 4.2.0`
  
  Blocking T215853 

TASK DETAIL
  https://phabricator.wikimedia.org/T238931

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Reedy
Cc: Aklapper, Reedy, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T224013: Implement Shortend version

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552522 had a related patch set uploaded (by Rosalie Perside (WMDE); 
owner: Rosalie Perside (WMDE)):
  [mediawiki/extensions/Wikibase@master] Add messages for short version of 
automatic summary
  
  https://gerrit.wikimedia.org/r/552522

TASK DETAIL
  https://phabricator.wikimedia.org/T224013

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Rosalie_WMDE, gerritbot
Cc: Rosalie_WMDE, Pintoch, Lea_WMDE, Aklapper, Lydia_Pintscher, 
Lucas_Werkmeister_WMDE, Liuxinyu970226, alaa_wmde, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] T199121: RFC: Spec for representing multiple content objects per revision (MCR) in XML dumps

2019-11-22 Thread daniel
daniel added a comment.


  In T199121#5684558 , 
@ArielGlenn wrote:
  
  > As usual no one has given anyone any decision making powers so I'll claim 
it :-P  I should make a task, announce it on the mailing lists, give  a 2 month 
window, and then we should flip the switch. Given the various holidays coming 
up I guess that makes it end of Jan, though I would vote for letting folks get 
back from the staff meeting first.
  
  Sounds great!
  
  I have made T238921: MCR: Include all slots in XML dumps per default 
 for MediaWiki as released to third 
parties. But that's separate from doing the switch for the dumps WMF produces.

TASK DETAIL
  https://phabricator.wikimedia.org/T199121

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: ArielGlenn, daniel
Cc: Nuria, mako, FaFlo, Halfak, vrandezo, Denny, kchapman, tstarling, awight, 
JAllemandou, hoo, pmiazga, Nemo_bis, brion, Tgr, Aklapper, Fjalapeno, 
ArielGlenn, daniel, darthmon_wmde, DannyS712, Nandana, kostajh, Lahi, Gq86, 
Ramsey-WMF, GoranSMilovanovic, RazeSoldier, Lunewa, QZanden, V4switch, 
LawExplorer, JJMC89, _jensen, rosalieper, Agabi10, D3r1ck01, Scott_WUaS, Izno, 
SBisson, Wong128hk, gnosygnu, Perhelion, Wikidata-bugs, matthiasmullie, aude, 
GWicke, Bawolff, jayvdb, fbstj, Fabrice_Florin, santhosh, Jdforrester-WMF, 
Ladsgroup, Matanya, 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] [Updated] T238901: Wikibase's Special:EntityData should not emit when responding with HTTP code 304

2019-11-22 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.35-notes (1.35.0-wmf.8; 2019-11-26).

TASK DETAIL
  https://phabricator.wikimedia.org/T238901

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, ReleaseTaggerBot
Cc: Ladsgroup, Aklapper, Joe, Addshore, darthmon_wmde, WMDE-leszek, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, alaa_wmde, 
Meekrab2012, joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238901: Wikibase's Special:EntityData should not emit when responding with HTTP code 304

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552505 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Stop outputting anything in case of 
304 responses in Special:EntityData
  
  https://gerrit.wikimedia.org/r/552505

TASK DETAIL
  https://phabricator.wikimedia.org/T238901

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Ladsgroup, Aklapper, Joe, Addshore, darthmon_wmde, WMDE-leszek, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, alaa_wmde, 
Meekrab2012, joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T215853: Wikidata vendor version updates (Feb 2019)

2019-11-22 Thread Reedy
Reedy added a comment.


  In T215853#5668084 , 
@Reedy wrote:
  
  > The current failure is now:
  >
  >   15:41:57 There was 1 error:
  >   15:41:57 
  >   15:41:57 1) 
Wikibase\Lib\Tests\Formatters\GlobeCoordinateDetailsFormatterTest::testEscaping
  >   15:41:57 TypeError: Return value of 
Mock_GlobeCoordinateValue_2ce92031::getPrecision() must be of the type float or 
null, string returned
  >   15:41:57 
  >   15:41:57 
/workspace/src/vendor/data-values/geo/src/Formatters/GlobeCoordinateFormatter.php:50
  >   15:41:57 
/workspace/src/extensions/Wikibase/lib/includes/Formatters/GlobeCoordinateDetailsFormatter.php:70
  >   15:41:57 
/workspace/src/extensions/Wikibase/lib/tests/phpunit/Formatters/GlobeCoordinateDetailsFormatterTest.php:93
  >   15:41:57 /workspace/src/maintenance/doMaintenance.php:99
  >   15:41:57 
  
  Should I file a separate task about this?

TASK DETAIL
  https://phabricator.wikimedia.org/T215853

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Rosalie_WMDE, Reedy
Cc: Lydia_Pintscher, Addshore, Aklapper, Reedy, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, alaa_wmde, 
Eladio.15, Meekrab2012, joker88john, DannyS712, CucyNoiD, Nandana, 
NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, 
Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Jonas, Wikidata-bugs, aude, Mbch331, Legoktm
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T237527: Add notice component

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552520 had a related patch set uploaded (by Matthias Geisler; owner: 
Matthias Geisler):
  [mediawiki/extensions/Wikibase@master] bridge: Add notice component
  
  https://gerrit.wikimedia.org/r/552520

TASK DETAIL
  https://phabricator.wikimedia.org/T237527

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Matthias_Geisler_WMDE, gerritbot
Cc: Addshore, Aklapper, Michael, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T237527: Add notice component

2019-11-22 Thread gerritbot
gerritbot added a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T237527

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Matthias_Geisler_WMDE, gerritbot
Cc: Addshore, Aklapper, Michael, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238901: Wikibase's Special:EntityData should not emit when responding with HTTP code 304

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552519 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@wmf/1.35.0-wmf.5] Stop outputting anything in 
case of 304 responses in Special:EntityData
  
  https://gerrit.wikimedia.org/r/552519

TASK DETAIL
  https://phabricator.wikimedia.org/T238901

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Ladsgroup, Aklapper, Joe, Addshore, darthmon_wmde, WMDE-leszek, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, alaa_wmde, 
Meekrab2012, joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T237368: Track bridge opening performance

2019-11-22 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE claimed this task.
Lucas_Werkmeister_WMDE moved this task from To do to Doing on the 
Wikidata-Bridge-Sprint-10 board.

TASK DETAIL
  https://phabricator.wikimedia.org/T237368

WORKBOARD
  https://phabricator.wikimedia.org/project/board/4390/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE
Cc: Addshore, Aklapper, Michael, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T232040: Add label and description collision detectors for new terms store

2019-11-22 Thread alaa_wmde
alaa_wmde updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T232040

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: alaa_wmde
Cc: Lydia_Pintscher, hoo, Addshore, Ladsgroup, Lucas_Werkmeister_WMDE, 
Aklapper, alaa_wmde, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, joker88john, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
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] [Edited] T232040: Add label and description collision detectors for new terms store

2019-11-22 Thread alaa_wmde
alaa_wmde updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T232040

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: alaa_wmde
Cc: Lydia_Pintscher, hoo, Addshore, Ladsgroup, Lucas_Werkmeister_WMDE, 
Aklapper, alaa_wmde, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, joker88john, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
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] [Changed Project Column] T232040: Add label and description collision detectors for new terms store

2019-11-22 Thread alaa_wmde
alaa_wmde moved this task from Doing to Peer Review on the Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞) board.
alaa_wmde added a comment.


  First patch is ready for review again

TASK DETAIL
  https://phabricator.wikimedia.org/T232040

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: alaa_wmde
Cc: Lydia_Pintscher, hoo, Addshore, Ladsgroup, Lucas_Werkmeister_WMDE, 
Aklapper, alaa_wmde, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, joker88john, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
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] T237984: Some property labels are not displayed on Item pages

2019-11-22 Thread ReleaseTaggerBot
ReleaseTaggerBot edited projects, added MW-1.35-notes (1.35.0-wmf.5; 
2019-11-05); removed MW-1.35-notes (1.35.0-wmf.8; 2019-11-26).

TASK DETAIL
  https://phabricator.wikimedia.org/T237984

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, ReleaseTaggerBot
Cc: Ash_Crow, Addshore, PKM, Moebeus, alaa_wmde, VIGNERON, Aklapper, 
Lydia_Pintscher, Ladsgroup, Lea_Lacroix_WMDE, Iflorez, darthmon_wmde, 
DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, 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] T181062: Adapt QuickStatements2 to be able to work with structured data on Commons as well

2019-11-22 Thread matthiasmullie
matthiasmullie added a comment.


  In T181062#5683735 , 
@Spinster wrote:
  
  > Can my colleagues from the #structureddataoncommons 
 team do 
anything to make it easier to include filename-to-Mid conversion in 
QuickStatements?
  
  FYI, getting the correct M-id from a page title can also be done via an 
`action=wbgetentities` API call, like so: 
https://commons.wikimedia.org/w/api.php?action=wbgetentities=commonswiki=File:2018-07-05-budapest-buda-hill.jpg
  With above API call, you'll find that the id for 
`File:2018-07-05-budapest-buda-hill.jpg` on Commons is `M75908279`.

TASK DETAIL
  https://phabricator.wikimedia.org/T181062

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Magnus, matthiasmullie
Cc: matthiasmullie, Spinster, Multichill, Husky, Jheald, Ramsey-WMF, 
ChristianKl, Abit, Aklapper, SandraF_WMF, darthmon_wmde, Tore_Danielsson_WMSE, 
DannyS712, Nandana, JKSTNK, tramm, Lahi, PDrouin-WMF, Gq86, E1presidente, 
Cparle, Anooprao, GoranSMilovanovic, QZanden, Tramullas, Acer, LawExplorer, 
Salgo60, Silverfish, _jensen, rosalieper, Scott_WUaS, Susannaanas, Jane023, 
Wikidata-bugs, Base, aude, Ricordisamoa, Wesalius, Lydia_Pintscher, 
Fabrice_Florin, Raymond, JeanFred, Steinsplitter, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T238901: Wikibase's Special:EntityData should not emit when responding with HTTP code 304

2019-11-22 Thread Ladsgroup
Ladsgroup claimed this task.
Ladsgroup edited projects, added Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞); removed Wikidata-Campsite.
Restricted Application added a project: User-Ladsgroup.

TASK DETAIL
  https://phabricator.wikimedia.org/T238901

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: Ladsgroup, Aklapper, Joe, Addshore, darthmon_wmde, WMDE-leszek, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, alaa_wmde, 
Meekrab2012, joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238901: Wikibase's Special:EntityData should not emit when responding with HTTP code 304

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552505 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Stop outputting anything in case of 
304 responses in Special:EntityData
  
  https://gerrit.wikimedia.org/r/552505

TASK DETAIL
  https://phabricator.wikimedia.org/T238901

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: Ladsgroup, Aklapper, Joe, Addshore, darthmon_wmde, WMDE-leszek, DannyS712, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T238901: Wikibase's Special:EntityData should not emit when responding with HTTP code 304

2019-11-22 Thread gerritbot
gerritbot added a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T238901

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: Ladsgroup, Aklapper, Joe, Addshore, darthmon_wmde, WMDE-leszek, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Meekrab2012, joker88john, 
DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, 
Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T199121: RFC: Spec for representing multiple content objects per revision (MCR) in XML dumps

2019-11-22 Thread ArielGlenn
ArielGlenn added a comment.


  In T199121#5684397 , 
@daniel wrote:
  
  > In T199121#5684250 , 
@ArielGlenn wrote:
  >
  >> 
  
  ...
  
  >> https://gerrit.wikimedia.org/r/#/c/mediawiki/core/+/473222/ which I have 
not looked at for even a second (sorry!)
  >
  > Ah, right - that would allow people to try out 0.11 in Special:Export 
before we make it the default. It doesn't prevent us from generating dumps in 
0.11.
  > The big question is - do we need to provide both for a while, so people 
have time to adjust to 0.11? It's technically a breaking change.
  
  If only we had enough hardware/short enough runtimes that we *could* provide 
them both for awhile. But as things are, no go on that. We'll just switch when 
the time comes.
  
  > On the other hand, most consumers wouldn't even notice. I feel we could 
just switch over. Who owns that decision?
  
  As usual no one has given anyone any decision making powers so I'll claim it 
:-P  I should make a task, announce it on the mailing lists, give  a 2 month 
window, and then we should flip the switch. Given the various holidays coming 
up I guess that makes it end of Jan, though I would vote for letting folks get 
back from the staff meeting first.

TASK DETAIL
  https://phabricator.wikimedia.org/T199121

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: ArielGlenn
Cc: Nuria, mako, FaFlo, Halfak, vrandezo, Denny, kchapman, tstarling, awight, 
JAllemandou, hoo, pmiazga, Nemo_bis, brion, Tgr, Aklapper, Fjalapeno, 
ArielGlenn, daniel, darthmon_wmde, DannyS712, Nandana, kostajh, Lahi, Gq86, 
Ramsey-WMF, GoranSMilovanovic, RazeSoldier, Lunewa, QZanden, V4switch, 
LawExplorer, JJMC89, _jensen, rosalieper, Agabi10, D3r1ck01, Scott_WUaS, Izno, 
SBisson, Wong128hk, gnosygnu, Perhelion, Wikidata-bugs, matthiasmullie, aude, 
GWicke, Bawolff, jayvdb, fbstj, Fabrice_Florin, santhosh, Jdforrester-WMF, 
Ladsgroup, Matanya, 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] [Assigned] T204723: Normalize Wikimedia Commons file names via a ValueParser

2019-11-22 Thread Arybolab
Arybolab assigned this task to Ladsgroup.
Restricted Application added a project: User-Ladsgroup.

TASK DETAIL
  https://phabricator.wikimedia.org/T204723

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Arybolab
Cc: hoo, WMDE-leszek, Jonas, Lydia_Pintscher, Addshore, thiemowmde, Aklapper, 
MxLucy, Dat_doris, Chaytanya, Phofx, darthmon_wmde, Dinadineke, DannyS712, 
Nandana, Kieubinhtb, Guilhermebm, Mh-3110, tabish.shaikh91, Asad_Ali_Palijo, 
Lahi, Gq86, GoranSMilovanovic, Soteriaspace, RazeSoldier, Jayprakash12345, 
JakeTheDeveloper, QZanden, merbst, LawExplorer, _jensen, rosalieper, D3r1ck01, 
Scott_WUaS, MuhammadShuaib, Tmalhotra, SimmeD, Wikidata-bugs, aude, TheDJ, 
Mbch331, Ainali
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T238401: Add tracking code relating to statement changes

2019-11-22 Thread gerritbot
gerritbot added a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T238401

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: noarave, gerritbot
Cc: Aklapper, Tarrow, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238401: Add tracking code relating to statement changes

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552500 had a related patch set uploaded (by Noa wmde; owner: Noa wmde):
  [mediawiki/extensions/Wikibase@master] WIP Add statementTracker for tracking 
statement changes
  
  https://gerrit.wikimedia.org/r/552500

TASK DETAIL
  https://phabricator.wikimedia.org/T238401

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: noarave, gerritbot
Cc: Aklapper, Tarrow, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238918: Add full item title to bridge RegExp and pass to app

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552498 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [operations/mediawiki-config@master] Wikibase (beta-only): Update 
wmgWikibaseClientDataBridgeHrefRegExp
  
  https://gerrit.wikimedia.org/r/552498

TASK DETAIL
  https://phabricator.wikimedia.org/T238918

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, Michael, 
DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T238918: Add full item title to bridge RegExp and pass to app

2019-11-22 Thread gerritbot
gerritbot added a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T238918

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, Michael, 
DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238918: Add full item title to bridge RegExp and pass to app

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552497 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/Wikibase@master] Add entity title to AppInformation
  
  https://gerrit.wikimedia.org/r/552497

TASK DETAIL
  https://phabricator.wikimedia.org/T238918

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, darthmon_wmde, Michael, DannyS712, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T238119: Add Wikidata support for gcrwiki

2019-11-22 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2019-11-22T13:11:23Z]  start 
of foreachwikiindblist wikidataclient 
extensions/Wikibase/lib/maintenance/populateSitesTable.php --force-protocol 
https (T238119  T238524 
 T237375 
 T238120 
)

TASK DETAIL
  https://phabricator.wikimedia.org/T238119

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Stashbot
Cc: Aklapper, Ladsgroup, jhsoby, Iflorez, darthmon_wmde, alaa_wmde, DannyS712, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T238120: Add Wikidata support for shywiktionary

2019-11-22 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2019-11-22T13:11:23Z]  start 
of foreachwikiindblist wikidataclient 
extensions/Wikibase/lib/maintenance/populateSitesTable.php --force-protocol 
https (T238119  T238524 
 T237375 
 T238120 
)

TASK DETAIL
  https://phabricator.wikimedia.org/T238120

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Stashbot
Cc: Aklapper, Ladsgroup, jhsoby, Iflorez, darthmon_wmde, alaa_wmde, DannyS712, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T238524: Add Wikidata support for minwiktionary

2019-11-22 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2019-11-22T13:11:23Z]  start 
of foreachwikiindblist wikidataclient 
extensions/Wikibase/lib/maintenance/populateSitesTable.php --force-protocol 
https (T238119  T238524 
 T237375 
 T238120 
)

TASK DETAIL
  https://phabricator.wikimedia.org/T238524

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Stashbot
Cc: Ladsgroup, jhsoby, Aklapper, Iflorez, darthmon_wmde, alaa_wmde, DannyS712, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T237375: Add Wikidata support for szywiki

2019-11-22 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2019-11-22T13:11:23Z]  start 
of foreachwikiindblist wikidataclient 
extensions/Wikibase/lib/maintenance/populateSitesTable.php --force-protocol 
https (T238119  T238524 
 T237375 
 T238120 
)

TASK DETAIL
  https://phabricator.wikimedia.org/T237375

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Stashbot
Cc: Michael, Aklapper, Ladsgroup, jhsoby, Iflorez, darthmon_wmde, alaa_wmde, 
DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, 
Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T237984: Some property labels are not displayed on Item pages

2019-11-22 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T237984

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Maintenance_bot
Cc: Ash_Crow, Addshore, PKM, Moebeus, alaa_wmde, VIGNERON, Aklapper, 
Lydia_Pintscher, Ladsgroup, Lea_Lacroix_WMDE, Iflorez, darthmon_wmde, 
DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Mbch331, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Meekrab2012, joker88john, 
CucyNoiD, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Af420, Darkminds3113, Bsandipan, Lordiis, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, WSH1906, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T238473: Label for unit isn't displayed correctly, just Q-number

2019-11-22 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T238473

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Maintenance_bot
Cc: Moebeus, Ladsgroup, Lydia_Pintscher, Addshore, Aklapper, Kristbaum, 
Iflorez, darthmon_wmde, alaa_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Wikidata-bugs, aude, Mbch331, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, Meekrab2012, joker88john, CucyNoiD, NebulousIris, 
Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, 
Af420, Darkminds3113, Bsandipan, Lordiis, Adik2382, Th3d3v1ls, Ramalepe, 
Liugev6, WSH1906, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238473: Label for unit isn't displayed correctly, just Q-number

2019-11-22 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2019-11-22T13:06:06Z] 
 Synchronized 
php-1.35.0-wmf.5/extensions/Wikibase/lib/includes/Store/Sql/SqlEntityInfoBuilder.php:
 T238473  (duration: 00m 52s)

TASK DETAIL
  https://phabricator.wikimedia.org/T238473

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Stashbot
Cc: Moebeus, Ladsgroup, Lydia_Pintscher, Addshore, Aklapper, Kristbaum, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, 
darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
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] T238473: Label for unit isn't displayed correctly, just Q-number

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552493 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@wmf/1.35.0-wmf.5] Cache SqlEntityInfoBuilder 
also based on term type
  
  https://gerrit.wikimedia.org/r/552493

TASK DETAIL
  https://phabricator.wikimedia.org/T238473

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Moebeus, Ladsgroup, Lydia_Pintscher, Addshore, Aklapper, Kristbaum, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, 
darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
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] T237984: Some property labels are not displayed on Item pages

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552493 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@wmf/1.35.0-wmf.5] Cache SqlEntityInfoBuilder 
also based on term type
  
  https://gerrit.wikimedia.org/r/552493

TASK DETAIL
  https://phabricator.wikimedia.org/T237984

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Ash_Crow, Addshore, PKM, Moebeus, alaa_wmde, VIGNERON, Aklapper, 
Lydia_Pintscher, Ladsgroup, Lea_Lacroix_WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] T237984: Some property labels are not displayed on Item pages

2019-11-22 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.35-notes (1.35.0-wmf.8; 2019-11-26).

TASK DETAIL
  https://phabricator.wikimedia.org/T237984

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, ReleaseTaggerBot
Cc: Ash_Crow, Addshore, PKM, Moebeus, alaa_wmde, VIGNERON, Aklapper, 
Lydia_Pintscher, Ladsgroup, Lea_Lacroix_WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] T199121: RFC: Spec for representing multiple content objects per revision (MCR) in XML dumps

2019-11-22 Thread daniel
daniel added a comment.


  In T199121#5684250 , 
@ArielGlenn wrote:
  
  > In T199121#5684237 , 
@daniel wrote:
  >
  >> In T199121#5683594 , 
@ArielGlenn wrote:
  >>
  >>> Not yet. There are unmerged patches yet, and we'll need to announce well 
in advance before rolling out the change.
  >>
  >> I am not aware of any unmerged patches blocking the use of the 0.11 
schema. Can you point me to them?
  >
  > https://gerrit.wikimedia.org/r/#/c/mediawiki/core/+/473222/ which I have 
not looked at for even a second (sorry!)
  
  Ah, right - that would allow people to try out 0.11 in Special:Export before 
we make it the default. It doesn't prevent us from generating dumps in 0.11.
  
  The big question is - do we need to provide both for a while, so people have 
time to adjust to 0.11? It's technically a breaking change.
  
  On the other hand, most consumers wouldn't even notice. I feel we could just 
switch over. Who owns that decision?

TASK DETAIL
  https://phabricator.wikimedia.org/T199121

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: ArielGlenn, daniel
Cc: Nuria, mako, FaFlo, Halfak, vrandezo, Denny, kchapman, tstarling, awight, 
JAllemandou, hoo, pmiazga, Nemo_bis, brion, Tgr, Aklapper, Fjalapeno, 
ArielGlenn, daniel, darthmon_wmde, DannyS712, Nandana, kostajh, Lahi, Gq86, 
Ramsey-WMF, GoranSMilovanovic, RazeSoldier, Lunewa, QZanden, V4switch, 
LawExplorer, JJMC89, _jensen, rosalieper, Agabi10, D3r1ck01, Scott_WUaS, Izno, 
SBisson, Wong128hk, gnosygnu, Perhelion, Wikidata-bugs, matthiasmullie, aude, 
GWicke, Bawolff, jayvdb, fbstj, Fabrice_Florin, santhosh, Jdforrester-WMF, 
Ladsgroup, Matanya, 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] [Updated] T204723: Normalize Wikimedia Commons file names via a ValueParser

2019-11-22 Thread Arybolab
Arybolab added a project: Wiki-Techstorm-2019.

TASK DETAIL
  https://phabricator.wikimedia.org/T204723

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Arybolab
Cc: hoo, WMDE-leszek, Jonas, Lydia_Pintscher, Addshore, thiemowmde, Aklapper, 
MxLucy, Dat_doris, Chaytanya, Phofx, darthmon_wmde, Dinadineke, DannyS712, 
Nandana, Kieubinhtb, Guilhermebm, Mh-3110, tabish.shaikh91, Asad_Ali_Palijo, 
Lahi, Gq86, GoranSMilovanovic, Soteriaspace, RazeSoldier, Jayprakash12345, 
JakeTheDeveloper, QZanden, merbst, LawExplorer, _jensen, rosalieper, D3r1ck01, 
Scott_WUaS, MuhammadShuaib, Tmalhotra, SimmeD, Wikidata-bugs, aude, TheDJ, 
Mbch331, Ainali
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T235724: Remove old pcache metric compat from ParserCache.php

2019-11-22 Thread Addshore
Addshore closed this task as "Resolved".

TASK DETAIL
  https://phabricator.wikimedia.org/T235724

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore
Cc: alaa_wmde, Ladsgroup, Krinkle, Addshore, Aklapper, Iflorez, darthmon_wmde, 
DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, Jayprakash12345, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Izno, Wikidata-bugs, aude, 
Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T132690: [Story] Maintain Query Examples

2019-11-22 Thread So9q
So9q added a comment.


  In T132690#5673577 , 
@Bouzinac wrote:
  
  > Hi there, noticed too the template SPARQL bug. Isn't it simply because the 
page is too large ?
  > Shouldn't we break it into subpages ?
  >
  > - Simple Queries
  > - Showcase Queries
  > - etc
  
  I like this idea. We could add a //Lexeme Queries// to that list. 
  Note: This will affect the script that generates the examples-UI in WDQS.

TASK DETAIL
  https://phabricator.wikimedia.org/T132690

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: So9q
Cc: So9q, Bouzinac, Tfrancart, Liuxinyu970226, namedgraph, Ivanhercaz, DeSl, 
Fuzheado, abian, Multichill, Lea_Lacroix_WMDE, Sjoerddebruin, D3r1ck01, 
Daniel_Mietchen, TerraCodes, Jura1, Lydia_Pintscher, Jonas, Aklapper, 
Chaytanya, darthmon_wmde, ET4Eva, Dinadineke, DannyS712, Nandana, Kieubinhtb, 
Guilhermebm, Mh-3110, tabish.shaikh91, Asad_Ali_Palijo, Lahi, Gq86, 
Darkminds3113, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Soteriaspace, 
RazeSoldier, Jayprakash12345, JakeTheDeveloper, QZanden, EBjune, merbst, 
LawExplorer, Avner, Puik, Gehel, _jensen, rosalieper, Envlh, Scott_WUaS, 
FloNight, Xmlizer, MuhammadShuaib, Tmalhotra, SimmeD, jkroll, Smalyshev, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, TheDJ, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238473: Label for unit isn't displayed correctly, just Q-number

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552493 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@wmf/1.35.0-wmf.5] Cache SqlEntityInfoBuilder 
also based on term type
  
  https://gerrit.wikimedia.org/r/552493

TASK DETAIL
  https://phabricator.wikimedia.org/T238473

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Moebeus, Ladsgroup, Lydia_Pintscher, Addshore, Aklapper, Kristbaum, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, 
darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
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] T237984: Some property labels are not displayed on Item pages

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552493 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@wmf/1.35.0-wmf.5] Cache SqlEntityInfoBuilder 
also based on term type
  
  https://gerrit.wikimedia.org/r/552493

TASK DETAIL
  https://phabricator.wikimedia.org/T237984

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Ash_Crow, Addshore, PKM, Moebeus, alaa_wmde, VIGNERON, Aklapper, 
Lydia_Pintscher, Ladsgroup, Lea_Lacroix_WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] T233213: XSS in Wikidata Query Service UI

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552293 **merged** by jenkins-bot:
  [wikidata/query/gui@master] Add security task to Gruntfile
  
  https://gerrit.wikimedia.org/r/552293

TASK DETAIL
  https://phabricator.wikimedia.org/T233213

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore, gerritbot
Cc: Tarrow, hoo, Jakob_WMDE, Rosalie_WMDE, Pablo-WMDE, darthmon_wmde, 
WMDE-leszek, JBennett, Physikerwelt, Mathew.onipe, Reedy, johl, 
Lea_Lacroix_WMDE, Lydia_Pintscher, alaa_wmde, Addshore, sbassett, dcausse, 
Gehel, Aklapper, Lucas_Werkmeister_WMDE, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, Iflorez, JFishback_WMF, Dsharpe, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Amorymeltzer, Giuliamocci, Adrian1985, Cpaulf30, Lahi, 
Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, HJiang-WMF, merbst, LawExplorer, 
Salgo60, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, 
Xmlizer, dpatrick, Luke081515, jkroll, Smalyshev, Wikidata-bugs, Jdouglas, 
aude, Tobias1984, GWicke, Bawolff, Stype_and_Co.-WMF, Manybubbles, DerHexer, 
Jalexander, Parent5446, Anomie, Grunny, He7d3r, MaxSem, csteipp, Mbch331, Rxy, 
Jay8g, Legoktm, chasemp
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T237984: Some property labels are not displayed on Item pages

2019-11-22 Thread Addshore
Addshore moved this task from Peer Review to Test (Verification) on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Addshore added a comment.


  Looks like this is merged :)

TASK DETAIL
  https://phabricator.wikimedia.org/T237984

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Addshore
Cc: Ash_Crow, Addshore, PKM, Moebeus, alaa_wmde, VIGNERON, Aklapper, 
Lydia_Pintscher, Ladsgroup, Lea_Lacroix_WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] [Changed Project Column] T238473: Label for unit isn't displayed correctly, just Q-number

2019-11-22 Thread Addshore
Addshore moved this task from Peer Review to Test (Verification) on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Addshore added a comment.


  Looks like the only thing here is already merged :)

TASK DETAIL
  https://phabricator.wikimedia.org/T238473

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Addshore
Cc: Moebeus, Ladsgroup, Lydia_Pintscher, Addshore, Aklapper, Kristbaum, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, 
darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
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] T181062: Adapt QuickStatements2 to be able to work with structured data on Commons as well

2019-11-22 Thread Spinster
Spinster added a comment.


  We're at the #wiki-techstorm-2019 
 and @Husky is 
building a tool, aptly named Minefield, to convert filenames to M item numbers, 
see T238908: Minefield: A tool to convert Commons page title to media ID and 
back . For now this can provide help 
in formatting the right commands for QuickStatements.

TASK DETAIL
  https://phabricator.wikimedia.org/T181062

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Magnus, Spinster
Cc: Spinster, Multichill, Husky, Jheald, Ramsey-WMF, ChristianKl, Abit, 
Aklapper, SandraF_WMF, darthmon_wmde, Tore_Danielsson_WMSE, DannyS712, Nandana, 
JKSTNK, tramm, Lahi, PDrouin-WMF, Gq86, E1presidente, Cparle, Anooprao, 
GoranSMilovanovic, QZanden, Tramullas, Acer, LawExplorer, Salgo60, Silverfish, 
_jensen, rosalieper, Scott_WUaS, Susannaanas, Jane023, Wikidata-bugs, Base, 
matthiasmullie, aude, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, 
Raymond, JeanFred, Steinsplitter, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T221774: Add Wikidata query service lag to Wikidata maxlag

2019-11-22 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2019-11-22T12:34:11Z] 
 Synchronized wmf-config/InitialiseSettings.php: T221774 
 - 
wgWikidataOrgQueryServiceMaxLagFactor 60 RESYNC (duration: 00m 51s)

TASK DETAIL
  https://phabricator.wikimedia.org/T221774

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore, Stashbot
Cc: Envlh, Gstupp, Sebotic, Tagishsimon, Liridon, Bugreporter, Magnus, Tpt, 
Pintoch, Lydia_Pintscher, Matthias_Geisler_WMDE, Simon_Villeneuve, 
Lea_Lacroix_WMDE, Tarrow, alaa_wmde, Andrawaag, Multichill, Ladsgroup, 
Smalyshev, fgiunchedi, hoo, Daniel_Mietchen, MisterSynergy, Addshore, 
Sjoerddebruin, Aklapper, Lucas_Werkmeister_WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Chicocvenancio, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, WSH1906, 
Lewizho99, Volans, Maathavan, _jensen, rosalieper, Scott_WUaS, 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] T238443: Add P180 (Depicts) and P6243 (Digital representation of) structured data to Commons files representing artworks by Jakob Smits

2019-11-22 Thread Spinster
Spinster added a subscriber: Husky.
Spinster added a comment.


  @Husky is building a tool, aptly named Minefield, to convert filenames to M 
item numbers, see T238908: Minefield: A tool to convert Commons page title to 
media ID and back , which will 
provide a missing link to be able to feed the necessary edits into 
QuickStatements.

TASK DETAIL
  https://phabricator.wikimedia.org/T238443

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Spinster
Cc: Husky, SandraF_WMF, Salgo60, Magnus, LucasWerkmeister, Spinster, MxLucy, 
Dat_doris, Phofx, darthmon_wmde, DannyS712, Nandana, JKSTNK, Lahi, PDrouin-WMF, 
Gq86, E1presidente, Ramsey-WMF, Cparle, Anooprao, GoranSMilovanovic, QZanden, 
Tramullas, Acer, LawExplorer, Silverfish, _jensen, rosalieper, Scott_WUaS, 
Susannaanas, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Ricordisamoa, 
Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331, 
Ainali
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T221774: Add Wikidata query service lag to Wikidata maxlag

2019-11-22 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2019-11-22T12:32:27Z] 
 Synchronized wmf-config/InitialiseSettings.php: T221774 
 - 
wgWikidataOrgQueryServiceMaxLagFactor 60 (duration: 00m 53s)

TASK DETAIL
  https://phabricator.wikimedia.org/T221774

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore, Stashbot
Cc: Envlh, Gstupp, Sebotic, Tagishsimon, Liridon, Bugreporter, Magnus, Tpt, 
Pintoch, Lydia_Pintscher, Matthias_Geisler_WMDE, Simon_Villeneuve, 
Lea_Lacroix_WMDE, Tarrow, alaa_wmde, Andrawaag, Multichill, Ladsgroup, 
Smalyshev, fgiunchedi, hoo, Daniel_Mietchen, MisterSynergy, Addshore, 
Sjoerddebruin, Aklapper, Lucas_Werkmeister_WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Chicocvenancio, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, WSH1906, 
Lewizho99, Volans, Maathavan, _jensen, rosalieper, Scott_WUaS, 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] [Commented On] T221774: Add Wikidata query service lag to Wikidata maxlag

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 552474 **merged** by jenkins-bot:
  [operations/mediawiki-config@master] wgWikidataOrgQueryServiceMaxLagFactor 60
  
  https://gerrit.wikimedia.org/r/552474

TASK DETAIL
  https://phabricator.wikimedia.org/T221774

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore, gerritbot
Cc: Envlh, Gstupp, Sebotic, Tagishsimon, Liridon, Bugreporter, Magnus, Tpt, 
Pintoch, Lydia_Pintscher, Matthias_Geisler_WMDE, Simon_Villeneuve, 
Lea_Lacroix_WMDE, Tarrow, alaa_wmde, Andrawaag, Multichill, Ladsgroup, 
Smalyshev, fgiunchedi, hoo, Daniel_Mietchen, MisterSynergy, Addshore, 
Sjoerddebruin, Aklapper, Lucas_Werkmeister_WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Chicocvenancio, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, WSH1906, 
Lewizho99, Volans, Maathavan, _jensen, rosalieper, Scott_WUaS, 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] [Commented On] T238901: Wikibase's Special:EntityData should not emit when responding with HTTP code 304

2019-11-22 Thread WMDE-leszek
WMDE-leszek added a comment.


  P9723  is simply the HTML of the 
pure "chrome" from the skin, without any content, right?

TASK DETAIL
  https://phabricator.wikimedia.org/T238901

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: WMDE-leszek
Cc: Ladsgroup, Aklapper, Joe, Addshore, darthmon_wmde, WMDE-leszek, DannyS712, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T237984: Some property labels are not displayed on Item pages

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 551861 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Cache SqlEntityInfoBuilder also based 
on term type
  
  https://gerrit.wikimedia.org/r/551861

TASK DETAIL
  https://phabricator.wikimedia.org/T237984

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Ash_Crow, Addshore, PKM, Moebeus, alaa_wmde, VIGNERON, Aklapper, 
Lydia_Pintscher, Ladsgroup, Lea_Lacroix_WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] T238473: Label for unit isn't displayed correctly, just Q-number

2019-11-22 Thread gerritbot
gerritbot added a comment.


  Change 551861 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Cache SqlEntityInfoBuilder also based 
on term type
  
  https://gerrit.wikimedia.org/r/551861

TASK DETAIL
  https://phabricator.wikimedia.org/T238473

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Moebeus, Ladsgroup, Lydia_Pintscher, Addshore, Aklapper, Kristbaum, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, 
darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
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] [Created] T238918: Add full item title to bridge RegExp and pass to app

2019-11-22 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE created this task.
Lucas_Werkmeister_WMDE added projects: Wikidata, Wikidata-Bridge-Sprint-10.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  To check edit permissions for an item, we need its title, not just its entity 
ID. Since the title is already part of the edit link, we can get it from there.

TASK DETAIL
  https://phabricator.wikimedia.org/T238918

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Aklapper, darthmon_wmde, Michael, DannyS712, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T199121: RFC: Spec for representing multiple content objects per revision (MCR) in XML dumps

2019-11-22 Thread ArielGlenn
ArielGlenn added a comment.


  In T199121#5684237 , 
@daniel wrote:
  
  > In T199121#5683594 , 
@ArielGlenn wrote:
  >
  >> In T199121#5682911 , 
@Nuria wrote:
  >>
  >>> I see this ticket is resolved but the dumps on commons have version  
version="0.10" since from this ticket i gather that the dumps that contain 
those slots are version=11 , are those being produced?
  >>
  >> Not yet. There are unmerged patches yet, and we'll need to announce well 
in advance before rolling out the change.
  >
  > I am not aware of any unmerged patches blocking the use of the 0.11 schema. 
Can you point me to them?
  
  https://gerrit.wikimedia.org/r/#/c/mediawiki/core/+/473222/ which I have not 
looked at for even a second (sorry!)

TASK DETAIL
  https://phabricator.wikimedia.org/T199121

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: ArielGlenn
Cc: Nuria, mako, FaFlo, Halfak, vrandezo, Denny, kchapman, tstarling, awight, 
JAllemandou, hoo, pmiazga, Nemo_bis, brion, Tgr, Aklapper, Fjalapeno, 
ArielGlenn, daniel, darthmon_wmde, DannyS712, Nandana, kostajh, Lahi, Gq86, 
Ramsey-WMF, GoranSMilovanovic, RazeSoldier, Lunewa, QZanden, V4switch, 
LawExplorer, JJMC89, _jensen, rosalieper, Agabi10, D3r1ck01, Scott_WUaS, Izno, 
SBisson, Wong128hk, gnosygnu, Perhelion, Wikidata-bugs, matthiasmullie, aude, 
GWicke, Bawolff, jayvdb, fbstj, Fabrice_Florin, santhosh, Jdforrester-WMF, 
Ladsgroup, Matanya, 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] [Updated] T237319: 502 errors on ATS/8.0.5

2019-11-22 Thread WMDE-leszek
WMDE-leszek added a comment.


  Thanks @elukey and @Joe for translating from leet speak! I've filed T238901 
 about the problem in Wikibase, and 
we'll be looking into fixing the broken 304 response.

TASK DETAIL
  https://phabricator.wikimedia.org/T237319

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: WMDE-leszek
Cc: darthmon_wmde, elukey, Addshore, WMDE-leszek, Ladsgroup, CDanis, Joe, 
Vgutierrez, ema, Nikerabbit, DannyS712, Aklapper, Legado_Shulgin, Nandana, 
Davinaclare77, Qtn1293, Techguru.pc, Lahi, Gq86, GoranSMilovanovic, Th3d3v1ls, 
Hfbn0, QZanden, LawExplorer, Zppix, _jensen, rosalieper, Scott_WUaS, Jonas, 
Wong128hk, Wikidata-bugs, aude, Lydia_Pintscher, faidon, Mbch331, Rxy, Jay8g, 
fgiunchedi
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T199121: RFC: Spec for representing multiple content objects per revision (MCR) in XML dumps

2019-11-22 Thread daniel
daniel added a comment.


  In T199121#5683594 , 
@ArielGlenn wrote:
  
  > In T199121#5682911 , 
@Nuria wrote:
  >
  >> I see this ticket is resolved but the dumps on commons have version  
version="0.10" since from this ticket i gather that the dumps that contain 
those slots are version=11 , are those being produced?
  >
  > Not yet. There are unmerged patches yet, and we'll need to announce well in 
advance before rolling out the change.
  
  I am not aware of any unmerged patches blocking the use of the 0.11 schema. 
Can you point me to them?

TASK DETAIL
  https://phabricator.wikimedia.org/T199121

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: ArielGlenn, daniel
Cc: Nuria, mako, FaFlo, Halfak, vrandezo, Denny, kchapman, tstarling, awight, 
JAllemandou, hoo, pmiazga, Nemo_bis, brion, Tgr, Aklapper, Fjalapeno, 
ArielGlenn, daniel, darthmon_wmde, DannyS712, Nandana, kostajh, Lahi, Gq86, 
Ramsey-WMF, GoranSMilovanovic, RazeSoldier, Lunewa, QZanden, V4switch, 
LawExplorer, JJMC89, _jensen, rosalieper, Agabi10, D3r1ck01, Scott_WUaS, Izno, 
SBisson, Wong128hk, gnosygnu, Perhelion, Wikidata-bugs, matthiasmullie, aude, 
GWicke, Bawolff, jayvdb, fbstj, Fabrice_Florin, santhosh, Jdforrester-WMF, 
Ladsgroup, Matanya, 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] [Retitled] T237525: [stalled] modify Message plugin in order to be able to use parameters

2019-11-22 Thread Matthias_Geisler_WMDE
Matthias_Geisler_WMDE renamed this task from "modify Message plugin in order to 
be able to use parameters" to "[stalled] modify Message plugin in order to be 
able to use parameters".

TASK DETAIL
  https://phabricator.wikimedia.org/T237525

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Matthias_Geisler_WMDE
Cc: Addshore, Aklapper, Michael, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T237525: modify Message plugin in order to be able to use parameters

2019-11-22 Thread Matthias_Geisler_WMDE
Matthias_Geisler_WMDE added a comment.


  Lucas and I decided to stall this ticket until we discussed this with whole 
team, since this gets a certain complexity with the injection and rendering  of 
links. Lucas already left 2 options on story how to achieve this.
  However we also agreed, that this would be a significant change on our 
current architecture, which should be discussed in advance and not in the 
review.

TASK DETAIL
  https://phabricator.wikimedia.org/T237525

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Matthias_Geisler_WMDE
Cc: Addshore, Aklapper, Michael, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Blocker] T235154: show error when editor can't edit the statement because of permission errors on the repository

2019-11-22 Thread Matthias_Geisler_WMDE
Matthias_Geisler_WMDE changed the status of subtask T237525: modify Message 
plugin in order to be able to use parameters from Open to 
Stalled.

TASK DETAIL
  https://phabricator.wikimedia.org/T235154

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Matthias_Geisler_WMDE
Cc: Addshore, Michael, Pablo-WMDE, WMDE-leszek, Lucas_Werkmeister_WMDE, 
Charlie_WMDE, Aklapper, Lydia_Pintscher, darthmon_wmde, DannyS712, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


  1   2   >