[Wikidata-bugs] [Maniphest] T265573: Allow to mark Structured Data on Commons edits as minor

2020-10-15 Thread LucasWerkmeister
LucasWerkmeister added a subscriber: matej_suchanek.
LucasWerkmeister added a comment.


  Another parameter from `action=edit` which the Wikibase APIs don’t have is 
`watchlist` (`nochange`, `preferences`, `unwatch`, `watch`). Something like 
this parameter would probably be required to resolve the issue of 
QuickStatements watchlisting created/edited items 

 – I haven’t seen anyone call for a new API parameter yet, but I assume that’s 
how @matej_suchanek’s comment that “each //tool// should give users ability to 
control the watchlist” would be implemented.

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

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

To: LucasWerkmeister
Cc: matej_suchanek, Raymond, LucasWerkmeister, JeanFred, Aklapper, CBogen, 
Akuckartz, darthmon_wmde, Nandana, JKSTNK, lucamauri, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265615: Terminating MySQL takes several minutes in (Wikibase?) CI jobs

2020-10-15 Thread hashar
hashar triaged this task as "High" priority.
hashar added a comment.


  Will look at it tomorrow and try to at least reproduce the issue.

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

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

To: hashar
Cc: hashar, awight, kostajh, Lucas_Werkmeister_WMDE, Akuckartz, darthmon_wmde, 
Nandana, NebulousIris, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Liudvikas, Scott_WUaS, thcipriani, Wikidata-bugs, aude, 
Jdforrester-WMF, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265615: Terminating MySQL takes several minutes in (Wikibase?) CI jobs

2020-10-15 Thread hashar
hashar added subscribers: kostajh, awight, hashar.
hashar edited projects, added Continuous-Integration-Infrastructure, 
Release-Engineering-Team-TODO (2020-10-01 to 2020-12-31 (Q2)), 
Release-Engineering-Team (CI & Testing services); removed 
Continuous-Integration-Config.
hashar added a comment.


  The relevant code:
  
  name=quibble/backend.py
class BackendServer:
...
   def stop(self):
if self.server is not None:
self.log.info('Terminating %s', self.__class__.__name__)
self.server.terminate()
try:
self.server.wait(2)
except subprocess.TimeoutExpired:
self.server.kill()  # SIGKILL
finally:
self.server = None
  
  Where `self.server` is a Popen instance 
. So we 
basically send `SIGTERM` and have a busy loop waiting for two seconds which 
should then send `SIGKILL`.  Clearly that does not work as expected :-\
  
  The python documentation for `Popen.wait()` mentions it can deadlock when 
sending stdout/stderr to pipes:
  
  > Note
  >
  > This will deadlock when using stdout=PIPE or stderr=PIPE and the child 
process generates enough output to a pipe such that it blocks waiting for the 
OS pipe buffer to accept more data. Use Popen.communicate() when using pipes to 
avoid that.
  
  But we use /dev/null when we start the server:
  
self.server = subprocess.Popen([
'/usr/sbin/mysqld',  # fixme drop path
'--skip-networking',
'--datadir=%s' % self.rootdir,
'--log-error=%s' % self.errorlog,
'--pid-file=%s' % self.pidfile,
'--socket=%s' % self.socket,
],
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
)
  
  Some stuff we can try:
  
  - reproduce it obviously
  - check whether MariaDB version has changed in the CI image
  - add some logging in the stop command (cause clearly 
`subprocess.TimeoutExpired` should be raised and cause a SIGKILL to be send)
  - add some option to capture MySQL stdout/stderr (using `stream_relay` which 
can consumes a PIPE and output it via `logging`).

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

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

To: hashar
Cc: hashar, awight, kostajh, Lucas_Werkmeister_WMDE, Akuckartz, darthmon_wmde, 
Nandana, NebulousIris, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Liudvikas, Scott_WUaS, thcipriani, Wikidata-bugs, aude, 
Jdforrester-WMF, Mbch331, Jay8g, Totolinototo3, Redabr4, Zanziii, Sadisticturd, 
A.S.Kochergin
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265299: Investigate integrating accessibility testing tools into development tooling

2020-10-15 Thread Ladsgroup
Ladsgroup added a comment.


  **Regarding rules:**
  So these are rules that pa11y supports 
 and these are 
rules that axe-core supports 
. 
Both are pretty comprehensive and covers huge parts of WCAG 2.1 (and other 
standards like ARIA, Section 508, etc.) but none of them cover everything. As 
far as I understood not everything can be tested automatically so having a CI 
test doesn't mean the website is automatically accessible.
  
  **Usage:**
  The global usage of pa11y and axe is similar (not a big difference). I 
couldn't find any usage of pa11y in Wikimedia codebase but I found axe-core 
being installed in tainted ref (but not used!). I'm asking WMF people to see if 
they are using any other library that we might want to look into (haven't found 
anything in ooui itself)
  
  **Integration:**
  pa11y has a built-in support for puppeteer 
 which is nice but we don't 
use puppeteer for our testing. OTOH, axe-core has a library called jest-axe 
 which makes testing our system pretty 
easy (going to build a PoC PR soon).
  
  **Misc:**
  
  - axe is way more than just an a11y testing library, they have a pretty nice 
library (Explaining-things kind of library e.g. explaining "aria-required-attr" 
error 
).
 They also have browser extensions that comes handy, etc.
  - This stylelint plugin  also is 
useful for testing basic a11y issues involving styles.

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

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

To: Ladsgroup
Cc: Aklapper, Sarai-WMDE, guergana.tzatchkova, Jakob_WMDE, Lydia_Pintscher, 
WMDE-leszek, gabriel-wmde, Charlie_WMDE, Michael, noarave, Hazizibinmahdi, 
Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
Orienteerix, LawExplorer, Flycatchr, EHCliffe, Zppix, _jensen, rosalieper, 
Scott_WUaS, Volker_E, 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] T255450: Understand Termbox SSR timouts better

2020-10-15 Thread Michael
Michael added a comment.


  Looking deeper into this data, a strange pattern was recognized. The events 
don't seem to be randomly distributed as one would expect, but there seem to be 
some patterns. In particular, it is notable that a lot of events are happening 
just in the minute after 22:00 UTC. This seems to be a recurring pattern on 
many, but not all, days.
  
  It is unclear what causes this.
  
  - Cache purges shouldn't happen based on the time of day
  - Maybe some scripts are requesting a lot of data at 22:00 UTC which leads 
slower responses?
  - Are we doing some daily dumps or something at 22:00 UTC?

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

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

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


[Wikidata-bugs] [Maniphest] T256118: Create MediaWiki-Docker/WikibaseLexeme

2020-10-15 Thread zeljkofilipin
zeljkofilipin added a project: Documentation.

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

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

To: zeljkofilipin
Cc: Vidhi-Mody, zeljkofilipin, Akuckartz, apaskulin, Pavithraes, darthmon_wmde, 
brennen, Nandana, kostajh, Cpaulf30, Lahi, Gq86, GoranSMilovanovic, 
Ivana_Isadora, Mahir256, 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] T260064: Use mediawiki-codesniffer 31.0.0 in Wikibase repositories (that use codesniffer)

2020-10-15 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE closed subtask T264874: Update wmde/Number to use 
mediawiki-codesniffer 31.0.0 as Resolved.

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

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

To: Lucas_Werkmeister_WMDE
Cc: ItamarWMDE, Michael, Lucas_Werkmeister_WMDE, Aklapper, Addshore, Akuckartz, 
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] T264874: Update wmde/Number to use mediawiki-codesniffer 31.0.0

2020-10-15 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE closed this task as "Resolved".
Lucas_Werkmeister_WMDE moved this task from Peer Review to Done on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Lucas_Werkmeister_WMDE added a comment.


  Done, I hope :)

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

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

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

To: noarave, Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Aklapper, Pablo-WMDE, Akuckartz, 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] T265008: Implement the menu part of the Lookup component (with hardcoded content for now)

2020-10-15 Thread guergana.tzatchkova
guergana.tzatchkova added a comment.


  https://github.com/wmde/wikit/pull/219

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

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

To: guergana.tzatchkova
Cc: Aklapper, Jakob_WMDE, Akuckartz, 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] T264194: Examine WDQS queries for intent

2020-10-15 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  Adam and I went through the remaining queries. Here are a few more 
observations:
  
  - I sorted the queries alphabetically and this very easily grouped similar 
queries together.
  - Adam had the brilliant idea of looking for some snippets from the queries 
on github and we found a few projects there responsible for some of the queries 
in the sample.
  - Very few queries seem to have comments.
  - We found a pattern where people search for everything (for example all 
movies) and then filter by an identifier. This is pretty inefficient and could 
probably be rewritten.

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

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

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


[Wikidata-bugs] [Maniphest] T239195: Wikidata.org: On mobile, sections stays expanded even it's disabled in settings

2020-10-15 Thread Pablo-WMDE
Pablo-WMDE edited projects, added Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞), MobileFrontend, Patch-For-Review; removed 
Wikidata-Campsite.
Pablo-WMDE added a comment.


  Restored tags which were probably changed by accident.

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

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

To: ItamarWMDE, Pablo-WMDE
Cc: Pablo-WMDE, Peter.ovchyn, Lucas_Werkmeister_WMDE, Ochaochaocha3, 
Lea_Lacroix_WMDE, Liuxinyu970226, MaxSem, Lydia_Pintscher, Jdlrobson, Addshore, 
Aklapper, Masumrezarock100, 1997kB, Alter-paule, Beast1978, Un1tY, Akuckartz, 
Demian, Hook696, CptViraj, Iflorez, darthmon_wmde, Kent7301, Dibya, alaa_wmde, 
joker88john, 94rain, Dinadineke, DannyS712, CucyNoiD, Nandana, Tks4Fish, 
Gaboe420, Giuliamocci, tabish.shaikh91, Cpaulf30, Lahi, Gq86, Af420, mojoaxel, 
Bsandipan, GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, 
QZanden, Kizule, merbst, LawExplorer, Winter, Lewizho99, Maathavan, DatGuy, 
Devwaker, Niklitov, _jensen, Urbanecm, rosalieper, JEumerus, Scott_WUaS, Jonas, 
Ananthsubray, Superzerocool, Tulsi_Bhagat, Wong128hk, Luke081515, SimmeD, 
Wikidata-bugs, Snowolf, aude, Dcljr, TheDJ, 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] T239195: Wikidata.org: On mobile, sections stays expanded even it's disabled in settings

2020-10-15 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  I get collapsed sections on localhost, even on the main page with just one 
section (“getting started”), as long as the screen is narrow enough. That’s 
with the default setting of `wgMFCollapseSectionsByDefault` (i. e. I didn’t 
touch my `LocalSettings.php`), because `true` is the default and that’s the 
value we want to restore.

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

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

To: ItamarWMDE, Lucas_Werkmeister_WMDE
Cc: Pablo-WMDE, Peter.ovchyn, Lucas_Werkmeister_WMDE, Ochaochaocha3, 
Lea_Lacroix_WMDE, Liuxinyu970226, MaxSem, Lydia_Pintscher, Jdlrobson, Addshore, 
Aklapper, Masumrezarock100, 1997kB, Akuckartz, Demian, CptViraj, darthmon_wmde, 
Dibya, 94rain, Dinadineke, DannyS712, Nandana, Tks4Fish, tabish.shaikh91, Lahi, 
Gq86, GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, 
QZanden, Kizule, merbst, LawExplorer, Winter, DatGuy, Devwaker, Niklitov, 
_jensen, Urbanecm, rosalieper, JEumerus, Scott_WUaS, Jonas, Ananthsubray, 
Superzerocool, Tulsi_Bhagat, Wong128hk, Luke081515, SimmeD, Wikidata-bugs, 
Snowolf, aude, Dcljr, TheDJ, 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] T264884: Enable dumpJson.php to output Lexemes

2020-10-15 Thread toan
toan claimed this task.
toan added a subscriber: ItamarWMDE.

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

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

To: toan
Cc: ItamarWMDE, Pablo-WMDE, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, 
Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, CucyNoiD, Nandana, 
Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, Mahir256, QZanden, LawExplorer, 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] T239195: Wikidata.org: On mobile, sections stays expanded even it's disabled in settings

2020-10-15 Thread Jdlrobson
Jdlrobson edited projects, added Wikidata-Campsite; removed Patch-For-Review, 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞), MobileFrontend.
Jdlrobson added a comment.


  https://gerrit.wikimedia.org/r/633772/ simply hides the option from the 
settings page: https://en.m.wikipedia.org/wiki/Special:MobileOptions
  
  F32385755: Screen Shot 2020-10-15 at 7.42.50 AM.png 
 
  The settings will only appear and work on mobile devices ( screen resolution 
< 720px) and is meant to override the default behaviour on mobile. It does not 
impact talk pages.. On a tablet sections will always be expanded.
  
  I can confirm https://gerrit.wikimedia.org/r/634039 is the correct fix here. 
https://gerrit.wikimedia.org/r/633772/ just removes confusion by what the 
feature is supposed to do.

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

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

To: ItamarWMDE, Jdlrobson
Cc: Pablo-WMDE, Peter.ovchyn, Lucas_Werkmeister_WMDE, Ochaochaocha3, 
Lea_Lacroix_WMDE, Liuxinyu970226, MaxSem, Lydia_Pintscher, Jdlrobson, Addshore, 
Aklapper, Masumrezarock100, 1997kB, Akuckartz, Demian, CptViraj, darthmon_wmde, 
Dibya, 94rain, Dinadineke, DannyS712, Nandana, Tks4Fish, tabish.shaikh91, Lahi, 
Gq86, GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, 
QZanden, Kizule, merbst, LawExplorer, Winter, DatGuy, Devwaker, Niklitov, 
_jensen, Urbanecm, rosalieper, JEumerus, Scott_WUaS, Jonas, Ananthsubray, 
Superzerocool, Tulsi_Bhagat, Wong128hk, Luke081515, SimmeD, Wikidata-bugs, 
Snowolf, aude, Dcljr, TheDJ, Matanya, Mbch331, Rxy, Jay8g, Krenair, 
Alter-paule, Beast1978, Un1tY, Hook696, Iflorez, Kent7301, alaa_wmde, 
joker88john, CucyNoiD, Gaboe420, Giuliamocci, Cpaulf30, Af420, mojoaxel, 
Bsandipan, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T239931: Reduce the impact of the sanitizer on wikidata

2020-10-15 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE set Due Date to Tue, Oct 27, 12:00 AM.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, tfmorris, Pintoch, CBogen, EBernhardson, Ladsgroup, 
Addshore, Aklapper, dcausse, Wilmanbeno, Alter-paule, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, GoranSMilovanovic, QZanden, EBjune, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, jayvdb, 
Lydia_Pintscher, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T239931: Reduce the impact of the sanitizer on wikidata

2020-10-15 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a project: Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞).

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, tfmorris, Pintoch, CBogen, EBernhardson, Ladsgroup, 
Addshore, Aklapper, dcausse, Wilmanbeno, Alter-paule, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, GoranSMilovanovic, QZanden, EBjune, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, jayvdb, 
Lydia_Pintscher, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265615: Terminating MySQL takes several minutes in (Wikibase?) CI jobs

2020-10-15 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE created this task.
Lucas_Werkmeister_WMDE added projects: Quibble, Continuous-Integration-Config, 
Wikidata.

TASK DESCRIPTION
  I’ve noticed that the “Terminating MySQL” step at the end of a CI build can 
take several minutes. For example, in this recent job 
:
  
14:42:01 INFO:quibble.commands:Shutting down backends: http://127.0.0.1:9412 /workspace/src>  
14:42:01 INFO:backend.ChromeWebDriver:Terminating ChromeWebDriver
14:42:01 INFO:backend.Xvfb:Terminating Xvfb
14:42:01 INFO:backend.DevWebServer:Terminating DevWebServer
14:42:01 INFO:quibble.commands:Shutting down backends: 
14:42:01 INFO:backend.MySQL:Terminating MySQL
14:46:16 [wmf-quibble-selenium-php72-docker@2] $ /bin/bash -xe 
/tmp/jenkins6976447998931934422.sh
  
  I have no idea what Quibble or MySQL were doing there, but I doubt that it 
was really worth four minutes(!) of CI time.
  
  So far, I’ve only noticed this in Wikibase jobs, but that might just be 
because I don’t often look at the CI output for other repositories.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Akuckartz, Totolinototo3, darthmon_wmde, Redabr4, 
Zanziii, Sadisticturd, Nandana, kostajh, A.S.Kochergin, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, hashar
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T229100: Links for feedback on protected Wikidata entities

2020-10-15 Thread abian
abian added a comment.


  It would be great to have this available considering T254280 
 and 
https://www.wikidata.org/wiki/Wikidata:Requests_for_permissions/Administrator/MsynABot;
 if there are some setbacks or this is proving more difficult than it seemed, 
we can comment on it, change the acceptance criteria, ask on Wikidata for ideas…

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

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

To: abian
Cc: Charlie_WMDE, Bugreporter, Sjoerddebruin, Multichill, Lydia_Pintscher, 
MisterSynergy, abian, Aklapper, Akuckartz, darthmon_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] T72037: [Story] Automate Entity Suggester Data Updates

2020-10-15 Thread Bugreporter
Bugreporter merged a task: T265522: Automate the generation of data for 
PropertySuggester.
Bugreporter added a subscriber: Addshore.

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

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

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


[Wikidata-bugs] [Maniphest] T265522: Automate the generation of data for PropertySuggester

2020-10-15 Thread Bugreporter
Bugreporter closed this task as a duplicate of T72037: [Story] Automate Entity 
Suggester Data Updates.

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

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

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


[Wikidata-bugs] [Maniphest] T254280: Semi-protecting all properties

2020-10-15 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as "Resolved".
Lydia_Pintscher moved this task from Test (Verification) to Done on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Lydia_Pintscher added a comment.


  Alright. Thanks everyone :)
  Let's call this done then \o/

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

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

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

To: Lucas_Werkmeister_WMDE, Lydia_Pintscher
Cc: ItamarWMDE, Bugreporter, Lucas_Werkmeister_WMDE, WMDE-leszek, abian, 
alanajjar, Ymblanter, Rehman, Fuzheado, Lydia_Pintscher, Jasper, Bencemac, 
Addshore, Aklapper, Mike_Peel, Akuckartz, 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] T260064: Use mediawiki-codesniffer 31.0.0 in Wikibase repositories (that use codesniffer)

2020-10-15 Thread Rosalie_WMDE
Rosalie_WMDE closed subtask T264870: Update DataValues/Geo to use 
mediawiki-codesniffer 31.0.0 as Resolved.

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

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

To: Rosalie_WMDE
Cc: ItamarWMDE, Michael, Lucas_Werkmeister_WMDE, Aklapper, Addshore, Akuckartz, 
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] T264870: Update DataValues/Geo to use mediawiki-codesniffer 31.0.0

2020-10-15 Thread Rosalie_WMDE
Rosalie_WMDE closed this task as "Resolved".

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

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

To: Rosalie_WMDE
Cc: Aklapper, Pablo-WMDE, Akuckartz, 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] T135155: Create an adapter that implements SiteLookup on top of InterwikiLookup

2020-10-15 Thread Aklapper
Aklapper edited projects, added Patch-Needs-Improvement; removed 
Patch-For-Review.

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

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

To: Ladsgroup, Aklapper
Cc: Addshore, RazShuty, gerritbot, Ladsgroup, Zppix, Smalyshev, Krenair, 
Legoktm, ori, Aklapper, aude, daniel, Hazizibinmahdi, Akuckartz, darthmon_wmde, 
DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, Mbch331, Rxy, 
Alter-paule, Beast1978, Un1tY, Hook696, Kent7301, joker88john, CucyNoiD, 
Gaboe420, Giuliamocci, Cpaulf30, Af420, Bsandipan, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T264865: Update DataValues/DataValues to use mediawiki-codesniffer 31.0.0

2020-10-15 Thread Rosalie_WMDE
Rosalie_WMDE closed this task as "Resolved".

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

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

To: Rosalie_WMDE
Cc: Aklapper, Pablo-WMDE, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, 
Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, CucyNoiD, Nandana, 
Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, QZanden, LawExplorer, 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] T260064: Use mediawiki-codesniffer 31.0.0 in Wikibase repositories (that use codesniffer)

2020-10-15 Thread Rosalie_WMDE
Rosalie_WMDE closed subtask T264865: Update DataValues/DataValues to use 
mediawiki-codesniffer 31.0.0 as Resolved.

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

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

To: Rosalie_WMDE
Cc: ItamarWMDE, Michael, Lucas_Werkmeister_WMDE, Aklapper, Addshore, Akuckartz, 
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] T260064: Use mediawiki-codesniffer 31.0.0 in Wikibase repositories (that use codesniffer)

2020-10-15 Thread Rosalie_WMDE
Rosalie_WMDE closed subtask T264866: Update DataValues/Interfaces to use 
mediawiki-codesniffer 31.0.0 as Resolved.

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

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

To: Rosalie_WMDE
Cc: ItamarWMDE, Michael, Lucas_Werkmeister_WMDE, Aklapper, Addshore, Akuckartz, 
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] T264866: Update DataValues/Interfaces to use mediawiki-codesniffer 31.0.0

2020-10-15 Thread Rosalie_WMDE
Rosalie_WMDE closed this task as "Resolved".

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

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

To: Rosalie_WMDE
Cc: Aklapper, Pablo-WMDE, Akuckartz, 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] T239195: Wikidata.org: On mobile, sections stays expanded even it's disabled in settings

2020-10-15 Thread Pablo-WMDE
Pablo-WMDE added a comment.


  > My main page includes a section, and that section was expanded - as a 
default, but I would expect it to be collapsed.
  
  I can confirm Itamar's observation. I have verified that 
`wgMFCollapseSectionsByDefault` correctly makes its way into MobileFrontend 

 but despite some digging into it could not establish a scenario where its 
false value makes page sections shown collapsed by default.
  
  This probably has something to do with this quote by @Jdlrobson
  
  > The setting was only ever designed to expand sections by default not to do 
the opposite. Therefore to get it to work requires rethinking and possibly 
completely rewriting what is actually a very little used feature.
  
  It would be interesting what's the state about this at the moment - and if we 
should expect https://gerrit.wikimedia.org/r/633772/ to act as a solution (I 
did not see an impact; it being checked out or not).

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

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

To: ItamarWMDE, Pablo-WMDE
Cc: Pablo-WMDE, Peter.ovchyn, Lucas_Werkmeister_WMDE, Ochaochaocha3, 
Lea_Lacroix_WMDE, Liuxinyu970226, MaxSem, Lydia_Pintscher, Jdlrobson, Addshore, 
Aklapper, Masumrezarock100, 1997kB, Alter-paule, Beast1978, Un1tY, Akuckartz, 
Demian, Hook696, CptViraj, Iflorez, darthmon_wmde, Kent7301, Dibya, alaa_wmde, 
joker88john, 94rain, Dinadineke, DannyS712, CucyNoiD, Nandana, Tks4Fish, 
Gaboe420, Giuliamocci, tabish.shaikh91, Cpaulf30, Lahi, Gq86, Af420, mojoaxel, 
Bsandipan, GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, 
QZanden, Kizule, merbst, LawExplorer, Winter, Lewizho99, Maathavan, DatGuy, 
Devwaker, Niklitov, _jensen, Urbanecm, rosalieper, JEumerus, Scott_WUaS, Jonas, 
Ananthsubray, Superzerocool, Tulsi_Bhagat, Wong128hk, Luke081515, SimmeD, 
Wikidata-bugs, Snowolf, aude, Dcljr, TheDJ, 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] T254280: Semi-protecting all properties

2020-10-15 Thread abian
abian added a comment.


  In T254280#6545624 , 
@Lydia_Pintscher wrote:
  
  > Is the page info just out of date? Does it get overwritten by 
namespace-wide protection and just doesn't reflect that?
  
  Luckily or unfortunately this happens on all wikis (also Wikipedia 
)
 and all protected/semi-protected namespaces (also the MediaWiki namespace 
).
 The (dis?)information page only seems to take into account the individual 
protection status of the page.

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

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

To: Lucas_Werkmeister_WMDE, abian
Cc: ItamarWMDE, Bugreporter, Lucas_Werkmeister_WMDE, WMDE-leszek, abian, 
alanajjar, Ymblanter, Rehman, Fuzheado, Lydia_Pintscher, Jasper, Bencemac, 
Addshore, Aklapper, Mike_Peel, Akuckartz, 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] T260064: Use mediawiki-codesniffer 31.0.0 in Wikibase repositories (that use codesniffer)

2020-10-15 Thread Rosalie_WMDE
Rosalie_WMDE closed subtask T264867: Update DataValues/Common to use 
mediawiki-codesniffer 31.0.0 as Resolved.

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

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

To: Rosalie_WMDE
Cc: ItamarWMDE, Michael, Lucas_Werkmeister_WMDE, Aklapper, Addshore, Akuckartz, 
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] T264867: Update DataValues/Common to use mediawiki-codesniffer 31.0.0

2020-10-15 Thread Rosalie_WMDE
Rosalie_WMDE closed this task as "Resolved".

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

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

To: ItamarWMDE, Rosalie_WMDE
Cc: Aklapper, Pablo-WMDE, Akuckartz, 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] T264869: Update DataValues/Validators to use mediawiki-codesniffer 31.0.0

2020-10-15 Thread Rosalie_WMDE
Rosalie_WMDE closed this task as "Resolved".

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

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

To: Rosalie_WMDE
Cc: Rosalie_WMDE, Aklapper, Pablo-WMDE, Akuckartz, 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] T260064: Use mediawiki-codesniffer 31.0.0 in Wikibase repositories (that use codesniffer)

2020-10-15 Thread Rosalie_WMDE
Rosalie_WMDE closed subtask T264869: Update DataValues/Validators to use 
mediawiki-codesniffer 31.0.0 as Resolved.

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

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

To: Rosalie_WMDE
Cc: ItamarWMDE, Michael, Lucas_Werkmeister_WMDE, Aklapper, Addshore, Akuckartz, 
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] T205459: Decide how SlotRoleHandlers can provide placeholders for missing slots

2020-10-15 Thread Aklapper
Aklapper edited projects, added Patch-Needs-Improvement; removed 
Patch-For-Review.

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

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

To: daniel, Aklapper
Cc: Cparle, Aklapper, gerritbot, daniel, Naike, CBogen, Akuckartz, 
darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, Ramsey-WMF, GoranSMilovanovic, 
QZanden, LawExplorer, JJMC89, _jensen, rosalieper, Agabi10, Scott_WUaS, 
Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, Ltrlg, Alter-paule, Beast1978, 
Un1tY, Hook696, Kent7301, joker88john, CucyNoiD, Gaboe420, Giuliamocci, 
Cpaulf30, Af420, Bsandipan, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265596: Investigate and possibly improve stability of browser tests

2020-10-15 Thread toan
toan created this task.
toan added a project: Wikidata-Campsite.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  During the wb_terms leftover hike 
(https://phabricator.wikimedia.org/project/view/5012/) we think we noticed an 
increase in random browser tests failing.
  
  It is unclear whether or not this is due to the fact that we were working 
with an unusually large amount of patches at the same time, thus putting more 
pressure on the CI servers. Or if this is due to something else.
  
  - Are there any ways to improve this?
  - Are there any ways for a failed browser test to be retried?
  
  Example output:
  
14:11:38 [chrome 73.0.3683.75 Linux #0-5] 10 passing (1m 47.5s)
14:11:38 [chrome 73.0.3683.75 Linux #0-5] 1 failing
14:11:38 [chrome 73.0.3683.75 Linux #0-5]
14:11:38 [chrome 73.0.3683.75 Linux #0-5] 1) init indicates loading while 
app gathers its data
14:11:38 [chrome 73.0.3683.75 Linux #0-5] waitUntil condition timed out 
after 1ms
14:11:38 [chrome 73.0.3683.75 Linux #0-5] Error: waitUntil condition timed 
out after 1ms
14:11:38 [chrome 73.0.3683.75 Linux #0-5] at Context.it 
(/workspace/src/extensions/Wikibase/client/data-bridge/tests/selenium/specs/init.js:68:11)
14:11:38 --
14:11:38 [chrome 73.0.3683.75 Linux #0-6] Spec: 
/workspace/src/extensions/Wikibase/client/data-bridge/tests/selenium/specs/permissionChecks.js
14:11:38 [chrome 73.0.3683.75 Linux #0-6] Running: chrome (v73.0.3683.75) 
on Linux
  
  Example patches:
  
  https://gerrit.wikimedia.org/r/c/mediawiki/extensions/Wikibase/+/632740
  https://gerrit.wikimedia.org/r/c/mediawiki/extensions/Wikibase/+/632899
  https://gerrit.wikimedia.org/r/c/mediawiki/extensions/Wikibase/+/632695
  https://gerrit.wikimedia.org/r/c/mediawiki/extensions/Wikibase/+/632727
  https://gerrit.wikimedia.org/r/c/mediawiki/extensions/Wikibase/+/632649

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

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

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

To: toan
Cc: Addshore, WMDE-leszek, Lucas_Werkmeister_WMDE, toan, Aklapper, Akuckartz, 
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] T199241: If a MediaInfo items depicts something that has its own 'depicts' statements, add those to the search index too

2020-10-15 Thread Aklapper
Aklapper edited projects, added Patch-Needs-Improvement; removed 
Patch-For-Review.

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

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

To: Cparle, Aklapper
Cc: SandraF_WMF, gerritbot, Aklapper, Ramsey-WMF, Abit, Cparle, CBogen, 
Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
EBjune, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331, Alter-paule, Beast1978, Un1tY, Hook696, Kent7301, joker88john, 
CucyNoiD, Gaboe420, Giuliamocci, Cpaulf30, Af420, Bsandipan, Lewizho99, 
Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265118: Investigate how to handle a restricted list of external services

2020-10-15 Thread Tarrow
Tarrow added a comment.


  **Reasons to NOT add a list of valid services to the spec**
  
  - Adding an allow list to the spec is challenging without having 2 sources of 
truth. Because it is currently a static `schemas.json` file we'd need to keep 
this in sync with `ExternalServices.php` which would probably require some 
clever additional test or be fragile to developers making mistakes.
  - We would need to always update the spec
  - Users referring to a historic spec might have differing expectations
  - It might suggest to toolbuilders to write tools that are less extensible 
(e.g. they might try to hardcode these values)
  
  **Reasons to add the list of services to the spec**
  
  - It makes our end-2-end test feel more solid
  - It helps set the expectations of tools builders
  
  **Thoughts considered but immaterial**
  
  - It probably makes no difference for a Wikibase admin. They will be looking 
in the configuration docs not the spec

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

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

To: Tarrow
Cc: Aklapper, Tarrow, Akuckartz, 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] T232620: Trying to create entities via wbeditentity when blocked should not assign a fresh entity ID

2020-10-15 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as "Resolved".
Lydia_Pintscher moved this task from Test (Verification) to Done on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Lydia_Pintscher added a comment.


  Adam and I just tried it on test.wikidata.org and IDs are no longer skipped 
when blocked users create Items.
  \o/

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

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

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

To: hoo, Lydia_Pintscher
Cc: DannyS712, noarave, Lucas_Werkmeister_WMDE, M2k_dewiki, Epidosis, 
Lea_Lacroix_WMDE, daniel, Stryn, jeremyb, Merl, Nemo_bis, Legoktm, jeblad, 
Wikidata-bugs, ChongDae, StudiesWorld, Lydia_Pintscher, Aklapper, Bugreporter, 
Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, aude, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265562: Wikibase Lua: addStatementUsage seems unjustifiably expensive

2020-10-15 Thread RolandUnger
RolandUnger added a comment.


  It seems that it is a sudden spike. The computing time only for 
`addStatementUsage` jumped from about 600 ms to 5000 ms (all Lua stuff from 
about 4.5 sec to about 9 sec). Within the last two weeks I added and optimized 
the analysis of opening hours to our vCard template. As in the past I used the 
same technique to //prevent// retrieving data from Wikidata. We are using 
several tables like this: https://de.wikivoyage.org/wiki/Modul:Hours/i18n with 
prepared data. On this way there is usually only one getEntity call per 
template. The number of entities used increased within the last two weeks only 
by about 1. Of course I added some statements to the Wikidata datasets (mainly 
of museums) to test the display of opening hours. Within the last two weeks 
there was no significant change. The core functions were added already on Sep. 
26, 2020.
  
  There is another article with the same behavior: 
https://de.wikivoyage.org/wiki/Eisenbahnmuseen_in_Europa. For this article, I 
got today in the morning a runtime error that there was not enough time.
  
Lua Profile:
Scribunto_LuaSandboxCallback::addStatementUsage 5580 ms 
  68.7%
Scribunto_LuaSandboxCallback::addSiteLinksUsage  800 ms 
   9.9%
Scribunto_LuaSandboxCallback::callParserFunction 720 ms 
   8.9%
Scribunto_LuaSandboxCallback::getEntity  320 ms 
   3.9%
Scribunto_LuaSandboxCallback::addLabelUsage  120 ms 
   1.5%
Scribunto_LuaSandboxCallback::incrementStatsKey  120 ms 
   1.5%
Scribunto_LuaSandboxCallback::fullUrl 80 ms 
   1.0%
Scribunto_LuaSandboxCallback::gsub40 ms 
   0.5%
init 40 ms 
   0.5%
? 40 ms 
   0.5%
[others] 
  
  I think there is a cache problem (see also T236749 
). And I assume that we exceeded a 
threshold with only minor additions. As already stated I think this bug is the 
same like T236485 . The caching bug 
was not really solved but only downplayed. Therefore it was only a question of 
time that this bug reoccured.
  
  There are only 166 entity calls (one per template) in the article of Halle 
(Saale) which is clearly less than the limit of 400. And I hope that we can use 
up to 250 Wikidata calls in future. Of course we use a lot of properties (in 
article mentioned about 50, maximally about 100) but we do not retrieve 
additional ones because of the tables mentioned. (I remember that you stated 
that Wikivoyage is the Wikimedia site which uses Wikidata in most extreme 
extent -- more than Commons. That is really true.)

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

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

To: RolandUnger
Cc: hoo, Lydia_Pintscher, RolandUnger, Aklapper, Akuckartz, darthmon_wmde, 
Nandana, lucamauri, Lahi, Gq86, Darkminds3113, GoranSMilovanovic, QZanden, 
LawExplorer, Vali.matei, _jensen, rosalieper, Scott_WUaS, Jonas, Volker_E, 
Wikidata-bugs, aude, GWicke, Dinoguy1000, Mbch331, Rxy, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T239931: Reduce the impact of the sanitizer on wikidata

2020-10-15 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE changed the task status from "Open" to "Stalled".
Lucas_Werkmeister_WMDE added a comment.


  Alright, then we can try turning on the sanitizer on Wikidata either next 
week (after wmf.14 is rolled out) or the week after that (probably safer).

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, tfmorris, Pintoch, CBogen, EBernhardson, Ladsgroup, 
Addshore, Aklapper, dcausse, Wilmanbeno, Alter-paule, Beast1978, Un1tY, 
Akuckartz, Hook696, darthmon_wmde, Kent7301, joker88john, CucyNoiD, Nandana, 
Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, QZanden, EBjune, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, jayvdb, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T239931: Reduce the impact of the sanitizer on wikidata

2020-10-15 Thread gerritbot
gerritbot added a comment.


  Change 633170 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Override 
EntityHandler::getParserOutputForIndexing
  
  https://gerrit.wikimedia.org/r/633170

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

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

To: gerritbot
Cc: Lucas_Werkmeister_WMDE, tfmorris, Pintoch, CBogen, EBernhardson, Ladsgroup, 
Addshore, Aklapper, dcausse, Wilmanbeno, Alter-paule, Beast1978, Un1tY, 
Akuckartz, Hook696, darthmon_wmde, Kent7301, joker88john, CucyNoiD, Nandana, 
Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, QZanden, EBjune, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, jayvdb, Mbch331, jeremyb
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265562: Wikibase Lua: addStatementUsage seems unjustifiably expensive

2020-10-15 Thread Lydia_Pintscher
Lydia_Pintscher edited projects, added Wikidata-Campsite; removed 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞).
Lydia_Pintscher added a comment.


  Thank you, Roland.
  
  Some questions:
  
  - Was this a sudden spike or a slow increase?
  - When did you see the change?
  - Is this only happening on this article or also others?
  
  Some initial investigation I've done:
  
  - The changes since the beginning of July on the Item for Halle 

 don't seem very significant so should not be the cause.
  - The article uses data from a lot of other entities 
. There 
is a chance that one of those has been significantly changed. I have not 
checked yet.

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

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

To: Lydia_Pintscher
Cc: hoo, Lydia_Pintscher, RolandUnger, Aklapper, Akuckartz, darthmon_wmde, 
Nandana, lucamauri, Lahi, Gq86, Darkminds3113, GoranSMilovanovic, QZanden, 
LawExplorer, Vali.matei, _jensen, rosalieper, Scott_WUaS, Jonas, Volker_E, 
Wikidata-bugs, aude, GWicke, Dinoguy1000, Mbch331, Rxy, Jay8g, Iflorez, 
alaa_wmde
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T263435: `content was: ""` (empty string) when deleting Lexemes

2020-10-15 Thread gerritbot
gerritbot added a comment.


  Change 634009 had a related patch set uploaded (by Tobias Andersson; owner: 
Tobias Andersson):
  [mediawiki/extensions/WikibaseMediaInfo@master] Use getTextSummaryTrait
  
  https://gerrit.wikimedia.org/r/634009

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

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

To: toan, gerritbot
Cc: Pablo-WMDE, Lydia_Pintscher, darthmon_wmde, abian, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, Kent7301, alaa_wmde, joker88john, CucyNoiD, 
Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, Mahir256, QZanden, LawExplorer, 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] T263435: `content was: ""` (empty string) when deleting Lexemes

2020-10-15 Thread gerritbot
gerritbot added a comment.


  Change 634025 had a related patch set uploaded (by Tobias Andersson; owner: 
Tobias Andersson):
  [mediawiki/extensions/Wikibase@master] Make EntityContent::getTextForSummary 
abstract
  
  https://gerrit.wikimedia.org/r/634025

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

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

To: toan, gerritbot
Cc: Pablo-WMDE, Lydia_Pintscher, darthmon_wmde, abian, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, Kent7301, alaa_wmde, joker88john, CucyNoiD, 
Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, Mahir256, QZanden, LawExplorer, 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] T265583: Wire icons to the message component

2020-10-15 Thread Ladsgroup
Ladsgroup created this task.
Ladsgroup added projects: Wikidata, Wikidata Query Builder (Wikidata Query 
Builder - sprint 2).

TASK DESCRIPTION
  Once T265581: Create Message component without icons 
 and T265582: Create icon components 
 are done, we need to wire them 
together.

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

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

To: Ladsgroup
Cc: Sarai-WMDE, Aklapper, Lydia_Pintscher, Ladsgroup, Akuckartz, 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] T265582: Create icon components

2020-10-15 Thread Ladsgroup
Ladsgroup created this task.
Ladsgroup added projects: Wikidata, Wikidata Query Builder (Wikidata Query 
Builder - sprint 2).

TASK DESCRIPTION
  the specs are in the parent ticket.
  
  Only the two icons so far.

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

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

To: Ladsgroup
Cc: Sarai-WMDE, Aklapper, Lydia_Pintscher, Ladsgroup, Akuckartz, 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] T260976: Create Documentation on mediawiki.org

2020-10-15 Thread Tonina_Zhelyazkova_WMDE
Tonina_Zhelyazkova_WMDE added a comment.


  In T260976#6529187 , 
@danshick-wmde wrote:
  
  > Looking forward to reviewing it --
  
  Hey, Dan!
  Here are the docs https://www.mediawiki.org/wiki/Extension:WikibaseManifest

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

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

To: Tarrow, Tonina_Zhelyazkova_WMDE
Cc: Tonina_Zhelyazkova_WMDE, danshick-wmde, Samantha_Alipio_WMDE, Aklapper, 
Tarrow, Akuckartz, 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] T265581: Create Message component without icons

2020-10-15 Thread Ladsgroup
Ladsgroup created this task.
Ladsgroup added projects: Wikidata, Wikidata Query Builder (Wikidata Query 
Builder - sprint 2).

TASK DESCRIPTION
  To make the work parallelize-able, create the message components without 
getting into complexities of handing the icon components.

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

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

To: Ladsgroup
Cc: Sarai-WMDE, Aklapper, Lydia_Pintscher, Ladsgroup, Akuckartz, 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] T263435: `content was: ""` (empty string) when deleting Lexemes

2020-10-15 Thread gerritbot
gerritbot added a comment.


  Change 634007 had a related patch set uploaded (by Tobias Andersson; owner: 
Tobias Andersson):
  [mediawiki/extensions/WikibaseLexeme@master] Add getTextSummary for 
LexemeContent
  
  https://gerrit.wikimedia.org/r/634007

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

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

To: toan, gerritbot
Cc: Pablo-WMDE, Lydia_Pintscher, darthmon_wmde, abian, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, Kent7301, alaa_wmde, joker88john, CucyNoiD, 
Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, Mahir256, QZanden, LawExplorer, 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] T166470: Include links in Wikidata HTTP responses to different entity representations as Link headers

2020-10-15 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as "Resolved".
Lydia_Pintscher moved this task from Test (Verification) to Done on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Lydia_Pintscher added a comment.


  Yay! :)
  Let's handle additional changes in a different ticket then if you'd like 
@abian

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

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

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

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


[Wikidata-bugs] [Maniphest] T109420: [Story] Make exports formats more visible

2020-10-15 Thread Lydia_Pintscher
Lydia_Pintscher closed subtask T166470: Include links in Wikidata HTTP 
responses to different entity representations as Link headers as 
Resolved.

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

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

To: Lydia_Pintscher
Cc: Diwanshu885, Ivanhercaz, Lucas_Werkmeister_WMDE, thiemowmde, Jan_Dittrich, 
Aklapper, Lydia_Pintscher, Rohitgeddam, Akuckartz, Soda, Chaytanya, 
darthmon_wmde, wiki-helenatxu, Dinadineke, DannyS712, Nandana, Kieubinhtb, 
Tks4Fish, lucamauri, Mh-3110, tabish.shaikh91, Asad_Ali_Palijo, Lahi, Gq86, 
GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, QZanden, 
merbst, LawExplorer, _jensen, rosalieper, xSavitar, Scott_WUaS, MuhammadShuaib, 
Tmalhotra, SimmeD, Wikidata-bugs, aude, TheDJ, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T231084: Assert.php: Bad value for parameter $oldContent: must be a TextContent|null [Story Points 5]

2020-10-15 Thread Ladsgroup
Ladsgroup merged a task: T265576: Bad value for parameter $oldContent: must be 
a TextContent|null.
Ladsgroup added a subscriber: WMDE-leszek.

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

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

To: Ladsgroup
Cc: WMDE-leszek, Ladsgroup, Addshore, Umherirrender, Tgr, Michael, 
Lucas_Werkmeister_WMDE, Aklapper, Alter-paule, Beast1978, Un1tY, Akuckartz, 
Hook696, darthmon_wmde, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Jdforrester-WMF, Mbch331, Rxy, 
Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265576: Bad value for parameter $oldContent: must be a TextContent|null

2020-10-15 Thread Ladsgroup
Ladsgroup closed this task as a duplicate of T231084: Assert.php: Bad value for 
parameter $oldContent: must be a TextContent|null [Story Points 5].

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

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

To: Ladsgroup
Cc: WMDE-leszek, Ladsgroup, Aklapper, Michael, Akuckartz, darthmon_wmde, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, Rxy, 
Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265576: Bad value for parameter $oldContent: must be a TextContent|null

2020-10-15 Thread Ladsgroup
Ladsgroup added a comment.


  Yup, moving the star to some number like this makes it work: 
https://www.wikidata.org/w/index.php?diff=125150*4296=235663452 (since 
125150 is an item diff but 1 is not)

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

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

To: Ladsgroup
Cc: WMDE-leszek, Ladsgroup, Aklapper, Michael, Akuckartz, darthmon_wmde, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, Rxy, 
Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T254280: Semi-protecting all properties

2020-10-15 Thread Mike_Peel
Mike_Peel added a comment.


  Possibly related, if you try to protect a property (e.g., 
https://www.wikidata.org/wiki/Property:P7006 ) now you see this:
  F32385491: image.png 
  There's no longer an option to semi-protect, but 'allow all users' seems to 
be possible?

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

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

To: Lucas_Werkmeister_WMDE, Mike_Peel
Cc: ItamarWMDE, Bugreporter, Lucas_Werkmeister_WMDE, WMDE-leszek, abian, 
alanajjar, Ymblanter, Rehman, Fuzheado, Lydia_Pintscher, Jasper, Bencemac, 
Addshore, Aklapper, Mike_Peel, Akuckartz, 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] T261071: Malformed input error on text which is not malformed

2020-10-15 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as "Resolved".
Lydia_Pintscher added a comment.


  \o/

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

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

To: toan, Lydia_Pintscher
Cc: Lydia_Pintscher, guergana.tzatchkova, toan, WMDE-leszek, Pablo-WMDE, 
Addshore, Aklapper, Nikki, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, 
Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, CucyNoiD, Nandana, 
Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, QZanden, LawExplorer, 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] T254280: Semi-protecting all properties

2020-10-15 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  I looked at the last created Property 
 just now and looking at the page 
information 
 it 
still shows me everyone is allowed to edit:
  
  F32385474: image.png 
  
  When not logged in the same Property does indeed not let me edit it as 
intended in this ticket.
  
  Is the page info just out of date? Does it get overwritten by namespace-wide 
protection and just doesn't reflect that?

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

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

To: Lucas_Werkmeister_WMDE, Lydia_Pintscher
Cc: ItamarWMDE, Bugreporter, Lucas_Werkmeister_WMDE, WMDE-leszek, abian, 
alanajjar, Ymblanter, Rehman, Fuzheado, Lydia_Pintscher, Jasper, Bencemac, 
Addshore, Aklapper, Mike_Peel, Akuckartz, 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] T265576: Bad value for parameter $oldContent: must be a TextContent|null

2020-10-15 Thread Ladsgroup
Ladsgroup added a comment.


  This is very likely duplicate of T231084: Assert.php: Bad value for parameter 
$oldContent: must be a TextContent|null [Story Points 5] 


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

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

To: Ladsgroup
Cc: WMDE-leszek, Ladsgroup, Aklapper, Michael, Akuckartz, darthmon_wmde, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, Rxy, 
Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265485: Termbox SSR should only be called with valid term languages

2020-10-15 Thread Pablo-WMDE
Pablo-WMDE added a comment.


  In my understanding this is indeed describing the same problem as T231007 
, just with different ways of 
discovering the issue and ideas for a solution.
  The main challenge, in my eyes, is not so much technical in nature but how to 
create a pleasant user experience around handling requested invalid languages. 
As such it makes sense to join forces between the tickets and try for some 
answers by product.

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

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

To: Pablo-WMDE
Cc: Pablo-WMDE, Aklapper, Michael, Akuckartz, 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] T264532: Add monolingual language for code crl (East Cree)

2020-10-15 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as "Resolved".
Lydia_Pintscher moved this task from Test (Verification) to Done on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Lydia_Pintscher added a comment.


  Thanks everyone! This should go out next week :)

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

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

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

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


[Wikidata-bugs] [Maniphest] T217131: Add monolingual language code gml (Middle Low German)

2020-10-15 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as "Resolved".
Lydia_Pintscher added a comment.


  Thanks everyone! This should go out next week :)

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

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

To: Diwanshu885, Lydia_Pintscher
Cc: Lydia_Pintscher, DannyS712, Amire80, Diwanshu885, Shubham656jain, Mbch331, 
jhsoby, GerardM, Aklapper, Marsupium, Rohitgeddam, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Soda, Chaytanya, Hook696, Iflorez, darthmon_wmde, 
wiki-helenatxu, Kent7301, alaa_wmde, joker88john, CucyNoiD, Nandana, 
Kieubinhtb, Tks4Fish, Gaboe420, Mh-3110, Giuliamocci, Asad_Ali_Palijo, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, Soteriaspace, 
JakeTheDeveloper, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, xSavitar, Scott_WUaS, Jonas, MuhammadShuaib, Nikki, Tmalhotra, 
SimmeD, Wikidata-bugs, aude
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T262967: Add lexeme language codes sat-olck, sat-latn, sat-beng, sat-orya

2020-10-15 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as "Resolved".
Lydia_Pintscher moved this task from Test (Verification) to Done on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Lydia_Pintscher added a comment.


  Thanks everyone! This should go out next week :)

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

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

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

To: Mbch331, Lydia_Pintscher
Cc: Lydia_Pintscher, Mbch331, jhsoby, Amire80, Mahir256, Bodhisattwa, 
Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Jonas, Nikki, Wikidata-bugs, aude
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265492: Wikidata edits by registered users showing up at watchlist while selecting only edits done by ip

2020-10-15 Thread GoEThe
GoEThe added a comment.


  Perhaps duplicate of T187680: New watchlist/recent changes: Have an option to 
hide Wikidata edits by experienced and/or flood-flagged users 
.

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

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

To: GoEThe
Cc: GoEThe, Aklapper, Akuckartz, 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] T265137: wb_terms still listed in wikireplicas maintain-views

2020-10-15 Thread WMDE-leszek
WMDE-leszek edited projects, added Wikidata; removed Wikibase wb_terms 
leftovers 2020.

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

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

To: WMDE-leszek
Cc: bd808, Ladsgroup, Bstorm, Aklapper, toan, Nintendofan885, Akuckartz, 
darthmon_wmde, Nandana, skpuneethumar, Jony, Zylc, Giuliamocci, 1978Gage2001, 
Lahi, Gq86, GoranSMilovanovic, Chicocvenancio, QZanden, Tbscho, LawExplorer, 
JJMC89, _jensen, rosalieper, Scott_WUaS, mys_721tx, Wikidata-bugs, Jitrixis, 
aude, Gryllida, scfc, Mbch331, Krenair, DannyS712
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265562: Wikibase Lua: addStatementUsage seems unjustifiably expensive

2020-10-15 Thread RolandUnger
RolandUnger added a project: MediaWiki-Cache.

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

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

To: RolandUnger
Cc: hoo, Lydia_Pintscher, RolandUnger, Aklapper, Akuckartz, Iflorez, 
darthmon_wmde, alaa_wmde, Nandana, lucamauri, Lahi, Gq86, Darkminds3113, 
GoranSMilovanovic, QZanden, LawExplorer, Vali.matei, _jensen, rosalieper, 
Scott_WUaS, Jonas, Volker_E, Wikidata-bugs, aude, GWicke, Dinoguy1000, Mbch331, 
Rxy, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T263435: `content was: ""` (empty string) when deleting Lexemes

2020-10-15 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: toan, gerritbot
Cc: Pablo-WMDE, Lydia_Pintscher, darthmon_wmde, abian, Alter-paule, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, Kent7301, alaa_wmde, joker88john, CucyNoiD, 
Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, Mahir256, QZanden, LawExplorer, 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] T263435: `content was: ""` (empty string) when deleting Lexemes

2020-10-15 Thread gerritbot
gerritbot added a comment.


  Change 634006 had a related patch set uploaded (by Tobias Andersson; owner: 
Tobias Andersson):
  [mediawiki/extensions/Wikibase@master] Add trait for getTextSummary
  
  https://gerrit.wikimedia.org/r/634006

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

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

To: toan, gerritbot
Cc: Pablo-WMDE, Lydia_Pintscher, darthmon_wmde, abian, Akuckartz, Iflorez, 
alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, 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] T265576: Bad value for parameter $oldContent: must be a TextContent|null

2020-10-15 Thread Michael
Michael created this task.
Michael added projects: Wikimedia-production-error, Wikidata.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  Error
  -
  
  `MediaWiki version:`  **`1.36.0-wmf.13`**
  
  name=message
Bad value for parameter $oldContent: must be a TextContent|null
  
  
  
  Impact
  --
  
  User visible error:
  F32385404: image.png 
  
  Notes
  -
  
  Seems to have started with wmf.13

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

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

To: Michael
Cc: Ladsgroup, Aklapper, Michael, Akuckartz, darthmon_wmde, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, Rxy, Jay8g, Krenair
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T265118: Investigate how to handle a restricted list of external services

2020-10-15 Thread Tarrow
Tarrow moved this task from Backlog to Sprint 4 on the Wikibase - Automated 
Configuration Detection (WikibaseManifest) board.
Tarrow edited projects, added Wikibase - Automated Configuration Detection 
(WikibaseManifest) (Sprint 4); removed Wikibase - Automated Configuration 
Detection (WikibaseManifest).

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

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

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

To: Tarrow
Cc: Aklapper, Tarrow, Akuckartz, 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] T260976: Create Documentation on mediawiki.org

2020-10-15 Thread Tarrow
Tarrow claimed this task.
Tarrow moved this task from Doing to Peer Review on the Wikibase - Automated 
Configuration Detection (WikibaseManifest) (Sprint 4) board.

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

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

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

To: Tarrow
Cc: danshick-wmde, Samantha_Alipio_WMDE, Aklapper, Tarrow, Akuckartz, 
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] T265573: Allow to mark Structured Data on Commons edits as minor

2020-10-15 Thread JeanFred
JeanFred created this task.
JeanFred added projects: StructuredDataOnCommons, 
MediaWiki-extensions-WikibaseRepository.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  It is my understanding that there is currently no way for 
#structureddataoncommons 
 edits to be 
marked as minor .
  
  There is currently friction on Wikimedia Commons, where a tool for adding 
Structured Data claims gets more traction and some users have their watchlist 
flooded with tool-assisted edits. Some users feel that these edits should be 
marked as minor, which could make them easier to filter out in the watchlist.
  
  There is not necessarily consensus that these particular tool-assisted edits 
should always be marked as minor, or that they should be mark-able as minor. 
However, this is a conversation that the community cannot really have, since 
there would be no technical way to implement it at the moment.
  
  (Also, the particular problem described above could arguably be better 
addressed with T174349: Have a way to exclude Tagged edits 
 ; but nevertheless the general 
point has merits and has wider application than just the particular tool being 
discuss)
  
  As this is done (if I’m not mistaken) via `wbsetclaim`, this somewhat relates 
to T52933: api module wbsetclaim doesn't accept the bot param 
.
  
  (Feel free to rename this task to be more general, as I suppose it’s not 
about Commons in particular)
  
  (I would have thought there was already a task for this, but could not find 
any − please merge if I missed it)

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

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

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


[Wikidata-bugs] [Maniphest] T265299: Investigate integrating accessibility testing tools into development tooling

2020-10-15 Thread Ladsgroup
Ladsgroup claimed this task.
Ladsgroup moved this task from To Do to Doing on the Wikidata Query Builder 
(Wikidata Query Builder - sprint 2) board.
Restricted Application added a project: User-Ladsgroup.

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

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

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

To: Ladsgroup
Cc: Aklapper, Sarai-WMDE, guergana.tzatchkova, Jakob_WMDE, Lydia_Pintscher, 
WMDE-leszek, gabriel-wmde, Charlie_WMDE, Michael, noarave, Hazizibinmahdi, 
Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
Orienteerix, LawExplorer, Flycatchr, EHCliffe, Zppix, _jensen, rosalieper, 
Scott_WUaS, Volker_E, 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] T187680: New watchlist/recent changes: Have an option to hide Wikidata edits by experienced and/or flood-flagged users

2020-10-15 Thread JeanFred
JeanFred added a comment.


  Relates to T167224: Implement 'User' filters and filter menu in the new UI 
 and its subtask T209589: Have a way 
to exclude a bot-flagged account 

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

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

To: JeanFred
Cc: JeanFred, DannyS712, GoEThe, Jc86035, Aklapper, caldera, NavinRizwi, 
Akuckartz, darthmon_wmde, Nandana, kostajh, Jony, lucamauri, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Taiwania_Justo, 
Scott_WUaS, Wikidata-bugs, aude, Mbch331, Ltrlg
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs