[Wikidata-bugs] [Maniphest] [Updated] T139827: [bug] mapview on Wikidata Query Service misaligned across 180 longitude line, selection with wikibase:box

2016-07-08 Thread Esc3300
Esc3300 added projects: Wikidata, Wikidata-Query-Service.Herald added a project: Discovery.
TASK DETAILhttps://phabricator.wikimedia.org/T139827EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Esc3300Cc: Aklapper, Esc3300, Zppix, Avner, debt, Gehel, D3r1ck01, Jonas, FloNight, Xmlizer, Izno, jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, Deskana, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T139826: allow entry by coordinates for Wikidata Query Service wikibase:box

2016-07-08 Thread Esc3300
Esc3300 created this task.Esc3300 added projects: Wikidata-Query-Service, Wikidata.Herald added subscribers: Zppix, Aklapper.Herald added a project: Discovery.
TASK DESCRIPTIONThe sample at https://www.mediawiki.org/wiki/Wikidata_query_service/User_Manual#Search_within_box  currently requires entry through coordinates on an item.


wd:Q986857 has the coordinates
"wd:Q986857 wdt:P625 ?SJloc" assigns them to ?SJloc
"bd:serviceParam wikibase:cornerNorthWest ?SJloc"  uses them


It should be possible to define them directly in the query (maybe it is, but it's not documentated). Sample:

SELECT * WHERE {

SERVICE wikibase:box {
?place wdt:P625 ?location .
bd:serviceParam wikibase:cornerSouthWest Point(-121.87277 37.30416) .
bd:serviceParam wikibase:cornerNorthEast Point(-121.48611 38.57527) .
  }
?place wdt:P31/wdt:P279* wd:Q3914 .

}

Or at least:

SELECT * WHERE {

BIND(Point(-121.87277 37.30416) as ?SJloc)
BIND(Point(-121.48611 38.57527) as ?SCloc)
SERVICE wikibase:box {
?place wdt:P625 ?location .
bd:serviceParam wikibase:cornerSouthWest ?SJloc .
bd:serviceParam wikibase:cornerNorthEast ?SCloc .
  }
?place wdt:P31/wdt:P279* wd:Q3914 .

}TASK DETAILhttps://phabricator.wikimedia.org/T139826EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Esc3300Cc: Aklapper, Esc3300, Zppix, Avner, debt, Gehel, D3r1ck01, Jonas, FloNight, Xmlizer, Izno, jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, Deskana, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T139824: [feature request] allow selection by East and West corners on Wikidata Query Service wikibase:box

2016-07-08 Thread Esc3300
Esc3300 added a parent task: T139823: [feature request] allow selection by SE and NW corners on Wikidata Query Service wikibase:box.
TASK DETAILhttps://phabricator.wikimedia.org/T139824EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Esc3300Cc: Aklapper, Esc3300, Zppix, Avner, debt, Gehel, D3r1ck01, Jonas, FloNight, Xmlizer, Izno, jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, Deskana, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T139823: [feature request] allow selection by SE and NW corners on Wikidata Query Service wikibase:box

2016-07-08 Thread Esc3300
Esc3300 added a subtask: T139824: [feature request] allow selection by East and West corners on Wikidata Query Service wikibase:box.
TASK DETAILhttps://phabricator.wikimedia.org/T139823EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Esc3300Cc: Aklapper, Esc3300, Zppix, Avner, debt, Gehel, D3r1ck01, Jonas, FloNight, Xmlizer, Izno, jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, Deskana, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T139824: [feature request] allow selection by East and West corners on Wikidata Query Service wikibase:box

2016-07-08 Thread Esc3300
Esc3300 created this task.Esc3300 added projects: Wikidata-Query-Service, Wikidata.Herald added subscribers: Zppix, Aklapper.Herald added a project: Discovery.
TASK DESCRIPTIONPer https://www.mediawiki.org/wiki/Wikidata_query_service/User_Manual#Search_within_box and https://phabricator.wikimedia.org/T139823
the following should be supported

wikibase:cornerSouthWest The south-west corner of the box.
wikibase:cornerNorthEast The north-east corner of the box.
wikibase:cornerSouthEast The south-east corner of the box.
wikibase:cornerNorthWest The north-west corner of the box.

This feature request suggests to add the following:
wikibase:cornerWest A west corner of the box.
wikibase:cornerEast An east corner of the box.

Depending on the https://en.wikipedia.org/wiki/Latitude value, the server would determine if it was S or N.
If latitude of W > latitude of E = W is NW, E is SE, 
otherwise it's SW and NE.

Sample query, based on the current sample one, should give comparable results:

Schools between San Jose, CA and Sacramento, CA
#defaultView:Map
SELECT * WHERE {

wd:Q986857 wdt:P625 ?SJloc .
wd:Q2396418 wdt:P625 ?SCloc .
SERVICE wikibase:box {

  ?place wdt:P625 ?location .
  bd:serviceParam wikibase:cornerWest ?SJloc .
  bd:serviceParam wikibase:cornerEast ?SCloc .
}

?place wdt:P31/wdt:P279* wd:Q3914 .

}

Link: https://query.wikidata.org/#%23Schools%20between%20San%20Jose%2C%20CA%20and%20Sacramento%2C%20CA%0A%23defaultView%3AMap%0ASELECT%20%2a%20WHERE%20%7B%0A%0Awd%3AQ986857%20wdt%3AP625%20%3FSJloc%20.%0Awd%3AQ2396418%20wdt%3AP625%20%3FSCloc%20.%0ASERVICE%20wikibase%3Abox%20%7B%0A%20%20%20%20%3Fplace%20wdt%3AP625%20%3Flocation%20.%0A%20%20%20%20bd%3AserviceParam%20wikibase%3AcornerWest%20%3FSJloc%20.%0A%20%20%20%20bd%3AserviceParam%20wikibase%3AcornerEast%20%3FSCloc%20.%0A%20%20%7D%0A%3Fplace%20wdt%3AP31%2Fwdt%3AP279%2a%20wd%3AQ3914%20.%0A%0A%7DTASK DETAILhttps://phabricator.wikimedia.org/T139824EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Esc3300Cc: Aklapper, Esc3300, Zppix, Avner, debt, Gehel, D3r1ck01, Jonas, FloNight, Xmlizer, Izno, jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, Deskana, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T139823: [feature request] allow selection by SE and NW corners on Wikidata Query Service wikibase:box

2016-07-08 Thread Esc3300
Esc3300 created this task.Esc3300 added projects: Wikidata-Query-Service, Wikidata.Herald added subscribers: Zppix, Aklapper.Herald added a project: Discovery.
TASK DESCRIPTIONPer https://www.mediawiki.org/wiki/Wikidata_query_service/User_Manual#Search_within_box currently only the following are supported:

wikibase:cornerSouthWest 	The south-west corner of the box.
wikibase:cornerNorthEast 	The north-east corner of the box.

This feature request suggests to add the following:

wikibase:cornerSouthEast 	The south-east corner of the box.
wikibase:cornerNorthWest 	The north-west corner of the box.

Sample query, based on the current sample, should give comparable results:

Schools between San Jose, CA and Sacramento, CA

#defaultView:Map
SELECT * WHERE {

wd:Q986857 wdt:P625 ?SJloc .
wd:Q2396418 wdt:P625 ?SCloc .
SERVICE wikibase:box {
?place wdt:P625 ?location .
bd:serviceParam wikibase:cornerNorthWest ?SJloc .
bd:serviceParam wikibase:cornerSouthEast ?SCloc .
  }
?place wdt:P31/wdt:P279* wd:Q3914 .

}

[https://query.wikidata.org/#%23%20Schools%20between%20Winters%20and%20Ashrama%20%28same%20as%20San%20Jose%2C%20CA%20and%20Sacramento%2C%20CA%29%0A%23defaultView%3AMap%0ASELECT%20%2a%20WHERE%20%7B%0A%20%20wd%3AQ986857%20wdt%3AP625%20%3FSJloc%20.%0A%20%20wd%3AQ2396418%20wdt%3AP625%20%3FSCloc%20.%0A%20%20SERVICE%20wikibase%3Abox%20%7B%0A%20%20%20%20%20%20%3Fplace%20wdt%3AP625%20%3Flocation%20.%0A%20%20%20%20%20%20bd%3AserviceParam%20wikibase%3AcornerNorthWest%20%3FSJloc%20.%0A%20%20%20%20%20%20bd%3AserviceParam%20wikibase%3AcornerSouthEast%20%3FSCloc%20.%0A%20%20%20%20%7D%0A%20%20%3Fplace%20wdt%3AP31%2Fwdt%3AP279%2a%20wd%3AQ3914%20.%0A%7D]TASK DETAILhttps://phabricator.wikimedia.org/T139823EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Esc3300Cc: Aklapper, Esc3300, Zppix, Avner, debt, Gehel, D3r1ck01, Jonas, FloNight, Xmlizer, Izno, jkroll, Smalyshev, Wikidata-bugs, Jdouglas, aude, Deskana, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T138725: Special:NewItem and Special:NewProperty allow creation of items with term language as any string

2016-07-08 Thread Smalyshev
Smalyshev added a comment.
Is is also impossible to delete such value - see https://www.wikidata.org/wiki/Q208693 and try to remove "aln espaniol" one, you'd get Unrecognized value for parameter 'language': aln espaniol.TASK DETAILhttps://phabricator.wikimedia.org/T138725EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SmalyshevCc: Smalyshev, thiemowmde, Sjoerddebruin, Liuxinyu970226, gerritbot, Nikki, Urbanecm, TerraCodes, Luke081515, hoo, daniel, aude, Lydia_Pintscher, adrianheine, Aklapper, Addshore, Zppix, Lewizho99, Maathavan, D3r1ck01, Izno, Wikidata-bugs, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T139687: Language with space in the name produces broken RDF

2016-07-08 Thread gerritbot
gerritbot added a project: Patch-For-Review.
TASK DETAILhttps://phabricator.wikimedia.org/T139687EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Smalyshev, gerritbotCc: gerritbot, JanZerebecki, daniel, aude, Aklapper, Zppix, Smalyshev, Avner, Lewizho99, Maathavan, debt, Gehel, D3r1ck01, Jonas, FloNight, Xmlizer, Izno, jkroll, Wikidata-bugs, Jdouglas, Deskana, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T139687: Language with space in the name produces broken RDF

2016-07-08 Thread gerritbot
gerritbot added a comment.
Change 298109 had a related patch set uploaded (by Smalyshev):
Fix writing string with bad language tag.

https://gerrit.wikimedia.org/r/298109TASK DETAILhttps://phabricator.wikimedia.org/T139687EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Smalyshev, gerritbotCc: gerritbot, JanZerebecki, daniel, aude, Aklapper, Zppix, Smalyshev, Avner, debt, Gehel, D3r1ck01, Jonas, FloNight, Xmlizer, Izno, jkroll, Wikidata-bugs, Jdouglas, Deskana, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T136397: Identify and suggest action as undo edit if re-add info for item

2016-07-08 Thread YFdyh000
YFdyh000 added a comment.
When you editing to rollback a Property on wikidata, related persons cannot be notified.

This can be partly solved through T47224, but a smart suggestion might be better.TASK DETAILhttps://phabricator.wikimedia.org/T136397EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: YFdyh000Cc: Liuxinyu970226, Aklapper, YFdyh000, Zppix, D3r1ck01, Izno, 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] T89733: Allow ContentHandler to expose structured data to the search engine.

2016-07-08 Thread gerritbot
gerritbot added a comment.
Change 294411 abandoned by Smalyshev:
Add nested field support

https://gerrit.wikimedia.org/r/294411TASK DETAILhttps://phabricator.wikimedia.org/T89733EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Smalyshev, gerritbotCc: gerritbot, EBernhardson, DannyH, hoo, Deskana, RobLa-WMF, Tgr, Yurik, dcausse, JanZerebecki, Smalyshev, matthiasmullie, aude, Ricordisamoa, Krenair, MZMcBride, bd808, brion, Manybubbles, Aklapper, daniel, Lewizho99, Maathavan, D3r1ck01, Izno, Luke081515, Wikidata-bugs, GWicke, jayvdb, fbstj, Jackmcbarn, Mbch331, Jay8g, Ltrlg, Legoktm___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T128466: Frontpage of wikidata wiki of the vagrant role wikidata shows error mssage

2016-07-08 Thread ReleaseTaggerBot
ReleaseTaggerBot added projects: MW-1.28-release-notes, WMF-deploy-2016-07-12_(1.28.0-wmf.10).
TASK DETAILhttps://phabricator.wikimedia.org/T128466EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Mattflaschen-WMF, ReleaseTaggerBotCc: gerritbot, Smalyshev, JanZerebecki, Zppix, Mattflaschen-WMF, Jdlrobson, WickieTheViking, Llyrian, bd808, daniel, zeljkofilipin, aude, Aklapper, StudiesWorld, Physikerwelt, Lewizho99, Maathavan, D3r1ck01, Izno, Luke081515, mobrovac, Wikidata-bugs, Mbch331, jeremyb___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T128466: Frontpage of wikidata wiki of the vagrant role wikidata shows error mssage

2016-07-08 Thread gerritbot
gerritbot added a comment.
Change 297787 merged by jenkins-bot:
If rev_content_model is null, use page_content_model.

https://gerrit.wikimedia.org/r/297787TASK DETAILhttps://phabricator.wikimedia.org/T128466EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Mattflaschen-WMF, gerritbotCc: gerritbot, Smalyshev, JanZerebecki, Zppix, Mattflaschen-WMF, Jdlrobson, WickieTheViking, Llyrian, bd808, daniel, zeljkofilipin, aude, Aklapper, StudiesWorld, Physikerwelt, Lewizho99, Maathavan, D3r1ck01, Izno, Luke081515, mobrovac, Wikidata-bugs, Mbch331, jeremyb___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unassigned] T105638: RFC: Streamlining Composer usage

2016-07-08 Thread RobLa-WMF
RobLa-WMF raised the priority of this task from "Lowest" to "Needs Triage".RobLa-WMF removed JanZerebecki as the assignee of this task.RobLa-WMF moved this task from Backlog (blocked or draft) to Inbox on the ArchCom-RfC board.RobLa-WMF added a comment.
This seems worth discussing in the ArchCom RFC triage process (discussion: Z425 or wikitech-l)TASK DETAILhttps://phabricator.wikimedia.org/T105638WORKBOARDhttps://phabricator.wikimedia.org/project/board/52/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: RobLa-WMFCc: RobLa-WMF, adrianheine, Ricordisamoa, MoritzMuehlenhoff, dduvall, Tgr, mobrovac, GWicke, Addshore, Spage, greg, tstarling, aude, hoo, daniel, thcipriani, mmodell, bd808, csteipp, Legoktm, Krinkle, hashar, JanZerebecki, Aklapper, D3r1ck01, Lynhg, Izno, Luke081515, Wikidata-bugs, Malyacko, jayvdb, fbstj, Mbch331, Jay8g, Ltrlg, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T131661: [Story] Support for citoid in Wikidata

2016-07-08 Thread BrillLyle
BrillLyle added a comment.
Hi @aude --

Please let me know if you need a citation obsessed Wiki editor to do beta testing as a relative newbie Wikidatan. I have done beta testing on systems before.

I would be happy to provide assistance if it would be helpful!

– Erika aka BrillLyleTASK DETAILhttps://phabricator.wikimedia.org/T131661EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: aude, BrillLyleCc: BrillLyle, Stryn, Tobias1984, Scott_WUaS, Lydia_Pintscher, Elitre, Liuxinyu970226, Trizek-WMF, VIGNERON, Mvolz, Jdforrester-WMF, Florian, aude, Aklapper, merbst, WebIntegrity, Avner, Wess, D3r1ck01, Shangkuanlc, Izno, Jrf, OrenBochman, Husun1297, mobrovac, Wikidata-bugs, Malyacko, Etonkovidova, Daniel_Mietchen, jayvdb, Swainr, Mbch331, Jay8g___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T138500: [Task] Add Special:AboutTopic view stats to grafana for ArticlePlaceholder

2016-07-08 Thread gerritbot
gerritbot added a comment.
Change 296407 merged by Ottomata:
Ooziefy Wikidata ArticlePlaceholder Spark job

https://gerrit.wikimedia.org/r/296407TASK DETAILhttps://phabricator.wikimedia.org/T138500EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Addshore, gerritbotCc: JAllemandou, Liuxinyu970226, Izno, ChrisPins, gerritbot, Lucie, Aklapper, Lydia_Pintscher, Zppix, hoo, Lewizho99, Maathavan, D3r1ck01, Wikidata-bugs, aude, jayvdb, Ricordisamoa, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Merged] T47224: [Story] Allow detailed summaries

2016-07-08 Thread Bugreporter
Bugreporter added subscribers: YFdyh000, Zppix.Bugreporter merged a task: T136396: Allowe and suggest to provide an edit summary when removing/modifying sitelink on Wikidata item.
TASK DETAILhttps://phabricator.wikimedia.org/T47224EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: BugreporterCc: Zppix, YFdyh000, Nikki, Daniel_Mietchen, Lydia_Pintscher, Bene, jayvdb, Aklapper, Candalua, MGChecker, Liuxinyu970226, Wikidata-bugs, Abraham, jeblad, Addshore, aude, matej_suchanek, Ricordisamoa, Beta16, Allen4names, Danmichaelo, D3r1ck01, Izno, Sjoerddebruin, TheDJ, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T47224: [Story] Allow detailed summaries

2016-07-08 Thread Bugreporter
Bugreporter added a parent task: T76230: [Epic] data quality and trust.
TASK DETAILhttps://phabricator.wikimedia.org/T47224EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: BugreporterCc: Zppix, YFdyh000, Nikki, Daniel_Mietchen, Lydia_Pintscher, Bene, jayvdb, Aklapper, Candalua, MGChecker, Liuxinyu970226, Wikidata-bugs, Abraham, jeblad, Addshore, aude, matej_suchanek, Ricordisamoa, Beta16, Allen4names, Danmichaelo, D3r1ck01, Izno, Sjoerddebruin, TheDJ, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Merged] T136396: Allowe and suggest to provide an edit summary when removing/modifying sitelink on Wikidata item

2016-07-08 Thread Bugreporter
Bugreporter closed this task as a duplicate of T47224: [Story] Allow detailed summaries.
TASK DETAILhttps://phabricator.wikimedia.org/T136396EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: BugreporterCc: Aklapper, YFdyh000, Zppix, D3r1ck01, Izno, Wikidata-bugs, aude, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Retitled] T47224: [Story] Allow detailed summaries

2016-07-08 Thread Bugreporter
Bugreporter changed the title from "[Story] Allow detailed summaries in GUI" to "[Story] Allow detailed summaries".Bugreporter edited the task description. (Show Details)
EDIT DETAILSSpecific edit summary should be able to be added
 * in the "dynamic" _javascript_/AJAX UI
 * on "static" special pages


Orginal:

Some edits require a bit of explanation. Our automatic edit summaries don't cover this completely. Therefore we should offer a way for experienced editors to provide more insight into editsTASK DETAILhttps://phabricator.wikimedia.org/T47224EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: BugreporterCc: Nikki, Daniel_Mietchen, Lydia_Pintscher, Bene, jayvdb, Aklapper, Candalua, MGChecker, Liuxinyu970226, Wikidata-bugs, Abraham, jeblad, Addshore, aude, matej_suchanek, Ricordisamoa, Beta16, Allen4names, Danmichaelo, D3r1ck01, Izno, Sjoerddebruin, TheDJ, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T139757: Primary sources tool suggests duplicate statements

2016-07-08 Thread Bugreporter
Bugreporter created this task.Bugreporter added a project: Wikidata-Gadgets.Herald added subscribers: Zppix, Aklapper.Herald added a project: Wikidata.
TASK DESCRIPTIONAlso this tools suggests to add a new claim instead of a source of existing claim.

Example: https://www.wikidata.org/wiki/Q1022574TASK DETAILhttps://phabricator.wikimedia.org/T139757EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: BugreporterCc: Aklapper, Tpt, Zppix, Bugreporter, D3r1ck01, Izno, Wikidata-bugs, aude, Ricordisamoa, Sjoerddebruin, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Lowered Priority] T105638: RFC: Streamlining Composer usage

2016-07-08 Thread JanZerebecki
JanZerebecki lowered the priority of this task from "High" to "Lowest".JanZerebecki added a comment.
Adjusting priority to what I perceive to be the actual demand. Sorry, overestimated the amount of my free time.TASK DETAILhttps://phabricator.wikimedia.org/T105638EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: JanZerebeckiCc: adrianheine, Ricordisamoa, MoritzMuehlenhoff, dduvall, Tgr, mobrovac, GWicke, Addshore, Spage, greg, tstarling, aude, hoo, daniel, thcipriani, mmodell, bd808, csteipp, Legoktm, Krinkle, hashar, JanZerebecki, Aklapper, D3r1ck01, Lynhg, Izno, Luke081515, Wikidata-bugs, Malyacko, jayvdb, fbstj, RobLa-WMF, Mbch331, Jay8g, Ltrlg, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T139748: DecimalFormat::roundToDigit produces wrong output in some cases

2016-07-08 Thread daniel
daniel added a comment.
New test cases to add to DecimalMathTest::roundToDigitProvider:

		$argLists[] = array( new DecimalValue( '+1.45' ), 1, '+1' );
		$argLists[] = array( new DecimalValue( '+1.45' ), 3, '+1.5' );
		$argLists[] = array( new DecimalValue( '+1.45' ), 4, '+1.45' );

		$argLists[] = array( new DecimalValue( '+1.99' ), 1, '+2' );
		$argLists[] = array( new DecimalValue( '+1.99' ), 3, '+2.0' );
		$argLists[] = array( new DecimalValue( '+1.99' ), 4, '+2.00' );

		$argLists[] = array( new DecimalValue( '+1.499' ), 1, '+1' );
		$argLists[] = array( new DecimalValue( '+1.499' ), 3, '+1.5' );
		$argLists[] = array( new DecimalValue( '+1.499' ), 4, '+1.50' );

		$argLists[] = array( new DecimalValue( '+14.99' ), 1, '+10' );
		$argLists[] = array( new DecimalValue( '+14.99' ), 2, '+15' );
		$argLists[] = array( new DecimalValue( '+14.99' ), 4, '+15.0' );

		$argLists[] = array( new DecimalValue( '+9.5' ), 1, '+10' );
		$argLists[] = array( new DecimalValue( '+9.5' ), 3, '+9.5' );

(untested, there may be mistakes in there, look closely)

Note that currently, "significant digits" includes the decimal point. That's against common conventions. We should fix that while we are at it.TASK DETAILhttps://phabricator.wikimedia.org/T139748EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: danielCc: thiemowmde, Aklapper, Zppix, daniel, D3r1ck01, Izno, 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] T139748: DecimalFormat::roundToDigit produces wrong output in some cases

2016-07-08 Thread daniel
daniel triaged this task as "Normal" priority.daniel added a comment.
We should definitely fix this.

Difficulty: It's a pretty small and self-contained fix.
Impact: Causes wrong display for quantities, may cause confusion. Does not cause data loss, since we don't apply rounding while editing.TASK DETAILhttps://phabricator.wikimedia.org/T139748EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: danielCc: thiemowmde, Aklapper, Zppix, daniel, D3r1ck01, Izno, Wikidata-bugs, aude, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T139748: DecimalFormat::roundToDigit produces wrong output in some cases

2016-07-08 Thread daniel
daniel created this task.daniel added projects: Wikidata, DataValues.Herald added subscribers: Zppix, Aklapper.
TASK DESCRIPTIONDecimalFormat::roundToDigit uses DecimalFormat::roundDigits. 
DecimalFormat::roundDigits( '1.45', 1 ) should return 1, but it returns 2.

The algorithm currently rounds iteratively, producing 1.45 -> 1.5 -> 2, which is wrong.
It should instead remember the first insignificant digit, and then replace all insignificant digits by 0.
Then it should "bump" the resulting number if the remembered digit was >= 5.

Thiemo found this when writing https://github.com/DataValues/Number/pull/68TASK DETAILhttps://phabricator.wikimedia.org/T139748EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: danielCc: thiemowmde, Aklapper, Zppix, daniel, D3r1ck01, Izno, 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] T137151: [2 hours]: Determine relative level of effort for targeting Quick Surveys for specific cases

2016-07-08 Thread bmansurov
bmansurov added a comment.
Removed "Spike" from the title as the task has been marked with #Spike.TASK DETAILhttps://phabricator.wikimedia.org/T137151EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: bmansurovCc: bmansurov, atgo, DFoy, Lydia_Pintscher, Aklapper, dr0ptp4kt, Zppix, Winter, D3r1ck01, Izno, Luke081515, Wikidata-bugs, aude, jayvdb, Yurik, jhobs, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Retitled] T137151: [2 hours]: Determine relative level of effort for targeting Quick Surveys for specific cases

2016-07-08 Thread bmansurov
bmansurov changed the title from "Spike [2 hours]: Determine relative level of effort for targeting Quick Surveys for specific cases" to "[2 hours]: Determine relative level of effort for targeting Quick Surveys for specific cases".
TASK DETAILhttps://phabricator.wikimedia.org/T137151EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: bmansurovCc: atgo, DFoy, Lydia_Pintscher, Aklapper, dr0ptp4kt, Zppix, Winter, D3r1ck01, Izno, Luke081515, Wikidata-bugs, aude, jayvdb, Yurik, jhobs, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T139732: Uncaught TypeError: this._moreLanguagesItems.forEach is not a function

2016-07-08 Thread gerritbot
gerritbot added a comment.
Change 297968 had a related patch set uploaded (by Aude):
Fix Uncaught TypeError when clicking to collapse "other languages" box

https://gerrit.wikimedia.org/r/297968TASK DETAILhttps://phabricator.wikimedia.org/T139732EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: gerritbotCc: gerritbot, Nikki, Aklapper, Zppix, aude, D3r1ck01, Izno, Wikidata-bugs, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T139732: Uncaught TypeError: this._moreLanguagesItems.forEach is not a function

2016-07-08 Thread gerritbot
gerritbot added a project: Patch-For-Review.
TASK DETAILhttps://phabricator.wikimedia.org/T139732EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: gerritbotCc: gerritbot, Nikki, Aklapper, Zppix, aude, Lewizho99, Maathavan, D3r1ck01, Izno, Wikidata-bugs, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T139732: Uncaught TypeError: this._moreLanguagesItems.forEach is not a function

2016-07-08 Thread aude
aude created this task.aude added projects: Wikidata, MediaWiki-extensions-WikibaseRepository.Herald added subscribers: Zppix, Aklapper.
TASK DESCRIPTIONwhen clicking "Fewer languages" under the "other languages" box on item pagesTASK DETAILhttps://phabricator.wikimedia.org/T139732EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: audeCc: Aklapper, Zppix, aude, D3r1ck01, Izno, Wikidata-bugs, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T136814: PDF export shows json

2016-07-08 Thread thiemowmde
thiemowmde moved this task from incoming to in current sprint on the Wikidata board.
TASK DETAILhttps://phabricator.wikimedia.org/T136814WORKBOARDhttps://phabricator.wikimedia.org/project/board/71/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: thiemowmdeCc: gabriel-wmde, thiemowmde, gerritbot, Aklapper, Lydia_Pintscher, Alaa.Mustafa87, Zppix, Lewizho99, Maathavan, D3r1ck01, Izno, 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] T136814: PDF export shows json

2016-07-08 Thread thiemowmde
thiemowmde claimed this task.thiemowmde added subscribers: thiemowmde, gabriel-wmde.thiemowmde added a project: Wikidata-Sprint-2016-07-05.
TASK DETAILhttps://phabricator.wikimedia.org/T136814EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: thiemowmdeCc: gabriel-wmde, thiemowmde, gerritbot, Aklapper, Lydia_Pintscher, Alaa.Mustafa87, Zppix, Lewizho99, Maathavan, D3r1ck01, Izno, 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] T136814: PDF export shows json

2016-07-08 Thread thiemowmde
thiemowmde moved this task from Proposed to Review on the Wikidata-Sprint-2016-07-05 board.
TASK DETAILhttps://phabricator.wikimedia.org/T136814WORKBOARDhttps://phabricator.wikimedia.org/project/board/2006/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: thiemowmdeCc: gabriel-wmde, thiemowmde, gerritbot, Aklapper, Lydia_Pintscher, Alaa.Mustafa87, Zppix, Lewizho99, Maathavan, D3r1ck01, Izno, 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] T136814: PDF export shows json

2016-07-08 Thread gerritbot
gerritbot added a project: Patch-For-Review.
TASK DETAILhttps://phabricator.wikimedia.org/T136814EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: gerritbotCc: gerritbot, Aklapper, Lydia_Pintscher, Alaa.Mustafa87, Zppix, Lewizho99, Maathavan, D3r1ck01, Izno, 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] T136814: PDF export shows json

2016-07-08 Thread gerritbot
gerritbot added a comment.
Change 297964 had a related patch set uploaded (by Thiemo Mättig (WMDE)):
Disable PDF export in the Wikidata Item namespace

https://gerrit.wikimedia.org/r/297964TASK DETAILhttps://phabricator.wikimedia.org/T136814EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: gerritbotCc: gerritbot, Aklapper, Lydia_Pintscher, Alaa.Mustafa87, Zppix, D3r1ck01, Izno, 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] T137238: Tune WDQS caching headers

2016-07-08 Thread MoritzMuehlenhoff
MoritzMuehlenhoff triaged this task as "Normal" priority.
TASK DETAILhttps://phabricator.wikimedia.org/T137238EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: MoritzMuehlenhoffCc: gerritbot, Smalyshev, Aklapper, Zppix, Jonas, Gehel, BBlack, Avner, Lewizho99, Maathavan, debt, D3r1ck01, FloNight, Xmlizer, Izno, jkroll, Wikidata-bugs, Jdouglas, aude, Deskana, Manybubbles, Mbch331, Jay8g___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Status] T101161: "Mark as patrolled" gadget for Contributions and History

2016-07-08 Thread Sjoerddebruin
Sjoerddebruin changed the task status from "Open" to "Stalled".
TASK DETAILhttps://phabricator.wikimedia.org/T101161EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SjoerddebruinCc: Ricordisamoa, Sjoerddebruin, petr.matas, matej_suchanek, Aklapper, MGChecker, D3r1ck01, Izno, 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] T74019: Add move gadget to Wikibase core

2016-07-08 Thread Sjoerddebruin
Sjoerddebruin added a comment.
Would love to have this in the core, so we have a better way to track where they (mostly new editors) left the sitelinks.TASK DETAILhttps://phabricator.wikimedia.org/T74019EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SjoerddebruinCc: Aklapper, Stryn, Ltrlg, Ricordisamoa, Wikidata-bugs, Bene, Sjoerddebruin, matej_suchanek, Snaterlicious, Steenth, 555, Lydia_Pintscher, Beta16, JohnLewis, D3r1ck01, Izno, aude, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T86755: [Bug] Preview gadget no longer working in new sitelinks UI

2016-07-08 Thread Sjoerddebruin
Sjoerddebruin added a comment.
What is the current status of this, @Lydia_Pintscher?TASK DETAILhttps://phabricator.wikimedia.org/T86755EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SjoerddebruinCc: Sjoerddebruin, Liuxinyu970226, Billinghurst, Jonas, Bene, Ricordisamoa, thiemowmde, adrianheine, aude, Snaterlicious, Aklapper, Lydia_Pintscher, hoo, D3r1ck01, Izno, Wikidata-bugs, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T137699: Old version of Wikidata item links to current "labels list" only

2016-07-08 Thread Sjoerddebruin
Sjoerddebruin added a comment.
This seems rather trivial to me, as the labels around that time are displayed in the other languages section.TASK DETAILhttps://phabricator.wikimedia.org/T137699EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SjoerddebruinCc: Sjoerddebruin, Wikidata-bugs, Aklapper, Zppix, SJu, D3r1ck01, Izno, aude, Ricordisamoa, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T134723: Project Weekly Reports for Automated Testing and Integration of IFTTT support to Wikidata

2016-07-08 Thread D3r1ck01
D3r1ck01 edited the task description. (Show Details)
EDIT DETAILS...- The Wikimedia Tool Labs instance I am using is "ifttt-testing" and can be accessed by using this link: [[http://tools.wmflabs.org/ifttt-testing/ifttt/v1/rss-feeds | IFTTT Test Instance]]Instance (RSS Feeds Example)]] and it has been configured to run my application for testing within the server and also in the Wikipedia staging channelTASK DETAILhttps://phabricator.wikimedia.org/T134723EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: D3r1ck01Cc: Zppix, Bene, Samtar, hoo, Lydia_Pintscher, Slaporte, Aklapper, Sumit, D3r1ck01, Lethexie, Izno, Wikidata-bugs, aude, Mbch331, Jay8g___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T115554: Allow inserting a reference for a new statement with the DuplicateReferences gadget without reloading the page

2016-07-08 Thread Sjoerddebruin
Sjoerddebruin closed this task as "Resolved".Sjoerddebruin claimed this task.Sjoerddebruin added a comment.
This is possible now.TASK DETAILhttps://phabricator.wikimedia.org/T115554EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: SjoerddebruinCc: Sjoerddebruin, Aklapper, Nikki, D3r1ck01, Izno, Wikidata-bugs, aude, Ricordisamoa, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T136397: Identify and suggest action as undo edit if re-add info for item

2016-07-08 Thread Liuxinyu970226
Liuxinyu970226 added a comment.
Please try modifying a screenshot to say what's your aim.TASK DETAILhttps://phabricator.wikimedia.org/T136397EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Liuxinyu970226Cc: Liuxinyu970226, Aklapper, YFdyh000, Zppix, D3r1ck01, Izno, 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] T138500: [Task] Add Special:AboutTopic view stats to grafana for ArticlePlaceholder

2016-07-08 Thread gerritbot
gerritbot added a comment.
Change 296407 had a related patch set uploaded (by Addshore):
Ooziefy Wikidata ArticlePlaceholder Spark job

https://gerrit.wikimedia.org/r/296407TASK DETAILhttps://phabricator.wikimedia.org/T138500EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Addshore, gerritbotCc: JAllemandou, Liuxinyu970226, Izno, ChrisPins, gerritbot, Lucie, Aklapper, Lydia_Pintscher, Zppix, hoo, Lewizho99, Maathavan, D3r1ck01, Wikidata-bugs, aude, jayvdb, Ricordisamoa, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T138748: [Solution] Value checking and saving: Error messages, no silent fails

2016-07-08 Thread Charlie_WMDE
Charlie_WMDE added a comment.
Error handling of the VisualEditor on Wikipedia:
F4251794: Screenshot_20160708_092217.png

F4251792: Screenshot_20160708_092102.png

F4251793: Screenshot_20160708_092325.png
this one also fails silentlyTASK DETAILhttps://phabricator.wikimedia.org/T138748EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Lydia_Pintscher, Charlie_WMDECc: Tobi_WMDE_SW, Addshore, daniel, Charlie_WMDE, Jonas, adrianheine, thiemowmde, Aklapper, Zppix, Jan_Dittrich, codynguyen1116, D3r1ck01, Izno, 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] T138748: [Solution] Value checking and saving: Error messages, no silent fails

2016-07-08 Thread Jan_Dittrich
Jan_Dittrich moved this task from incoming to consider for next sprint on the Wikidata board.
TASK DETAILhttps://phabricator.wikimedia.org/T138748WORKBOARDhttps://phabricator.wikimedia.org/project/board/71/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Lydia_Pintscher, Jan_DittrichCc: Tobi_WMDE_SW, Addshore, daniel, Charlie_WMDE, Jonas, adrianheine, thiemowmde, Aklapper, Zppix, Jan_Dittrich, codynguyen1116, D3r1ck01, Izno, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs