[Wikidata-bugs] [Maniphest] [Commented On] T245352: [SUPPORT] Munging errors "Unrecognized subjects"

2020-02-17 Thread Addshore
Addshore added a comment.


  When you are munging are you passing the concept URI?
  
./munge.sh -f /tmp/rdfOutput -d /tmp/mungeOut -- --conceptUri 
http://someFancyLocation.foo
  
  What command exactly are you running?
  You should be using "https://artbase.rhizome.org; as the conceptUri there.

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T234070: Consider svgo use (via cssnano)

2020-02-17 Thread Volker_E
Volker_E added a comment.


  See also T178867 

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

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

To: Volker_E
Cc: Volker_E, Aklapper, Lucas_Werkmeister_WMDE, Pablo-WMDE, Sarai-WMDE, 
darthmon_wmde, Michael, 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] [Changed Project Column] T233520: page_props wikibase_item is sometimes not added to client pages when a sitelink is added on a repo

2020-02-17 Thread Ladsgroup
Ladsgroup moved this task from To Do to Peer Review on the Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞) board.
Ladsgroup added a comment.


  Okay, I spent several hours debugging and trying to figure out what's going 
on and how I0cd13c424 
 broke it.
  
  Spoiler alert: It's not logic in the hook or issues with virtual usages.
  
  Let's break down thesteps to reproduce it:
  
  - Create a page on wikipedia that includes some data data from a statement on 
wikidata item
- This creates a ParserCache entry without the wikidata data (stuff that 
goes into page_props)
  - Add a sitelink from the item to the page
- This happens in Wikidata, it means it triggers a row in wb_changes table 
that later gets dispatched to the client wiki
- The dispatched patch, sees a need to refreshLinks on that page and thus 
enqueues `ChangeNotification` job
- The `ChangeNotification` job enqueues a `refreshLinks` job
- The great `refreshLinks` job needs a ParserOutput object, it tries to 
load it but with the change merged it tries to load PO object from PC:
  - Oh there's one PC object already for when the page was made originally 
and my rootJobTimestamp + 10 seconds is still younger than the original PC
  - Look, the revision id hasn't changed since then, same as page_touched
  - Cool, let's just use the cached PO instead
  
  As the result:
  
  - The page_props will not be updated for the page
  
  The code at fault is this:
  
/**
 * Get the parser output from cache if it reflects the change that 
triggered this job
 *
 * @param ParserCache $parserCache
 * @param WikiPage $page
 * @param RevisionRecord $currentRevision
 * @param StatsdDataFactoryInterface $stats
 * @return ParserOutput|null
 */
private function getParserOutputFromCache(
ParserCache $parserCache,
WikiPage $page,
RevisionRecord $currentRevision,
StatsdDataFactoryInterface $stats
) {
$cachedOutput = null;
// If page_touched changed after this root job, then it is 
likely that
// any views of the pages already resulted in re-parses which 
are now in
// cache. The cache can be reused to avoid expensive parsing in 
some cases.
$rootTimestamp = $this->params['rootJobTimestamp'] ?? null;
if ( $rootTimestamp !== null ) {
$opportunistic = !empty( 
$this->params['isOpportunistic'] );
if ( $opportunistic ) {
// Neither clock skew nor DB snapshot/replica 
DB lag matter much for
// such updates; focus on reusing the (often 
recently updated) cache
$lagAwareTimestamp = $rootTimestamp;
} else {
// For transclusion updates, the template 
changes must be reflected
$lagAwareTimestamp = wfTimestamp(
TS_MW,
wfTimestamp( TS_UNIX, $rootTimestamp ) 
+ self::NORMAL_MAX_LAG
);
}

if ( $page->getTouched() >= $rootTimestamp || 
$opportunistic ) {
// Cache is suspected to be up-to-date so it's 
worth the I/O of checking.
// As long as the cache rev ID matches the 
current rev ID and it reflects
// the job's triggering change, then it is 
usable.
$parserOptions = $page->makeParserOptions( 
'canonical' );
$output = $parserCache->getDirty( $page, 
$parserOptions );
if (
$output &&
$output->getCacheRevisionId() == 
$currentRevision->getId() &&
$output->getCacheTime() >= 
$lagAwareTimestamp
) {
$cachedOutput = $output;
}
}
}

if ( $cachedOutput ) {
$stats->increment( 'refreshlinks.parser_cached' );
} else {
$stats->increment( 'refreshlinks.parser_uncached' );
}

return $cachedOutput;
}
  
  I was able to confirm that this patch causes it by making the cache function 
return null all the time and saw the records appearing in page_props.
  
  Options:
  
  - Introduce an opposite of `isOpportunistic` option and make the refreshlinks 
jobs enqueued by wikibase to set that.
- Side note: 

[Wikidata-bugs] [Maniphest] [Commented On] T209655: Copy Wikidata dumps to HDFS

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 346726 **merged** by jenkins-bot:
  [analytics/refinery/source@master] Add spark code for wikidata json dumps 
parsing
  
  https://gerrit.wikimedia.org/r/346726

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

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

To: JAllemandou, gerritbot
Cc: Isaac, Groceryheist, MGerlach, WMDE-leszek, abian, leila, Ottomata, Nuria, 
GoranSMilovanovic, Addshore, JAllemandou, bmansurov, Beast1978, Un1tY, 
4748kitoko, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 
darthmon_wmde, Meekrab2012, joker88john, CucyNoiD, Nandana, NebulousIris, 
Akovalyov, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, 
Cpaulf30, Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, Adik2382, 
Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, WSH1906, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, terrrydactyl, Wikidata-bugs, aude, 
Capt_Swing, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T233520: page_props wikibase_item is sometimes not added to client pages when a sitelink is added on a repo

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


  I was able to reproduce this locally.
  Let's have fun.

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

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

To: Ladsgroup
Cc: CCicalese_WMF, Anomie, Petar.petkovic, Zoranzoki21, Tacsipacsi, 
matej_suchanek, Bencemac, Urbanecm, RolandUnger, alaa_wmde, Ladsgroup, 
Lea_Lacroix_WMDE, LibrErli, Krinkle, daniel, tstarling, aaron, WMDE-leszek, 
Addshore, Lydia_Pintscher, Lucas_Werkmeister_WMDE, Jheald, Aklapper, Mike_Peel, 
Iflorez, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, Poyekhali, _jensen, rosalieper, Taiwania_Justo, Scott_WUaS, 
Pchelolo, Jonas, Ixocactus, Wong128hk, Wikidata-bugs, aude, El_Grafo, 
Dinoguy1000, Steinsplitter, Mbch331, Keegan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T238728: Step 1: inform about editing on a different project under different license (impact: high)

2020-02-17 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  Looks good! Thank you.
  
  Small thing: I think there should be no "the" in "the Creative Commons CC0".

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

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

To: Charlie_WMDE, Lydia_Pintscher
Cc: Lea_Lacroix_WMDE, Aklapper, Lydia_Pintscher, Sarai-WMDE, darthmon_wmde, 
Michael, 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] T238728: Step 1: inform about editing on a different project under different license (impact: high)

2020-02-17 Thread Lydia_Pintscher
Lydia_Pintscher updated the task description.

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

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

To: Charlie_WMDE, Lydia_Pintscher
Cc: Lea_Lacroix_WMDE, Aklapper, Lydia_Pintscher, Sarai-WMDE, darthmon_wmde, 
Michael, 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] T236895: ArticlePlaceholder dashboard stopped tracking page views

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572734 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [analytics/refinery/source@master] Stop using the jar file in the 
WikidataArticlePlaceholderMetrics
  
  https://gerrit.wikimedia.org/r/572734

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

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

To: Ladsgroup, gerritbot
Cc: Ladsgroup, Nuria, JAllemandou, elukey, Addshore, Aklapper, Lydia_Pintscher, 
Beast1978, Un1tY, 4748kitoko, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, Iflorez, darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, 
CucyNoiD, Nandana, NebulousIris, Akovalyov, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, cmadeo, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, terrrydactyl, Wikidata-bugs, aude, 
jayvdb, Ricordisamoa, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T234070: Consider svgo use (via cssnano)

2020-02-17 Thread Volker_E
Volker_E added a comment.


  Fyi, Foundation has settled over last 1.5+ years on a certain subset of SVGO 
rules 
,
 that provided fail-safe optimization for existing SVGs in core and products.

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

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

To: Volker_E
Cc: Volker_E, Aklapper, Lucas_Werkmeister_WMDE, Pablo-WMDE, Sarai-WMDE, 
darthmon_wmde, Michael, 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] T245138: Have a "now is not a good time" flag on the Wikidata api

2020-02-17 Thread Andrawaag
Andrawaag added a comment.


  Yes I remember the 1000 suggestion, but we can certainly try it perpetually, 
but somehow that does not feel right. Every unsuccesful attempt is yet another 
attempt bothering the api. Would it not be better to simply stop until the api 
settle down after 25 efforts?

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

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

To: Andrawaag
Cc: Addshore, Bugreporter, Aklapper, Andrawaag, 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] [Triaged] T244369: Deploy WikidataPageBanner extension on trwiki

2020-02-17 Thread Jdlrobson
Jdlrobson triaged this task as "Low" priority.
Jdlrobson set the point value for this task to "1".

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

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

To: Jdlrobson
Cc: ovasileva, nray, Jdlrobson, Jdforrester-WMF, Superyetkin, Aklapper, 
Beast1978, Un1tY, Hook696, CptViraj, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, darthmon_wmde, Masumrezarock100, Dibya, Meekrab2012, joker88john, 
94rain, DannyS712, CucyNoiD, Nandana, NebulousIris, Tks4Fish, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, 
Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, 
Jayprakash12345, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Zoranzoki21, 
LawExplorer, Winter, WSH1906, Lewizho99, Maathavan, DatGuy, Devwaker, Niklitov, 
_jensen, Urbanecm, rosalieper, JEumerus, Scott_WUaS, Ananthsubray, 
Superzerocool, Tulsi_Bhagat, Wong128hk, Luke081515, SimmeD, Wikidata-bugs, 
Snowolf, aude, Dcljr, Lydia_Pintscher, Matanya, Mbch331, Rxy, Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T197587: [Story] Add WikibaseQualityConstraints to the docker image & configure?

2020-02-17 Thread Ladsgroup
Ladsgroup added a comment.


  In T197587#5834341 , 
@Addshore wrote:
  
  > The only part of this that remains is the documentation update
  
  I'm not sure this is correct, I tried to pick it up but I don't see anything 
that says WBQC is going to be installed automatically in Dockerfile: 
https://github.com/wmde/wikibase-docker/blob/master/wikibase/1.34/bundle/Dockerfile
  
  So you need to do whole dance of downloading the extension in the bundle then 
if the user wants to install it, they can add it to LocalSettings.php and then 
run something like `
  docker-compose exec wikibase php 
/var/www/html/extensions/WikibaseQualityConstraints/maintenance/ImportConstraintEntities.php`
 Am I misunderstanding the AC very wrong?

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

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

To: Ladsgroup
Cc: Ladsgroup, Samantha_Alipio_WMDE, DD063520, Addshore, dbs, tk, Aklapper, 
Lucas_Werkmeister_WMDE, Iflorez, darthmon_wmde, alaa_wmde, Jelabra, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, merbst, LawExplorer, _jensen, 
rosalieper, Agabi10, Scott_WUaS, Jonas, Asahiko, abian, 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] T244987: Timebox: research how to do reference rendering [6 hrs]

2020-02-17 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: gerritbot
Cc: Lucas_Werkmeister_WMDE, Pablo-WMDE, Tonina_Zhelyazkova_WMDE, Michael, 
Addshore, Aklapper, WMDE-leszek, Lydia_Pintscher, Beast1978, Un1tY, Sarai-WMDE, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_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, 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] T244987: Timebox: research how to do reference rendering [6 hrs]

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572719 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/Wikibase@master] bridge: add ADR for formatting bridge 
references
  
  https://gerrit.wikimedia.org/r/572719

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

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

To: gerritbot
Cc: Lucas_Werkmeister_WMDE, Pablo-WMDE, Tonina_Zhelyazkova_WMDE, Michael, 
Addshore, Aklapper, WMDE-leszek, Lydia_Pintscher, Sarai-WMDE, 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] T236895: ArticlePlaceholder dashboard stopped tracking page views

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572713 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [analytics/refinery@master] Pass spark_job_jar as an argument in 
ArticlePlaceholder oozie job
  
  https://gerrit.wikimedia.org/r/572713

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

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

To: Ladsgroup, gerritbot
Cc: Ladsgroup, Nuria, JAllemandou, elukey, Addshore, Aklapper, Lydia_Pintscher, 
Beast1978, Un1tY, 4748kitoko, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, Iflorez, darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, 
CucyNoiD, Nandana, NebulousIris, Akovalyov, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, cmadeo, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, terrrydactyl, Wikidata-bugs, aude, 
jayvdb, Ricordisamoa, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T236895: ArticlePlaceholder dashboard stopped tracking page views

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572711 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [analytics/refinery/source@master] Add sparkJobJar as a parameter in 
WikidataArticlePlaceholderMetrics
  
  https://gerrit.wikimedia.org/r/572711

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

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

To: Ladsgroup, gerritbot
Cc: Ladsgroup, Nuria, JAllemandou, elukey, Addshore, Aklapper, Lydia_Pintscher, 
Beast1978, Un1tY, 4748kitoko, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, Iflorez, darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, 
CucyNoiD, Nandana, NebulousIris, Akovalyov, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, cmadeo, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, terrrydactyl, Wikidata-bugs, aude, 
jayvdb, Ricordisamoa, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T239421: Step 1: mobile fixes (impact: medium)

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572010 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] bridge: Adjust margins in bailout 
components
  
  https://gerrit.wikimedia.org/r/572010

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

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

To: Michael, gerritbot
Cc: Lydia_Pintscher, WMDE-leszek, darthmon_wmde, Pablo-WMDE, Michael, SaraiSan, 
Lucas_Werkmeister_WMDE, Sarai-WMDE, Aklapper, Charlie_WMDE, Beast1978, Un1tY, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 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, 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] T239421: Step 1: mobile fixes (impact: medium)

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572032 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] bridge: add missing side margins to 
permission errors
  
  https://gerrit.wikimedia.org/r/572032

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

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

To: Michael, gerritbot
Cc: Lydia_Pintscher, WMDE-leszek, darthmon_wmde, Pablo-WMDE, Michael, SaraiSan, 
Lucas_Werkmeister_WMDE, Sarai-WMDE, Aklapper, Charlie_WMDE, Beast1978, Un1tY, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 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, 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] T239421: Step 1: mobile fixes (impact: medium)

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 571996 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] bridge: Add body mixins and use them 
where appropriate
  
  https://gerrit.wikimedia.org/r/571996

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

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

To: Michael, gerritbot
Cc: Lydia_Pintscher, WMDE-leszek, darthmon_wmde, Pablo-WMDE, Michael, SaraiSan, 
Lucas_Werkmeister_WMDE, Sarai-WMDE, Aklapper, Charlie_WMDE, Beast1978, Un1tY, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 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, 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] T244987: Timebox: research how to do reference rendering [6 hrs]

2020-02-17 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Outcome: for now we’ll make the API internal, whatever fits us best for the 
bridge use case.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Pablo-WMDE, Tonina_Zhelyazkova_WMDE, Michael, 
Addshore, Aklapper, WMDE-leszek, Lydia_Pintscher, Sarai-WMDE, 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] T244341: Wikibase RDF dump: stop using blank nodes for encoding SomeValue and OWL constraints

2020-02-17 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  > I haven't checked but I hope that at most one blank node can be attached to 
the same subject/predicate, if not this makes the sync algorithm a bit more 
complex.
  
  At least currently, this is not the case. I added a second “partner: unknown 
value” statement to the sandbox item , 
and now wd:Q4115189 wdt:P451 ?v 

 produces two blank nodes as result.
  
  Once we stop using blank nodes for OWL constraints, though, I believe you can 
at least assume that blank nodes are never the subject of a triple – would that 
help? (I feel like this ought to eliminate the need for a full isomorphism 
check from your quote.)

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T243894: Add time limits to scripts executed on stat1007 as part of analytics/wmde/scripts

2020-02-17 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Rosalie_WMDE, gerritbot
Cc: Aklapper, elukey, Ladsgroup, Addshore, Beast1978, Un1tY, 4748kitoko, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, 
darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, CucyNoiD, Nandana, 
NebulousIris, Akovalyov, 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, JAllemandou, terrrydactyl, Wikidata-bugs, aude, Lydia_Pintscher, 
Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T243894: Add time limits to scripts executed on stat1007 as part of analytics/wmde/scripts

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572705 had a related patch set uploaded (by Rosalie Perside (WMDE); 
owner: Rosalie Perside (WMDE)):
  [analytics/wmde/scripts@master] Add Time limit to scripts executed on stat1007
  
  https://gerrit.wikimedia.org/r/572705

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

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

To: Rosalie_WMDE, gerritbot
Cc: Aklapper, elukey, Ladsgroup, Addshore, 4748kitoko, Iflorez, darthmon_wmde, 
alaa_wmde, Nandana, Akovalyov, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, JAllemandou, terrrydactyl, 
Wikidata-bugs, aude, Lydia_Pintscher, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T244916: (Property|Item)TermStore::getTerms() is unused

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 571769 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Remove 
(Item|Property)TermStore::getTerms implementations
  
  https://gerrit.wikimedia.org/r/571769

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

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

To: hoo, gerritbot
Cc: darthmon_wmde, Lydia_Pintscher, WMDE-leszek, Tarrow, Addshore, hoo, 
Lucas_Werkmeister_WMDE, Aklapper, Ladsgroup, Beast1978, Un1tY, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, 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] [Claimed] T236895: ArticlePlaceholder dashboard stopped tracking page views

2020-02-17 Thread Ladsgroup
Ladsgroup claimed this task.
Ladsgroup moved this task from To Do to Doing on the Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞) board.

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

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

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

To: Ladsgroup
Cc: Ladsgroup, Nuria, JAllemandou, elukey, Addshore, Aklapper, Lydia_Pintscher, 
Beast1978, Un1tY, 4748kitoko, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, Iflorez, darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, 
CucyNoiD, Nandana, NebulousIris, Akovalyov, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, cmadeo, LawExplorer, WSH1906, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, terrrydactyl, Wikidata-bugs, aude, 
jayvdb, Ricordisamoa, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T196165: Commons image: when pasting the exact title, get the correct file first in the suggester

2020-02-17 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: Silvan_WMDE, Maintenance_bot
Cc: hoo, EBernhardson, TJones, dcausse, Ladsgroup, Silvan_WMDE, Addshore, 
Bencemac, Aklapper, Ayack, Liuxinyu970226, Smalyshev, Lydia_Pintscher, 
Lea_Lacroix_WMDE, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Wikidata-bugs, aude, Mbch331, Beast1978, Un1tY, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, Meekrab2012, joker88john, CucyNoiD, 
NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, 
Cpaulf30, Af420, Darkminds3113, Bsandipan, Lordiis, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, WSH1906, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T243894: Add time limits to scripts executed on stat1007 as part of analytics/wmde/scripts

2020-02-17 Thread Rosalie_WMDE
Rosalie_WMDE added a comment.


  https://github.com/wikimedia/analytics-wmde-scripts/pull/1

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

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

To: Rosalie_WMDE
Cc: Marostegui, Aklapper, elukey, Ladsgroup, Addshore, 4748kitoko, Iflorez, 
darthmon_wmde, alaa_wmde, Nandana, Akovalyov, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, JAllemandou, 
terrrydactyl, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T196165: Commons image: when pasting the exact title, get the correct file first in the suggester

2020-02-17 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.35-notes (1.35.0-wmf.20; 2020-02-18).

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

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

To: Silvan_WMDE, ReleaseTaggerBot
Cc: hoo, EBernhardson, TJones, dcausse, Ladsgroup, Silvan_WMDE, Addshore, 
Bencemac, Aklapper, Ayack, Liuxinyu970226, Smalyshev, Lydia_Pintscher, 
Lea_Lacroix_WMDE, Beast1978, Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, 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] [Commented On] T239421: Step 1: mobile fixes (impact: medium)

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572695 had a related patch set uploaded (by Tonina Zhelyazkova; owner: 
Tonina Zhelyazkova):
  [mediawiki/extensions/Wikibase@master] brige: Centralize styling for 
, ,  and 
  
  https://gerrit.wikimedia.org/r/572695

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

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

To: Michael, gerritbot
Cc: Lydia_Pintscher, WMDE-leszek, darthmon_wmde, Pablo-WMDE, Michael, SaraiSan, 
Lucas_Werkmeister_WMDE, Sarai-WMDE, Aklapper, Charlie_WMDE, Beast1978, Un1tY, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 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, 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] T244991: Implement changes in component library

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572292 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [wikibase/vuejs-components@master] Make RadioInput work at any font size
  
  https://gerrit.wikimedia.org/r/572292

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Aklapper, Pablo-WMDE, Sarai-WMDE, darthmon_wmde, Michael, 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] [Block] T243192: font size adjustments

2020-02-17 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE reopened subtask T244991: Implement changes in component 
library as Open.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Charlie_WMDE, Michael, Lucas_Werkmeister_WMDE, Pablo-WMDE, 
Tonina_Zhelyazkova_WMDE, Aklapper, Sarai-WMDE, 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] T244991: Implement changes in component library

2020-02-17 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Aklapper, Pablo-WMDE, Beast1978, Un1tY, Sarai-WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, 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, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Reopened] T244991: Implement changes in component library

2020-02-17 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE reopened this task as "Open".
Lucas_Werkmeister_WMDE moved this task from Done to Peer Review on the 
Wikidata-Bridge-Sprint-14 board.

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

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

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Pablo-WMDE, Sarai-WMDE, darthmon_wmde, Michael, 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] T245422: Update vue cli

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572692 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/Wikibase@master] bridge: remove vue cli from Dockerfile
  
  https://gerrit.wikimedia.org/r/572692

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

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

To: gerritbot
Cc: Aklapper, Tonina_Zhelyazkova_WMDE, Michael, Lucas_Werkmeister_WMDE, 
Pablo-WMDE, Sarai-WMDE, 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] T245422: Update vue cli

2020-02-17 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: gerritbot
Cc: Aklapper, Tonina_Zhelyazkova_WMDE, Michael, Lucas_Werkmeister_WMDE, 
Pablo-WMDE, Beast1978, Un1tY, Sarai-WMDE, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, darthmon_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, 
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] T245422: Update vue cli

2020-02-17 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Okay, as far as I can tell we don’t need it at all – we use `npm run build` 
instead of `vue build`, `npm run serve` instead of `vue serve`, and so on. If I 
understand correctly, it can be useful to have vue cli globally installed in 
general, but it doesn’t really belong in this Dockerfile, I think.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Tonina_Zhelyazkova_WMDE, Michael, Lucas_Werkmeister_WMDE, 
Pablo-WMDE, Sarai-WMDE, 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] T196165: Commons image: when pasting the exact title, get the correct file first in the suggester

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572679 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Update data-values/value-view submodule
  
  https://gerrit.wikimedia.org/r/572679

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

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

To: Silvan_WMDE, gerritbot
Cc: hoo, EBernhardson, TJones, dcausse, Ladsgroup, Silvan_WMDE, Addshore, 
Bencemac, Aklapper, Ayack, Liuxinyu970226, Smalyshev, Lydia_Pintscher, 
Lea_Lacroix_WMDE, Beast1978, Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, 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] [Changed Project Column] T238728: Step 1: inform about editing on a different project under different license (impact: high)

2020-02-17 Thread Charlie_WMDE
Charlie_WMDE moved this task from Needs work to Ready for story writing on the 
Wikidata-Bridge board.
Charlie_WMDE added a comment.


  @Lydia_Pintscher ready from my side

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

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

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

To: Charlie_WMDE
Cc: Lea_Lacroix_WMDE, Aklapper, Lydia_Pintscher, Sarai-WMDE, darthmon_wmde, 
Michael, 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] T238728: Step 1: inform about editing on a different project under different license (impact: high)

2020-02-17 Thread Charlie_WMDE
Charlie_WMDE updated the task description.

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

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

To: Charlie_WMDE
Cc: Lea_Lacroix_WMDE, Aklapper, Lydia_Pintscher, Sarai-WMDE, darthmon_wmde, 
Michael, 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] T196165: Commons image: when pasting the exact title, get the correct file first in the suggester

2020-02-17 Thread dcausse
dcausse added a comment.


  I believe that because the file name has many words the score on the 
tokenized text fields is very high (since we sum all token scores), the score 
on the exact match having only one word and despite having a high weight it's 
not enough to compete with the loss of its text matches discarded because of 
the negation.
  
  In general I suggest using autocomplete APIs (opensearch/prefixsearch) for 
type-a-head searches, this is faster and the list of results does no change 
unexpectedly as you type. What's done in the mobile app is a two steps search: 
first send a prefixsearch then a fulltext search if not results are found.
  
  When using the fulltext search (list=search) if the user is not aware that 
it's using the fulltext engine the UI should escape the search syntax otherwise 
some chars may trigger a special syntax (negation in this case).
  
  The proper way to fix this issue is imo to:
  
  - use a completion API + fulltext search fallback
  - escape the fulltext search syntax from the UI: AND, OR, NOT, ||, &&, -, !, 
", :, \?, *

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

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

To: Silvan_WMDE, dcausse
Cc: hoo, EBernhardson, TJones, dcausse, Ladsgroup, Silvan_WMDE, Addshore, 
Bencemac, Aklapper, Ayack, Liuxinyu970226, Smalyshev, Lydia_Pintscher, 
Lea_Lacroix_WMDE, Beast1978, Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, 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] [Commented On] T196165: Commons image: when pasting the exact title, get the correct file first in the suggester

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572679 had a related patch set uploaded (by Silvan Heintze; owner: 
Silvan Heintze):
  [mediawiki/extensions/Wikibase@master] Update data-values/value-view submodule
  
  https://gerrit.wikimedia.org/r/572679

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

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

To: Silvan_WMDE, gerritbot
Cc: hoo, EBernhardson, TJones, dcausse, Ladsgroup, Silvan_WMDE, Addshore, 
Bencemac, Aklapper, Ayack, Liuxinyu970226, Smalyshev, Lydia_Pintscher, 
Lea_Lacroix_WMDE, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T196165: Commons image: when pasting the exact title, get the correct file first in the suggester

2020-02-17 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Silvan_WMDE, gerritbot
Cc: hoo, EBernhardson, TJones, dcausse, Ladsgroup, Silvan_WMDE, Addshore, 
Bencemac, Aklapper, Ayack, Liuxinyu970226, Smalyshev, Lydia_Pintscher, 
Lea_Lacroix_WMDE, Beast1978, Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, 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] T243518: Document things like entity-reference-extractor-callback for entity type definitions on doc.wikimedia.org for wikibase

2020-02-17 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: Rosalie_WMDE, Maintenance_bot
Cc: WMDE-leszek, Aklapper, Addshore, Iflorez, Pavithraes, darthmon_wmde, 
alaa_wmde, Nandana, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, Ivana_Isadora, 
Jayprakash12345, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g, Beast1978, 
Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 
Meekrab2012, joker88john, CucyNoiD, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, 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] T243825: Create a Wikidata tour about Coordinates

2020-02-17 Thread NavinoEvans
NavinoEvans updated the task description.

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

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

To: NavinoEvans
Cc: Pasleim, Alicia_Fagerving_WMSE, NavinoEvans, #user-mrjohncummings, 
Mrjohncummings, Pavithraes, darthmon_wmde, Tore_Danielsson_WMSE, Nandana, 
tramm, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, Ivana_Isadora, Jayprakash12345, 
QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T165902: Create a Wikidata Tour / tutorial about references

2020-02-17 Thread NavinoEvans
NavinoEvans updated the task description.

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

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

To: NavinoEvans
Cc: NavinoEvans, Mrjohncummings, Aklapper, Spinster, Pavithraes, darthmon_wmde, 
Tore_Danielsson_WMSE, Nandana, tramm, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, 
Ivana_Isadora, Jayprakash12345, QZanden, LawExplorer, Puik, _jensen, 
rosalieper, D3r1ck01, Envlh, Scott_WUaS, Wikidata-bugs, aude, Tobias1984, 
Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T244469: Create Wikidata tour for 'add an image'

2020-02-17 Thread NavinoEvans
NavinoEvans updated the task description.

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

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

To: NavinoEvans
Cc: NavinoEvans, Mrjohncummings, Pavithraes, darthmon_wmde, 
Tore_Danielsson_WMSE, Nandana, tramm, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, 
Ivana_Isadora, Jayprakash12345, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T203397: Provide more useful redirect for statement nodes (wds:…)

2020-02-17 Thread dcausse
dcausse added a project: Discovery-Search (Current work).
dcausse added a comment.


  @Lea_Lacroix_WMDE no, we just need to deploy it, sorry for the delay.

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

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

To: dcausse
Cc: dcausse, Lea_Lacroix_WMDE, Lucas_Werkmeister_WMDE, Aklapper, Beast1978, 
Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 
darthmon_wmde, Meekrab2012, joker88john, CucyNoiD, Nandana, NebulousIris, 
Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, 
Lahi, Gq86, Af420, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, 
Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, 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] [Edited] T244468: Create Wikidata tour for 'inception'

2020-02-17 Thread NavinoEvans
NavinoEvans updated the task description.

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

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

To: NavinoEvans
Cc: NavinoEvans, Mrjohncummings, Pavithraes, darthmon_wmde, 
Tore_Danielsson_WMSE, Nandana, tramm, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, 
Ivana_Isadora, Jayprakash12345, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T244467: Create Wikidata tour for 'official website'

2020-02-17 Thread NavinoEvans
NavinoEvans updated the task description.

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

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

To: Mrjohncummings, NavinoEvans
Cc: NavinoEvans, Mrjohncummings, Pavithraes, darthmon_wmde, 
Tore_Danielsson_WMSE, Nandana, tramm, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, 
Ivana_Isadora, Jayprakash12345, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T243829: Create Wikidata Tour for Administrative territory

2020-02-17 Thread NavinoEvans
NavinoEvans updated the task description.

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

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

To: NavinoEvans
Cc: NavinoEvans, Mrjohncummings, Pavithraes, darthmon_wmde, 
Tore_Danielsson_WMSE, Nandana, tramm, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, 
Ivana_Isadora, Jayprakash12345, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T243829: Create Wikidata Tour for Administrative territory

2020-02-17 Thread NavinoEvans
NavinoEvans added a comment.


  Updated link with new base item: 
https://www.wikidata.org/w/index.php?title=Q85409596=wbadminterritory

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

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

To: NavinoEvans
Cc: NavinoEvans, Mrjohncummings, Pavithraes, darthmon_wmde, 
Tore_Danielsson_WMSE, Nandana, tramm, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, 
Ivana_Isadora, Jayprakash12345, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T244990: An attempt at visual regression testing

2020-02-17 Thread Tonina_Zhelyazkova_WMDE
Tonina_Zhelyazkova_WMDE added a comment.


  Findings:
  //Note: Take a look at the patch related to this task first. //
  Running `test:visual` in docker results in the following error:
  `... node_modules/puppeteer/.local-chromium/linux-722234/chrome-linux/chrome: 
error while loading shared libraries: libX11.so.6: cannot open shared object 
file: No such file or directory`
  According to the internet 
, 
there's a bunch of packages that need to be installed to fix the above problem.
  After adding that list to data bridge's Docker file and rebuilding the image, 
the following error occurs:
  
Error: Failed to launch the browser process!
[0217/132124.096690:FATAL:zygote_host_impl_linux.cc(116)] No usable 
sandbox! Update your kernel or see 
https://chromium.googlesource.com/chromium/src/+/master/docs/linux_suid_sandbox_development.md
 for more information on developing with the SUID sandbox. If you want to live 
dangerously and need an immediate workaround, you can try using --no-sandbox.
#0 0x564574e31219 base::debug::CollectStackTrace()
#1 0x564574d95363 base::debug::StackTrace::StackTrace()
#2 0x564574da7195 logging::LogMessage::~LogMessage()
#3 0x56457662300e service_manager::ZygoteHostImpl::Init()
#4 0x56457499ef27 content::ContentMainRunnerImpl::Initialize()
#5 0x5645749edafa service_manager::Main()
#6 0x56457499d501 content::ContentMain()
#7 0x5645749ec8f5 headless::(anonymous namespace)::RunContentMain()
#8 0x5645749ec59d headless::HeadlessShellMain()
#9 0x564572561aa7 ChromeMain
#10 0x7f22529342e1 __libc_start_main
#11 0x5645725618ea _start

Received signal 6
#0 0x564574e31219 base::debug::CollectStackTrace()
#1 0x564574d95363 base::debug::StackTrace::StackTrace()
#2 0x564574e30d61 base::debug::(anonymous 
namespace)::StackDumpSignalHandler()
#3 0x7f22588be0e0 
#4 0x7f2252946fff gsignal
#5 0x7f225294842a abort
#6 0x564574e2fb65 base::debug::BreakDebugger()
#7 0x564574da7634 logging::LogMessage::~LogMessage()
#8 0x56457662300e service_manager::ZygoteHostImpl::Init()
#9 0x56457499ef27 content::ContentMainRunnerImpl::Initialize()
#10 0x5645749edafa service_manager::Main()
#11 0x56457499d501 content::ContentMain()
#12 0x5645749ec8f5 headless::(anonymous namespace)::RunContentMain()
#13 0x5645749ec59d headless::HeadlessShellMain()
#14 0x564572561aa7 ChromeMain
#15 0x7f22529342e1 __libc_start_main
#16 0x5645725618ea _start
  r8:   r9: 736beba0 r10: 0008 r11: 
0246
 r12: 736bfe58 r13: 736bee30 r14: 736bfe60 r15: 

  di: 0002  si: 736beba0  bp: 736bede0  bx: 
0006
  dx:   ax:   cx: 7f2252946fff  sp: 
736bec18
  ip: 7f2252946fff efl: 0246 cgf: 002b0033 erf: 

 trp:  msk:  cr2: 
[end of stack trace]
Calling _exit(1). Core file will not be generated.


TROUBLESHOOTING: 
https://github.com/puppeteer/puppeteer/blob/master/docs/troubleshooting.md

at onClose 
(/src/client/data-bridge/node_modules/puppeteer/lib/Launcher.js:750:14)
at Interface.helper.addEventListener 
(/src/client/data-bridge/node_modules/puppeteer/lib/Launcher.js:739:50)
at Interface.emit (events.js:203:15)
at Interface.close (readline.js:397:8)
at Socket.onend (readline.js:173:10)
at Socket.emit (events.js:203:15)
at endReadableNT (_stream_readable.js:1129:12)
at process._tickCallback (internal/process/next_tick.js:63:19)
  
  Following this `If you want to live dangerously and need an immediate 
workaround, you can try using --no-sandbox.` from the error message, the test 
setup was changed to
  
browser = await puppeteer.launch( {
headless: true,
args: [`--no-sandbox`, `--disable-setuid-sandbox`],
} );
  
  where the commands in `args` were decided based on
  
https://github.com/puppeteer/puppeteer/blob/v2.1.1/docs/api.md#puppeteerlaunchoptions
  https://peter.sh/experiments/chromium-command-line-switches/#no-sandbox
  and 
https://peter.sh/experiments/chromium-command-line-switches/#disable-setuid-sandbox
  
  This did not help at all. The error persist.

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

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

To: Tonina_Zhelyazkova_WMDE
Cc: Aklapper, Pablo-WMDE, Beast1978, Un1tY, Sarai-WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, 
joker88john, Michael, CucyNoiD, Nandana, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 

[Wikidata-bugs] [Maniphest] [Retitled] T244341: Wikibase RDF dump: stop using blank nodes for encoding SomeValue and OWL constraints

2020-02-17 Thread dcausse
dcausse renamed this task from "Wikibase RDF dump: stop using blank nodes for 
encoding unknown values and OWL constraints" to "Wikibase RDF dump: stop using 
blank nodes for encoding SomeValue and OWL constraints".
dcausse updated the task description.

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

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

To: dcausse
Cc: Jheald, Daniel_Mietchen, mkroetzsch, Denny, Lucas_Werkmeister_WMDE, 
Aklapper, dcausse, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, 
Xmlizer, jkroll, Smalyshev, 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] T244341: Wikibase RDF dump: stop using blank nodes for encoding unknown values and OWL constraints

2020-02-17 Thread dcausse
dcausse added a comment.


  Thanks for all the feedback.
  I'll discard the "constant" option.
  
  A note on the motivations:
  we plan to redesign the update process as a set of trivial mutations to the 
graph, as far as I can see updating a graph with blank nodes cannot be a 
"trivial operation", citing
  http://www.aidanhogan.com/docs/blank_nodes_jws.pdf (page 10 //Issues with 
blank nodes//):
  
  > Given a fixed, serialised RDF graph (i.e., a document), labelling of blank 
nodes can vary across parsers and across time. Checking if two representations 
originate from the same data thus often requires an isomorphism check, for 
which in general, no polynomial algorithms are known.
  
  By making some assumptions on the wikibase RDF model I believe that 
generating a diff between two entity revisions should be relatively easy even 
if blank nodes are involved, the problem is when applying this diff to the RDF 
backend, if it involves blank nodes it cannot be a set of trivial mutations 
(here trivial means using `INSERT|DELETE DATA` statements). E.g. if the diff 
indicates that we need to remove:
  
wd:Q2 wdt:P576 _:genid1
  
  because `DELETE DATA` is not possible with blank nodes we have to send 
something like
  
DELETE { ?s ?p ?o }
WHERE {
  wd:Q2 wdt:P576 ?o .
  FILTER(isBlank(?o))
  ?s ?p ?o
}
  
  Which will delete all blank nodes attached to `wd:Q2` by `wdt:P576`. I 
haven't checked but I hope that at most one blank node can be attached to the 
same subject/predicate, if not this makes the sync algorithm a bit more complex.

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

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

To: dcausse
Cc: Jheald, Daniel_Mietchen, mkroetzsch, Denny, Lucas_Werkmeister_WMDE, 
Aklapper, dcausse, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, 
Xmlizer, jkroll, Smalyshev, 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] T243518: Document things like entity-reference-extractor-callback for entity type definitions on doc.wikimedia.org for wikibase

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572655 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Remove outdated extendingEntity.md
  
  https://gerrit.wikimedia.org/r/572655

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T243729: Check Wikibase services for expensive setup patterns (db & api calls etc) & fix / remove

2020-02-17 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: hoo, gerritbot
Cc: Ladsgroup, Michael, WMDE-leszek, Bawolff, Addshore, Aklapper, Beast1978, 
Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, 
darthmon_wmde, 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] T243729: Check Wikibase services for expensive setup patterns (db & api calls etc) & fix / remove

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572664 had a related patch set uploaded (by Hoo man; owner: Hoo man):
  [mediawiki/extensions/Wikibase@master] Make sure WikibaseServices services 
getters don't access the DB
  
  https://gerrit.wikimedia.org/r/572664

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

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

To: hoo, gerritbot
Cc: Ladsgroup, Michael, WMDE-leszek, Bawolff, Addshore, Aklapper, Iflorez, 
darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _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] T245245: Message Wikibase-error-ui-no-external-page shows literal $1 and $2 instead of values

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572662 had a related patch set uploaded (by Silvan Heintze; owner: 
Silvan Heintze):
  [wikibase/javascript-api@master] Use message parameters when creating 
RepoApiError
  
  https://gerrit.wikimedia.org/r/572662

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

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

To: Silvan_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Jakob_WMDE, Addshore, Silvan_WMDE, Aklapper, 
Raymond, Kaleem-Bhatti, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, Jayprakash12345, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Srdjan_m, Jonas, MuhammadShuaib, LNDDYL, Psychoslave, 
Wikidata-bugs, aude, Gryllida, Shizhao, Lydia_Pintscher, Arrbee, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T245245: Message Wikibase-error-ui-no-external-page shows literal $1 and $2 instead of values

2020-02-17 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Silvan_WMDE, gerritbot
Cc: Lucas_Werkmeister_WMDE, Jakob_WMDE, Addshore, Silvan_WMDE, Aklapper, 
Raymond, Beast1978, Un1tY, Kaleem-Bhatti, Hook696, Daryl-TTMG, RomaAmorRoma, 
0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, alaa_wmde, 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, WSH1906, 
Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Srdjan_m, Jonas, 
MuhammadShuaib, LNDDYL, Psychoslave, Wikidata-bugs, aude, Gryllida, Shizhao, 
Lydia_Pintscher, Arrbee, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T245422: Update vue cli

2020-02-17 Thread Pablo-WMDE
Pablo-WMDE added a comment.


  > Wait, why do we install vue cli in the dockerfile
  
  It allows the global (`-g`) installation of packages resulting in a binary in 
path.
  This allows for usage as document 
 and maybe known to/expected by 
vue devs.
  
  That said: I'm not sure any one of us actually uses it in their workflow.

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

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

To: Pablo-WMDE
Cc: Aklapper, Tonina_Zhelyazkova_WMDE, Michael, Lucas_Werkmeister_WMDE, 
Pablo-WMDE, Sarai-WMDE, 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] T245422: Update vue cli

2020-02-17 Thread Pablo-WMDE
Pablo-WMDE added a comment.


  I'm sorry for having put this in "Task overflow" (apparently) - that was not 
my intention.
  Meant "tech things".

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

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

To: Pablo-WMDE
Cc: Aklapper, Tonina_Zhelyazkova_WMDE, Michael, Lucas_Werkmeister_WMDE, 
Pablo-WMDE, Sarai-WMDE, 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] T245352: [SUPPORT] Munging errors "Unrecognized subjects"

2020-02-17 Thread despens
despens added a comment.


  The environments are the same for `wdqs` and `wdqs-updater` containers, here 
are the full entries:
  
environment:
  - WIKIBASE_SCHEME=https
  - WIKIBASE_HOST=artbase.rhizome.org
  - WDQS_HOST=wdqs.svc
  - WDQS_PORT=

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T245422: Update vue cli

2020-02-17 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Wait, why do we install vue cli in the dockerfile? And what does that even 
do? Because I don’t use the dockerfile, and apparently I’m still able to run 
tests and produce builds that pass the `distnodiff` check in CI.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Tonina_Zhelyazkova_WMDE, Michael, Lucas_Werkmeister_WMDE, 
Pablo-WMDE, Sarai-WMDE, 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] T243518: Document things like entity-reference-extractor-callback for entity type definitions on doc.wikimedia.org for wikibase

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572655 had a related patch set uploaded (by Rosalie Perside (WMDE); 
owner: Rosalie Perside (WMDE)):
  [mediawiki/extensions/Wikibase@master] Remove outdated extendingEntity.md
  
  https://gerrit.wikimedia.org/r/572655

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

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

To: Rosalie_WMDE, gerritbot
Cc: WMDE-leszek, Aklapper, Addshore, Iflorez, Pavithraes, darthmon_wmde, 
alaa_wmde, Nandana, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, Ivana_Isadora, 
Jayprakash12345, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T243518: Document things like entity-reference-extractor-callback for entity type definitions on doc.wikimedia.org for wikibase

2020-02-17 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T244987: Timebox: research how to do reference rendering [6 hrs]

2020-02-17 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Current status: looks like we’ll go with the API approach; Adam to ask Lydia 
about possible external users of that API, since it seems like we’ll want to 
make it available to others at some point.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Pablo-WMDE, Tonina_Zhelyazkova_WMDE, Michael, 
Addshore, Aklapper, WMDE-leszek, Lydia_Pintscher, Sarai-WMDE, 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] [Changed Project Column] T196165: Commons image: when pasting the exact title, get the correct file first in the suggester

2020-02-17 Thread hoo
hoo moved this task from Peer Review to Doing on the Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞) board.
hoo added a comment.


  Moving back to doing, because this needs a submodule update in Wikibase.

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

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

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

To: Silvan_WMDE, hoo
Cc: hoo, EBernhardson, TJones, dcausse, Ladsgroup, Silvan_WMDE, Addshore, 
Bencemac, Aklapper, Ayack, Liuxinyu970226, Smalyshev, Lydia_Pintscher, 
Lea_Lacroix_WMDE, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T219123: Migrate to and read from new store for item terms

2020-02-17 Thread Addshore
Addshore added a comment.


  In T219123#5844088 , 
@Addshore wrote:
  
  > Now at Rebuilding Q8456304 till Q8456447.
  > While checking in SQL with queries like the following I noticed a few 
smaller holes being left behind:
  >
  >   addshore@stat1007:~$ analytics-mysql wikidatawiki -e "SELECT DISTINCT 
wbit_item_id as id FROM wbt_item_terms LEFT JOIN wbt_term_in_lang ON 
wbit_term_in_lang_id = wbtl_id LEFT JOIN wbt_type ON wbtl_type_ id = wby_id 
LEFT JOIN wbt_text_in_lang ON wbtl_text_in_lang_id = wbxl_id LEFT JOIN wbt_text 
ON wbxl_text_id = wbx_id WHERE wbx_text IS NULL AND wbit_item_id < 100 AND 
wbit_item_id > 000;" -N -B
  >   > 0to1holes
  >   addshore@stat1007:~$ wc -l 0to1holes
  >   6714 0to1holes
  >
  > SO We will have to do 1 more pass to try to pick up these final holes at 
some point
  
  I re ran this query a week or so on and the number of holes is less, which is 
good.
  It feels like T244115  is likely 
the last hole creating issue which is acceptable.
  
addshore@stat1007:~$ analytics-mysql wikidatawiki -e "SELECT DISTINCT 
wbit_item_id as id FROM wbt_item_terms LEFT JOIN wbt_term_in_lang ON 
wbit_term_in_lang_id = wbtl_id LEFT JOIN wbt_type ON wbtl_type_ id = wby_id 
LEFT JOIN wbt_text_in_lang ON wbtl_text_in_lang_id = wbxl_id LEFT JOIN wbt_text 
ON wbxl_text_id = wbx_id WHERE wbx_text IS NULL AND wbit_item_id < 100 AND 
wbit_item_id > 000;" -N -B
> 0to1holes-again
addshore@stat1007:~$ wc -l 0to1holes-again
4360 0to1holes-again
  
  Before reading from sections of the new store we still want to finish filling 
in these known holes as a result of the first hadoop based migration.
  I'll generate files and do that and keep this ticket updated.

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

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

To: Ladsgroup, Addshore
Cc: Ladsgroup, Addshore, Jdforrester-WMF, ArielGlenn, Aklapper, alaa_wmde, 
Iflorez, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _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] [Changed Subscribers] T203397: Provide more useful redirect for statement nodes (wds:…)

2020-02-17 Thread Lea_Lacroix_WMDE
Lea_Lacroix_WMDE added a subscriber: dcausse.
Lea_Lacroix_WMDE added a comment.


  @dcausse Is there anything that you need from the Wikidata team/ that is 
blocking you to continue with this patch?

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

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

To: Lea_Lacroix_WMDE
Cc: dcausse, Lea_Lacroix_WMDE, Lucas_Werkmeister_WMDE, Aklapper, Beast1978, 
Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 
darthmon_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, 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] T244990: An attempt at visual regression testing

2020-02-17 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Tonina_Zhelyazkova_WMDE, gerritbot
Cc: Aklapper, Pablo-WMDE, Beast1978, Un1tY, Sarai-WMDE, Hook696, Daryl-TTMG, 
RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, 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, 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] T244990: An attempt at visual regression testing

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572645 had a related patch set uploaded (by Tonina Zhelyazkova; owner: 
Tonina Zhelyazkova):
  [mediawiki/extensions/Wikibase@master] bridge: [POC] Setup visual regression 
testing
  
  https://gerrit.wikimedia.org/r/572645

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

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

To: Tonina_Zhelyazkova_WMDE, gerritbot
Cc: Aklapper, Pablo-WMDE, Sarai-WMDE, darthmon_wmde, Michael, 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] T245422: Update vue cli

2020-02-17 Thread Pablo-WMDE
Pablo-WMDE created this task.
Pablo-WMDE added a project: Wikidata-Bridge.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  4 is out  for a while 
(and stable enough now) while our pinned 3.8.4 

 is starting to throw warnings.

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

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

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

To: Pablo-WMDE
Cc: Aklapper, Tonina_Zhelyazkova_WMDE, Michael, Lucas_Werkmeister_WMDE, 
Pablo-WMDE, Sarai-WMDE, 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] T244115: Investigate & Fix holes for aliases in new property terms table (take 3)

2020-02-17 Thread Addshore
Addshore added a comment.


mysql:research@dbstore1005.eqiad.wmnet [wikidatawiki]> SELECT   * FROM 
wbt_property_terms LEFT JOIN wbt_term_in_lang ON wbpt_term_in_lang_id = wbtl_id 
LEFT JOIN wbt_type ON wbtl_type_id = wby_id LEFT JO IN wbt_text_in_lang ON 
wbtl_text_in_lang_id = wbxl_id LEFT JOIN wbt_text ON wbxl_text_id = wbx_id 
WHERE wbx_text IS NULL;

+-+--+--+---+--+--++--+-+---+--++--+
| wbpt_id | wbpt_property_id | wbpt_term_in_lang_id | wbtl_id   | 
wbtl_type_id | wbtl_text_in_lang_id | wby_id | wby_name | wbxl_id | 
wbxl_language | wbxl_text_id | wbx_id | wbx_text |

+-+--+--+---+--+--++--+-+---+--++--+
|  332730 | 7850 |411848038 | 411848038 |   
 3 |407983555 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  332732 | 7786 |411848054 | 411848054 |   
 3 |406931806 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  332734 | 7884 |411848132 | 411848132 |   
 3 |409421152 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  332736 | 7885 |411848158 | 411848158 |   
 3 |409421166 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  332926 |  932 |412045499 | 412045499 |   
 3 |88258 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  332933 |  846 |412045592 | 412045592 |   
 3 |82909 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  332935 | 2326 |412045606 | 412045606 |   
 3 |   168274 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  332937 |  590 |412045617 | 412045617 |   
 3 |63613 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  334566 | 6656 |412937757 | 412937757 |   
 3 |   279086 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  334720 | 1440 |413008330 | 413008330 |   
 3 |   123055 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  334722 | 1665 |413010089 | 413010089 |   
 3 |   135377 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  334883 | 3417 |413099852 | 413099852 |   
 3 |   212096 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  335048 | 4474 |413348559 | 413348559 |   
 3 |   240023 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  335149 | 1017 |413511952 | 413511952 |   
 3 |411294102 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |
|  335196 | 6365 |413582295 | 413582295 |   
 3 |   274837 |  3 | alias|NULL | NULL  |   
  NULL |   NULL | NULL |

+-+--+--+---+--+--++--+-+---+--++--+
15 rows in set (19.96 sec)
  
  Properties have a couple more holes, but it looks like the exact same race 
condition that should be fixed with the split transactions, which is 
essentially acceptable as it is for now anyway.

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

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

To: Ladsgroup, Addshore
Cc: Lucas_Werkmeister_WMDE, Tarrow, Ladsgroup, Addshore, Aklapper, Beast1978, 
Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, 
darthmon_wmde, 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] [Maniphest] [Commented On] T239421: Step 1: mobile fixes (impact: medium)

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572651 had a related patch set uploaded (by Michael Große; owner: 
Michael Große):
  [mediawiki/extensions/Wikibase@master] bridge: Align ul styling
  
  https://gerrit.wikimedia.org/r/572651

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

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

To: Michael, gerritbot
Cc: Lydia_Pintscher, WMDE-leszek, darthmon_wmde, Pablo-WMDE, Michael, SaraiSan, 
Lucas_Werkmeister_WMDE, Sarai-WMDE, Aklapper, Charlie_WMDE, Beast1978, Un1tY, 
Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 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, 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] T244987: Timebox: research how to do reference rendering [6 hrs]

2020-02-17 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  That would be great, yes.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Pablo-WMDE, Tonina_Zhelyazkova_WMDE, Michael, 
Addshore, Aklapper, WMDE-leszek, Lydia_Pintscher, Sarai-WMDE, 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] T244469: Create Wikidata tour for 'add an image'

2020-02-17 Thread Mrjohncummings
Mrjohncummings updated the task description.

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

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

To: Mrjohncummings
Cc: NavinoEvans, Mrjohncummings, Pavithraes, darthmon_wmde, 
Tore_Danielsson_WMSE, Nandana, tramm, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, 
Ivana_Isadora, Jayprakash12345, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T243825: Create a Wikidata tour about Coordinates

2020-02-17 Thread Mrjohncummings
Mrjohncummings updated the task description.

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

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

To: Mrjohncummings
Cc: Pasleim, Alicia_Fagerving_WMSE, NavinoEvans, #user-mrjohncummings, 
Mrjohncummings, Pavithraes, darthmon_wmde, Tore_Danielsson_WMSE, Nandana, 
tramm, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, Ivana_Isadora, Jayprakash12345, 
QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T165902: Create a Wikidata Tour / tutorial about references

2020-02-17 Thread Mrjohncummings
Mrjohncummings updated the task description.

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

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

To: Mrjohncummings
Cc: NavinoEvans, Mrjohncummings, Aklapper, Spinster, Pavithraes, darthmon_wmde, 
Tore_Danielsson_WMSE, Nandana, tramm, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, 
Ivana_Isadora, Jayprakash12345, QZanden, LawExplorer, Puik, _jensen, 
rosalieper, D3r1ck01, Envlh, Scott_WUaS, Wikidata-bugs, aude, Tobias1984, 
Dinoguy1000, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T244572: Reading constraint definitions from the database of another wiki doesn't work

2020-02-17 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Well, there’s not much to verify, we already know the cache change isn’t 
enough either (T245243 ). And that 
other task should itself also be resolved already, I think – the blocker now, 
at least as far as I’m aware, is that `mw.config.get( 'wbIsEditView' )` is 
undefined on MediaInfo pages and WBQC expects it to be `true` before doing 
anything.
  
  Basically, we’re playing whack-a-mole until we’ve discovered all the parts 
missing to make constraints work on MediaInfo pages, and the Phabricator tasks 
don’t always fully reflect that. This one has probably outlived its usefulness, 
at least according to its current title (“reading constraint definitions from 
the database of another wiki” ought to work now), but I’m not sure if we should 
close it, retitle it, or something else.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Addshore, Cparle, Aklapper, Iflorez, darthmon_wmde, 
alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Agabi10, Scott_WUaS, Jonas, abian, 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] T222321: Make /entity/ alias work for Commons

2020-02-17 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a project: Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞).

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

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

To: Gehel, Lucas_Werkmeister_WMDE
Cc: EBernhardson, Salgo60, Cparle, Multichill, dcausse, Abbe98, 
Lucas_Werkmeister_WMDE, Tpt, Addshore, Ramsey-WMF, Lydia_Pintscher, Aklapper, 
Smalyshev, Beast1978, Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, Iflorez, darthmon_wmde, alaa_wmde, Meekrab2012, joker88john, 
CucyNoiD, Nandana, NebulousIris, JKSTNK, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, PDrouin-WMF, Gq86, 
Af420, E1presidente, Darkminds3113, Anooprao, SandraF_WMF, Bsandipan, Lordiis, 
GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, EBjune, 
Tramullas, Acer, merbst, LawExplorer, WSH1906, Lewizho99, Maathavan, 
Silverfish, Poyekhali, _jensen, rosalieper, Taiwania_Justo, Scott_WUaS, Jonas, 
Xmlizer, Susannaanas, Ixocactus, suriyaa, Wong128hk, Jane023, jkroll, 
Wikidata-bugs, Jdouglas, Base, matthiasmullie, aude, Tobias1984, El_Grafo, 
Dinoguy1000, Manybubbles, Ricordisamoa, Wesalius, Southparkfan, Fabrice_Florin, 
Raymond, Jdforrester-WMF, Steinsplitter, Mbch331, Rxy, Glaisher, Krenair, Keegan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T244001: Investigate reminding people to update `npm audit`

2020-02-17 Thread Tarrow
Tarrow added a project: Wikidata-Campsite (Wikidata-Campsite-Iteration-∞).
Tarrow added a comment.
Restricted Application added a project: Wikidata.


  Moving to camp as we closed the hike!

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

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

To: Tarrow
Cc: WMDE-leszek, Aklapper, Tarrow, Sarai-WMDE, Iflorez, darthmon_wmde, 
alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_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] T225057: Switch `tmpItemTermsMigrationStages` to MIGRATION_WRITE_NEW

2020-02-17 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Ladsgroup, gerritbot
Cc: Addshore, Ladsgroup, Aklapper, alaa_wmde, Beast1978, Un1tY, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_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] T225057: Switch `tmpItemTermsMigrationStages` to MIGRATION_WRITE_NEW

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572628 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [operations/mediawiki-config@master] Start reading for the new term store for 
clients up to Q1000
  
  https://gerrit.wikimedia.org/r/572628

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

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

To: Ladsgroup, gerritbot
Cc: Addshore, Ladsgroup, Aklapper, alaa_wmde, Iflorez, darthmon_wmde, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _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] T237164: Wikibase's cache/integration-tests incompatible with PHPUnit 8

2020-02-17 Thread thiemowmde
thiemowmde added a comment.


  Wasn't this what @MaxSem tried already in 
https://gerrit.wikimedia.org/r/547911?
  
  What's the point of this library anyway? As far as I can tell it's used in a 
single (!) file: SimpleCacheWithBagOStuffTest. What does it do? What do we 
loose when we get rid of the library? A bit of coverage maybe? Can't we restore 
this coverage by writing a few more test cases, without relying on the external 
library? Or even better, aren't the existing test cases enough to cover the 
code?

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

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

To: thiemowmde
Cc: Addshore, Daimona, Jdforrester-WMF, Ladsgroup, thiemowmde, Aklapper, 
MaxSem, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _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] [Unassigned] T244430: Reference gets deleted during patch when edit conflicting with another user.

2020-02-17 Thread Jakob_WMDE
Jakob_WMDE removed Jakob_WMDE as the assignee of this task.
Jakob_WMDE edited projects, added Wikidata-Campsite; removed Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞).
Jakob_WMDE added a comment.


  Moving this back as it seems to need more work before it can be worked on

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

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

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


[Wikidata-bugs] [Maniphest] [Updated] T196165: Commons image: when pasting the exact title, get the correct file first in the suggester

2020-02-17 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: Silvan_WMDE, Maintenance_bot
Cc: EBernhardson, TJones, dcausse, Ladsgroup, Silvan_WMDE, Addshore, Bencemac, 
Aklapper, Ayack, Liuxinyu970226, Smalyshev, Lydia_Pintscher, Lea_Lacroix_WMDE, 
Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, 
aude, Mbch331, Beast1978, Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, 
E.S.A-Sheild, Meekrab2012, joker88john, CucyNoiD, NebulousIris, Gaboe420, 
Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Af420, 
Darkminds3113, Bsandipan, Lordiis, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, 
WSH1906, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T243950: RDF output of an entity loads all referenced entities, it shouldn't

2020-02-17 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: Maintenance_bot
Cc: Tpt, daniel, WMDE-leszek, Lucas_Werkmeister_WMDE, Marostegui, jcrespo, 
Gehel, Addshore, Aklapper, Agabi10, Ladsgroup, darthmon_wmde, Nandana, Jony, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Vali.matei, _jensen, 
rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331, 
Beast1978, Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 
Meekrab2012, joker88john, CucyNoiD, NebulousIris, Gaboe420, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Af420, Darkminds3113, 
Bsandipan, Lordiis, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, WSH1906, Lewizho99, 
Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T243894: Add time limits to scripts executed on stat1007 as part of analytics/wmde/scripts

2020-02-17 Thread Ladsgroup
Ladsgroup added a comment.


  On daily ones:
  
2020-02-11 03:00:01 wikidata-sparql-instanceof Script Started!
2020-02-11 03:00:01 wikidata-phabricatorTasks Script Started!
2020-02-11 03:00:01 wikidata-site_stats-lexemes Script Started!
2020-02-11 03:00:01 wikidata-site_stats-active_users Script Started!
2020-02-11 03:00:01 wikidata-entityUsage Script Started!
2020-02-11 03:00:01 wikidata-datamodel-properties_by_datatype Script 
Started!
2020-02-11 03:00:01 wikibase-dockerStats Script Started!
2020-02-11 03:00:01 wikibase-dockerStats Running for: wikibase/wikibase
2020-02-11 03:00:01 wikidata-showcaseItems Script Started!
2020-02-11 03:00:01 wikidata-sparql-ranks Script Started!
2020-02-11 03:00:01 wikidata-site_stats-total_pages Script Started!
2020-02-11 03:00:01 wikidata-datamodel-statements_per_entity Script Started!
2020-02-11 03:00:01 wikidata-dumpDownloads Script Started!
2020-02-11 03:00:01 wikidata-dumpDownloads Targeting date: 07/Feb/2020
2020-02-11 03:00:01 wikidata-social-twitter Script Started!
2020-02-11 03:00:01 wikidata-social-newsletter Script Started!
2020-02-11 03:00:01 betafeature-counts Script Started!
2020-02-11 03:00:01 wikidata-social-irc Script Started!
2020-02-11 03:00:01 wikidata-datamodel-sitelinks_per_site Script Started!
2020-02-11 03:00:01 wikidata-site_stats-total_edits Script Started!
2020-02-11 03:00:01 wikidata-site_stats-pages_by_namespace Script Started!
2020-02-11 03:00:01 wikidata-site_stats-page_size Script Started!
2020-02-11 03:00:01 rollbackconf-userprops Script Started!
2020-02-11 03:00:01 wikidata-social-techmail Script Started!
2020-02-11 03:00:01 advancedsearch-userprops Script Started!
2020-02-11 03:00:01 wikidata-site_stats-recent_changes_by_namespace Script 
Started!
2020-02-11 03:00:01 wikidata-site_stats-user_languages Script Started!
2020-02-11 03:00:01 wikidata-dumpScanProcessing Script Started!
2020-02-11 03:00:01 wikidata-sparql-constraint-snaks Script Started!
2020-02-11 03:00:01 wikidata-datamodel-sitelinks_per_item Script Started!
2020-02-11 03:00:01 wikidata-site_stats-good_articles Script Started!
2020-02-11 03:00:01 wikidata-dumpScanProcessing File not found: 
/srv/analytics-wmde/graphite/data/dumpfiles/metrics.json
2020-02-11 03:00:01 wikidata-site_stats-users Script Started!
2020-02-11 03:00:01 wikidata-social-identica Script Started!
2020-02-11 03:00:01 wikidata-site_stats-user_groups Script Started!
2020-02-11 03:00:01 wikidata-social-mail Script Started!
2020-02-11 03:00:01 revslider-userprops Script Started!
2020-02-11 03:00:01 wikidata-site_stats-pagelinks_to_namespaces Script 
Started!
2020-02-11 03:00:01 catwatch-userprops Script Started!
2020-02-11 03:00:01 wikidata-site_stats-rolling_rc Script Started!
2020-02-11 03:00:01 echo-statusNotifications Script Started!
2020-02-11 03:00:01 wikidata-social-facebook Script Started!
2020-02-11 03:00:01 wikidata-social-irc Script Finished!
2020-02-11 03:00:01 wikidata-site_stats-users Script Finished!
2020-02-11 03:00:01 wikidata-site_stats-total_pages Script Finished!
2020-02-11 03:00:01 wikidata-social-newsletter Script Finished!
2020-02-11 03:00:01 wikidata-showcaseItems Script Finished!
2020-02-11 03:00:01 wikidata-site_stats-user_groups Running query for 
admins group
2020-02-11 03:00:01 wikidata-site_stats-user_groups Running query for 
bureaucrats group
2020-02-11 03:00:01 wikidata-site_stats-good_articles Script Finished!
2020-02-11 03:00:01 wikidata-site_stats-user_groups Running query for bots 
group
2020-02-11 03:00:01 wikidata-site_stats-user_groups Running query for 
propertycreators group
2020-02-11 03:00:01 wikidata-site_stats-total_edits Script Finished!
2020-02-11 03:00:01 wikidata-site_stats-user_groups Script Finished!
2020-02-11 03:00:01 wikibase-dockerStats Sending data for: wikibase/wikibase
2020-02-11 03:00:01 wikidata-social-techmail Script Finished!
2020-02-11 03:00:01 wikibase-dockerStats Running for: wikibase/wdqs
2020-02-11 03:00:01 wikidata-datamodel-properties_by_datatype Script 
Finished!
2020-02-11 03:00:01 wikidata-social-mail Script Finished!
2020-02-11 03:00:01 wikibase-dockerStats Sending data for: wikibase/wdqs
2020-02-11 03:00:01 wikibase-dockerStats Running for: wikibase/wdqs-frontend
2020-02-11 03:00:01 wikibase-dockerStats Sending data for: 
wikibase/wdqs-frontend
2020-02-11 03:00:01 wikibase-dockerStats Running for: wikibase/wdqs-proxy
2020-02-11 03:00:01 wikidata-dumpDownloads Script Finished!
2020-02-11 03:00:01 wikibase-dockerStats Sending data for: 
wikibase/wdqs-proxy
2020-02-11 03:00:01 wikibase-dockerStats Script Finished!
2020-02-11 03:00:02 wikidata-social-facebook Script Finished!
2020-02-11 03:00:03 wikidata-sparql-constraint-snaks Script Finished!
2020-02-11 03:00:03 

[Wikidata-bugs] [Maniphest] [Commented On] T243894: Add time limits to scripts executed on stat1007 as part of analytics/wmde/scripts

2020-02-17 Thread Ladsgroup
Ladsgroup added a comment.


  So this is for weekly runs:
  
ladsgroup@stat1007:/srv/analytics-wmde/graphite/log$ tail 
weekly.log-20200217 --lines 500
+ '[' -z /srv/analytics-wmde/graphite/src/scripts ']'
+ date '+%F %T weekly.sh Started!'
2020-02-16 01:00:01 weekly.sh Started!
+ date '+%F %T weekly.sh Waiting!'
+ eval /srv/analytics-wmde/graphite/src/scripts/src/dbtables/slots.php
++ /srv/analytics-wmde/graphite/src/scripts/src/dbtables/slots.php
2020-02-16 01:00:01 weekly.sh Waiting!
+ wait
2020-02-16 01:00:01 dbtables-slots Script Started!
2020-02-16 01:00:01 dbtables-slots Slots DB query failed for # NOTE: This 
file is automatically generated. Do not try to edit it directly., Skipping!!
+ date '+%F %T weekly.sh Ended!'
2020-02-16 01:20:56 weekly.sh Ended!
0.07user 0.01system 20:54.94elapsed 0%CPU (0avgtext+0avgdata 
27752maxresident)k
16inputs+32outputs (0major+5099minor)pagefaults 0swaps

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

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

To: Rosalie_WMDE, Ladsgroup
Cc: Marostegui, Aklapper, elukey, Ladsgroup, Addshore, 4748kitoko, Iflorez, 
darthmon_wmde, alaa_wmde, Nandana, Akovalyov, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, JAllemandou, 
terrrydactyl, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T204031: Deploy regular running of wikidata constraint checks using the job queue

2020-02-17 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  Why is this priority low? From the product side I'd put this to at least 
medium due to it being a prerequisite for regular constraints runs and querying.

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

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

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


[Wikidata-bugs] [Maniphest] [Commented On] T196165: Commons image: when pasting the exact title, get the correct file first in the suggester

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572616 **merged** by jenkins-bot:
  [data-values/value-view@master] Put exact matches on top of commons search 
results
  
  https://gerrit.wikimedia.org/r/572616

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

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

To: Silvan_WMDE, gerritbot
Cc: EBernhardson, TJones, dcausse, Ladsgroup, Silvan_WMDE, Addshore, Bencemac, 
Aklapper, Ayack, Liuxinyu970226, Smalyshev, Lydia_Pintscher, Lea_Lacroix_WMDE, 
Beast1978, Un1tY, Hook696, Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, 
Iflorez, darthmon_wmde, 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] [Edited] T241975: entitysources: Remove old MultiRepository & PerRepository Service containers and config

2020-02-17 Thread WMDE-leszek
WMDE-leszek updated the task description.

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

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

To: WMDE-leszek
Cc: Ladsgroup, WMDE-leszek, Addshore, Aklapper, Beast1978, Un1tY, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, Iflorez, darthmon_wmde, 
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] [Created] T245405: Investigate & possibly create simple test making sure entity type defintion keys are documented.

2020-02-17 Thread Addshore
Addshore created this task.
Addshore added projects: Wikidata-Campsite, Wikidata, Documentation.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  In T243518#575  I 
suggest the idea of a test to make sure that 
https://doc.wikimedia.org/Wikibase/master/php/md_docs_topics_entitytypes.html 
is kept up to date with the ways an entity can be configured and defined.
  It would be great to see if a test could be written making sure that the docs 
stay up to date with any newly created entity type config keys.

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

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

To: Addshore
Cc: Addshore, Aklapper, Pavithraes, darthmon_wmde, Nandana, Cpaulf30, Lahi, 
Gq86, GoranSMilovanovic, Ivana_Isadora, Jayprakash12345, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Dinoguy1000, 
Lydia_Pintscher, Mbch331, Jay8g, Quiddity
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T243950: RDF output of an entity loads all referenced entities, it shouldn't

2020-02-17 Thread gerritbot
gerritbot added a comment.


  Change 572491 abandoned by Ladsgroup:
  Do not try to load the whole entity because their id is mentioned in RDF
  
  Reason:
  Not this way.
  
  https://gerrit.wikimedia.org/r/572491

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

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

To: gerritbot
Cc: Tpt, daniel, WMDE-leszek, Lucas_Werkmeister_WMDE, Marostegui, jcrespo, 
Gehel, Addshore, Aklapper, Agabi10, Ladsgroup, Beast1978, Un1tY, Hook696, 
Daryl-TTMG, RomaAmorRoma, 0010318400, E.S.A-Sheild, darthmon_wmde, Meekrab2012, 
joker88john, CucyNoiD, Nandana, NebulousIris, Gaboe420, Jony, Versusxo, 
Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Af420, 
Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, 
Ramalepe, Liugev6, QZanden, LawExplorer, Vali.matei, 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] [Block] T241215: Improve Wikibase lower and mid level documentation

2020-02-17 Thread Addshore
Addshore reopened subtask T243518: Document things like 
entity-reference-extractor-callback for entity type definitions on 
doc.wikimedia.org for wikibase as Open.

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

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

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


[Wikidata-bugs] [Maniphest] [Reopened] T243518: Document things like entity-reference-extractor-callback for entity type definitions on doc.wikimedia.org for wikibase

2020-02-17 Thread Addshore
Addshore reopened this task as "Open".
Addshore moved this task from Done to To Do on the Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞) board.
Addshore added a comment.


  I just noticed that 
https://doc.wikimedia.org/Wikibase/master/php/md_docs_topics_extending-entities.html
 which is talked about in the task description is still online and still 
outdated.
  Perhaps this should just be removed as 
https://doc.wikimedia.org/Wikibase/master/php/md_docs_topics_entitytypes.html 
seems to cover basically everything?

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

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

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

To: Rosalie_WMDE, Addshore
Cc: WMDE-leszek, Aklapper, Addshore, Iflorez, Pavithraes, darthmon_wmde, 
alaa_wmde, Nandana, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, Ivana_Isadora, 
Jayprakash12345, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T236772: Document Wikibase Usage Aspects

2020-02-17 Thread WMDE-leszek
WMDE-leszek updated the task description.

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

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

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


[Wikidata-bugs] [Maniphest] [Changed Project Column] T245245: Message Wikibase-error-ui-no-external-page shows literal $1 and $2 instead of values

2020-02-17 Thread Silvan_WMDE
Silvan_WMDE moved this task from Prioritized Product to 
Wikidata-Campsite-Iteration-∞ on the Wikidata-Campsite board.
Silvan_WMDE edited projects, added Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞); removed Wikidata-Campsite.

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

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

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

To: Silvan_WMDE
Cc: Lucas_Werkmeister_WMDE, Jakob_WMDE, Addshore, Silvan_WMDE, Aklapper, 
Raymond, Kaleem-Bhatti, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, Jayprakash12345, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Srdjan_m, Jonas, MuhammadShuaib, LNDDYL, Psychoslave, 
Wikidata-bugs, aude, Gryllida, Shizhao, Lydia_Pintscher, Arrbee, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T236772: Document Wikibase Usage Aspects

2020-02-17 Thread WMDE-leszek
WMDE-leszek added a comment.


  Adding the new documentation location to the task description ,as it might 
not be clear what's going on without parsing all the comments.

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

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

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


[Wikidata-bugs] [Maniphest] [Claimed] T245245: Message Wikibase-error-ui-no-external-page shows literal $1 and $2 instead of values

2020-02-17 Thread Silvan_WMDE
Silvan_WMDE claimed this task.

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

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

To: Silvan_WMDE
Cc: Lucas_Werkmeister_WMDE, Jakob_WMDE, Addshore, Silvan_WMDE, Aklapper, 
Raymond, Kaleem-Bhatti, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, 
Jayprakash12345, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Srdjan_m, Jonas, MuhammadShuaib, LNDDYL, Psychoslave, Wikidata-bugs, aude, 
Gryllida, Shizhao, Lydia_Pintscher, Arrbee, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


  1   2   >