Re: [Wikidata] Nobel Prizes and consensus in Wikidata

2019-09-27 Thread Peter Patel-Schneider
Indeed.   Thanks for the example.  I'll probably incorporate it in my 
talk at WikidataCon.



As far as I know there is no general method for nudging towards 
consensus for cases like these.  The onus appears to me to be on whoever 
is entering the information to look for similar situations and model 
them all the same.  (In this case it appears that a recent change to the 
Nobel Peace Prize was made to remove it being a subclass of Nobel Prize, 
actually reducing commonality.)


But what can be done in the future?  One way to go is to ask that 
editors be more careful when editing items that might belong to a group, 
and try to model them the same as other members of the group.  Another 
way to go is to ask that editors be more careful when editing items that 
have parts/instances/subclasses and check that all the other items are 
modeled the same way.


I prefer something similar to the second way, where editors of classes 
and properties (or just about anything that is going to be the common 
target of a property, but instance and subclass and subproperty seem to 
me to be the most important such properties) are asked to be careful to 
specify the relationship between the class or property and the other 
items that target it.  So whoever does major editing on Nobel Prize 
should add a comment on the relationship between the various Nobel 
Prizes and Nobel Prize. (Having such information is quite common for 
concepts in Cyc.)


Actually Nobel Prize isn't the greatest example for my preference 
because there doesn't seem to be any Wikidata items for the even the 
famous Nobel Prizes.   Suppose there was a Wikidata item for Einstein's 
Nobel Prize in Physics.  Then its relationship to Nobel Prize would 
provide guidance for the relationship between the Nobel Prize in Physics 
and Nobel Prizes itself.



I find modeling deficiencies like this in lots of places in Wikidata.  
That's not a severe problem if you have the resources of Google to throw 
at curating Wikidata information.  But if you don't have this level of 
resources available for curating Wikidata information then these sorts 
of infelicities are a significant barrier to using Wikidata.



Peter F. Patel-Schneider



On 9/27/19 12:34 PM, Aidan Hogan wrote:

Hey all,

Andra recently mentioned about finding laureates in Wikidata, and it 
reminded me that some weeks ago I was trying to come up with a SPARQL 
query to find all Nobel Prize Winners in Wikidata.


What I ended up with was:

SELECT ?winner
WHERE {
  ?winner wdt:P166 ?prize .
  ?prize (wdt:P361|wdt:P31|wdt:P279) wd:Q7191 .
}


More specifically, looking into the data I found:

Nobel Peace Prize (Q35637)
 part of (P361)
  Nobel Prize (Q7191) .

Nobel Prize in Literature (Q37922)
 subclass of (P279)
  Nobel Prize (Q7191) .

Nobel Prize in Economics (Q47170)
 instance of (P31)
   Nobel Prize (Q7191) ;
 part of (P361)
   Nobel Prize (Q7191) .

Nobel Prize in Chemistry (Q44585)
 instance of (P31)
   Nobel Prize (Q7191) ;
 part of (P361)
   Nobel Prize (Q7191) .

Nobel Prize in Physics (Q38104)
 subclass of (P31)
   Nobel Prize (Q7191) ;
 part of (P361)
   Nobel Prize (Q7191) .

In summary, of the six types of Nobel prizes, three different 
properties are used in five different combinations to state that they 
"are", in fact, Nobel prizes. :)


Now while it would be interesting to discuss the relative merits of 
P31 vs. P279 vs. P361 vs. some combination thereof in this case and 
similar such cases, I guess I am more interested in the general 
problem of the lack of consensus that such a case exhibits.


What processes (be they social, technical, or some combination 
thereof) are currently in place to reach consensus in these cases in 
Wikidata?


What could be put in place in future to highlight and reach consensus?

Or is the idea more to leave the burden of "integrating" different 
viewpoints to the consumer (e.g., to the person writing the query)?


(Of course these are all "million dollar questions" that have been 
with the Semantic Web since the beginning, but I am curious about what 
is being done or can be done in the specific context of Wikidata to 
foster consensus and reduce heterogeneity in such cases.)


Best,
Aidan

___
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] Nobel Prizes and consensus in Wikidata

2019-09-27 Thread Thad Guidry
Why not flip the question around and instead find a better predicate using
the fantastic Wikidata Property Explorer
 and type in search tree for
"award" and click the results in the tree ?

I found these that are useful:

https://www.wikidata.org/entity/P166
https://www.wikidata.org/entity/P1027
https://www.wikidata.org/entity/P1411

Thad
https://www.linkedin.com/in/thadguidry/


On Fri, Sep 27, 2019 at 2:34 PM Aidan Hogan  wrote:

> Hey all,
>
> Andra recently mentioned about finding laureates in Wikidata, and it
> reminded me that some weeks ago I was trying to come up with a SPARQL
> query to find all Nobel Prize Winners in Wikidata.
>
> What I ended up with was:
>
> SELECT ?winner
> WHERE {
>?winner wdt:P166 ?prize .
>?prize (wdt:P361|wdt:P31|wdt:P279) wd:Q7191 .
> }
>
>
> More specifically, looking into the data I found:
>
> Nobel Peace Prize (Q35637)
>   part of (P361)
>Nobel Prize (Q7191) .
>
> Nobel Prize in Literature (Q37922)
>   subclass of (P279)
>Nobel Prize (Q7191) .
>
> Nobel Prize in Economics (Q47170)
>   instance of (P31)
> Nobel Prize (Q7191) ;
>   part of (P361)
> Nobel Prize (Q7191) .
>
> Nobel Prize in Chemistry (Q44585)
>   instance of (P31)
> Nobel Prize (Q7191) ;
>   part of (P361)
> Nobel Prize (Q7191) .
>
> Nobel Prize in Physics (Q38104)
>   subclass of (P31)
> Nobel Prize (Q7191) ;
>   part of (P361)
> Nobel Prize (Q7191) .
>
> In summary, of the six types of Nobel prizes, three different properties
> are used in five different combinations to state that they "are", in
> fact, Nobel prizes. :)
>
> Now while it would be interesting to discuss the relative merits of P31
> vs. P279 vs. P361 vs. some combination thereof in this case and similar
> such cases, I guess I am more interested in the general problem of the
> lack of consensus that such a case exhibits.
>
> What processes (be they social, technical, or some combination thereof)
> are currently in place to reach consensus in these cases in Wikidata?
>
> What could be put in place in future to highlight and reach consensus?
>
> Or is the idea more to leave the burden of "integrating" different
> viewpoints to the consumer (e.g., to the person writing the query)?
>
> (Of course these are all "million dollar questions" that have been with
> the Semantic Web since the beginning, but I am curious about what is
> being done or can be done in the specific context of Wikidata to foster
> consensus and reduce heterogeneity in such cases.)
>
> Best,
> Aidan
>
> ___
> 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] T166470: Include links in Wikidata HTTP responses to different entity representations as Link headers

2019-09-27 Thread abian
abian added a comment.


  Okay! But I'd need some help to know what/where to touch. To set HTTP headers 
for the Special:EntityData pages I would probably change 
/repo/includes/LinkedData/EntityDataRequestHandler.php 
,
 but what should I touch if I want to set HTTP headers for the wiki pages (not 
necessarily loading them through Special:EntityData)?

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

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

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


[Wikidata-bugs] [Maniphest] [Unassigned] T148928: Wikidata integration for proveit gadget

2019-09-27 Thread Sophivorus
Sophivorus removed Sophivorus as the assignee of this task.

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

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

To: Sophivorus
Cc: Capankajsmilyo, Liuxinyu970226, Phil_Boswell, Deskana, Mvolz, 
Daniel_Mietchen, Iniquity, Sophivorus, darthmon_wmde, DannyS712, Nandana, Lahi, 
Gq86, GoranSMilovanovic, Kailash29792, 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] T172368: [Task] Make the Wikibase.git code base PSR-4 compatible

2019-09-27 Thread ReleaseTaggerBot
ReleaseTaggerBot edited projects, added MW-1.34-notes (1.34.0-wmf.25; 
2019-10-01); removed MW-1.34-notes (1.34.0-wmf.20; 2019-08-27).

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

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

To: ReleaseTaggerBot
Cc: Lucas_Werkmeister_WMDE, Eileenmcnaughton, gerritbot, Ricordisamoa, 
Aklapper, PokestarFan, WMDE-leszek, Jakob_WMDE, daniel, Aleksey_WMDE, 
Ladsgroup, Lydia_Pintscher, thiemowmde, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, Dinadineke, 
DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, tabish.shaikh91, Adrian1985, Cpaulf30, Lahi, 
Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Soteriaspace, Jayprakash12345, Th3d3v1ls, JakeTheDeveloper, Ramalepe, Liugev6, 
QZanden, merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, 
rosalieper, Izno, Wikidata-bugs, aude, Dinoguy1000, TheDJ, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata] Nobel Prizes and consensus in Wikidata

2019-09-27 Thread Aidan Hogan

Hey all,

Andra recently mentioned about finding laureates in Wikidata, and it 
reminded me that some weeks ago I was trying to come up with a SPARQL 
query to find all Nobel Prize Winners in Wikidata.


What I ended up with was:

SELECT ?winner
WHERE {
  ?winner wdt:P166 ?prize .
  ?prize (wdt:P361|wdt:P31|wdt:P279) wd:Q7191 .
}


More specifically, looking into the data I found:

Nobel Peace Prize (Q35637)
 part of (P361)
  Nobel Prize (Q7191) .

Nobel Prize in Literature (Q37922)
 subclass of (P279)
  Nobel Prize (Q7191) .

Nobel Prize in Economics (Q47170)
 instance of (P31)
   Nobel Prize (Q7191) ;
 part of (P361)
   Nobel Prize (Q7191) .

Nobel Prize in Chemistry (Q44585)
 instance of (P31)
   Nobel Prize (Q7191) ;
 part of (P361)
   Nobel Prize (Q7191) .

Nobel Prize in Physics (Q38104)
 subclass of (P31)
   Nobel Prize (Q7191) ;
 part of (P361)
   Nobel Prize (Q7191) .

In summary, of the six types of Nobel prizes, three different properties 
are used in five different combinations to state that they "are", in 
fact, Nobel prizes. :)


Now while it would be interesting to discuss the relative merits of P31 
vs. P279 vs. P361 vs. some combination thereof in this case and similar 
such cases, I guess I am more interested in the general problem of the 
lack of consensus that such a case exhibits.


What processes (be they social, technical, or some combination thereof) 
are currently in place to reach consensus in these cases in Wikidata?


What could be put in place in future to highlight and reach consensus?

Or is the idea more to leave the burden of "integrating" different 
viewpoints to the consumer (e.g., to the person writing the query)?


(Of course these are all "million dollar questions" that have been with 
the Semantic Web since the beginning, but I am curious about what is 
being done or can be done in the specific context of Wikidata to foster 
consensus and reduce heterogeneity in such cases.)


Best,
Aidan

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


[Wikidata-bugs] [Maniphest] [Triaged] T234094: Wikidata "Duplicate references" gadget hangs on saving copied reference

2019-09-27 Thread Lydia_Pintscher
Lydia_Pintscher triaged this task as "High" priority.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T234094: Wikidata "Duplicate references" gadget hangs on saving copied reference

2019-09-27 Thread Lydia_Pintscher
Lydia_Pintscher added projects: RL Module Terminators Trailblazing, 
Wikidata-Campsite.
Lydia_Pintscher added a comment.


  Terminators: Is this possibly caused by your changes?

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

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

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


[Wikidata-bugs] [Maniphest] [Edited] T234094: Wikidata "Duplicate references" gadget hangs on saving copied reference

2019-09-27 Thread PKM
PKM updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] [Created] T234094: Wikidata "Duplicate references" gadget hangs on saving copied reference

2019-09-27 Thread PKM
PKM created this task.
PKM added a project: Wikidata.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  Using the "Duplicate references" gadget, when I copy and reference and select 
"insert reference", the "saving" status message appears but the save never 
completes.
  
  It seems the reference is correctly copied to the new statement but the 
actual "publish" step does not complete: if I add another reference manually 
while the "saving" status is displayed on the copied reference, both the manual 
and copied references are correctly published.
  
  This problem was discussed on Wikidata Project Chat 
https://www.wikidata.org/w/index.php?title=Wikidata:Project_chat=1020965740#%22Duplicate_references%22_gadget_hangs
 and confirmed to be a problem by three editors.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T234041: wikibase-docker should build Query Service UI

2019-09-27 Thread Addshore
Addshore added a comment.


  For this to work these needs to be a different way to load the config really, 
ie, not in the minified js that is built

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

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

To: Addshore
Cc: Addshore, Lucas_Werkmeister_WMDE, Aklapper, darthmon_wmde, Jelabra, 
DannyS712, Nandana, Lahi, Gq86, 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] [Commented On] T172368: [Task] Make the Wikibase.git code base PSR-4 compatible

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 523237 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Fix namespace of MockClientStore
  
  https://gerrit.wikimedia.org/r/523237

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

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

To: gerritbot
Cc: Lucas_Werkmeister_WMDE, Eileenmcnaughton, gerritbot, Ricordisamoa, 
Aklapper, PokestarFan, WMDE-leszek, Jakob_WMDE, daniel, Aleksey_WMDE, 
Ladsgroup, Lydia_Pintscher, thiemowmde, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, Dinadineke, 
DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, tabish.shaikh91, Adrian1985, Cpaulf30, Lahi, 
Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Soteriaspace, Jayprakash12345, Th3d3v1ls, JakeTheDeveloper, Ramalepe, Liugev6, 
QZanden, merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, 
rosalieper, Izno, Wikidata-bugs, aude, Dinoguy1000, TheDJ, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T191953: WDQS Container GUI constantly loads style.less

2019-09-27 Thread Addshore
Addshore added a comment.


  In T191953#4135392 , 
@Tarrow wrote:
  
  > Maybe we should have a 'dev' tagged version of the container that remains 
as it is now. The new 'vanilla' container should then serve the built `build` 
directory.
  
  As said above in T191953#4127694 
 that isn't really possible 
as the config is in the minified JS.
  In order to have a nicedocker images some changes probably have to be made to 
the wdqsgui code itself.
  For 3rd party users of the wdqsgui, if they want to use docker the best thing 
to do would be for them to build their own image with their own config included.

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

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

To: Addshore
Cc: Tarrow, Lucas_Werkmeister_WMDE, Addshore, Aklapper, Smalyshev, 
darthmon_wmde, Jelabra, DannyS712, 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] T233353: EntitySchema: remove dependency on pre-MCR database schema

2019-09-27 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T198343: Replace all calls to Revision::getRevisionText()

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 539607 had a related patch set uploaded (by Ppchelko; owner: Ppchelko):
  [mediawiki/core@master] Hard deprecate Revision::getRevisionText() method
  
  https://gerrit.wikimedia.org/r/539607

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T234079: Highlight individual statements when selecting them in the URL

2019-09-27 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  

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

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

To: abian, Lydia_Pintscher
Cc: Lydia_Pintscher, Hanna_Petruschat_WMDE, Lucas_Werkmeister_WMDE, Aklapper, 
JanJaquemot, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 
darthmon_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, Nandana, 
NebulousIris, Gaboe420, A.S.Kochergin, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, JGirault, 
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] T166470: Include links in Wikidata HTTP responses to different entity representations as Link headers

2019-09-27 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  Let's do it then :)
  @abian Do you want to propose a patch?

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T233353: EntitySchema: remove dependency on pre-MCR database schema

2019-09-27 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.34-notes (1.34.0-wmf.25; 2019-10-01).

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T198343: Replace all calls to Revision::getRevisionText()

2019-09-27 Thread ReleaseTaggerBot
ReleaseTaggerBot edited projects, added MW-1.34-notes (1.34.0-wmf.25; 
2019-10-01); removed MW-1.34-notes (1.34.0-wmf.24; 2019-09-24).

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T166470: Include links in Wikidata HTTP responses to different entity representations as Link headers

2019-09-27 Thread Addshore
Addshore added a comment.


  I see no reason not to do this.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T232248: The Wikibase web interface shows non-functional sitelink groups

2019-09-27 Thread Addshore
Addshore added a project: Wikidata-Campsite.

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

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

To: Addshore
Cc: Addshore, abian, Aklapper, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] [Triaged] T232248: The Wikibase web interface shows non-functional sitelink groups

2019-09-27 Thread Addshore
Addshore triaged this task as "Low" priority.
Addshore moved this task from Incoming to Ready to estimate on the 
Wikidata-Campsite board.

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

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

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

To: Addshore
Cc: Addshore, abian, Aklapper, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T234079: Highlight individual statements when selecting them in the URL

2019-09-27 Thread abian
abian added a comment.


  Thanks for the task, @Lucas_Werkmeister_WMDE!
  
  Note that, when you load the page with the hash, you'll have the property 
name inside the box anyway, since the property name follows you when you scroll 
down.

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

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

To: abian
Cc: Hanna_Petruschat_WMDE, Lucas_Werkmeister_WMDE, Aklapper, JanJaquemot, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, 
Meekrab2012, joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
A.S.Kochergin, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, 
Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, 
Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, 
Lewizho99, Maathavan, _jensen, rosalieper, JGirault, 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] T233353: EntitySchema: remove dependency on pre-MCR database schema

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 538688 **merged** by jenkins-bot:
  [mediawiki/extensions/EntitySchema@master] Remove dependency on pre-MCR 
database schema
  
  https://gerrit.wikimedia.org/r/538688

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T198343: Replace all calls to Revision::getRevisionText()

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 538314 **merged** by jenkins-bot:
  [mediawiki/core@master] Remove Revision::getRevisionText and gated pre-MCR 
schema access
  
  https://gerrit.wikimedia.org/r/538314

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T178745: Highlight statement(s) when using "#P" in URL

2019-09-27 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  > So should we create a separate Phabricator task for that, if this one is 
now done?
  
  Done (T234079 ) so we don’t lose 
track of it.

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

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

To: abian, Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, jeblad, Ivanhercaz, Jd3main, abian, 
Hanna_Petruschat_WMDE, TerraCodes, Lydia_Pintscher, Jan_Dittrich, 
Sjoerddebruin, Aklapper, JanJaquemot, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, 
Dinadineke, DannyS712, CucyNoiD, Nandana, NebulousIris, Kieubinhtb, Gaboe420, 
A.S.Kochergin, Mh-3110, Versusxo, Majesticalreaper22, Giuliamocci, 
tabish.shaikh91, Adrian1985, Asad_Ali_Palijo, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Soteriaspace, 
RazeSoldier, Jayprakash12345, Th3d3v1ls, JakeTheDeveloper, Ramalepe, Liugev6, 
QZanden, merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, 
rosalieper, JGirault, D3r1ck01, Jonas, MuhammadShuaib, Tmalhotra, SimmeD, 
Wikidata-bugs, aude, TheDJ, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T234079: Highlight individual statements when selecting them in the URL

2019-09-27 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a subscriber: Hanna_Petruschat_WMDE.
Lucas_Werkmeister_WMDE added a comment.


  The change linked above implements this; here’s what it looks like if the 
statement is not the first in the list:
  
  F30484289: Screenshot_2019-09-27 Douglas Adams.png 

  
  @Hanna_Petruschat_WMDE does this look okay to you?

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

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

To: abian, Lucas_Werkmeister_WMDE
Cc: Hanna_Petruschat_WMDE, Lucas_Werkmeister_WMDE, Aklapper, JanJaquemot, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, 
Meekrab2012, joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
A.S.Kochergin, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, 
Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, 
Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, 
Lewizho99, Maathavan, _jensen, rosalieper, JGirault, 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] T178745: Highlight statement(s) when using "#P" in URL

2019-09-27 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE removed a project: Patch-For-Review.

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

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

To: abian, Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, jeblad, Ivanhercaz, Jd3main, abian, 
Hanna_Petruschat_WMDE, TerraCodes, Lydia_Pintscher, Jan_Dittrich, 
Sjoerddebruin, Aklapper, JanJaquemot, darthmon_wmde, alaa_wmde, Dinadineke, 
DannyS712, Nandana, Kieubinhtb, A.S.Kochergin, Mh-3110, tabish.shaikh91, 
Asad_Ali_Palijo, Lahi, Gq86, GoranSMilovanovic, Soteriaspace, RazeSoldier, 
Jayprakash12345, JakeTheDeveloper, QZanden, merbst, LawExplorer, _jensen, 
rosalieper, JGirault, D3r1ck01, Jonas, MuhammadShuaib, Tmalhotra, SimmeD, 
Wikidata-bugs, aude, TheDJ, Mbch331, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, Meekrab2012, joker88john, CucyNoiD, NebulousIris, 
Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, 
Af420, Darkminds3113, Bsandipan, Lordiis, Adik2382, Th3d3v1ls, Ramalepe, 
Liugev6, WSH1906, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T234079: Highlight individual statements when selecting them in the URL

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 533917 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Abián):
  [mediawiki/extensions/Wikibase@master] Highlight individual :target statements
  
  https://gerrit.wikimedia.org/r/533917

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

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

To: abian, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, JanJaquemot, darthmon_wmde, DannyS712, 
Nandana, A.S.Kochergin, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, JGirault, 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] T234079: Highlight individual statements when selecting them in the URL

2019-09-27 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

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


[Wikidata-bugs] [Maniphest] [Created] T234079: Highlight individual statements when selecting them in the URL

2019-09-27 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE created this task.
Lucas_Werkmeister_WMDE added projects: Wikidata, 
MediaWiki-extensions-WikibaseRepository, WMDE-Design, Wikidata-Campsite.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Design.

TASK DESCRIPTION
  T178745: Highlight statement(s) when using "#P" in URL 
 highlights the whole statement 
group when its property ID is selected in the URL hash, but you can also target 
individual statements this way, and it would be nice to highlight them, too.

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

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

To: abian, Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Aklapper, JanJaquemot, darthmon_wmde, DannyS712, 
Nandana, A.S.Kochergin, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, JGirault, 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] T224773: Add phan to WikibaseQualityConstraints extension

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 539588 had a related patch set uploaded (by Umherirrender; owner: 
Umherirrender):
  [integration/config@master] [WikibaseQualityConstraints] Run phan job
  
  https://gerrit.wikimedia.org/r/539588

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

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

To: Umherirrender, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, Umherirrender, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Agabi10, 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] T198341: Remove all references to the rev_text_id and ar_text_id fields

2019-09-27 Thread Pchelolo
Pchelolo closed subtask T233353: EntitySchema: remove dependency on pre-MCR 
database schema as Resolved.

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T233353: EntitySchema: remove dependency on pre-MCR database schema

2019-09-27 Thread Pchelolo
Pchelolo closed this task as "Resolved".
Pchelolo moved this task from Doing to Done on the Core Platform Team 
Workboards (Purple) board.

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

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T212843: [EPIC] Access to Wikidata's lexicographical data from Wiktionaries and other WMF sites

2019-09-27 Thread Fnielsen
Fnielsen added a comment.


  The query is a bit hard on WDQS. If one execute it twice then the second time 
can apparently use some caching from the first.
  
  The query counts that there are, e.g., 7 Danish lexemes of 'led' from what 
Ordia shows are 9 different forms. In Wiktionary, I suppose we would like to 
have all 9 forms shown - either fully or just as a redirect. The 9 forms can be 
fetched from 7 different Wikidata lexeme pages. That is just for one language. 
I have a problem with formulating a language-agnostic query that doesn't 
timeout in WDQS. The Ordia page 
https://tools.wmflabs.org/ordia/representation/led show that there are two more 
lexemes we should get to make the full Wiktionary page for 'led', - one Czech 
lexeme (with two forms) and one English lexeme

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

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

To: Fnielsen
Cc: TomT0m, Yurik, Vesihiisi, ArthurPSmith, Iniquity, Tobias1984, Theklan, 
Fnielsen, RexxS, Pamputt, Mike_Peel, MarcoSwart, Geertivp, Liuxinyu970226, 
Addshore, Jdforrester-WMF, deryckchan, Lydia_Pintscher, Lea_Lacroix_WMDE, 
darthmon_wmde, DannyS712, Nandana, Mringgaard, Lahi, Gq86, Cinemantique, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, jberkel, 
Psychoslave, Wikidata-bugs, aude, GPHemsley, Shizhao, Nemo_bis, Darkdadaah, 
Mbch331, Ltrlg, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T224773: Add phan to WikibaseQualityConstraints extension

2019-09-27 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Umherirrender, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, Umherirrender, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Agabi10, 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] T224773: Add phan to WikibaseQualityConstraints extension

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 539585 had a related patch set uploaded (by Umherirrender; owner: 
Umherirrender):
  [mediawiki/extensions/WikibaseQualityConstraints@master] build: Add 
mediawiki/mediawiki-phan-config
  
  https://gerrit.wikimedia.org/r/539585

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

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

To: Umherirrender, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, Umherirrender, darthmon_wmde, DannyS712, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, merbst, LawExplorer, _jensen, 
rosalieper, Agabi10, 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] T212843: [EPIC] Access to Wikidata's lexicographical data from Wiktionaries and other WMF sites

2019-09-27 Thread Yurik
Yurik added a comment.


  @Fnielsen i am not sure I understand what that query does, could you 
elaborate?  Especially I am confused why you look at the forms -- from the 
perspective of Wiktionary, you request a single Lexeme, not individual forms. 
(btw, the query times out for me).
  
  Also, I just realized that I shouldn't have grouped by the language, because 
in Wiktionary each page is per Lemma, regardless of which language contains it. 
So if Wiktionary wants to show data about all lexemes spelled a certain way, 
the query becomes https://w.wiki/8yY (the results are nearly identical -- words 
are still by far unique, at least with what we currently have in WD):
  
  | lexemes_per_word | words  |
  | 1| 173657 |
  | 2| 4670   |
  | 3| 351|
  | 4| 66 |
  | 5| 15 |
  | 6| 8  |
  | 7| 3  |
  | 8| 1  |

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

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

To: Yurik
Cc: TomT0m, Yurik, Vesihiisi, ArthurPSmith, Iniquity, Tobias1984, Theklan, 
Fnielsen, RexxS, Pamputt, Mike_Peel, MarcoSwart, Geertivp, Liuxinyu970226, 
Addshore, Jdforrester-WMF, deryckchan, Lydia_Pintscher, Lea_Lacroix_WMDE, 
darthmon_wmde, DannyS712, Nandana, Mringgaard, Lahi, Gq86, Cinemantique, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, jberkel, 
Psychoslave, Wikidata-bugs, aude, GPHemsley, Shizhao, Nemo_bis, Darkdadaah, 
Mbch331, Ltrlg, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T234056: Wikidata dump containing unparsable URI

2019-09-27 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  Aha!
  It seems the resulting link is the same without the second #KLINK? In this 
case I would just fix the data in Wikidata and be done with it.

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

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

To: Lydia_Pintscher
Cc: Lydia_Pintscher, DD063520, Aklapper, darthmon_wmde, DannyS712, 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] T204031: Deploy regular running of wikidata constraint checks using the job queue

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 471001 abandoned by Lucas Werkmeister (WMDE):
  wgWBQualityConstraintsCacheCheckConstraintsResults true on testwikidata
  
  Reason:
  no longer needed since Ie3f04197d6 (cache constraint checks by default – 
explicit wikidatawiki config was removed in I01b56209a3)
  
  https://gerrit.wikimedia.org/r/471001

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

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

To: gerritbot
Cc: Gehel, Stashbot, MisterSynergy, Lydia_Pintscher, gerritbot, Pchelolo, 
Addshore, Aklapper, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Dibya, alaa_wmde, holger.knust, Meekrab2012, 
joker88john, 94rain, DannyS712, CucyNoiD, Nandana, NebulousIris, Guilhermebm, 
Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, 
Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, Adik2382, Jayprakash12345, Th3d3v1ls, Ramalepe, Liugev6, 
QZanden, Zoranzoki21, merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, 
DatGuy, Devwaker, Niklitov, _jensen, Urbanecm, rosalieper, Agabi10, JEumerus, 
Jonas, Ananthsubray, Tulsi_Bhagat, Wong128hk, Luke081515, Eevans, SimmeD, 
mobrovac, Hardikj, Wikidata-bugs, Snowolf, aude, Dcljr, Jdforrester-WMF, 
Matanya, Mbch331, Rxy, Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T212843: [EPIC] Access to Wikidata's lexicographical data from Wiktionaries and other WMF sites

2019-09-27 Thread Fnielsen
Fnielsen added a comment.


  Here a variation on @Yurik's query with count on within-language forms: 
https://w.wiki/8y8 (current count is obfuscated by Tamil annotation). For 
instance, 'led' in Ordia shows 9 lexemes from 3 language: 
https://tools.wmflabs.org/ordia/representation/led
  
  | lexemes_per_representation | number_of_representations | 
example_representation |
  | 55 | 1 | பெயர்ச்சொல்
|
  | 47 | 1 | ஒருமை  
|
  | 44 | 1 | noun   
|
  | 33 | 1 | singular   
|
  | 8  | 10| сибирка
|
  | 7  | 26| led
|
  | 6  | 61| かえる
|
  | 5  | 191   | かえ 
|
  | 4  | 678   | lede   
|
  | 3  | 2885  | engagerat  
|
  | 2  | 30482 | bager  
|
  | 1  | 1572338 | كتبت 
  |

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

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

To: Fnielsen
Cc: TomT0m, Yurik, Vesihiisi, ArthurPSmith, Iniquity, Tobias1984, Theklan, 
Fnielsen, RexxS, Pamputt, Mike_Peel, MarcoSwart, Geertivp, Liuxinyu970226, 
Addshore, Jdforrester-WMF, deryckchan, Lydia_Pintscher, Lea_Lacroix_WMDE, 
darthmon_wmde, DannyS712, Nandana, Mringgaard, Lahi, Gq86, Cinemantique, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, jberkel, 
Psychoslave, Wikidata-bugs, aude, GPHemsley, Shizhao, Nemo_bis, Darkdadaah, 
Mbch331, Ltrlg, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T221251: gate-and-submit for several extensions failing: Uncaught TypeError: Cannot read property 'getData' of undefined

2019-09-27 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T221251: gate-and-submit for several extensions failing: Uncaught TypeError: Cannot read property 'getData' of undefined

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 504606 abandoned by Lucas Werkmeister (WMDE):
  Temporarily skip failing test
  
  Reason:
  no activity for half a year, seems save to abandon this now
  
  https://gerrit.wikimedia.org/r/504606

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

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

To: gerritbot
Cc: Jdforrester-WMF, WMDE-leszek, TerraCodes, Liuxinyu970226, 
Lucas_Werkmeister_WMDE, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Mringgaard, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Darkdadaah, 
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] T217239: Expose the graph of language fallbacks in an API

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 493723 abandoned by Lucas Werkmeister (WMDE):
  Add fallbacks to wbcontentlanguages
  
  Reason:
  T217239  was done differently
  
  https://gerrit.wikimedia.org/r/493723

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: gerritbot, Mvolz, Anomie, Lucas_Werkmeister_WMDE, Pintoch, Aklapper, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, 
WDoranWMF, Meekrab2012, joker88john, DannyS712, CucyNoiD, Nandana, 
NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Amorymeltzer, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, Sethakill, WSH1906, Lewizho99, Maathavan, dg711, _jensen, 
rosalieper, MuhammadShuaib, LNDDYL, Psychoslave, Wikidata-bugs, aude, jayvdb, 
Arrbee, KartikMistry, Mbch331, Jay8g, Legoktm
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T234056: Wikidata dump containing unparsable URI

2019-09-27 Thread DD063520
DD063520 added a comment.


  https://www.wikidata.org/wiki/Q571293
  
  this one 

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

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

To: DD063520
Cc: Lydia_Pintscher, DD063520, Aklapper, darthmon_wmde, DannyS712, 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] T234056: Wikidata dump containing unparsable URI

2019-09-27 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  Thanks!
  Do you know which Item 
http://www.univ-paris3.fr/adminsite/webservices/export_rss.jsp?NOMBRE=10_RUBRIQUE==0#KLINK#KLINK
 is used in?

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

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

To: Lydia_Pintscher
Cc: Lydia_Pintscher, DD063520, Aklapper, darthmon_wmde, DannyS712, 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] T234042: Document the current wikidata change dispatching infrastracture

2019-09-27 Thread Ladsgroup
Ladsgroup added a comment.


  
https://wikitech.wikimedia.org/wiki/WMDE/Wikidata/Dispatching#How_it_actually_works?

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

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

To: Ladsgroup
Cc: Aklapper, Joe, Ladsgroup, darthmon_wmde, alaa_wmde, DannyS712, 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] [Created] T234056: Wikidata dump containing unparsable URI

2019-09-27 Thread DD063520
DD063520 created this task.
DD063520 added a project: Wikidata.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  Hello,
  
  I was just trying to parse the latest wikidata dump using rdf4j. And I get a 
parsing error. Here the issue that I opened in rdf4j :
  
  https://github.com/eclipse/rdf4j/issues/1566#
  
  The rdf4j team claims it is a Wikidata issue. I'm not an expert with this. So 
if you think this is not a Wikidata issue but a rdf4j issue then I would prefer 
if you interact directly. This is more the feedback from a user perspective.
  
  Wikidata is great!
  D063520

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

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

To: DD063520
Cc: DD063520, Aklapper, darthmon_wmde, DannyS712, 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] Google's stake in Wikidata and Wikipedia

2019-09-27 Thread Gerard Meijssen
Hoi,
I totally reject the assertion was so bad. I have always had the opinion
that the main issue was an atrocious user interface. Add to this the people
that have Wikipedia notions about quality. They have and had a detrimental
effect on both the quantity and quality of Wikidata.

When you add the functionality that is being build by the datawranglers at
DBpedia, it becomes easy/easier to compare the data from Wikipedias with
Wikidata (and why not Freebase) add what has consensus and curate the
differences. This will enable a true datasense of quality and allows us to
provide a much improved service.
Thanks,
  GerardM

On Fri, 27 Sep 2019 at 15:54, Marco Fossati  wrote:

> Hey Sebastian,
>
> On 9/20/19 10:22 AM, Sebastian Hellmann wrote:
> > Not much of Freebase did end up in Wikidata.
>
> Dropping here some pointers to shed light on the migration of Freebase
> to Wikidata, since I was partially involved in the process:
> 1. WikiProject [1];
> 2. the paper behind [2];
> 3. datasets to be migrated [3].
>
> I can confirm that the migration has stalled: as of today, *528
> thousands* Freebase statements were curated by the community, out of *10
> million* ones. By 'curated', I mean approved or rejected.
> These numbers come from two queries against the primary sources tool
> database.
>
> The stall is due to several causes: in my opinion, the most important
> one was the bad quality of sources [4,5] coming from the Knowledge Vault
> project [6].
>
> Cheers,
>
> Marco
>
> [1] https://www.wikidata.org/wiki/Wikidata:WikiProject_Freebase
> [2]
>
> http://static.googleusercontent.com/media/research.google.com/en//pubs/archive/44818.pdf
> [3]
> https://www.wikidata.org/wiki/Wikidata:Primary_sources_tool/Version_1#Data
> [4]
>
> https://www.wikidata.org/wiki/Wikidata_talk:Primary_sources_tool/Archive/2017#Quality_of_sources
> [5]
>
> https://www.wikidata.org/wiki/Wikidata:Requests_for_comment/Semi-automatic_Addition_of_References_to_Wikidata_Statements#A_whitelist_for_sources
> [6] https://www.cs.ubc.ca/~murphyk/Papers/kv-kdd14.pdf
>
> ___
> 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] T212843: [EPIC] Access to Wikidata's lexicographical data from Wiktionaries and other WMF sites

2019-09-27 Thread Yurik
Yurik added a comment.


  P.S. @Fnielsen does bring a valid point about various linked lexemes , and 
that might be useful -- for example if lexeme lists another lexeme as being a 
synonym, it would be good to show it as a word rather than an L-number.
  
  That said, I do not believe we need it just yet -- it will take a while for 
the synonyms to be populated to the level of wiktionary, so for now lexemes 
will be needed just for the "infoboxes" -- e.g. list all forms and basic info, 
not the advanced features.
  
  At this point, I can easily replace the `{{noun ru|...}}` template (generates 
morphology summary and a forms table), but I won't be able to easily replace 
the synonyms section with the auto-generated content, and thus, linked lexemes 
are somewhat useless until they have much better coverage.

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

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

To: Yurik
Cc: TomT0m, Yurik, Vesihiisi, ArthurPSmith, Iniquity, Tobias1984, Theklan, 
Fnielsen, RexxS, Pamputt, Mike_Peel, MarcoSwart, Geertivp, Liuxinyu970226, 
Addshore, Jdforrester-WMF, deryckchan, Lydia_Pintscher, Lea_Lacroix_WMDE, 
darthmon_wmde, DannyS712, Nandana, Mringgaard, Lahi, Gq86, Cinemantique, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, jberkel, 
Psychoslave, Wikidata-bugs, aude, GPHemsley, Shizhao, Nemo_bis, Darkdadaah, 
Mbch331, Ltrlg, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T212843: [EPIC] Access to Wikidata's lexicographical data from Wiktionaries and other WMF sites

2019-09-27 Thread Yurik
Yurik added a comment.


  @Lydia_Pintscher most of the Wiktionary pages have just one corresponding 
lexeme - and that's all I would expect to load.
  
  Some statistics:  https://w.wiki/8xw  (note that this is per language, not 
just when lemmas match)
  
  | lexemes_per_word | words  |
  | 1| 173680 |
  | 2| 4659   |
  | 3| 351|
  | 4| 65 |
  | 5| 15 |
  | 6| 8  |
  | 7| 3  |
  | 8| 1  |
  |
  
  The tricky bit comes when a page has multiple associated lexemes -- yes, in 
theory there could be up to 8 (per query result), but I think this is a mistake 
to store so many lexemes per word -- most of them have identical forms, 
pronunciation, and top-level claims. They only differ in their meaning - and as 
such, we should put that meaning inside the senses.

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

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

To: Yurik
Cc: TomT0m, Yurik, Vesihiisi, ArthurPSmith, Iniquity, Tobias1984, Theklan, 
Fnielsen, RexxS, Pamputt, Mike_Peel, MarcoSwart, Geertivp, Liuxinyu970226, 
Addshore, Jdforrester-WMF, deryckchan, Lydia_Pintscher, Lea_Lacroix_WMDE, 
darthmon_wmde, DannyS712, Nandana, Mringgaard, Lahi, Gq86, Cinemantique, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, jberkel, 
Psychoslave, Wikidata-bugs, aude, GPHemsley, Shizhao, Nemo_bis, Darkdadaah, 
Mbch331, Ltrlg, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T233794: React to app's cancel event

2019-09-27 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Aklapper, Pablo-WMDE, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, Michael, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T233794: React to app's cancel event

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 539548 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/Wikibase@master] bridge: define cancel event and 
subscribe to it
  
  https://gerrit.wikimedia.org/r/539548

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Aklapper, Pablo-WMDE, darthmon_wmde, Michael, DannyS712, 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] T195702: track quality of all/top 10000 Wikidata items over time

2019-09-27 Thread abian
abian added a comment.


  Thank you both! :-)
  
  I have several concerns about how users may use and understand this 
indicator; I'll list the main ones in case you find them helpful, of course 
without any intention of hindering your work or preventing us from having 
metrics that help us better understand how useful the data could be. My main 
concerns have to do with the specification 
 and with its possibly 
unrealistic ambitions.
  
  - The specification is intentionally ambiguous ("most appropriate", 
"applicable", "some important", "significant and relevant", "solid", "high 
quality", "non-trivial"...) for AI to solve these ambiguities, and, since it 
was created as part of a project with AI, leaving AI aside was definitely not 
an option. Otherwise, it would have been possible to keep the natural 
ambiguities in the short descriptions (to let users understand them easily) 
while avoiding many ambiguities in the detailed wording. The fact that the 
specification is so ambiguous and must be disambiguated by AI makes the 
ambiguity-free specification a black box from the beginning, a model that is 
not explainable in terms of how ambiguities are solved by AI, hard to test and 
prone to training problems that can be difficult to detect and fix.
  - Some ambiguities directly won't be resolved at any time, since AI cannot be 
provided with all the data it would need. Some ambiguities will inevitably be 
ignored or wrongly considered (and it won't be easy to detect which ones). In 
these terms the specification is too ambitious, it makes AI "bite more than it 
can chew" while it does not consider other aspects important to measure 
completeness.
  - Gut feeling: I have the impression that the specification is complex enough 
to cause too much cognitive load  
on the users who make judgments to train the model. This means the judgments 
that train the model probably can't take into account all the required criteria 
at the same time.
  - The specification is not formally agreed or approved and still has the 
template `{{Draft}}`, added by the main author. If we started now to use the 
indicator derived from this specification to track the quality of Wikidata 
Items over time, we wouldn't be able to significantly improve any part of the 
specification and implementation stack, since every important change would 
prevent comparing historical data with current data.
  - If the resulting indicator, whose formula would not be explainable, were 
called "data quality" and published in a way that could be queried (T166427 
), users would indeed trust The 
Indicator as a synonym for "data quality". They would use it to sort and 
prioritize their work, perhaps ignoring the best rated Items (which would have 
relevant problems not considered by The Indicator, such as vandalism, outdated 
data, structural inconsistencies, constraint violations, etc.) and focusing on 
the worst-rated ones (even if they were really good in the criteria wrongly 
quantified, undervalued or not considered, and even if these Items had no 
impact on the project). People would probably use less of their personal 
reasoning and exploration criteria to start letting The Indicator guide their 
efforts as if it were an oracle. In my opinion, this could divert the efforts 
of some users down the wrong path and, given the deficiencies that this 
indicator would have, be more counterproductive than positive for the project.
  
  When the specification was being designed I kept in touch with its author and 
we talked about these problems in a more or less superficial way, but probably 
the constraints of the academic project didn't leave much room for action. Now 
we don't have those constraints anymore and, if we want to use the 
specification, I think we should improve it. I've checked some of the Items 
listed in the reports and I unfortunately think the resulting indicator is not 
better than Recoin  when it 
comes to measuring relative completeness and it's definitely below property 
constraints when it comes to measuring consistency. If the decision to start 
using this indicator without changes has already been made, I would suggest 
calling it "ORES completeness" or similar as a workaround to try to avoid some 
of the effects of possible misuse.
  
  I hope I'm not sounding like the troll that appears in my profile picture 
(it's actually an enemy from the first The Legend of Zelda) :-) and that these 
comments can help in some way.
  
  In T195702#5513571 , 
@GoranSMilovanovic wrote:
  
  > @abian In WikidataCon 2019 we will have a Data quality panel 
,
 as well as a Data quality meetup 

[Wikidata-bugs] [Maniphest] [Claimed] T224773: Add phan to WikibaseQualityConstraints extension

2019-09-27 Thread Umherirrender
Umherirrender claimed this task.
Umherirrender added a comment.


  .phan/config.php and the composer change are still needed.

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

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

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


[Wikidata-bugs] [Maniphest] [Claimed] T233794: React to app's cancel event

2019-09-27 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE claimed this task.
Lucas_Werkmeister_WMDE moved this task from To do to Doing on the 
Wikidata-Bridge-Sprint-6 board.

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

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

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Pablo-WMDE, darthmon_wmde, Michael, DannyS712, 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] Google's stake in Wikidata and Wikipedia

2019-09-27 Thread Sebastian Hellmann

Hi Marco,

I think, I looked at it some years ago and it still sounds like less 
than 5% made it, which is what I remember.


-- Sebastian

On 27.09.19 15:53, Marco Fossati wrote:

Hey Sebastian,

On 9/20/19 10:22 AM, Sebastian Hellmann wrote:

Not much of Freebase did end up in Wikidata.


Dropping here some pointers to shed light on the migration of Freebase 
to Wikidata, since I was partially involved in the process:

1. WikiProject [1];
2. the paper behind [2];
3. datasets to be migrated [3].

I can confirm that the migration has stalled: as of today, *528 
thousands* Freebase statements were curated by the community, out of 
*10 million* ones. By 'curated', I mean approved or rejected.
These numbers come from two queries against the primary sources tool 
database.


The stall is due to several causes: in my opinion, the most important 
one was the bad quality of sources [4,5] coming from the Knowledge 
Vault project [6].


Cheers,

Marco

[1] https://www.wikidata.org/wiki/Wikidata:WikiProject_Freebase
[2] 
http://static.googleusercontent.com/media/research.google.com/en//pubs/archive/44818.pdf
[3] 
https://www.wikidata.org/wiki/Wikidata:Primary_sources_tool/Version_1#Data
[4] 
https://www.wikidata.org/wiki/Wikidata_talk:Primary_sources_tool/Archive/2017#Quality_of_sources
[5] 
https://www.wikidata.org/wiki/Wikidata:Requests_for_comment/Semi-automatic_Addition_of_References_to_Wikidata_Statements#A_whitelist_for_sources

[6] https://www.cs.ubc.ca/~murphyk/Papers/kv-kdd14.pdf


--
All the best,
Sebastian Hellmann

Director of Knowledge Integration and Linked Data Technologies (KILT) 
Competence Center

at the Institute for Applied Informatics (InfAI) at Leipzig University
Executive Director of the DBpedia Association
Projects: http://dbpedia.org, http://nlp2rdf.org, 
http://linguistics.okfn.org, https://www.w3.org/community/ld4lt 


Homepage: http://aksw.org/SebastianHellmann
Research Group: http://aksw.org
___
Wikidata mailing list
Wikidata@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata


[Wikidata-bugs] [Maniphest] [Retitled] T233763: Error searching Lexeme:Danke on Wikidata: "Call to a member function setFragment() on null"

2019-09-27 Thread Aklapper
Aklapper renamed this task from "Searching Lexeme:Danke on Wikidata breaks it" 
to "Error searching Lexeme:Danke on Wikidata: "Call to a member function 
setFragment() on null"".
Aklapper updated the task description.

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

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

To: Aklapper
Cc: VIGNERON, ArthurPSmith, Lea_Lacroix_WMDE, Lydia_Pintscher, Aklapper, Denny, 
darthmon_wmde, DannyS712, Nandana, Mringgaard, Lahi, Gq86, GoranSMilovanovic, 
QZanden, EBjune, LawExplorer, _jensen, rosalieper, Wikidata-bugs, aude, 
Darkdadaah, Jdforrester-WMF, Mbch331, Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


Re: [Wikidata] Google's stake in Wikidata and Wikipedia

2019-09-27 Thread Marco Fossati

Hey Sebastian,

On 9/20/19 10:22 AM, Sebastian Hellmann wrote:

Not much of Freebase did end up in Wikidata.


Dropping here some pointers to shed light on the migration of Freebase 
to Wikidata, since I was partially involved in the process:

1. WikiProject [1];
2. the paper behind [2];
3. datasets to be migrated [3].

I can confirm that the migration has stalled: as of today, *528 
thousands* Freebase statements were curated by the community, out of *10 
million* ones. By 'curated', I mean approved or rejected.
These numbers come from two queries against the primary sources tool 
database.


The stall is due to several causes: in my opinion, the most important 
one was the bad quality of sources [4,5] coming from the Knowledge Vault 
project [6].


Cheers,

Marco

[1] https://www.wikidata.org/wiki/Wikidata:WikiProject_Freebase
[2] 
http://static.googleusercontent.com/media/research.google.com/en//pubs/archive/44818.pdf
[3] 
https://www.wikidata.org/wiki/Wikidata:Primary_sources_tool/Version_1#Data
[4] 
https://www.wikidata.org/wiki/Wikidata_talk:Primary_sources_tool/Archive/2017#Quality_of_sources
[5] 
https://www.wikidata.org/wiki/Wikidata:Requests_for_comment/Semi-automatic_Addition_of_References_to_Wikidata_Statements#A_whitelist_for_sources

[6] https://www.cs.ubc.ca/~murphyk/Papers/kv-kdd14.pdf

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


[Wikidata-bugs] [Maniphest] [Updated] T231887: investigation for ensuring editing with the same credentials

2019-09-27 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  > I think `assert='user'` vs `assertuser=mw.config.get('wgUserName')` is only 
relevant when considering federation (And if we are considering federation then 
that would open yet another can of worms.). My suggestion would be to go with 
`assert='user'` as this is the least strict assertion that still enforces our 
central requirement (no IP bleed).
  
  Hm, on the other hand the current description of T231725 
 specifically requires edits using 
the same account, not just that the IP doesn’t leak. But that’s also what we 
currently do, I think.
  
  So, remaining action item – handle assert failures better?

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

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

To: Michael, Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Matthias_Geisler_WMDE, Addshore, Aklapper, 
Lydia_Pintscher, darthmon_wmde, Michael, DannyS712, 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] T224773: Add phan to WikibaseQualityConstraints extension

2019-09-27 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Done? Or is anything else still needed?

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Aklapper, Umherirrender, darthmon_wmde, DannyS712, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, merbst, LawExplorer, _jensen, 
rosalieper, Agabi10, 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] T223068: Wikibase Query Service calls get flagged as tracker calls by some Firefox extensions

2019-09-27 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  T234041: wikibase-docker should build Query Service UI 
 would be a general solution to this 
problem, but we can also:
  
  - rename `UrlShortener.js` to anything not on EasyList (not a nice solution, 
but a very simple one); or
  - open an EasyList issue  
(ideally done by someone who’s affected by this issue in a production 
environment, which I think rules out WMF/WMDE) and hope they unblock 
`UrlShortener.js`.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lydia_Pintscher, Smalyshev, Lucas_Werkmeister_WMDE, Aklapper, pdehaye, 
darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
EBjune, merbst, LawExplorer, Salgo60, _jensen, rosalieper, 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] [Created] T234042: Document the current wikidata change dispatching infrastracture

2019-09-27 Thread Ladsgroup
Ladsgroup created this task.
Ladsgroup added projects: Wikidata-Campsite (Wikidata-Campsite-Iteration-∞), 
Wikidata.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: User-Ladsgroup.

TASK DESCRIPTION
  Currently it's hard to find documentation on how change dispatching works, 
cookbooks, etc. Let's fix that.

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

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

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

To: Ladsgroup
Cc: Aklapper, Joe, Ladsgroup, darthmon_wmde, alaa_wmde, DannyS712, 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] [Updated] T234041: wikibase-docker should build Query Service UI

2019-09-27 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a subtask: T191953: WDQS Container GUI constantly 
loads style.less.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T191953: WDQS Container GUI constantly loads style.less

2019-09-27 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a parent task: T234041: wikibase-docker should 
build Query Service UI.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Tarrow, Lucas_Werkmeister_WMDE, Addshore, Aklapper, Smalyshev, 
darthmon_wmde, Jelabra, DannyS712, 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] T223068: Wikibase Query Service calls get flagged as tracker calls by some Firefox extensions

2019-09-27 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a parent task: T234041: wikibase-docker should 
build Query Service UI.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T234041: wikibase-docker should build Query Service UI

2019-09-27 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a subtask: T223068: Wikibase Query Service calls 
get flagged as tracker calls by some Firefox extensions.

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

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

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


[Wikidata-bugs] [Maniphest] [Created] T234041: wikibase-docker should build Query Service UI

2019-09-27 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE created this task.
Lucas_Werkmeister_WMDE added projects: Wikibase-Containers, Wikidata Query UI.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  The Wikibase Docker image currently serves the query service GUI in 
“development mode”: each JavaScript file is loaded separately, and `style.less` 
is hot-reloaded (causing one network request per second). For production uses, 
it would be better if it went through the usual build process, just as we do 
for query.wikidata.org.

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

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

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


[Wikidata-bugs] [Maniphest] [Reopened] T223068: Wikibase Query Service calls get flagged as tracker calls by some Firefox extensions

2019-09-27 Thread Lydia_Pintscher
Lydia_Pintscher reopened this task as "Open".
Lydia_Pintscher added a comment.


  Reopening this as we've now had several people run into this issue. We can't 
leave this as is.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T189596: Run deleteAutopatrolLogs script for Wikidata (WMF)

2019-09-27 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T234005: Collapsed history issue on wikidata

2019-09-27 Thread Ammarpad
Ammarpad closed this task as "Invalid".
Ammarpad added a comment.


  This is also caused by the styling in local MediaWiki:Common.css 
, same as T234023 


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

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

To: Ammarpad
Cc: Ammarpad, Agusbou2015, Patriccck, Aklapper, DannyS712, 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] [Merged] T234005: Collapsed history issue on wikidata

2019-09-27 Thread Ammarpad
Ammarpad merged a task: T234035: Can not see word Expand.
Ammarpad added subscribers: Patriccck, Agusbou2015.

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

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

To: Ammarpad
Cc: Agusbou2015, Patriccck, Aklapper, DannyS712, 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] T234035: Can not see word "Expand"

2019-09-27 Thread Ammarpad
Ammarpad closed this task as a duplicate of T234005: Collapsed history issue on 
wikidata.

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

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

To: Ammarpad
Cc: Agusbou2015, Aklapper, Patriccck, darthmon_wmde, DannyS712, 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] [Retitled] T233520: page_props missing links for some Commons category <-> Wikidata sitelinks

2019-09-27 Thread Jheald
Jheald renamed this task from "page_props missing for some Commons categories" 
to "page_props missing links for some Commons category <-> Wikidata sitelinks".

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

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

To: Jheald
Cc: Lydia_Pintscher, Lucas_Werkmeister_WMDE, Jheald, Aklapper, Mike_Peel, 
darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, Poyekhali, _jensen, rosalieper, Taiwania_Justo, Jonas, Ixocactus, 
Wong128hk, Wikidata-bugs, aude, El_Grafo, Dinoguy1000, Steinsplitter, Mbch331, 
Keegan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T234035: Can not see word "Expand"

2019-09-27 Thread Patriccck
Patriccck created this task.
Patriccck added a project: Wikidata.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  1st) Open this page: 
https://www.wikidata.org/w/index.php?title=Q57301996=history
  2nd) I can not see word "Expand" (see file)
  
  F30483573: FireShot Capture 056 - Revision history of _Treehouse of Horror 
XXX_ (Q57301996) - Wikidata_ - www.wikidata.org.png 


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

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

To: Patriccck
Cc: Aklapper, Patriccck, darthmon_wmde, DannyS712, 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] [Edited] T233796: browser test canceling

2019-09-27 Thread Pablo-WMDE
Pablo-WMDE updated the task description.

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

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

To: Pablo-WMDE
Cc: Aklapper, Pablo-WMDE, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, Michael, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T233796: browser test canceling

2019-09-27 Thread Pablo-WMDE
Pablo-WMDE added a comment.


  A first browser test, for esc, is already there.

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

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

To: Pablo-WMDE
Cc: Aklapper, Pablo-WMDE, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, Michael, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T232297: Create puppet configs for SDC query

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 539513 had a related patch set uploaded (by Mathew.onipe; owner: 
Mathew.onipe):
  [operations/puppet@production] query_service: properly adapt query_service 
profile
  
  https://gerrit.wikimedia.org/r/539513

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

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

To: Mathew.onipe, gerritbot
Cc: Liuxinyu970226, Gehel, Mathew.onipe, Igorkim78, Aklapper, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, 
joker88john, Legado_Shulgin, DannyS712, CucyNoiD, Nandana, NebulousIris, 
JKSTNK, thifranc, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Davinaclare77, Adrian1985, Qtn1293, Cpaulf30, Techguru.pc, Lahi, PDrouin-WMF, 
Gq86, Af420, E1presidente, Ramsey-WMF, Cparle, Darkminds3113, Anooprao, 
SandraF_WMF, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Hfbn0, 
Ramalepe, Liugev6, QZanden, EBjune, Tramullas, Acer, LawExplorer, Salgo60, 
WSH1906, Lewizho99, Zppix, Maathavan, Silverfish, _jensen, rosalieper, Cirdan, 
Xmlizer, Susannaanas, Wong128hk, Jane023, Wikidata-bugs, Base, matthiasmullie, 
aude, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, faidon, 
Jdforrester-WMF, Steinsplitter, Mbch331, Jay8g, fgiunchedi
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T232595: Make it possible to collapse the "All entered languages" section when at the end of the section

2019-09-27 Thread alaa_wmde
alaa_wmde added a comment.


  @Hanna_Petruschat_WMDE " When the "All entered languages" section is 
collapsed the button used to expand becomes a collapsing button, labeled "Fewer 
languages" and styled like in mocks." not sure I get this correctly.
  
  Does it mean that the same button at the top "All entered languages" that is 
used to also changes to the same "^ Fewer Languages" like the one that will be 
added to the bottom to (resulting in both buttons being identical), when the 
All entered languages section is ~~collapsed~~ **expanded** ?

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

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

To: alaa_wmde
Cc: alaa_wmde, Aklapper, Lea_WMDE, Lydia_Pintscher, Pablo-WMDE, WMDE-leszek, 
Hanna_Petruschat_WMDE, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T232595: Make it possible to collapse the "All entered languages" section when at the end of the section

2019-09-27 Thread alaa_wmde
alaa_wmde added a comment.


  @Lydia_Pintscher  
https://www.figma.com/file/g86G4bYOcUoIPwEbN041nq/180607_Termbox-Mobile-Sprint?node-id=1741%3A2211
 contains the "^ Fewer Languages" in the mock up, so I'll rely on that unless 
@Hanna_Petruschat_WMDE says that's not it
  
  @Pablo-WMDE thanks for attaching the old patch, I'll try to take out of it 
anything that might be useful/convenient for this task

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

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

To: alaa_wmde
Cc: alaa_wmde, Aklapper, Lea_WMDE, Lydia_Pintscher, Pablo-WMDE, WMDE-leszek, 
Hanna_Petruschat_WMDE, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, DannyS712, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T233913: Finish merging modules into wikibase.lexeme.lexemeview

2019-09-27 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.34-notes (1.34.0-wmf.25; 2019-10-01).

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

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

To: Rosalie_WMDE, ReleaseTaggerBot
Cc: Rosalie_WMDE, Aklapper, Ladsgroup, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T225056: Run Item Terms Rebuild script

2019-09-27 Thread ArielGlenn
ArielGlenn added a comment.


  https://gerrit.wikimedia.org/r/#/c/operations/puppet/+/539498/ was merged in 
response and kicked in about 10 minutes ago, with good results on the graph.

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

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

To: Ladsgroup, ArielGlenn
Cc: jijiki, ArielGlenn, Marostegui, Ladsgroup, Aklapper, alaa_wmde, 
darthmon_wmde, DannyS712, 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] [Commented On] T225056: Run Item Terms Rebuild script

2019-09-27 Thread ArielGlenn
ArielGlenn added a comment.


  at around 6:50 UTC this morning we began seeing this:
  
icinga-wm: PROBLEM - MediaWiki eqiad exceptions and fatals per minute on 
icinga1001 is CRITICAL: cluster=logstash job=statsd_exporter level=ERROR 
site=eqiad https://wikitech.wikimedia.org/wiki/Application_servers 
https://grafana.wikimedia.org/d/00438/mediawiki-alerts?panelId=2=1=eqiad+prometheus/ops
  
  Probably the interaction between a script and a bot.  The candidates for fast 
editing bots at the time were KrBot, LargeDatasetBot, ԱշբոտՏՆՂ  At the time I 
looked, I saw about 35 edits a minute from KrBot, and about that many 
exceptions a minute. The bot has slowed down to about 10 edits a minute some 
time later and the number of fatals decreased as well: 
https://logstash.wikimedia.org/goto/8fa30aac1e6166f08bdfb0f906b2c14f

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

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

To: Ladsgroup, ArielGlenn
Cc: jijiki, ArielGlenn, Marostegui, Ladsgroup, Aklapper, alaa_wmde, 
darthmon_wmde, DannyS712, 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] [Updated] T233796: browser test canceling

2019-09-27 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: gerritbot
Cc: Aklapper, Pablo-WMDE, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, Michael, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T233796: browser test canceling

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 539370 had a related patch set uploaded (by Pablo Grass (WMDE); owner: 
Matthias Geisler):
  [mediawiki/extensions/Wikibase@master] bridge: add selenium test for esc event
  
  https://gerrit.wikimedia.org/r/539370

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

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

To: gerritbot
Cc: Aklapper, Pablo-WMDE, darthmon_wmde, Michael, DannyS712, 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] T233913: Finish merging modules into wikibase.lexeme.lexemeview

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 539337 **merged** by jenkins-bot:
  [mediawiki/extensions/WikibaseLexeme@master] Merge 
wikibase.lexeme.widgets.GlossWidget into jquery.wikibase.lexemeview
  
  https://gerrit.wikimedia.org/r/539337

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

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

To: Rosalie_WMDE, gerritbot
Cc: Rosalie_WMDE, Aklapper, Ladsgroup, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T233919: Drop wikibase.lexeme.widgets.InvalidLanguageIndicator

2019-09-27 Thread Rosalie_WMDE
Rosalie_WMDE removed a project: Patch-For-Review.

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

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

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


[Wikidata-bugs] [Maniphest] [Edited] T233913: Finish merging modules into wikibase.lexeme.lexemeview

2019-09-27 Thread Rosalie_WMDE
Rosalie_WMDE updated the task description.

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

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

To: Rosalie_WMDE
Cc: Rosalie_WMDE, Aklapper, Ladsgroup, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T233913: Finish merging modules into wikibase.lexeme.lexemeview

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 539501 had a related patch set uploaded (by Rosalie Perside (WMDE); 
owner: Rosalie Perside (WMDE)):
  [mediawiki/extensions/WikibaseLexeme@master] Merge 
jQuery.wikibase.grammaticalfeatureview into jquery.wikibase.lexemeview
  
  https://gerrit.wikimedia.org/r/539501

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

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

To: Rosalie_WMDE, gerritbot
Cc: Rosalie_WMDE, Aklapper, Ladsgroup, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T212843: [EPIC] Access to Wikidata's lexicographical data from Wiktionaries and other WMF sites

2019-09-27 Thread Fnielsen
Fnielsen added a comment.


  I count over 30 basic lexemes on https://en.wiktionary.org/wiki/for while 
there may be more when we start to count inflections and derived terms ...

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

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

To: Fnielsen
Cc: TomT0m, Yurik, Vesihiisi, ArthurPSmith, Iniquity, Tobias1984, Theklan, 
Fnielsen, RexxS, Pamputt, Mike_Peel, MarcoSwart, Geertivp, Liuxinyu970226, 
Addshore, Jdforrester-WMF, deryckchan, Lydia_Pintscher, Lea_Lacroix_WMDE, 
darthmon_wmde, DannyS712, Nandana, Mringgaard, Lahi, Gq86, Cinemantique, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, jberkel, 
Psychoslave, Wikidata-bugs, aude, GPHemsley, Shizhao, Nemo_bis, Darkdadaah, 
Mbch331, Ltrlg, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T233919: Drop wikibase.lexeme.widgets.InvalidLanguageIndicator

2019-09-27 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Rosalie_WMDE, gerritbot
Cc: Ladsgroup, Aklapper, Rosalie_WMDE, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, joker88john, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T233919: Drop wikibase.lexeme.widgets.InvalidLanguageIndicator

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 539501 had a related patch set uploaded (by Rosalie Perside (WMDE); 
owner: Rosalie Perside (WMDE)):
  [mediawiki/extensions/WikibaseLexeme@master] Merge 
jQuery.wikibase.grammaticalfeatureview into jquery.wikibase.lexemeview
  
  https://gerrit.wikimedia.org/r/539501

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

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

To: Rosalie_WMDE, gerritbot
Cc: Ladsgroup, Aklapper, Rosalie_WMDE, darthmon_wmde, DannyS712, 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] T221097: The most commonly used date format in the Czech Republic produces wrong date when used as a value in Wikidata

2019-09-27 Thread Mormegil
Mormegil added a project: I18n.

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

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

To: Mormegil
Cc: Mormegil, Blahma, Urbanecm, JAnD, Wesalius, Aklapper, Vojtech.dostal, 
darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, GoranSMilovanovic, 
Jayprakash12345, QZanden, LawExplorer, _jensen, rosalieper, Srdjan_m, 
MuhammadShuaib, LNDDYL, Psychoslave, Wikidata-bugs, aude, Gryllida, Shizhao, 
Arrbee, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T221097: The most commonly used date format in the Czech Republic produces wrong date when used as a value in Wikidata

2019-09-27 Thread Mormegil
Mormegil added a comment.


  In T221097#5118415 , 
@Urbanecm wrote:
  
  > Possible solutions:
  >
  > - decline this task
  
  Wat.
  
  > - (no geodata) a preference saying "my dates are always in DD. MM. 
  
  Right. Which we basically have 
; even though I would 
say you should not choose “my date format”, you should choose your language. 
Which you do, obviously. And it is completely obvious what date was meant by 
any Czech-speaking user who wrote “7. 1. 1967”.
  
  > - geodata and priority of formats based on source country.
  
  We don’t do i18n based on geolocation, I believe. And I see no reason why we 
should.
  
  (See also sortable tables with dates in them 
.)

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

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

To: Mormegil
Cc: Mormegil, Blahma, Urbanecm, JAnD, Wesalius, Aklapper, Vojtech.dostal, 
darthmon_wmde, DannyS712, 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] T212843: [EPIC] Access to Wikidata's lexicographical data from Wiktionaries and other WMF sites

2019-09-27 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  Thank you for all your input so far. That's really helpful.
  I have one more question: How many Lexemes would you expect to load on a 
single Wiktionary page on average? How many Lexemes would you need to load for 
it to be useful for you?

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

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

To: Lydia_Pintscher
Cc: TomT0m, Yurik, Vesihiisi, ArthurPSmith, Iniquity, Tobias1984, Theklan, 
Fnielsen, RexxS, Pamputt, Mike_Peel, MarcoSwart, Geertivp, Liuxinyu970226, 
Addshore, Jdforrester-WMF, deryckchan, Lydia_Pintscher, Lea_Lacroix_WMDE, 
darthmon_wmde, DannyS712, Nandana, Mringgaard, Lahi, Gq86, Cinemantique, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, jberkel, 
Psychoslave, Wikidata-bugs, aude, GPHemsley, Shizhao, Nemo_bis, Darkdadaah, 
Mbch331, Ltrlg, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T224010: Implement Fallback version

2019-09-27 Thread ReleaseTaggerBot
ReleaseTaggerBot edited projects, added MW-1.34-notes (1.34.0-wmf.25; 
2019-10-01); removed MW-1.34-notes (1.34.0-wmf.23; 2019-09-17).

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

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

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

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 535906 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Move new translations to correct file 
and keys
  
  https://gerrit.wikimedia.org/r/535906

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

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

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


[Wikidata-bugs] [Maniphest] [Changed Project Column] T232595: Make it possible to collapse the "All entered languages" section when at the end of the section

2019-09-27 Thread alaa_wmde
alaa_wmde moved this task from Ready to pick up to 
Wikidata-Campsite-Iteration-∞ on the Wikidata-Campsite board.
alaa_wmde edited projects, added Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞); removed Wikidata-Campsite.

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

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

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

To: alaa_wmde
Cc: Aklapper, Lea_WMDE, Lydia_Pintscher, Pablo-WMDE, WMDE-leszek, 
Hanna_Petruschat_WMDE, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, DannyS712, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 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] T223452: Restyle "more languages" & "all languages" sections

2019-09-27 Thread gerritbot
gerritbot added a comment.


  Change 539493 had a related patch set uploaded (by Alaa Sarhan; owner: Alaa 
Sarhan):
  [wikibase/termbox@master] Restyle 'In more languages' and 'All entered 
languages' sections
  
  https://gerrit.wikimedia.org/r/539493

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

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

To: alaa_wmde, gerritbot
Cc: Aklapper, Hanna_Petruschat_WMDE, Pablo-WMDE, darthmon_wmde, alaa_wmde, 
DannyS712, 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] [Updated] T223452: Restyle "more languages" & "all languages" sections

2019-09-27 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

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


  1   2   >