[Wikidata-bugs] [Maniphest] [Commented On] T202785: Federation request to https://ld.stadt-zuerich.ch/query fails

2018-08-28 Thread Smalyshev
Smalyshev added a comment.
ProxiedHttpConnectionFactory is the one used for federated connections (it doesn't do much except invoking DefaultHttpClientFactory() and assigning proxy, the other one is used for the Updater and is irrelevant for current case.

I do not see where there's a place for specifying protocol version. I think it's part of ALPN which is a separate extension and not very well supported in Java 8.

I would expect in the absence of such support the server would default to HTTP/1.1, as HTTP/2 client surely can negotiate the connection correctly, but HTTP/1.1 can't.

According to the parent POM, the Query-Service runs with Java 8, right?

Yes, it runs on Java 8.TASK DETAILhttps://phabricator.wikimedia.org/T202785EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SmalyshevCc: Mchlrch, Gehel, Aklapper, Smalyshev, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, 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] T203051: Add a [citation needed] button for unsourced statements in Wikidata

2018-08-28 Thread Bugreporter
Bugreporter closed this task as a duplicate of T139583: [Story] "citation needed" for Wikidata.
TASK DETAILhttps://phabricator.wikimedia.org/T203051EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: BugreporterCc: Daniel_Mietchen, DarTar, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 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] T139583: [Story] "citation needed" for Wikidata

2018-08-28 Thread Bugreporter
Bugreporter added subscribers: DarTar, Daniel_Mietchen.Bugreporter merged a task: T203051: Add a [citation needed] button for unsourced statements in Wikidata.
TASK DETAILhttps://phabricator.wikimedia.org/T139583EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: BugreporterCc: Daniel_Mietchen, DarTar, Sjoerddebruin, JEumerus, Slowking4, Izno, Thryduulf, T.seppelt, Jan_Dittrich, daniel, Pigsonthewing, Lydia_Pintscher, Mbch331, Aklapper, Zppix, ChristianKl, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T203051: Add a [citation needed] button for unsourced statements in Wikidata

2018-08-28 Thread Daniel_Mietchen
Daniel_Mietchen added a comment.
Ideally, clicking that button would translate into something SPARQLable attached to that statement, e.g. a reference of the kind "within focus list" (P5008) "WikiProject Citation needed". See also citation needed constraint (Q54554025), which works on basically any statement involving a property, rather than a specific statement.TASK DETAILhttps://phabricator.wikimedia.org/T203051EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Daniel_MietchenCc: Daniel_Mietchen, DarTar, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T203051: Add a [citation needed] button for unsourced statements in Wikidata

2018-08-28 Thread DarTar
DarTar created this task.DarTar added a project: Wikidata.Restricted Application added a subscriber: Aklapper.
TASK DESCRIPTIONAs proposed here, Wikidata should have a [citation needed] button allowing users to request a reference for unsourced statements, so we can study and prioritize where citations are most needed.

I imagine this could work like a one-click "flag/star" button in the UI (with a counter) next to each statement.TASK DETAILhttps://phabricator.wikimedia.org/T203051WORKBOARDhttps://phabricator.wikimedia.org/project/board/71/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: DarTarCc: DarTar, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 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] T202785: Federation request to https://ld.stadt-zuerich.ch/query fails

2018-08-28 Thread Mchlrch
Mchlrch added a comment.
I understand your concerns that bringing in ALPN would most likely cause problems, if it even would be possible at all. I suggest to explore if we can find a resolution without bringing in new dependencies.

I suggest the following procedure:


isolate the code that creates the HttpClient in order to make the issue reproducible outside the Query-Service codebase, in order to confirm that we are really searching in the right spot
explore if the setup of the HttpClient could be modified in order to make the request work
in case of success, apply the necessary changes to the Query-Service codebase


I could help with step 1) and 2).

I cloned WDQR [1] and had a look at the source, but I'm not even sure, that this is the right repository to look at. If it is, then it looks like the HttpClient is created in either of the following two places:


module blazegraph: org.wikidata.query.rdf.blazegraph.ProxiedHttpConnectionFactory, line 40
module tools: org.wikidata.query.rdf.tool.HttpClientUtils, line 77


Do you know which of the two places is the right one to investigate? Or could you give me a pointer to the right source, in case I'm searching in the wrong spot.

According to the parent POM, the Query-Service runs with Java 8, right?TASK DETAILhttps://phabricator.wikimedia.org/T202785EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Smalyshev, MchlrchCc: Mchlrch, Gehel, Aklapper, Smalyshev, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T200558: Write a formal description of pending WDQS tasks suitable for contractor/hire

2018-08-28 Thread Smalyshev
Smalyshev added a comment.
The document with tasks is at https://docs.google.com/spreadsheets/d/12VEsxBZxJVqT95kMaRB05G58fdoiX25gCZlOtwzD-_8/edit#gid=0TASK DETAILhttps://phabricator.wikimedia.org/T200558EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SmalyshevCc: EBjune, Aklapper, Smalyshev, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, merbst, LawExplorer, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T201216: Categories daily diff dump has repetitions

2018-08-28 Thread Smalyshev
Smalyshev closed this task as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T201216EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SmalyshevCc: gerritbot, Aklapper, Smalyshev, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T202764: Wikidata produces a lot of failed requests for recentchanges API

2018-08-28 Thread Smalyshev
Smalyshev added a comment.
UsageAspectTransformer seems to be part of Wikibase client, so it shouldn't be involved in recentchanges API on wikidata.org.TASK DETAILhttps://phabricator.wikimedia.org/T202764EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SmalyshevCc: Addshore, Yurik, jcrespo, Imarlier, Ladsgroup, Lydia_Pintscher, WMDE-leszek, Aklapper, Gehel, Smalyshev, AndyTan, Davinaclare77, Qtn1293, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Th3d3v1ls, Hfbn0, QZanden, EBjune, merbst, LawExplorer, Vali.matei, Zppix, Jonas, Xmlizer, Wong128hk, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, faidon, 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] T202785: Federation request to https://ld.stadt-zuerich.ch/query fails

2018-08-28 Thread Smalyshev
Smalyshev added a comment.
The problem is that asking explicitly seems to be what ALPN is doing, and I am not sure Jetty version we're using supports that. Additionally, ALPN jar versions appear to be linked specifically to single JVM version, which means the binary would run only on single JVM - that's not a very good idea. If there's any other way of asking the server to keep HTTP/1.1 in Jetty, I'm open to suggestions.TASK DETAILhttps://phabricator.wikimedia.org/T202785EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SmalyshevCc: Mchlrch, Gehel, Aklapper, Smalyshev, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T163642: Index Wikidata strings in statements for fulltext search

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 456026 had a related patch set uploaded (by Smalyshev; owner: Smalyshev):
[mediawiki/extensions/Wikibase@master] Add capability to search for statement values directly

https://gerrit.wikimedia.org/r/456026TASK DETAILhttps://phabricator.wikimedia.org/T163642EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: gerritbotCc: dcausse, Esc3300, ArthurPSmith, Stashbot, Lea_Lacroix_WMDE, gerritbot, Liuxinyu970226, Smalyshev, debt, aude, Lydia_Pintscher, Aklapper, Multichill, Lahi, Gq86, Darkminds3113, GoranSMilovanovic, QZanden, EBjune, LawExplorer, Avner, Gehel, FloNight, Wikidata-bugs, jayvdb, Mbch331, jeremyb___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T163642: Index Wikidata strings in statements for fulltext search

2018-08-28 Thread gerritbot
gerritbot added a project: Patch-For-Review.
TASK DETAILhttps://phabricator.wikimedia.org/T163642EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: gerritbotCc: dcausse, Esc3300, ArthurPSmith, Stashbot, Lea_Lacroix_WMDE, gerritbot, Liuxinyu970226, Smalyshev, debt, aude, Lydia_Pintscher, Aklapper, Multichill, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, LawExplorer, Avner, Lewizho99, Maathavan, Gehel, FloNight, Wikidata-bugs, jayvdb, Mbch331, jeremyb___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T202890: Collapse icon of mini map not present in build

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455901 merged by Smalyshev:
[wikidata/query/gui-deploy@production] Merging from c47cc4cad9b59a57a49a95580393301266940e82:

https://gerrit.wikimedia.org/r/455901TASK DETAILhttps://phabricator.wikimedia.org/T202890EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jonas, gerritbotCc: gerritbot, Salgo60, Aklapper, Jonas, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 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] T202890: Collapse icon of mini map not present in build

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455899 abandoned by Smalyshev:
Merging from c47cc4cad9b59a57a49a95580393301266940e82:

Reason:
superceded

https://gerrit.wikimedia.org/r/455899TASK DETAILhttps://phabricator.wikimedia.org/T202890EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jonas, gerritbotCc: gerritbot, Salgo60, Aklapper, Jonas, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 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] [Updated] T189744: Add hints parameter to wbsearchentities

2018-08-28 Thread Smalyshev
Smalyshev added a comment.
Yes, you could use fulltext search, but that would be in a different format that wbsearchentities. If it's ok to move the UI from using wbsearchentities to using fulltext search then it'd work. But note that fulltext search is not a completion search. There's OpenSearch API that is completion search but I'm not sure how well it works with Wikidata now (see T55652).TASK DETAILhttps://phabricator.wikimedia.org/T189744EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SmalyshevCc: Jonas, EBernhardson, gerritbot, Lydia_Pintscher, daniel, Aklapper, Smalyshev, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, LawExplorer, Avner, Lewizho99, Maathavan, Gehel, FloNight, 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] T202890: Collapse icon of mini map not present in build

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455901 had a related patch set uploaded (by WDQSGuiBuilder; owner: WDQSGuiBuilder):
[wikidata/query/gui-deploy@production] Merging from c47cc4cad9b59a57a49a95580393301266940e82:

https://gerrit.wikimedia.org/r/455901TASK DETAILhttps://phabricator.wikimedia.org/T202890EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jonas, gerritbotCc: gerritbot, Salgo60, Aklapper, Jonas, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 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] [Updated] T202890: Collapse icon of mini map not present in build

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455899 had a related patch set uploaded (by WDQSGuiBuilder; owner: WDQSGuiBuilder):
[wikidata/query/gui-deploy@production] Merging from c47cc4cad9b59a57a49a95580393301266940e82:

https://gerrit.wikimedia.org/r/455899TASK DETAILhttps://phabricator.wikimedia.org/T202890EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jonas, gerritbotCc: gerritbot, Salgo60, Aklapper, Jonas, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 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] T202890: Collapse icon of mini map not present in build

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455816 merged by jenkins-bot:
[wikidata/query/gui@master] Fix: Collapse icon of mini map not present in build

https://gerrit.wikimedia.org/r/455816TASK DETAILhttps://phabricator.wikimedia.org/T202890EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jonas, gerritbotCc: gerritbot, Salgo60, Aklapper, Jonas, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 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] T202891: Embed toolbars are hidden behind map controls

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455815 merged by jenkins-bot:
[wikidata/query/gui@master] Fix: Embed toolbars are hidden behind map controls

https://gerrit.wikimedia.org/r/455815TASK DETAILhttps://phabricator.wikimedia.org/T202891EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jonas, gerritbotCc: gerritbot, Salgo60, Aklapper, Jonas, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 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] T189744: Add hints parameter to wbsearchentities

2018-08-28 Thread Jonas
Jonas added a comment.

In T189744#4539080, @Smalyshev wrote:
we could just use something like haswbstatement:P31=Unit

We couldn't use that because keywords are not supported for wbsearchentities. While it is possible they'll be in the future, it's not a near future I think.


Couldn't we use ?action=""> ?TASK DETAILhttps://phabricator.wikimedia.org/T189744EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Smalyshev, JonasCc: Jonas, EBernhardson, gerritbot, Lydia_Pintscher, daniel, Aklapper, Smalyshev, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, LawExplorer, Avner, Lewizho99, Maathavan, Gehel, FloNight, 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] T202985: Shouldn't be possible to add two glosses of single sense with the same language

2018-08-28 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as a duplicate of T202427: [Bug] Adding a second Gloss in the same language overwrites existing Gloss.
TASK DETAILhttps://phabricator.wikimedia.org/T202985EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Lea_Lacroix_WMDE, Lydia_PintscherCc: Lea_Lacroix_WMDE, Lexicographical data, KaMan, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T202427: [Bug] Adding a second Gloss in the same language overwrites existing Gloss

2018-08-28 Thread Lydia_Pintscher
Lydia_Pintscher added subscribers: KaMan, Lea_Lacroix_WMDE, Lexicographical data.Lydia_Pintscher merged a task: T202985: Shouldn't be possible to add two glosses of single sense with the same language.
TASK DETAILhttps://phabricator.wikimedia.org/T202427EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Lydia_PintscherCc: Lexicographical data, Lea_Lacroix_WMDE, KaMan, gerritbot, Ladsgroup, Lydia_Pintscher, Mringgaard, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T195121: Contribution from the IGN to Structured Data on Commons

2018-08-28 Thread abian
abian updated the task description. (Show Details)
CHANGES TO TASK DESCRIPTION...* a series of scanned maps (some topographic maps at a scale of 1:25, some of them at a scale of 1:50, and some maps for Spanish provinces and autonomous communities) from the first to the last edition (~632 GBT203010), and...TASK DETAILhttps://phabricator.wikimedia.org/T195121EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: abianCc: fgiunchedi, Reedy, bd808, Aklapper, aborrero, SandraF_WMF, Platonides, Rodelar, abian, AndyTan, sietec, Zylc, 1978Gage2001, Lahi, PDrouin-WMF, Gq86, E1presidente, Ramsey-WMF, Cparle, Anooprao, GoranSMilovanovic, Chicocvenancio, QZanden, Tbscho, Tramullas, Acer, LawExplorer, JJMC89, Susannaanas, srodlund, Luke081515, Aschroet, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Gryllida, Ricordisamoa, Lydia_Pintscher, Fabrice_Florin, Raymond, scfc, Steinsplitter, Mbch331, Krenair, chasemp___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T195121: Contribution from the IGN to Structured Data on Commons

2018-08-28 Thread abian
abian added a comment.
Thanks for your comments! I have just created T203010 with some information about the first series we will address.TASK DETAILhttps://phabricator.wikimedia.org/T195121EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: abianCc: fgiunchedi, Reedy, bd808, Aklapper, aborrero, SandraF_WMF, Platonides, Rodelar, abian, AndyTan, sietec, Zylc, 1978Gage2001, Lahi, PDrouin-WMF, Gq86, E1presidente, Ramsey-WMF, Cparle, Anooprao, GoranSMilovanovic, Chicocvenancio, QZanden, Tbscho, Tramullas, Acer, LawExplorer, JJMC89, Susannaanas, srodlund, Luke081515, Aschroet, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Gryllida, Ricordisamoa, Lydia_Pintscher, Fabrice_Florin, Raymond, scfc, Steinsplitter, Mbch331, Krenair, chasemp___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T195121: Contribution from the IGN to Structured Data on Commons

2018-08-28 Thread abian
abian added a subtask: T203010: Contribution of scanned maps from the IGN to Wikimedia Commons.
TASK DETAILhttps://phabricator.wikimedia.org/T195121EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: abianCc: fgiunchedi, Reedy, bd808, Aklapper, aborrero, SandraF_WMF, Platonides, Rodelar, abian, AndyTan, sietec, Zylc, 1978Gage2001, Lahi, PDrouin-WMF, Gq86, E1presidente, Ramsey-WMF, Cparle, Anooprao, GoranSMilovanovic, Chicocvenancio, QZanden, Tbscho, Tramullas, Acer, LawExplorer, JJMC89, Susannaanas, srodlund, Luke081515, Aschroet, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Gryllida, Ricordisamoa, Lydia_Pintscher, Fabrice_Florin, Raymond, scfc, Steinsplitter, Mbch331, Krenair, chasemp___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T112658: [Task] WikiPageEntityRevisionLookup::getLatestRevisionId() should throw an UnsersolvedRedirectException when encountering a redirect.

2018-08-28 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.32-release-notes (WMF-deploy-2018-09-04 (1.32.0-wmf.20)).
TASK DETAILhttps://phabricator.wikimedia.org/T112658EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: eranroz, ReleaseTaggerBotCc: eranroz, gerritbot, Aklapper, daniel, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, 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] T189744: Add hints parameter to wbsearchentities

2018-08-28 Thread Smalyshev
Smalyshev added a comment.
we could just use something like haswbstatement:P31=Unit

We couldn't use that because keywords are not supported for wbsearchentities. While it is possible they'll be in the future, it's not a near future I think.TASK DETAILhttps://phabricator.wikimedia.org/T189744EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SmalyshevCc: Jonas, EBernhardson, gerritbot, Lydia_Pintscher, daniel, Aklapper, Smalyshev, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, LawExplorer, Avner, Lewizho99, Maathavan, Gehel, FloNight, 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] T174035: Allow the view action to show multiple slots [MCR]

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455865 had a related patch set uploaded (by Daniel Kinzler; owner: Daniel Kinzler):
[mediawiki/core@master] Apply content wrapping in ParserOutput::getText()

https://gerrit.wikimedia.org/r/455865TASK DETAILhttps://phabricator.wikimedia.org/T174035EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: daniel, gerritbotCc: Tgr, gerritbot, Aklapper, daniel, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, PDrouin-WMF, Gq86, Baloch007, E1presidente, Ramsey-WMF, Cparle, Darkminds3113, Anooprao, SandraF_WMF, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Tramullas, Acer, LawExplorer, Lewizho99, JJMC89, Maathavan, Agabi10, Susannaanas, Aschroet, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Ricordisamoa, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331, Ltrlg___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T112658: [Task] WikiPageEntityRevisionLookup::getLatestRevisionId() should throw an UnsersolvedRedirectException when encountering a redirect.

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 453149 merged by jenkins-bot:
[mediawiki/extensions/WikibaseLexeme@master] Use LatestRevisionIdResult in EntityRevisionLookup::getLatestRevisionId

https://gerrit.wikimedia.org/r/453149TASK DETAILhttps://phabricator.wikimedia.org/T112658EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: eranroz, gerritbotCc: eranroz, gerritbot, Aklapper, daniel, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, 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] T202427: [Bug] Adding a second Gloss in the same language overwrites existing Gloss

2018-08-28 Thread gerritbot
gerritbot added a project: Patch-For-Review.
TASK DETAILhttps://phabricator.wikimedia.org/T202427EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: gerritbotCc: gerritbot, Ladsgroup, Lydia_Pintscher, Mringgaard, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T202427: [Bug] Adding a second Gloss in the same language overwrites existing Gloss

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455863 had a related patch set uploaded (by Ladsgroup; owner: Amir Sarabadani):
[mediawiki/extensions/WikibaseLexeme@master] [WIP] Throw error when two glosses in a sense have the same language

https://gerrit.wikimedia.org/r/455863TASK DETAILhttps://phabricator.wikimedia.org/T202427EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: gerritbotCc: gerritbot, Ladsgroup, Lydia_Pintscher, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T202779: add SSDs to wdqs100[45]

2018-08-28 Thread ops-monitoring-bot
ops-monitoring-bot added a comment.
Completed auto-reimage of hosts:

['wdqs1004.eqiad.wmnet']

and were ALL successful.TASK DETAILhttps://phabricator.wikimedia.org/T202779EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Cmjohnson, ops-monitoring-botCc: ops-monitoring-bot, Stashbot, mark, faidon, Addshore, Smalyshev, RobH, Cmjohnson, Gehel, AndyTan, Davinaclare77, Qtn1293, Lahi, Gq86, Darkminds3113, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Th3d3v1ls, Hfbn0, QZanden, EBjune, merbst, LawExplorer, Avner, Zppix, Jonas, FloNight, Xmlizer, Wong128hk, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Southparkfan, 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] T202779: add SSDs to wdqs100[45]

2018-08-28 Thread ops-monitoring-bot
ops-monitoring-bot added a comment.
Script wmf-auto-reimage was launched by gehel on neodymium.eqiad.wmnet for hosts:

['wdqs1004.eqiad.wmnet']

The log can be found in /var/log/wmf-auto-reimage/201808281540_gehel_28958.log.TASK DETAILhttps://phabricator.wikimedia.org/T202779EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Cmjohnson, ops-monitoring-botCc: ops-monitoring-bot, Stashbot, mark, faidon, Addshore, Smalyshev, RobH, Cmjohnson, Gehel, AndyTan, Davinaclare77, Qtn1293, Lahi, Gq86, Darkminds3113, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Th3d3v1ls, Hfbn0, QZanden, EBjune, merbst, LawExplorer, Avner, Zppix, Jonas, FloNight, Xmlizer, Wong128hk, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Southparkfan, Mbch331, Jay8g, fgiunchedi___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T202779: add SSDs to wdqs100[45]

2018-08-28 Thread Cmjohnson
Cmjohnson moved this task from Backlog to Being worked on on the ops-eqiad board.Cmjohnson added a comment.
Added 2 ssds to wdqs1004 and gehel is re-installing.  Will do wdqs1005 at a later time/date.TASK DETAILhttps://phabricator.wikimedia.org/T202779WORKBOARDhttps://phabricator.wikimedia.org/project/board/952/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: CmjohnsonCc: ops-monitoring-bot, Stashbot, mark, faidon, Addshore, Smalyshev, RobH, Cmjohnson, Gehel, AndyTan, Davinaclare77, Qtn1293, Lahi, Gq86, Darkminds3113, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Th3d3v1ls, Hfbn0, QZanden, EBjune, merbst, LawExplorer, Avner, Zppix, Jonas, FloNight, Xmlizer, Wong128hk, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Southparkfan, 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] T202779: add SSDs to wdqs100[45]

2018-08-28 Thread Stashbot
Stashbot added a comment.
Mentioned in SAL (#wikimedia-operations) [2018-08-28T15:35:12Z]  shutting down wdqs1004 to add new disks - T202779TASK DETAILhttps://phabricator.wikimedia.org/T202779EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Cmjohnson, StashbotCc: Stashbot, mark, faidon, Addshore, Smalyshev, RobH, Cmjohnson, Gehel, AndyTan, Davinaclare77, Qtn1293, Lahi, Gq86, Darkminds3113, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Th3d3v1ls, Hfbn0, QZanden, EBjune, merbst, LawExplorer, Avner, Zppix, Jonas, FloNight, Xmlizer, Wong128hk, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Southparkfan, 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] T202427: [Bug] Adding a second Gloss in the same language overwrites existing Gloss

2018-08-28 Thread Ladsgroup
Ladsgroup added a comment.
This is a little bit more complex than it looks because the frontend sends exactly the same request when someone adds a gloss with duplicated language (invalid) or just changes the gloss (valid). So handling it in backend seems tricky or not even needed. We need to do the check in frontend anyway.TASK DETAILhttps://phabricator.wikimedia.org/T202427EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: LadsgroupCc: Ladsgroup, Lydia_Pintscher, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T203002: Senses are ordered based on their string representations and not numeric ones

2018-08-28 Thread Ladsgroup
Ladsgroup created this task.Ladsgroup added projects: Wikidata, Lexicographical data.
TASK DESCRIPTIONThis explains the bug better:
F25466735: image.pngTASK DETAILhttps://phabricator.wikimedia.org/T203002EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: LadsgroupCc: Lydia_Pintscher, Ladsgroup, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T202912: [W4Q1iwpEEj4AAG9APN4AAAAK] /wiki/Albert_Einstein MediaWiki\Services\NoSuchServiceException from line 445 of /srv/mediawiki/php-master/include

2018-08-28 Thread Jdlrobson
Jdlrobson added a subscriber: nray.Jdlrobson added a comment.
Thanks all for fixing and thanks @nray for finding the bug!TASK DETAILhttps://phabricator.wikimedia.org/T202912EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Addshore, JdlrobsonCc: nray, gerritbot, WMDE-leszek, Pablo-WMDE, Addshore, TerraCodes, Aklapper, Jdlrobson, Mringgaard, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, Wikidata-bugs, aude, Lydia_Pintscher, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T202894: Track orphan Wikidata items or entities on Grafana

2018-08-28 Thread abian
abian added a comment.
Cool! Is there any Phabricator task for the pending deployment on Hadoop?

According to the definition for Wikipedia articles, orphan pages are those with no incoming links. It's true that, from an RDF-based perspective, it's relevant to consider both incoming and outgoing links. However, from the perspective of web search engines, it's relevant to consider only incoming links; my original intention was to track these unreachable entities, which somehow belong to the deep Web. So we could say that orphan entities are those with no sitelinks nor incoming links from other entities. Anyway, all the metrics you mention seem relevant.

Thank you!TASK DETAILhttps://phabricator.wikimedia.org/T202894EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: abianCc: JAllemandou, Addshore, Aklapper, abian, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 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] T183488: MCR schema migration stage 2: populate new fields

2018-08-28 Thread jcrespo
jcrespo added a comment.
Thank you anomie for running those queries, which I had suggested or even offered to do to check things look consistent.TASK DETAILhttps://phabricator.wikimedia.org/T183488EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: tstarling, jcrespoCc: jcrespo, greg, tstarling, Stashbot, Abit, gerritbot, Jdforrester-WMF, Anomie, Addshore, aude, Aklapper, daniel, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, PDrouin-WMF, Gq86, Baloch007, E1presidente, Ramsey-WMF, Cparle, Darkminds3113, Anooprao, SandraF_WMF, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Tramullas, Acer, LawExplorer, Lewizho99, JJMC89, Maathavan, Agabi10, Susannaanas, Aschroet, Fjalapeno, Jane023, Wikidata-bugs, Base, matthiasmullie, Ricordisamoa, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331, Ltrlg___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T183488: MCR schema migration stage 2: populate new fields

2018-08-28 Thread Anomie
Anomie closed this task as "Resolved".Anomie added a comment.
commonswiki, enwiki, wikidatawiki, and zhwiki had such undeletions. I hacked a copy of the maintenance script to process only the revision IDs printed by the check query and updated them all, so we should be good now.

I'll re-run the check queries to be sure, ask me again in 5 or 6 hours.TASK DETAILhttps://phabricator.wikimedia.org/T183488EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: tstarling, AnomieCc: jcrespo, greg, tstarling, Stashbot, Abit, gerritbot, Jdforrester-WMF, Anomie, Addshore, aude, Aklapper, daniel, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, PDrouin-WMF, Gq86, Baloch007, E1presidente, Ramsey-WMF, Cparle, Darkminds3113, Anooprao, SandraF_WMF, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Tramullas, Acer, LawExplorer, Lewizho99, JJMC89, Maathavan, Agabi10, Susannaanas, Aschroet, Fjalapeno, Jane023, Wikidata-bugs, Base, matthiasmullie, Ricordisamoa, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331, Ltrlg___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T174044: Deploy MCR storage layer

2018-08-28 Thread Anomie
Anomie closed subtask T183488: MCR schema migration stage 2: populate new fields as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T174044EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AnomieCc: Stashbot, Addshore, gerritbot, Anomie, jcrespo, Aklapper, daniel, AndyTan, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, PDrouin-WMF, Gq86, Baloch007, E1presidente, Ramsey-WMF, Cparle, Darkminds3113, Anooprao, SandraF_WMF, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Tramullas, Acer, Marostegui, LawExplorer, Lewizho99, Minhnv-2809, JJMC89, Maathavan, Agabi10, Susannaanas, Luke081515, Aschroet, Fjalapeno, Jane023, Wikidata-bugs, Base, matthiasmullie, aude, Ricordisamoa, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Mbch331, Jay8g, Ltrlg, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T202712: Beta feature for constraint suggestions

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455838 had a related patch set uploaded (by Jonas Kress (WMDE); owner: Jonas Kress (WMDE)):
[mediawiki/extensions/WikibaseQualityConstraints@master] Beta feature for constraint suggestions

https://gerrit.wikimedia.org/r/455838TASK DETAILhttps://phabricator.wikimedia.org/T202712EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jonas, gerritbotCc: gerritbot, Aklapper, Jonas, A.S.Kochergin, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Salgo60, JGirault, 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] T202712: Beta feature for constraint suggestions

2018-08-28 Thread gerritbot
gerritbot added a project: Patch-For-Review.
TASK DETAILhttps://phabricator.wikimedia.org/T202712EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jonas, gerritbotCc: gerritbot, Aklapper, Jonas, Gaboe420, A.S.Kochergin, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Salgo60, Lewizho99, Maathavan, JGirault, 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] T196446: Query explorer dialog blank in Firefox on embed.html

2018-08-28 Thread Liuxinyu970226
Liuxinyu970226 added a project: Browser-Support-Firefox.
TASK DETAILhttps://phabricator.wikimedia.org/T196446EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Liuxinyu970226Cc: Aklapper, Lucas_Werkmeister_WMDE, Lahi, Gq86, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Salgo60, Jonas, Xmlizer, jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Lydia_Pintscher, Mbch331, Jay8g___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T202729: When creating a new Sense through wbeditentity the summary is confusing "Created a new entity"

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455828 had a related patch set uploaded (by Ladsgroup; owner: Amir Sarabadani):
[mediawiki/extensions/WikibaseLexeme@master] Add messages for creating new lexeme, form, and sense via wbeditentity

https://gerrit.wikimedia.org/r/455828TASK DETAILhttps://phabricator.wikimedia.org/T202729EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Ladsgroup, gerritbotCc: gerritbot, Lydia_Pintscher, Addshore, Mringgaard, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T202712: Beta feature for constraint suggestions

2018-08-28 Thread Jonas
Jonas updated the task description. (Show Details)
CHANGES TO TASK DESCRIPTION...Therefore we would like to create a beta feature allowing users to enable constraint suggestions for all properties.

{F25466283}

Query for all properties that have a allowed qualifiers constraint definition...TASK DETAILhttps://phabricator.wikimedia.org/T202712EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: JonasCc: Aklapper, Jonas, A.S.Kochergin, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Salgo60, JGirault, 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] T202729: When creating a new Sense through wbeditentity the summary is confusing "Created a new entity"

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455827 had a related patch set uploaded (by Ladsgroup; owner: Amir Sarabadani):
[mediawiki/extensions/Wikibase@master] [WIP] Pass entity type to edit summary in wbeditentity

https://gerrit.wikimedia.org/r/455827TASK DETAILhttps://phabricator.wikimedia.org/T202729EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Ladsgroup, gerritbotCc: gerritbot, Lydia_Pintscher, Addshore, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T202729: When creating a new Sense through wbeditentity the summary is confusing "Created a new entity"

2018-08-28 Thread gerritbot
gerritbot added a project: Patch-For-Review.
TASK DETAILhttps://phabricator.wikimedia.org/T202729EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Ladsgroup, gerritbotCc: gerritbot, Lydia_Pintscher, Addshore, Mringgaard, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T202785: Federation request to https://ld.stadt-zuerich.ch/query fails

2018-08-28 Thread Mchlrch
Mchlrch added a comment.
Allow me to reformulate: How about making the jetty-client ask explicitly for HTTP/1.1?TASK DETAILhttps://phabricator.wikimedia.org/T202785EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Smalyshev, MchlrchCc: Mchlrch, Gehel, Aklapper, Smalyshev, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T202777: add SSDs to wdqs200[12]

2018-08-28 Thread Gehel
Gehel added a comment.
@Papaul: I'm ready to reimage wdqs2002 today. Ping me when you're around and I'll shut it down.TASK DETAILhttps://phabricator.wikimedia.org/T202777EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Papaul, GehelCc: Aklapper, mark, faidon, Addshore, Smalyshev, RobH, Papaul, Gehel, AndyTan, Davinaclare77, Qtn1293, Lahi, Gq86, Darkminds3113, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Th3d3v1ls, Hfbn0, QZanden, EBjune, merbst, LawExplorer, Avner, Zppix, Jonas, FloNight, Xmlizer, Wong128hk, Cmjohnson, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Southparkfan, Mbch331, Jay8g, fgiunchedi___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T202712: Beta feature for constraint suggestions

2018-08-28 Thread Jonas
Jonas claimed this task.
TASK DETAILhttps://phabricator.wikimedia.org/T202712EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: JonasCc: Aklapper, Jonas, A.S.Kochergin, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Salgo60, JGirault, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T202894: Track orphan Wikidata items or entities on Grafana

2018-08-28 Thread Addshore
Addshore added a subscriber: JAllemandou.Addshore added a comment.
@JAllemandou already went ahead and working some magic on the data that is already in hadoop.
So in January 2018 there were:


Entities: 42336942
Entities with links Inward (to the entity): 10312826
Entities with links outward (from the entity): 40096647
Entities with some kind of link (in or out): 40115806
Therefor totally orphan entities can be seen at roughly: 2,221,136


It would probably also be worth counting sitelinks as links for the tracking of orphan entities (at least in my opinion)
(This requires the graph construction that we did for the first numbers to change so I won't both posting the number here  for 2018-01)

This analysis was done with the following gist: https://gist.githubusercontent.com/jobar/ec44542614c0fe261a23cc3b4acf8e00/raw/6018e5d62401a2ca86f46580a547cb025932b8ca/degrees-analysis

This is the sort of thing that we will want to work towards having run on a regular basis once wikidata is regularly in hadoopTASK DETAILhttps://phabricator.wikimedia.org/T202894EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: JAllemandou, Addshore, Aklapper, abian, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 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] T201000: Show Gloss in entity selector when entering Sense as a value in a statement

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455800 merged by jenkins-bot:
[mediawiki/extensions/WikibaseLexeme@master] Don't try to select entity when the input is empty

https://gerrit.wikimedia.org/r/455800TASK DETAILhttps://phabricator.wikimedia.org/T201000EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Lucas_Werkmeister_WMDE, gerritbotCc: Ladsgroup, gerritbot, Denny, Lucas_Werkmeister_WMDE, RazShuty, WMDE-leszek, Addshore, Lydia_Pintscher, Mringgaard, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T202346: Change in Wikidata localisation is causing JavaScript errors

2018-08-28 Thread stjn
stjn added a comment.
Purge did nothing. No errors were in console as far as I am aware. Any action was being sent to the fallback, yes, so events were probably not subscribing to links with new localisation.TASK DETAILhttps://phabricator.wikimedia.org/T202346EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: stjnCc: Addshore, Ghuron, Vort, SerDIDG, Aklapper, stjn, OlegCinema, Lahi, Gq86, GoranSMilovanovic, Abiyoyo, QZanden, LawExplorer, Jack_who_built_the_house, Salgo60, Iniquity, Jonas, Wikidata-bugs, Base, aude, Lydia_Pintscher, putnik, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T202346: Change in Wikidata localisation is causing JavaScript errors

2018-08-28 Thread Addshore
Addshore added a comment.
Did a purge of the page fix the issue or did it persist?

all AJAX for them didn’t work at all

As in the AJAX failed, or it wasnt there and you always went to the special pages?

Sounds like something died early on in the JS, but without knowing what was in the JS console this could be pretty hard to identify or link to anything else.TASK DETAILhttps://phabricator.wikimedia.org/T202346EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Addshore, Ghuron, Vort, SerDIDG, Aklapper, stjn, OlegCinema, Lahi, Gq86, GoranSMilovanovic, Abiyoyo, QZanden, LawExplorer, Jack_who_built_the_house, Salgo60, Iniquity, Jonas, Wikidata-bugs, Base, aude, Lydia_Pintscher, putnik, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T202346: Change in Wikidata localisation is causing JavaScript errors

2018-08-28 Thread stjn
stjn added a comment.

In T202346#4538207, @Addshore wrote:
What errors?

I'm afraid without more details It is unlikely that we will be able to determine why it was happening.


Basically, subheaders had new localisation in edit buttons (‘править’), and all AJAX for them didn’t work at all. Properties had old localisation (‘редактировать’) and AJAX worked for them.TASK DETAILhttps://phabricator.wikimedia.org/T202346EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: stjnCc: Addshore, Ghuron, Vort, SerDIDG, Aklapper, stjn, OlegCinema, Lahi, Gq86, GoranSMilovanovic, Abiyoyo, QZanden, LawExplorer, Jack_who_built_the_house, Salgo60, Iniquity, Jonas, Wikidata-bugs, Base, aude, Lydia_Pintscher, putnik, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T202346: Change in Wikidata localisation is causing JavaScript errors

2018-08-28 Thread Addshore
Addshore added subscribers: Marshmallych, Addshore.Addshore added a comment.
started to experience errors with _javascript_

What errors?

I'm afraid without more details It is unlikely that we will be able to determine why it was happening.


In T202346#4527606, @Marshmallych wrote:
I too had the problems, but I not using Russian interface on Wikidata - I am using English interface.


It's possible that another ticket was filed for this issue?TASK DETAILhttps://phabricator.wikimedia.org/T202346EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Addshore, Marshmallych, Ghuron, Vort, SerDIDG, Aklapper, stjn, OlegCinema, Lahi, Gq86, GoranSMilovanovic, Abiyoyo, QZanden, LawExplorer, Jack_who_built_the_house, Salgo60, Iniquity, Jonas, Wikidata-bugs, Base, aude, Lydia_Pintscher, putnik, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T202785: Federation request to https://ld.stadt-zuerich.ch/query fails

2018-08-28 Thread Mchlrch
Mchlrch added a comment.
The endpoint https://ld.stadt-zuerich.ch/query supports HTTP/1.0, HTTP/1.1 and HTTP/2. I defaults to HTTP/2, if the client does request an explicit version.

@Smalyshev How about explicitly specifying HTTP/1.1 for the jetty-client?

Query:

$ cat foo.rq 
PREFIX rdf: 
PREFIX rdfs: 
SELECT * WHERE {
  GRAPH  {
?sub ?pred ?obj .
  } 
}
LIMIT 1

curl for HTTP/1.0:

$ curl --http1.0 -i --data-urlencode qu...@foo.rq https://ld.stadt-zuerich.ch/query
HTTP/1.0 200 OK
Accept-Ranges: bytes
Access-Control-Allow-Origin: *
Age: 0
Cache-Control: public, max-age=120
Content-Type: application/sparql-results+xml
Date: Tue, 28 Aug 2018 11:54:40 GMT
Set-Cookie: _f3bc9=http://10.42.34.100:80; Path=/
Vary: Accept-Encoding
Vary: Accept, Accept-Encoding
Via: 1.1 varnish-v4
X-Varnish: 296846
Content-Length: 540



	
		
		
		
	
	
		
			
https://ld.stadt-zuerich.ch/.well-known/void
			
			
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
			
			
http://rdfs.org/ns/void#DatasetDescription
			
		
	


curl for HTTP/1.1:

$ curl --http1.1 -i --data-urlencode qu...@foo.rq https://ld.stadt-zuerich.ch/query
HTTP/1.1 200 OK
Accept-Ranges: bytes
Access-Control-Allow-Origin: *
Age: 0
Cache-Control: public, max-age=120
Content-Type: application/sparql-results+xml
Date: Tue, 28 Aug 2018 11:54:18 GMT
Set-Cookie: _f3bc9=http://10.42.34.100:80; Path=/
Vary: Accept-Encoding
Vary: Accept, Accept-Encoding
Via: 1.1 varnish-v4
X-Varnish: 1540376
Content-Length: 540



	
		
		
		
	
	
		
			
https://ld.stadt-zuerich.ch/.well-known/void
			
			
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
			
			
http://rdfs.org/ns/void#DatasetDescription
			
		
	
TASK DETAILhttps://phabricator.wikimedia.org/T202785EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Smalyshev, MchlrchCc: Mchlrch, Gehel, Aklapper, Smalyshev, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, 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] [Edited] T202985: Shouldn't be possible to add two glosses of single sense with the same language

2018-08-28 Thread KaMan
KaMan updated the task description. (Show Details)
CHANGES TO TASK DESCRIPTIONIn https://wikidata.beta.wmflabs.org/wiki/Lexeme:L60 I was able to add twice German gloss to L60-S1 however it was not saved and disappeared after refresh.

{F25465718}TASK DETAILhttps://phabricator.wikimedia.org/T202985EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Lea_Lacroix_WMDE, KaManCc: Lea_Lacroix_WMDE, Lexicographical data, KaMan, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T202265: Add 'tmp1' index that is in WMF production to the Wikibase install SQL files

2018-08-28 Thread Addshore
Addshore updated the task description. (Show Details)
CHANGES TO TASK DESCRIPTION...```

The create statement should be as simple as:


```
CREATE INDEX `tmp1` ON wb_terms (`term_language`,`term_type`,`term_entity_type`,`term_search_key`);
```TASK DETAILhttps://phabricator.wikimedia.org/T202265EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Marostegui, Ladsgroup, Addshore, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Salgo60, 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] T202985: Shouldn't be possible to add two glosses of single sense with the same language

2018-08-28 Thread KaMan
KaMan created this task.KaMan added projects: Wikidata, Lexicographical data.
TASK DESCRIPTIONIn https://wikidata.beta.wmflabs.org/wiki/Lexeme:L60 I was able to add twice German gloss to L60-S1TASK DETAILhttps://phabricator.wikimedia.org/T202985EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Lea_Lacroix_WMDE, KaManCc: Lea_Lacroix_WMDE, Lexicographical data, KaMan, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T202764: Wikidata produces a lot of failed requests for recentchanges API

2018-08-28 Thread Addshore
Addshore added a project: User-Addshore.
TASK DETAILhttps://phabricator.wikimedia.org/T202764EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Addshore, Yurik, jcrespo, Imarlier, Ladsgroup, Lydia_Pintscher, WMDE-leszek, Aklapper, Gehel, Smalyshev, AndyTan, Davinaclare77, Qtn1293, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Th3d3v1ls, Hfbn0, QZanden, EBjune, merbst, LawExplorer, Vali.matei, Zppix, Jonas, Xmlizer, Wong128hk, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, faidon, Mbch331, Jay8g, fgiunchedi___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T192462: mw.wikibase.entityExists returns false for redirected entities

2018-08-28 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.32-release-notes (WMF-deploy-2018-08-28 (1.32.0-wmf.19)).
TASK DETAILhttps://phabricator.wikimedia.org/T192462EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: eranroz, ReleaseTaggerBotCc: gerritbot, Aklapper, Uzume, Ahecht, Lydia_Pintscher, hoo, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, 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] T202890: Collapse icon of mini map not present in build

2018-08-28 Thread Jonas
Jonas claimed this task.Jonas updated the task description. (Show Details)
CHANGES TO TASK DESCRIPTION...[ ] [[ https://gerrit.wikimedia.org/r/#/c/wikidata/query/gui/+/455816/ | Fix gruntfile.js include collapse icon in grunt build task ]]TASK DETAILhttps://phabricator.wikimedia.org/T202890EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: JonasCc: gerritbot, Salgo60, Aklapper, Jonas, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 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] [Updated] T202890: Collapse icon of mini map not present in build

2018-08-28 Thread gerritbot
gerritbot added a project: Patch-For-Review.
TASK DETAILhttps://phabricator.wikimedia.org/T202890EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: gerritbotCc: gerritbot, Salgo60, Aklapper, Jonas, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 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] T202890: Collapse icon of mini map not present in build

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455816 had a related patch set uploaded (by Jonas Kress (WMDE); owner: Jonas Kress (WMDE)):
[wikidata/query/gui@master] Fix: Collapse icon of mini map not present in build

https://gerrit.wikimedia.org/r/455816TASK DETAILhttps://phabricator.wikimedia.org/T202890EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: gerritbotCc: gerritbot, Salgo60, Aklapper, Jonas, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Xmlizer, jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Lydia_Pintscher, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T202983: Add Table of Contents at the begining of lexeme page

2018-08-28 Thread KaMan
KaMan created this task.KaMan added projects: Wikidata, Lexicographical data.
TASK DESCRIPTIONFor languages with a lot of forms it is boring to scroll down to get to senses. It would be sufficient to add small Table of Content at the begining of lexeme page. I prepared small script which is doing this https://wikidata.beta.wmflabs.org/wiki/User:KaMan/ToC_to_lexemes.js it produces following image F25465426: toc.pngTASK DETAILhttps://phabricator.wikimedia.org/T202983EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Lea_Lacroix_WMDE, KaManCc: Lea_Lacroix_WMDE, Lexicographical data, KaMan, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T202891: Embed toolbars are hidden behind map controls

2018-08-28 Thread Jonas
Jonas updated the task description. (Show Details)
CHANGES TO TASK DESCRIPTION...[ ] [[ https://gerrit.wikimedia.org/r/#/c/wikidata/query/gui/+/455815 | Fix z-index for toolbars in embed.html ]]TASK DETAILhttps://phabricator.wikimedia.org/T202891EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: JonasCc: gerritbot, Salgo60, Aklapper, Jonas, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 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] [Updated] T202891: Embed toolbars are hidden behind map controls

2018-08-28 Thread gerritbot
gerritbot added a project: Patch-For-Review.
TASK DETAILhttps://phabricator.wikimedia.org/T202891EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jonas, gerritbotCc: gerritbot, Salgo60, Aklapper, Jonas, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 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] T202891: Embed toolbars are hidden behind map controls

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 455815 had a related patch set uploaded (by Jonas Kress (WMDE); owner: Jonas Kress (WMDE)):
[wikidata/query/gui@master] Fix: Embed toolbars are hidden behind map controls

https://gerrit.wikimedia.org/r/455815TASK DETAILhttps://phabricator.wikimedia.org/T202891EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jonas, gerritbotCc: gerritbot, Salgo60, Aklapper, Jonas, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, 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] [Claimed] T202891: Embed toolbars are hidden behind map controls

2018-08-28 Thread Jonas
Jonas claimed this task.
TASK DETAILhttps://phabricator.wikimedia.org/T202891EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: JonasCc: Salgo60, Aklapper, Jonas, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, 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] T192462: mw.wikibase.entityExists returns false for redirected entities

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 453118 merged by jenkins-bot:
[mediawiki/extensions/Wikibase@master] Introduce LatestRevisionIdResult

https://gerrit.wikimedia.org/r/453118TASK DETAILhttps://phabricator.wikimedia.org/T192462EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: eranroz, gerritbotCc: gerritbot, Aklapper, Uzume, Ahecht, Lydia_Pintscher, hoo, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, 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] T112658: [Task] WikiPageEntityRevisionLookup::getLatestRevisionId() should throw an UnsersolvedRedirectException when encountering a redirect.

2018-08-28 Thread gerritbot
gerritbot added a comment.
Change 453118 merged by jenkins-bot:
[mediawiki/extensions/Wikibase@master] Introduce LatestRevisionIdResult

https://gerrit.wikimedia.org/r/453118TASK DETAILhttps://phabricator.wikimedia.org/T112658EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: eranroz, gerritbotCc: eranroz, gerritbot, Aklapper, daniel, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, 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] T201833: Use link formatter that uses cache instead of wb_terms for items Q1-Q100

2018-08-28 Thread Stashbot
Stashbot added a comment.
Mentioned in SAL (#wikimedia-operations) [2018-08-28T11:14:31Z]  Synchronized wmf-config/InitialiseSettings.php: SWAT: [[gerrit:455390|Wikidata: Use new item ID formatter for Q1-Q100 (T201833)]] (duration: 00m 49s)TASK DETAILhttps://phabricator.wikimedia.org/T201833EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: StashbotCc: Stashbot, Aklapper, Aleksey_WMDE, WMDE-leszek, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 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] T178786: Empty map results give an error

2018-08-28 Thread Jonas
Jonas added a project: Wikidata-Campsite.
TASK DETAILhttps://phabricator.wikimedia.org/T178786EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: JonasCc: Aklapper, Yurik, Lahi, Gq86, Darkminds3113, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Salgo60, Avner, Gehel, Jonas, FloNight, 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] [Updated] T201950: Edit button broken in new toolbars in embed

2018-08-28 Thread Jonas
Jonas added a project: Wikidata-Campsite.
TASK DETAILhttps://phabricator.wikimedia.org/T201950EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: JonasCc: Wikidata-Campsite, Aklapper, prssanna, Jonas, Smalyshev, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Salgo60, Xmlizer, jkroll, 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] [Updated] T157549: Make the SVG export work for graph visualisation

2018-08-28 Thread Jonas
Jonas added a project: Wikidata-Campsite.
TASK DETAILhttps://phabricator.wikimedia.org/T157549EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: JonasCc: Daniel_Mietchen, Smalyshev, Aklapper, Jonas, gerritbot, Lea_Lacroix_WMDE, Lahi, Gq86, Darkminds3113, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Salgo60, Avner, Gehel, FloNight, Xmlizer, jkroll, 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] [Updated] T202427: [Bug] Adding a second Gloss in the same language overwrites existing Gloss

2018-08-28 Thread Ladsgroup
Ladsgroup added a project: Wikidata-Senses-Iteration3.Ladsgroup set the point value for this task to "3".
TASK DETAILhttps://phabricator.wikimedia.org/T202427EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: LadsgroupCc: Lydia_Pintscher, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T189669: Proposal: Improve Explorer Dialog and Graph Explorer for query.wikidata.org

2018-08-28 Thread Jonas
Jonas closed this task as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T189669EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: prssanna, JonasCc: abian, Prtksxna, Smalyshev, Aklapper, srishakatux, prssanna, Jonas, Lucas_Werkmeister_WMDE, Lahi, Himanshuc3, Gq86, GoranSMilovanovic, Ivana_Isadora, Jayprakash12345, QZanden, EBjune, Miriya52, merbst, LawExplorer, Salgo60, D3r1ck01, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Lydia_Pintscher, Mbch331, Jay8g___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T195258: [weird] Wikidata SPARQL query results not the same when exported

2018-08-28 Thread Jonas
Jonas added a project: Wikidata-Campsite.
TASK DETAILhttps://phabricator.wikimedia.org/T195258EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: JonasCc: Aklapper, Pintoch, hoo, Seb35, abian, Lucas_Werkmeister_WMDE, VIGNERON, Lahi, Gq86, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Salgo60, 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] [Claimed] T202729: When creating a new Sense through wbeditentity the summary is confusing "Created a new entity"

2018-08-28 Thread Ladsgroup
Ladsgroup set the point value for this task to "5".Ladsgroup added a project: Wikidata-Senses-Iteration3.Ladsgroup claimed this task.Restricted Application added a project: User-Ladsgroup.
TASK DETAILhttps://phabricator.wikimedia.org/T202729EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: LadsgroupCc: Lydia_Pintscher, Addshore, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T188104: Improve Explorer on Query.Wikidata.org

2018-08-28 Thread Jonas
Jonas closed this task as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T188104EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: JonasCc: Divayg, Smalyshev, srishakatux, prssanna, Rammanojpotla, Akshatbhargava123, Lucas_Werkmeister_WMDE, Jonas, Aklapper, Lahi, Gq86, GoranSMilovanovic, Jayprakash12345, QZanden, EBjune, merbst, LawExplorer, Salgo60, Xmlizer, jkroll, 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] [Updated] T175312: WDQS word cloud view gets broken on zoom

2018-08-28 Thread Jonas
Jonas added a project: Wikidata-Campsite.
TASK DETAILhttps://phabricator.wikimedia.org/T175312EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: JonasCc: gerritbot, Smalyshev, Jonas, Aklapper, Yurik, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, merbst, LawExplorer, Salgo60, Avner, Lewizho99, Maathavan, Gehel, FloNight, Xmlizer, jkroll, 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] [Updated] T202912: [W4Q1iwpEEj4AAG9APN4AAAAK] /wiki/Albert_Einstein MediaWiki\Services\NoSuchServiceException from line 445 of /srv/mediawiki/php-master/includes/services/S

2018-08-28 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.32-release-notes (WMF-deploy-2018-08-28 (1.32.0-wmf.19)).
TASK DETAILhttps://phabricator.wikimedia.org/T202912EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Addshore, ReleaseTaggerBotCc: gerritbot, WMDE-leszek, Pablo-WMDE, Addshore, TerraCodes, Liuxinyu970226, Aklapper, Jdlrobson, Mringgaard, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, Wikidata-bugs, aude, Lydia_Pintscher, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T202912: [W4Q1iwpEEj4AAG9APN4AAAAK] /wiki/Albert_Einstein MediaWiki\Services\NoSuchServiceException from line 445 of /srv/mediawiki/php-master/includes/services/Se

2018-08-28 Thread Addshore
Addshore closed this task as "Resolved".Addshore added a comment.
Just confirmed that both links on beta now work againTASK DETAILhttps://phabricator.wikimedia.org/T202912EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: gerritbot, WMDE-leszek, Pablo-WMDE, Addshore, TerraCodes, Liuxinyu970226, Aklapper, Jdlrobson, Mringgaard, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, Wikidata-bugs, aude, Lydia_Pintscher, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T195752: Migrate search integration of ArticlePlaceholder to elastic

2018-08-28 Thread Addshore
Addshore added a project: Wikidata-Campsite-Iteration-∞.Addshore updated the task description. (Show Details)Addshore set the point value for this task to "8".
CHANGES TO TASK DESCRIPTION... - Calls to the API module should have a short timeout and should fail gracefully & log success / failure rates

**Pointers**

This would be replacing the search interactor with a new interactor / service that would call the API instead: https://github.com/wikimedia/mediawiki-extensions-ArticlePlaceholder/blob/master/includes/SearchHookHandler.php#L72
TASK DETAILhttps://phabricator.wikimedia.org/T195752EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Legoktm, Aleksey_WMDE, Aklapper, Addshore, Lydia_Pintscher, Ladsgroup, Lahi, Gq86, GoranSMilovanovic, lisong, QZanden, LawExplorer, Salgo60, 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] T202848: Change property suggester to use hook instead of monkey patching

2018-08-28 Thread Addshore
Addshore added a project: Wikidata-Campsite-Iteration-∞.Addshore set the point value for this task to "8".
TASK DETAILhttps://phabricator.wikimedia.org/T202848EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Aklapper, Jonas, Lahi, Gq86, GoranSMilovanovic, Jayprakash12345, QZanden, LawExplorer, Salgo60, Izno, 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] [Closed] T188502: Implement multilingual captions in UploadWizard

2018-08-28 Thread matthiasmullie
matthiasmullie closed this task as "Resolved".matthiasmullie added a comment.
Description copy was updated already. I guess I just hadn't gotten around to updating it up labs - done now!TASK DETAILhttps://phabricator.wikimedia.org/T188502EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: matthiasmullieCc: kaldari, matmarex, Base, Cparle, Ramsey-WMF, PDrouin-WMF, gerritbot, matthiasmullie, Aklapper, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, E1presidente, Darkminds3113, Anooprao, Sksvdbvd, SandraF_WMF, Bsandipan, Youssefalli1, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Tramullas, Acer, V4switch, LawExplorer, Lewizho99, Maathavan, Susannaanas, Wong128hk, Aschroet, Jane023, Wikidata-bugs, aude, Ricordisamoa, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Matanya, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T202712: Beta feature for constraint suggestions

2018-08-28 Thread Addshore
Addshore added projects: Wikidata-Campsite-Iteration-∞, WMDE-Design.Addshore updated the task description. (Show Details)Restricted Application added a project: Design.
CHANGES TO TASK DESCRIPTION...Therefore we would like to create a beta feature allowing users to enable constraint suggestions for all properties.


Query for all properties that have a allowed qualifiers constraint definition...http://tinyurl.com/yd3hdeon

**Tasks**
 [] This will need a beta feature icon.
 [] This will need beta feature text description
 [] Writing the code to make it a beta feature

**Tech tips**
This is in WikibaseQualityConstraints at https://github.com/wikimedia/mediawiki-extensions-WikibaseQualityConstraints/blob/master/modules/suggestions.js#L93TASK DETAILhttps://phabricator.wikimedia.org/T202712EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Aklapper, Jonas, A.S.Kochergin, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Salgo60, JGirault, 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] T202712: Beta feature for constraint suggestions

2018-08-28 Thread Addshore
Addshore set the point value for this task to "5".
TASK DETAILhttps://phabricator.wikimedia.org/T202712EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Aklapper, Jonas, A.S.Kochergin, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Salgo60, JGirault, 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] T202890: Collapse icon of mini map not present in build

2018-08-28 Thread Addshore
Addshore added a project: Wikidata-Campsite-Iteration-∞.Addshore set the point value for this task to "2".
TASK DETAILhttps://phabricator.wikimedia.org/T202890EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Salgo60, Aklapper, Jonas, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, 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] [Updated] T202891: Embed toolbars are hidden behind map controls

2018-08-28 Thread Addshore
Addshore added a project: Wikidata-Campsite-Iteration-∞.Addshore set the point value for this task to "2".
TASK DETAILhttps://phabricator.wikimedia.org/T202891EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Salgo60, Aklapper, Jonas, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, 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] [Updated] T202265: Add 'tmp1' index that is in WMF production to the Wikibase install SQL files

2018-08-28 Thread Addshore
Addshore set the point value for this task to "3".Addshore added a project: Wikidata-Campsite-Iteration-∞.
TASK DETAILhttps://phabricator.wikimedia.org/T202265EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Marostegui, Ladsgroup, Addshore, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Salgo60, 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] T202265: Add 'tmp1' index that is in WMF production to the Wikibase install SQL files

2018-08-28 Thread Addshore
Addshore added a comment.
We could also try to add a Comment for the index in the SQL itself.TASK DETAILhttps://phabricator.wikimedia.org/T202265EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Marostegui, Ladsgroup, Addshore, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Salgo60, 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] T201995: Travis CI for wikibase-docker is blocked by hadolint Linting failure

2018-08-28 Thread Addshore
Addshore added a project: Wikidata-Campsite-Iteration-∞.
TASK DETAILhttps://phabricator.wikimedia.org/T201995EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Addshore, Aklapper, Tarrow, Lahi, Gq86, GoranSMilovanovic, QZanden, Gstupp, LawExplorer, Salgo60, Abbe98, 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] T201995: Travis CI for wikibase-docker is blocked by hadolint Linting failure

2018-08-28 Thread Addshore
Addshore set the point value for this task to "3".
TASK DETAILhttps://phabricator.wikimedia.org/T201995EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Addshore, Aklapper, Tarrow, Lahi, Gq86, GoranSMilovanovic, QZanden, Gstupp, LawExplorer, Salgo60, Abbe98, 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] T202265: Add 'tmp1' index that is in WMF production to the Wikibase install SQL files

2018-08-28 Thread Addshore
Addshore added a project: Wikidata-Campsite.
TASK DETAILhttps://phabricator.wikimedia.org/T202265EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Marostegui, Ladsgroup, Addshore, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Salgo60, 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] T202979: Separate statements for authority control in lexemes like in Q-items

2018-08-28 Thread KaMan
KaMan created this task.KaMan added projects: Wikidata, Lexicographical data.
TASK DESCRIPTIONThere is increasing number of properties for authority control in lexemes https://www.wikidata.org/w/index.php?title=Special%3AWhatLinksHere=Q56216056=120 they overload lexeme pages, see for example https://www.wikidata.org/wiki/Lexeme:L13356 where there is one normal statement and five external-ids for authority control. My proposition is to separate these statements like it is done in Q-items.TASK DETAILhttps://phabricator.wikimedia.org/T202979EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Lea_Lacroix_WMDE, KaManCc: Lexicographical data, Lea_Lacroix_WMDE, KaMan, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T202749: Document action=query=wbcontentlanguages on mediawiki.org

2018-08-28 Thread Addshore
Addshore claimed this task.Restricted Application added a project: User-Addshore.
TASK DETAILhttps://phabricator.wikimedia.org/T202749EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: AddshoreCc: Lucas_Werkmeister_WMDE, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Lydia_Pintscher, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


  1   2   >