[Wikidata-bugs] [Maniphest] [Commented On] T102155: find a way to surface rdf/json representation in item UI

2015-07-02 Thread Snaterlicious
Snaterlicious added a comment.

Wouldn't those export options pretty much fit into the sidebar section of 
Print/export?
In general, I do not like the sidebar that much as it is a mix-up of global 
navigation and page specifics. However, it seems like a sensible place to put 
those options for now. As for the planned layout 
https://commons.wikimedia.org/wiki/File:Wikidata_UI_redesign_part_3.png, 
there are multiple options I can think of for some first evaluation:

- There could be a dedicated section in the right sidebar (likely too 
prominent) or
- an icon bar at the bottom of the header section (either in the header 
section itself or just below) leaving the option to put additional 
functionality into such an icon bar. Maybe some toc pop-up listing all the 
properties applied to the Item - whatever.
- In the planned layout, the top right of the header section would feature an 
edit icon with a drop-down list attached--that might be a place to put that 
as well instead of putting additional--probably rather 
specialized--content/links into the page directly.
- Another option would be to have an unobtrusive icon bar above the header / 
rendered Entity contents with icons aligned to the right shifting all of the 
rendered Entity a couple of pixels down. This might even more express the 
Entity (page) wide nature of the actions aggregated there. Having just one icon 
that makes a box pop up when clicked is a sensible solution of course.

F188016: alternativeformatpositions.png 
https://phabricator.wikimedia.org/F188016


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

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

To: Snaterlicious
Cc: daniel, Nikki, mkroetzsch, Aklapper, Lydia_Pintscher, Wikidata-bugs, aude, 
Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T99795: RdfBuilder should have an option to switch between XSD 1.1 and XSD 1.0 style dates in the output.

2015-07-02 Thread Smalyshev
Smalyshev added a comment.

 The user interface, in defiance of the data model, would store a date entered 
 as 1 BCE as -1. But an entry made with the API would not necessarily have 
 done so


It'd be a problem if API client doesn't follow what people entering data into 
Wikidata follow. But since in both PHP and Java 1 BCE is -1, this is a natural 
way for internal representation, so since I have to assume one of these 
options, I assume this one.

 I don't think people would want to take the approach that 15 November 1582 
 Gregorian and November 1582 Gregorian are entirely different kinds of 
 things that cannot be compared,


That's effectively what it is. We could make some effort to make it a bit 
easier (like saying wink-wink, November 1582 is actually 1 November when 
comparing to dates) but then you can't demand both rigor and convenience. If 
you compare the two, I don't see how you can define the comparison (in terms of 
more/less/equal) that would be unique and make sense.

 If I make a query asking for everyone born between March and December 1582 
 Gregorian, should the query ignore a guy born on 15 November 1582 Gregorian


It won't, unless you specifically write query that way. Dates and precisions 
are stored separately, and most people would query against dates directly (it 
also would be much faster, probably). Which means, people expect ISO date 
representation of each date that makes sense for such queries.

However, if you try to compare November 1582 Gregorian and November 1582 
Julian, you can't really expect any defined result. Of course, the actual 
store will return //some// result - right now with this patch it would say they 
are equal, even though they are not actually same stretches of time.

 Handling queries on dates that include precision expressions requires some 
 careful thought and a lot of arithmetic.


Unfortunately, implementing this in a real indexed database would be quite a 
challenge. Currently I'm pretty sure Blazegraph doesn't support anything like 
that OOTB and it's not likely any other triple store would support such thing 
OOTB. It can be done, but that's not a concern for this ticket - the concern 
for this ticket is to figure out the way to export the data into RDF that would 
make sense at least for the majority of the prospective use cases.


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

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

To: Smalyshev
Cc: gerritbot, Liuxinyu970226, Jc3s5h, Smalyshev, Aklapper, daniel, jkroll, 
Wikidata-bugs, Jdouglas, aude, Manybubbles, JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T99795: RdfBuilder should have an option to switch between XSD 1.1 and XSD 1.0 style dates in the output.

2015-07-02 Thread Jc3s5h
Jc3s5h added a comment.

In https://phabricator.wikimedia.org/T99795#1419479, @Smalyshev wrote:

 Year zero doesn't make sense for Wikidata because 1BCE is stored as -1, so 
 what 0 would be? I don't see any actual year to be represented by it. If 
 storage format changes then we'll need to change it, but then we'd also have 
 to change all BCE dates.


The data model says 1 BCE is indeed stored as 0, The user interface, in 
defiance of the data model, would store a date entered as 1 BCE as -1. But an 
entry made with the API would not necessarily have done so. The current 
contents of the database are mixed, unreliable, and are unfit to be converted. 
Any approach that depends on converting anything should be postponed until the 
contents of the database is scrubbed.

 If you need beginning of the October, then you need day precision. If you say 
 month precision, you don't know if it's beginning, end or middle of October, 
 thus you can not compare it with, say, October 1 or October 15.


I don't think people would want to take the approach that 15 November 1582 
Gregorian and November 1582 Gregorian are entirely different kinds of things 
that cannot be compared, just like the proverbial apples and oranges cannot be 
compared. If I make a query asking for everyone born between March and December 
1582 Gregorian, should the query ignore a guy born on 15 November 1582 
Gregorian because that date is day precision, and my query is month precision, 
and day precision cannot be compared to month precision?

Handling queries on dates that include precision expressions requires some 
careful thought and a lot of arithmetic. Essentially, you have to find the 
earliest and latest instant for the query, then the earliest and latest instant 
for the items, and see if any part of the range for the item falls within the 
range for the query.


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

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

To: Jc3s5h
Cc: gerritbot, Liuxinyu970226, Jc3s5h, Smalyshev, Aklapper, daniel, jkroll, 
Wikidata-bugs, Jdouglas, aude, Manybubbles, JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T104447: MwTimeIsoFormatter forces time precisions to be displayed in English

2015-07-02 Thread Sjoerddebruin
Sjoerddebruin added a subscriber: Sjoerddebruin.

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

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

To: Sjoerddebruin
Cc: Sjoerddebruin, Mbch331, Nikki, UV, StevenJ81, Izno, hoo, Aklapper, 
Lydia_Pintscher, Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T86439: Create new item from client js does use no-lang tag

2015-07-02 Thread thiemowmde
thiemowmde closed this task as Resolved.
thiemowmde claimed this task.
thiemowmde added a comment.

I tried to create an item in my local master but can't reproduce the issue any 
more. The language code no is automatically replaced with nb.


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

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

To: thiemowmde
Cc: jeblad, thiemowmde, JanZerebecki, adrianheine, Aklapper, Lydia_Pintscher, 
hoo, Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T104553: change entity selector display (to solve confusion with matches in other languages)

2015-07-02 Thread Lydia_Pintscher
Lydia_Pintscher added a project: MediaWiki-extensions-WikibaseRepository.
Herald added a project: Wikidata.

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

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

To: Lydia_Pintscher
Cc: Aklapper, Lydia_Pintscher, Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T101950: Goal: Establish a framework to engage with data engineers and open data organizations

2015-07-02 Thread Jane023
Jane023 added a comment.

We are already doing more than imagining GLAM applied to Wikidata, we are 
applying GLAM datasets to Wikidata at Wikidata:WikiProject sum of all paintings
https://www.wikidata.org/wiki/Wikidata:WikiProject_sum_of_all_paintings
We not only have Maarten who is busy adding painting items from the world's 
greatest collections, we also have collections who are eager to share data with 
us and see what happens. The Rijksmuseum has given us their old catalog codes 
(from before 1976) in order to make matchups to art catalogs possible. They 
have also shared with us their iconclass codes on all of the artworks for which 
we have Wikidata items. These have been added in the property P1256 Depicts 
iconclass notation.


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

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

To: Qgil, Jane023
Cc: Jane023, I9606, Scott_WUaS, Abraham, Susannaanas, Multichill, Smalyshev, 
Romaine, Wittylama, Sadads, Yair_rand, Lydia_Pintscher, SVentura, Qgil, 
Aklapper, Wikidata-bugs, aude, Gryllida, Rfarrand, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T74590: Monolingual code is missing for Kvensk (fkv), Romani (rom) and Scandoromani (rmg-variant)

2015-07-02 Thread jeblad
jeblad added a comment.

Kvensk (fkv) is still not supported. Could be a data source problem, as Lydia 
says this is ready to go.


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

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

To: jeblad
Cc: jeblad, thiemowmde, adrianheine, Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T77977: Unit support (tracking)

2015-07-02 Thread daniel
daniel edited blocking tasks, added: T98172: Implement Unit Selector widget; 
removed: T77982: Decide on implementation of Unit Selector widget.

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

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

To: daniel
Cc: Wolfvoll, -jem-, Lucie, Izno, JanZerebecki, Smalyshev, Filceolaire, jeblad, 
Tobias1984, Kelson, Ricordisamoa, Sylvain_WMFr, DSGalaktos, AmaryllisGardener, 
Liuxinyu970226, Aklapper, Snipre, daniel, Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T77982: Decide on implementation of Unit Selector widget

2015-07-02 Thread daniel
daniel removed a blocked task: T77977: Unit support (tracking).

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

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

To: Lydia_Pintscher, daniel
Cc: Yair_rand, Micru, Ricordisamoa, Bene, Lydia_Pintscher, Snipre, thiemowmde, 
Tobi_WMDE_SW, adrianheine, Snaterlicious, Aklapper, daniel, Wikidata-bugs, aude



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T98172: Implement Unit Selector widget

2015-07-02 Thread daniel
daniel added a blocked task: T77977: Unit support (tracking).

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

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

To: daniel
Cc: daniel, Aklapper, Snaterlicious, adrianheine, Tobi_WMDE_SW, thiemowmde, 
Snipre, Lydia_Pintscher, Bene, Wikidata-bugs, aude



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T104273: in suggester, labels are redundantly and incorrectly listed as aliases

2015-07-02 Thread gerritbot
gerritbot added a comment.
Herald added a subscriber: Luke081515.

Change 68 had a related patch set uploaded (by Daniel Kinzler):
SearchEntities return 'aliases' when not same as label

https://gerrit.wikimedia.org/r/68


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

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

To: Addshore, gerritbot
Cc: Luke081515, Addshore, daniel, gerritbot, aude, Aklapper, Wikidata-bugs, 
Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T77977: Unit support (tracking)

2015-07-02 Thread Wolfvoll
Herald added a subscriber: Luke081515.

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

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

To: Wolfvoll
Cc: Luke081515, Wolfvoll, -jem-, Lucie, Izno, JanZerebecki, Smalyshev, 
Filceolaire, jeblad, Tobias1984, Kelson, Ricordisamoa, Sylvain_WMFr, 
DSGalaktos, AmaryllisGardener, Liuxinyu970226, Aklapper, Snipre, daniel, 
Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T102992: Review WikidataQuality DB schema

2015-07-02 Thread jcrespo
jcrespo added a blocked task: T17441: Some tables lack unique or primary keys, 
may allow confusing duplicate data.

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

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

To: jcrespo
Cc: jcrespo, Tamslo, JAnstee_WMF, csteipp, Springle, hoo, Aklapper, daniel, 
Wikidata-bugs, aude, GWicke, Krenair



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T86439: Create new item from client js does use no-lang tag

2015-07-02 Thread jeblad
jeblad added a comment.

Same here, see Christian Wisbech 
https://www.wikidata.org/wiki/Special:EntityData/Q20638286.json.
Assume it is correct to say this is resolved.


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

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

To: thiemowmde, jeblad
Cc: jeblad, thiemowmde, JanZerebecki, adrianheine, Aklapper, Lydia_Pintscher, 
hoo, Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T104405: PHP Notices/ Warnings from DataModel's SnakList

2015-07-02 Thread JanZerebecki
JanZerebecki moved this task to Done on the Wikidata-Sprint-2015-06-30 
workboard.

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

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

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

To: JanZerebecki
Cc: Addshore, thiemowmde, Aklapper, JanZerebecki, JeroenDeDauw, Bene, hoo, 
Wikidata-bugs, aude, Krenair, greg, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T86439: Create new item from client js does use no-lang tag

2015-07-02 Thread jeblad
jeblad added a comment.

Is this done?


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

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

To: jeblad
Cc: jeblad, thiemowmde, JanZerebecki, adrianheine, Aklapper, Lydia_Pintscher, 
hoo, Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T104445: edit summary for merge has quotes, redirect doesn't

2015-07-02 Thread Tobi_WMDE_SW
Tobi_WMDE_SW set Story Points to 1.
Herald added a subscriber: Luke081515.

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

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

To: Tobi_WMDE_SW
Cc: Luke081515, gerritbot, Aklapper, Lucie, Wikidata-bugs, aude, Gryllida, 
Shizhao, Arrbee, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T104393: Fix property label/alias conflicts on wikidata

2015-07-02 Thread Tobi_WMDE_SW
Tobi_WMDE_SW set Story Points to 1.

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

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

To: Tobi_WMDE_SW
Cc: JanZerebecki, Ricordisamoa, gerritbot, Lydia_Pintscher, Bene, Aklapper, 
Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T104405: PHP Notices/ Warnings from DataModel's SnakList

2015-07-02 Thread Tobi_WMDE_SW
Tobi_WMDE_SW set Story Points to 1.
Herald added a subscriber: Luke081515.

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

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

To: Tobi_WMDE_SW
Cc: Luke081515, Addshore, thiemowmde, Aklapper, JanZerebecki, JeroenDeDauw, 
Bene, hoo, Wikidata-bugs, aude, Krenair, greg, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T101950: Goal: Establish a framework to engage with data engineers and open data organizations

2015-07-02 Thread Jane023
Jane023 added a subscriber: Jane023.

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

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

To: Qgil, Jane023
Cc: Jane023, I9606, Scott_WUaS, Abraham, Susannaanas, Multichill, Smalyshev, 
Romaine, Wittylama, Sadads, Yair_rand, Lydia_Pintscher, SVentura, Qgil, 
Aklapper, Wikidata-bugs, aude, Gryllida, Rfarrand, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Lowered Priority] T104393: Fix property label/alias conflicts on wikidata

2015-07-02 Thread Tobi_WMDE_SW
Tobi_WMDE_SW lowered the priority of this task from Unbreak Now! to High.

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

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

To: Tobi_WMDE_SW
Cc: JanZerebecki, Ricordisamoa, gerritbot, Lydia_Pintscher, Bene, Aklapper, 
Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T98372: AbuseFilter doesn't log removal of redirects

2015-07-02 Thread gerritbot
gerritbot added a comment.
Herald added a subscriber: Luke081515.

Change 209274 abandoned by Addshore:
Run EditFilterHooks on undo undoafter  restore

Reason:
per comments etc.
This thing in core would be better

https://gerrit.wikimedia.org/r/209274


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

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

To: Addshore, gerritbot
Cc: Luke081515, Lydia_Pintscher, matej_suchanek, daniel, gerritbot, Addshore, 
Aklapper, Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Triaged] T104553: change entity selector display (to solve confusion with matches in other languages)

2015-07-02 Thread Lydia_Pintscher
Lydia_Pintscher triaged this task as Normal priority.
Lydia_Pintscher set Security to None.

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

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

To: Lydia_Pintscher
Cc: Aklapper, Lydia_Pintscher, Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T104553: change entity selector display (to solve confusion with matches in other languages)

2015-07-02 Thread Lydia_Pintscher
Lydia_Pintscher added subscribers: Jonas, thiemowmde.

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

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

To: Lydia_Pintscher
Cc: thiemowmde, Jonas, Aklapper, Lydia_Pintscher, Wikidata-bugs, aude, 
Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T104553: change entity selector display (to solve confusion with matches in other languages)

2015-07-02 Thread Lydia_Pintscher
Lydia_Pintscher moved this task to consider for next sprint on the Wikidata 
workboard.

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

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

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

To: Lydia_Pintscher
Cc: thiemowmde, Jonas, Aklapper, Lydia_Pintscher, Wikidata-bugs, aude, 
Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T104447: MwTimeIsoFormatter forces time precisions to be displayed in English

2015-07-02 Thread StevenJ81
StevenJ81 added a comment.

In https://phabricator.wikimedia.org/T104447#1418842, @hoo wrote:

 In https://phabricator.wikimedia.org/T104447#1418803, @StevenJ81 wrote:

  In https://phabricator.wikimedia.org/T104447#1418032, @hoo wrote:
 
   In https://phabricator.wikimedia.org/T104447#1417847, @Izno wrote:
  
And in fact, the issue may be related to the fact that German seems to 
be the only localization, so testing on a German client probably won't 
help identify if there are other problems.
  
  
   That's not the case, the problem here is that precisions aren't yet 
   translated. `MwTimeIsoFormatter::getMessage` still forces English for 
   them.
 
 
  Maybe. But even at that the ordinal is coming out in German--for example, 
  as 12. instead of 12th


 Well, the English version also is for example `3. century` for the third 
 century, so nothing special is being done for German.


Evidently not (see Nikki above). But then aside from the translation issues, 
the English is just simply wrong, because in English (British, American, or 
otherwise), you'd never say 12. century. You'd say 12th century.


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

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

To: StevenJ81
Cc: Mbch331, Nikki, UV, StevenJ81, Izno, hoo, Aklapper, Lydia_Pintscher, 
Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T101950: Goal: Establish a framework to engage with data engineers and open data organizations

2015-07-02 Thread Qgil
Qgil edited the task description.

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

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

To: Qgil
Cc: Hjfocs, Jane023, I9606, Scott_WUaS, Abraham, Susannaanas, Multichill, 
Smalyshev, Romaine, Wittylama, Sadads, Yair_rand, Lydia_Pintscher, SVentura, 
Qgil, Aklapper, Wikidata-bugs, aude, Gryllida, Rfarrand, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T101950: Goal: Establish a framework to engage with data engineers and open data organizations

2015-07-02 Thread Hjfocs
Hjfocs edited the task description.

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

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

To: Qgil, Hjfocs
Cc: Hjfocs, Jane023, I9606, Scott_WUaS, Abraham, Susannaanas, Multichill, 
Smalyshev, Romaine, Wittylama, Sadads, Yair_rand, Lydia_Pintscher, SVentura, 
Qgil, Aklapper, Wikidata-bugs, aude, Gryllida, Rfarrand, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T101950: Goal: Establish a framework to engage with data engineers and open data organizations

2015-07-02 Thread Qgil
Qgil edited the task description.

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

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

To: Qgil
Cc: Hjfocs, Jane023, I9606, Scott_WUaS, Abraham, Susannaanas, Multichill, 
Smalyshev, Romaine, Wittylama, Sadads, Yair_rand, Lydia_Pintscher, SVentura, 
Qgil, Aklapper, Wikidata-bugs, aude, Gryllida, Rfarrand, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T104273: in suggester, labels are redundantly and incorrectly listed as aliases

2015-07-02 Thread gerritbot
gerritbot added a comment.

Change 68 merged by jenkins-bot:
SearchEntities return 'aliases' when not same as label

https://gerrit.wikimedia.org/r/68


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

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

To: Addshore, gerritbot
Cc: Luke081515, Addshore, daniel, gerritbot, aude, Aklapper, Wikidata-bugs, 
Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T104393: Fix property label/alias conflicts on wikidata

2015-07-02 Thread Lydia_Pintscher
Lydia_Pintscher moved this task to consider for next sprint on the Wikidata 
workboard.

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

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

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

To: Lydia_Pintscher
Cc: JanZerebecki, Ricordisamoa, gerritbot, Lydia_Pintscher, Bene, Aklapper, 
Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T59745: Automatically create redirects when merging items

2015-07-02 Thread daniel
daniel moved this task to Review on the Wikidata-Sprint-2015-06-30 workboard.

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

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

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

To: Lucie, daniel
Cc: gerritbot, Lucie, Addshore, Wikidata-bugs, Bene, Tobi_WMDE_SW, ValterVB, 
Sjoerddebruin, matej_suchanek, Ricordisamoa, Multichill, Liuxinyu970226, 
Lydia_Pintscher, Stryn, daniel, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Reopened] T74759: Wrong info on Special:Version

2015-07-02 Thread JanZerebecki
JanZerebecki reopened this task as Open.
JanZerebecki added a comment.

Still not working: https://www.wikidata.org/wiki/Special:Version reads Wikidata 
– 
(https://phabricator.wikimedia.org/rEWDAc30a43d9b115758b28a5cce5a494368ba9b06445)
 12:00, 6. Mai 2014


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

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

To: aude, JanZerebecki
Cc: jeremyb, gerritbot, Lydia_Pintscher, Tobi_WMDE_SW, JanZerebecki, 
Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T104461: Check banners on Monobook skin

2015-07-02 Thread Lydia_Pintscher
Lydia_Pintscher moved this task to monitoring on the Wikidata workboard.

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

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

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

To: Lydia_Pintscher
Cc: Aklapper, Jdlrobson, Wikidata-bugs, aude, Lydia_Pintscher, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T102992: Review WikidataQuality DB schema

2015-07-02 Thread JAnstee_WMF
JAnstee_WMF added a comment.

I was subscribed to this task, likely in error, as I do not know how this task 
relates to my work.  I will unsubscribe, if it was not an error but 
intentional, please let me know by resubscribing me in that case.


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

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

To: JAnstee_WMF
Cc: jcrespo, Tamslo, JAnstee_WMF, csteipp, Springle, hoo, Aklapper, daniel, 
Wikidata-bugs, aude, GWicke, Krenair, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T102992: Review WikidataQuality DB schema

2015-07-02 Thread JAnstee_WMF
JAnstee_WMF removed a subscriber: JAnstee_WMF.

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

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

To: JAnstee_WMF
Cc: jcrespo, Tamslo, csteipp, Springle, hoo, Aklapper, daniel, Wikidata-bugs, 
aude, GWicke, Krenair, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T101950: Goal: Establish a framework to engage with data engineers and open data organizations

2015-07-02 Thread Hjfocs
Hjfocs edited the task description.
Hjfocs added a subscriber: Hjfocs.

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

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

To: Qgil, Hjfocs
Cc: Hjfocs, Jane023, I9606, Scott_WUaS, Abraham, Susannaanas, Multichill, 
Smalyshev, Romaine, Wittylama, Sadads, Yair_rand, Lydia_Pintscher, SVentura, 
Qgil, Aklapper, Wikidata-bugs, aude, Gryllida, Rfarrand, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T98458: Turn JSON input fields in the ApiSandbox into textareas

2015-07-02 Thread gerritbot
gerritbot added a comment.

Change 218306 merged by jenkins-bot:
Turn JSON fields into textareas for the ApiSandbox

https://gerrit.wikimedia.org/r/218306


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

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

To: gerritbot
Cc: Ricordisamoa, gerritbot, JanZerebecki, hoo, aude, Lydia_Pintscher, 
thiemowmde, Aklapper, Wikidata-bugs, Jackmcbarn, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T101950: Goal: Establish a framework to engage with data engineers and open data organizations

2015-07-02 Thread Qgil
Qgil edited the task description.

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

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

To: Qgil
Cc: Hjfocs, Jane023, I9606, Scott_WUaS, Abraham, Susannaanas, Multichill, 
Smalyshev, Romaine, Wittylama, Sadads, Yair_rand, Lydia_Pintscher, SVentura, 
Qgil, Aklapper, Wikidata-bugs, aude, Gryllida, Rfarrand, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T104451: Transform categorization system and statement system to be compatible/merged, autonomize connecting elements

2015-07-02 Thread Lydia_Pintscher
Lydia_Pintscher moved this task to backlog on the Wikidata workboard.

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

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

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

To: Lydia_Pintscher
Cc: SJu, Aklapper, Wikidata-bugs, aude, Jackmcbarn, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T104330: ParseValue API module should optionally trigger validation

2015-07-02 Thread Lydia_Pintscher
Lydia_Pintscher moved this task to consider for next sprint on the Wikidata 
workboard.

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

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

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

To: Lydia_Pintscher
Cc: Tobi_WMDE_SW, WMDE-Fisch, Aklapper, thiemowmde, aude, daniel, 
Lydia_Pintscher, Jc3s5h, Wikidata-bugs, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T45962: Special:ItemDisambiguation should include aliases in search, not just labels.

2015-07-02 Thread Addshore
Addshore closed this task as Resolved.
Addshore claimed this task.

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

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

To: Addshore
Cc: gerritbot, Wikidata-bugs, matej_suchanek, Lucie, Lydia_Pintscher, daniel, 
aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T46529: Wikidata search problems (tracking)

2015-07-02 Thread Addshore
Addshore closed blocking task T45962: Special:ItemDisambiguation should include 
aliases in search, not just labels. as Resolved.

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

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

To: Addshore
Cc: Wikidata-bugs, Nemo_bis, Addshore, whym, Aklapper, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T59658: Improve Special:ItemDisambiguation (tracking)

2015-07-02 Thread Addshore
Addshore closed blocking task T45962: Special:ItemDisambiguation should include 
aliases in search, not just labels. as Resolved.

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

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

To: Addshore
Cc: Wikidata-bugs, Addshore, Unknown Object (MLST), aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T94713: Beta: A user is able to see wikidata descriptions in mobile web search results (in order to learn better select from results)

2015-07-02 Thread gpaumier
gpaumier moved this task to In current Tech News draft on the user-notice 
workboard.

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

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

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

To: bmansurov, gpaumier
Cc: Moushira, greg, Jhernandez, phuedx, Jdlrobson, dr0ptp4kt, gerritbot, 
Lydia_Pintscher, Florian, JKatzWMF, Aklapper, Johan, Wikidata-bugs, aude, 
gpaumier, Jay8g, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T96040: Wikibase special pages tracking bug

2015-07-02 Thread Addshore
Addshore closed blocking task T44686: Special:ItemDisambiguation should support 
case-insensitive matches. as Resolved.

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

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

To: Addshore
Cc: Liuxinyu970226, aude, Aklapper, Wikidata-bugs, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T59658: Improve Special:ItemDisambiguation (tracking)

2015-07-02 Thread Addshore
Addshore closed blocking task T44686: Special:ItemDisambiguation should support 
case-insensitive matches. as Resolved.

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

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

To: Addshore
Cc: Wikidata-bugs, Addshore, Unknown Object (MLST), aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T44686: Special:ItemDisambiguation should support case-insensitive matches.

2015-07-02 Thread Addshore
Addshore closed this task as Resolved.
Addshore claimed this task.

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

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

To: Addshore
Cc: gerritbot, Addshore, Wikidata-bugs, Denny, Lydia_Pintscher, Stryn, daniel, 
aude, 01tonythomas, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T98458: Turn JSON input fields in the ApiSandbox into textareas

2015-07-02 Thread Addshore
Addshore closed this task as Resolved.
Addshore claimed this task.

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

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

To: Addshore
Cc: Ricordisamoa, gerritbot, JanZerebecki, hoo, aude, Lydia_Pintscher, 
thiemowmde, Aklapper, Wikidata-bugs, Jackmcbarn, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T100486: Options for {{PAGEBANNER}} parser function

2015-07-02 Thread Jdlrobson
Jdlrobson closed blocking task T103475: Icons in banner as Resolved.

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

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

To: Sumit, Jdlrobson
Cc: gerritbot, Bene, Nicolas_Raoul, Jdlrobson, Sumit, Aklapper, Wikidata-bugs, 
aude, Lydia_Pintscher, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T100486: Options for {{PAGEBANNER}} parser function

2015-07-02 Thread Jdlrobson
Jdlrobson closed this task as Resolved.

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

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

To: Sumit, Jdlrobson
Cc: gerritbot, Bene, Nicolas_Raoul, Jdlrobson, Sumit, Aklapper, Wikidata-bugs, 
aude, Lydia_Pintscher, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T103475: Icons in banner

2015-07-02 Thread Jdlrobson
Jdlrobson closed this task as Resolved.

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

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

To: Sumit, Jdlrobson
Cc: Aklapper, Sumit, Jdlrobson, Nicolas_Raoul, Bene, gerritbot, Wikidata-bugs, 
aude, Lydia_Pintscher, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T104668: Label service incompatible with serviceWhitelist

2015-07-02 Thread Smalyshev
Smalyshev added a comment.

Well, it's OK if we only want to limit remote services. But if we want to limit 
services using whitelist, that won't work, since once we enable whitelist, it 
automatically enables exact URL checking and that doesn't work with label 
service. It's not a blocking issue but it'd be better if we found a cleaner 
solution. I'll think over weekend, maybe I'll have some other idea.


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

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

To: Smalyshev
Cc: Manybubbles, Aklapper, Smalyshev, jkroll, Wikidata-bugs, Jdouglas, aude, 
JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T104664: Exceptions when using label service

2015-07-02 Thread Smalyshev
Smalyshev created this task.
Smalyshev assigned this task to Manybubbles.
Smalyshev added subscribers: Smalyshev, Manybubbles.
Smalyshev added projects: Wikidata-Query-Service, Discovery.
Herald added a subscriber: Aklapper.
Herald added a project: Wikidata.

TASK DESCRIPTION
  When using Label service, the following exception appears in the log:
  
  ```
  ERROR: JVMHashJoinUtility.java:1383: cause=java.lang.RuntimeException: 
addr=-70220 : cause=java.lang.RuntimeException: 
java.nio.channels.ClosedByInterruptException, 
state=JVMHashJoinUtility{open=true,joinType=Normal,joinVars=[p],size=100,considered(left=0,right=0,joins=0)}
  java.lang.RuntimeException: addr=-70220 : cause=java.lang.RuntimeException: 
java.nio.channels.ClosedByInterruptException
at com.bigdata.rwstore.RWStore.getData(RWStore.java:1966)
at 
com.bigdata.journal.RWStrategy.readFromLocalStore(RWStrategy.java:733)
at com.bigdata.journal.RWStrategy.read(RWStrategy.java:156)
at com.bigdata.journal.AbstractJournal.read(AbstractJournal.java:4284)
at 
com.bigdata.btree.AbstractBTree.readNodeOrLeaf(AbstractBTree.java:4018)
at com.bigdata.btree.Node._getChild(Node.java:2727)
at com.bigdata.btree.AbstractBTree$1.compute(AbstractBTree.java:363)
at com.bigdata.btree.AbstractBTree$1.compute(AbstractBTree.java:346)
at com.bigdata.util.concurrent.Memoizer$1.call(Memoizer.java:77)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at com.bigdata.util.concurrent.Memoizer.compute(Memoizer.java:92)
at com.bigdata.btree.AbstractBTree.loadChild(AbstractBTree.java:532)
at com.bigdata.btree.Node.getChild(Node.java:2628)
at com.bigdata.btree.Node.indexOf(Node.java:971)
at com.bigdata.btree.Node.indexOf(Node.java:988)
at com.bigdata.btree.AbstractBTree.rangeCount(AbstractBTree.java:2631)
at 
com.bigdata.relation.accesspath.AccessPath.historicalRangeCount(AccessPath.java:1418)
at 
com.bigdata.relation.accesspath.AccessPath.rangeCount(AccessPath.java:1386)
at 
com.bigdata.relation.accesspath.AccessPath.iterator(AccessPath.java:986)
at 
com.bigdata.relation.accesspath.AccessPath.iterator(AccessPath.java:789)
at 
org.wikidata.query.rdf.blazegraph.label.LabelService$ResolutionContext.fillBestLabels(LabelService.java:373)
at 
org.wikidata.query.rdf.blazegraph.label.LabelService$ResolutionContext.resolve(LabelService.java:358)
at 
org.wikidata.query.rdf.blazegraph.label.LabelService$LabelServiceCall$Chunk.next(LabelService.java:217)
at 
org.wikidata.query.rdf.blazegraph.label.LabelService$LabelServiceCall$Chunk.next(LabelService.java:189)
at 
com.bigdata.striterator.ChunkedWrappedIterator.nextChunk(ChunkedWrappedIterator.java:252)
at com.bigdata.striterator.Chunkerator.next(Chunkerator.java:96)
at com.bigdata.striterator.Chunkerator.next(Chunkerator.java:44)
at 
com.bigdata.bop.join.JVMHashJoinUtility.hashJoin2(JVMHashJoinUtility.java:548)
at 
com.bigdata.bop.join.JVMHashJoinUtility.hashJoin(JVMHashJoinUtility.java:513)
at 
com.bigdata.bop.controller.ServiceCallJoin$ChunkTask$ServiceCallTask.call(ServiceCallJoin.java:618)
at 
com.bigdata.bop.controller.ServiceCallJoin$ChunkTask$ServiceCallTask.call(ServiceCallJoin.java:542)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
  Caused by: java.lang.RuntimeException: 
java.nio.channels.ClosedByInterruptException
at com.bigdata.rwstore.RWStore.readRaw(RWStore.java:6292)
at 
com.bigdata.io.writecache.WriteCacheService._readFromLocalDiskIntoNewHeapByteBuffer(WriteCacheService.java:3702)
at 
com.bigdata.io.writecache.WriteCacheService._getRecord(WriteCacheService.java:3526)
at 
com.bigdata.io.writecache.WriteCacheService.access$2500(WriteCacheService.java:200)
at 
com.bigdata.io.writecache.WriteCacheService$1.compute(WriteCacheService.java:3363)
at 
com.bigdata.io.writecache.WriteCacheService$1.compute(WriteCacheService.java:3347)
at com.bigdata.util.concurrent.Memoizer$1.call(Memoizer.java:77)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at com.bigdata.util.concurrent.Memoizer.compute(Memoizer.java:92)
at 
com.bigdata.io.writecache.WriteCacheService.loadRecord(WriteCacheService.java:3468)
at 
com.bigdata.io.writecache.WriteCacheService.read(WriteCacheService.java:3187)
at com.bigdata.rwstore.RWStore.getData(RWStore.java:1957)
... 34 more
  Caused by: java.nio.channels.ClosedByInterruptException
at 
java.nio.channels.spi.AbstractInterruptibleChannel.end(AbstractInterruptibleChannel.java:202)
at 

[Wikidata-bugs] [Maniphest] [Commented On] T104668: Label service incompatible with serviceWhitelist

2015-07-02 Thread Smalyshev
Smalyshev added a comment.

Maybe we could use magic predicates like in 
https://wiki.blazegraph.com/wiki/index.php/FullTextSearch instead of URL for 
specifying languages? E.g.:

  SERVICE wikibase:label {
wikibase:Languages rdfs:label en,ru,es .
  }


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

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

To: Smalyshev
Cc: Manybubbles, Aklapper, Smalyshev, jkroll, Wikidata-bugs, Jdouglas, aude, 
JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T104668: Label service incompatible with serviceWhitelist

2015-07-02 Thread Manybubbles
Manybubbles added a comment.

When I made the label service I had it delegate to the inbuilt default
service which already did whitelist checking. I saw that it didn't work
with blazegraphs whitelossst but we already had one soni thought it was OK.


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

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

To: Manybubbles
Cc: Manybubbles, Aklapper, Smalyshev, jkroll, Wikidata-bugs, Jdouglas, aude, 
JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Subscribers] T104657: empty label service does not work on db01

2015-07-02 Thread Smalyshev
Smalyshev added a subscriber: Manybubbles.
Smalyshev set Security to None.

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

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

To: Manybubbles, Smalyshev
Cc: Manybubbles, Aklapper, Smalyshev, jkroll, Wikidata-bugs, Jdouglas, aude, 
JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T104657: empty label service does not work on db01

2015-07-02 Thread Smalyshev
Smalyshev created this task.
Smalyshev assigned this task to Manybubbles.
Smalyshev added a subscriber: Smalyshev.
Smalyshev added projects: Discovery, Wikidata-Query-Service.
Herald added a subscriber: Aklapper.
Herald added a project: Wikidata.

TASK DESCRIPTION
  This code run on db01 works:
  
  ```
  prefix wikibase: http://wikiba.se/ontology#
  PREFIX wd: http://www.wikidata.org/entity/ 
  PREFIX wdt: http://www.wikidata.org/prop/direct/
  PREFIX rdfs: http://www.w3.org/2000/01/rdf-schema#
  PREFIX p: http://www.wikidata.org/prop/
  PREFIX v: http://www.wikidata.org/prop/statement/
  SELECT ?p ?w ?pLabel ?wLabel WHERE {
 wd:Q30 p:P6/v:P6 ?p .
 ?p wdt:P26 ?w .
 SERVICE wikibase:label.de.en {
   ?p rdfs:label ?pLabel .
   ?w rdfs:label ?wLabel .
 }
   }
  ```
  
  But this one produces empty labels:
  
  ```
  prefix wikibase: http://wikiba.se/ontology#
  PREFIX wd: http://www.wikidata.org/entity/ 
  PREFIX wdt: http://www.wikidata.org/prop/direct/
  PREFIX rdfs: http://www.w3.org/2000/01/rdf-schema#
  PREFIX p: http://www.wikidata.org/prop/
  PREFIX v: http://www.wikidata.org/prop/statement/
  SELECT ?p ?w ?pLabel ?wLabel WHERE {
 wd:Q30 p:P6/v:P6 ?p .
 ?p wdt:P26 ?w .
 SERVICE wikibase:label.de.en { }
   }
  ```
  
  Something seems to be wrong with handling empty service.

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

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

To: Manybubbles, Smalyshev
Cc: Aklapper, Smalyshev, jkroll, Wikidata-bugs, Jdouglas, aude, Manybubbles, 
JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T104657: empty label service does not work on db01

2015-07-02 Thread Smalyshev
Smalyshev closed this task as Invalid.
Smalyshev added a comment.

Oops, my fault, I haven't updated all the scripts properly.


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

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

To: Manybubbles, Smalyshev
Cc: Manybubbles, Aklapper, Smalyshev, jkroll, Wikidata-bugs, Jdouglas, aude, 
JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T104657: empty label service does not work on db01

2015-07-02 Thread Manybubbles
Manybubbles added a comment.

Sorry was going to say it bad a couple of little script changes required.
Easy to miss.


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

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

To: Manybubbles
Cc: Manybubbles, Aklapper, Smalyshev, jkroll, Wikidata-bugs, Jdouglas, aude, 
JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T104668: Label service incompatible with serviceWhitelist

2015-07-02 Thread Smalyshev
Smalyshev created this task.
Smalyshev added subscribers: Smalyshev, Manybubbles.
Smalyshev added projects: Discovery, Wikidata-Query-Service.
Herald added a subscriber: Aklapper.
Herald added a project: Wikidata.

TASK DESCRIPTION
  The label service uses service URL that is variable, e.g. 
http://wikiba.se/ontology#label.ru.en - but serviceWhitelist contains only 
fixed URLs. That means if I enable serviceWhitelist for security or performance 
reasons, I can no longer use the label service. We need to find a solution for 
this to either make the label service use fixed URL or somehow support it in 
other way.

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

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

To: Smalyshev
Cc: Manybubbles, Aklapper, Smalyshev, jkroll, Wikidata-bugs, Jdouglas, aude, 
JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T88600: When creating a new page, suggest doing a translation instead

2015-07-02 Thread Amire80
Amire80 moved this task to CX6 on the MediaWiki-extensions-ContentTranslation 
workboard.

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

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

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

To: Amire80
Cc: Ricordisamoa, rasmusskjoldan, Liuxinyu970226, Nemo_bis, gerritbot, 
Lydia_Pintscher, Pginer-WMF, Aklapper, Nirzar, santhosh, Arrbee, Amire80, 
Wikidata-bugs, aude, Jsahleen, KartikMistry, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T103626: MW_INSTALL_PATH incorrect for WikibaseQualityConstraints jenkins jobs

2015-07-02 Thread gerritbot
gerritbot added a comment.

Change 221899 merged by jenkins-bot:
Run mw-set-env for WikibaseQuality* tests

https://gerrit.wikimedia.org/r/221899


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

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

To: Addshore, gerritbot
Cc: gerritbot, Addshore, Krinkle, Aklapper, hoo, Wikidata-bugs, aude, hashar, 
greg, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T45962: Special:ItemDisambiguation should include aliases in search, not just labels.

2015-07-02 Thread gerritbot
gerritbot added a comment.

Change 222331 merged by jenkins-bot:
Do not use labels when linking item IDs on Special:ItemDisambiguation

https://gerrit.wikimedia.org/r/222331


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

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

To: gerritbot
Cc: gerritbot, Wikidata-bugs, matej_suchanek, Lucie, Lydia_Pintscher, daniel, 
aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T104585: in suggester, entity ids are incorrectly listed as aliases

2015-07-02 Thread Bugreporter
Bugreporter created this task.
Bugreporter added a subscriber: Bugreporter.
Bugreporter added projects: Wikidata, MediaWiki-extensions-WikibaseRepository.
Herald added a subscriber: Aklapper.

TASK DESCRIPTION
  Similar to {T104273}, When typing Q5 it is also displayed as alias.

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

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

To: Bugreporter
Cc: Aklapper, Bugreporter, Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T90115: BlazeGraph Security Review

2015-07-02 Thread Deskana
Deskana added a project: Discovery-Wikidata-Query-Service-Sprint.

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

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

To: csteipp, Deskana
Cc: JanZerebecki, Bene, MoritzMuehlenhoff, GWicke, Thompsonbry.systap, 
Smalyshev, Joe, Liuxinyu970226, csteipp, Beebs.systap, Haasepeter, Aklapper, 
Manybubbles, jkroll, Wikidata-bugs, Jdouglas, aude, Krenair, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T103897: Create production package for WDQS

2015-07-02 Thread Deskana
Deskana added a project: Discovery-Wikidata-Query-Service-Sprint.

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

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

To: Deskana
Cc: Ricordisamoa, Joe, Manybubbles, Aklapper, Smalyshev, jkroll, Wikidata-bugs, 
Jdouglas, aude, JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T96579: EPIC: Deploy Wikidata Query 0.1 Release in labs as official service

2015-07-02 Thread Manybubbles
Manybubbles removed a project: Discovery-Wikidata-Query-Service-Sprint.

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

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

To: Manybubbles
Cc: Daniel_Mietchen, -jem-, Liuxinyu970226, phuedx, JKatzWMF, Deskana, ksmith, 
Smalyshev, Aklapper, Manybubbles, jkroll, Wikidata-bugs, Jdouglas, aude, 
JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T103907: Develop external hardening rules for WDQS

2015-07-02 Thread Deskana
Deskana added a project: Discovery-Wikidata-Query-Service-Sprint.

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

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

To: Deskana
Cc: Ricordisamoa, Smalyshev, Aklapper, Manybubbles, Joe, jkroll, Wikidata-bugs, 
Jdouglas, aude, JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T103904: Create debian service structure for WDQS

2015-07-02 Thread Deskana
Deskana added a project: Discovery-Wikidata-Query-Service-Sprint.
Deskana set Security to None.

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

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

To: Deskana
Cc: Smalyshev, Aklapper, Manybubbles, Joe, jkroll, Wikidata-bugs, Jdouglas, 
aude, JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T74759: Wrong info on Special:Version

2015-07-02 Thread jeremyb
jeremyb added a comment.

See https://gerrit.wikimedia.org/r/192866


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

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

To: aude, jeremyb
Cc: jeremyb, gerritbot, Lydia_Pintscher, Tobi_WMDE_SW, JanZerebecki, 
Wikidata-bugs, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T103994: Large banner loading on small mobile screens

2015-07-02 Thread Sumit
Sumit closed this task as Resolved.

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

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

To: Sumit
Cc: gerritbot, Sumit, Aklapper, Wikidata-bugs, Lydia_Pintscher, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T45962: Special:ItemDisambiguation should include aliases in search, not just labels.

2015-07-02 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: gerritbot
Cc: gerritbot, Wikidata-bugs, matej_suchanek, Lucie, Lydia_Pintscher, daniel, 
aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T45962: Special:ItemDisambiguation should include aliases in search, not just labels.

2015-07-02 Thread gerritbot
gerritbot added a subscriber: gerritbot.
gerritbot added a comment.

Change 222331 had a related patch set uploaded (by Daniel Kinzler):
Do not use labels when linking item IDs on Special:ItemDisambiguation

https://gerrit.wikimedia.org/r/222331


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

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

To: gerritbot
Cc: gerritbot, Wikidata-bugs, matej_suchanek, Lucie, Lydia_Pintscher, daniel, 
aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T101950: Goal: Establish a framework to engage with data engineers and open data organizations

2015-07-02 Thread SVentura
SVentura added a comment.

@Wittylama  - This is very exciting to read, Europeana is a perfect fit. It's 
not always obvious to organizations I've spoken with that these partnerships 
are a two-way benefit, they feed in and can pull from the projects. I'd love to 
learn more about the Europeana project, that would inform my conversations with 
other orgs.


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

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

To: Qgil, SVentura
Cc: Hjfocs, Jane023, I9606, Scott_WUaS, Abraham, Susannaanas, Multichill, 
Smalyshev, Romaine, Wittylama, Sadads, Yair_rand, Lydia_Pintscher, SVentura, 
Qgil, Aklapper, Wikidata-bugs, aude, Gryllida, Rfarrand, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T103908: Ensure WDQS service can not be DoSed by a single query

2015-07-02 Thread Smalyshev
Smalyshev added a project: Discovery-Wikidata-Query-Service-Sprint.

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

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

To: Smalyshev
Cc: Ricordisamoa, Manybubbles, Aklapper, Smalyshev, jkroll, Wikidata-bugs, 
Jdouglas, aude, JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T44686: Special:ItemDisambiguation should support case-insensitive matches.

2015-07-02 Thread gerritbot
gerritbot added a comment.

Change 221583 merged by jenkins-bot:
Make Special:ItemDisambiguation match aliases.

https://gerrit.wikimedia.org/r/221583


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

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

To: gerritbot
Cc: gerritbot, Addshore, Wikidata-bugs, Denny, Lydia_Pintscher, Stryn, daniel, 
aude, 01tonythomas, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T45962: Special:ItemDisambiguation should include aliases in search, not just labels.

2015-07-02 Thread gerritbot
gerritbot added a comment.

Change 221583 merged by jenkins-bot:
Make Special:ItemDisambiguation match aliases.

https://gerrit.wikimedia.org/r/221583


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

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

To: gerritbot
Cc: gerritbot, Wikidata-bugs, matej_suchanek, Lucie, Lydia_Pintscher, daniel, 
aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T102312: Figure out monitoring/alerting setup for labs

2015-07-02 Thread Smalyshev
Smalyshev moved this task to Backlog on the 
Discovery-Wikidata-Query-Service-Sprint workboard.

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

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

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

To: Smalyshev
Cc: Deskana, yuvipanda, Aklapper, Smalyshev, jkroll, Wikidata-bugs, Jdouglas, 
aude, Manybubbles, JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T59714: option for Special:ItemDisambiguation to redirect straight to an item if only 1 is found

2015-07-02 Thread Addshore
Addshore added a comment.

Looking back at this 6 months on I feel like this should be in the form of an 
I'm feeling lucky button


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

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

To: Addshore
Cc: Wikidata-bugs, Addshore, Lydia_Pintscher, daniel, aude, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T44686: Special:ItemDisambiguation should support case-insensitive matches.

2015-07-02 Thread gerritbot
gerritbot added a subscriber: gerritbot.
gerritbot added a comment.

Change 221583 had a related patch set uploaded (by Addshore):
Make Special:ItemDisambiguation match aliases.

https://gerrit.wikimedia.org/r/221583


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

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

To: gerritbot
Cc: gerritbot, Addshore, Wikidata-bugs, Denny, Lydia_Pintscher, Stryn, daniel, 
aude, 01tonythomas, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T44686: Special:ItemDisambiguation should support case-insensitive matches.

2015-07-02 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: gerritbot
Cc: gerritbot, Addshore, Wikidata-bugs, Denny, Lydia_Pintscher, Stryn, daniel, 
aude, 01tonythomas, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T102312: Figure out monitoring/alerting setup for labs

2015-07-02 Thread Deskana
Deskana added a subscriber: Deskana.
Deskana added a comment.

@smalyshev Let's not bother with this and instead focus on getting WDQS into 
production instead.


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

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

To: Deskana
Cc: Deskana, yuvipanda, Aklapper, Smalyshev, jkroll, Wikidata-bugs, Jdouglas, 
aude, Manybubbles, JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T44686: Special:ItemDisambiguation should support case-insensitive matches.

2015-07-02 Thread Addshore
Addshore added a project: Easy.
Addshore set Security to None.

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

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

To: Addshore
Cc: Addshore, Wikidata-bugs, Denny, Lydia_Pintscher, Stryn, daniel, aude, 
01tonythomas, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T44686: Special:ItemDisambiguation should support case-insensitive matches.

2015-07-02 Thread Addshore
Addshore added a subscriber: Addshore.
Addshore added a comment.

This would now be super easy, infact it is probably 1 line of code (an option) 
and then tests


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

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

To: Addshore
Cc: Addshore, Wikidata-bugs, Denny, Lydia_Pintscher, Stryn, daniel, aude, 
Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T88580: Red links in the article as entry points for translation

2015-07-02 Thread Amire80
Amire80 moved this task to CX6 on the MediaWiki-extensions-ContentTranslation 
workboard.

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

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

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

To: Amire80
Cc: Ricordisamoa, Liuxinyu970226, Lydia_Pintscher, Pginer-WMF, Aklapper, 
Nirzar, santhosh, Arrbee, Amire80, Wikidata-bugs, aude, Jsahleen, KartikMistry, 
Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T103911: Figure out monitoring/alerting setup for WDQS production

2015-07-02 Thread Deskana
Deskana added a project: Discovery-Wikidata-Query-Service-Sprint.

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

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

To: Deskana
Cc: Joe, Smalyshev, Aklapper, Manybubbles, jkroll, Wikidata-bugs, Jdouglas, 
aude, JanZerebecki, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T86561: Wikidata Query Service hardware

2015-07-02 Thread Deskana
Deskana added a project: Discovery-Wikidata-Query-Service-Sprint.
Herald added a subscriber: Matanya.
Herald added a project: Discovery.

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

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

To: Joe, Deskana
Cc: Matanya, Eloquence, faidon, mark, JanZerebecki, Aklapper, GWicke, Joe, 
Smalyshev, Manybubbles, jkroll, Wikidata-bugs, Jdouglas, RobH, aude, 
fgiunchedi, Dzahn, chasemp, Malyacko, Krenair, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T98832: Setup unit tests for PageBanner extension

2015-07-02 Thread gerritbot
gerritbot added a comment.

Change 220963 abandoned by Sumit:
WikidataPageBanner add getBannerUrl test

Reason:
wfFindFile is making this test impossible and this block does not render the 
necessity to test it compulsorily

https://gerrit.wikimedia.org/r/220963


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

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

To: Sumit, gerritbot
Cc: gerritbot, Sumit, Jdlrobson, Nicolas_Raoul, Bene, Aklapper, Wikidata-bugs, 
aude, Lydia_Pintscher, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T104609: Warning: Encountered an entity without an EntityId

2015-07-02 Thread demon
demon created this task.
demon added a subscriber: demon.
demon added projects: Wikimedia-log-errors, Wikidata.
demon moved this task to Triaged on the Wikimedia-log-errors workboard.
Herald added a subscriber: Aklapper.

TASK DESCRIPTION
  Spotted in production:
  ```
  43 Warning: Encountered an Entity without EntityId in 
EntityParserOutputGenerator. [Called from 
Wikibase\EntityParserOutputGenerator::getParserOutput in 
/srv/mediawiki/php-1.26wmf12/extensions/Wikida
  ta/extensions/Wikibase/repo/includes/EntityParserOutputGenerator.php at line 
206] in /srv/mediawiki/php-1.26wmf12/includes/debug/MWDebug.php on line 300
  ```

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

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

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

To: demon
Cc: demon, Aklapper, Wikidata-bugs, aude, Krenair, greg, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T100123: API code 'readonly' not handled

2015-07-02 Thread Multichill
Multichill added a comment.

  [21:51:25] multichill In https://phabricator.wikimedia.org/T100123 the last 
question. You might be able to answer that
  [21:51:31] anomie looks
  [21:51:35] multichill How long should we back off when we hit read-only?
  [21:55:18] anomie multichill: For the particular situation there, The 
database has been automatically locked while the slave database servers catch 
up to the master, you're basically waiting for maxlag to go back down. When 
using the actual maxlag parameter, the recommendation is 5 seconds.
  [21:56:14] multichill So just the normal 5, 10, 20, 40 etc routine


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

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

To: Multichill
Cc: Multichill, pywikibot-bugs-list, jayvdb, Aklapper, Wikidata-bugs, aude, 
Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T103429: Investigation: Parser save hook handler does master writes in GETs

2015-07-02 Thread gerritbot
gerritbot added a subscriber: gerritbot.
gerritbot added a comment.

Change 222463 had a related patch set uploaded (by Daniel Kinzler):
On page views, update usage tracking via the job queue.

https://gerrit.wikimedia.org/r/222463


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

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

To: gerritbot
Cc: gerritbot, hoo, Addshore, Tobi_WMDE_SW, daniel, Lydia_Pintscher, Aklapper, 
aaron, Wikidata-bugs, aude, GWicke, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T103429: Investigation: Parser save hook handler does master writes in GETs

2015-07-02 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: gerritbot
Cc: gerritbot, hoo, Addshore, Tobi_WMDE_SW, daniel, Lydia_Pintscher, Aklapper, 
aaron, Wikidata-bugs, aude, GWicke, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T98307: Deploy usage tracking and arbitrary access to commonswiki

2015-07-02 Thread gpaumier
gpaumier removed a project: user-notice.
gpaumier set Security to None.

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

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

To: gpaumier
Cc: Steinsplitter, El_Grafo, SamB, Lydia_Pintscher, greg, aude, Bugreporter, 
Multichill, Aklapper, Ricordisamoa, JeanFred, Jarekt, ValterVB, Elitre, Jheald, 
Daniel_Mietchen, Nemo_bis, Liuxinyu970226, Wikidata-bugs, gpaumier, Malyacko, 
P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T98286: Deploy usage tracking and arbitrary access to zhwiki

2015-07-02 Thread gpaumier
gpaumier removed a project: user-notice.

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

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

To: gpaumier
Cc: Liuxinyu970226, Ricordisamoa, Aklapper, aude, liangent, Bugreporter, 
Wikidata-bugs, gpaumier, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T100787: Deploy arbitrary access to s3 wikis (part 2, maiwiki - zuwiki) + dewiki + ruwiki

2015-07-02 Thread gpaumier
gpaumier moved this task to Not ready to announce on the user-notice workboard.

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

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

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

To: aude, gpaumier
Cc: Liuxinyu970226, aude, Aklapper, Johan, Wikidata-bugs, gpaumier, Jay8g, 
Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T94713: Beta: A user is able to see wikidata descriptions in mobile web search results (in order to learn better select from results)

2015-07-02 Thread gpaumier
gpaumier moved this task to Announce in next Tech/News on the user-notice 
workboard.

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

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

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

To: bmansurov, gpaumier
Cc: Moushira, greg, Jhernandez, phuedx, Jdlrobson, dr0ptp4kt, gerritbot, 
Lydia_Pintscher, Florian, JKatzWMF, Aklapper, Johan, Wikidata-bugs, aude, 
gpaumier, Jay8g, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T103429: Investigation: Parser save hook handler does master writes in GETs

2015-07-02 Thread daniel
daniel added a comment.

The patch above makes the update always go via the job queue. Not sure whether 
that is the Right Thing.


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

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

To: daniel
Cc: gerritbot, hoo, Addshore, Tobi_WMDE_SW, daniel, Lydia_Pintscher, Aklapper, 
aaron, Wikidata-bugs, aude, GWicke, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T100788: Deploy arbitrary access to enwiki + s2 wikis

2015-07-02 Thread gpaumier
gpaumier moved this task to Not ready to announce on the user-notice workboard.

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

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

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

To: aude, gpaumier
Cc: Susannaanas, Stryn, He7d3r, Liuxinyu970226, Mvolz, Aklapper, aude, Johan, 
Wikidata-bugs, gpaumier, Jay8g, Malyacko, P.Copp



___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


  1   2   >