[Wikidata-bugs] [Maniphest] T277826: Add a new qualifier for the conflicts-with constraint to specify the properties that should be used instead

2021-03-18 Thread Agabi10
Agabi10 created this task.
Agabi10 added a project: Wikibase-Quality-Constraints.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  When a property is used for a entity class where a different one should be 
used instead the current way of doing it is adding a conflicts-with constraint 
for the property instance of with the value to avoid. One example of that would 
be P407 , which shouldn't be used 
for humans and we should use P103  
and P1412  instead. Anyway, when 
the editors see the error on the entity page they only see that they shouldn't 
use that property for that type of entity, but they don't know that they should 
add the information using a different property.
  
  Would it be possible creating a new qualifier to specify which property or 
properties should be used instead of that one and displaying that information 
in the error message? I know that we already have that information in the 
description of the property, but I consider that a workaround and it is harder 
to keep in sync among languages.

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

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

To: Agabi10
Cc: Aklapper, Agabi10, maantietaja, Akuckartz, Nandana, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, 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] T264006: Deploy Flink to kubernetes (k8s)

2021-03-18 Thread Mstyles
Mstyles updated the task description.

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

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

To: Mstyles
Cc: akosiaris, Mstyles, Gehel, 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] T276551: Allow extensions to use NameTableStore for their own tables

2021-03-18 Thread daniel
daniel added a subscriber: tstarling.
daniel added a comment.


  @tstarling rememberd that we were discussing this exact thing when he worked 
on NameTabelStoreFactory: 
https://gerrit.wikimedia.org/r/c/mediawiki/core/+/455487/4
  
  I think his suggestion at the time was to gave a newFromSpec() method that 
would take an array like the ones we define in self::$info.

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

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

To: daniel
Cc: tstarling, daniel, BPirkle, Addshore, Aklapper, Lucas_Werkmeister_WMDE, 
maantietaja, Akuckartz, WDoranWMF, holger.knust, EvanProdromou, Nandana, 
Banyek, Rayssa-, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Agabi10, Scott_WUaS, Pchelolo, abian, Wikidata-bugs, aude, 
Dinoguy1000, 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-18 Thread Superraptor123
Superraptor123 added a comment.


  This is my current YAML (it still isn't working):
  
# Wikibase with Query Service
#
# This docker-compose example can be used to pull the images from docker 
hub.
#
# Examples:
#
# Access Wikibase via "http://localhost:8181;
#   (or "http://$(docker-machine ip):8181" if using docker-machine)
#
# Access Query Service via "http://localhost:8282;
#   (or "http://$(docker-machine ip):8282" if using docker-machine)
version: '3'

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
  #- 
./wikibase-basic-local/LocalSettings.php:/var/www/html/LocalSettings.php
  #- 
./wikibase-basic-local/custom.png:/var/www/html/resources/assets/wiki.png
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
  

[Wikidata-bugs] [Maniphest] T264006: Deploy Flink to kubernetes (k8s)

2021-03-18 Thread Mstyles
Mstyles updated the task description.

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

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

To: Mstyles
Cc: akosiaris, Mstyles, Gehel, 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] T262489: Multiple TypeError: wikibase.quality is undefined errors on page load

2021-03-18 Thread Jdlrobson
Jdlrobson added a project: Wikidata-Campsite.
Jdlrobson added a comment.
Restricted Application added a project: Wikidata.


  Also seen on 
https://commons.m.wikimedia.org/wiki/File:H%C3%B4tel_de_la_Pa%C3%AFva_-_Paris_8_-_France_-_M%C3%A9rim%C3%A9e_PA00088829_(10).jpg#/media/File%3APaul_Baudry_1862.jpg
  
  not sure what's responsible here..

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

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

To: Jdlrobson
Cc: Aklapper, Jdlrobson, Mengs21, maantietaja, EgbeRef, 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, 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] T186161: What to do if the WDQS does not synchronise with Wikibase?

2021-03-18 Thread Superraptor123
Superraptor123 added a comment.


  Okay, wow I'm dumb. Running this inside the wikibase WDQS docker container 
made queries work:
  
./runUpdate.sh -h http://${WDQS_HOST}:${WDQS_PORT} -- --wikibaseUrl 
${WIKIBASE_SCHEME}://${WIKIBASE_HOST} --conceptUri 
${WIKIBASE_SCHEME}://${WIKIBASE_HOST} --entityNamespaces 
${WDQS_ENTITY_NAMESPACES} --init --start 20210301010101'
  
  However, now the items have dead links like 
``, so I'm working on replacing the 
"http://wikibase.svc; with "localhost:8181" as "localhost:8181/entity/Q39" 
resolves correctly.

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

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

To: Superraptor123
Cc: RShigapov, danshick-wmde, Samantha_Alipio_WMDE, darthmon_wmde, WMDE-leszek, 
Superraptor123, Tinyttt, Louperivois, Jsamwrites, Considering.Different.Routes, 
DarTar, Addshore, Andrawaag, Aklapper, maantietaja, Akuckartz, Jelabra, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Asahiko, abian, despens, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T258895: Wikimedia Commons Query Service should use Wikimedia url shortener instead of tinyurl

2021-03-18 Thread Legoktm
Legoktm added a comment.


  In T258895#6926448 , 
@Gehel wrote:
  
  >> - Should fall under the Wikimedia privacy policy / or anyone who has 
access to private information should have signed an NDA.
  >
  > This project has quite a few members. Most of them are WMF staff and are 
under NDA, but a few are not and even if that was the case, we don't have a 
good way to enforce NDA for future access. It seems that we'll need to wait for 
WCQS to be in production to use Wikimedia URL shortener. We plan to be working 
on that during next quarter, but that's still a few month away.
  
  Yeah :(
  
  >> URL stability explicitly isn't a consideration, e.g. wiki pages can 
disappear at any time. It's up to each service to maintain stable URLs (Cool 
URIs don't change!) - I would expect `wcqs-beta.wmflabs.org` eventually 
redirects to the production instance.
  >
  > `wcqs-beta.wmflabs.org` will disappear once a production service is in 
place, URLs will be broken and won't be redirected.
  
  You can use https://wikitech.wikimedia.org/wiki/Nova_Resource:Redirects to 
set up the redirect without needing to maintain anything extra on your end.

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

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

To: Legoktm
Cc: Nirmos, Legoktm, Nikki, Bugreporter, Jheald, Lucas_Werkmeister_WMDE, 
Nintendofan885, Ladsgroup, Aklapper, Gehel, Multichill, MPhamWMF, maantietaja, 
Muchiri124, CBogen, Akuckartz, DannyS712, Nandana, Namenlos314, Lahi, Gq86, 
Ramsey-WMF, GoranSMilovanovic, Chicocvenancio, QZanden, EBjune, merbst, 
LawExplorer, Poyekhali, _jensen, rosalieper, Taiwania_Justo, Scott_WUaS, Jonas, 
Xmlizer, Ixocactus, Wong128hk, abian, jkroll, Wikidata-bugs, Jdouglas, aude, 
Tobias1984, El_Grafo, Dinoguy1000, Manybubbles, Alchimista, Steinsplitter, 
Mbch331, Keegan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T258895: Wikimedia Commons Query Service should use Wikimedia url shortener instead of tinyurl

2021-03-18 Thread Gehel
Gehel added a comment.


  In T258895#6382143 , 
@Legoktm wrote:
  
  > The general requirements are (we should document this somewhere):
  >
  > - No open redirects (allows bypassing the allowed domains list)
  > - No dangerous actions on GET requests
  > - No reflective XSS
  
  The code is the same as the production WDQS and should support the 
requirements above.
  
  > - Should fall under the Wikimedia privacy policy / or anyone who has access 
to private information should have signed an NDA.
  
  This project has quite a few members. Most of them are WMF staff and are 
under NDA, but a few are not and even if that was the case, we don't have a 
good way to enforce NDA for future access.
  
  > URL stability explicitly isn't a consideration, e.g. wiki pages can 
disappear at any time. It's up to each service to maintain stable URLs (Cool 
URIs don't change!) - I would expect `wcqs-beta.wmflabs.org` eventually 
redirects to the production instance.
  
  `wcqs-beta.wmflabs.org` will disappear once a production service is in place, 
URLs will be broken and won't be redirected.

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

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

To: Gehel
Cc: Nirmos, Legoktm, Nikki, Bugreporter, Jheald, Lucas_Werkmeister_WMDE, 
Nintendofan885, Ladsgroup, Aklapper, Gehel, Multichill, MPhamWMF, maantietaja, 
Muchiri124, CBogen, Akuckartz, DannyS712, Nandana, Namenlos314, Lahi, Gq86, 
Ramsey-WMF, GoranSMilovanovic, Chicocvenancio, QZanden, EBjune, merbst, 
LawExplorer, Poyekhali, _jensen, rosalieper, Taiwania_Justo, Scott_WUaS, Jonas, 
Xmlizer, Ixocactus, Wong128hk, abian, jkroll, Wikidata-bugs, Jdouglas, aude, 
Tobias1984, El_Grafo, Dinoguy1000, Manybubbles, Alchimista, Steinsplitter, 
Mbch331, Keegan
___
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-18 Thread WMDE-leszek
WMDE-leszek added a comment.


  
  
  > I tried to find more information about the docker container that we are 
using, but got stuck at 
https://docker-registry.wikimedia.org/releng/node10-test-browser/tags/
  > I couldn't figure out where to find more information about those specific 
tags. We're currently using 0.6.3. How is that different from 0.6.3-s1 and 
0.6.3-s2?
  
  You can find the information on the changes in versions of the images in 
their respective changelog files, e.g. 
https://gerrit.wikimedia.org/r/plugins/gitiles/integration/config/+/refs/heads/master/dockerfiles/node10-test-browser/changelog
  
  > Where is the source for those images?
  
  Dockerfiles are in the operations/config Gerrit repo. E.g. the one you 
mention would be 
https://gerrit.wikimedia.org/r/plugins/gitiles/integration/config/+/refs/heads/master/dockerfiles/node10-test-browser/

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

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

To: WMDE-leszek
Cc: WMDE-leszek, Addshore, 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] T186161: What to do if the WDQS does not synchronise with Wikibase?

2021-03-18 Thread Superraptor123
Superraptor123 added a comment.


  @Addshore so sorry to keep bothering, I'm just trying to make sure I'm 
following everything correctly.
  
  Step 1: Begin the instructions here 
(https://semlab.io/howto/wikibase_basic.html), but for localhost, by cloning 
the repo:
  
git clone https://github.com/wmde/wikibase-docker.git
cd wikibase-docker
git clone https://github.com/SemanticLab/wikibase-basic-local.git
  
  Step 2: Run the following (I have a Windows installation, so these are 
modified slightly):
  
chmod +x wikibase-basic-local/install_compose.sh
./wikibase-basic-local/install_compose.sh
  
  Step 3: Run `docker-compose up` and test if the front-end looks right.
  
  Step 4: Following steps here 
(https://wikibase.consulting/transferring-wikibase-data-between-wikis/), export 
previous wikibase XML dump using:
  
php maintenance/dumpBackup.php --full --quiet --filter=namespace:120,122 > 
wikibase.xml
  
  Step 5: Copy this file and `rebuildWikibaseIdCounters.sql` into the 
wikibase_1 docker container:
  
docker cp rebuildWikibaseIdCounters.sql 
wikibase-docker_wikibase_1:/var/www/html/rebuildWikibaseIdCounters.sql
docker cp wikibase.xml wikibase-docker_wikibase_1:/var/www/html/wikibase.xml
  
  Step 6: Install VIM on docker container:
  
apt-get update && apt-get install -y vim
  
  Step 7: Add `$wgWBRepoSettings['allowEntityImport'] = true;` to the end of 
`LocalSettings.php`.
  
  Step 8: Run:
  
php ./maintenance/importDump.php < wikibase.xml

php ./maintenance/rebuildall.php

php ./maintenance/runJobs.php

php ./maintenance/initSiteStats.php --update

php maintenance/sql.php rebuildWikibaseIdCounters.sql
  
  Step 9: Check and confirm that the new pages have been loaded at 
`localhost:8282`.
  
  Step 10: (Starting your steps) Run the following (all slashes changed for 
Windows):
  
docker run -d -p : --env WIKIBASE_SCHEME=https --env 
WIKIBASE_HOST=intentionally-empty.wiki.opencura.com --env WDQS_HOST=localhost 
--env WDQS_PORT= --name demo-wdqs wikibase/wdqs:0.3.40 //runBlazegraph.sh
  
  Step 11: Check if empty:
  
curl 
"localhost:/bigdata/sparql?query=SELECT%20%2A%20WHERE%20%7B%3Fa%20%3Fb%20%3Fc%7D"
  
  Step 12: Run the updater:
  
docker exec demo-wdqs //runUpdate.sh
  
  Step 13: Run
  
docker exec demo-wdqs bash -c '//wdqs//runUpdate.sh -h 
http://${WDQS_HOST}:${WDQS_PORT} -- --wikibaseUrl 
${WIKIBASE_SCHEME}://${WIKIBASE_HOST} --conceptUri 
${WIKIBASE_SCHEME}://${WIKIBASE_HOST} --entityNamespaces 
${WDQS_ENTITY_NAMESPACES} --init --start 20210301010101'
  
  Here is where things get funky. So the above command seems to hang for a very 
long time repeating:
  
18:22:24.098 [main] INFO  o.w.q.r.t.change.RecentChangesPoller - Got no 
real changes
18:22:24.098 [main] INFO  org.wikidata.query.rdf.tool.Updater - Sleeping 
for 10 secs
  
  I ctrl-C to quit and run `curl 
"localhost:/bigdata/sparql?query=SELECT%20%2A%20WHERE%20%7B%3Fa%20%3Fb%20%3Fc%7D"`
 and I do get an updated date when I run:
  
curl 
"localhost:/bigdata/sparql?query=SELECT%20%2A%20WHERE%20%7B%3Fa%20%3Fb%20%3Fc%7D"
  
  (Output includes: `2021-03-01T01:01:00Z`,
 just as you noted)
  
  However, when I go to `http://localhost:8282/` and run
  
SELECT * where { ?a ?b ?c }
  
  It seems to hang indefinitely. So then I thought, okay, maybe there's 
actually a lot of stuff in there, so I run a query I know has less than 20-30 
results (there are 880 pages total that I've imported, 3588 edits):
  
SELECT ?item ?itemLabel 
WHERE 
{
  ?item wdt:P9 wd:Q8.
  SERVICE wikibase:label { bd:serviceParam wikibase:language 
"[AUTO_LANGUAGE],en". }
}
  
  (This is where things get weird; so if I hover over `P9` or 'Q8`, it is clear 
that the WDQS knows what they are and they link to the correct pages. However, 
when I run the query I get `No matching records found`.)
  
  Did I mess something up here?

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

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

To: Superraptor123
Cc: RShigapov, danshick-wmde, Samantha_Alipio_WMDE, darthmon_wmde, WMDE-leszek, 
Superraptor123, Tinyttt, Louperivois, Jsamwrites, Considering.Different.Routes, 
DarTar, Addshore, Andrawaag, Aklapper, maantietaja, Akuckartz, Jelabra, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Asahiko, abian, despens, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T258895: Wikimedia Commons Query Service should use Wikimedia url shortener instead of tinyurl

2021-03-18 Thread Nirmos
Nirmos added a comment.


  In T258895#6925835 , 
@Legoktm wrote:
  
  > This is waiting on response from the WCQS maintainers on whether the above 
criteria are met (now documented at https://wikitech.wikimedia.org/wiki/W.wiki)
  
  Regarding that "TODO: link phab tickets" at 
https://wikitech.wikimedia.org/wiki/W.wiki
  
  T231518 

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

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

To: Nirmos
Cc: Nirmos, Legoktm, Nikki, Bugreporter, Jheald, Lucas_Werkmeister_WMDE, 
Nintendofan885, Ladsgroup, Aklapper, Gehel, Multichill, MPhamWMF, maantietaja, 
Muchiri124, CBogen, Akuckartz, DannyS712, Nandana, Namenlos314, Lahi, Gq86, 
Ramsey-WMF, GoranSMilovanovic, Chicocvenancio, QZanden, EBjune, merbst, 
LawExplorer, Poyekhali, _jensen, rosalieper, Taiwania_Justo, Scott_WUaS, Jonas, 
Xmlizer, Ixocactus, Wong128hk, abian, jkroll, Wikidata-bugs, Jdouglas, aude, 
Tobias1984, El_Grafo, Dinoguy1000, Manybubbles, Alchimista, Steinsplitter, 
Mbch331, Keegan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T273098: High Availability Flink

2021-03-18 Thread Mstyles
Mstyles claimed this task.

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

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

To: Mstyles
Cc: Aklapper, Gehel, akosiaris, Mstyles, MPhamWMF, maantietaja, CBogen, 
Akuckartz, Nandana, Namenlos314, Lahi, Gq86, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _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] T277578: Move WikibaseRepo EntityFactory to service container

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


  Change 673317 had a related patch set uploaded (by Itamar Givon; owner: 
Itamar Givon):
  [mediawiki/extensions/WikibaseCirrusSearch@master] Update getEntityFactory 
calls to static
  
  https://gerrit.wikimedia.org/r/673317

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

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] T277578: Move WikibaseRepo EntityFactory to service container

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

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

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] T277578: Move WikibaseRepo EntityFactory to service container

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


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

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

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

To: ItamarWMDE, 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] T277481: Move WikibaseClient EntitySourceOfLocalRepo to service container

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


  Change 673313 had a related patch set uploaded (by Rosalie Perside (WMDE); 
owner: Rosalie Perside (WMDE)):
  [mediawiki/extensions/Wikibase@master] Remove unused 
getDatabaseDomainNameOfLocalRepo
  
  https://gerrit.wikimedia.org/r/673313

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

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

To: Rosalie_WMDE, 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] T277060: Move the Query Builder repository to Gerrit

2021-03-18 Thread Michael
Michael added a comment.


  Cypress currently fails 

 with the following error:
  
00:04:24.868 > CYPRESS_API_URL=${VUE_APP_WIKIBASE_API_URL} 
CYPRESS_BASE_URL=${CYPRESS_BASE_URL:-http://localhost:8080} cypress run 
--browser chromium --headless
00:04:24.868 
00:04:24.868 It looks like this is your first time using Cypress: 6.3.0
00:04:24.868 
00:04:24.868 [16:38:24]  Verifying Cypress can run 
/cache/Cypress/6.3.0/Cypress [started]

00:04:26.669 [16:38:26]  Verifying Cypress can run 
/cache/Cypress/6.3.0/Cypress [failed]
00:04:26.670 Cypress failed to start.
00:04:26.670 
00:04:26.670 This is usually caused by a missing library or dependency.
00:04:26.670 
00:04:26.670 The error below should indicate which dependency is missing.
00:04:26.670 
00:04:26.670 https://on.cypress.io/required-dependencies
00:04:26.670 
00:04:26.670 If you are using Docker, we provide containers with all 
required dependencies installed.
00:04:26.670 
00:04:26.670 --
00:04:26.670 
00:04:26.670 Fontconfig warning: "/etc/fonts/fonts.conf", line 100: unknown 
element "blank"
00:04:26.670 [744:0318/163825.667206:ERROR:browser_main_loop.cc(1434)] 
Unable to open X display.
00:04:26.670 Fontconfig warning: "/etc/fonts/fonts.conf", line 100: unknown 
element "blank"
00:04:26.670 [758:0318/163826.663749:ERROR:browser_main_loop.cc(1434)] 
Unable to open X display.
00:04:26.670 
00:04:26.670 undefined:0
00:04:26.670 
00:04:26.670 
00:04:26.670 illegal access
00:04:26.670 (Use `Cypress --trace-uncaught ...` to show where the 
exception was thrown)
00:04:26.670 
00:04:26.670 --
00:04:26.670 
00:04:26.670 Platform: linux (Debian - 9.12)
00:04:26.670 Cypress Version: 6.3.0
  
  I added a `cypress info` step before that to get maybe more insights and that 
is the output:
  
00:02:46.323 > @wmde/query-builder@1.0.0 test:cypress-info /src
00:02:46.323 > cypress info
00:02:46.323 
00:02:48.342 
00:02:48.342 Proxy Settings: none detected
00:02:48.345 Environment Variables: none detected
00:02:48.345 
00:02:48.346 Application Data: /tmp/xdg-config-home/cypress/cy/development
00:02:48.346 Browser Profiles: 
/tmp/xdg-config-home/cypress/cy/development/browsers
00:02:48.346 Binary Caches: /cache/Cypress
00:02:48.347 
00:02:48.366 Cypress Version: 6.3.0
00:02:48.366 System Platform: linux (Debian - 9.12)
00:02:48.366 System Memory: 25.3 GB free 8.8 GB
00:02:49.109
  
  Notably, and that is different from the result I get locally, this does not 
mention any available browsers whatsoever.
  
  Are there maybe no browsers installed or installed in a way that is not 
legible to Cypress?
  
  I tried to find more information about the docker container that we are 
using, but got stuck at 
https://docker-registry.wikimedia.org/releng/node10-test-browser/tags/
  I couldn't figure out where to find more information about those specific 
tags. We're currently using 0.6.3. How is that different from 0.6.3-s1 and 
0.6.3-s2? Where is the source for those images?

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

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

To: Michael
Cc: Addshore, 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] T186161: What to do if the WDQS does not synchronise with Wikibase?

2021-03-18 Thread Superraptor123
Superraptor123 added a comment.


  @Addshore yeah so I was so knee deep and errors, I deleted everything with my 
first try and attempted to use this Git directory instead: 
https://github.com/wmde/wikibase-docker/blob/master/README-compose.md
  
  Running with two slashes though seemed to work! (Using: `docker run -d -p 
: --env WIKIBASE_SCHEME=https --env 
WIKIBASE_HOST=intentionally-empty.wiki.opencura.com --env WDQS_HOST=localhost 
--env WDQS_PORT= --name demo-wdqs wikibase/wdqs:0.3.40 
//runBlazegraph.sh`). I'll check back after lunch and run everything else in 
the queue! Thank you!

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

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

To: Superraptor123
Cc: RShigapov, danshick-wmde, Samantha_Alipio_WMDE, darthmon_wmde, WMDE-leszek, 
Superraptor123, Tinyttt, Louperivois, Jsamwrites, Considering.Different.Routes, 
DarTar, Addshore, Andrawaag, Aklapper, maantietaja, Akuckartz, Jelabra, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Asahiko, abian, despens, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T258895: Wikimedia Commons Query Service should use Wikimedia url shortener instead of tinyurl

2021-03-18 Thread Legoktm
Legoktm changed the task status from "Open" to "Stalled".
Legoktm added a comment.


  This is waiting on response from the WCQS maintainers on whether the above 
criteria are met (now documented at https://wikitech.wikimedia.org/wiki/W.wiki)

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

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

To: Legoktm
Cc: Legoktm, Nikki, Bugreporter, Jheald, Lucas_Werkmeister_WMDE, 
Nintendofan885, Ladsgroup, Aklapper, Gehel, Multichill, MPhamWMF, maantietaja, 
Muchiri124, CBogen, Akuckartz, DannyS712, Nandana, Namenlos314, Lahi, Gq86, 
Ramsey-WMF, GoranSMilovanovic, Chicocvenancio, QZanden, EBjune, merbst, 
LawExplorer, Poyekhali, _jensen, rosalieper, Taiwania_Justo, Scott_WUaS, Jonas, 
Xmlizer, Ixocactus, Wong128hk, abian, jkroll, Wikidata-bugs, Jdouglas, aude, 
Tobias1984, El_Grafo, Dinoguy1000, Manybubbles, Alchimista, Steinsplitter, 
Mbch331, Keegan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T273221: Measure and indicate Lexeme language completeness, and prompt editors with what more might need doing

2021-03-18 Thread Jdforrester-WMF
Jdforrester-WMF added a comment.


  In T273221#6925205 , 
@ArthurPSmith wrote:
  
  > Denny's posted this notebook: 
https://public.paws.wmcloud.org/User:DVrandecic_(WMF)/Lexicographic%20coverage.ipynb
 which does pretty much the above for the language Wikipedia corpora. Results 
at https://www.wikidata.org/wiki/Wikidata:Lexicographical_coverage
  > However, I don't think he wants to keep running it, so can we move it 
somewhere that it will be run regularly by a bot or something? The 
coverage/completeness data is helpful, and the 'missing' page for each language 
is a great guide to editors, if it could be kept reasonably up to date.
  
  That's a one-off report rather than a "first-party, prominent" dynamic 
message to users on the front page / etc. of Wikidata.org, though.

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

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

To: Jdforrester-WMF
Cc: ArthurPSmith, Scott_WUaS, Quiddity, Jdforrester-WMF, maantietaja, 
NavinRizwi, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, 
QZanden, LawExplorer, _jensen, rosalieper, Bodhisattwa, Nikki, VIGNERON, abian, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T263441: Clean up $wgExtraLanguageNames production config

2021-03-18 Thread Addshore
Addshore added a comment.


  @Lucas_Werkmeister_WMDE Are these all ready to be deployed?

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

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

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


[Wikidata-bugs] [Maniphest] T268600: Implement services through MediaWikiServices

2021-03-18 Thread ItamarWMDE
ItamarWMDE updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] T268600: Implement services through MediaWikiServices

2021-03-18 Thread ItamarWMDE
ItamarWMDE updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] T277481: Move WikibaseClient EntitySourceOfLocalRepo to service container

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


  Change 673300 had a related patch set uploaded (by Rosalie Perside (WMDE); 
owner: Rosalie Perside (WMDE)):
  [mediawiki/extensions/ArticlePlaceholder@master] Move EntitySourceOfLocalRepo 
to service container
  
  https://gerrit.wikimedia.org/r/673300

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

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

To: Rosalie_WMDE, 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] T277060: Move the Query Builder repository to Gerrit

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

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

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

To: Maintenance_bot
Cc: Addshore, Aklapper, Michael, 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] T277773: WikibaseRepo: Move TermLookup to service container

2021-03-18 Thread ItamarWMDE
ItamarWMDE updated the task description.

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

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

To: ItamarWMDE
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] T277773: WikibaseRepo: Move TermLookup to service container

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

TASK DESCRIPTION


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

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

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

To: ItamarWMDE
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] T277631: label, alias and description allow more than one space in a row

2021-03-18 Thread Nirmos
Nirmos added a project: Wikidata.

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

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

To: Nirmos
Cc: Aklapper, Nirmos, maantietaja, Akuckartz, darthmon_wmde, 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] T273002: (MS 6) Create Date input component

2021-03-18 Thread Ladsgroup
Ladsgroup moved this task from Doing to Peer Review on the Wikidata Query 
Builder board.
Ladsgroup added a comment.


  https://github.com/wmde/wikit/pull/398

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

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

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

To: Ladsgroup
Cc: Ladsgroup, Aklapper, Sarai-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] T277060: Move the Query Builder repository to Gerrit

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


  Mentioned in SAL (#wikimedia-releng) [2021-03-18T15:55:21Z]  reload 
zuul for Introduce query-builder job so it can use npm 6.14.* instead 
[integration/config] - https://gerrit.wikimedia.org/r/673183 T277060 


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

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

To: Stashbot
Cc: Addshore, Aklapper, Michael, 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-18 Thread gerritbot
gerritbot added a comment.


  Change 673183 **merged** by jenkins-bot:
  [integration/config@master] Introduce query-builder job so it can use npm 
6.14.* instead
  
  https://gerrit.wikimedia.org/r/673183

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

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

To: gerritbot
Cc: Addshore, Aklapper, Michael, 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] T273327: ✖ can retry saving bridge from ErrorSaving

2021-03-18 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/T273327

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

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

To: Silvan_WMDE
Cc: RhinosF1, WMDE-leszek, Addshore, Aklapper, Reedy, maantietaja, Akuckartz, 
Iflorez, alaa_wmde, Michael, DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, abian, Wikidata-bugs, aude, Lydia_Pintscher, zeljkofilipin, 
Jdforrester-WMF, Mbch331
___
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-18 Thread Addshore
Addshore added a comment.


  The guide posted in my above comment now exists at 
https://www.mediawiki.org/wiki/Wikibase/FAQ#Why_doesn't_the_query_service_update?
  
  In T186161#6925296 , 
@Superraptor123 wrote:
  
  > @Addshore thank you so much for the response. I ended up deleting 
everything and attempted to follow a different set of Wikibase install 
instructions (except now post-load `runUpdate.sh` just runs forever (even 
though there is very little that I added to the database); `localhost:8282` 
queries are stall forever.
  
  localhost:8282?
  Looking at your above snippet nothing is running on 8282
  
CONTAINER ID   IMAGECOMMAND 
  CREATED  STATUS  PORTS  NAMES
ec1ca3cc8116   wikibase/wdqs-frontend:latest"/entrypoint.sh 
ngin…"30 seconds ago   Restarting (1) 10 seconds ago  
docker_compose_files_wdqs-frontend_1
5f81fde0230c   wikibase/wdqs-proxy  "/bin/sh -c 
\"/entryp…"   32 seconds ago   Up 30 seconds   
0.0.0.0:8989->80/tcp   docker_compose_files_wdqs-proxy_1
5ed54229ea6d   wikibase/wdqs:0.3.40 "/entrypoint.sh 
/run…"7 hours ago  Up 29 seconds  
docker_compose_files_wdqs-updater_1
a4f2f620c95a   wikibase/wikibase:1.35-bundle"/bin/bash 
/entrypoi…"7 hours ago  Up 30 seconds   
0.0.0.0:8181->80/tcp   docker_compose_files_wikibase_1
bd1c88a2229d   mariadb:10.3 
"docker-entrypoint.s…"7 hours ago  Up 31 seconds   
3306/tcp   docker_compose_files_mysql_1
13ba2f6d582d   wikibase/elasticsearch:6.5.4-extra   
"/usr/local/bin/dock…"7 hours ago  Up 31 seconds   
9200/tcp, 9300/tcp docker_compose_files_elasticsearch_1
3426f2046c29   wikibase/wdqs:0.3.40 "/entrypoint.sh 
/run…"7 hours ago  Up 31 seconds   /tcp   
docker_compose_files_wdqs_1
  
  
  
  > I'm going to attempt what you've added, but I'm not sure it's applicable 
anymore.
  >
  > NOTE #1: Running `docker run -d -p : --env WIKIBASE_SCHEME=https 
--env WIKIBASE_HOST=intentionally-empty.wiki.opencura.com --env 
WDQS_HOST=localhost --env WDQS_PORT= --name demo-wdqs wikibase/wdqs:0.3.40 
/runBlazegraph.sh` fails saying `su-exec: C:/Program 
Files/Git/runBlazegraph.sh: No such file or directory`. I tried adding the 
absolute path location of `runBlazegraph.sh`, no dice.
  
  `/runBlazegraph.sh` is an absolute location.
  It looks like your runnign this in some flavour of windows shell though so 
try adding another `/` to the start

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

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

To: Addshore
Cc: RShigapov, danshick-wmde, Samantha_Alipio_WMDE, darthmon_wmde, WMDE-leszek, 
Superraptor123, Tinyttt, Louperivois, Jsamwrites, Considering.Different.Routes, 
DarTar, Addshore, Andrawaag, Aklapper, maantietaja, Akuckartz, Jelabra, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Asahiko, abian, despens, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T273327: ✖ can retry saving bridge from ErrorSaving

2021-03-18 Thread Tonina_Zhelyazkova_WMDE
Tonina_Zhelyazkova_WMDE updated the task description.

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

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

To: Tonina_Zhelyazkova_WMDE
Cc: RhinosF1, WMDE-leszek, Addshore, Aklapper, Reedy, maantietaja, Akuckartz, 
Iflorez, alaa_wmde, Michael, DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, abian, Wikidata-bugs, aude, Lydia_Pintscher, zeljkofilipin, 
Jdforrester-WMF, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T263427: Unable to process a particular wikibase dump using munge.sh (localised namespace name)

2021-03-18 Thread JeroenDeDauw
JeroenDeDauw added a comment.


  @dcausse is it realistic to expect this bug to be fixed by Wikimedia in the 
near future? Several institutuions that we are helping with Wikibase adoption 
are running into it.

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

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

To: JeroenDeDauw
Cc: Addshore, Andrawaag, JeroenDeDauw, WMDE-leszek, dcausse, Aklapper, 
Nikerabbit, MPhamWMF, maantietaja, CBogen, Samantha_Alipio_WMDE, Akuckartz, 
Jelabra, Nandana, Namenlos314, Lahi, Gq86, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, Asahiko, abian, despens, jkroll, Wikidata-bugs, 
Jdouglas, aude, Tobias1984, Manybubbles, Nemo_bis, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277578: Move WikibaseRepo EntityFactory to service container

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

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

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

To: ItamarWMDE
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] T186161: What to do if the WDQS does not synchronise with Wikibase?

2021-03-18 Thread Superraptor123
Superraptor123 added a comment.


  @Addshore thank you so much for the response. I ended up deleting everything 
and attempted to follow a different set of Wikibase install instructions 
(except now post-load `runUpdate.sh` just runs forever (even though there is 
very little that I added to the database); `localhost:8282` queries are stall 
forever.
  
  I'm going to attempt what you've added, but I'm not sure it's applicable 
anymore.

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

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

To: Superraptor123
Cc: RShigapov, danshick-wmde, Samantha_Alipio_WMDE, darthmon_wmde, WMDE-leszek, 
Superraptor123, Tinyttt, Louperivois, Jsamwrites, Considering.Different.Routes, 
DarTar, Addshore, Andrawaag, Aklapper, maantietaja, Akuckartz, Jelabra, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Asahiko, abian, despens, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T273221: Measure and indicate Lexeme language completeness, and prompt editors with what more might need doing

2021-03-18 Thread ArthurPSmith
ArthurPSmith moved this task from Backlog to In progress on the 
Wikidata-Lexicodays-2021 board.
ArthurPSmith added a comment.


  Denny's posted this notebook: 
https://public.paws.wmcloud.org/User:DVrandecic_(WMF)/Lexicographic%20coverage.ipynb
 which does pretty much the above for the language Wikipedia corpora. Results 
at https://www.wikidata.org/wiki/Wikidata:Lexicographical_coverage
  However, I don't think he wants to keep running it, so can we move it 
somewhere that it will be run regularly by a bot or something? The 
coverage/completeness data is helpful, and the 'missing' page for each language 
is a great guide to editors, if it could be kept reasonably up to date.

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

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

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

To: ArthurPSmith
Cc: ArthurPSmith, Scott_WUaS, Quiddity, Jdforrester-WMF, maantietaja, 
NavinRizwi, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, 
QZanden, LawExplorer, _jensen, rosalieper, Bodhisattwa, Nikki, VIGNERON, abian, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277762: The dropdown should not be activated when toggling the tooltip via enter

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

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

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, 
Volker_E, 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] T277762: The dropdown should not be activated when toggling the tooltip via enter

2021-03-18 Thread Michael
Michael added a project: Wikidata Design System.

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

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, 
Volker_E, 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] T277762: The dropdown should not be activated when toggling the tooltip via enter

2021-03-18 Thread Michael
Michael created this task.
Michael added a project: Wikidata Query Builder.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  **Steps to Reproduce: **
  
  - Navigate to the tooltip for the references dropdown with the keyboard
  - press enter to show the tooltip **
  
  Actual Results:**
  
  The dropdown expands.
  
  **Expected Results:**
  
  The dropdown shouldn't react to pressing enter while the tooltip has focus.
  
  Note: This is a problem with the Design System `Dropdown` component, not the 
QueryBuilder Tooltip itself.

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

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] T275251: Rest Search API is not wikidata aware (only accepts queries beginning with Q)

2021-03-18 Thread MPhamWMF
MPhamWMF added a comment.


  @Addshore, I talked with the Search Platform team about ranking results, i.e. 
the Tree example, and I think the consensus is unfortunately that there's not a 
single correct answer to this in the general case. Realistically we'd have to 
dig more into what Wikidata users find valuable and relevant when searching and 
adapt our relevance ranking from there.
  
  My own hot take on Tree the Item vs Tree the Lexeme (besides sounding like an 
epic rap battle I want to listen to) is that if we think that one can be very 
relevant to one search at the exclusion of the other, and vice versa, then this 
could be motivation to split out the Lexeme graph.

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

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

To: MPhamWMF
Cc: LGoto, Yair_rand, MPhamWMF, ovasileva, Addshore, Lydia_Pintscher, Aklapper, 
Jdlrobson, Selby, caldera, maantietaja, Akuckartz, Demian, darthmon_wmde, 
WDoranWMF, holger.knust, EvanProdromou, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, pmiazga, LawExplorer, Winter, JJMC89, Iniquity, 
_jensen, rosalieper, Agabi10, Scott_WUaS, Pchelolo, Volker_E, Niedzielski, 
Izno, abian, Wikidata-bugs, aude, GWicke, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277664: Move WikibaseRepo DataTypeValidatorFactory to service container

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

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

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] T277664: Move WikibaseRepo DataTypeValidatorFactory to service container

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


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

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

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

To: ItamarWMDE, 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] T277759: Don't scroll the window when selecting dropdown items with the keyboard

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

TASK DESCRIPTION
  Steps to Reproduce: 
  Navigate to, for example, the references input and use the up- and down-arrow 
to select items in it.
  
  Actual Results:
  The whole page scrolls.
  
  Expected Results:
  The page does not scroll, only the highlighted item is changed in the 
dropdown.

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

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, 
Volker_E, 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] T277736: Add explicit step in Github actions to expose netlify deployment address

2021-03-18 Thread guergana.tzatchkova
guergana.tzatchkova added a comment.


  https://github.com/wmde/query-builder/pull/241

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

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

To: guergana.tzatchkova
Cc: Aklapper, guergana.tzatchkova, 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] T275611: Termbox v2 uses the wrong list of languages

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


  Change 672692 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] WikibaseContentLanguages: throw when 
instantiated without languages
  
  https://gerrit.wikimedia.org/r/672692

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

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

To: Jakob_WMDE, gerritbot
Cc: amy_rc, Aklapper, Jakob_WMDE, maantietaja, Alter-paule, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, darthmon_wmde, 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] T277314: Move WikibaseRepo PrefetchingTermLookup to service container

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


  Change 673279 had a related patch set uploaded (by Itamar Givon; owner: 
Itamar Givon):
  [mediawiki/extensions/WikibaseMediaInfo@master] Temporarily remove type 
hinting
  
  https://gerrit.wikimedia.org/r/673279

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

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] T277722: TypeError: this._languageCodes is undefined at getLanguageNameMap

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

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

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

To: Silvan_WMDE, Maintenance_bot
Cc: Addshore, Tonina_Zhelyazkova_WMDE, Ladsgroup, darthmon_wmde, WMDE-leszek, 
RhinosF1, Jakob_WMDE, Silvan_WMDE, thcipriani, Aklapper, Jdlrobson, 
maantietaja, Akuckartz, Iflorez, alaa_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Verdy_p, abian, Wikidata-bugs, aude, Lydia_Pintscher, Jdforrester-WMF, 
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] T97146: [Bug] Fatal Wikibase PatcherException from EntityContent.php when undoing edits

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

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lydia_Pintscher, Jakob_WMDE, Addshore, Lucas_Werkmeister_WMDE, brennen, 
Krinkle, thiemowmde, gerritbot, hoo, Sjoerddebruin, JanZerebecki, daniel, aude, 
Aklapper, maantietaja, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, 
Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, CucyNoiD, Nandana, 
Gaboe420, lucamauri, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Verdy_p, abian, Wikidata-bugs, Jdforrester-WMF, 
Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277722: TypeError: this._languageCodes is undefined at getLanguageNameMap

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


  Thank you for the quick response!

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

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

To: Silvan_WMDE, Jdlrobson
Cc: Addshore, Tonina_Zhelyazkova_WMDE, Ladsgroup, darthmon_wmde, WMDE-leszek, 
RhinosF1, Jakob_WMDE, Silvan_WMDE, thcipriani, Aklapper, Jdlrobson, 
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, 
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] T97146: [Bug] Fatal Wikibase PatcherException from EntityContent.php when undoing edits

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


  Change 673278 had a related patch set uploaded (by Tobias Andersson; owner: 
Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/Wikibase@REL1_35] Handle error when mixing redirects in 
undo
  
  https://gerrit.wikimedia.org/r/673278

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lydia_Pintscher, Jakob_WMDE, Addshore, Lucas_Werkmeister_WMDE, brennen, 
Krinkle, thiemowmde, gerritbot, hoo, Sjoerddebruin, JanZerebecki, daniel, aude, 
Aklapper, maantietaja, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, 
lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Jonas, Verdy_p, abian, Wikidata-bugs, Jdforrester-WMF, 
Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277722: TypeError: this._languageCodes is undefined at getLanguageNameMap

2021-03-18 Thread Ladsgroup
Ladsgroup closed this task as "Resolved".
Ladsgroup added a comment.


  This is done:
  F34168522: image.png 

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

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

To: Silvan_WMDE, Ladsgroup
Cc: Addshore, Tonina_Zhelyazkova_WMDE, Ladsgroup, darthmon_wmde, WMDE-leszek, 
RhinosF1, Jakob_WMDE, Silvan_WMDE, thcipriani, Aklapper, Jdlrobson, 
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, 
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] T277722: TypeError: this._languageCodes is undefined at getLanguageNameMap

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

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

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

To: Silvan_WMDE, ReleaseTaggerBot
Cc: Addshore, Tonina_Zhelyazkova_WMDE, Ladsgroup, darthmon_wmde, WMDE-leszek, 
RhinosF1, Jakob_WMDE, Silvan_WMDE, thcipriani, Aklapper, Jdlrobson, 
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, 
Verdy_p, abian, Wikidata-bugs, aude, Lydia_Pintscher, Jdforrester-WMF, Mbch331, 
Jay8g, AMooney
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277722: TypeError: this._languageCodes is undefined at getLanguageNameMap

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


  Mentioned in SAL (#wikimedia-operations) [2021-03-18T13:23:47Z] 
 Synchronized php-1.36.0-wmf.35/extensions/Wikibase/repo: 
[[gerrit:673108|languageLabelDescriptionAliases: use getLanguageNameByCode]] 
(T275611  T277722 
) (duration: 01m 14s)

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

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

To: Silvan_WMDE, Stashbot
Cc: Addshore, Tonina_Zhelyazkova_WMDE, Ladsgroup, darthmon_wmde, WMDE-leszek, 
RhinosF1, Jakob_WMDE, Silvan_WMDE, thcipriani, Aklapper, Jdlrobson, 
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, 
Verdy_p, abian, Wikidata-bugs, aude, Lydia_Pintscher, Jdforrester-WMF, Mbch331, 
Jay8g, AMooney
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T275611: Termbox v2 uses the wrong list of languages

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


  Mentioned in SAL (#wikimedia-operations) [2021-03-18T13:23:47Z] 
 Synchronized php-1.36.0-wmf.35/extensions/Wikibase/repo: 
[[gerrit:673108|languageLabelDescriptionAliases: use getLanguageNameByCode]] 
(T275611  T277722 
) (duration: 01m 14s)

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

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

To: Jakob_WMDE, Stashbot
Cc: amy_rc, Aklapper, Jakob_WMDE, maantietaja, Alter-paule, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, darthmon_wmde, 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] T258776: Add Structured Data on Commons M-ID to Wikidata dumps

2021-03-18 Thread CBogen
CBogen added a comment.


  In T258776#6923015 , 
@Multichill wrote:
  
  > In T258776#6921752 , 
@CBogen wrote:
  >
  >> I'm going to close this as a duplicate of T277665 
 as that is what we see as the 
practical solution to this problem. Please re-open if you don't think that will 
solve your use case.
  >
  > This is clearly not a duplicate because this task is about the Wikidata RDF 
and T277665  is about Commons RDF.
  
  While it's a different solution, it seems like T277665 
 would solve the same problem that 
this task would solve, in a more practical way that is simpler to implement. If 
you have a problem that changing the Wikidata RDF would solve that T277665 
 (changing the Commons RDF) 
wouldn't, please let us know here so we can understand why this should stay 
open. Thanks!

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

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

To: CBogen
Cc: CBogen, Fuzheado, Jane023, Multichill, Lydia_Pintscher, Spinster, 
FRomeo_WMF, GFontenelle_WMF, dcausse, Jarekt, Librarian_lena, 
Lucas_Werkmeister_WMDE, Jheald, Aklapper, Tpt, MPhamWMF, maantietaja, 
Nintendofan885, Akuckartz, Nandana, JKSTNK, Namenlos314, Lahi, Gq86, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _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] T276762: Wikibase\Lib\Store\Sql\SiteLinkTable::getLinks can take over a minute to execute

2021-03-18 Thread Addshore
Addshore added a comment.


  Replied off ticket :)

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

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

To: Addshore
Cc: Addshore, Marostegui, hoo, Aklapper, jcrespo, maantietaja, Akuckartz, 
darthmon_wmde, 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] T277722: TypeError: this._languageCodes is undefined at getLanguageNameMap

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


  Change 673108 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@wmf/1.36.0-wmf.35] 
languageLabelDescriptionAliases: use getLanguageNameByCode
  
  https://gerrit.wikimedia.org/r/673108

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

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

To: Silvan_WMDE, gerritbot
Cc: Addshore, Tonina_Zhelyazkova_WMDE, Ladsgroup, darthmon_wmde, WMDE-leszek, 
RhinosF1, Jakob_WMDE, Silvan_WMDE, thcipriani, Aklapper, Jdlrobson, 
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, 
Verdy_p, abian, Wikidata-bugs, aude, Lydia_Pintscher, Jdforrester-WMF, Mbch331, 
Jay8g, AMooney
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T275611: Termbox v2 uses the wrong list of languages

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


  Change 673108 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@wmf/1.36.0-wmf.35] 
languageLabelDescriptionAliases: use getLanguageNameByCode
  
  https://gerrit.wikimedia.org/r/673108

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

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

To: Jakob_WMDE, gerritbot
Cc: amy_rc, Aklapper, Jakob_WMDE, maantietaja, Alter-paule, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, darthmon_wmde, 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] T276762: Wikibase\Lib\Store\Sql\SiteLinkTable::getLinks can take over a minute to execute

2021-03-18 Thread jcrespo
jcrespo added a comment.


  Offtopic- and feel free to PM in private. What is a good way to report 
database-related issues to wikidata development team? I am a bit intimidated by 
the  amount of tags and dashboards (which will probably reflect your internal 
organization, but I am not too familiar with it). I trust you already that any 
tag (even incorrect!) I use always end up being attended (and I am happy with 
it, thank you!)- but please provide feedback if I can make your life easier for 
you when triaging (who to CC? tags to use?, etc.)
  
  Thank you!

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

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

To: jcrespo
Cc: Addshore, Marostegui, hoo, Aklapper, jcrespo, maantietaja, Akuckartz, 
darthmon_wmde, 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] T275016: Can't use Quickstatements because login in fails

2021-03-18 Thread Addshore
Addshore removed Due Date.

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

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

To: Addshore
Cc: Addshore, Aklapper, Hildepont, Samantha_Alipio_WMDE, darthmon_wmde, 
Jelabra, _jensen, Asahiko, despens, Wikidata-bugs, Lydia_Pintscher
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277737: PrefetchingTermLookup Service returns a doubly nested Term Lookup

2021-03-18 Thread ItamarWMDE
ItamarWMDE added a comment.


  Cool, thanks for the reply, yeah the "fix" shouldn't be too much trouble, I 
just wasn't sure if this was intentional, or even worth spending time on, 
since, as you say, the resulting lookup would act exactly the same either way. 
I can take care of it after T277314  
is fully merged.

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

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

To: ItamarWMDE
Cc: Addshore, 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] T277737: PrefetchingTermLookup Service returns a doubly nested Term Lookup

2021-03-18 Thread Addshore
Addshore added a comment.


  So the top level of dispatching happens in 
https://github.com/wikimedia/Wikibase/blob/4eefb25d289d928f81230f306570a1a575a7ceba/data-access/src/MultipleEntitySourceServices.php#L95-L108
  This currently gets a PrefetchingTermLookup for the whole entity source, 
rather than for a specific entity type from the entity source.
  It appears this is why things get wrapped twice.
  
  Although appearing a bit odd this should end up doing the right thing and 
shouldn't have much overhead.
  
  A "fix" would be to modify 
https://github.com/wikimedia/Wikibase/blob/4eefb25d289d928f81230f306570a1a575a7ceba/data-access/src/SingleEntitySourceServices.php#L346-L377
 / `SingleEntitySourceServices` to allow retrieval of services like this 
specific to one of the entity types that they are the source for.

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

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

To: Addshore
Cc: Addshore, 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] T277737: PrefetchingTermLookup Service returns a doubly nested Term Lookup

2021-03-18 Thread ItamarWMDE
ItamarWMDE updated the task description.

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

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

To: ItamarWMDE
Cc: Addshore, 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] T253754: Make Wikibase type dispatching services more uniform

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed Wikidata-Campsite.

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

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

To: Addshore
Cc: Addshore, WMDE-leszek, Jakob_WMDE, maantietaja, Akuckartz, darthmon_wmde, 
DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Izno, abian, Wikidata-bugs, aude, Dinoguy1000, 
Mbch331, Jay8g, Jonas, Lydia_Pintscher
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277737: PrefetchingTermLookup Service returns a doubly nested Term Lookup

2021-03-18 Thread Addshore
Addshore added a comment.


  Possibly related T253754: Make Wikibase type dispatching services more 
uniform 

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

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

To: Addshore
Cc: Addshore, 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] T277722: TypeError: this._languageCodes is undefined at getLanguageNameMap

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

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

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

To: Silvan_WMDE, gerritbot
Cc: Addshore, Tonina_Zhelyazkova_WMDE, Ladsgroup, darthmon_wmde, WMDE-leszek, 
RhinosF1, Jakob_WMDE, Silvan_WMDE, thcipriani, Aklapper, Jdlrobson, 
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, 
Verdy_p, abian, Wikidata-bugs, aude, Lydia_Pintscher, Jdforrester-WMF, Mbch331, 
Jay8g, AMooney
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T277722: TypeError: this._languageCodes is undefined at getLanguageNameMap

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


  Change 673108 had a related patch set uploaded (by Ladsgroup; owner: Jakob):
  [mediawiki/extensions/Wikibase@wmf/1.36.0-wmf.35] 
languageLabelDescriptionAliases: use getLanguageNameByCode
  
  https://gerrit.wikimedia.org/r/673108

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

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

To: Silvan_WMDE, gerritbot
Cc: Addshore, Tonina_Zhelyazkova_WMDE, Ladsgroup, darthmon_wmde, WMDE-leszek, 
RhinosF1, Jakob_WMDE, Silvan_WMDE, thcipriani, Aklapper, Jdlrobson, 
maantietaja, Akuckartz, Iflorez, alaa_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Verdy_p, abian, Wikidata-bugs, aude, Lydia_Pintscher, Jdforrester-WMF, 
Mbch331, Jay8g, AMooney
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T275611: Termbox v2 uses the wrong list of languages

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


  Change 673108 had a related patch set uploaded (by Ladsgroup; owner: Jakob):
  [mediawiki/extensions/Wikibase@wmf/1.36.0-wmf.35] 
languageLabelDescriptionAliases: use getLanguageNameByCode
  
  https://gerrit.wikimedia.org/r/673108

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

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

To: Jakob_WMDE, gerritbot
Cc: amy_rc, Aklapper, Jakob_WMDE, maantietaja, Alter-paule, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, darthmon_wmde, 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] T250266: Termbox: Use "vuex" ResourceLoader module from core

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to To Prioritize on the 
wdwb-tech-focus board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

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


[Wikidata-bugs] [Maniphest] T202254: Use ExtensionRegistry instead of class_exists to check for CirrusSearch in Wikibase

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to To Prioritize on the 
wdwb-tech-focus board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

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


[Wikidata-bugs] [Maniphest] T273500: Ensure all CSS classes follow proper BEM methodology

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to To Prioritize on the 
wdwb-tech-focus board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

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


[Wikidata-bugs] [Maniphest] T226015: Automatically build dist

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to To Prioritize on the 
wdwb-tech-focus board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

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


[Wikidata-bugs] [Maniphest] T276762: Wikibase\Lib\Store\Sql\SiteLinkTable::getLinks can take over a minute to execute

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to To Prioritize on the 
wdwb-tech-focus board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

To: Addshore
Cc: Addshore, Marostegui, hoo, Aklapper, jcrespo, maantietaja, Akuckartz, 
darthmon_wmde, 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] T123221: [Task] Remove IE8 workarounds from Wikibase

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to To Prioritize on the 
wdwb-tech-focus board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

To: Addshore
Cc: Krinkle, gerritbot, Ladsgroup, Ricordisamoa, Jonas, adrianheine, 
thiemowmde, StudiesWorld, Legoktm, Aklapper, maantietaja, Akuckartz, 
darthmon_wmde, Dinadineke, DannyS712, Nandana, tabish.shaikh91, Lahi, Gq86, 
GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, QZanden, 
merbst, LawExplorer, _jensen, rosalieper, Scott_WUaS, Izno, abian, 
Wikidata-bugs, aude, Dinoguy1000, TheDJ, Addshore, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T188395: [Task] Make sure all Wikibase codebases run PHPCS during `composer test`

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to To Prioritize on the 
wdwb-tech-focus board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

To: Addshore
Cc: Addshore, JeroenDeDauw, Ladsgroup, Jonas, Lucas_Werkmeister_WMDE, Rzuwig, 
thiemowmde, Aklapper, maantietaja, Akuckartz, darthmon_wmde, DannyS712, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Izno, abian, Wikidata-bugs, aude, Dinoguy1000, Mbch331, 
Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T268890: Some Wikibase API tests fail if Instant Commons is enabled

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to To Prioritize on the 
wdwb-tech-focus board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

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


[Wikidata-bugs] [Maniphest] T235498: Share Storybook Config

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to To Prioritize on the 
wdwb-tech-focus board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

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


[Wikidata-bugs] [Maniphest] T250263: Use "vuex" ResourceLoader module from core

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to To Prioritize on the 
wdwb-tech-focus board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

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


[Wikidata-bugs] [Maniphest] T250267: Tainted Ref: Use "vuex" ResourceLoader module from core

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to To Prioritize on the 
wdwb-tech-focus board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

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


[Wikidata-bugs] [Maniphest] T226097: Browserslist: caniuse-lite is outdated. Please run next command `npm update caniuse-lite browserslist`

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to To Prioritize on the 
wdwb-tech-focus board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

To: Addshore
Cc: Addshore, Aklapper, Matthias_Geisler_WMDE, maantietaja, Akuckartz, 
darthmon_wmde, 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] T233520: page_props wikibase_item is sometimes not added to client pages when a sitelink is added on a repo

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to Research on the wdwb-tech-focus 
board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

To: Addshore
Cc: CCicalese_WMF, Kizule, Tacsipacsi, Bencemac, Urbanecm, RolandUnger, 
Ladsgroup, Lea_Lacroix_WMDE, LibrErli, tstarling, aaron, WMDE-leszek, Addshore, 
Lydia_Pintscher, Lucas_Werkmeister_WMDE, Jheald, Aklapper, Mike_Peel, 
maantietaja, Muchiri124, Hazizibinmahdi, CBogen, Akuckartz, WDoranWMF, 
holger.knust, EvanProdromou, Nandana, Lahi, Gq86, Ramsey-WMF, 
GoranSMilovanovic, QZanden, LawExplorer, Poyekhali, _jensen, rosalieper, 
Agabi10, Taiwania_Justo, Scott_WUaS, Pchelolo, Jonas, Ixocactus, Wong128hk, 
abian, Wikidata-bugs, aude, El_Grafo, Dinoguy1000, Steinsplitter, Mbch331, 
Keegan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T268600: Implement services through MediaWikiServices

2021-03-18 Thread Addshore
Addshore moved this task from legacy-backlog to Active on the wdwb-tech-focus 
board.
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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

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


[Wikidata-bugs] [Maniphest] T151576: Replace LegacyIdInterpreter with EntityIdComposer

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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


[Wikidata-bugs] [Maniphest] T157868: Lua functions do not resolve redirects

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

To: Addshore
Cc: Jarekt, Addshore, Vriullop, Tomukas, Mike_Peel, RexxS, Bugreporter, Ahecht, 
Dipsacus_fullonum, eranroz, Uzume, Salgo60, Larske, hoo, matej_suchanek, 
Aklapper, maantietaja, Akuckartz, 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] T277541: TypeError: item is null at _initMenu/

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

To: Addshore
Cc: Aklapper, Jdlrobson, Mengs21, maantietaja, EgbeRef, 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] T222951: [Maintenance] Do not bind against LabelsProvider in ChangeOps

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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


[Wikidata-bugs] [Maniphest] T276528: Separate EntityTitleLookup and EntityTitleStoreLookup interfaces

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

To: Addshore
Cc: Addshore, Lucas_Werkmeister_WMDE, Aklapper, maantietaja, Akuckartz, 
Nandana, 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] T260020: Make "modern build" for termbox

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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


[Wikidata-bugs] [Maniphest] T248840: Don’t polyfill Promise in Bridge modules

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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


[Wikidata-bugs] [Maniphest] T266532: Make WikibaseLexeme phpunit test structure match code

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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


[Wikidata-bugs] [Maniphest] T267904: Review WikibaseDataModelTypes volunteer contribution (PR #14)

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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


[Wikidata-bugs] [Maniphest] T260340: Stop using deprecated Language static methods in Wikibase extensions

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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


[Wikidata-bugs] [Maniphest] T96458: Separate Wikibase unit tests from integration tests

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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


[Wikidata-bugs] [Maniphest] T277722: TypeError: this._languageCodes is undefined at getLanguageNameMap

2021-03-18 Thread Silvan_WMDE
Silvan_WMDE claimed this task.
Silvan_WMDE added a comment.


  In T277722#6924129 , 
@Addshore wrote:
  
  > Seemingly this may be the cause 
https://gerrit.wikimedia.org/r/c/mediawiki/extensions/Wikibase/+/672358
  
  we currently believe 
https://gerrit.wikimedia.org/r/c/mediawiki/extensions/Wikibase/+/672353 is the 
more likely cause

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

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

To: Silvan_WMDE
Cc: Addshore, Tonina_Zhelyazkova_WMDE, Ladsgroup, darthmon_wmde, WMDE-leszek, 
RhinosF1, Jakob_WMDE, Silvan_WMDE, thcipriani, Aklapper, Jdlrobson, 
maantietaja, Akuckartz, Iflorez, alaa_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Verdy_p, abian, Wikidata-bugs, aude, Lydia_Pintscher, Jdforrester-WMF, 
Mbch331, Jay8g, AMooney
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T266226: Programatically create the ontology-1.0.owl file that resides on Wikiba.se

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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


[Wikidata-bugs] [Maniphest] T273592: Migrate WMDE vuejs projects to vue3

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

To: Addshore
Cc: Jakob_WMDE, WMDE-leszek, Lucas_Werkmeister_WMDE, Addshore, 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] T265149: Upgrade WebdriverIO in Wikidata Bridge

2021-03-18 Thread Addshore
Addshore edited projects, added wdwb-tech-focus; removed wdwb-tech-focus 
(legacy-backlog).

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

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

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


  1   2   >