[Wikidata-bugs] [Maniphest] T267927: Reload wikidata journal from fresh dumps

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


  Change 675003 had a related patch set uploaded (by Ryan Kemper; author: Ryan 
Kemper):
  [operations/cookbooks@master] wdqs: only disable puppet during blazegraph 
rstrt
  
  https://gerrit.wikimedia.org/r/675003

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

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

To: RKemper, gerritbot
Cc: jbond, Zbyszko, Gehel, Aklapper, dcausse, Invadibot, MPhamWMF, maantietaja, 
Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, Hook696, Kent7301, 
joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, 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] T275251: Rest Search API is not wikidata aware (only accepts queries beginning with Q)

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


  > My concern is from the perspective of the core API: it has a specific 
contract, and it should not be used for things that do not match that contract. 
The contract is: "Searches wiki page titles, and returns pages with titles that 
begin with the provided search terms."
  
  I understand and I'm saying that this could be implemented using an 
abstracted PHP interface which provides a contract for the format in the 
response, without having any knowledge of the implementation.
  
  > The problem is that Wikibase can't really use the same spec
  
  When I mean spec, I'm referring to the output API.
  
  For example, 
https://en.wikipedia.org/w/rest.php/v1/search/title?q=Spongebob%20Squarepants%20=10
 responds with :
  
{
  "pages": [
{
  "id": 2655089,
  "key": "SpongeBob_SquarePants",
  "title": "SpongeBob SquarePants",
  "excerpt": "SpongeBob SquarePants",
  "description": "American animated television series",
  "thumbnail": {
"mimetype": "image/svg+xml",
"size": 25839,
"width": 200,
"height": 107,
"duration": null,
"url": 
"//upload.wikimedia.org/wikipedia/en/thumb/2/22/SpongeBob_SquarePants_logo_by_Nickelodeon.svg/200px-SpongeBob_SquarePants_logo_by_Nickelodeon.svg.png"
  }
}
..
  ]
}
  
  If an API was created that returned data in the same format, the search UI 
would mostly function.
  
{
  "pages": [
{
  "key": "Q935079",
  "title": "SpongeBob SquarePants (Q935079)",
  "excerpt": "main character of the animated television show SpongeBob 
SquarePants",
  "description": null,
  "thumbnail": {
"mimetype": "image/svg+xml",
"size": 25839,
"width": 200,
"height": 107,
"duration": null,
"url": 
"//upload.wikimedia.org/wikipedia/en/thumb/2/22/SpongeBob_SquarePants_logo_by_Nickelodeon.svg/200px-SpongeBob_SquarePants_logo_by_Nickelodeon.svg.png"
  }
  ]
}

The implementation can be completely different, living in Wikidata if 
necessary. Right now, we allow configuration on the host level, but if this is 
the direction we want to take, we can make the path configurable our side to to 
support this.

I honestly don't see any other way to get this to work, without disabling 
the JavaScript search experience altogether and relying on a gadget.

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

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

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


[Wikidata-bugs] [Maniphest] T275251: Rest Search API is not wikidata aware (only accepts queries beginning with Q)

2021-03-25 Thread daniel
daniel added a comment.


  In T275251#6945709 , 
@Jdlrobson wrote:
  
  > Please no more UI components.. that would be a maintenance disaster as 
Wikidata would need to do this for every skin (we plan to use this same Vue 
component inside the Minerva skin).
  
  I don't have super strong feelings about that, I just remember that Wikibase 
search shows a lot more info than what the "normal" search popup shows. The  
data fields are not the same (label, matched alias, description, matches in 
different languages potentially using different directionality), and it seems 
like additional structuring will be needed to accommodate Lexemes etc.
  
  If I recall correctly, the main problem was that the custom search box was 
hacked into the skin in a horrible way. Perhaps that could be improved.
  
  > The API used by the existing UI component is configurable so theoretically, 
Wikidata could have its own API which returns data using the same spec with the 
right level of abstraction. I think this might be a better approach then 
rebuilding the UI and all the complexity that would go with it.
  
  The problem is that Wikibase can't really use the same spec. It needs quite a 
bit of extra info from the search backend in order to do what it does. At 
least, that's what I recall from shoehorning this in many years ago.

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

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

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


[Wikidata-bugs] [Maniphest] T278047: [REQUEST] for data on manual edits made to Wikidata using the Wikibase Vue UI from desktop/mobile

2021-03-25 Thread kzimmerman
kzimmerman added a project: Vue.js.
kzimmerman moved this task from Triage to Tracking on the Product-Analytics 
board.
kzimmerman removed kzimmerman as the assignee of this task.
kzimmerman added a comment.


  @So9q it sounds like you're asking for new data or tracking that doesn't 
currently exist, and it's to understand the impact of VUE on the user 
experience. Is that right?
  
  My team primarily works with other teams in Product and the Foundation, and 
any tracking work we do is through projects being managed by Product Managers 
that we support. I'm tagging Vue.js because I think that is the correct team 
for this request (please redirect if I'm mistaken).

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

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

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

To: kzimmerman
Cc: kzimmerman, Salgo60, So9q, Invadibot, maantietaja, Akuckartz, Demian, 
darthmon_wmde, egardner, holger.knust, DannyS712, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Volker_E, Niedzielski, Wikidata-bugs, Mooeypoo, Base, Jdlrobson, aude, 
Nikerabbit, Jdforrester-WMF, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


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

2021-03-25 Thread Dhairya3124
Dhairya3124 added a comment.


  Hey @DD063520 I read the research of all the mentors and I really found this 
project really interesting and the algorithms used for completion of KBs is 
really interesting.  I'll definitely apply for this project for wikimedia for 
this summer .  :)

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

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

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


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

2021-03-25 Thread Inductiveload
Inductiveload added a comment.


  Several tests in ProofreadPage also fail in the same way if 
`$wgUseInstantCommons = true;`

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

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

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


[Wikidata-bugs] [Maniphest] T275251: Rest Search API is not wikidata aware (only accepts queries beginning with Q)

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


  > In my mind, it should be a different UI component, backed by a dedicated 
API. The way we hacked this into the skin in the past was rather nasty, perhaps 
a better mechanism can be found.
  
  Please no more UI components.. that would be a maintenance disaster as 
Wikidata would need to do this for every skin. The API used by the existing UI 
component is configurable so theoretically Wikidata could have its own API 
which returns data using the same spec with the right level of abstraction. I 
think this might be a better approach then rebuilding the UI and all the 
complexity that would go with it.

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

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

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


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

2021-03-25 Thread DD063520
DD063520 added a comment.


  Sorry guys, we are slightly lost with the Wikimedia workflow. It is also for 
us the first time ; ) We will try to organise a bit better and come back to 
you. Anyway, we are happy if you apply for this project and we would love to 
work with some of you on this cool project!

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

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

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


[Wikidata-bugs] [Maniphest] T138708: [Epic] Signed statements

2021-03-25 Thread Ogoorcs
Ogoorcs added a comment.


  related, since I think could be easier for us to interact with GPG than in 
the browser:
  https://gitlab.gnome.org/World/Daty/-/issues/35

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

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

To: Ogoorcs
Cc: Ogoorcs, Tagishsimon, Bugreporter, ElanHR, Addshore, Lokal_Profil, Ayack, 
jeblad, CalebMoses, Fliptrail, Cirdan, Salgo60, AndrewSu, Mineo, Hjfocs, 
Scott_WorldUnivAndSch, Jan_Dittrich, RazShuty, Joshi-Jay-31, Jonas, rosalieper, 
EddyAfful, BamLifa, MichaelSchoenitzer, psinghal20, Nikhil-nk, Liuxinyu970226, 
BVershbow_WMF, PDrouin-WMF, Astinson, Ramsey-WMF, Quoth, Daniel_Mietchen, Tpt, 
Glorian_Yapinus, iecetcwcpggwqpgciazwvzpfjpwomjxn, Jane023, DarTar, Abbe98, 
I9606, YULdigitalpreservation, Tallerone, abian, Scott_WUaS, johl, jayvdb, 
tfmorris, Spinster, TomT0m, Denny, Eloquence, JanZerebecki, T.seppelt, 
Aklapper, daniel, Zppix, Lydia_Pintscher, Invadibot, maantietaja, NavinRizwi, 
Akuckartz, Dinadineke, DannyS712, Nandana, tabish.shaikh91, Lahi, Gq86, 
GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, QZanden, 
merbst, LawExplorer, _jensen, Wikidata-bugs, aude, Dinoguy1000, TheDJ, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


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

2021-03-25 Thread Dhairya3124
Dhairya3124 added a comment.


  And one more doubt is there any zulip chat channel for this project where I 
can discuss about some doubts related to the project.

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

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

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


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

2021-03-25 Thread Dhairya3124
Dhairya3124 added a comment.


  Hey Everyone!
  I hope everyone is healthy I have a query that for the batch web service we 
have to program it for all the accounts or just one?

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

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

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


[Wikidata-bugs] [Maniphest] T276225: [Documentation] How to query Lexemes in WDQS

2021-03-25 Thread VIGNERON
VIGNERON added a comment.


  See also Wikidata:SPARQL_query_service/queries/examples/fr#Requête_de_lexème 
.

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

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

To: VIGNERON
Cc: VIGNERON, danshick-wmde, Lea_Lacroix_WMDE, Invadibot, maantietaja, 
Akuckartz, apaskulin, Nandana, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, 
Ivana_Isadora, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, 
Bodhisattwa, Scott_WUaS, Nikki, Wikidata-bugs, aude, Dinoguy1000, 
Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T138708: [Epic] Signed statements

2021-03-25 Thread Tagishsimon
Tagishsimon added a comment.


  I hope 'push[ing] it up the priority list' is not the case. The RfC would 
need to attract consensus, or even interest, first. What appear to be OWNer-ish 
facets of signed statements seem antithetical to WD's openness, at least, to me.

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

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

To: Tagishsimon
Cc: Tagishsimon, Bugreporter, ElanHR, Addshore, Lokal_Profil, Ayack, jeblad, 
CalebMoses, Fliptrail, Cirdan, Salgo60, AndrewSu, Mineo, Hjfocs, 
Scott_WorldUnivAndSch, Jan_Dittrich, RazShuty, Joshi-Jay-31, Jonas, rosalieper, 
EddyAfful, BamLifa, MichaelSchoenitzer, psinghal20, Nikhil-nk, Liuxinyu970226, 
BVershbow_WMF, PDrouin-WMF, Astinson, Ramsey-WMF, Quoth, Daniel_Mietchen, Tpt, 
Glorian_Yapinus, iecetcwcpggwqpgciazwvzpfjpwomjxn, Jane023, DarTar, Abbe98, 
I9606, YULdigitalpreservation, Tallerone, abian, Scott_WUaS, johl, jayvdb, 
tfmorris, Spinster, TomT0m, Denny, Eloquence, JanZerebecki, T.seppelt, 
Aklapper, daniel, Zppix, Lydia_Pintscher, Invadibot, maantietaja, NavinRizwi, 
Akuckartz, Dinadineke, DannyS712, Nandana, tabish.shaikh91, Lahi, Gq86, 
GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, QZanden, 
merbst, LawExplorer, _jensen, Wikidata-bugs, aude, Dinoguy1000, TheDJ, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T225701: Add EntitySchemas to the Query Service

2021-03-25 Thread John_Cummings
John_Cummings added a comment.


  We have now finished the work on creating a space for community discussion of 
schemas.
  
  https://www.wikidata.org/wiki/Wikidata:Schemas
  
  https://www.wikidata.org/wiki/Wikidata:Schema_proposals
  
  Having EntitySchemas in queries and as part of statements will allow us to 
make use of them much more in Wikidata. E.g we'd really love to have a property 
called something like 'Community agreed schema' for a topic to allow people to 
more easily understand and use schemas.

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

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

To: John_Cummings
Cc: Jelabra, So9q, Salgo60, SCIdude, NavinoEvans, John_Cummings, TomT0m, Tpt, 
Jheald, Esc3300, Aklapper, Lydia_Pintscher, Lea_Lacroix_WMDE, Invadibot, 
maantietaja, Akuckartz, pdehaye, Nandana, Lahi, Gq86, Andrawaag, 
GoranSMilovanovic, QZanden, YULdigitalpreservation, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, MisterSynergy, abian, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T278427: Convert Deutsche Bahn station code (P8671) from String to External Identifier

2021-03-25 Thread MSGJ
MSGJ created this task.
MSGJ added a project: Wikidata.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  I created P8671 as a string, but have since found out it should be an 
external identifier.
  
  Please see 
https://www.wikidata.org/wiki/Wikidata:Project_chat#Change_property_type for 
discussion/confirmation.
  
  Thank you.

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

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

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


[Wikidata-bugs] [Maniphest] T259105: Qurator: Data about Current Events

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

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

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

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


[Wikidata-bugs] [Maniphest] T259105: Qurator: Data about Current Events

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


  Change 674853 **merged** by GoranSMilovanovic:
  [analytics/wmde/WD/WikidataAnalytics@master] T259105 

  
  https://gerrit.wikimedia.org/r/674853

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

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

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


[Wikidata-bugs] [Maniphest] T259105: Qurator: Data about Current Events

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

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

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

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


[Wikidata-bugs] [Maniphest] T259105: Qurator: Data about Current Events

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


  Change 674853 had a related patch set uploaded (by GoranSMilovanovic; author: 
GoranSMilovanovic):
  [analytics/wmde/WD/WikidataAnalytics@master] T259105 

  
  https://gerrit.wikimedia.org/r/674853

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

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

To: GoranSMilovanovic, gerritbot
Cc: So9q, Maria_WMDE, WMDE-leszek, Tobi_WMDE_SW, Lydia_Pintscher, 
GoranSMilovanovic, Aklapper, Invadibot, maantietaja, Akuckartz, Nandana, Lahi, 
Gq86, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, 
aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T259105: Qurator: Data about Current Events

2021-03-25 Thread GoranSMilovanovic
GoranSMilovanovic added a comment.


  @Lydia_Pintscher Fixed: see dashboard 
.

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

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

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


[Wikidata-bugs] [Maniphest] T278380: Greyed out publish button after silent date validation error

2021-03-25 Thread So9q
So9q renamed this task from "Greyed out publish button after silent validation 
error" to "Greyed out publish button after silent date validation error".

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

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

To: So9q
Cc: Moebeus, Nikki, Mohammed_Sadat_WMDE, Lydia_Pintscher, Salgo60, So9q, 
Aklapper, Invadibot, maantietaja, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T278380: Greyed out publish button after silent validation error

2021-03-25 Thread So9q
So9q added a subscriber: Moebeus.
So9q added a comment.


  From @Moebeus in the Wikidata chat I learned that if I change the interface 
language then the data parser is also changed so that it can parse swedish 
dates like  in the screenshot above.
  I have been editing for years in WD without knowing that fact. 
  Is this a hidden feature? 
  Could you add an introduction to the UI so that new users learn how it is 
designed and supposed to be used?

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

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

To: So9q
Cc: Moebeus, Nikki, Mohammed_Sadat_WMDE, Lydia_Pintscher, Salgo60, So9q, 
Aklapper, Invadibot, maantietaja, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T275316: Start with a SPARQL query instead of a list of Item IDs

2021-03-25 Thread Botoxparty
Botoxparty added a subscriber: Lucas_Werkmeister_WMDE.
Botoxparty added a comment.


  Currently pending some code changes to the `wikidata-query-gui` repository to 
get this ticket over the line.
  
  https://gerrit.wikimedia.org/r/c/wikidata/query/gui/+/674804
  https://gerrit.wikimedia.org/r/c/wikidata/query/gui/+/674805
  
  Assigned @Lucas_Werkmeister_WMDE for review.

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

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

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


[Wikidata-bugs] [Maniphest] T275251: Rest Search API is not wikidata aware (only accepts queries beginning with Q)

2021-03-25 Thread daniel
daniel added a comment.


  I'm unconvinced that hooking into SearchHandler is the Right Thing. The 
endpoint is `/v1/search/title`, making that do anything but title 
auto-completion would be confusing, it would break the contract. I'd also argue 
that we will still want title auto-completion for some namespaces.
  
  The desired behavior for the search box in Wikidata differs significantly 
from the expected behavior for vanilla MediaWiki. The behavior could even 
depend on the namespace the user is currently in, or offer results from 
different namespaces in sections or side by side. In my mind, it should be a 
different UI component, backed by a dedicated API. The way we hacked this into 
the skin in the past was rather nasty, perhaps a better mechanism can be found.
  
  Alternatively, Wikibase can hook into search index generation to change what 
the "page title" is for items. But the multi-lingual nature of Wikibase labels 
makes that hard.

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

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

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


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

2021-03-25 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] T278415: Get the editcount of users for the Lexeme namespace

2021-03-25 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE created this task.
Lea_Lacroix_WMDE added projects: Wikidata-Lexicodays-2021, Wikidata, Wikidata 
Lexicographical data.

TASK DESCRIPTION
  In order to generate a list of who are the top editors in the Lexeme 
namespace, we need to get the number of edits that have been made by an editor 
in the Lexeme namespace.
  
  This can probably be retrieved by a Quarry query.

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

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

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


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

2021-03-25 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] T278414: Get the number of edits on Lexemes per language

2021-03-25 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE created this task.
Lea_Lacroix_WMDE added projects: Wikidata-Lexicodays-2021, Wikidata, Wikidata 
Lexicographical data.

TASK DESCRIPTION
  We would like to see the total amount of edits that have been made in the 
Lexeme namespace, split by language of the Lexeme.
  
  This information can probably be retrieved with a Quarry query.

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

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

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


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

2021-03-25 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE updated the task description.

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

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

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


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

2021-03-25 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE added a subtask: T275999: track editor numbers split by 
namespace.

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

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

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


[Wikidata-bugs] [Maniphest] T275999: track editor numbers split by namespace

2021-03-25 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE added a parent task: T276918: Get statistics about the Lexemes 
editors.

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

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

To: Silvan_WMDE, Lea_Lacroix_WMDE
Cc: Daniel_Mietchen, Addshore, amy_rc, Lucas_Werkmeister_WMDE, Aklapper, 
Lydia_Pintscher, Invadibot, maantietaja, Akuckartz, Iflorez, alaa_wmde, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, 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] T278385: Streaming Updater must make all requests to proxy endpoints

2021-03-25 Thread dcausse
dcausse updated the task description.

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

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

To: dcausse
Cc: JMeybohm, jijiki, Aklapper, Gehel, akosiaris, Mstyles, Invadibot, MPhamWMF, 
maantietaja, CBogen, Akuckartz, Nandana, Namenlos314, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T179681: Add HDT dump of Wikidata

2021-03-25 Thread jjkoehorst
jjkoehorst added a comment.


  Small update from my side. After downloading the latest ttl file from 
Wikidata I receive no errors but also no output. I tried the exact command with 
a small dataset and that worked.
  
time sudo docker run -v `pwd`:/wikidata rdfhdt/hdt-cpp:v1.3.3 rdf2hdt -f 
turtle -p -i wikidata/latest-all.ttl.gz wikidata/latest-all.hdt

sudo docker run -v `pwd`:/wikidata rdfhdt/hdt-cpp:v1.3.3 rdf2hdt -f turtle 
-p  19.75s user 13.90s system 0% cpu 50:21:55.81 total
  
  So I am not exactly sure what is happening. This is the temp first 103 lines 
of the turtle file.
  
time sudo docker run -v `pwd`:/wikidata rdfhdt/hdt-cpp:v1.3.3 rdf2hdt -f 
turtle -p -i wikidata/tmp.ttl.gz wikidata/tmp.hdt   
Predicate Bitmap in 21 usp: 0 % / 5.4 % 
   
Count predicates in 17 userences: 0 % / 6.75 %  
Count Objects in 8 us Max was: 8: 0 % / 27 %  
Bitmap in 9 usx bitmap: 0 % / 39.6 %  
Bitmap bits: 56 Ones: 38
Object references in 23 usces: 0 % / 42.75 %  
Sort lists in 17 uslists: 0 % / 64.8 %  
Index generated in 119 us
sudo docker run -v `pwd`:/wikidata rdfhdt/hdt-cpp:v1.3.3 rdf2hdt -f turtle 
-p  0.04s user 0.03s system 1% cpu 4.868 total
  
  and then I can access the turtle file on the local drive.

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

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

To: jjkoehorst
Cc: jjkoehorst, MPhamWMF, Daniel_Mietchen, hoo, Addshore, Smalyshev, Ladsgroup, 
Arkanosis, Tarrow, Lucas_Werkmeister_WMDE, Aklapper, Invadibot, maantietaja, 
Akuckartz, Dinadineke, DannyS712, Nandana, tabish.shaikh91, Lahi, Gq86, 
GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, QZanden, 
merbst, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
TheDJ, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs