[Wikidata-bugs] [Maniphest] [Commented On] T202602: Consider renaming language identifier (i.e. on the left of sitelinks of items) of Cantonese from "zh_yue" to "yue"

2020-05-25 Thread C933103
C933103 added a comment.


  Why "consider" instead of just requesting it this way?

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

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

To: C933103
Cc: C933103, Addshore, daniel, Ladsgroup, deryckchan, Hello903hello, Aklapper, 
Liuxinyu970226, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T252019: Remove Wikibase assumption that a false dbname is the only way to refer to the local DB.

2020-05-25 Thread gerritbot
gerritbot added a comment.


  Change 598544 had a related patch set uploaded (by Hoo man; owner: Hoo man):
  [mediawiki/core@master] ILoadBalancer::getConnection: Clarify when to 
reuseConnection
  
  https://gerrit.wikimedia.org/r/598544

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

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

To: Addshore, gerritbot
Cc: Aklapper, WMDE-leszek, Ladsgroup, Addshore, Blissjay007, Oblanco79, 
Alter-paule, Beast1978, Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, 
Iflorez, darthmon_wmde, Kent7301, alaa_wmde, Meekrab2012, joker88john, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, elukey, _jensen, rosalieper, 
Scott_WUaS, Jonas, Wikidata-bugs, aude, 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] T173052: Show OpenStreetMap features associated with Wikidata items

2020-05-25 Thread Pigsonthewing
Pigsonthewing added a comment.


  In T173052#6161412 , @mxn 
wrote:
  
  > In T173052#6161088 , 
@Pigsonthewing wrote:
  >
  >> 
  
  
  
  >> I'm no coder, but I would have thought the script can read the content of 
the page on which it occurs.
  >
  > It can, but for instance, there might only be a statement that the subject 
is an instance of an artificial language; a SPARQL query would be required to 
crawl up the subclass hierarchy to determine that it’s indeed a language.
  
  Understood, but there are a few massively-used classes for which the script 
could not attempt to call overpass; such as humans, scholarly articles, 
chemical compounds, etc.

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

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

To: Pigsonthewing
Cc: The_RedBurn, Yurik, Salgo60, Jc86035, debt, TheDJ, Planemad, Pigsonthewing, 
Aklapper, mxn, PokestarFan, Alilje, darthmon_wmde, Nabetaro, Nandana, MSantos, 
Lahi, Gq86, Looniverse, GoranSMilovanovic, QZanden, Orienteerix, LawExplorer, 
Ddproxy, _jensen, rosalieper, JGirault, Scott_WUaS, phabyogi, GAllegre, 
Susannaanas, ferdbold, lxbarth, Wikidata-bugs, aude, Mbch331, Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T253125: Federated Properties, ApiEntityLookup, trying to get data that was not prefetched.

2020-05-25 Thread Addshore
Addshore added a comment.


  I dug into some of this code a little bit more and put some findings below.
  
  I believe that rather than use and abuse this entity info thing, we should 
create our own new things specifically for prefetching referenced entities if 
needed.
  
  EntityInfo as a concept is not currently intentionally used and should be 
removed.
  
  **What is EntityInfo, why does it exist and is it still used?**
  
  - EntityInfo was introduced back in the day to "prefetch" entity info needed 
for rendering a page, this includes terms needed for rendering a page
  - The EntityInfo builder currently uses the terms storage tables, and during 
the rollout of wb_terms towards the end another layer of caching needed to be 
added in front of it 
https://gerrit.wikimedia.org/r/#/c/mediawiki/extensions/Wikibase/+/546659/
  - When the "formattercache" was introduced in 
https://gerrit.wikimedia.org/r/#/c/mediawiki/extensions/Wikibase/+/441010/30/lib/includes/Formatters/WikibaseValueFormatterBuilders.php
 the use of `labelDescriptionLookupFactory->getLabelDescriptionLookup` was 
removed, which would have use EntityInfo based term lookups for formatting 
entity ID values. The new behaviour instead introduced a caching lookup that 
always used a EntityRetrievingTermLookup
  - Despite not using the entityinfo, it hasn't since been cleaned up / removed 
(I seem to remember there being a ticket relating to this? but I can't find it)
  
  As a result of the above, one of the first things that happens when rendering 
an entity is getting the entity info, which is then not used at all during 
rendering, as this is all now done via the formatted cache things.
  
  **Some other interesting observations (hinting toward removing entity info):**
  
  - `FormatterLabelDescriptionLookupFactory::OPT_LABEL_DESCRIPTION_LOOKUP` is 
likely fairly pointless now, as this option is not looked at (see above) when 
creating the formatted to be used for most things. However
- `WikibaseValueFormatterBuilders::newItemPropertyIdHtmlLinkFormatter` uses 
the formatted cache, and creates its own lookup
- Other methods in this class still call 
`labelDescriptionLookupFactory->getLabelDescriptionLookup` which includes a 
check for OPT_LABEL_DESCRIPTION_LOOKUP These include:
  - newPlainEntityIdFormatter (seems it might need terms? it is a plain 
formatter that is used in newEntityIdFormatter (see next line)
  - newEntityIdFormatter
  - getVocabularyUriFormatter
- However adding breakpoints locally to the EntityInfoTermLookup class 
methods didn't result in being hit
- Adding a breakpoint to the OPT_LABEL_DESCRIPTION_LOOKUP case in 
`getLabelDescriptionLookup` resulted in hits for:
  - getVocabularyUriFormatter (so this code path still gets the terminfo 
lookup specified)
  - newLabelsProviderEntityIdHtmlLinkFormatter (we just touched / are 
touching this in fed prop) (it is called by newEntityIdFormatter)
- All calls to this should be able to use the formatter cache and we remove 
EntityInfo
  
  **Some bookmarks of the code areas I was looking at throughout this**
  F31841798: image.png 
  
  **Impact of removal**
  
  The current rate of requests to this EntityInfo builder stuff: 
https://grafana.wikimedia.org/d/u5wAugyik/wikibase-statsdrecordingsimplecache?panelId=2=1=now-1h=now
  The rate of requests for EntityInfo is essentially the same as the # of 
parser output generations for wikibase data.
  Looking at the cache metrics
  In a 12 hour period this is ~120million calls, so 10 million an hour, or 166k 
per min or ~2700 calls per second
  The cache hits come from local server cache, but the misses result in lookups 
from the terms storage db tables.
  
  We also track the db calls for this code path that may not be needed on 
https://grafana.wikimedia.org/d/00548/wikibase-sql-term-storage?orgId=1=30s
  You can see these in the top panel for the 
"select.EntityInfoBuilder_collectTermsForEntities" metric.
  Averaging 4.7k ops a second/minute (TBA confirm this??)
  
  Needless to say that not doing all of this stuff that is not needed should 
speed things up and reduce memory consumption.
  It will also remove an old outdated concept that should have been killed some 
while ago.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T232584: Step 1: Production deployment checklist

2020-05-25 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  Our communication has been around enabling it on Catalan Wikipedia only for 
now and we want to ensure that especially at the beginning communities get the 
chance to consciously opt-in.

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

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

To: Lydia_Pintscher
Cc: Lydia_Pintscher, Lucas_Werkmeister_WMDE, Addshore, Aklapper, Pablo-WMDE, 
Blissjay007, Oblanco79, Alter-paule, Beast1978, Un1tY, Sarai-WMDE, Hook696, 
Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, darthmon_wmde, Kent7301, Meekrab2012, 
joker88john, Michael, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] T232584: Step 1: Production deployment checklist

2020-05-25 Thread Pablo-WMDE
Pablo-WMDE added a comment.


  In T232584#6163607 , 
@Lydia_Pintscher wrote:
  
  > In T232584#6161922 , 
@Lucas_Werkmeister_WMDE wrote:
  >
  >> @Lydia_Pintscher: my second config change above also enables the feature 
for Wikidata itself. Does that make sense or should Wikidata wait until later? 
(Technically, I think it would be possible to enable the repo-only parts, which 
cawiki needs to function, from the client parts, but I don’t know if that makes 
much sense.)
  >
  > Only allowing it on Catalan would be best
  
  Mind elaborating about the reasons? Which disadvantages do we mitigate by not 
allowing bridge to run on wikidata itself? Thanks.

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

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

To: Pablo-WMDE
Cc: Lydia_Pintscher, Lucas_Werkmeister_WMDE, Addshore, Aklapper, Pablo-WMDE, 
Blissjay007, Oblanco79, Alter-paule, Beast1978, Un1tY, Sarai-WMDE, Hook696, 
Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, darthmon_wmde, Kent7301, Meekrab2012, 
joker88john, Michael, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] T232584: Step 1: Production deployment checklist

2020-05-25 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  In T232584#6161922 , 
@Lucas_Werkmeister_WMDE wrote:
  
  > @Lydia_Pintscher: my second config change above also enables the feature 
for Wikidata itself. Does that make sense or should Wikidata wait until later? 
(Technically, I think it would be possible to enable the repo-only parts, which 
cawiki needs to function, from the client parts, but I don’t know if that makes 
much sense.)
  
  Only allowing it on Catalan would be best but if it's a significant amount of 
effort to make that happen then I'd say we can live with it.

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

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

To: Lydia_Pintscher
Cc: Lydia_Pintscher, Lucas_Werkmeister_WMDE, Addshore, Aklapper, Pablo-WMDE, 
Blissjay007, Oblanco79, Alter-paule, Beast1978, Un1tY, Sarai-WMDE, Hook696, 
Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, darthmon_wmde, Kent7301, Meekrab2012, 
joker88john, Michael, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] T248840: Don’t polyfill Promise in Bridge modules

2020-05-25 Thread Michael
Michael edited projects, added Technical Improvements; removed Wikidata-Bridge.
Michael added a comment.


  @Lucas_Werkmeister_WMDE  and I looked into this today and encountered some 
problems with getting this to work. While it is correct that the promise 
polyfill is included by default (vuejs/vue-cli#1248 
, vuejs/vue-cli#5208 
), it should be possible to 
change that with the following as `babel.config.js` (possible trimming 
`polyfills` if those default polyfills are not needed):
  
module.exports = {
presets: [
[ '@vue/cli-plugin-babel/preset', {
exclude: [
'es.promise', // polyfilled via es6-promise 
ResourceLoader module instead
],
polyfills: [ 'es.array.iterator', 'es.object.assign' ],
} ],
],
};
  
  However, that currently doesn't prevent the `es.promise` polyfill from being 
included.
  
  The cause is to be found in `@vue/babel-preset-app` which is included by our 
`@vue/cli-plugin-babel/preset`.
   This handles the `exclude` parameter correctly through most of the file, but 
at the end 

 it requires `@babel/preset-env` again, but without including the preset 
options that were carefully constructed through that file. The cause for this 
seems to have been a bug in babel itself 
 for which adding that extra 
transpilation seems to be the recommended workaround 
. It is unclear whether that 
necessitates the inclusion of the promise polyfill. An upstream pull request 
 to use the envOptions also for 
that transpilation was created by @Lucas_Werkmeister_WMDE . Further it seems 
that the original babel bug was resolved 
 and the 
respective file in vue-cli is actively being worked on 
.
  
  So there is some hope that this improvement can be implemented soon™.
  
  (@Lucas_Werkmeister_WMDE feel free to correct me if my summary above can be 
improved)

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T252800: Regression: Option add links in other languages has disappeared

2020-05-25 Thread Aklapper
Aklapper merged tasks: T253526: Add links in the sidebar not longer 
available on Commons to connect categories with Wikidata items, T253507: Edit 
links (In other languages section) missing on Wiktionary, T253557: [BUG?] 
Add links is missing in the sidebar on Commons.
Aklapper added subscribers: MB-one, JAnD, Roy17, Raymond.

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

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

To: ovasileva, Aklapper
Cc: Raymond, Roy17, JAnD, MB-one, Ninovolador, Nikerabbit, WMDE-leszek, 
Ladsgroup, Jdforrester-WMF, polishdeveloper, Pginer-WMF, Edtadros, Ankry, 
Lydia_Pintscher, Mike_Peel, Lucas_Werkmeister_WMDE, Robby, Jdlrobson, hashar, 
Aklapper, Vriullop, Liuxinyu970226, Blissjay007, Oblanco79, sgrabarczuk, 
Alter-paule, Beast1978, Rileych, Un1tY, Demian, Hook696, Daryl-TTMG, 
RomaAmorRoma, E.S.A-Sheild, darthmon_wmde, Kent7301, holger.knust, Meekrab2012, 
joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Jayprakash12345, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Winter, 
WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Soum213, Taiwania_Justo, 
Scott_WUaS, Wong128hk, Wikidata-bugs, aude, Ebe123, Arrbee, santhosh, 
KartikMistry, Isarra, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Merged] T253526: "Add links" in the sidebar not longer available on Commons to connect categories with Wikidata items

2020-05-25 Thread Aklapper
Aklapper closed this task as a duplicate of T252800: Regression: Option add 
links in other languages has disappeared.

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

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

To: Aklapper
Cc: Roy17, Raymond, Aklapper, MB-one, CBogen, darthmon_wmde, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, Poyekhali, _jensen, rosalieper, 
Taiwania_Justo, Scott_WUaS, Ixocactus, Wong128hk, Wikidata-bugs, aude, 
El_Grafo, Dinoguy1000, Steinsplitter, Mbch331, Keegan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Merged] T252800: Regression: Option add links in other languages has disappeared

2020-05-25 Thread Mainframe98
Mainframe98 merged a task: T253580: #p-lang DIV missing from most wiki pages, 
in Vector, except in Wikipedia..
Mainframe98 added a subscriber: Ninovolador.

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

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

To: ovasileva, Mainframe98
Cc: Ninovolador, Nikerabbit, WMDE-leszek, Ladsgroup, Jdforrester-WMF, 
polishdeveloper, Pginer-WMF, Edtadros, Ankry, Lydia_Pintscher, Mike_Peel, 
Lucas_Werkmeister_WMDE, Robby, Jdlrobson, hashar, Aklapper, Vriullop, 
Liuxinyu970226, Blissjay007, Oblanco79, sgrabarczuk, Alter-paule, Beast1978, 
Rileych, Un1tY, Demian, Hook696, Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, 
darthmon_wmde, Kent7301, holger.knust, Meekrab2012, joker88john, CucyNoiD, 
Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, 
Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Jayprakash12345, Th3d3v1ls, Ramalepe, Liugev6, 
QZanden, LawExplorer, Winter, WSH1906, Lewizho99, Maathavan, _jensen, 
rosalieper, Soum213, Taiwania_Justo, Scott_WUaS, Wong128hk, Wikidata-bugs, 
aude, Ebe123, Arrbee, santhosh, KartikMistry, Isarra, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T251497: Adapt munging process for SDoC

2020-05-25 Thread dcausse
dcausse added a comment.


  The munger should exclude rdf:type statement by default:
  
SELECT ?o {
  wd:M19705716 a ?o .
}
  
  returns :
  
schema:ImageObject
schema:MediaObject
wikibase:Mediainfo
  
  similar query on query.wikidata.org do not return such statements.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T149456: Wikidata description change doesn't trigger mobile-sections update

2020-05-25 Thread Aklapper
Aklapper added a comment.


  In T149456#2783473 , 
@bearND wrote:
  
  > I want to keep this one open for a bit to give the Wikidata folks a chance 
to provide info if our solution could be improved. We might have to add more to 
the regex. There could be also a whole different way to restrict WD events to 
description changes.
  
  @bearND: 3.5 years later, did you ask Wikidata folks to provide info and have 
they provided it somewhere outside this task? :)
  Tasks should not remain stalled (and forgotten) forever (and I'm als 
wondering if this task should really have an assignee - probably not?).

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

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

To: Pchelolo, Aklapper
Cc: PokestarFan, GWicke, Niedzielski, mobrovac, daniel, aude, hoo, Pchelolo, 
Aklapper, Dbrant, Mholloway, gerritbot, bearND, Blissjay007, Confetti68, 
Oblanco79, Alter-paule, Beast1978, Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 
E.S.A-Sheild, darthmon_wmde, Kent7301, holger.knust, Meekrab2012, joker88john, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Sharvaniharan, 
Darkminds3113, Bsandipan, Lordiis, schoenbaechler, GoranSMilovanovic, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, Eevans, Hardikj, Wikidata-bugs, 
Jdforrester-WMF, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T253570: Clean up old stalled FileAnnotation tasks in Phabricator

2020-05-25 Thread Aklapper
Aklapper removed a project: Wikidata.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T253570: Clean up old stalled FileAnnotation tasks in Phabricator

2020-05-25 Thread Aklapper
Aklapper added a parent task: T252522: (Semi)automatically close Phabricator 
tickets with status "stalled" after a while.

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

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

To: Aklapper
Cc: Aklapper, MarkTraceur, CBogen, JKSTNK, Lahi, PDrouin-WMF, E1presidente, 
Ramsey-WMF, Cparle, Anooprao, SandraF_WMF, Tramullas, Acer, Salgo60, 
Silverfish, Susannaanas, Aschroet, Jane023, Wikidata-bugs, Base, 
matthiasmullie, Ricordisamoa, brion, Wesalius, Prtksxna, Lydia_Pintscher, 
Fabrice_Florin, Raymond, Steinsplitter
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T253570: Clean up old stalled FileAnnotation tasks in Phabricator

2020-05-25 Thread Aklapper
Aklapper created this task.
Aklapper added projects: SDC General, FileAnnotations.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  //CC'ing @MarkTraceur due to being listed as author on 
https://www.mediawiki.org/wiki/Extension:FileAnnotations.
  Adding #SDC_General  as 
it seems to be the WMF successor team to #Multimedia 
 if I interpret `T240281` 
correctly.//
  
  The task graph in T151327  lists 
many subtasks which all have been "stalled" for years. This should not be the 
case.
  
  "Stalled" means "If a task is waiting for further input (e.g. from the task 
author or a third party like upstream) and can currently not be acted on, the 
Stalled status is temporarily given. The Stalled status can also be given when 
a task is waiting for its subtask(s) to be resolved first." 

  
  https://www.mediawiki.org/wiki/Extension:FileAnnotations even states "This 
extension is currently not actively maintained!"
  
  https://phabricator.wikimedia.org/maniphest/query/7PklnLu4rZTR/#R lists 37 
open tasks, most of them with "Medium" priority ("someone is still planning to 
work on it" 
).
  
  Can someone please clarify what's the status and decide what to do with these 
tasks? 
  //For the records: If you wanted to express that nobody is currently working 
on this task, then the assignee should be removed and/or priority could be 
lowered instead. If work on this task is blocked by another task, then that 
other task should be added via Edit Related Tasks... > Edit Subtasks. If this 
task is stalled on an upstream project, then the #upstream 
 tag should be added. If this 
task requires info from the task reporter, then there should be instructions 
which info is needed. If this task is out of scope and nobody should ever work 
on this, then task status should have the "Declined" status.)//
  Thanks.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T253552: Detailed Reports from game DB

2020-05-25 Thread ItamarWMDE
ItamarWMDE added a comment.


  This task depends on T25 , and 
can only be picked up when it is complete.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T251111: measuring acceptance rate

2020-05-25 Thread ItamarWMDE
ItamarWMDE added a subtask: T253552: Detailed Reports from game DB.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T253552: Detailed Reports from game DB

2020-05-25 Thread ItamarWMDE
ItamarWMDE added a parent task: T25: measuring acceptance rate.

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252001: Pipe1: possible reference statements should include statements who's only reference is imported from a Wikimedia project

2020-05-25 Thread darthmon_wmde
darthmon_wmde closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T248992: Pipe 4: Filter extracted values by statistical Wikidata Item matching (matching by value)

2020-05-25 Thread darthmon_wmde
darthmon_wmde closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T251266: Run whole pipeline for the first time and load into game

2020-05-25 Thread darthmon_wmde
darthmon_wmde closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252036: Rewrite unit tests for Pipe 1

2020-05-25 Thread darthmon_wmde
darthmon_wmde closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T251282: do not search for references for statements on a few classes of Items

2020-05-25 Thread darthmon_wmde
darthmon_wmde closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252040: Pipe 2: Scraping some URLs throws an exception

2020-05-25 Thread darthmon_wmde
darthmon_wmde closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252614: Exception in normalizer: "Could not expand input before flattening"

2020-05-25 Thread darthmon_wmde
darthmon_wmde closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252781: Don't show IMDB, Musicbrainz and other blacklisted references from WikidataGame

2020-05-25 Thread darthmon_wmde
darthmon_wmde closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252792: Ensure there are no escaped unicode characters visible on the tile

2020-05-25 Thread darthmon_wmde
darthmon_wmde closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252856: Setup git on toolforge to improve development workflow

2020-05-25 Thread darthmon_wmde
darthmon_wmde closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252779: Investigate why IMDB and Musicbrainz URLs are being scraped

2020-05-25 Thread darthmon_wmde
darthmon_wmde closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252937: Ask a more specific question in the game

2020-05-25 Thread darthmon_wmde
darthmon_wmde closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252637: Add item to game tile description

2020-05-25 Thread darthmon_wmde
darthmon_wmde closed this task as "Resolved".

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

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

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


[Wikidata-bugs] [Maniphest] [Merged] T253526: "Add links" in the sidebar not longer available on Commons to connect categories with Wikidata items

2020-05-25 Thread Aklapper
Aklapper merged a task: T253557: [BUG?] Add links is missing in the 
sidebar on Commons.
Aklapper added a subscriber: Roy17.

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

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

To: Aklapper
Cc: Roy17, Raymond, Aklapper, MB-one, CBogen, darthmon_wmde, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, Poyekhali, _jensen, rosalieper, 
Taiwania_Justo, Scott_WUaS, Ixocactus, Wong128hk, Wikidata-bugs, aude, 
El_Grafo, Dinoguy1000, Steinsplitter, Mbch331, Keegan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T253125: Federated Properties, ApiEntityLookup, trying to get data that was not prefetched.

2020-05-25 Thread Addshore
Addshore added a comment.


  So we did a task break down related to this ticket (although the immediate 
issue described in this ticket has already been fixed).
  
  The rough breakdown below should move the prefetching of data for federated 
properties to before "any" (perhaps) data is used.
  
  - Move the code from SingleEntitySourceServices::getEntityInfoBuilder into 
the entity type wiring files
  - Alter FullEntityParserOutput::getParserOutput to call getEntityInfo earlier 
and always (Need to think and check this is okay...) (See Fig1)
- Need to figure out what makes the calls to get parser output without 
getting the HTML?
- And how much this code path is called
- And what the alter in logic might do?
- TODO investigate what this entity info lookup is still used for etc... 
(Might be leftover from https://phabricator.wikimedia.org/project/view/3407/ ? )
  - Implement an EntityInfoBuilder for federated properties that prefetches 
$entityIds using the ApiEntityLookup
  - Override the EntityInfoBuilder for federated properties to do the 
prefetching
  
  Fig1.
  F31841545: image.png 
  
  The prefetching for other cases such as the history page should already be 
covered in 
LanguageFallbackLabelDescriptionLookupFactory::newLabelDescriptionLookup which 
does a `prefetchTerms` using a `termBuffer`.
  However looking at ItemHandler::getActionOverrides, the 
newLabelDescriptionLookup call which would allow the prefetching currently 
doesn't pass in any entity ids so maybe this doesn't happen?
  TODO figure this out? This probably doesn't happen on Wikidata either that 
means? but should it? because of the now used terms caching stuff?

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T251275: [WDQS Streaming Updater] Update blazegraph based on the content present in the streaming updater output kafka stream

2020-05-25 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: dcausse, Maintenance_bot
Cc: dcausse, Aklapper, CBogen, darthmon_wmde, Nandana, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331, Blissjay007, 
Oblanco79, Alter-paule, Beast1978, Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 
E.S.A-Sheild, Kent7301, Meekrab2012, joker88john, CucyNoiD, NebulousIris, 
Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, 
Af420, Darkminds3113, Bsandipan, Lordiis, Adik2382, Th3d3v1ls, Ramalepe, 
Liugev6, WSH1906, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T253526: "Add links" in the sidebar not longer available on Commons to connect categories with Wikidata items

2020-05-25 Thread MB-one
MB-one updated the task description.

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

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

To: MB-one
Cc: Raymond, Aklapper, MB-one, CBogen, darthmon_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, Poyekhali, _jensen, rosalieper, 
Taiwania_Justo, Scott_WUaS, Ixocactus, Wong128hk, Wikidata-bugs, aude, 
El_Grafo, Dinoguy1000, Steinsplitter, Mbch331, Keegan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T251275: [WDQS Streaming Updater] Update blazegraph based on the content present in the streaming updater output kafka stream

2020-05-25 Thread gerritbot
gerritbot added a comment.


  Change 596484 **merged** by jenkins-bot:
  [wikidata/query/rdf@master] Collect various metrics for the stream updater 
consumer
  
  https://gerrit.wikimedia.org/r/596484

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

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

To: dcausse, gerritbot
Cc: dcausse, Aklapper, Blissjay007, Oblanco79, Alter-paule, Beast1978, CBogen, 
Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, darthmon_wmde, 
Kent7301, Meekrab2012, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, 
merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, 
Manybubbles, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T253526: "Add links" in the sidebar not longer available on Commons to connect categories with Wikidata items

2020-05-25 Thread MB-one
MB-one updated the task description.

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

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

To: MB-one
Cc: Raymond, Aklapper, MB-one, CBogen, darthmon_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, Poyekhali, _jensen, rosalieper, 
Taiwania_Justo, Scott_WUaS, Ixocactus, Wong128hk, Wikidata-bugs, aude, 
El_Grafo, Dinoguy1000, Steinsplitter, Mbch331, Keegan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T147946: Display banners on diff pages

2020-05-25 Thread Tgr
Tgr added a comment.


  The page title is set in `DifferenceEngine::showDiffPage`, you'd have to 
factor out that part into something that can be sanely overridden. Or, I guess, 
change the title from the DifferenceEngineOldHeaderNoOldRev and 
DifferenceEngineOldHeader hooks, although that's a rather ugly hack.

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

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

To: Tgr
Cc: Nirzar, gerritbot, Tgr, Nicolas_Raoul, Sumit, Jdlrobson, Aklapper, 
Andyrom75, Blissjay007, Oblanco79, Alter-paule, Beast1978, Un1tY, Hook696, 
Adidsone1, Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, Kent7301, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, NebulousIris, Gaboe420, Phukettaxigroup, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Af420, 
Darkminds3113, Bsandipan, Lordiis, Adik2382, Jayprakash12345, Th3d3v1ls, 
Ramalepe, Liugev6, Winter, WSH1906, Lewizho99, Maathavan, Jdrewniak, 
Wikidata-bugs, Lydia_Pintscher, Rxy
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T248840: Don’t polyfill Promise in Bridge modules

2020-05-25 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  See also this AC/DC commit 
,
 where I excluded the Promise polyfill in a plain webpack project. Hopefully 
it’s not a lot more complicated in conjunction with vue-cli-service.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T251490: Load data into the SPARQL Endpoint for Commons

2020-05-25 Thread gerritbot
gerritbot added a comment.


  Change 598456 had a related patch set uploaded (by ZPapierski; owner: 
ZPapierski):
  [wikidata/query/rdf@master] Set prefix file through runBlazegraph.sh
  
  https://gerrit.wikimedia.org/r/598456

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

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

To: gerritbot
Cc: Aklapper, Gehel, Blissjay007, Oblanco79, Alter-paule, Beast1978, CBogen, 
Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, darthmon_wmde, 
Kent7301, Meekrab2012, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, 
merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, 
Manybubbles, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T251490: Load data into the SPARQL Endpoint for Commons

2020-05-25 Thread gerritbot
gerritbot added a comment.


  Change 598453 abandoned by ZPapierski:
  Set prefix file through runBlazegraph.sh
  
  Reason:
  Moving to rdf repo
  
  https://gerrit.wikimedia.org/r/598453

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

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

To: gerritbot
Cc: Aklapper, Gehel, Blissjay007, Oblanco79, Alter-paule, Beast1978, CBogen, 
Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, darthmon_wmde, 
Kent7301, Meekrab2012, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, 
merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, 
Manybubbles, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T147946: Display banners on diff pages

2020-05-25 Thread Andyrom75
Andyrom75 added a comment.


  @Jdlrobson I can't belive that showing banner in diff pages (as happened 
before) is technically not feasible. Could you refresh the status of this task 
and eventually give us some feedback?

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

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

To: Andyrom75
Cc: Nirzar, gerritbot, Tgr, Nicolas_Raoul, Sumit, Jdlrobson, Aklapper, 
Andyrom75, Blissjay007, Oblanco79, Alter-paule, Beast1978, Un1tY, Hook696, 
Adidsone1, Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, Kent7301, Meekrab2012, 
joker88john, DannyS712, CucyNoiD, NebulousIris, Gaboe420, Phukettaxigroup, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Af420, 
Darkminds3113, Bsandipan, Lordiis, Adik2382, Jayprakash12345, Th3d3v1ls, 
Ramalepe, Liugev6, Winter, WSH1906, Lewizho99, Maathavan, Jdrewniak, 
Wikidata-bugs, Lydia_Pintscher, Rxy
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T251490: Load data into the SPARQL Endpoint for Commons

2020-05-25 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: gerritbot
Cc: Aklapper, Gehel, Blissjay007, Oblanco79, Alter-paule, Beast1978, CBogen, 
Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, darthmon_wmde, 
Kent7301, Meekrab2012, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, 
merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, 
Manybubbles, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T251490: Load data into the SPARQL Endpoint for Commons

2020-05-25 Thread gerritbot
gerritbot added a comment.


  Change 598453 had a related patch set uploaded (by ZPapierski; owner: 
ZPapierski):
  [wikidata/query/deploy@master] Set prefix file through runBlazegraph.sh
  
  https://gerrit.wikimedia.org/r/598453

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

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

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


[Wikidata-bugs] [Maniphest] [Claimed] T251111: measuring acceptance rate

2020-05-25 Thread ItamarWMDE
ItamarWMDE claimed this task.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T253552: Detailed Reports from game DB

2020-05-25 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  Ah and I forgot the examples: an example of 5 random references for each of 
those cases would help get a better understanding of them

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T253552: Detailed Reports from game DB

2020-05-25 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  I believe the most helpful/highest priority ones are:
  
  - per external ID: total number of accepted references, total number of 
rejected references, ratio between the two <- with this we can know which 
Properties to potentially blacklist as well as which references we can 
potentially just import whole-sale
  - per datatype:  total number of accepted references, total number of 
rejected references, ratio between the two <- with this we can know which of 
the data types are especially problematic and worthy of improving to increase 
the acceptance rate
  - per Property: total number of accepted references, total number of rejected 
references, ratio between the two <- with this we can know if there are 
Properties like country which are particularly difficult for us to get correct 
references for

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

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

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


[Wikidata-bugs] [Maniphest] [Edited] T253552: Detailed Reports from game DB

2020-05-25 Thread ItamarWMDE
ItamarWMDE updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T251271: Improve Storage Reading

2020-05-25 Thread ItamarWMDE
ItamarWMDE edited projects, added Wikidata - Reference Hunt - Sprint 6; removed 
Wikidata - Reference Treasure Hunt.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T253546: Document Running of the Pipeline

2020-05-25 Thread ItamarWMDE
ItamarWMDE edited projects, added Wikidata - Reference Hunt - Sprint 6; removed 
Wikidata - Reference Treasure Hunt.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T253552: Detailed Reports from game DB

2020-05-25 Thread ItamarWMDE
ItamarWMDE edited projects, added Wikidata - Reference Hunt - Sprint 6; removed 
Wikidata - Reference Treasure Hunt.

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

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

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


[Wikidata-bugs] [Maniphest] [Created] T253552: Detailed Reports from game DB

2020-05-25 Thread Tarrow
Tarrow created this task.
Tarrow added a project: Wikidata - Reference Treasure Hunt.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  @Lydia_Pintscher We could do with help clarifying this:
  
  > Some details about which types of references are wanted or not (e.g. by 
external Id or by property Id, which references people are rejecting)
  
  Specifically what kind of tables / data would you want to see (and ideally 
with some priority). Some ideas we had:
  
  For a given property (of an un-referenced statement) which references were 
rejected? e.g. "Country P17" has ( dump of rejected data ) rejected
  
  For a given property (of an un-referenced statement) what was the ratio of 
rejected to accepted references? e.g. "Country P17" has 11/109: 
accepted/rejected references
  
  For a given external id type (that we scraped) which references were 
rejected? e.g. "WorldCat P7859 " has 
(dump of rejected data) as rejected
  For a given external id type (that we scraped) what was the ratio of rejected 
to accepted references? e.g. "WorldCat P7859 
" has  67/567 accepted/rejected 
references

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

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

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

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


[Wikidata-bugs] [Maniphest] [Edited] T251111: measuring acceptance rate

2020-05-25 Thread Tarrow
Tarrow updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] [Created] T253548: Document developing on the Pipeline

2020-05-25 Thread Tarrow
Tarrow created this task.
Tarrow added a project: Wikidata - Reference Treasure Hunt.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
- Acceptance Criteria
  [ ] Improving API documentation should be merged
  
  Notes:
  This would enable people to replace an existing pipe implementation with an 
alternative one
  This would also help people to understand what is going on in the python 
implementation

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

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

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

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


[Wikidata-bugs] [Maniphest] [Created] T253546: Document Running of the Pipeline

2020-05-25 Thread Tarrow
Tarrow created this task.
Tarrow added a project: Wikidata - Reference Treasure Hunt.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
- Acceptance Criteria **
  [ ] Documentation is merged
  
  It should touch on (at least) the following topics:
  Note: We say there is no permanent production deployment; so we don't need to 
keep the VM running
  
  [ ] Need to link to documentation on how to set up a VM; e.g. cloudvps 
documentation on WikiTech
  [ ] How to actually run the pipes
  [ ] Hints about how to move the references about and put them on toolforge 
(itag says separate ticket for this bit)
  [ ] We should also include instructions on killing the server afterwards

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

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

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

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


[Wikidata-bugs] [Maniphest] [Edited] T251271: Improve Storage Reading

2020-05-25 Thread Tarrow
Tarrow updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T251111: measuring acceptance rate

2020-05-25 Thread Tarrow
Tarrow edited projects, added Wikidata - Reference Hunt - Sprint 6; removed 
Wikidata - Reference Treasure Hunt.

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

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

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


[Wikidata-bugs] [Maniphest] [Edited] T251111: measuring acceptance rate

2020-05-25 Thread Tarrow
Tarrow updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] [Retitled] T253526: "Add links" in the sidebar not longer available on Commons to connect categories with Wikidata items

2020-05-25 Thread Raymond
Raymond renamed this task from "Interwiki section not available on Commons" to 
""Add links" in the sidebar not longer available on Commons to connect 
categories with Wikidata items".
Raymond added a project: Wikidata.

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

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

To: Raymond
Cc: Raymond, Aklapper, MB-one, CBogen, darthmon_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, Poyekhali, _jensen, rosalieper, 
Taiwania_Justo, Scott_WUaS, Ixocactus, Wong128hk, Wikidata-bugs, aude, 
El_Grafo, Dinoguy1000, Steinsplitter, Mbch331, Keegan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T234162: Duplicate statements by QuickStatements within one batch

2020-05-25 Thread M2k_dewiki
M2k_dewiki added a comment.


  Also see 
https://www.wikidata.org/wiki/User_talk:Bargioni#Creation_of_duplicates

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

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

To: M2k_dewiki
Cc: Epidosis, M2k_dewiki, ArthurPSmith, Aklapper, Magnus, Daniel_Mietchen, 
darthmon_wmde, Nandana, Zylc, 1978Gage2001, Lahi, Gq86, GoranSMilovanovic, 
DSquirrelGM, Jayprakash12345, Chicocvenancio, QZanden, Tbscho, LawExplorer, 
JJMC89, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, Jitrixis, aude, 
Gryllida, scfc, Mbch331, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T243590: Fix WikibaseDataModel CI for php 7.4

2020-05-25 Thread toan
toan claimed this task.

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

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

To: toan
Cc: Pablo-WMDE, WMDE-leszek, Daimona, Jdforrester-WMF, srishakatux, Reedy, 
Addshore, Aklapper, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Nikerabbit, MaxSem, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T253519: web UI intransparently overwriting claims

2020-05-25 Thread Kulandru_mor
Kulandru_mor created this task.
Kulandru_mor added a project: Wikidata.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  in WD's AJAX web interface, if you add something and then go back and forth 
in your browsing history, the page doesn't reflect your last change unless you 
do a full page reload. trying to add a similar claim now overwrites your last 
claim.
  
  reproduction:
  if you added e.g. a reference URL, go back and forth in browsing history, 
again add a reference claim to the same claim, your (now invisible) first one 
gets overwritten
  
  example: 
  
https://www.wikidata.org/w/index.php?title=Q16927612=next=1189671759

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T243590: Fix WikibaseDataModel CI for php 7.4

2020-05-25 Thread WMDE-leszek
WMDE-leszek edited projects, added Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞); removed Wikidata-Campsite.

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

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

To: WMDE-leszek
Cc: Pablo-WMDE, WMDE-leszek, Daimona, Jdforrester-WMF, srishakatux, Reedy, 
Addshore, Aklapper, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Nikerabbit, MaxSem, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T241382: Search suggestion does not allow middle mouse click to open search result in a new tab

2020-05-25 Thread Base
Base added a comment.


  I also have this issue. Firefox 76.0.1 (64-bit) on Ubuntu 20.04

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

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

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


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T232584: Step 1: Production deployment checklist

2020-05-25 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a subscriber: Lydia_Pintscher.
Lucas_Werkmeister_WMDE added a comment.


  @Lydia_Pintscher: my second config change above also enables the feature for 
Wikidata itself. Does that make sense or should Wikidata wait until later? 
(Technically, I think it would be possible to enable the repo-only parts, which 
cawiki needs to function, from the client parts, but I don’t know if that makes 
much sense.)

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lydia_Pintscher, Lucas_Werkmeister_WMDE, Addshore, Aklapper, Pablo-WMDE, 
Blissjay007, Oblanco79, Alter-paule, Beast1978, Un1tY, Sarai-WMDE, Hook696, 
Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, darthmon_wmde, Kent7301, Meekrab2012, 
joker88john, Michael, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unassigned] T252787: Make Property ID visible in user language

2020-05-25 Thread Ladsgroup
Ladsgroup removed Ladsgroup as the assignee of this task.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T253485: Add a Lua call that returns a list of defined properties without requiring a call to getEntity

2020-05-25 Thread Verdy_p
Verdy_p added a comment.


  And please add getEntityByLang(lang), which will implement language 
fallbacks, so that we can load (and cache) entities only using relevant 
languages; and remove all sitelinks from this call: sitelinks can be loaded 
selectively on specific entities.
  
  The cache of entities with selective lang could store more entities without 
more cost in memory (for now it's limited to 15 entities, not enough for 
infoboxes and many Lua modules that perform repeated calls to the wikidata 
server for the same entity)
  
  And as I said in Commons, the current JSON model is way to verbose to be 
exposed "as is" in Lua:
  
  - compress snaks and datavalues into a single table:
- remove "snaktype" and "datatype" internals, just keep "type"
- remove "datavalue", just use "value"
  - remove superfluous language codes and sitecodes in individual labels, 
descriptions, and aliases and the subable grouping them with the actual value.
  
  This can become a new more compact JSON model (the old model is just a legacy 
that may be kept for compatibility but no longer recommanded).
  
  I've made tests already, and the number of tables for a full entity (even 
without filtering any language, or sitelinks) is divided by 3, the total number 
of strings is also divided by 4 to 5 sometimes more, and using it in Lua 
modules is much faster and simpler (with mich less table lookups, so it saves 
CPU time as well)!
  
  As well check that Scribunto uses the 32-bit version and not the 64-bit 
version of Lua (given the memory contraints of ~50MB for Lua scripts in 
Scribunto, the 64-bit version just wastes memory for lot of pointers inside 
tables and for pointing to strings, the 64-bit version would offer no interest 
as we will never allow scripts to use more than 3 Gigabytes).

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252935: Make reference URL clickable in the Wikidata Game

2020-05-25 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as "Resolved".
Lydia_Pintscher moved this task from Product Verification to Done on the 
Wikidata - Reference Hunt - Sprint 5 board.
Lydia_Pintscher added a comment.


  \o/

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

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252785: Make Property ID Readable in English

2020-05-25 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as "Resolved".
Lydia_Pintscher moved this task from Product Verification to Done on the 
Wikidata - Reference Hunt - Sprint 5 board.
Lydia_Pintscher added a comment.


  \o/

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

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

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

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


[Wikidata-bugs] [Maniphest] [Unblock] T252790: Improve display of extracted data

2020-05-25 Thread Lydia_Pintscher
Lydia_Pintscher closed subtask T252935: Make reference URL clickable in the 
Wikidata Game as Resolved.

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252854: Improve readibility of target of statement

2020-05-25 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as "Resolved".
Lydia_Pintscher moved this task from Product Verification to Done on the 
Wikidata - Reference Hunt - Sprint 5 board.
Lydia_Pintscher added a comment.


  \o/

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

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252782: Rearrange layout of game

2020-05-25 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as "Resolved".
Lydia_Pintscher moved this task from Product Verification to Done on the 
Wikidata - Reference Hunt - Sprint 5 board.
Lydia_Pintscher added a comment.


  \o/

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

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

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

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


[Wikidata-bugs] [Maniphest] [Closed] T252790: Improve display of extracted data

2020-05-25 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as "Resolved".
Lydia_Pintscher moved this task from Product Verification to Done on the 
Wikidata - Reference Hunt - Sprint 5 board.
Lydia_Pintscher added a comment.


  \o/

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

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

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

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


[Wikidata-bugs] [Maniphest] [Claimed] T252787: Make Property ID visible in user language

2020-05-25 Thread Ladsgroup
Ladsgroup claimed this task.
Restricted Application added a project: User-Ladsgroup.

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

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

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


[Wikidata-bugs] [Maniphest] [Unassigned] T165151: investigate if we can remove/minimize jumping when loading Special:NewLexeme

2020-05-25 Thread Jakob_WMDE
Jakob_WMDE removed Jakob_WMDE as the assignee of this task.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T251275: [WDQS Streaming Updater] Update blazegraph based on the content present in the streaming updater output kafka stream

2020-05-25 Thread gerritbot
gerritbot added a comment.


  Change 596461 **merged** by jenkins-bot:
  [wikidata/query/rdf@master] Add a main class to launch the new updater
  
  https://gerrit.wikimedia.org/r/596461

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

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

To: dcausse, gerritbot
Cc: dcausse, Aklapper, Blissjay007, Oblanco79, Alter-paule, Beast1978, CBogen, 
Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, darthmon_wmde, 
Kent7301, Meekrab2012, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, 
merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, 
Manybubbles, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T251275: [WDQS Streaming Updater] Update blazegraph based on the content present in the streaming updater output kafka stream

2020-05-25 Thread gerritbot
gerritbot added a comment.


  Change 596230 **merged** by jenkins-bot:
  [wikidata/query/rdf@master] Consume the streaming updater rdf stream and 
apply it to a rdf store
  
  https://gerrit.wikimedia.org/r/596230

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

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

To: dcausse, gerritbot
Cc: dcausse, Aklapper, Blissjay007, Oblanco79, Alter-paule, Beast1978, CBogen, 
Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, darthmon_wmde, 
Kent7301, Meekrab2012, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, 
merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, 
Manybubbles, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Merged] T253027: Add LabelEdit component to Termbox storybook

2020-05-25 Thread Pablo-WMDE
Pablo-WMDE merged a task: T227764: text input widget is missing in termbox 
storybook.
Pablo-WMDE added subscribers: Lydia_Pintscher, Charlie_WMDE.

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

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

To: toan, Pablo-WMDE
Cc: Charlie_WMDE, Lydia_Pintscher, hoo, Pablo-WMDE, WMDE-leszek, Aklapper, 
Blissjay007, Oblanco79, Alter-paule, Beast1978, Un1tY, Hook696, Daryl-TTMG, 
RomaAmorRoma, E.S.A-Sheild, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
Meekrab2012, joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, 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] T227764: text input widget is missing in termbox storybook

2020-05-25 Thread Pablo-WMDE
Pablo-WMDE closed this task as a duplicate of T253027: Add LabelEdit component 
to Termbox storybook.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T227764: text input widget is missing in termbox storybook

2020-05-25 Thread Pablo-WMDE
Pablo-WMDE added a comment.


  Reality has happened and T253027: Add LabelEdit component to Termbox 
storybook  was created in the mean 
time, which is effectively option #2. It's not done yet, but - according to my 
interpretation - the gist is/will be covered, so we can close this here.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T142082: Add another "Add statement" button on top to ensure consistent position

2020-05-25 Thread Sarai-WMDE
Sarai-WMDE added a project: UX-Debt.

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

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

To: Sarai-WMDE
Cc: Sarai-WMDE, WMDE-leszek, Pablo-WMDE, Herzi.Pinki, Eissink, 
Lea_Lacroix_WMDE, Draceane, Dvorapa, Roy17, Liuxinyu970226, Marsupium, KaMan, 
Moebeus, PokestarFan, Daniel_Mietchen, Nikki, Esc3300, Jonas, Lydia_Pintscher, 
Nemo_bis, Aklapper, darthmon_wmde, Nandana, lucamauri, Lahi, Gq86, 
GoranSMilovanovic, QZanden, dachary, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Ricordisamoa, Tacsipacsi, Sjoerddebruin, 
Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T162588: Decide whether base data URI should be defined for foreign repositories

2020-05-25 Thread WMDE-leszek
WMDE-leszek closed this task as "Resolved".
WMDE-leszek added a comment.


  It has been decided - it is configurable. Implemented in (nothing to with 
"foreign repositories" as the concept was removed 
https://gerrit.wikimedia.org/r/c/mediawiki/extensions/Wikibase/+/527149

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T253027: Add LabelEdit component to Termbox storybook

2020-05-25 Thread toan
toan added a comment.


  I should have moved this back to in progress on when i stopped on thursday. 
The only step left was confirming that the selenium tests were ok, thats why i 
put the gerrit patches back to WIP.

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

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

To: toan
Cc: hoo, Pablo-WMDE, WMDE-leszek, Aklapper, Blissjay007, Oblanco79, 
Alter-paule, Beast1978, Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, 
Iflorez, darthmon_wmde, Kent7301, alaa_wmde, Meekrab2012, joker88john, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
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] T253027: Add LabelEdit component to Termbox storybook

2020-05-25 Thread toan
toan added a comment.


  In T253027#6154376 , @hoo 
wrote:
  
  > @toan Which of the two patches should be reviewed? Are they still WIP (if 
not, you should publish them for review in Gerrit).
  
  Hey, yes they are still not ready for review. The second one came to life as 
a on-boarding-refactoring-experiment, will try to get them ready today.

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

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

To: toan
Cc: hoo, Pablo-WMDE, WMDE-leszek, Aklapper, Blissjay007, Oblanco79, 
Alter-paule, Beast1978, Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, E.S.A-Sheild, 
Iflorez, darthmon_wmde, Kent7301, alaa_wmde, Meekrab2012, joker88john, 
CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, 
Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, 
Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, 
LawExplorer, WSH1906, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
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] T241382: Search suggestion does not allow middle mouse click to open search result in a new tab

2020-05-25 Thread Raymond
Raymond added a project: SDC General.
Restricted Application added a project: Wikidata.

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

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

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


[Wikidata-bugs] [Maniphest] [Claimed] T253245: Re-run SS1 to get an accurate list of whitelisted external identifiers

2020-05-25 Thread Ladsgroup
Ladsgroup claimed this task.
Restricted Application added a project: User-Ladsgroup.

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

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

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