Re: [Wikidata] Overload of query.wikidata.org

2019-06-17 Thread Gerard Meijssen
Hoi,
I make use of the SourceMD environment, it is well behaved allows for
throttling and when I have multiple jobs it only runs one at a time. I do
understand that my jobs are put on hold when the situation warrants it, I
even put them myself on hold when I think about it.

When someone else puts my job on hold, I cannot release them at a better
time and I now have seven jobs doing nothing. A new job progresses
normally. The point is that management is ok but given that what I do is
well behaved, I expect my jobs to run and when held to be released at a
later time. When I cannot depend on jobs to finish, my work is not finished
and I do not know if I should run more jobs and what jobs to get the data
to a finished state.
Thanks,
GerardM

On Tue, 18 Jun 2019 at 06:35, Stas Malyshev  wrote:

> Hi!
>
> > We are currently dealing with a bot overloading the Wikidata Query
> > Service. This bot does not look actively malicious, but does create
> > enough load to disrupt the service. As a stop gap measure, we had to
> > deny access to all bots using python-request user agent.
> >
> > As a reminder, any bot should use a user agent that allows to identify
> > it [1]. If you have trouble accessing WDQS, please check that you are
> > following those guidelines.
>
> To add to this, we have had this trouble because two events that WDQS
> currently does not deal well with have coincided:
>
> 1. An edit bot that edited with 200+ edits per minute. This is too much.
> Over 60/m is really almost always too much. And also it would be a good
> thing to consider if your bots does multiple changes (e.g. adds multiple
> statements) doing it in one call instead of several, since WDQS
> currently will do an update on each change separately, and this may be
> expensive. We're looking into various improvements to this, but it is
> the state currently.
>
> 2. Several bots have been flooding the service query endpoint with
> requests. There is recently a growth in bots that a) completely ignore
> both regular limits and throttling hints b) do not have proper
> identifying user agent and c) use distributed hosts so our throttling
> system has a problem to deal with them automatically. We intend to crack
> down more and more on such clients, because they look a lot like DDOS
> and ruin the service experience for everyone.
>
> I will write down more detailed rules probably a bit later, but so far
> these:
>
> https://www.mediawiki.org/wiki/Wikidata_Query_Service/Implementation#Usage_constraints
> and additionally having distinct User-Agent if you're running a bot is a
> good idea.
>
> And for people who are thinking it's a good idea to launch a
> max-requests-I-can-stuff-into-the-pipe bot, put it on several Amazon
> machines so that throttling has hard time detecting it, and then when
> throttling does detect it neglecting to check for a week that all the
> bot is doing is fetching 403s from the service and wasting everybody's
> time - please think again. If you want to do something non-trivial
> querying WDQS and limits get in the way - please talk to us (and if you
> know somebody who isn't reading this list but is considering wiring a
> bot interfacing with WDQS - please educate them and refer them for help,
> we really prefer to help than to ban). Otherwise, we'd be forced to put
> more limitations on it that will affect everyone.
>
> --
> Stas Malyshev
> smalys...@wikimedia.org
>
> ___
> Wikidata mailing list
> Wikidata@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikidata
>
___
Wikidata mailing list
Wikidata@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata


Re: [Wikidata] Scaling Wikidata Query Service

2019-06-17 Thread Stas Malyshev
Hi!

> The documented limits about FDB states that it to support up to 100TB of
> data
> .
> That is 100x times more
> than what WDQS needs at the moment.

"Support" is such a multi-faceted word. It can mean "it works very well
with such amount of data and is faster than the alternatives" or "it is
guaranteed not to break up to this number but breaks after it" or "it
would work, given massive amounts of memory and super-fast hardware and
very specific set of queries, but you'd really have to take an effort to
make it work" and everything in between. The devil is always in the
details, which this seemingly simple word "supports" is rife with.

> I am offering my full-time services, it is up to you decide what will
> happen.

I wish you luck with the grant, though I personally think if you expect
to have a production-ready service in 6 month that can replace WDQS then
in my personal opinion it is a bit too optimistic. I might be completely
wrong on this of course. If you just plan to load the Wikidata data set
and evaluate the queries to ensure they are fast and produce proper
results on the setup you propose, then it can be done. Good luck!
-- 
Stas Malyshev
smalys...@wikimedia.org

___
Wikidata mailing list
Wikidata@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata


Re: [Wikidata] Overload of query.wikidata.org

2019-06-17 Thread Stas Malyshev
Hi!

> We are currently dealing with a bot overloading the Wikidata Query
> Service. This bot does not look actively malicious, but does create
> enough load to disrupt the service. As a stop gap measure, we had to
> deny access to all bots using python-request user agent.
> 
> As a reminder, any bot should use a user agent that allows to identify
> it [1]. If you have trouble accessing WDQS, please check that you are
> following those guidelines.

To add to this, we have had this trouble because two events that WDQS
currently does not deal well with have coincided:

1. An edit bot that edited with 200+ edits per minute. This is too much.
Over 60/m is really almost always too much. And also it would be a good
thing to consider if your bots does multiple changes (e.g. adds multiple
statements) doing it in one call instead of several, since WDQS
currently will do an update on each change separately, and this may be
expensive. We're looking into various improvements to this, but it is
the state currently.

2. Several bots have been flooding the service query endpoint with
requests. There is recently a growth in bots that a) completely ignore
both regular limits and throttling hints b) do not have proper
identifying user agent and c) use distributed hosts so our throttling
system has a problem to deal with them automatically. We intend to crack
down more and more on such clients, because they look a lot like DDOS
and ruin the service experience for everyone.

I will write down more detailed rules probably a bit later, but so far
these:
https://www.mediawiki.org/wiki/Wikidata_Query_Service/Implementation#Usage_constraints
and additionally having distinct User-Agent if you're running a bot is a
good idea.

And for people who are thinking it's a good idea to launch a
max-requests-I-can-stuff-into-the-pipe bot, put it on several Amazon
machines so that throttling has hard time detecting it, and then when
throttling does detect it neglecting to check for a week that all the
bot is doing is fetching 403s from the service and wasting everybody's
time - please think again. If you want to do something non-trivial
querying WDQS and limits get in the way - please talk to us (and if you
know somebody who isn't reading this list but is considering wiring a
bot interfacing with WDQS - please educate them and refer them for help,
we really prefer to help than to ban). Otherwise, we'd be forced to put
more limitations on it that will affect everyone.

-- 
Stas Malyshev
smalys...@wikimedia.org

___
Wikidata mailing list
Wikidata@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata


[Wikidata-bugs] [Maniphest] [Closed] T217018: Upgrade Wikibase extension to use newer phan

2019-06-17 Thread MaxSem
MaxSem closed this task as "Resolved".
MaxSem claimed this task.

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

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

To: MaxSem
Cc: Jdforrester-WMF, matej_suchanek, gerritbot, Aklapper, 
Lucas_Werkmeister_WMDE, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 
darthmon_wmde, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, 
Maathavan, _jensen, rosalieper, 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] T217018: Upgrade Wikibase extension to use newer phan

2019-06-17 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.34-notes (1.34.0-wmf.10; 2019-06-18).

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

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

To: ReleaseTaggerBot
Cc: Jdforrester-WMF, matej_suchanek, gerritbot, Aklapper, 
Lucas_Werkmeister_WMDE, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 
darthmon_wmde, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, 
Maathavan, _jensen, rosalieper, 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] T225796: Wikibase and Lexeme browser tests are failing with `failed-save: The save has failed.`

2019-06-17 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.34-notes (1.34.0-wmf.10; 2019-06-18).

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

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

To: ReleaseTaggerBot
Cc: WMDE-leszek, zeljkofilipin, hashar, Lucas_Werkmeister_WMDE, Aklapper, 
Michael, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, 
alaa_wmde, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, 
Jdforrester-WMF, Mbch331, Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T225796: Wikibase and Lexeme browser tests are failing with `failed-save: The save has failed.`

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517565 **merged** by jenkins-bot:
  [mediawiki/core@master] DevelopmentSettings: Document why wgRateLimits is 
disabled
  
  https://gerrit.wikimedia.org/r/517565

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

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

To: gerritbot
Cc: WMDE-leszek, zeljkofilipin, hashar, Lucas_Werkmeister_WMDE, Aklapper, 
Michael, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, 
alaa_wmde, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, 
Jdforrester-WMF, Mbch331, Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T217018: Upgrade Wikibase extension to use newer phan

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 494176 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Upgrade Wikibase extension to use 
newer phan
  
  https://gerrit.wikimedia.org/r/494176

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T225796: Wikibase and Lexeme browser tests are failing with `failed-save: The save has failed.`

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517565 had a related patch set uploaded (by Krinkle; owner: Krinkle):
  [mediawiki/core@master] DevelopmentSettings: Document why wgRateLimits is 
disabled
  
  https://gerrit.wikimedia.org/r/517565

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

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

To: gerritbot
Cc: WMDE-leszek, zeljkofilipin, hashar, Lucas_Werkmeister_WMDE, Aklapper, 
Michael, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, 
alaa_wmde, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, 
Jdforrester-WMF, Mbch331, Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T225796: Wikibase and Lexeme browser tests are failing with `failed-save: The save has failed.`

2019-06-17 Thread Krinkle
Krinkle added a project: Wikimedia-production-error (Shared Build Failure).

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

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

To: Krinkle
Cc: WMDE-leszek, zeljkofilipin, hashar, Lucas_Werkmeister_WMDE, Aklapper, 
Michael, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, 
alaa_wmde, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, 
Jdforrester-WMF, Mbch331, Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T225796: Wikibase and Lexeme browser tests are failing with `failed-save: The save has failed.`

2019-06-17 Thread Krinkle
Krinkle removed projects: MW-1.31-release-notes, MW-1.33-notes, MW-1.32-notes, 
MW-1.34-notes (1.34.0-wmf.10; 2019-06-18).

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

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

To: Krinkle
Cc: WMDE-leszek, zeljkofilipin, hashar, Lucas_Werkmeister_WMDE, Aklapper, 
Michael, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, 
alaa_wmde, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, 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] T225796: Wikibase and Lexeme browser tests are failing with `failed-save: The save has failed.`

2019-06-17 Thread ReleaseTaggerBot
ReleaseTaggerBot added projects: MW-1.32-notes, MW-1.33-notes, 
MW-1.31-release-notes.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T225796: Wikibase and Lexeme browser tests are failing with `failed-save: The save has failed.`

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517395 **merged** by jenkins-bot:
  [mediawiki/core@REL1_33] Disable rate limiting in Development Settings
  
  https://gerrit.wikimedia.org/r/517395

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T225796: Wikibase and Lexeme browser tests are failing with `failed-save: The save has failed.`

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517394 **merged** by jenkins-bot:
  [mediawiki/core@REL1_32] Disable rate limiting in Development Settings
  
  https://gerrit.wikimedia.org/r/517394

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T225796: Wikibase and Lexeme browser tests are failing with `failed-save: The save has failed.`

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517392 **merged** by jenkins-bot:
  [mediawiki/core@REL1_31] Disable rate limiting in Development Settings
  
  https://gerrit.wikimedia.org/r/517392

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T207893: Partial Blocks are enforced as Sitewide blocks in Wikibase entities

2019-06-17 Thread dbarratt
dbarratt added a comment.


  You can see an example of not knowing in MediaWiki by blocking a test user 
from a namespace (say `MediaWiki`) and then attempting to create a new page in 
that namespace.

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

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

To: Ladsgroup, dbarratt
Cc: Ladsgroup, Tchanders, Niharika, Lydia_Pintscher, WMDE-leszek, TBolliger, 
Lucas_Werkmeister_WMDE, Addshore, Aklapper, dbarratt, MGChecker, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, MattLongCT, alaa_wmde, 
joker88john, CucyNoiD, Nandana, NebulousIris, aezell, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, 
Darkminds3113, dmaza, Bsandipan, Lordiis, GoranSMilovanovic, SPoore, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, JJMC89, 
Maathavan, _jensen, rosalieper, PEarleyWMF, RuyP, jrbs, Jonas, Wong128hk, 
Bsadowski1, Wikidata-bugs, aude, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T207893: Partial Blocks are enforced as Sitewide blocks in Wikibase entities

2019-06-17 Thread dbarratt
dbarratt added a comment.


  In T207893#5262838 , 
@Ladsgroup wrote:
  
  > This is rather lots of work, SpecialWikibasePage is not the right place to 
keep the list, Making it per special page also is complex, like 
Special:SetLabel can be used on property and item and if the person is blocked 
on item namespace, there's no way to make sure it's applied until the user 
actually tries it (in which EntityStore should handle it properly using 
PermissionManager), so maybe we should just drop it? I would prefer if the 
special page still checks for site-wide bans.
  
  
  It's fine if the user doesn't know until it's attempted. For instance, any 
edits made with the Action API this is the case. We //try// to notify the user 
before hand, but that's not always possible. For instance we added T194585 
 so a preflight can be created to 
determine if the user is blocked from a particular title. However, if it's not 
possible, I would throw a validation error to the user.

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

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

To: Ladsgroup, dbarratt
Cc: Ladsgroup, Tchanders, Niharika, Lydia_Pintscher, WMDE-leszek, TBolliger, 
Lucas_Werkmeister_WMDE, Addshore, Aklapper, dbarratt, MGChecker, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, MattLongCT, alaa_wmde, 
joker88john, CucyNoiD, Nandana, NebulousIris, aezell, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, 
Darkminds3113, dmaza, Bsandipan, Lordiis, GoranSMilovanovic, SPoore, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, JJMC89, 
Maathavan, _jensen, rosalieper, PEarleyWMF, RuyP, jrbs, Jonas, Wong128hk, 
Bsadowski1, Wikidata-bugs, aude, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T225523: U+0200F in query service response for GND ID

2019-06-17 Thread Smalyshev
Smalyshev closed this task as "Resolved".
Smalyshev claimed this task.

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

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

To: Smalyshev
Cc: Smalyshev, Igorkim78, elal, Aklapper, Lydia_Pintscher, darthmon_wmde, 
Nandana, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, 
EBjune, merbst, LawExplorer, _jensen, rosalieper, Cirdan, 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] [Closed] T200612: Wikidata's SPARQL endpoint doesn't escape commas in IRIs in CSV output

2019-06-17 Thread Smalyshev
Smalyshev closed this task as "Resolved".

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

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

To: Smalyshev
Cc: Peter17, Igorkim78, Smalyshev, seav, Aklapper, jindrichmynarz, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, joker88john, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, 
Liugev6, QZanden, EBjune, merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Cirdan, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, 
aude, Tobias1984, Manybubbles, Mbch331, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T200612: Wikidata's SPARQL endpoint doesn't escape commas in IRIs in CSV output

2019-06-17 Thread Peter17
Peter17 added a comment.


  @Smalyshev thanks again, it works fine!

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

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

To: Smalyshev, Peter17
Cc: Peter17, Igorkim78, Smalyshev, seav, Aklapper, jindrichmynarz, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, joker88john, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, 
Liugev6, QZanden, EBjune, merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Cirdan, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, 
aude, Tobias1984, Manybubbles, Mbch331, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T216601: Allow download of Wikidata query results in GPS-friendly format(s)

2019-06-17 Thread srishakatux
srishakatux removed a project: Google-Summer-of-Code (2019).

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

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

To: srishakatux
Cc: Husky, Peb, Frettie, Geertivp, Salgo60, Pigsonthewing, Aklapper, 
darthmon_wmde, Ferenczy, sarhan.alaa, Samuditha24, IM3847, Nandana, kostajh, 
Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Jayprakash12345, 
Chicocvenancio, MichaelSchoenitzer_WMDE, QZanden, EBjune, merbst, LawExplorer, 
Jogi_don, _jensen, rosalieper, D3r1ck01, Jonas, Xmlizer, jkroll, Smalyshev, 
Wikidata-bugs, Jdouglas, Jdlrobson, aude, Tobias1984, Manybubbles, 
Lydia_Pintscher, Mbch331, Rxy, AbhishekSinghDhadwal, Madhurgupta10, Himanshuc3
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata] Structured Data - qualifiers for depicts support coming this week

2019-06-17 Thread Keegan Peterzell
Greetings,

The Structured Data on Commons team plans to release the first version of
qualifiers for depicts statements [0] this week. The team has been testing
the feature with the community for a month [1] and are ready to turn it on
for Commons on Thursday, 20 June, between 11:00-12:00 UTC. Adding
qualifiers allows users to further develop depicts statements. For example,
"depicts: house cat" can be extended into "depicts: house
cat[color:black]." You will be able to find qualifiers in the "Structured
data" tab on the file page, or in the "Add data" tab in the UploadWizard.
This version has a drop-down menu to select qualifiers; an update in the
near future will replace the drop-down with an auto-suggest box.

I'll keep the community posted when qualifiers go live on Thursday, after
the team makes sure everything is configured and working as expected.

0. https://commons.wikimedia.org/wiki/Commons:Structured_data
1.
https://commons.wikimedia.org/wiki/Commons_talk:Structured_data#Adding_qualifiers_to_Depicts

-- 
Keegan Peterzell
Community Relations Specialist
Wikimedia Foundation
___
Wikidata mailing list
Wikidata@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata


Re: [Wikidata] Scaling Wikidata Query Service

2019-06-17 Thread Ted Thibodeau Jr
Hello, Stas --

On Jun 13, 2019, at 07:52 PM, Stas Malyshev  wrote:
> 
> Hi!
> 
>> It handles data locality across a shared nothing cluster just fine i.e., you 
>> can interact with any node in a Virtuoso cluster and experience identical 
>> behavior (everyone node looks like single node in the eyes of the operator).
> 
> Does this mean no sharding, i.e. each server stores the full DB?

No.

The full DB is automatically sharded across all Virtuoso instances in an 
Elastic Cluster, and each instance *appears* to store the full DB -- i.e., you 
can issue a query to any instance in an Elastic Cluster, if you have the 
relevant communication details (typically IP address and port number), and you 
will get the same results from it as from any other instance in that Elastic 
Cluster.

(I am generally specific about Elastic Cluster vs Replication Cluster, because 
these are different though complementary technologies, implemented via 
different Modules in Virtuoso.)


> This is the model we're using currently, but given the growth of the data it 
> may be non sustainable on current hardware. I see in your tables that Uniprot 
> has about 30B triples, but I wonder how update loads there look like. Our 
> main issue is that the hardware we have now is showing its limits when 
> there's a lot of updates in parallel to significant query load. So I wonder 
> if the "single server holds everything" model is sustainable in the long term.

Your questions are unsurprising, and are one of the reasons for the benchmark 
efforts of the LDBC --

   http://ldbcouncil.org/benchmarks/

Uniprot does not get a lot of updates, and it is running on a single instance 
-- i.e., there's no cluster involved at all, neither Elastic (Shared-Nothing) 
Cluster nor Replication Cluster -- so its probably not the best example for 
your workflows.

I think the LDBC's Social Networking Benchmark (SNB) is likely to be the 
closest to the Wikidata update and query patterns, so you may find these 
articles interesting --

1. SNB Interactive, Part 1: What is SNB Interactive Really About?
   https://virtuoso.openlinksw.com/blog/vdb/blog/?id=1835

2. SNB Interactive, Part 2: Modeling Choices
   https://virtuoso.openlinksw.com/blog/vdb/blog/?id=1837

3. SNB Interactive, Part 3: Choke Points and Initial Run on Virtuoso
   https://virtuoso.openlinksw.com/blog/vdb/blog/?id=1842



>> There are live instances of Virtuoso that demonstrate its capabilities. If 
>> you want to explore shared-nothing cluster capabilities then our live LOD 
>> Cloud cache is the place to start [1][2][3]. If you want to see the 
>> single-server open source edition that you have DBpedia, DBpedia-Live, 
>> Uniprot and many other nodes in the LOD Cloud to choose from. All of these 
>> instance are highly connected.
> 
> Again, here the question is not too much in "can you load 7bn triples into 
> Virtuoso" - we know we can. What we want to figure out whether given specific 
> query/update patterns we have now - it is going to give us significantly 
> better performance allowing to support our projected growth. And also 
> possibly whether Virtuoso has ways to make our update workflow be more 
> optimal - e.g. right now if one triple changes in Wikidata item, we're 
> essentially downloading and updating the whole item (not exactly since 
> triples that stay the same are preserved but it requires a lot of data 
> transfer to express that in SPARQL). Would there be ways to update the things 
> more efficiently?

The first thing that will improve your performance is to break out of the 
"stored as JSON blobs" pattern you've been using.

Updates should not require a full download of the named graph (which I think is 
what your JSON Blobs amount to) followed by an upload of the entire revised 
named graph.

Even if you *query* the full content of an existing named graph, determine the 
necessary changes locally, and then submit an update query which includes a 
full set of DELETE + INSERT statements (this "full set" only including the 
*changed* triples), you should find a significant reduction in data throughput.

The live parallel to such regular updates is DBpedia-Live, which started from a 
static load of dump files, and has been (and is still) continuously updated by 
an RDF feed based on the Wikipedia update firehose.  The same RDF feed is made 
available to users of our AMI-based DBpedia-Live mirror AMI (currently being 
refreshed, and soon to be made available for new users) --

   https://aws.amazon.com/marketplace/pp/B012DSCFEK


>> Virtuoso handles both shared-nothing clusters and replication i.e., you can 
>> have a cluster configuration used in conjunction with a replication topology 
>> if your solution requires that.
> 
> Replication could certainly be useful I think it it's faster to update single 
> server and then replicate than simultaneously update all servers (that's what 
> is happening now).

There are multiple Replication strategies which might be used, as 

[Wikidata-bugs] [Maniphest] [Edited] T203696: Drastically reduce the number of ResourceLoader modules that WikibaseClient registers

2019-06-17 Thread Krinkle
Krinkle updated the task description.

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

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

To: Krinkle
Cc: gerritbot, Addshore, Aklapper, Krinkle, Jdforrester-WMF, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, joker88john, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Imarlier, Lahi, Gq86, Baloch007, Darkminds3113, 
Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, 
QZanden, LawExplorer, Vali.matei, WSH1906, Lewizho99, Maathavan, _jensen, 
rosalieper, 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] T225805: DatabaseTermIdsAcquirer fails on terms longer than 255 bytes

2019-06-17 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.34-notes (1.34.0-wmf.10; 2019-06-18).

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

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

To: Lucas_Werkmeister_WMDE, ReleaseTaggerBot
Cc: Lucas_Werkmeister_WMDE, Aklapper, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, alaa_wmde, joker88john, CucyNoiD, Nandana, 
NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, 
Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T97891: setPageTitle to empty string or false should prevent rendering of H1 on page otherwise Wikivoyage will print 2 h1 elements in Vector

2019-06-17 Thread Krinkle
Krinkle added a comment.


  I think it would be best suited as a skinStyle that WikidataPageBanner adds 
for specific skins it knows how to handle.

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

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

To: Krinkle
Cc: Johan, TerraCodes, Liuxinyu970226, Krinkle, gerritbot, KLans_WMF, 
adrianheine, Florian, Aklapper, Jdlrobson, darthmon_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, Winter, JJMC89, _jensen, rosalieper, 
Luke081515, Wikidata-bugs, aude, Isarra, TheDJ, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Lowered Priority] T225796: Wikibase and Lexeme browser tests are failing with `failed-save: The save has failed.`

2019-06-17 Thread WMDE-leszek
WMDE-leszek lowered the priority of this task from "High" to "Normal".
WMDE-leszek added a comment.


  https://gerrit.wikimedia.org/r/517385 helped and unblocked merging Wikibase 
patches. Thanks to @hashar and @zeljkofilipin for help. And special thanks to 
@Michael for discovering the root issue.
  Leaving the ticket open until the backport patches get merged.

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T225805: DatabaseTermIdsAcquirer fails on terms longer than 255 bytes

2019-06-17 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE closed this task as "Resolved".

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Aklapper, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, alaa_wmde, joker88john, CucyNoiD, Nandana, 
NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, 
Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T225805: DatabaseTermIdsAcquirer fails on terms longer than 255 bytes

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517070 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Truncate terms if necessary before 
they reach the database
  
  https://gerrit.wikimedia.org/r/517070

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, alaa_wmde, joker88john, CucyNoiD, Nandana, 
NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, 
Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T224010: Implement Fallback version

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517454 had a related patch set uploaded (by Rosalie Perside (WMDE); 
owner: Rosalie Perside (WMDE)):
  [mediawiki/extensions/Wikibase@master] WIP. Add state concept to ChangeOp.
  
  https://gerrit.wikimedia.org/r/517454

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T225938: Implement Testing Environment

2019-06-17 Thread darthmon_wmde
darthmon_wmde updated the task description.

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225950: 3.- Jest unit test + CI

2019-06-17 Thread Pablo-WMDE
Pablo-WMDE added a comment.


  According to the blubber documentation 
, a blubber file is 
expected to have", at minimum, two variants (1) `test` and (2) `production`"

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

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

To: Pablo-WMDE
Cc: Pablo-WMDE, Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 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] T225953: 5.- Storybook

2019-06-17 Thread darthmon_wmde
darthmon_wmde created this task.
darthmon_wmde added projects: Wikidata Bridge, Wikidata.

TASK DESCRIPTION


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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225953: 5.- Storybook

2019-06-17 Thread darthmon_wmde
darthmon_wmde set the point value for this task to "5".

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225952: 4.- Linting

2019-06-17 Thread darthmon_wmde
darthmon_wmde set the point value for this task to "3".

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225952: 4.- Linting

2019-06-17 Thread darthmon_wmde
darthmon_wmde created this task.
darthmon_wmde added projects: Wikidata Bridge, Wikidata.

TASK DESCRIPTION
  Acceptance Criteria:
  
  [ ] create config and make sure that it runs

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225950: 3.- Jest unit test + CI

2019-06-17 Thread darthmon_wmde
darthmon_wmde created this task.
darthmon_wmde added projects: Wikidata Bridge, Wikidata.

TASK DESCRIPTION
  Acceptance Criteria:
  
  [ ] these need to be run whenever a wikibase patch comes
  [ ] test should run for no longer than 2 minutes

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225949: 2.- Vue + ts compilation (log "hello wikidata bridge") on docker

2019-06-17 Thread darthmon_wmde
darthmon_wmde created this task.
darthmon_wmde added projects: Wikidata Bridge, Wikidata.

TASK DESCRIPTION


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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225949: 2.- Vue + ts compilation (log "hello wikidata bridge") on docker

2019-06-17 Thread darthmon_wmde
darthmon_wmde set the point value for this task to "13".

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225948: 1.- Research Webpack + RL

2019-06-17 Thread darthmon_wmde
darthmon_wmde created this task.
darthmon_wmde added projects: Wikidata Bridge, Wikidata.

TASK DESCRIPTION
  -> 2 people independetly
  -> 3 hours per person

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225507: Create delegating preference repository

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 516512 **merged** by jenkins-bot:
  [wikibase/termbox@master] DelegatingUserPreferenceRepository: first 
introduction
  
  https://gerrit.wikimedia.org/r/516512

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

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

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


[Wikidata-bugs] [Maniphest] [Claimed] T207893: Partial Blocks are enforced as Sitewide blocks in Wikibase entities

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

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

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

To: Ladsgroup
Cc: Ladsgroup, Tchanders, Niharika, Lydia_Pintscher, WMDE-leszek, TBolliger, 
Lucas_Werkmeister_WMDE, Addshore, Aklapper, dbarratt, MGChecker, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, MattLongCT, alaa_wmde, 
joker88john, CucyNoiD, Nandana, NebulousIris, aezell, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, 
Darkminds3113, dmaza, Bsandipan, Lordiis, GoranSMilovanovic, SPoore, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, JJMC89, 
Maathavan, _jensen, rosalieper, PEarleyWMF, RuyP, jrbs, Jonas, Wong128hk, 
Bsadowski1, Wikidata-bugs, aude, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T207893: Partial Blocks are enforced as Sitewide blocks in Wikibase entities

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517450 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Add namespace-based block check on 
SpecialNewEntity
  
  https://gerrit.wikimedia.org/r/517450

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

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

To: gerritbot
Cc: Ladsgroup, Tchanders, Niharika, Lydia_Pintscher, WMDE-leszek, TBolliger, 
Lucas_Werkmeister_WMDE, Addshore, Aklapper, dbarratt, MGChecker, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, MattLongCT, joker88john, 
CucyNoiD, Nandana, NebulousIris, aezell, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, 
Darkminds3113, dmaza, Bsandipan, Lordiis, GoranSMilovanovic, SPoore, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, JJMC89, 
Maathavan, _jensen, rosalieper, PEarleyWMF, RuyP, jrbs, Jonas, Wong128hk, 
Bsadowski1, Wikidata-bugs, aude, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Lowered Priority] T225814: m.wikidata: login status not detected

2019-06-17 Thread WMDE-leszek
WMDE-leszek lowered the priority of this task from "High" to "Normal".

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

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

To: WMDE-leszek
Cc: Legoktm, hoo, csteipp, vvv, Framawiki, Lydia_Pintscher, WMDE-leszek, 
Aklapper, Pablo-WMDE, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, _jensen, rosalieper, Wong128hk, Wikidata-bugs, Snowolf, 
aude, Mbch331, Rxy, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T225814: m.wikidata: login status not detected

2019-06-17 Thread WMDE-leszek
WMDE-leszek added subscribers: vvv, csteipp, hoo, Legoktm.
WMDE-leszek added a comment.


  Pinging maintainers according to 
https://www.mediawiki.org/wiki/Developers/Maintainers: @hoo, @vvv, @csteipp, 
@Legoktm: any idea why mediawiki.org and wikidata.org might behave special (and 
arguably incorrect)?

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

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

To: WMDE-leszek
Cc: Legoktm, hoo, csteipp, vvv, Framawiki, Lydia_Pintscher, WMDE-leszek, 
Aklapper, Pablo-WMDE, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, _jensen, rosalieper, Wong128hk, Wikidata-bugs, Snowolf, 
aude, Mbch331, Rxy, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T225944: Explore using ShEx to support ORES in Wikidata

2019-06-17 Thread Halfak
Halfak added a comment.


  My take-away is this:
  
  1. There's no nice API that, given an item/edit, can tell us what constraints 
are violated.  The current system processes the schemas in JavaScript.
  2. There's no nice way to version the ShEx schemas.
  3. It's still very early and people are trying to figure out what they want 
to make schemas for.
  4. You can have multiple schemas that apply to the same item and roughly are 
trying to do the same thing built by different "WikiProjects" to manage 
different concerns.   E.g. there is no master schema for "Human". a. There is a 
proposal to implement some mappings, but they are currently only focused on 
mapping using "Instance-of" and "Subclass-of" properties.  So you wouldn't be 
able to map on, say, "Occupation".

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

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

To: Halfak
Cc: Halfak, Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, Vacio, 
GoranSMilovanovic, Fz-29, QZanden, LawExplorer, _jensen, rosalieper, Mkdw, 
notconfusing, srodlund, Wikidata-bugs, aude, Alchimista, Mbch331, Rxy
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T225944: Explore using ShEx to support ORES in Wikidata

2019-06-17 Thread Halfak
Halfak added projects: ORES, Wikidata, Scoring-platform-team.

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

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

To: Halfak
Cc: Halfak, Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, Vacio, 
GoranSMilovanovic, Fz-29, QZanden, LawExplorer, _jensen, rosalieper, Mkdw, 
notconfusing, srodlund, Wikidata-bugs, aude, Alchimista, Mbch331, Rxy
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T225944: Explore using ShEx to support ORES in Wikidata

2019-06-17 Thread Halfak
Halfak edited projects, added Scoring-platform-team (Research); removed 
Scoring-platform-team.
Restricted Application edited projects, added Scoring-platform-team; removed 
Scoring-platform-team (Research).

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

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

To: Halfak
Cc: Halfak, Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, Vacio, 
GoranSMilovanovic, Fz-29, QZanden, LawExplorer, _jensen, rosalieper, Mkdw, 
notconfusing, srodlund, Wikidata-bugs, aude, Alchimista, Mbch331, Rxy
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T225603: Wire up read logic for normalized storage in Wikibase

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517432 **merged** by jenkins-bot:
  [mediawiki/extensions/WikibaseMediaInfo@master] Update DataAccessSettings 
constructor call
  
  https://gerrit.wikimedia.org/r/517432

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

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

To: alaa_wmde, gerritbot
Cc: alaa_wmde, Aklapper, Lucas_Werkmeister_WMDE, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, joker88john, CucyNoiD, Nandana, 
NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, 
Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T225603: Wire up read logic for normalized storage in Wikibase

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 516790 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Add client setting to read from 
normalized terms schema
  
  https://gerrit.wikimedia.org/r/516790

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

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

To: alaa_wmde, gerritbot
Cc: alaa_wmde, Aklapper, Lucas_Werkmeister_WMDE, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, joker88john, CucyNoiD, Nandana, 
NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, 
Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T207893: Partial Blocks are enforced as Sitewide blocks in Wikibase entities

2019-06-17 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: gerritbot
Cc: Ladsgroup, Tchanders, Niharika, Lydia_Pintscher, WMDE-leszek, TBolliger, 
Lucas_Werkmeister_WMDE, Addshore, Aklapper, dbarratt, MGChecker, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, MattLongCT, joker88john, 
CucyNoiD, Nandana, NebulousIris, aezell, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, 
Darkminds3113, dmaza, Bsandipan, Lordiis, GoranSMilovanovic, SPoore, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, JJMC89, 
Maathavan, _jensen, rosalieper, PEarleyWMF, RuyP, jrbs, Jonas, Wong128hk, 
Bsadowski1, Wikidata-bugs, aude, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T207893: Partial Blocks are enforced as Sitewide blocks in Wikibase entities

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517442 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Make SpecialWikibasePage only respect 
site-wide block
  
  https://gerrit.wikimedia.org/r/517442

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

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

To: gerritbot
Cc: Ladsgroup, Tchanders, Niharika, Lydia_Pintscher, WMDE-leszek, TBolliger, 
Lucas_Werkmeister_WMDE, Addshore, Aklapper, dbarratt, MGChecker, darthmon_wmde, 
MattLongCT, Nandana, aezell, Lahi, Gq86, dmaza, GoranSMilovanovic, SPoore, 
QZanden, LawExplorer, JJMC89, _jensen, rosalieper, PEarleyWMF, RuyP, jrbs, 
Jonas, Wong128hk, Bsadowski1, Wikidata-bugs, aude, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T225603: Wire up read logic for normalized storage in Wikibase

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517430 **merged** by jenkins-bot:
  [mediawiki/extensions/WikibaseCirrusSearch@master] Tests: Change 
DataAccessSettings constructor call
  
  https://gerrit.wikimedia.org/r/517430

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

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

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


[Wikidata] Weekly Summary #369

2019-06-17 Thread Léa Lacroix
*Here's your quick overview of what has been happening around Wikidata over
the last week.*
Discussions

   - New request for comments: Unifying GO activities and enzyme articles
   


Events 

   - Upcoming: ld4-Wikidata Affinity Group call
   
   on June 18th
   - Upcoming: Wikidata workshop in Paris
   , France, on June
   21st
   - Upcoming: Wikidata meetup in Wellington
   , New
   Zealand, on June 22nd

Press, articles, blog posts


   - *EventKG - the Hub of Event Knowledge on the Web - and Biographical
   Timeline Generation * - Simon
   Gottschalk, Elena Demidova (in ArXiv)
   - *Assessing The Factual Accuracy of Generated Text
   * Ben Goodrich, et al. (in ArXiv)
   - *Enriching Bibliographic Data by Combining String Matching and the
   Wikidata Knowledge Graph to Improve the Measurement of International
   Research Collaboration
   * Xuan Nguyen,
   et al. (in ArXiv)
   - Treasured Manuscript collection gets the Wikidata Treatment
   
,
   on the National Library of Wales' blog
   - On the road to joint embedding with Wikidata lexemes?
   

   by Finn Årup Nielsen
   - Wikipedia and Wikidata user contributions
   

   as part of Wikipedia for Peace at Europride Vienna 2019
   

Other Noteworthy Stuff

   - Wikidata-Toolkit 0.10.0
    was
   released
   - New Grafana board: number of edits per namespace
   


Did you know?

   - Newest properties
   :
  - General datatypes: title in HTML
  , title in LaTeX
  , student organization
  of , emergency services
  , average speed
  
  - External identifiers: Pro Football Reference coach ID
  , Keybase username
  , Elhuyar Dictionary ID
  , TV Tropes identifier
  , ITF tournament ID
  , Campendium ID
  , Malaysia company
  number , abART person ID
  , abART document ID
  , abART exhibition ID
  , abART group ID
  , abART institution ID
  , DR.dk topic ID
  , ABA League ID
  , Biographical
  Dictionary Of Iowa ID
, CCDC
  Number , Coco Game List
  ID , Dimensions grant ID
  
   - New property proposals
   
   to review:
  - General datatypes: text of verse
  ,
  literary motif
  ,
  scribe.amanuensis or copyist.illuminator
  
,
  distribution format
  
,
  phosphorylates
  ,
  RogerEbert.com film ID
  

[Wikidata-bugs] [Maniphest] [Commented On] T207893: Partial Blocks are enforced as Sitewide blocks in Wikibase entities

2019-06-17 Thread Ladsgroup
Ladsgroup added a comment.


  This is rather lots of work, SpecialWikibasePage is not the right place to 
keep the list, Making it per special page also is complex, like 
Special:SetLabel can be used on property and item and if the person is blocked 
on item namespace, there's no way to make sure it's applied until the user 
actually tries it (in which EntityStore should handle it properly using 
PermissionManager), so maybe we should just drop it? I would prefer if the 
special page still checks for site-wide bans.

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

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

To: Ladsgroup
Cc: Ladsgroup, Tchanders, Niharika, Lydia_Pintscher, WMDE-leszek, TBolliger, 
Lucas_Werkmeister_WMDE, Addshore, Aklapper, dbarratt, MGChecker, darthmon_wmde, 
MattLongCT, Nandana, aezell, Lahi, Gq86, dmaza, GoranSMilovanovic, SPoore, 
QZanden, LawExplorer, JJMC89, _jensen, rosalieper, PEarleyWMF, RuyP, jrbs, 
Jonas, Wong128hk, Bsadowski1, Wikidata-bugs, aude, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


Re: [Wikidata] Overload of query.wikidata.org

2019-06-17 Thread Guillaume Lederrey
No, there isn't any prioritization. Updates are guaranteed as they stay in
the update queue if they could not be written, but both read and writes are
impacted by resource saturation.

On Mon, 17 Jun 2019, 15:35 Gerard Meijssen, 
wrote:

> Hoi,
> Does this mean that the retrieval of data has priority over updates ?
> Thanks,
>   GerardM
> On Mon, 17 Jun 2019 at 14:52, Guillaume Lederrey 
> wrote:
>
>> Hello all!
>>
>> We now have an incident report [1] describing in more detail this
>> overload of Wikidata Query Service. The ban of python-request is still
>> in effect and will remain so until we have a throttling solution in
>> place for generic user agents.
>>
>> Thanks all for your patience!
>>
>>Guillaume
>>
>>
>> [1]
>> https://wikitech.wikimedia.org/wiki/Incident_documentation/20190613-wdqs
>>
>> On Thu, Jun 13, 2019 at 7:52 PM Guillaume Lederrey
>>  wrote:
>> >
>> > Hello all!
>> >
>> > We are currently dealing with a bot overloading the Wikidata Query
>> > Service. This bot does not look actively malicious, but does create
>> > enough load to disrupt the service. As a stop gap measure, we had to
>> > deny access to all bots using python-request user agent.
>> >
>> > As a reminder, any bot should use a user agent that allows to identify
>> > it [1]. If you have trouble accessing WDQS, please check that you are
>> > following those guidelines.
>> >
>> > More information and a proper incident report will be communicated as
>> > soon as we are on top of things again.
>> >
>> > Thanks for your understanding!
>> >
>> >Guillaume
>> >
>> >
>> > [1] https://meta.wikimedia.org/wiki/User-Agent_policy
>> >
>> > --
>> > Guillaume Lederrey
>> > Engineering Manager, Search Platform
>> > Wikimedia Foundation
>> > UTC+2 / CEST
>>
>>
>>
>> --
>> Guillaume Lederrey
>> Engineering Manager, Search Platform
>> Wikimedia Foundation
>> UTC+2 / CEST
>>
>> ___
>> Wikidata mailing list
>> Wikidata@lists.wikimedia.org
>> https://lists.wikimedia.org/mailman/listinfo/wikidata
>>
> ___
> Wikidata mailing list
> Wikidata@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikidata
>
___
Wikidata mailing list
Wikidata@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata


[Wikidata-bugs] [Maniphest] [Commented On] T225603: Wire up read logic for normalized storage in Wikibase

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517432 had a related patch set uploaded (by Hoo man; owner: Hoo man):
  [mediawiki/extensions/WikibaseMediaInfo@master] Update DataAccessSettings 
constructor call
  
  https://gerrit.wikimedia.org/r/517432

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

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

To: alaa_wmde, gerritbot
Cc: alaa_wmde, Aklapper, Lucas_Werkmeister_WMDE, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, joker88john, CucyNoiD, Nandana, 
NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, 
Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] [Triaged] T225814: m.wikidata: login status not detected

2019-06-17 Thread WMDE-leszek
WMDE-leszek triaged this task as "High" priority.

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

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

To: WMDE-leszek
Cc: Framawiki, Lydia_Pintscher, WMDE-leszek, Aklapper, Pablo-WMDE, 
darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Wong128hk, Wikidata-bugs, Snowolf, aude, Mbch331, Rxy, 
Jay8g, Legoktm
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T225603: Wire up read logic for normalized storage in Wikibase

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517430 had a related patch set uploaded (by Hoo man; owner: Hoo man):
  [mediawiki/extensions/WikibaseCirrusSearch@master] Tests: Change 
DataAccessSettings constructor call
  
  https://gerrit.wikimedia.org/r/517430

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

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

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


[Wikidata-bugs] [Maniphest] [Edited] T224832: Connect template parameter to corresponding Wikidata property

2019-06-17 Thread Pablo-WMDE
Pablo-WMDE updated the task description.

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

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

To: Pablo-WMDE
Cc: Aklapper, Lydia_Pintscher, darthmon_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 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] T214884: linking Schemas in statements

2019-06-17 Thread Ladsgroup
Ladsgroup added a comment.


  It would have been so much easier if EntitySchemas were entities, we just 
could have re-used the entity datatype boilerplate

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

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

To: Ladsgroup
Cc: Ladsgroup, Jheald, Michael, alaa_wmde, ericP, Esc3300, Moebeus, Aklapper, 
Lydia_Pintscher, darthmon_wmde, pdehaye, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, YULdigitalpreservation, LawExplorer, Salgo60, 
_jensen, rosalieper, Jonas, MisterSynergy, abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T225938: Implement Testing Environment

2019-06-17 Thread darthmon_wmde
darthmon_wmde updated the task description.

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

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

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


Re: [Wikidata] Overload of query.wikidata.org

2019-06-17 Thread Gerard Meijssen
Hoi,
Does this mean that the retrieval of data has priority over updates ?
Thanks,
  GerardM

On Mon, 17 Jun 2019 at 14:52, Guillaume Lederrey 
wrote:

> Hello all!
>
> We now have an incident report [1] describing in more detail this
> overload of Wikidata Query Service. The ban of python-request is still
> in effect and will remain so until we have a throttling solution in
> place for generic user agents.
>
> Thanks all for your patience!
>
>Guillaume
>
>
> [1]
> https://wikitech.wikimedia.org/wiki/Incident_documentation/20190613-wdqs
>
> On Thu, Jun 13, 2019 at 7:52 PM Guillaume Lederrey
>  wrote:
> >
> > Hello all!
> >
> > We are currently dealing with a bot overloading the Wikidata Query
> > Service. This bot does not look actively malicious, but does create
> > enough load to disrupt the service. As a stop gap measure, we had to
> > deny access to all bots using python-request user agent.
> >
> > As a reminder, any bot should use a user agent that allows to identify
> > it [1]. If you have trouble accessing WDQS, please check that you are
> > following those guidelines.
> >
> > More information and a proper incident report will be communicated as
> > soon as we are on top of things again.
> >
> > Thanks for your understanding!
> >
> >Guillaume
> >
> >
> > [1] https://meta.wikimedia.org/wiki/User-Agent_policy
> >
> > --
> > Guillaume Lederrey
> > Engineering Manager, Search Platform
> > Wikimedia Foundation
> > UTC+2 / CEST
>
>
>
> --
> Guillaume Lederrey
> Engineering Manager, Search Platform
> Wikimedia Foundation
> UTC+2 / CEST
>
> ___
> Wikidata mailing list
> Wikidata@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikidata
>
___
Wikidata mailing list
Wikidata@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata


[Wikidata-bugs] [Maniphest] [Updated] T225883: Wikidata Query Service results should be capable of displaying a report title (new feature request)

2019-06-17 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE edited projects, added Wikidata Query UI; removed 
Wikidata-Query-Service.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Tagishsimon, Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, Salgo60, _jensen, rosalieper, 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] T225938: Implement Testing Environment

2019-06-17 Thread darthmon_wmde
darthmon_wmde created this task.
darthmon_wmde added projects: Wikidata Bridge, Wikidata, Epic.

TASK DESCRIPTION
  Setup the testing environment, in this order
  
  1.- Research Webpack + RL
  
-> 2 people independetly
-> 3 hours per person
  
  2.- Vue + ts compilation (log "hello wikidata bridge")
  3.- Jest unittest + CI
  4.- Linting
  5.- Storybook

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225937: Implement Bridge Setup

2019-06-17 Thread darthmon_wmde
darthmon_wmde added subtasks: T225930: Implement Link Counter, T225935: 
Implement Feature Flag for Mediawiki, T225931: Integrate the links in the 
infobox.

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225935: Implement Feature Flag for Mediawiki

2019-06-17 Thread darthmon_wmde
darthmon_wmde added a parent task: T225937: Implement Bridge Setup.

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225930: Implement Link Counter

2019-06-17 Thread darthmon_wmde
darthmon_wmde added a parent task: T225937: Implement Bridge Setup.

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225931: Integrate the links in the infobox

2019-06-17 Thread darthmon_wmde
darthmon_wmde added a parent task: T225937: Implement Bridge Setup.

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

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

To: darthmon_wmde
Cc: Charlie_WMDE, Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 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] T225937: Implement Bridge Setup

2019-06-17 Thread darthmon_wmde
darthmon_wmde created this task.
darthmon_wmde added projects: Wikidata Bridge, Wikidata, Epic.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  Acceptance Criteria:
  
  [ ] Component is visible using the flag
  [ ] "hello wikidata bridge" is logged on the console

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

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T224125: Wikibase and WikibaseLexeme Selenium tests fail when UseCirrus is true in WikibaseCirrusSearch

2019-06-17 Thread zeljkofilipin
zeljkofilipin removed a project: User-zeljkofilipin.

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

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

To: zeljkofilipin
Cc: Aklapper, EBernhardson, Smalyshev, zeljkofilipin, Mholloway, darthmon_wmde, 
Redabr4, Zanziii, Sadisticturd, Nandana, A.S.Kochergin, Lahi, Gq86, 
GoranSMilovanovic, QZanden, EBjune, LawExplorer, _jensen, rosalieper, 
Wikidata-bugs, aude, jayvdb, Jdforrester-WMF, Mbch331, hashar, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T224284: Refactor wikibase/repo item.js selenium test to use a pageobject

2019-06-17 Thread zeljkofilipin
zeljkofilipin removed a project: User-zeljkofilipin.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T224833: first client edit for simple typo

2019-06-17 Thread Pablo-WMDE
Pablo-WMDE added a project: Epic.

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

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

To: Pablo-WMDE
Cc: Addshore, Charlie_WMDE, Incabell, Aklapper, Lydia_Pintscher, darthmon_wmde, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, 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] T225796: Wikibase and Lexeme browser tests are failing with `failed-save: The save has failed.`

2019-06-17 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.34-notes (1.34.0-wmf.10; 2019-06-18).

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

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

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


[Wikidata-bugs] [Maniphest] [Unblock] T203337: Fix wbeditentity API ignoring setting aliases to an empty set

2019-06-17 Thread WMDE-leszek
WMDE-leszek closed subtask T223303: on production enable bugfix for 
wbeditentity setting aliases to empty array as Resolved.

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

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

To: WMDE-leszek
Cc: Michael, Lea_Lacroix_WMDE, Ladsgroup, Lydia_Pintscher, alaa_wmde, 
WMDE-leszek, thiemowmde, Pablo-WMDE, Matthias_Geisler_WMDE, RazShuty, Lea_WMDE, 
Jakob_WMDE, Liuxinyu970226, Tarrow, Aklapper, Danmichaelo, darthmon_wmde, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Jonas, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T223303: on production enable bugfix for wbeditentity setting aliases to empty array

2019-06-17 Thread WMDE-leszek
WMDE-leszek closed this task as "Resolved".
WMDE-leszek moved this task from Test (Verification) to Done on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
WMDE-leszek claimed this task.

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

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T225935: Implement Feature Flag for Mediawiki

2019-06-17 Thread darthmon_wmde
darthmon_wmde updated the task description.
darthmon_wmde set the point value for this task to "3".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T223079: BC Announcement - wbeditentity with empy array alises will be removing all aliases with this change

2019-06-17 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE closed this task as "Resolved".
Lea_Lacroix_WMDE moved this task from Stalled/Waiting to Done on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.

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

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

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

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


[Wikidata-bugs] [Maniphest] [Unblock] T203337: Fix wbeditentity API ignoring setting aliases to an empty set

2019-06-17 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE closed subtask T223079: BC Announcement - wbeditentity with 
empy array alises will be removing all aliases with this change as 
Resolved.

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

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

To: Lea_Lacroix_WMDE
Cc: Michael, Lea_Lacroix_WMDE, Ladsgroup, Lydia_Pintscher, alaa_wmde, 
WMDE-leszek, thiemowmde, Pablo-WMDE, Matthias_Geisler_WMDE, RazShuty, Lea_WMDE, 
Jakob_WMDE, Liuxinyu970226, Tarrow, Aklapper, Danmichaelo, darthmon_wmde, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Jonas, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T203337: Fix wbeditentity API ignoring setting aliases to an empty set

2019-06-17 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE added a comment.


  The change is now deployed on wikidata.org!

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

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

To: Lea_Lacroix_WMDE
Cc: Michael, Lea_Lacroix_WMDE, Ladsgroup, Lydia_Pintscher, alaa_wmde, 
WMDE-leszek, thiemowmde, Pablo-WMDE, Matthias_Geisler_WMDE, RazShuty, Lea_WMDE, 
Jakob_WMDE, Liuxinyu970226, Tarrow, Aklapper, Danmichaelo, darthmon_wmde, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Jonas, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


Re: [Wikidata] [Breaking Change] wbeditentity including empty alias set will remove all aliases

2019-06-17 Thread Léa Lacroix
Hello all,
The change is now deployed on wikidata.org. See this Phabricator ticket
 for more details.

If you are maintaining a tool, please *inspect your tool usage of
wbeditentity endpoint*, and make sure that no calls with empty alias arrays
are sent unless the intention is to remove these aliases.

If you have any question or issue, feel free to reach me.
Cheers, Léa

On Thu, 6 Jun 2019 at 11:48, Léa Lacroix  wrote:

> Hello all,
> Quick update: the date of deployment on wikidata.org has been postponed
> to Monday, June 17th. For more information or to ask questions, see this
> Phabricator task .
> Cheers, Léa
>
> On Tue, 28 May 2019 at 17:37, Léa Lacroix 
> wrote:
>
>> Hello all,
>> As planned, the change has now been deployed on wikidata.beta.wmflabs.org
>> . Feel free to test your tools and let us know if you encounter any issue.
>> Cheers,
>> Léa
>>
>> On Tue, 14 May 2019 at 12:11, Léa Lacroix 
>> wrote:
>>
>>> Hello all,
>>>
>>> This change is relevant for everyone using the *wbeditentity* endpoint
>>> of Wikidata’s API.
>>>
>>> While working on editing the termbox from mobile, we discovered a bug in
>>> our code of the wbeditentity endpoint, that does not conform with the
>>> implicit interpretation of the documentation
>>> .
>>>
>>>
>>> A request including {"aliases":{"en":[]}} should, according to the
>>> implicit interpretation of its documentation, replace all aliases in
>>> English by an empty string, meaning removing all aliases. However, at the
>>> moment this action is not actually performed, meaning that this request
>>> would leave the aliases untouched.
>>>
>>> We want to fix this bug, because we need this request to work in order
>>> to be able to remove all aliases also in the new termbox on mobile. We are
>>> treating this bug fix as a breaking change because the documentation was
>>> ambiguous, and there may be some tools currently sending requests with
>>> empty alias arrays when nothing need to be touched, intentionally or not.
>>>
>>> If you are maintaining a tool, please *inspect your tool usage of
>>> wbeditentity endpoint*, and make sure that no calls with empty alias
>>> arrays are sent unless the intention is to remove these aliases.
>>>
>>> According to our breaking change policy, this bug fix will be first
>>> deployed on beta.wikidata.org later on May 28th, then on wikidata.org
>>> on *June 12th*.
>>>
>>> If you have any question or issue, feel free to discuss in the related
>>> ticket .
>>>
>>> Cheers,
>>> --
>>> Léa Lacroix
>>> Project Manager Community Communication for Wikidata
>>>
>>> Wikimedia Deutschland e.V.
>>> Tempelhofer Ufer 23-24
>>> 10963 Berlin
>>> www.wikimedia.de
>>>
>>> Wikimedia Deutschland - Gesellschaft zur Förderung Freien Wissens e. V.
>>>
>>> Eingetragen im Vereinsregister des Amtsgerichts Berlin-Charlottenburg
>>> unter der Nummer 23855 Nz. Als gemeinnützig anerkannt durch das Finanzamt
>>> für Körperschaften I Berlin, Steuernummer 27/029/42207.
>>>
>>
>>
>> --
>> Léa Lacroix
>> Project Manager Community Communication for Wikidata
>>
>> Wikimedia Deutschland e.V.
>> Tempelhofer Ufer 23-24
>> 10963 Berlin
>> www.wikimedia.de
>>
>> Wikimedia Deutschland - Gesellschaft zur Förderung Freien Wissens e. V.
>>
>> Eingetragen im Vereinsregister des Amtsgerichts Berlin-Charlottenburg
>> unter der Nummer 23855 Nz. Als gemeinnützig anerkannt durch das Finanzamt
>> für Körperschaften I Berlin, Steuernummer 27/029/42207.
>>
>
>
> --
> Léa Lacroix
> Project Manager Community Communication for Wikidata
>
> Wikimedia Deutschland e.V.
> Tempelhofer Ufer 23-24
> 10963 Berlin
> www.wikimedia.de
>
> Wikimedia Deutschland - Gesellschaft zur Förderung Freien Wissens e. V.
>
> Eingetragen im Vereinsregister des Amtsgerichts Berlin-Charlottenburg
> unter der Nummer 23855 Nz. Als gemeinnützig anerkannt durch das Finanzamt
> für Körperschaften I Berlin, Steuernummer 27/029/42207.
>


-- 
Léa Lacroix
Project Manager Community Communication for Wikidata

Wikimedia Deutschland e.V.
Tempelhofer Ufer 23-24
10963 Berlin
www.wikimedia.de

Wikimedia Deutschland - Gesellschaft zur Förderung Freien Wissens e. V.

Eingetragen im Vereinsregister des Amtsgerichts Berlin-Charlottenburg unter
der Nummer 23855 Nz. Als gemeinnützig anerkannt durch das Finanzamt für
Körperschaften I Berlin, Steuernummer 27/029/42207.
___
Wikidata mailing list
Wikidata@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata


[Wikidata-bugs] [Maniphest] [Created] T225935: Implement Feature Flag for Mediawiki

2019-06-17 Thread darthmon_wmde
darthmon_wmde created this task.
darthmon_wmde added projects: Wikidata Bridge, Wikidata.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  Acceptance Criteria:
  
  [ ] a flag will turn the feature on and off
  [ ] the flag on ON will result on the feature being shown/visible

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

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

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

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


[Wikidata-bugs] [Maniphest] [Edited] T225931: Integrate the links in the infobox

2019-06-17 Thread darthmon_wmde
darthmon_wmde updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T225931: Integrate the links in the infobox

2019-06-17 Thread darthmon_wmde
darthmon_wmde added a subscriber: Charlie_WMDE.
darthmon_wmde added a comment.


  @Charlie_WMDE we will need a meeting to talk about this one

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

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

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


[Wikidata-bugs] [Maniphest] [Edited] T225931: Integrate the links in the infobox

2019-06-17 Thread darthmon_wmde
darthmon_wmde updated the task description.

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225073: Add baserevid to wblremovesense API module

2019-06-17 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T225073: Add baserevid to wblremovesense API module

2019-06-17 Thread gerritbot
gerritbot added a comment.


  Change 517414 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/WikibaseLexeme@master] Add baserevid to wblremovesense 
API module
  
  https://gerrit.wikimedia.org/r/517414

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

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

To: Ladsgroup, gerritbot
Cc: Aklapper, Addshore, gerritbot, Tarrow, alaa_wmde, Ladsgroup, darthmon_wmde, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, 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] [Retitled] T225931: Integrate the links in the infobox

2019-06-17 Thread darthmon_wmde
darthmon_wmde renamed this task from "Implement the Overlay" to "Integrate the 
links in the infobox".
darthmon_wmde updated the task description.

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] [Retitled] T225931: Implement the Overlay

2019-06-17 Thread darthmon_wmde
darthmon_wmde renamed this task from "Implement Overlay of the Model" to 
"Implement the Overlay".

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225930: Implement Link Counter

2019-06-17 Thread darthmon_wmde
darthmon_wmde set the point value for this task to "5".

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225931: Implement Overlay of the Model

2019-06-17 Thread darthmon_wmde
darthmon_wmde created this task.
darthmon_wmde added projects: Wikidata Bridge, Wikidata.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  Acceptance Criteria:
  
  [ ]

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

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225930: Implement Link Counter

2019-06-17 Thread darthmon_wmde
darthmon_wmde edited projects, added Wikidata Bridge; removed Wikidata Bridge 
Sprint 0.

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

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

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


[Wikidata-bugs] [Maniphest] [Edited] T225930: Implement Link Counter

2019-06-17 Thread darthmon_wmde
darthmon_wmde updated the task description.

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225930: Implement Link Counter

2019-06-17 Thread darthmon_wmde
darthmon_wmde updated the task description.

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T225930: Implement Link Counter

2019-06-17 Thread darthmon_wmde
darthmon_wmde edited projects, added Wikidata, Wikidata Bridge Sprint 0; 
removed Wikidata Bridge.

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

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

To: darthmon_wmde
Cc: Aklapper, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, 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] T224832: Connect template parameter to corresponding Wikidata property

2019-06-17 Thread darthmon_wmde
darthmon_wmde set the point value for this task to "3".

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

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

To: darthmon_wmde
Cc: Aklapper, Lydia_Pintscher, darthmon_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 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] T225500: Decrease EntityUsageTable addUsage batch size to 100

2019-06-17 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T223303: on production enable bugfix for wbeditentity setting aliases to empty array

2019-06-17 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: Maintenance_bot
Cc: Ladsgroup, Lydia_Pintscher, Lea_Lacroix_WMDE, Aklapper, Michael, 
darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Jonas, Wikidata-bugs, aude, Mbch331, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, joker88john, CucyNoiD, 
NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, 
Cpaulf30, Baloch007, 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] [Edited] T224832: Connect template parameter to corresponding Wikidata property

2019-06-17 Thread darthmon_wmde
darthmon_wmde updated the task description.

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

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

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


Re: [Wikidata] Overload of query.wikidata.org

2019-06-17 Thread Guillaume Lederrey
Hello all!

We now have an incident report [1] describing in more detail this
overload of Wikidata Query Service. The ban of python-request is still
in effect and will remain so until we have a throttling solution in
place for generic user agents.

Thanks all for your patience!

   Guillaume


[1] https://wikitech.wikimedia.org/wiki/Incident_documentation/20190613-wdqs

On Thu, Jun 13, 2019 at 7:52 PM Guillaume Lederrey
 wrote:
>
> Hello all!
>
> We are currently dealing with a bot overloading the Wikidata Query
> Service. This bot does not look actively malicious, but does create
> enough load to disrupt the service. As a stop gap measure, we had to
> deny access to all bots using python-request user agent.
>
> As a reminder, any bot should use a user agent that allows to identify
> it [1]. If you have trouble accessing WDQS, please check that you are
> following those guidelines.
>
> More information and a proper incident report will be communicated as
> soon as we are on top of things again.
>
> Thanks for your understanding!
>
>Guillaume
>
>
> [1] https://meta.wikimedia.org/wiki/User-Agent_policy
>
> --
> Guillaume Lederrey
> Engineering Manager, Search Platform
> Wikimedia Foundation
> UTC+2 / CEST



-- 
Guillaume Lederrey
Engineering Manager, Search Platform
Wikimedia Foundation
UTC+2 / CEST

___
Wikidata mailing list
Wikidata@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata


  1   2   >