[Wikidata-bugs] [Maniphest] [Updated] T237319: 502 errors on ATS/8.0.5

2019-11-21 Thread Vgutierrez
Vgutierrez added a parent task: T236988: ats-be on the text cluster is 
experiencing broken connections.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T237319: 502 errors on ATS/8.0.5

2019-11-21 Thread Joe
Joe added a comment.


  In T237319#5681384 , 
@darthmon_wmde wrote:
  
  > Is there anything that we can quickly do on wikibase to fix this? 
  > if so, please advise what concretely.
  > Thanks!
  
  In general, whenever your code decides to respond with a 304 not modified or 
a 204 no content status code, no content body should be sent to the client.
  
  While the FCGI specification[1] isn't extremely clear on this topic, the HTTP 
one is, and for instance nginx refuses to accept as valid 304 responses with a 
body, see for instance https://trac.nginx.org/nginx/ticket/459
  
  So the  code for `Special:EntityData` should not emit a body when returning a 
304 response code, or any wikibase installation using nginx as a webserver 
would fail to respond to `Special:EntityData`.
  
  [1] FCGI is the protocol PHP-FPM speaks - specification is here 
https://github.com/fast-cgi/spec/blob/master/spec.md (rather obscure, in fact)

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T237319: 502 errors on ATS/8.0.5

2019-11-21 Thread elukey
elukey added a comment.


  In T237319#5681384 , 
@darthmon_wmde wrote:
  
  > Is there anything that we can quickly do on wikibase to fix this? 
  > if so, please advise what concretely.
  > Thanks!
  
  @darthmon_wmde hi! So the issue seems to be that URLs like 
www.wikidata.org/wiki/Special:EntityData/Q38646387.json might lead to a HTTP 
304 response with a body, that violates HTTP specs. This is currently not 
handled by the Apache httpd version that we use on Debian Stretch (namely 
proactively dropping the body in case it is found) so a fix in our code would 
definitely help.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T237319: 502 errors on ATS/8.0.5

2019-11-21 Thread elukey
elukey added a comment.


  Thanks, will remember to use -v :)
  
  On buster + sury's php7.2-fpm + apache 2.4.38 I cannot repro:
  
root@497a89a9ac42:/# curl localhost/test.php -v
* Expire in 0 ms for 6 (transfer 0x5604525d2f50)
* Expire in 1 ms for 1 (transfer 0x5604525d2f50)
* Expire in 0 ms for 1 (transfer 0x5604525d2f50)
* Expire in 1 ms for 1 (transfer 0x5604525d2f50)
*   Trying 127.0.0.1...
* TCP_NODELAY set
* Expire in 149997 ms for 3 (transfer 0x5604525d2f50)
* Expire in 200 ms for 4 (transfer 0x5604525d2f50)
* Connected to localhost (127.0.0.1) port 80 (#0)
> GET /test.php HTTP/1.1
> Host: localhost
> User-Agent: curl/7.64.0
> Accept: */*
>
< HTTP/1.1 304 Not Modified
< Date: Fri, 22 Nov 2019 07:22:15 GMT
< Server: Apache/2.4.38 (Debian)
<
* Connection #0 to host localhost left intact
  
  I thought to use git bisect to nail down the commit that fixes the problem, 
but then I remembered http://svn.apache.org/r1837056 (plus 
https://svn.apache.org/r1843242 as follow up for mod_brotli/deflate). The fix 
handles the 304/204 body problem in the http output filter, so after all the 
content generators (like mod_proxy_fcgi) and before sending the response to the 
external client.
  
  The change is not small and contained in one file, but we could think about 
adding it to our current httpd debian stretch version while waiting for Buster 
for appservers.

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

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

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


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

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


  In T199121#5682911 , 
@Nuria wrote:
  
  > I see this ticket is resolved but the dumps on commons have version  
version="0.10" since from this ticket i gather that the dumps that contain 
those slots are version=11 , are those being produced?
  
  Not yet. There are unmerged patches yet, and we'll need to announce well in 
advance before rolling out the change.

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

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

To: ArielGlenn
Cc: Nuria, mako, FaFlo, Halfak, vrandezo, Denny, kchapman, tstarling, awight, 
JAllemandou, hoo, pmiazga, Nemo_bis, brion, Tgr, Aklapper, Fjalapeno, 
ArielGlenn, daniel, darthmon_wmde, DannyS712, Nandana, kostajh, Lahi, Gq86, 
Ramsey-WMF, GoranSMilovanovic, RazeSoldier, Lunewa, QZanden, V4switch, 
LawExplorer, JJMC89, _jensen, rosalieper, Agabi10, D3r1ck01, Scott_WUaS, Izno, 
SBisson, Wong128hk, gnosygnu, Perhelion, Wikidata-bugs, matthiasmullie, aude, 
GWicke, Bawolff, jayvdb, fbstj, Fabrice_Florin, santhosh, Jdforrester-WMF, 
Ladsgroup, Matanya, Mbch331, Rxy, Jay8g, Ltrlg, bd808, Legoktm
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


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

2019-11-21 Thread Nuria
Nuria updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T237319: 502 errors on ATS/8.0.5

2019-11-21 Thread Vgutierrez
Vgutierrez added a comment.


  And I can reproduce the issue as well with 
docker-registry.wikimedia.org/dev/stretch-php72-fpm-apache2.
  Dockerfile:
  
FROM docker-registry.wikimedia.org/dev/stretch-php72-fpm-apache2
RUN mkdir -p /tmp/php
RUN sed -i s/runuser/www-data/ /etc/apache2/apache2.conf
COPY poc.php /var/www/html
  
  
  
willikins:fpm-apache2 vgutierrez$ curl -v http://127.0.0.1:8080/poc.php
*   Trying 127.0.0.1...
* TCP_NODELAY set
* Connected to 127.0.0.1 (127.0.0.1) port 8080 (#0)
> GET /poc.php HTTP/1.1
> Host: 127.0.0.1:8080
> User-Agent: curl/7.64.1
> Accept: */*
>
< HTTP/1.1 304 Not Modified
< Date: Fri, 22 Nov 2019 02:55:52 GMT
< Server: Apache/2.4.25 (Debian)
< Connection: Upgrade
<
* Excess found in a non pipelined read: excess = 4 url = /poc.php 
(zero-length body)
* Connection #0 to host 127.0.0.1 left intact
* Closing connection 0
  
  versions used inside the container:
  
willikins:fpm-apache2 vgutierrez$ docker exec apache dpkg -l php7.2-fpm
ii  php7.2-fpm 7.2.24-1+0~20191026.31+debian9~1.gbpbbacde+wmf1 amd64
server-side, HTML-embedded scripting language (FPM-CGI binary)
willikins:fpm-apache2 vgutierrez$ docker exec apache dpkg -l apache2
ii  apache22.4.25-3+deb9u9 amd64Apache HTTP Server

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T237319: 502 errors on ATS/8.0.5

2019-11-21 Thread Vgutierrez
Vgutierrez added a comment.


  And using a dumb TCP client we can see the 4 excess bytes:
  
vgutierrez@mwdebug2001:~$ python3
[...]
>>> import socket
>>> s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
>>> s.connect(('10.192.0.98', 80))
>>> s.send("GET /w/vgutierrez.php HTTP/1.1\r\nHost: 
en.wikipedia.org\r\n\r\n".encode())
58
>>> s.recv(1024)
b'HTTP/1.1 304 Not Modified\r\nDate: Fri, 22 Nov 2019 02:33:07 
GMT\r\nServer: mwdebug2001.codfw.wmnet\r\n\r\ntest'
>>> s.close()

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T237319: 502 errors on ATS/8.0.5

2019-11-21 Thread Vgutierrez
Vgutierrez added a comment.


  please note that I cannot reproduce on mwdebug using `curl -i`, see the 
difference:
  
vgutierrez@mwdebug2001:~$ curl --resolve en.wikipedia.org:80:10.192.0.98 
http://en.wikipedia.org/w/vgutierrez.php -v
* Added en.wikipedia.org:80:10.192.0.98 to DNS cache
* Hostname en.wikipedia.org was found in DNS cache
*   Trying 10.192.0.98...
* TCP_NODELAY set
* Connected to en.wikipedia.org (10.192.0.98) port 80 (#0)
> GET /w/vgutierrez.php HTTP/1.1
> Host: en.wikipedia.org
> User-Agent: curl/7.52.1
> Accept: */*
>
< HTTP/1.1 304 Not Modified
< Date: Fri, 22 Nov 2019 02:26:32 GMT
< Server: mwdebug2001.codfw.wmnet
<
* Excess found in a non pipelined read: excess = 4 url = /w/vgutierrez.php 
(zero-length body)
* Curl_http_done: called premature == 0
* Connection #0 to host en.wikipedia.org left intact
vgutierrez@mwdebug2001:~$ curl --resolve en.wikipedia.org:80:10.192.0.98 
http://en.wikipedia.org/w/vgutierrez.php -i
HTTP/1.1 304 Not Modified
Date: Fri, 22 Nov 2019 02:26:35 GMT
Server: mwdebug2001.codfw.wmnet

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

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

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


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

2019-11-21 Thread Abit
Abit added a comment.


  @Addshore said there were 2,988,205 as of 9 PST this morning.  I got the 
sense he didn't count using search, but he'll have to confirm.

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

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

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


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

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

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

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

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


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

2019-11-21 Thread Nuria
Nuria added a subscriber: Addshore.
Nuria added a comment.


  I think @Addshore had some information to add here.

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

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

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


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

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


  Per T220525  it looks like none of 
the xml dump files that provide content for analytics contain any data about 
structure data in commons files.
  
  Proposed changes (that I am not sure got implemented) to change the dumps 
format to include this info are here: 
https://www.mediawiki.org/wiki/Requests_for_comment/Schema_update_for_multiple_content_objects_per_revision_(MCR)_in_XML_dumps#Schema
  
  Dumps are on version 0.10, the proposal linked is for (I think) version 0.11
  
  Summing up: there is no way to search actual page content to get the 
structure data of the page at this time from the dumps.

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

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

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


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

2019-11-21 Thread Nuria
Nuria updated the task description.

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

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

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


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

2019-11-21 Thread Nuria
Nuria created this task.
Nuria added projects: Analytics, SDC General, Product-Analytics.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION


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

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

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


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

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


  The work done by @mpopov
  
  The wbc_entity_usage table is supposed to hold info on Wikidata usage for the 
pages For example, here's a random file I added some structured data to a few 
days ago: 
https://commons.wikimedia.org/wiki/File:P%C3%B3voa_de_Varzim_-i---i-_(25379025808).jpg
  
  When you look for it the commonswiki replica, it has a page ID of 68860692. 
Looking for it in the wbc_entity_usage table we only see that it has a caption 
in English, which I added at basically the same time as several statements:
  
  Screen Shot 2019-11-19 at 5.58.57 PM.png
  eu_aspect column does have other values like "O" (statements) and "D" (not 
documented, but from a brief investigation looks like it's specifically for 
linking categories on Commons to Wikidata Q-items). There are some records of 
files with "O" aspects (as the MW page notes, it can refer to a variety to 
entity usages but typically it's statements) but then it gets weird because the 
language of the label isn't recorded and there's a bunch of seemingly 
unnecessary info? Take for example the MediaWiki DB data for 
https://commons.wikimedia.org/wiki/File:Jodrell_Bank_Mark_II_5.jpg
  
  Screen Shot 2019-11-19 at 6.36.04 PM.png
  Screen Shot 2019-11-19 at 6.36.33 PM.png
  Woof! That's…not great. So, uh, clearly there's something funky going on with 
the Wikibase client extension? Or maybe that's data that was recorded by an 
earlier version of the extension before it knew to append language codes to 
labels? I don't know enough about the nitty-gritty there, so these are just 
vaguely educated guesses.
  
  So, with the caveat that we're dealing with imperfect data and that some data 
is definitely missing, here are SOME lower bounds on files which have 
structured data:
  
  SELECT
  
COUNT(DISTINCT eu_page_id) AS n_files_with_statements,
COUNT(1) AS n_statements
  
  FROM wbc_entity_usage
  INNER JOIN page ON wbc_entity_usage.eu_page_id = page.page_id
  WHERE page_namespace = 6
  
AND eu_aspect = 'O';
  
  n_files_with_statements: 5 212 680
  n_statements: 8 677 888
  
  Files with labels:
  
  SELECT
  
COUNT(DISTINCT eu_page_id) AS n_files_with_captions
  
  FROM wbc_entity_usage
  INNER JOIN page ON wbc_entity_usage.eu_page_id = page.page_id
  WHERE page_namespace = 6
  
AND eu_aspect RLIKE '^L';
  
  n_files_with_captions: 7 857 520
  
  Files with captions and/or statements:
  
  SELECT
  
COUNT(DISTINCT eu_page_id) AS n_files_with_structured_data
  
  FROM wbc_entity_usage
  INNER JOIN page ON wbc_entity_usage.eu_page_id = page.page_id
  WHERE page_namespace = 6
  
AND (eu_aspect RLIKE '^L' OR eu_aspect = 'O');
  
  n_files_with_structured_data: 7 861 887
  
  Total files (at the moment I ran these queries, so we have a record of % w/ 
structured data):
  
  SELECT COUNT(1) AS n_files_total
  FROM page WHERE page_namespace = 6;
  
  n_files_total: 58 698 512
  
  Thanks for reading! Feel free to correct me if I made any mistakes with the 
queries or my thought process.

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

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

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


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

2019-11-21 Thread Nuria
Nuria added a comment.
Restricted Application added a project: Structured-Data-Backlog.


  I see this ticket is resolved but the dumps on commons have version  
version="0.10" since from this ticket i gather that the dumps that contain 
those slots are version=11 , are those being produced?

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

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

To: ArielGlenn, Nuria
Cc: Nuria, mako, FaFlo, Halfak, vrandezo, Denny, kchapman, tstarling, awight, 
JAllemandou, hoo, pmiazga, Nemo_bis, brion, Tgr, Aklapper, Fjalapeno, 
ArielGlenn, daniel, darthmon_wmde, DannyS712, Nandana, kostajh, Lahi, Gq86, 
Ramsey-WMF, GoranSMilovanovic, RazeSoldier, Lunewa, QZanden, V4switch, 
LawExplorer, JJMC89, _jensen, rosalieper, Agabi10, D3r1ck01, Scott_WUaS, Izno, 
SBisson, Wong128hk, gnosygnu, Perhelion, Wikidata-bugs, matthiasmullie, aude, 
GWicke, Bawolff, jayvdb, fbstj, Fabrice_Florin, santhosh, Jdforrester-WMF, 
Ladsgroup, Matanya, Mbch331, Rxy, Jay8g, Ltrlg, bd808, Legoktm
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


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

2019-11-21 Thread Bugreporter
Bugreporter added a comment.


  Actually maxlag may be more than 5 second for up to one hour. tools should 
not break (not "give up") even no edits can not be made.

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

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

To: Addshore, Bugreporter
Cc: Envlh, Gstupp, Sebotic, Tagishsimon, Liridon, Bugreporter, Magnus, Tpt, 
Pintoch, Lydia_Pintscher, Matthias_Geisler_WMDE, Simon_Villeneuve, 
Lea_Lacroix_WMDE, Tarrow, alaa_wmde, Andrawaag, Multichill, Ladsgroup, 
Smalyshev, fgiunchedi, hoo, Daniel_Mietchen, MisterSynergy, Addshore, 
Sjoerddebruin, Aklapper, Lucas_Werkmeister_WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Chicocvenancio, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, WSH1906, 
Lewizho99, Volans, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, 
jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


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

2019-11-21 Thread Pintoch
Pintoch added a comment.


  So this is what we get with an exponential back-off (1.5 factor), at the 
moment:
  
22:37:27.148 [..baseapi.WbEditingAction] [maxlag] Waiting for all: 
5.49167 seconds lagged. -- pausing for 1000 milliseconds. (19338ms)
22:37:28.729 [..baseapi.WbEditingAction] [maxlag] Waiting for all: 
5.49167 seconds lagged. -- pausing for 1500 milliseconds. (1581ms)
22:37:33.809 [..baseapi.WbEditingAction] [maxlag] Waiting for all: 
5.49167 seconds lagged. -- pausing for 2250 milliseconds. (5080ms)
22:37:37.931 [..baseapi.WbEditingAction] [maxlag] Waiting for all: 
5.49167 seconds lagged. -- pausing for 3375 milliseconds. (4122ms)
22:37:42.663 [..baseapi.WbEditingAction] [maxlag] Waiting for all: 
5.49167 seconds lagged. -- pausing for 5062 milliseconds. (4732ms)
22:37:49.437 [..baseapi.WbEditingAction] [maxlag] Waiting for all: 
5.49167 seconds lagged. -- pausing for 7593 milliseconds. (6774ms)
22:37:58.429 [..baseapi.WbEditingAction] [maxlag] Waiting for all: 
5.49167 seconds lagged. -- pausing for 11389 milliseconds. (8992ms)
22:38:18.217 [..baseapi.WbEditingAction] [maxlag] Waiting for all: 6 
seconds lagged. -- pausing for 17083 milliseconds. (19788ms)
22:38:36.461 [..baseapi.WbEditingAction] [maxlag] Waiting for all: 6 
seconds lagged. -- pausing for 25624 milliseconds. (18244ms)
22:39:05.013 [..baseapi.WbEditingAction] [maxlag] Waiting for all: 
6.46667 seconds lagged. -- pausing for 38436 milliseconds. (28552ms)
  
  So it looks like this means no OpenRefine edits at all with these new rules, 
in the current situation.

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

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

To: Addshore, Pintoch
Cc: Envlh, Gstupp, Sebotic, Tagishsimon, Liridon, Bugreporter, Magnus, Tpt, 
Pintoch, Lydia_Pintscher, Matthias_Geisler_WMDE, Simon_Villeneuve, 
Lea_Lacroix_WMDE, Tarrow, alaa_wmde, Andrawaag, Multichill, Ladsgroup, 
Smalyshev, fgiunchedi, hoo, Daniel_Mietchen, MisterSynergy, Addshore, 
Sjoerddebruin, Aklapper, Lucas_Werkmeister_WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Chicocvenancio, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, WSH1906, 
Lewizho99, Volans, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, 
jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T231730: Step 1: Help link

2019-11-21 Thread hoo
hoo moved this task from To Do to Test (Product Review) on the 
Wikidata-Tainted-References-Sprint5 board.
hoo added a comment.


  I think thisis  actually fully done by now.

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

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

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

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


[Wikidata-bugs] [Maniphest] [Triaged] T208036: Scrape chemical names and data for WikiData from chemical databases

2019-11-21 Thread Ecritures
Ecritures triaged this task as "Normal" priority.

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

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

To: Ecritures
Cc: BorDeh, Vemonet, Freddytuxworth, Husky, Laffano, S9a8m, MxLucy, Dat_doris, 
Phofx, darthmon_wmde, Dinadineke, DannyS712, Nandana, tabish.shaikh91, Lahi, 
Gq86, GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, 
QZanden, merbst, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, 
aude, TheDJ, Mbch331, Ainali
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Triaged] T207839: Batch add WO II war memorials to Wikidata

2019-11-21 Thread Ecritures
Ecritures triaged this task as "Normal" priority.

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

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

To: Pintoch, Ecritures
Cc: Ecritures, Jane023, Multichill, Footech, Elvalente, Pintoch, RonnieV, 
SIryn, MxLucy, Dat_doris, Phofx, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Nikerabbit, Mbch331, Ainali
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Triaged] T238498: index date statements

2019-11-21 Thread EBernhardson
EBernhardson triaged this task as "Normal" priority.

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

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

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


[Wikidata-bugs] [Maniphest] [Triaged] T238362: Blazegraph write performance tuning

2019-11-21 Thread EBernhardson
EBernhardson triaged this task as "Normal" priority.

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

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

To: EBernhardson
Cc: Tarrow, dcausse, Igorkim78, Gehel, Aklapper, darthmon_wmde, DannyS712, 
Nandana, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, 
EBjune, merbst, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, 
jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, 
Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T238362: Blazegraph write performance tuning

2019-11-21 Thread EBernhardson
EBernhardson moved this task from needs triage to Current work on the 
Discovery-Search board.
EBernhardson edited projects, added Discovery-Search (Current work); removed 
Discovery-Search.

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

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

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

To: EBernhardson
Cc: Tarrow, dcausse, Igorkim78, Gehel, Aklapper, darthmon_wmde, DannyS712, 
Nandana, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, 
EBjune, merbst, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, 
jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, 
Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T234431: Get Tora on the SPARQL Federation whitelist

2019-11-21 Thread Gehel
Gehel added a comment.


  Sorry, we've really not been good at keeping track of incoming requests 
lately.
  
  At the moment, we're having a lot of trouble with WDQS, so it's not really a 
good time to add more changes (even if fairly minor). Now that this ticket is 
on our radar, we'll get back to it once the situation is more under control.

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

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

To: Gehel
Cc: EBernhardson, WMDE-leszek, Lea_Lacroix_WMDE, Gehel, Salgo60, darthmon_wmde, 
Tore_Danielsson_WMSE, DannyS712, Nandana, tramm, SwedishMuseum, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Smalyshev, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T238850: Enable other mediawiki extensions to add their own vue components for datatypes

2019-11-21 Thread Michael
Michael created this task.
Michael added a project: Wikidata-Bridge.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  Other extensions can add their own datatypes, like score, math or Lexeme.  To 
be able to display or edit these datatypes in data-bridge, we need to add a way 
to allow these extensions to add their own vuejs components to data-bridge.

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

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T237319: 502 errors on ATS/8.0.5

2019-11-21 Thread elukey
elukey added a comment.


  I have created a Docker image for Debian stretch installing apache2 (same 
version of the mw app servers) + php7.2-fpm from Sury's repo + the following 
trivial config:
  

Options Indexes FollowSymLinks
AllowOverride None
Require all granted
   
   SetHandler "proxy:unix:/run/php/php7.2-fpm.sock|fcgi://localhost"
   

  
  and
  
root@75ab41fd13ca:/# cat /var/www/test.php
https://phabricator.wikimedia.org/T237319

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T238564: Make possible to disable suggestededit-add for a user

2019-11-21 Thread Johan
Johan added a comment.


  @Masumrezarock100: Yes, the next release, early next week, will check both 
projects and not allow users to use the suggested edits functionality anywhere 
if they've been blocked on either project. (:
  
  (Other editing will work or not work as it normally does, in the app and 
elsewhere, of course, depending on community blocks – it's not up to us to 
block or not block users, but we do our best to not encourage users who aren't 
helpful, to not add on the burden of patrolling the wikis.)

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

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

To: Johan
Cc: Johan, Dbrant, Masumrezarock100, Bencemac, Aklapper, darthmon_wmde, 
DannyS712, Nandana, Lahi, Gq86, Sharvaniharan, schoenbaechler, 
GoranSMilovanovic, QZanden, LawExplorer, Poyekhali, _jensen, rosalieper, 
Taiwania_Justo, Scott_WUaS, Ixocactus, Wong128hk, 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] [Updated] T233213: XSS in Wikidata Query Service UI

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

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T233213: XSS in Wikidata Query Service UI

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


  Change 552293 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [wikidata/query/gui@master] Add security task to Gruntfile
  
  https://gerrit.wikimedia.org/r/552293

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

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

To: Addshore, gerritbot
Cc: Tarrow, hoo, Jakob_WMDE, Rosalie_WMDE, Pablo-WMDE, darthmon_wmde, 
WMDE-leszek, JBennett, Physikerwelt, Mathew.onipe, Reedy, johl, 
Lea_Lacroix_WMDE, Lydia_Pintscher, alaa_wmde, Addshore, sbassett, dcausse, 
Gehel, Aklapper, Lucas_Werkmeister_WMDE, Iflorez, JFishback_WMF, Dsharpe, 
DannyS712, Nandana, Amorymeltzer, Lahi, Gq86, GoranSMilovanovic, QZanden, 
EBjune, HJiang-WMF, merbst, LawExplorer, Salgo60, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, dpatrick, Luke081515, jkroll, Smalyshev, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, GWicke, Bawolff, Stype_and_Co.-WMF, 
Manybubbles, DerHexer, Jalexander, Parent5446, Anomie, Grunny, He7d3r, MaxSem, 
csteipp, Mbch331, Rxy, Jay8g, Legoktm, chasemp
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T238229: WDQS is having high update lag for the last week

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

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T238229: WDQS is having high update lag for the last week

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


  Change 552277 had a related patch set uploaded (by Gehel; owner: Gehel):
  [wikidata/query/rdf@master] Start dropping requests when load is too high.
  
  https://gerrit.wikimedia.org/r/552277

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

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

To: gerritbot
Cc: Tarrow, Addshore, Envlh, Alicia_Fagerving_WMSE, Simon_Villeneuve, Ghuron, 
Lucas_Werkmeister_WMDE, Jheald, Fnielsen, Mahir256, Gehel, Aklapper, 
darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
EBjune, merbst, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, 
jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, 
Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T238831: Syntax highlighting for viewing ShExC code (EntitySchema pages)

2019-11-21 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE updated the task description.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Lucas_Werkmeister_WMDE, darthmon_wmde, pdehaye, DannyS712, 
Nandana, Lahi, Gq86, Andrawaag, GoranSMilovanovic, QZanden, 
YULdigitalpreservation, LawExplorer, Salgo60, _jensen, rosalieper, Scott_WUaS, 
MisterSynergy, 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] [Commented On] T224962: Syntax highlighting for ShEx editor

2019-11-21 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Integrating YASHE seems like a good way forward, since CodeMirror (which it’s 
based on) is also integrated into MediaWiki elsewhere (Extension:CodeMirror 
). It would take some 
work, though, including security review by WMF people, so I don’t know when it 
would happen.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Salgo60, ericP, Jelabra, Aklapper, MisterSynergy, 
darthmon_wmde, pdehaye, DannyS712, Nandana, Lahi, Gq86, Andrawaag, 
GoranSMilovanovic, QZanden, YULdigitalpreservation, 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] [Commented On] T238423: Getting direct user feedback (Step 1)

2019-11-21 Thread Sarai-WMDE
Sarai-WMDE added a comment.


  The proposed flow for option 2 would look like:
  
  **1**. User clicks the "Leave your feedback" option.
  **2**. User is taken to informative page that has a big link ("Take a quick 
survey") and a text like "by clicking you go to our survey on GDPR compliant, 
Germany based platform Lamapoll"
  **3**. User clicks "Take a quick survey" link from the informative page
  **4**. User access to Lamapoll survey

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

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

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


[Wikidata-bugs] [Maniphest] [Edited] T238831: Syntax highlighting for viewing ShExC code (EntitySchema pages)

2019-11-21 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE updated the task description.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Lucas_Werkmeister_WMDE, darthmon_wmde, pdehaye, DannyS712, 
Nandana, Lahi, Gq86, Andrawaag, GoranSMilovanovic, QZanden, 
YULdigitalpreservation, LawExplorer, Salgo60, _jensen, rosalieper, Scott_WUaS, 
MisterSynergy, 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] [Created] T238831: Syntax highlighting for viewing ShExC code (EntitySchema pages)

2019-11-21 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE created this task.
Lucas_Werkmeister_WMDE added projects: Shape Expressions, Wikidata.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  As a Wikidata editor, I would like to be able to read ShEx more easily.
  
  **Problem:**
  We do not have syntax highlighting when viewing EntitySchema pages – just a 
dull, grey ``.
  
  **Example:**
  https://www.wikidata.org/wiki/EntitySchema:E10
  
  **Screenshots/mockups:**
  Current:
  F31123011: Screenshot_2019-11-21 human (E10) - Wikidata.png 

  With Pygments:
  F31123013: Screenshot_2019-11-21 human (E10) - Wikidata(1).png 

  
  **Tech notes:**
  Pygments support for ShEx was merged recently-ish (pull request 
),
 but has not made it into any release yet. And once it’s released, we’ll 
presumably have to wait for Extension:SyntaxHighlight to pull in the new 
Pygments version.
  
  **BDD**
  GIVEN 
  AND 
  WHEN
  AND
  THEN
  AND
  
  **Acceptance criteria:**
  
  -
  
  **Open questions:**

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

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Lucas_Werkmeister_WMDE, darthmon_wmde, pdehaye, DannyS712, 
Nandana, Lahi, Gq86, Andrawaag, GoranSMilovanovic, QZanden, 
YULdigitalpreservation, LawExplorer, Salgo60, _jensen, rosalieper, Scott_WUaS, 
MisterSynergy, 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] [Updated] T200594: Add client identifier to requests sent from Kartotherian to WDQS

2019-11-21 Thread MSantos
MSantos edited projects, added Product-Infrastructure-Team-Backlog; removed 
Product-Infrastructure-Team-Backlog (Kanban).

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

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

To: MSantos
Cc: Stashbot, mobrovac, MSantos, Gehel, Aklapper, MaxSem, Pnorman, Mholloway, 
Smalyshev, Alilje, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 
darthmon_wmde, holger.knust, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Amatissart, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, Looniverse, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, Orienteerix, merbst, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, JGirault, 
Scott_WUaS, Pchelolo, Jonas, phabyogi, Xmlizer, Susannaanas, lxbarth, Eevans, 
jkroll, Planemad, Hardikj, Wikidata-bugs, Jdouglas, aude, Tobias1984, 
Manybubbles, Yurik, Jdforrester-WMF, Mbch331, Jay8g, bearND
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238229: WDQS is having high update lag for the last week

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


  I looked into some of the requests and made a quick poke to the agent 
filtering.
  Didn't tag the task, so here is the link... 
https://gerrit.wikimedia.org/r/#/c/wikidata/query/deploy/+/552236/

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

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

To: Addshore
Cc: Tarrow, Addshore, Envlh, Alicia_Fagerving_WMSE, Simon_Villeneuve, Ghuron, 
Lucas_Werkmeister_WMDE, Jheald, Fnielsen, Mahir256, Gehel, Aklapper, 
darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
EBjune, merbst, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, 
jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, 
Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T238828: Show intended blockee in blocked message in wikidata bridge

2019-11-21 Thread Michael
Michael added a subtask: T58227: Provide original user name as "intended 
blockee" in case of autoblock.

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

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

To: Michael
Cc: Aklapper, Michael, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, JJMC89, _jensen, rosalieper, 
Scott_WUaS, Wong128hk, 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] [Updated] T235154: show error when editor can't edit the statement because of permission errors on the repository

2019-11-21 Thread Michael
Michael added a comment.


  We discussed that the investigation (T237522 
) uncovered that we currently cannot 
get the intended blockee from the mediawiki API. We decided that for now, we 
drop that requirement, i.e. that bullet point in the error message, and create 
a ticket to follow up later. See T238828: Show intended blockee in blocked 
message in wikidata bridge 

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

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

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


[Wikidata-bugs] [Maniphest] [Created] T238828: Show intended blockee in blocked message in wikidata bridge

2019-11-21 Thread Michael
Michael created this task.
Michael added projects: Wikidata-Bridge, MediaWiki-User-management.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  As a user that finds themselves blocked, I want to know who is the intended 
blockee of that block in order to understand whether that block is targeting me 
in particular or whether I'm just collateral damage.
  
  **Problem:**
  This information is currently not available via the Mediawiki API at all.
  
  **Example:**
  Current API response: T237522#5640564 

  
  **Acceptance criteria:**
  
  - The username of the originally blocked (the intended blockee) user is 
available via the mediawiki API for `action=query`, `prop=info (in)`, 
`intestactions=edit` and `intestactionsdetail=full`
  
  **Notes:**
  
  - There already exists a ticket about this:  T58227: Provide original user 
name as "intended blockee" in case of autoblock 

  - This was uncovered in T237522#5672429 


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

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

To: Michael
Cc: Aklapper, Michael, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, JJMC89, _jensen, rosalieper, 
Scott_WUaS, Wong128hk, 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] [Edited] T238401: Add tracking code relating to statement changes

2019-11-21 Thread noarave
noarave updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T235788: Citoid should create or reuse items for sources

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

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T237319: 502 errors on ATS/8.0.5

2019-11-21 Thread darthmon_wmde
darthmon_wmde added a comment.


  Is there anything that we can quickly do on wikibase to fix this?
  
  if so, please advise what concretely.
  
  Thanks!

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T235788: Citoid should create or reuse items for sources

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


  Change 525082 abandoned by Mvolz:
  Add support for items
  
  Reason:
  Unfortunately has serious bugs and I decided to change the approach anyway... 
hopefully some bits can be re-used in future changes ^-^
  
  https://gerrit.wikimedia.org/r/525082

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T238423: Getting direct user feedback (Step 1)

2019-11-21 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  In T238423#5681205 , 
@Tarrow wrote:
  
  > I had a ramble about is the survey link for Option 2 internal to 
wikidata.org or not. If it is external that we might need to warn the user 
about this etc.. and this would come with extra cost.
  > @Lydia_Pintscher do you know about this?
  > We estimated the story to be a 3 point task on the basis that we are 
following option 1.
  
  Yes we would need to inform the user about it.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T237319: 502 errors on ATS/8.0.5

2019-11-21 Thread elukey
elukey added a comment.


  On mwdebug2001 this seems to be the mod proxy fcgi debug:
  
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:debug] [pid 4516:tid 
140373593552640] mod_proxy_fcgi.c(913): [client 10.192.0.98:37452] AH01076: 
url: fcgi://localhost/srv/mediawiki/docroot/wikidata.org/w/index.php proxyname: 
(null) proxyport: 0
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:debug] [pid 4516:tid 
140373593552640] mod_proxy_fcgi.c(920): [client 10.192.0.98:37452] AH01078: 
serving URL fcgi://localhost/srv/mediawiki/docroot/wikidata.org/w/index.php
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'UNIQUE_ID' value 'REDACTED'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'HTTP_AUTHORIZATION' value ''
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'HTTP_CONTENT_TYPE' value ''
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'HTTP_CONTENT_LENGTH' value ''
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'SCRIPT_URL' value 
'/wiki/Special:EntityData/Q38646387.json'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'SCRIPT_URI' value 
'http://www.wikidata.org/wiki/Special:EntityData/Q38646387.json'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'RW_PROTO' value 'http'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'HTTP_HOST' value 'www.wikidata.org'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'HTTP_USER_AGENT' value 'curl/7.52.1'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'HTTP_ACCEPT' value '*/*'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'HTTP_IF_MODIFIED_SINCE' value 'Sat, 30 Mar 2019 
07:05:28 GMT'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'PATH' value 
'/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'SERVER_SIGNATURE' value ''
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'SERVER_SOFTWARE' value 'mwdebug2001.codfw.wmnet'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'SERVER_NAME' value 'www.wikidata.org'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'SERVER_ADDR' value '10.192.0.98'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'SERVER_PORT' value '80'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'REMOTE_ADDR' value '10.192.0.98'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'DOCUMENT_ROOT' value 
'/srv/mediawiki/docroot/wikidata.org'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 140373593552640] mod_proxy_fcgi.c(308): [client 10.192.0.98:37452] 
AH01062: sending env var 'REQUEST_SCHEME' value 'http'
Nov 21 12:02:13 mwdebug2001 apache2[4516]: [proxy_fcgi:trace8] [pid 
4516:tid 

[Wikidata-bugs] [Maniphest] [Edited] T238423: Getting direct user feedback (Step 1)

2019-11-21 Thread Sarai-WMDE
Sarai-WMDE updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] [Edited] T238423: Getting direct user feedback (Step 1)

2019-11-21 Thread Sarai-WMDE
Sarai-WMDE updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T238423: Getting direct user feedback (Step 1)

2019-11-21 Thread Tarrow
Tarrow added subscribers: Lydia_Pintscher, Tarrow.
Tarrow added a comment.


  I had a ramble about is the survey link for Option 2 internal to wikidata.org 
or not. If it is external that we might need to warn the user about this etc.. 
and this would come with extra cost.
  
  @Lydia_Pintscher do you know about this?
  
  We estimated the story to be a 3 point task on the basis that we are 
following option 1.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T238423: Getting direct user feedback (Step 1)

2019-11-21 Thread noarave
noarave set the point value for this task to "3".

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T238229: WDQS is having high update lag for the last week

2019-11-21 Thread Tarrow
Tarrow added a comment.


  Looks like depooling 1004 resulted in a pretty quick drop in lag. 1.5 hours 
was enough and it hasn't regrown in greater than 12 hours.
  
  Its not a pretty solution but: is there any point in regularly rotating each 
wdqs instance out of the pool? This might keep it low enough to be reusable.

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

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

To: Tarrow
Cc: Tarrow, Addshore, Envlh, Alicia_Fagerving_WMSE, Simon_Villeneuve, Ghuron, 
Lucas_Werkmeister_WMDE, Jheald, Fnielsen, Mahir256, Gehel, Aklapper, 
darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
EBjune, merbst, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, 
jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, 
Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T184474: Create diagrams that outline users' workflows on (structured) Wikimedia Commons

2019-11-21 Thread SandraF_WMF
SandraF_WMF added a comment.


  The workflow is documented here:
  
  
https://outreach.wikimedia.org/wiki/GLAM/Resources/Data_and_media_partnerships_workflow
  
  F31122555: image.png 
  
  This will serve as the basis of further documentation for GLAM-Wiki partners 
and volunteers to do partnerships that involve #structureddataoncommons 


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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T184474: Create diagrams that outline users' workflows on (structured) Wikimedia Commons

2019-11-21 Thread SandraF_WMF
SandraF_WMF closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T189500: [Story] Encourage and document mapping between GLAM metadata standards/schemas and Structured Data on Commons

2019-11-21 Thread SandraF_WMF
SandraF_WMF closed this task as "Resolved".
SandraF_WMF added a comment.


  We received two major pieces of feedback on mapping GLAM ontologies to 
#structureddataoncommons 

  
  - From the CIDOC CRM community - see a general piece of feedback on the (in 
progress) Properties table for SDC. This feedback can be found at 
https://commons.wikimedia.org/wiki/Commons:Structured_data/GLAM/CIDOC_CRM
  - From Europeana - see this Google document 

 with general feedback on the Properties table for SDC.
  
  Practical applications around metadata mapping - such as roundtripping 
metadata - have been explored in the research project Wikimedia Commons Data 
Roundtripping 
 by the 
Swedish National Heritage Board.

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

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

To: SandraF_WMF
Cc: Jheald, Sadads, Abit, SandraF_WMF, Aklapper, Antti.Kekki, darthmon_wmde, 
DannyS712, Nandana, JKSTNK, Lahi, PDrouin-WMF, Gq86, E1presidente, Ramsey-WMF, 
Cparle, Anooprao, GoranSMilovanovic, Chicocvenancio, QZanden, Orienteerix, 
Tramullas, Acer, LawExplorer, Salgo60, Puik, Silverfish, Mu301, _jensen, 
rosalieper, Scott_WUaS, Susannaanas, Jane023, Wikidata-bugs, Base, 
matthiasmullie, aude, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, 
Raymond, Nikerabbit, Steinsplitter, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Blocker] T190495: [Epic] Support a selection of diverse new GLAM pilot projects that involve Structured Data on Wikimedia Commons

2019-11-21 Thread SandraF_WMF
SandraF_WMF changed the status of subtask T199878: [Epic] Support Wiki 
Loves... type campaigns in adopting structured data on Wikimedia Commons, 
when desired from Invalid to Resolved.

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

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

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


[Wikidata-bugs] [Maniphest] [Changed Status] T199878: [Epic] Support 'Wiki Loves...' type campaigns in adopting structured data on Wikimedia Commons, when desired

2019-11-21 Thread SandraF_WMF
SandraF_WMF changed the task status from "Invalid" to "Resolved".
SandraF_WMF added a comment.


  However, another campaign-oriented approach for adding 
#structureddataoncommons 
 was explored 
in GLAM pilot projects: doing structured data contributions to existing 
Wikimedia Commons files, with the #ISA 
 tool.

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

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

To: SandraF_WMF
Cc: Ramsey-WMF, jhsoby-WMNO, Effeietsanders, leila, Lokal_Profil, JeanFred, 
Sadads, Abit, Aklapper, SandraF_WMF, darthmon_wmde, DannyS712, Nandana, JKSTNK, 
Lahi, PDrouin-WMF, Gq86, E1presidente, Cparle, Anooprao, GoranSMilovanovic, 
Chicocvenancio, QZanden, Tramullas, Acer, LawExplorer, Salgo60, Silverfish, 
Mu301, _jensen, rosalieper, Scott_WUaS, Susannaanas, Jane023, Wikidata-bugs, 
Oscar, Base, matthiasmullie, aude, Dinoguy1000, Ricordisamoa, Wesalius, 
Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T199878: [Epic] Support 'Wiki Loves...' type campaigns in adopting structured data on Wikimedia Commons, when desired

2019-11-21 Thread SandraF_WMF
SandraF_WMF closed this task as "Invalid".
SandraF_WMF added a comment.


  Wiki Loves Monuments 2019 ended up not using #structureddataoncommons 
 for various 
reasons unfortunately.

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

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

To: SandraF_WMF
Cc: Ramsey-WMF, jhsoby-WMNO, Effeietsanders, leila, Lokal_Profil, JeanFred, 
Sadads, Abit, Aklapper, SandraF_WMF, darthmon_wmde, DannyS712, Nandana, JKSTNK, 
Lahi, PDrouin-WMF, Gq86, E1presidente, Cparle, Anooprao, GoranSMilovanovic, 
Chicocvenancio, QZanden, Tramullas, Acer, LawExplorer, Salgo60, Silverfish, 
Mu301, _jensen, rosalieper, Scott_WUaS, Susannaanas, Jane023, Wikidata-bugs, 
Oscar, Base, matthiasmullie, aude, Dinoguy1000, Ricordisamoa, Wesalius, 
Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T190495: [Epic] Support a selection of diverse new GLAM pilot projects that involve Structured Data on Wikimedia Commons

2019-11-21 Thread SandraF_WMF
SandraF_WMF closed subtask T199878: [Epic] Support Wiki Loves... 
type campaigns in adopting structured data on Wikimedia Commons, when desired 
as Invalid.

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

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

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


[Wikidata-bugs] [Maniphest] [Unblock] T199878: [Epic] Support 'Wiki Loves...' type campaigns in adopting structured data on Wikimedia Commons, when desired

2019-11-21 Thread SandraF_WMF
SandraF_WMF closed subtask T232089: Write a Wikimedia Space blog post about 
structured data in Wiki Loves... campaigns as Declined.

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

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

To: SandraF_WMF
Cc: Ramsey-WMF, jhsoby-WMNO, Effeietsanders, leila, Lokal_Profil, JeanFred, 
Sadads, Abit, Aklapper, SandraF_WMF, darthmon_wmde, DannyS712, Nandana, JKSTNK, 
Lahi, PDrouin-WMF, Gq86, E1presidente, Cparle, Anooprao, GoranSMilovanovic, 
Chicocvenancio, QZanden, Tramullas, Acer, LawExplorer, Salgo60, Silverfish, 
Mu301, _jensen, rosalieper, Scott_WUaS, Susannaanas, Jane023, Wikidata-bugs, 
Oscar, Base, matthiasmullie, aude, Dinoguy1000, Ricordisamoa, Wesalius, 
Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T213721: Support SDC pilots rollout for 2019

2019-11-21 Thread SandraF_WMF
SandraF_WMF closed subtask T232089: Write a Wikimedia Space blog post about 
structured data in Wiki Loves... campaigns as Declined.

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

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

To: mcruzWMF, SandraF_WMF
Cc: Elitre, Keegan, Jheald, Aklapper, SandraF_WMF, Qgil, mcruzWMF, 
darthmon_wmde, DannyS712, Nandana, JKSTNK, Lahi, PDrouin-WMF, Gq86, 
E1presidente, Ramsey-WMF, Cparle, Anooprao, GoranSMilovanovic, QZanden, 
Tramullas, Acer, LawExplorer, Salgo60, Silverfish, Mu301, _jensen, rosalieper, 
Scott_WUaS, Johan, Susannaanas, Jane023, Wikidata-bugs, Base, matthiasmullie, 
aude, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, 
Steinsplitter, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Declined] T232089: Write a Wikimedia Space blog post about structured data in Wiki Loves... campaigns

2019-11-21 Thread SandraF_WMF
SandraF_WMF closed this task as "Declined".
SandraF_WMF added a comment.


  WLM ended up not using #structureddataoncommons 
 in its 2019 
campaign, because of various reasons (including that the structured data 
addition in the UploadWizard interface made the upload process too complex for 
newcomers). Therefore this blog post will not be written. However, other types 
of campaigns with structured data, for instance using the #isa 
 tool, will be discussed in other 
blog posts.

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

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

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


[Wikidata-bugs] [Maniphest] [Declined] T232090: Write a Wikimedia Space blog post about doing GLAM batch uploads to (structured) Wikimedia Commons

2019-11-21 Thread SandraF_WMF
SandraF_WMF closed this task as "Declined".
SandraF_WMF added a comment.


  It's unfortunately not yet possible to do batch uploads with tools that are 
non-coder friendly (i.e. Pattypan, for instance, does not support Structured 
Data yet). Therefore declining this task, although I will talk about batch 
editing #structureddataoncommons 
 for GLAM files 
in other blog posts.

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

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

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


[Wikidata-bugs] [Maniphest] [Unblock] T213721: Support SDC pilots rollout for 2019

2019-11-21 Thread SandraF_WMF
SandraF_WMF closed subtask T232090: Write a Wikimedia Space blog post about 
doing GLAM batch uploads to (structured) Wikimedia Commons as 
Declined.

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

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

To: mcruzWMF, SandraF_WMF
Cc: Elitre, Keegan, Jheald, Aklapper, SandraF_WMF, Qgil, mcruzWMF, 
darthmon_wmde, DannyS712, Nandana, JKSTNK, Lahi, PDrouin-WMF, Gq86, 
E1presidente, Ramsey-WMF, Cparle, Anooprao, GoranSMilovanovic, QZanden, 
Tramullas, Acer, LawExplorer, Salgo60, Silverfish, Mu301, _jensen, rosalieper, 
Scott_WUaS, Johan, Susannaanas, Jane023, Wikidata-bugs, Base, matthiasmullie, 
aude, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, 
Steinsplitter, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Lowered Priority] T233213: XSS in Wikidata Query Service UI

2019-11-21 Thread Addshore
Addshore lowered the priority of this task from "High" to "Normal".

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

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

To: Addshore
Cc: Tarrow, hoo, Jakob_WMDE, Rosalie_WMDE, Pablo-WMDE, darthmon_wmde, 
WMDE-leszek, JBennett, Physikerwelt, Mathew.onipe, Reedy, johl, 
Lea_Lacroix_WMDE, Lydia_Pintscher, alaa_wmde, Addshore, sbassett, dcausse, 
Gehel, Aklapper, Lucas_Werkmeister_WMDE, Iflorez, JFishback_WMF, Dsharpe, 
DannyS712, Nandana, Amorymeltzer, Lahi, Gq86, GoranSMilovanovic, QZanden, 
EBjune, HJiang-WMF, merbst, LawExplorer, Salgo60, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, dpatrick, Luke081515, jkroll, Smalyshev, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, GWicke, Bawolff, Stype_and_Co.-WMF, 
Manybubbles, DerHexer, Jalexander, Parent5446, Anomie, Grunny, He7d3r, MaxSem, 
csteipp, Mbch331, Rxy, Jay8g, Legoktm, chasemp
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Paste] [Changed Policy] P9315: Patch for T233213

2019-11-21 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE changed the visibility from "Subscribers" to "Public (No 
Login Required)".

PASTE DETAIL
  https://phabricator.wikimedia.org/P9315

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Gehel, dcausse, sbassett, Addshore, alaa_wmde, Lydia_Pintscher, 
Lea_Lacroix_WMDE, johl, Reedy, Mathew.onipe, Physikerwelt, JFishback_WMF, 
Dsharpe, Amorymeltzer, Gq86, Lucas_Werkmeister_WMDE, EBjune, HJiang-WMF, 
merbst, Salgo60, Jonas, Xmlizer, dpatrick, Luke081515, jkroll, Smalyshev, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, GWicke, Bawolff, Stype_and_Co.-WMF, 
Manybubbles, DerHexer, Jalexander, Parent5446, Anomie, Grunny, MaxSem, csteipp, 
Rxy, Jay8g, Legoktm, chasemp
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T237319: 502 errors on ATS/8.0.5

2019-11-21 Thread Vgutierrez
Vgutierrez added a comment.


  so it looks like the apache fix doesn't fix every scenario. This small PoC 
triggers the issue:
  
https://phabricator.wikimedia.org/T237319

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T237319: 502 errors on ATS/8.0.5

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


  @addshore @wmde-leszek: it seems we are causing this. We should take a look

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T237319: 502 errors on ATS/8.0.5

2019-11-21 Thread Ladsgroup
Ladsgroup added subscribers: WMDE-leszek, Addshore.
Ladsgroup added a project: Wikidata-Campsite.
Restricted Application added a project: Wikidata.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T238733: Push rights on https://gerrit.wikimedia.org/r/admin/projects/wikidata/query/blazegraph for onimisionipe

2019-11-21 Thread Gehel
Gehel added a comment.


  @hashar : thanks!
  
  In T238733#5678998 , 
@hashar wrote:
  
  > For some reason the group is owned by Administrators.
  
  I'm not sure what the strategy usually is. Should we be able to manage it 
directly? Who should that "we" be? The search team? Me as the engineering 
manager?

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

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

To: hashar, Gehel
Cc: Aklapper, hashar, Gehel, Mathew.onipe, darthmon_wmde, Legado_Shulgin, 
DannyS712, Nandana, NebulousIris, Davinaclare77, Qtn1293, Techguru.pc, Lahi, 
Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Th3d3v1ls, Hfbn0, QZanden, 
EBjune, merbst, LawExplorer, Zppix, _jensen, rosalieper, Liudvikas, Scott_WUaS, 
Jonas, Xmlizer, Wong128hk, jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, 
Tobias1984, Manybubbles, faidon, Mbch331, Rxy, Jay8g, fgiunchedi, Legoktm
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T227643: dumpRDF.php generates a hash-based conceptUri

2019-11-21 Thread Jimkont
Jimkont added a comment.


  Thanks @Addshore
  
  I read the post, very good documentation.
  
  The `-server` option in `dumpRdf.php --server http://somFancyNewLocation.foo 
--output /tmp/rdfOutput` seems like the best approach but when I was looking 
into the issue it was not part of the wikibase API and that is why I resorted 
to the `wgServer` option.
  I still cannot find it in 
https://github.com/wikimedia/mediawiki-extensions-Wikibase/blob/master/repo/maintenance/dumpRdf.php,
 is it just undocumented but working?

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

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

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


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

2019-11-21 Thread Addshore
Addshore added a subscriber: Joe.
Addshore added a comment.


  After talking with @Joe we can use:
  
curl -H 'Accept: application/json' lvs1015:9090/pools/wdqs_80
  
  For codfw i tried:
  
curl -H 'Accept: application/json' lvs2003:9090/pools/wdqs_80

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

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

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


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

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


  In T221774#5680575 , 
@Tagishsimon wrote:
  
  > Notable that WDQS lag seems to be paying not a blind bit of notice to this 
change :(
  > WDQS 1005-7 all at ~3 hours.
  > 
https://grafana.wikimedia.org/d/00489/wikidata-query-service?orgId=1=8
  
  Due to the apparent differences in lag pattern between some of the nodes we 
need to try to get T238751  done so 
that we can use the max lagged server rather than the median (which we 
currently do).

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

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

To: Addshore
Cc: Tagishsimon, Liridon, Bugreporter, Magnus, Tpt, Pintoch, Lydia_Pintscher, 
Matthias_Geisler_WMDE, Simon_Villeneuve, Lea_Lacroix_WMDE, Tarrow, alaa_wmde, 
Andrawaag, Multichill, Ladsgroup, Smalyshev, fgiunchedi, hoo, Daniel_Mietchen, 
MisterSynergy, Addshore, Sjoerddebruin, Aklapper, Lucas_Werkmeister_WMDE, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, 
darthmon_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, Nandana, 
NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, 
Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Chicocvenancio, Th3d3v1ls, Ramalepe, Liugev6, 
QZanden, EBjune, merbst, LawExplorer, WSH1906, Lewizho99, Volans, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, 
Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs