[Wikidata-bugs] [Maniphest] T277034: Adjust Value interface in RootStore by adding QuantityValue type to it

2021-03-10 Thread guergana.tzatchkova
guergana.tzatchkova claimed this task.

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

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

To: guergana.tzatchkova
Cc: Aklapper, Michael, maantietaja, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277125: Allow timeout override for pipeline k8s deployments to ci cluster

2021-03-10 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: jeena, gerritbot
Cc: Aklapper, Mstyles, jeena, MPhamWMF, maantietaja, Alter-paule, Beast1978, 
CBogen, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, 
NebulousIris, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Liudvikas, Scott_WUaS, 
Jonas, Xmlizer, thcipriani, abian, jkroll, Wikidata-bugs, Jdouglas, aude, 
Tobias1984, Manybubbles, dduvall, Jdforrester-WMF, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277125: Allow timeout override for pipeline k8s deployments to ci cluster

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670635 had a related patch set uploaded (by Jeena Huneidi; owner: 
Jeena Huneidi):
  [integration/pipelinelib@master] Add helm deploy timeout override
  
  https://gerrit.wikimedia.org/r/670635

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

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

To: jeena, gerritbot
Cc: Aklapper, Mstyles, jeena, MPhamWMF, maantietaja, CBogen, Akuckartz, 
Nandana, NebulousIris, Namenlos314, Lahi, Gq86, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _jensen, rosalieper, 
Liudvikas, Scott_WUaS, Jonas, Xmlizer, thcipriani, abian, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, dduvall, 
Jdforrester-WMF, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277125: Allow timeout override for pipeline k8s deployments to ci cluster

2021-03-10 Thread jeena
jeena updated the task description.

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

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

To: jeena
Cc: Aklapper, Mstyles, jeena, MPhamWMF, maantietaja, CBogen, Akuckartz, 
Nandana, NebulousIris, Namenlos314, Lahi, Gq86, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _jensen, rosalieper, 
Liudvikas, Scott_WUaS, Jonas, Xmlizer, thcipriani, abian, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, dduvall, 
Jdforrester-WMF, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T186161: What to do if the WDQS does not synchronise with Wikibase?

2021-03-10 Thread Superraptor123
Superraptor123 added a comment.
Restricted Application added a project: wdwb-tech-focus.


  @Louperivois I've run into the issue of `docker_compose_files_wdqs-updater_1` 
crashing and restarting constantly as well.
  
  I started to follow your instructions having the following in my 
`docker-compose.yml`:
  
services:
  wikibase:
image: wikibase/wikibase:1.35-bundle
links:
  - mysql
ports:
# CONFIG - Change the 8181 here to expose Wikibase & MediaWiki on a 
different port
 - "8181:80"
volumes:
  - mediawiki-images-data:/var/www/html/images
  - quickstatements-data:/quickstatements/data
depends_on:
- mysql
- elasticsearch
restart: unless-stopped
networks:
  default:
aliases:
 - wikibase.svc
 # CONFIG - Add your real wikibase hostname here, only for internal 
names and when NOT terminating SSL outside the container.
 - localhost:8181
environment:
  - DB_SERVER=mysql.svc:3306
  - MW_ELASTIC_HOST=elasticsearch.svc
  - MW_ELASTIC_PORT=9200
  # CONFIG - Change the default values below
  - MW_ADMIN_NAME=WikibaseAdmin
  - MW_ADMIN_PASS=WikibaseDockerAdminPass
  - MW_ADMIN_EMAIL=ad...@example.com
  - MW_WG_SECRET_KEY=secretkey
  # CONFIG - Change the default values below (should match mysql values 
in this file)
  - DB_USER=wikiuser
  - DB_PASS=sqlpass
  - DB_NAME=my_wiki
  - QS_PUBLIC_SCHEME_HOST_AND_PORT=http://localhost:9191
  mysql:
image: mariadb:10.3
restart: unless-stopped
volumes:
  - mediawiki-mysql-data:/var/lib/mysql
environment:
  MYSQL_RANDOM_ROOT_PASSWORD: 'yes'
  # CONFIG - Change the default values below (should match values 
passed to wikibase)
  MYSQL_DATABASE: 'my_wiki'
  MYSQL_USER: 'wikiuser'
  MYSQL_PASSWORD: 'sqlpass'
networks:
  default:
aliases:
 - mysql.svc
  wdqs-frontend:
image: wikibase/wdqs-frontend:latest
restart: unless-stopped
ports:
# CONFIG - Change the 8282 here to expose the Query Service UI on a 
different port
 - "8282:80"
depends_on:
- wdqs-proxy
networks:
  default:
aliases:
 - wdqs-frontend.svc
environment:
  - WIKIBASE_HOST=wikibase.svc
  - WDQS_HOST=wdqs-proxy.svc
  wdqs:
image: wikibase/wdqs:0.3.40
restart: unless-stopped
volumes:
  - query-service-data:/wdqs/data
command: /runBlazegraph.sh
networks:
  default:
aliases:
 - wdqs.svc
environment:
  - WIKIBASE_HOST=localhost:8181
  #wikibase.svc
  - WDQS_HOST=wdqs.svc
  - WDQS_PORT=
expose:
  - 
  wdqs-proxy:
image: wikibase/wdqs-proxy
restart: unless-stopped
environment:
  - PROXY_PASS_HOST=wdqs.svc:
ports:
 - "8989:80"
depends_on:
- wdqs
networks:
  default:
aliases:
 - wdqs-proxy.svc
  wdqs-updater:
image: wikibase/wdqs:0.3.40
restart: unless-stopped
command: /runUpdate.sh
depends_on:
- wdqs
- wikibase
networks:
  default:
aliases:
 - wdqs-updater.svc
environment:
 - WIKIBASE_HOST=localhost:8181
 #wikibase.svc
 - WDQS_HOST=wdqs.svc
 - WDQS_PORT=
  elasticsearch:
image: wikibase/elasticsearch:6.5.4-extra
restart: unless-stopped
networks:
  default:
aliases:
 - elasticsearch.svc
environment:
  discovery.type: single-node
  ES_JAVA_OPTS: "-Xms512m -Xmx512m"
  # CONFING, in order to not load quickstatements then remove this entire 
section
  quickstatements:
image: wikibase/quickstatements:latest
ports:
 - "9191:80"
depends_on:
 - wikibase
volumes:
 - quickstatements-data:/quickstatements/data
networks:
  default:
aliases:
 - quickstatements.svc
environment:
  - QS_PUBLIC_SCHEME_HOST_AND_PORT=http://localhost:9191
  - WB_PUBLIC_SCHEME_HOST_AND_PORT=http://localhost:8181
  - WIKIBASE_SCHEME_AND_HOST=http://wikibase.svc
  - WB_PROPERTY_NAMESPACE=122
  - "WB_PROPERTY_PREFIX=Property:"
  - WB_ITEM_NAMESPACE=120
  - "WB_ITEM_PREFIX=Item:"
  
  However, upon running `docker-compose stop`, then `docker-compose up -d`, 
opening a bash container in  `wikibase-docker_wdqs_1`, and running the above 
command as:
  
./runUpdate.sh -h http://$WDQS_HOST:$WDQS_PORT -- --wik

[Wikidata-bugs] [Maniphest] T277125: Allow timeout override for pipeline k8s deployments to ci cluster

2021-03-10 Thread jeena
jeena created this task.
jeena added projects: Wikidata-Query-Service, Release-Engineering-Team 
(Pipeline), Release Pipeline.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  The flink-rdf-streamer chart has pods that take longer to get ready than the 
defined timeout window passed to helm during k8s deployment by the pipeline. 
Allow the timeout window to be defined in a project's .pipeline/config.yaml.

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

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

To: jeena
Cc: Aklapper, Mstyles, jeena, MPhamWMF, maantietaja, CBogen, Akuckartz, 
Nandana, NebulousIris, Namenlos314, Lahi, Gq86, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _jensen, rosalieper, 
Liudvikas, Scott_WUaS, Jonas, Xmlizer, thcipriani, abian, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, dduvall, 
Jdforrester-WMF, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277108: Query service throws exception for non-English wikis

2021-03-10 Thread JeroenDeDauw
JeroenDeDauw created this task.
JeroenDeDauw added projects: Wikidata-Query-Service, Wikibase.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  The query service fails when it gets updates from a non-English wiki, 
presumably since it is assuming "Special:" and breaks when it gets an 
internationalized version like "Spezial".
  
  (Probably relevant code as identified by @Addshore: 
https://github.com/wikimedia/wikidata-query-rdf/blob/d52b50c57b739ca790726b4e72095ac3a06cfbbb/common/src/main/java/org/wikidata/query/rdf/common/uri/DefaultUrisScheme.java#L76-L77)
  
dnb_wdqs-updater   | 22:48:12.839 [main] INFO  
o.w.q.r.t.change.RecentChangesPoller - Got 1 changes, from 
Q1@10@20210310224811|10 to Q1@10@20210310224811|10
dnb_wdqs-updater   | 22:48:18.029 [update 3] INFO  
o.wikidata.query.rdf.tool.rdf.Munger - Unrecognized subjects: 
[https://test42.wikibase.wiki/wiki/Spezial:EntityData/Q1] while processing 
https://test42.wikibase.wiki/entity/Q1.  Expected only sitelinks and subjects 
starting with https://test42.wikibase.wiki/wiki/Special:EntityData/ and 
[https://test42.wikibase.wiki/entity/]
dnb_wdqs-updater   | 22:48:18.029 [update 3] INFO  
o.wikidata.query.rdf.tool.rdf.Munger - Unrecognized statement: 
s:https://test42.wikibase.wiki/wiki/Spezial:EntityData/Q1 
p:http://www.w3.org/1999/02/22-rdf-syntax-ns#type o:http://schema.org/Dataset
dnb_wdqs-updater   | 22:48:18.029 [update 3] INFO  
o.wikidata.query.rdf.tool.rdf.Munger - Unrecognized statement: 
s:https://test42.wikibase.wiki/wiki/Spezial:EntityData/Q1 
p:http://schema.org/about o:https://test42.wikibase.wiki/entity/Q1
dnb_wdqs-updater   | 22:48:18.029 [update 3] INFO  
o.wikidata.query.rdf.tool.rdf.Munger - Unrecognized statement: 
s:https://test42.wikibase.wiki/wiki/Spezial:EntityData/Q1 
p:http://creativecommons.org/ns#license 
o:http://creativecommons.org/publicdomain/zero/1.0/
dnb_wdqs-updater   | 22:48:18.029 [update 3] INFO  
o.wikidata.query.rdf.tool.rdf.Munger - Unrecognized statement: 
s:https://test42.wikibase.wiki/wiki/Spezial:EntityData/Q1 
p:http://schema.org/softwareVersion 
o:"1.0.0"^^
dnb_wdqs-updater   | 22:48:18.029 [update 3] INFO  
o.wikidata.query.rdf.tool.rdf.Munger - Unrecognized statement: 
s:https://test42.wikibase.wiki/wiki/Spezial:EntityData/Q1 
p:http://schema.org/version o:"10"^^
dnb_wdqs-updater   | 22:48:18.029 [update 3] INFO  
o.wikidata.query.rdf.tool.rdf.Munger - Unrecognized statement: 
s:https://test42.wikibase.wiki/wiki/Spezial:EntityData/Q1 
p:http://schema.org/dateModified 
o:"2021-03-10T22:48:11Z"^^
dnb_wdqs-updater   | 22:48:18.029 [update 3] INFO  
o.wikidata.query.rdf.tool.rdf.Munger - Unrecognized statement: 
s:https://test42.wikibase.wiki/wiki/Spezial:EntityData/Q1 
p:http://wikiba.se/ontology#statements 
o:"2"^^
dnb_wdqs-updater   | 22:48:18.029 [update 3] INFO  
o.wikidata.query.rdf.tool.rdf.Munger - Unrecognized statement: 
s:https://test42.wikibase.wiki/wiki/Spezial:EntityData/Q1 
p:http://wikiba.se/ontology#identifiers 
o:"0"^^
dnb_wdqs-updater   | 22:48:18.029 [update 3] INFO  
o.wikidata.query.rdf.tool.rdf.Munger - Unrecognized statement: 
s:https://test42.wikibase.wiki/wiki/Spezial:EntityData/Q1 
p:http://wikiba.se/ontology#sitelinks 
o:"0"^^
dnb_wdqs-updater   | 22:48:18.030 [update 3] WARN  
org.wikidata.query.rdf.tool.Updater - Contained error syncing.  Giving up on Q1
dnb_wdqs-updater   | 
org.wikidata.query.rdf.tool.exception.ContainedException: Didn't get a revision 
id for [(https://test42.wikibase.wiki/entity/Q1, 
http://www.w3.org/2000/01/rdf-schema#label, "MyItem"@en), 
(https://test42.wikibase.wiki/entity/Q1, 
http://www.w3.org/2000/01/rdf-schema#label, "GermanLabel"@de), 
(https://test42.wikibase.wiki/entity/Q1, 
https://test42.wikibase.wiki/prop/direct/P1, 
"pewpew"^^), 
(https://test42.wikibase.wiki/entity/Q1, 
https://test42.wikibase.wiki/prop/direct/P1, 
"hi"^^), 
(https://test42.wikibase.wiki/entity/Q1, https://test42.wikibase.wiki/prop/P1, 
https://test42.wikibase.wiki/entity/statement/Q1-b58a5bb4-48d3-c7df-db01-f6e289c30525),
 
(https://test42.wikibase.wiki/entity/statement/Q1-b58a5bb4-48d3-c7df-db01-f6e289c30525,
 http://www.w3.org/1999/02/22-rdf-syntax-ns#type, 
http://wikiba.se/ontology#BestRank), 
(https://test42.wikibase.wiki/entity/statement/Q1-b58a5bb4-48d3-c7df-db01-f6e289c30525,
 http://wikiba.se/ontology#rank, http://wikiba.se/ontology#NormalRank), 
(https://test42.wikibase.wiki/entity/statement/Q1-b58a5bb4-48d3-c7df-db01-f6e289c30525,
 https://test42.wikibase.wiki/prop/statement/P1, 
"pewpew"^^

[Wikidata-bugs] [Maniphest] T266507: TypeError: baseHref is undefined on wikidata.org search

2021-03-10 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.36-notes (1.36.0-wmf.35; 2021-03-16).

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

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

To: Jdlrobson, ReleaseTaggerBot
Cc: Umherirrender, Aklapper, Jdlrobson, Mengs21, maantietaja, EgbeRef, 
NavinRizwi, Vaibhav0199, Akuckartz, Tinzawoo533, darthmon_wmde, Onmir, 
DannyS712, Nandana, Mh-3110, Amorymeltzer, Lahi, Gq86, GoranSMilovanovic, 
Jayprakash12345, QZanden, enigmaeth, rohitt, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Jonas, Dixtosa, Verdy_p, abian, Wikidata-bugs, aude, Dinoguy1000, 
Lydia_Pintscher, Jdforrester-WMF, Addshore, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T266507: TypeError: baseHref is undefined on wikidata.org search

2021-03-10 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: Jdlrobson, Maintenance_bot
Cc: Umherirrender, Aklapper, Jdlrobson, Mengs21, maantietaja, EgbeRef, 
NavinRizwi, Vaibhav0199, Akuckartz, Tinzawoo533, darthmon_wmde, Onmir, 
DannyS712, Nandana, Mh-3110, Amorymeltzer, Lahi, Gq86, GoranSMilovanovic, 
Jayprakash12345, QZanden, enigmaeth, rohitt, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Jonas, Dixtosa, Verdy_p, abian, Wikidata-bugs, aude, Dinoguy1000, 
Lydia_Pintscher, Jdforrester-WMF, Addshore, Mbch331, Jay8g, Alter-paule, 
Beast1978, Un1tY, Hook696, Kent7301, joker88john, CucyNoiD, Gaboe420, 
Giuliamocci, Cpaulf30, Af420, Bsandipan, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T266507: TypeError: baseHref is undefined on wikidata.org search

2021-03-10 Thread Jdlrobson
Jdlrobson closed this task as "Resolved".
Jdlrobson claimed this task.
Jdlrobson added a comment.


  Will reopen next thursday if persisting

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

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

To: Jdlrobson
Cc: Umherirrender, Aklapper, Jdlrobson, Mengs21, maantietaja, Alter-paule, 
EgbeRef, NavinRizwi, Beast1978, Un1tY, Vaibhav0199, Akuckartz, Hook696, 
Tinzawoo533, darthmon_wmde, Kent7301, Onmir, joker88john, DannyS712, CucyNoiD, 
Nandana, Gaboe420, Mh-3110, Amorymeltzer, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, GoranSMilovanovic, Jayprakash12345, QZanden, enigmaeth, 
rohitt, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Jonas, Dixtosa, Verdy_p, abian, Wikidata-bugs, aude, Dinoguy1000, 
Lydia_Pintscher, Jdforrester-WMF, Addshore, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T266507: TypeError: baseHref is undefined on wikidata.org search

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670558 **merged** by jenkins-bot:
  [mediawiki/core@master] Defensively program for action attribute
  
  https://gerrit.wikimedia.org/r/670558

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

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

To: gerritbot
Cc: Umherirrender, Aklapper, Jdlrobson, Mengs21, maantietaja, Alter-paule, 
EgbeRef, NavinRizwi, Beast1978, Un1tY, Vaibhav0199, Akuckartz, Hook696, 
Tinzawoo533, darthmon_wmde, Kent7301, Onmir, joker88john, DannyS712, CucyNoiD, 
Nandana, Gaboe420, Mh-3110, Amorymeltzer, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, GoranSMilovanovic, Jayprakash12345, QZanden, enigmaeth, 
rohitt, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Jonas, Dixtosa, Verdy_p, abian, Wikidata-bugs, aude, Dinoguy1000, 
Lydia_Pintscher, Jdforrester-WMF, Addshore, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277089: WikibaseLexeme: Call to a member function getLemmas() on null

2021-03-10 Thread Umherirrender
Umherirrender added a comment.
Restricted Application added a project: wdwb-tech-focus.


/** @var Lexeme $lexeme */
$lexeme = $this->entityLookup->getEntity( $id );
'@phan-var Lexeme $lexeme';

$lemmas = $lexeme->getLemmas(); # 

[Wikidata-bugs] [Maniphest] T275102: Gamified Knowledge Base Completion Plugin for Wikibase/Wikidata

2021-03-10 Thread srishakatux
srishakatux added a comment.


  @DD063520 @AnBo-de @Gabinguo @Aleksandr.perevalov Could you all share with me 
your email at sse...@wikimedia.org so I can invite you to sign up on the GSoC 
site as a mentor?

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

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

To: srishakatux
Cc: Imnitishng, Kemsguy, D063520, srishakatux, Bavisettinarayan, Pavithraes, 
Gopavasanth, Lydia_Pintscher, Aleksandr.perevalov, Dhairya3124, Gabinguo, 
Aklapper, DD063520, AnBo-de, Bharatkhatri351, maantietaja, Karma2902, 
Akuckartz, Madhurgupta10, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, 
Gabrielchl, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T258628: Fatal error: Call to getFullURL() on null (in Wikibase repo EntityDataRequestHandler.php)

2021-03-10 Thread Umherirrender
Umherirrender added a comment.


  There is T273506  which has a 
deeper stack trace as this, but that possible only because the code has gets 
some type hints now failing instead of the null. I would assume it is a 
duplicate

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

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

To: Umherirrender
Cc: Umherirrender, Jakob_WMDE, Addshore, Tonina_Zhelyazkova_WMDE, Ladsgroup, 
mdaniels5757, jeena, Aklapper, maantietaja, Akuckartz, darthmon_wmde, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Jonas, Verdy_p, abian, Wikidata-bugs, aude, Ricordisamoa, 
Lydia_Pintscher, Jdforrester-WMF, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T261977: Add tool tip for editing Wikidata descriptions in the iOS app

2021-03-10 Thread Tsevener
Tsevener added a comment.


  https://github.com/wikimedia/wikipedia-ios/pull/3883

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

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

To: Tsevener
Cc: Tsevener, GhostInTheMachine, cmadeo, LGoto, Aklapper, Johan, maantietaja, 
Akuckartz, Ddurigon, Mateo1977, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, Taquo, LawExplorer, catalandres, _jensen, rosalieper, Scott_WUaS, 
Karthik_sripal, abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277089: WikibaseLexeme: Call to a member function getLemmas() on null

2021-03-10 Thread brennen
brennen created this task.
brennen added projects: Wikimedia-production-error, Wikidata-Campsite, Wikidata 
Lexicographical data, User-brennen.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  Error
  -
  
  `MediaWiki version:`  **`1.36.0-wmf.33`**
  
  name=message
Call to a member function getLemmas() on null
  
  
  
  Impact
  --
  
  Certain API data inaccessible.  Reproducible for the items that can be found 
in the log under this request ID.
  
  Notes
  -
  
  6 of these in the last 12 hours or so.

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

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

To: brennen
Cc: brennen, maantietaja, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, 
Bodhisattwa, Scott_WUaS, Jonas, Verdy_p, abian, Wikidata-bugs, aude, 
Lydia_Pintscher, Jdforrester-WMF, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread RKemper
RKemper added a comment.


  Finished rolling back to the previous iteration of `wdqs.discovery.wmnet` 
cert since we're now going to create a net-new cert `wdqs1009.eqiad.wmnet` for 
`wdqs-test`

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

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

To: RKemper
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2021-03-10T19:32:17Z]  
T266470  `ryankemper@cumin1001:~$ 
sudo -E cumin 'A:wdqs-all' 'sudo enable-puppet "revoking old cert and 
generating new one with new alt_names - T266470 - root"'` && 
`ryankemper@cumin1001:~$ sudo -E cumin 'A:wdqs-all' 'sudo run-puppet-agent'`

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

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

To: RKemper, Stashbot
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T268643: Add "footer"

2021-03-10 Thread Charlie_WMDE
Charlie_WMDE removed Charlie_WMDE as the assignee of this task.
Charlie_WMDE updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2021-03-10T19:28:32Z]  
T266470  `ryankemper@wdqs1004:~$ 
sudo enable-puppet "revoking old cert and generating new one with new alt_names 
- T266470 - root"` && `sudo run-puppet-agent`

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

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

To: RKemper, Stashbot
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2021-03-10T19:27:18Z]  
T266470  `/srv/private` commit SHA 
for this change is `45852086679616bccb5bba3dd6396082b0f25a3d`

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

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

To: RKemper, Stashbot
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2021-03-10T19:26:23Z]  
T266470  `sudo chown -Rv 
gitpuppet:gitpuppet 
/srv/private/modules/secret/secrets/certificates/wdqs.discovery.wmnet/` && 
`sudo chown -v  gitpuppet:gitpuppet 
/srv/private/modules/secret/secrets/ssl/wdqs.discovery.wmnet.key`

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

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

To: RKemper, Stashbot
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2021-03-10T19:23:58Z]  
T266470  Deployed 
https://gerrit.wikimedia.org/r/c/operations/puppet/+/670562 (copies over new 
pubkey)

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

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

To: RKemper, Stashbot
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670562 **merged** by Ryan Kemper:
  [operations/puppet@production] wdqs: revert wdqs.discovery.wmnet changes
  
  https://gerrit.wikimedia.org/r/670562

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

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

To: RKemper, gerritbot
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670562 had a related patch set uploaded (by Ryan Kemper; owner: Ryan 
Kemper):
  [operations/puppet@production] wdqs: revert wdqs.discovery.wmnet changes
  
  https://gerrit.wikimedia.org/r/670562

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

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

To: RKemper, gerritbot
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread RKemper
RKemper added a comment.


Certificate(wdqs.discovery.wmnet, 
authorities=[PuppetCA(puppetmaster1001.eqiad.wmnet_8140)]):

/srv/private/modules/secret/secrets/certificates/wdqs.discovery.wmnet/wdqs.discovery.wmnet.key.private.pem:
 PRESENT (mtime: 2019-10-21T08:11:52.741452)

/srv/private/modules/secret/secrets/certificates/wdqs.discovery.wmnet/wdqs.discovery.wmnet.key.public.pem:
 PRESENT (mtime: 2019-10-21T08:11:52.745452)

/srv/private/modules/secret/secrets/certificates/wdqs.discovery.wmnet/wdqs.discovery.wmnet.crt.pem:
 PRESENT (mtime: 2021-03-10T19:17:36.206506)

/srv/private/modules/secret/secrets/certificates/wdqs.discovery.wmnet/ca.crt.pem:
 PRESENT (mtime: 2019-12-10T14:26:42.496697)

/srv/private/modules/secret/secrets/certificates/wdqs.discovery.wmnet/wdqs.discovery.wmnet.keystore.p12:
 PRESENT (mtime: 2021-03-10T19:17:36.226506)

/srv/private/modules/secret/secrets/certificates/wdqs.discovery.wmnet/wdqs.discovery.wmnet.keystore.jks:
 PRESENT (mtime: 2021-03-10T19:17:38.030503)

/srv/private/modules/secret/secrets/certificates/wdqs.discovery.wmnet/truststore.jks:
 PRESENT (mtime: 2021-03-10T19:17:38.938502)


ryankemper@puppetmaster1001:/srv/private$ git status
On branch master
Changes not staged for commit:
  (use "git add ..." to update what will be committed)
  (use "git checkout -- ..." to discard changes in working directory)

modified:   
modules/secret/secrets/certificates/certificate.manifests.d/wdqs.certs.yaml
modified:   
modules/secret/secrets/certificates/wdqs.discovery.wmnet/truststore.jks
modified:   
modules/secret/secrets/certificates/wdqs.discovery.wmnet/wdqs.discovery.wmnet.crt.pem
modified:   
modules/secret/secrets/certificates/wdqs.discovery.wmnet/wdqs.discovery.wmnet.csr.pem
modified:   
modules/secret/secrets/certificates/wdqs.discovery.wmnet/wdqs.discovery.wmnet.keystore.jks
modified:   
modules/secret/secrets/certificates/wdqs.discovery.wmnet/wdqs.discovery.wmnet.keystore.p12

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

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

To: RKemper
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2021-03-10T19:18:17Z]  
T266470  `sudo cergen -c 'wdqs.*' 
--generate --base-path /srv/private/modules/secret/secrets/certificates 
/srv/private/modules/secret/secrets/certificates/certificate.manifests.d`

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

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

To: RKemper, Stashbot
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2021-03-10T19:16:45Z]  
T266470  `sudo rm -fv 
certificates/wdqs.discovery.wmnet/wdqs.discovery.wmnet.crt.pem 
certificates/wdqs.discovery.wmnet/wdqs.discovery.wmnet.csr.pem 
certificates/wdqs.discovery.wmnet/wdqs.discovery.wmnet.keystore.jks 
certificates/wdqs.discovery.wmnet/wdqs.discovery.wmnet.keystore.p12 
certificates/wdqs.discovery.wmnet/truststore.jks` (full paths not provided to 
fit the IRC line)

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

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

To: RKemper, Stashbot
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T268643: Add "footer"

2021-03-10 Thread Charlie_WMDE
Charlie_WMDE updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2021-03-10T19:15:43Z]  
T266470  `sudo puppet cert clean 
wdqs.discovery.wmnet`

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

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

To: RKemper, Stashbot
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2021-03-10T19:14:27Z]  
T266470  on `ryankemper@cumin1001`: 
`sudo -E cumin 'A:wdqs-all' 'sudo disable-puppet "revoking old cert and 
generating new one with new alt_names - T266470"'`

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

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

To: RKemper, Stashbot
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T266470: Expose wdqs1009 to wdqs users and gather feedback

2021-03-10 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2021-03-10T19:14:18Z]  
T266470  Temporarily disabling 
puppet on all `wdqs*` hosts in preparation for `wdqs.discovery.wmnet` 
certificate revocation

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

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

To: RKemper, Stashbot
Cc: Gehel, Lea_Lacroix_WMDE, dcausse, Aklapper, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, abian, 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] T268643: Add "footer"

2021-03-10 Thread Charlie_WMDE
Charlie_WMDE updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] T267010: Create BouncingDots loader mixin

2021-03-10 Thread bete
bete added a comment.


  PR can be found here 

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

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

To: bete
Cc: Michael, Aklapper, Sarai-WMDE, maantietaja, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T266507: TypeError: baseHref is undefined on wikidata.org search

2021-03-10 Thread Jdlrobson
Jdlrobson added a comment.


  I can replicate this by  running the code 
`$('#searchform').removeAttr('action')` and focusing the search area. We run 
gadgets so highly likely a gadget is doing that. Some defensive programming is 
low cost and will avoid this error.

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

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

To: Jdlrobson
Cc: Umherirrender, Aklapper, Jdlrobson, Mengs21, maantietaja, Alter-paule, 
EgbeRef, NavinRizwi, Beast1978, Un1tY, Vaibhav0199, Akuckartz, Hook696, 
Tinzawoo533, darthmon_wmde, Kent7301, Onmir, joker88john, DannyS712, CucyNoiD, 
Nandana, Gaboe420, Mh-3110, Amorymeltzer, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, GoranSMilovanovic, Jayprakash12345, QZanden, enigmaeth, 
rohitt, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Jonas, Dixtosa, Verdy_p, abian, Wikidata-bugs, aude, Dinoguy1000, 
Lydia_Pintscher, Jdforrester-WMF, Addshore, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T266507: TypeError: baseHref is undefined on wikidata.org search

2021-03-10 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: gerritbot
Cc: Umherirrender, Aklapper, Jdlrobson, Mengs21, maantietaja, Alter-paule, 
EgbeRef, NavinRizwi, Beast1978, Un1tY, Vaibhav0199, Akuckartz, Hook696, 
Tinzawoo533, darthmon_wmde, Kent7301, Onmir, joker88john, DannyS712, CucyNoiD, 
Nandana, Gaboe420, Mh-3110, Amorymeltzer, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, GoranSMilovanovic, Jayprakash12345, QZanden, enigmaeth, 
rohitt, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Jonas, Dixtosa, Verdy_p, abian, Wikidata-bugs, aude, Dinoguy1000, 
Lydia_Pintscher, Jdforrester-WMF, Addshore, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T266507: TypeError: baseHref is undefined on wikidata.org search

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670558 had a related patch set uploaded (by Jdlrobson; owner: 
Jdlrobson):
  [mediawiki/core@master] Defensively program for action attribute
  
  https://gerrit.wikimedia.org/r/670558

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

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

To: gerritbot
Cc: Umherirrender, Aklapper, Jdlrobson, Mengs21, maantietaja, EgbeRef, 
NavinRizwi, Vaibhav0199, Akuckartz, Tinzawoo533, darthmon_wmde, Onmir, 
DannyS712, Nandana, Mh-3110, Amorymeltzer, Lahi, Gq86, GoranSMilovanovic, 
Jayprakash12345, QZanden, enigmaeth, rohitt, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Jonas, Dixtosa, Verdy_p, abian, Wikidata-bugs, aude, Dinoguy1000, 
Lydia_Pintscher, Jdforrester-WMF, Addshore, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277021: Stop calling WikibaseSettings::getRepoSettings()/getClientSettings()

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670555 had a related patch set uploaded (by Itamar Givon; owner: 
Itamar Givon):
  [mediawiki/extensions/Wikibase@master] WikibaseRepo: Get settings from 
service container
  
  https://gerrit.wikimedia.org/r/670555

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

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

To: ItamarWMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277061: Many WikibaseLexeme tests suddenly failing in quibble-vendor-mysql-php72-{selenium, noselenium}-docker

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  In T277061#6901645 , 
@Lucas_Werkmeister_WMDE wrote:
  
  > I haven’t been able to reproduce the QUnit failures locally, but I can 
reproduce the issue that a lexeme page won’t properly load its editing UI when 
not in debug mode. There aren’t any errors in the console, though.
  
  …and indeed, `git bisect` places the blame for this on Update 
wikimedia/minify to v2.2.0 
 (T272882: Upgrade 
ResourceLoader JS minifier to support ES6 
).
  
  (Note for others testing this: make sure you clear your cache(s) regularly, 
since ResourceLoader seems to cache the minified JS. I restarted memcached and, 
for APCu, apache2, after each `git bisect` step, in addition to running 
`composer update`.)

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

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

To: Lucas_Werkmeister_WMDE
Cc: Krinkle, Catrope, WMDE-leszek, Lucas_Werkmeister_WMDE, Aklapper, 
maantietaja, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, thcipriani, 
abian, Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, Jay8g, hashar
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277033: Allow keyboard-focused components to display error state

2021-03-10 Thread Sarai-WMDE
Sarai-WMDE renamed this task from "Allow components to display "focused error" 
state" to "Allow keyboard-focused components to display error state".
Sarai-WMDE updated the task description.

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

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

To: Sarai-WMDE
Cc: Volker_E, Aklapper, Sarai-WMDE, maantietaja, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
abian, 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] T277033: Allow components to display "focused error" state

2021-03-10 Thread Sarai-WMDE
Sarai-WMDE added a comment.


  Thanks, V! I'll clarify that in the ticket

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

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

To: Sarai-WMDE
Cc: Volker_E, Aklapper, Sarai-WMDE, maantietaja, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
abian, 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] T277061: Many WikibaseLexeme tests suddenly failing in quibble-vendor-mysql-php72-{selenium, noselenium}-docker

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  I haven’t been able to reproduce the QUnit failures locally, but I can 
reproduce the issue that a lexeme page won’t properly load its editing UI when 
not in debug mode. There aren’t any errors in the console, though.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Krinkle, Catrope, WMDE-leszek, Lucas_Werkmeister_WMDE, Aklapper, 
maantietaja, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, thcipriani, 
abian, Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, Jay8g, hashar
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T273095: Deploy Helm Chart

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 667034 **merged** by jenkins-bot:
  [operations/deployment-charts@master] add new updater job properties
  
  https://gerrit.wikimedia.org/r/667034

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

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

To: Mstyles, gerritbot
Cc: Aklapper, Gehel, akosiaris, Mstyles, MPhamWMF, maantietaja, Alter-paule, 
Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, 
Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, 
Xmlizer, abian, 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] T277061: Many WikibaseLexeme tests suddenly failing in quibble-vendor-mysql-php72-{selenium, noselenium}-docker

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added subscribers: Catrope, Krinkle.
Lucas_Werkmeister_WMDE added a comment.


  > The QUnit failures seem to disappear when ResourceLoader debug mode is 
enabled.
  
  That makes me wonder if this could be related to T272882: Upgrade 
ResourceLoader JS minifier to support ES6 
 or T272104: Allow modules to opt-in 
to ES6 syntax support , which have 
changes merged at times roughly matching the beginning of the CI failures, if 
I’m not mistaken.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Krinkle, Catrope, WMDE-leszek, Lucas_Werkmeister_WMDE, Aklapper, 
maantietaja, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, thcipriani, 
abian, Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, Jay8g, hashar
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277061: Many WikibaseLexeme tests suddenly failing in quibble-vendor-mysql-php72-{selenium, noselenium}-docker

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  The QUnit failures seem to disappear when ResourceLoader debug mode is 
enabled.
  
  In T277061#6901361 , 
@gerritbot wrote:
  
  > Change 670503 had a related patch set uploaded (by Lucas Werkmeister 
(WMDE); owner: Lucas Werkmeister (WMDE)):
  > [mediawiki/extensions/WikibaseLexeme@master] DNM: empty change to test CI
  >
  > https://gerrit.wikimedia.org/r/670503
  
  This change Depends-On the MediaWiki core change that enables debug mode, and 
the noselenium-docker build succeeded: 
https://integration.wikimedia.org/ci/job/quibble-vendor-mysql-php72-noselenium-docker/68555/console
  
  In T277061#6901436 , 
@gerritbot wrote:
  
  > Change 670510 had a related patch set uploaded (by Lucas Werkmeister 
(WMDE); owner: Lucas Werkmeister (WMDE)):
  > [mediawiki/extensions/WikibaseLexeme@master] DNM: empty change to test CI
  >
  > https://gerrit.wikimedia.org/r/670510
  
  This change has no Depends-On, and the noselenium-docker build failed: 
https://integration.wikimedia.org/ci/job/quibble-vendor-mysql-php72-noselenium-docker/68559/console

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

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

To: Lucas_Werkmeister_WMDE
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, 
Beast1978, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, DannyS712, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, thcipriani, abian, Wikidata-bugs, 
aude, Jdforrester-WMF, Mbch331, Jay8g, hashar
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T275780: Update Data Bridge's Storybook major version from 5.3.21 to 6

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670511 had a related patch set uploaded (by Jakob; owner: Jakob):
  [mediawiki/extensions/Wikibase@master] bridge: update to storybook 6
  
  https://gerrit.wikimedia.org/r/670511

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

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

To: Jakob_WMDE, gerritbot
Cc: Jakob_WMDE, Addshore, Tonina_Zhelyazkova_WMDE, Aklapper, maantietaja, 
Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, Kent7301, 
alaa_wmde, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, 
Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, abian, 
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] T277061: Many WikibaseLexeme tests suddenly failing in quibble-vendor-mysql-php72-{selenium, noselenium}-docker

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670510 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/WikibaseLexeme@master] DNM: empty change to test CI
  
  https://gerrit.wikimedia.org/r/670510

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

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

To: gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, 
Beast1978, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, DannyS712, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, thcipriani, abian, Wikidata-bugs, 
aude, Jdforrester-WMF, Mbch331, Jay8g, hashar
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277061: Many WikibaseLexeme tests suddenly failing in quibble-vendor-mysql-php72-{selenium, noselenium}-docker

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Looking at the screenshot of one of the failed selenium tests:
  F34149943: can-add-representation.png 

  I notice that there’s an “add statements” link for the form, but no UI 
elements to edit the lexeme header, no “add statements” link on the lexeme, no 
“add sense” or “add form” links, and no UI elements to edit the form elements. 
I guess some JS initialization isn’t working? That might also explain the 
“Cannot read property 'replace' of undefined” errors in QUnit.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, DannyS712, CucyNoiD, Nandana, 
Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, thcipriani, abian, Wikidata-bugs, aude, 
Jdforrester-WMF, Mbch331, Jay8g, hashar
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277061: Many WikibaseLexeme tests suddenly failing in quibble-vendor-mysql-php72-{selenium, noselenium}-docker

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670503 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/WikibaseLexeme@master] DNM: empty change to test CI
  
  https://gerrit.wikimedia.org/r/670503

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

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

To: gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, DannyS712, CucyNoiD, Nandana, 
Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, thcipriani, abian, Wikidata-bugs, aude, 
Jdforrester-WMF, Mbch331, Jay8g, hashar
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277061: Many WikibaseLexeme tests suddenly failing in quibble-vendor-mysql-php72-{selenium, noselenium}-docker

2021-03-10 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, DannyS712, CucyNoiD, Nandana, 
Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, thcipriani, abian, Wikidata-bugs, aude, 
Jdforrester-WMF, Mbch331, Jay8g, hashar
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277061: Many WikibaseLexeme tests suddenly failing in quibble-vendor-mysql-php72-{selenium, noselenium}-docker

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670502 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/core@master] DNM: run QUnit tests in ResourceLoader debug mode
  
  https://gerrit.wikimedia.org/r/670502

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

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

To: gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Akuckartz, DannyS712, 
Nandana, Lahi, Gq86, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, thcipriani, abian, Wikidata-bugs, aude, 
Jdforrester-WMF, Mbch331, Jay8g, hashar
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277021: Stop calling WikibaseSettings::getRepoSettings()/getClientSettings()

2021-03-10 Thread ItamarWMDE
ItamarWMDE claimed this task.

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

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

To: ItamarWMDE
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277060: Move the Query Builder repository to Gerrit

2021-03-10 Thread Michael
Michael updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] T277025: Move WikibaseRepo ItemTermStoreWriter to service container

2021-03-10 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: ItamarWMDE, gerritbot
Cc: Aklapper, Lucas_Werkmeister_WMDE, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277025: Move WikibaseRepo ItemTermStoreWriter to service container

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670497 had a related patch set uploaded (by Itamar Givon; owner: 
Itamar Givon):
  [mediawiki/extensions/Wikibase@master] Move WikibaseRepo ItemTermStoreWriter 
to service container
  
  https://gerrit.wikimedia.org/r/670497

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

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

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


[Wikidata-bugs] [Maniphest] T275542: (MS 6) using the tooltip component in the QB

2021-03-10 Thread Ladsgroup
Ladsgroup added a comment.


  Thanks. It needs a pre-release. I do it.

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

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

To: Ladsgroup
Cc: Ladsgroup, Michael, bete, Aklapper, Charlie_WMDE, maantietaja, 
Hazizibinmahdi, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, 
Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277061: Many WikibaseLexeme tests suddenly failing in quibble-vendor-mysql-php72-{selenium, noselenium}-docker

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Also appears to affect quibble-vendor-mysql-php7{3,4}-noselenium-docker in 
gate-and-submit – it blocked the merge of 
https://gerrit.wikimedia.org/r/c/mediawiki/extensions/Wikibase/+/670416.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Akuckartz, DannyS712, 
Nandana, Lahi, Gq86, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, thcipriani, abian, Wikidata-bugs, aude, 
Jdforrester-WMF, Mbch331, Jay8g, hashar
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277060: Move the Query Builder repository to Gerrit

2021-03-10 Thread Michael
Michael updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] T277061: Many WikibaseLexeme tests suddenly failing in quibble-vendor-mysql-php72-{selenium, noselenium}-docker

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE created this task.
Lucas_Werkmeister_WMDE added projects: Wikidata, ci-test-error (WMF-deployed 
Build Failure), Continuous-Integration-Infrastructure.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  selenium:
  
  > element (".lemma-widget_edit") still not displayed after 1ms
  
  Similar error message to flaky builds, but this seems to be very reliably 
broken now.
  
17:00:43 [Chrome 73.0.3683.75 linux #0-1] Lexeme:Forms
17:00:43 [Chrome 73.0.3683.75 linux #0-1]✖ can add representation
17:00:43 [Chrome 73.0.3683.75 linux #0-1]✖ can prefill representation 
language for lexeme with one lemma
17:00:43 [Chrome 73.0.3683.75 linux #0-1]✖ can edit representation
17:00:43 [Chrome 73.0.3683.75 linux #0-1]✖ can remove representation
17:00:43 [Chrome 73.0.3683.75 linux #0-1]✖ can not save representations 
with redundant languages
17:00:43 [Chrome 73.0.3683.75 linux #0-1]✖ trims whitespace from 
representation
17:00:43 [Chrome 73.0.3683.75 linux #0-1]✖ can add grammatical feature
17:00:43 [Chrome 73.0.3683.75 linux #0-1]✖ can remove first grammatical 
feature
17:00:43 [Chrome 73.0.3683.75 linux #0-1]- can cancel form addition
17:00:43 [Chrome 73.0.3683.75 linux #0-1]✖ has statement list
17:00:43 [Chrome 73.0.3683.75 linux #0-1]✖ FormId counter is not 
decremented when addForm is undone
17:00:43 [Chrome 73.0.3683.75 linux #0-1]✖ FormId counter is not 
decremented when old revision is restored
17:00:43 [Chrome 73.0.3683.75 linux #0-1]✖ change multi-variant 
representations
17:00:43 [Chrome 73.0.3683.75 linux #0-1]✖ can edit statements on a new 
Form
  
  
  
  - 
https://integration.wikimedia.org/ci/job/quibble-vendor-mysql-php72-selenium-docker/36149/console
  - 
https://integration.wikimedia.org/ci/job/quibble-vendor-mysql-php72-selenium-docker/36150/console
  - 
https://integration.wikimedia.org/ci/job/quibble-vendor-mysql-php72-selenium-docker/36154/console
  
  noselenium:
  
  > Died on test #1 at…
  > TypeError: Cannot read property 'replace' of undefined
  
  This one doesn’t ring a bell. Also very reliably broken.
  
16:40:56   jquery.wikibase.lexemeformview
16:40:56 ✖ can be created
16:40:56 ✔ creation without injected option.value fails
16:40:56 ✖ value can be injected as option.value
16:40:56 ✖ value() sets internal value
16:40:56 ✖ value() creates value from input if it is in edit mode
16:40:56 ✖ value() creates null value when in edit mode with redundant 
languages
16:40:56 ✖ shows warning when in edit mode with redundant languages
16:40:56 ✖ marks redundant languages when in edit mode with redundant 
languages
16:40:56 ✖ should not be in edit mode by default when initialized with 
a value
16:40:56 ✖ draws value in input node after startEditing()
16:40:56 ✖ draws value in text node after stopEditing()
16:40:56 ✖ Given a value, creates StatementGroupListView with Form id 
prefix
16:40:56 ✖ Given a new form, creates StatementGroupListView with empty 
prefix
16:40:56 ✖ sets id after form save
16:40:56 ✖ form inputs should have connected labels
  
  
  
  - 
https://integration.wikimedia.org/ci/job/quibble-vendor-mysql-php72-noselenium-docker/68529/console
  - 
https://integration.wikimedia.org/ci/job/quibble-vendor-mysql-php72-noselenium-docker/68530/console
  - 
https://integration.wikimedia.org/ci/job/quibble-vendor-mysql-php72-noselenium-docker/68534/console
  
  Other jobs apparently unaffected:
  
  > - 
https://integration.wikimedia.org/ci/job/quibble-vendor-mysql-php72-noselenium-docker/68534/console
 : FAILURE in 6m 03s
  > - 
https://integration.wikimedia.org/ci/job/quibble-vendor-mysql-php72-selenium-docker/36154/console
 : FAILURE in 28m 12s
  > - 
https://integration.wikimedia.org/ci/job/mwgate-node10-docker/216592/console : 
SUCCESS in 5m 34s
  > - 
https://integration.wikimedia.org/ci/job/mwext-php72-phan-docker/100054/console 
: SUCCESS in 2m 00s
  > - 
https://integration.wikimedia.org/ci/job/wmf-quibble-vendor-mysql-php72-docker/58213/console
 : SUCCESS in 14m 32s
  > - 
https://integration.wikimedia.org/ci/job/wmf-quibble-selenium-php72-docker/83190/console
 : SUCCESS in 22m 02s
  > - 
https://integration.wikimedia.org/ci/job/mwext-node10-rundoc-docker/33693/console
 : SUCCESS in 7m 37s
  > - 
https://integration.wikimedia.org/ci/job/mwselenium-quibble-docker/34721/console
 : SUCCESS in 4m 01s
  > - 
https://integration.wikimedia.org/ci/job/wikibase-client-docker/20544/console : 
SUCCESS in 3m 16s
  > - 
https://integration.wikimedia.org/ci/job/wikibase-repo-docker/20543/console : 
SUCCESS in 4m 51s
  > - 
https://integration.wikimedia.org/ci/job/mediawiki-quibble-apitests-vendor-docker/32915/console
 : SUCCESS in 6m 05s

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

EMAIL PREFERENCES
  http

[Wikidata-bugs] [Maniphest] T277060: Move the Query Builder repository to Gerrit

2021-03-10 Thread Michael
Michael added a subtask: T272130: Consider moving the Wikidata Query Builder 
repository from github to gerrit.

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

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

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


[Wikidata-bugs] [Maniphest] T272130: Consider moving the Wikidata Query Builder repository from github to gerrit

2021-03-10 Thread Michael
Michael added a parent task: T277060: Move the Query Builder repository to 
Gerrit.

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

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

To: Michael
Cc: Addshore, sbassett, Michael, Ladsgroup, Jakob_WMDE, DannyS712, Aklapper, 
Lydia_Pintscher, Devnull, maantietaja, Akuckartz, Dsharpe, Nandana, Lahi, Gq86, 
valerio.bozzolan, GoranSMilovanovic, QZanden, EBjune, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wong128hk, Luke081515, abian, Wikidata-bugs, aude, 
Bawolff, Grunny, csteipp, Mbch331, Jay8g, Krenair, chasemp
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277060: Move the Query Builder repository to Gerrit

2021-03-10 Thread Michael
Michael created this task.
Michael added projects: Wikidata Query Builder, Wikidata.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  FIXME

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

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

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

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


[Wikidata-bugs] [Maniphest] T165061: Fixing redirects for Cognate (step 1)

2021-03-10 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Tonina_Zhelyazkova_WMDE, gerritbot
Cc: amy_rc, Taylor, Nemo_bis, Udo_T, -sche, Aklapper, Thibaut120094, 
Lea_Lacroix_WMDE, Addshore, Wikitiki89, daniel, Darkdadaah, WMDE-leszek, 
Octahedron80, Lydia_Pintscher, maantietaja, Alter-paule, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, Kent7301, alaa_wmde, joker88john, CucyNoiD, 
Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, jberkel, Psychoslave, abian, Wikidata-bugs, 
aude, Shizhao, Mbch331, Ltrlg, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T165061: Fixing redirects for Cognate (step 1)

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670495 had a related patch set uploaded (by Tonina Zhelyazkova; owner: 
Tonina Zhelyazkova):
  [mediawiki/extensions/Cognate@master] README: Add Development section
  
  https://gerrit.wikimedia.org/r/670495

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

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

To: Tonina_Zhelyazkova_WMDE, gerritbot
Cc: amy_rc, Taylor, Nemo_bis, Udo_T, -sche, Aklapper, Thibaut120094, 
Lea_Lacroix_WMDE, Addshore, Wikitiki89, daniel, Darkdadaah, WMDE-leszek, 
Octahedron80, Lydia_Pintscher, maantietaja, Akuckartz, Iflorez, alaa_wmde, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Jonas, jberkel, Psychoslave, abian, Wikidata-bugs, 
aude, Shizhao, Mbch331, Ltrlg, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277038: Create ParseValueRepository

2021-03-10 Thread Michael
Michael updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] T277057: Create FormatValueRepository

2021-03-10 Thread Michael
Michael created this task.
Michael added projects: Wikidata, Wikidata Query Builder.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  The ParseValueRepository created in T277038 
 turns the user input of `1920-02` 
into something like `+1920-02-00T00:00:00Z`. That is not nice and we don't want 
to show that to the user. Therefore, we need to do another API call to format 
that value and turn it into something like `February 1920`. This is also what 
happens on Wikidata.
  
  [ ] create interface FormatValueRepository with one method the takes the 
datavalue as produced by the ParseValueRepository and the Property ID
  [ ] create implementation with fetch, similar to 
https://github.com/wmde/query-builder/blob/master/src/data-access/FetchSearchEntityRepository.ts
  
  Query example: 
https://www.wikidata.org/w/api.php?action=wbformatvalue&format=json&datavalue={"value":{"after":0,"before":0,"calendarmodel":"http://www.wikidata.org/entity/Q1985727","precision":10,"time":"+1920-02-00T00:00:00Z","timezone":0},"type":"time"}&generate=text/plain&property=P577&errorformat=plaintext&uselang=en&options={"lang":"en"}
 

  API help: https://www.wikidata.org/w/api.php?action=help&modules=wbformatvalue
  
  That is what the expected datavalue lookes like
  
{
"value": {
"time": "+1920-02-00T00:00:00Z",
"timezone": 0,
"before": 0,
"after": 0,
"precision": 10,
"calendarmodel": "http://www.wikidata.org/entity/Q1985727";
},
"type": "time"
}

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

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

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


[Wikidata-bugs] [Maniphest] T277033: Allow components to display "focused error" state

2021-03-10 Thread Volker_E


[Wikidata-bugs] [Maniphest] T276575: Move WikibaseRepo EntityArticleIdLookup to service container

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE claimed this task.
Lucas_Werkmeister_WMDE moved this task from Ready to pick up to Doing on the 
Wikibase Service Migration board.

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

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

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

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


[Wikidata-bugs] [Maniphest] T276570: Move WikibaseRepo StatementSerializer to service container

2021-03-10 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276570: Move WikibaseRepo StatementSerializer to service container

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670491 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/Wikibase@master] repo: remove 
WikibaseRepo::getStatementSerializer()
  
  https://gerrit.wikimedia.org/r/670491

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

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

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


[Wikidata-bugs] [Maniphest] T261977: Add tool tip for editing Wikidata descriptions in the iOS app

2021-03-10 Thread Tsevener
Tsevener claimed this task.

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

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

To: Tsevener
Cc: Tsevener, GhostInTheMachine, cmadeo, LGoto, Aklapper, Johan, maantietaja, 
Akuckartz, Ddurigon, Mateo1977, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, Taquo, LawExplorer, catalandres, _jensen, rosalieper, Scott_WUaS, 
Karthik_sripal, abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276570: Move WikibaseRepo StatementSerializer to service container

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE claimed this task.
Lucas_Werkmeister_WMDE moved this task from Ready to pick up to Doing on the 
Wikibase Service Migration board.

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

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

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

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


[Wikidata-bugs] [Maniphest] T277038: Create ParseValueRepository

2021-03-10 Thread Michael
Michael updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] T276570: Move WikibaseRepo StatementSerializer to service container

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Apparently this service is only used in four tests?
  
  Maybe we shouldn’t move it at all, then, and only inline it in those tests… 
it just forwards to 
`getBaseDataModelSerializerFactory()->newStatementSerializer()`, anyways.

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

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

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


[Wikidata-bugs] [Maniphest] T276541: Move WikibaseRepo StorageEntitySerializer to service container

2021-03-10 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276541: Move WikibaseRepo StorageEntitySerializer to service container

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670488 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/Wikibase@master] repo: move StorageEntitySerializer to 
service container
  
  https://gerrit.wikimedia.org/r/670488

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

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

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


[Wikidata-bugs] [Maniphest] T276541: Move WikibaseRepo StorageEntitySerializer to service container

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670489 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/WikibaseMediaInfo@master] Update 
WikibaseRepo::getStorageEntitySerializer() call
  
  https://gerrit.wikimedia.org/r/670489

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

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

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


[Wikidata-bugs] [Maniphest] T277052: Move WikibaseRepo BaseDataModelDeserializerFactory to service container

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE created this task.
Lucas_Werkmeister_WMDE added projects: Wikidata, Wikibase Service Migration.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION


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

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

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


[Wikidata-bugs] [Maniphest] T276541: Move WikibaseRepo StorageEntitySerializer to service container

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE claimed this task.
Lucas_Werkmeister_WMDE moved this task from Ready to pick up to Doing on the 
Wikibase Service Migration board.

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

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

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

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


[Wikidata-bugs] [Maniphest] T276529: Move WikibaseClient ValueFormatterFactory to service container

2021-03-10 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: Lucas_Werkmeister_WMDE, Maintenance_bot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331, Alter-paule, Beast1978, Un1tY, Hook696, 
Kent7301, joker88john, CucyNoiD, Gaboe420, Giuliamocci, Cpaulf30, Af420, 
Bsandipan, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276912: Move WikibaseRepo MonolingualTextLanguages to service container

2021-03-10 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: Lucas_Werkmeister_WMDE, Maintenance_bot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331, Alter-paule, Beast1978, Un1tY, Hook696, 
Kent7301, joker88john, CucyNoiD, Gaboe420, Giuliamocci, Cpaulf30, Af420, 
Bsandipan, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276912: Move WikibaseRepo MonolingualTextLanguages to service container

2021-03-10 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.36-notes (1.36.0-wmf.35; 2021-03-16).

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

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

To: Lucas_Werkmeister_WMDE, ReleaseTaggerBot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276529: Move WikibaseClient ValueFormatterFactory to service container

2021-03-10 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.36-notes (1.36.0-wmf.35; 2021-03-16).

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

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

To: Lucas_Werkmeister_WMDE, ReleaseTaggerBot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276918: Get statistics about the Lexemes editors

2021-03-10 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE added a project: Wikidata Lexicographical data.
Restricted Application added a project: Wikidata.

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

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

To: Lea_Lacroix_WMDE
Cc: Aklapper, VIGNERON, Lea_Lacroix_WMDE, maantietaja, Akuckartz, Nandana, 
Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, 
rosalieper, Bodhisattwa, Scott_WUaS, abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276529: Move WikibaseClient ValueFormatterFactory to service container

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE closed this task as "Resolved".
Lucas_Werkmeister_WMDE moved this task from Up for review to Done on the 
Wikibase Service Migration board.

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

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276529: Move WikibaseClient ValueFormatterFactory to service container

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670443 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] client: move ValueFormatterFactory to 
service container
  
  https://gerrit.wikimedia.org/r/670443

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276536: Move WikibaseRepo AllTypesEntitySerializer to service container

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670481 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/WikibaseQualityConstraints@master] Update 
WikibaseRepo::getAllTypesEntitySerializer() calls
  
  https://gerrit.wikimedia.org/r/670481

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276536: Move WikibaseRepo AllTypesEntitySerializer to service container

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670480 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/WikibaseMediaInfo@master] Update 
WikibaseRepo::getAllTypesEntitySerializer() call
  
  https://gerrit.wikimedia.org/r/670480

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276536: Move WikibaseRepo AllTypesEntitySerializer to service container

2021-03-10 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276536: Move WikibaseRepo AllTypesEntitySerializer to service container

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670479 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/Wikibase@master] repo: move AllTypesEntitySerializer to 
service container
  
  https://gerrit.wikimedia.org/r/670479

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

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

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


[Wikidata-bugs] [Maniphest] T276912: Move WikibaseRepo MonolingualTextLanguages to service container

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE closed this task as "Resolved".
Lucas_Werkmeister_WMDE moved this task from Up for review to Done on the 
Wikibase Service Migration board.

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

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276912: Move WikibaseRepo MonolingualTextLanguages to service container

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670421 **merged** by jenkins-bot:
  [mediawiki/extensions/WikibaseMediaInfo@master] Update code to get 
monolingual text languages from WikibaseRepo
  
  https://gerrit.wikimedia.org/r/670421

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276912: Move WikibaseRepo MonolingualTextLanguages to service container

2021-03-10 Thread gerritbot
gerritbot added a comment.


  Change 670420 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] repo: move MonolingualTextLanguages to 
service container
  
  https://gerrit.wikimedia.org/r/670420

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276536: Move WikibaseRepo AllTypesEntitySerializer to service container

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE claimed this task.
Lucas_Werkmeister_WMDE moved this task from Ready to pick up to Doing on the 
Wikibase Service Migration board.

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

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

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

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


[Wikidata-bugs] [Maniphest] T270249: Run maintenance script to remove deleted items from term store on production

2021-03-10 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE claimed this task.
Lucas_Werkmeister_WMDE moved this task from To Do (prioritised from top to 
bottom) to Doing on the Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Lucas_Werkmeister_WMDE added a comment.


  I’ve added two entries for this on the deployments calendar: tomorrow 
(Thursday) during the EU backport window, I’ll test this using the four item 
IDs Q581768,Q739279,Q774383,Q852302; then, on Monday after the EU backport 
window, I’ll run the script with the remaining item IDs (probably still split 
into several batches).

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

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Aklapper, Addshore, MisterSynergy, noarave, 
maantietaja, Akuckartz, Iflorez, alaa_wmde, Nandana, lucamauri, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, abian, 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] T275999: track editor numbers split by namespace

2021-03-10 Thread Silvan_WMDE
Silvan_WMDE claimed this task.
Silvan_WMDE moved this task from To Do (prioritised from top to bottom) to 
Doing on the Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.

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

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

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

To: Silvan_WMDE
Cc: amy_rc, Lucas_Werkmeister_WMDE, Aklapper, Lydia_Pintscher, maantietaja, 
Akuckartz, Iflorez, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, abian, Wikidata-bugs, 
aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T276456: Move WikibaseRepo TermStoreWriterFactory to service container

2021-03-10 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: Lucas_Werkmeister_WMDE, Maintenance_bot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331, Alter-paule, Beast1978, Un1tY, Hook696, 
Kent7301, joker88john, CucyNoiD, Gaboe420, Giuliamocci, Cpaulf30, Af420, 
Bsandipan, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277025: Move WikibaseRepo ItemTermStoreWriter to service container

2021-03-10 Thread ItamarWMDE
ItamarWMDE claimed this task.

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

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

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


[Wikidata-bugs] [Maniphest] T276456: Move WikibaseRepo TermStoreWriterFactory to service container

2021-03-10 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.36-notes (1.36.0-wmf.35; 2021-03-16).

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

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

To: Lucas_Werkmeister_WMDE, ReleaseTaggerBot
Cc: Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T199896: API: Support editing statements on senses via wbeditentity

2021-03-10 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.36-notes (1.36.0-wmf.35; 2021-03-16).

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

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

To: Jakob_WMDE, ReleaseTaggerBot
Cc: Lea_Lacroix_WMDE, Scott_WUaS, robertvazan, Tpt, Lydia_Pintscher, 
WMDE-leszek, Addshore, Lucas_Werkmeister_WMDE, maantietaja, Alter-paule, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, Kent7301, alaa_wmde, 
joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Bodhisattwa, Jonas, abian, Wikidata-bugs, aude, 
Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


  1   2   >