[Wikidata-bugs] [Maniphest] [Changed Project Column] T196882: Create a code abstraction for "display entity link" use-case

2018-08-15 Thread Aleksey_WMDE
Aleksey_WMDE moved this task from Peer Review to Doing on the Wikidata-Ugly-Cat-Trailblaze (wb_terms trail blazing) board.Aleksey_WMDE added a comment.
Found the problem with current solution.

lib/includes/Store/Sql/WikiPageEntityRevisionLookup.php:142

if ( $row && $row->page_latest && !$row->page_is_redirect ) {
	return (int)$row->page_latest;
}

return false;

That means that we don't get correct revision ID if the target entity is redirect.
That leads to invalid cache record (or Exception being thrown if the patch 452931 is merged) and essentially means that the code is not production ready.

It still can be deployed as soon as this code is disabled using configuration value.TASK DETAILhttps://phabricator.wikimedia.org/T196882WORKBOARDhttps://phabricator.wikimedia.org/project/board/3407/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Aklapper, gerritbot, Aleksey_WMDE, WMDE-leszek, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, 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] T201453: Flaky test case in SimpleCacheWithBagOStuffTest

2018-08-08 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
Patch is merged - should be fixed. 
I think we should wait, lets say, for a week and if nothing pops up close the ticket.TASK DETAILhttps://phabricator.wikimedia.org/T201453EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: gerritbot, Addshore, WMDE-leszek, Aleksey_WMDE, Krinkle, Aklapper, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, Volker_E, Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, Jay8g, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T201453: Flaky test case in SimpleCacheWithBagOStuffTest

2018-08-08 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
Both solutions don't work for test when 0 is given as TTL. Special case is needed.TASK DETAILhttps://phabricator.wikimedia.org/T201453EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Addshore, WMDE-leszek, Aleksey_WMDE, Krinkle, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Volker_E, Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, Jay8g, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T201453: Flaky test case in SimpleCacheWithBagOStuffTest

2018-08-08 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
Solution 2:
Add 1 to the result of time() and $date->getTimestamp(). In this case effective TTL will always be up to 1 second greater than the given one. In production it will not matter; Tests already sleep for 2 seconds when TTL is 1 second, which is always enough.TASK DETAILhttps://phabricator.wikimedia.org/T201453EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Addshore, WMDE-leszek, Aleksey_WMDE, Krinkle, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Volker_E, Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, Jay8g, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T201453: Flaky test case in SimpleCacheWithBagOStuffTest

2018-08-08 Thread Aleksey_WMDE
Aleksey_WMDE claimed this task.
TASK DETAILhttps://phabricator.wikimedia.org/T201453EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Addshore, WMDE-leszek, Aleksey_WMDE, Krinkle, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Volker_E, Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, Jay8g, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T201453: Flaky test case in SimpleCacheWithBagOStuffTest

2018-08-08 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
The failure happened in code where we store a value with TTL 1s and next line try to get it back. The value was considered expired, so null was returned.

The failure, probably, happened because we use time() and $date->getTimestamp() which return integer values. So if we call SimpleCacheWithBagOStuff::set() when real time is 00:00:01., time() will return  00:00:01, then we add 1 second to calculate the expire time and in the end effective TTL will be 0.0001 second - which is wrong.

Solution 1:
Use round(microtime(true)) instead of time(). Then, effective TTL will be at least 0.5 seconds.TASK DETAILhttps://phabricator.wikimedia.org/T201453EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Addshore, WMDE-leszek, Aleksey_WMDE, Krinkle, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Volker_E, Wikidata-bugs, aude, Jdforrester-WMF, Mbch331, Jay8g, Krenair___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T196883: Compute an estimated label cache space usage for Items

2018-07-11 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
So, 0.6GB of raw data ish?

More like 6GB+TASK DETAILhttps://phabricator.wikimedia.org/T196883EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Aklapper, gerritbot, Addshore, Aleksey_WMDE, WMDE-leszek, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, 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] T198868: Do not get entity data from wb_terms when "prefetching" data for displaying on pages

2018-07-10 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
Apparently, the "prefetching"/buffering is done for LabelDescriptionLookup services, so that when the label/description of particular item/property is to be shown multiple times (e.g. the item appears several times on a page), the label/description is only fetch ones from the storage, and then kept in a in-memory buffer until the end of request.

AFAIK, the main reason it exists is to load all the labels for the properties to be displayed on a page in a single query. I've found code doing it for the client, but don't see this for the entity page (I remember it was there, but things have probably changed).TASK DETAILhttps://phabricator.wikimedia.org/T198868EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Aleksey_WMDE, WMDE-leszek, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 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] T196883: Compute an estimated label cache space usage for Items

2018-06-18 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
For a not full cluster you would expect to see no evictions.

Depends on how you use it. If you let memcached remove items on his own when they expire (or if they never expire, like revision content) and create new items faster than the old expire then it is normal to see evictions.

BTW: TTL_INDEFINITE is the default ttl in WANObjectCache::setTASK DETAILhttps://phabricator.wikimedia.org/T196883EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: gerritbot, Addshore, Aleksey_WMDE, WMDE-leszek, Aklapper, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Lahi, Gq86, Baloch007, Darkminds3113, Bsandipan, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, LawExplorer, Lewizho99, Maathavan, 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] T173744: [Story] Editable Representations of a Form (presistent)

2017-09-22 Thread Aleksey_WMDE
Aleksey_WMDE removed a subtask: T176473: [Task] Split Lexeme serializer into ExternalSerializer and StorageSerializer.
TASK DETAILhttps://phabricator.wikimedia.org/T173744EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Addshore, Jonas, Jan_Dittrich, Liuxinyu970226, Aklapper, Lydia_Pintscher, daniel, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T176473: [Task] Split Lexeme serializer into ExternalSerializer and StorageSerializer

2017-09-22 Thread Aleksey_WMDE
Aleksey_WMDE edited parent tasks, added: T173742: [Story] Editable Grammatical Feature of a Form (presistent); removed: T173744: [Story] Editable Representations of a Form (presistent).
TASK DETAILhttps://phabricator.wikimedia.org/T176473EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: gerritbot, daniel, Lydia_Pintscher, Aklapper, Liuxinyu970226, Jan_Dittrich, Jonas, Addshore, Aleksey_WMDE, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T173742: [Story] Editable Grammatical Feature of a Form (presistent)

2017-09-22 Thread Aleksey_WMDE
Aleksey_WMDE added a subtask: T176473: [Task] Split Lexeme serializer into ExternalSerializer and StorageSerializer.
TASK DETAILhttps://phabricator.wikimedia.org/T173742EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: gerritbot, Jonas, Aklapper, daniel, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T176473: [Task] Split Lexeme serializer into ExternalSerializer and StorageSerializer

2017-09-22 Thread Aleksey_WMDE
Aleksey_WMDE created this task.Aleksey_WMDE added projects: Wikidata, Lexicographical data, Story, Wikidata-Sprint.
TASK DESCRIPTIONCurrently, we have only one serializer that is used everywhere.

We need to have a distinction between storage layer serialization and public interface serialization because we don't want to expose nextFromId counter stored in Lexeme to the users but need to store it in the DB.TASK DETAILhttps://phabricator.wikimedia.org/T176473EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: daniel, Lydia_Pintscher, Aklapper, Liuxinyu970226, Jan_Dittrich, Jonas, Addshore, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Block] T173744: [Story] Editable Representations of a Form (presistent)

2017-09-22 Thread Aleksey_WMDE
Aleksey_WMDE created subtask T176473: [Task] Split Lexeme serializer into ExternalSerializer and StorageSerializer.
TASK DETAILhttps://phabricator.wikimedia.org/T173744EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Addshore, Jonas, Jan_Dittrich, Liuxinyu970226, Aklapper, Lydia_Pintscher, daniel, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T173742: [Story] Editable Grammatical Feature of a Form (presistent)

2017-09-07 Thread Aleksey_WMDE
Aleksey_WMDE claimed this task.
TASK DETAILhttps://phabricator.wikimedia.org/T173742EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Jonas, Aklapper, daniel, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T172192: Decide on forms/senses creation via API

2017-08-02 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
We also can have this knowledge in only in the presentation layer (HTML/API), but not in the object model and serialization.TASK DETAILhttps://phabricator.wikimedia.org/T172192EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Jakob_WMDE, Lydia_Pintscher, thiemowmde, Jonas, WMDE-leszek, Aklapper, daniel, Aleksey_WMDE, PokestarFan, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T172192: Decide on forms/senses creation via API

2017-08-02 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
... That's actually part of the data model specification.

As I understood it is not set in stone, or is it?TASK DETAILhttps://phabricator.wikimedia.org/T172192EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Jakob_WMDE, Lydia_Pintscher, thiemowmde, Jonas, WMDE-leszek, Aklapper, daniel, Aleksey_WMDE, PokestarFan, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T167432: Run Wikibase daily browser tests on Jenkins

2017-08-02 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
Ok, thank you.TASK DETAILhttps://phabricator.wikimedia.org/T167432EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zeljkofilipin, Aleksey_WMDECc: gerritbot, PokestarFan, Tobi_WMDE_SW, Jonas, thiemowmde, WMDE-leszek, zeljkofilipin, hashar, Aleksey_WMDE, Aklapper, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Liudvikas, Izno, Luke081515, thcipriani, Wikidata-bugs, aude, Mbch331, Jay8g, greg___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T172192: Decide on forms/senses creation via API

2017-08-01 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
Points to consider:


Request structure is strict and can be easily converted to class/struct in statically typed programming languages
JSON Request (if any is present) structure can be described with json-schema (for better documentation and easier validation)
IDs of forms and senses are auto-incremented. ID counters exist per lexeme: one for forms, one for senses
Conflict resolution if two persons try to create form/sense in the same time
User should not be able to create form/sense with ID that he/she provided
Form/Sense class should not reference Lexeme in any way (neither on object level, nor having LexemeId as a part of it's ID). I can see how this can improve maintainability
TASK DETAILhttps://phabricator.wikimedia.org/T172192EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Jakob_WMDE, Lydia_Pintscher, thiemowmde, Jonas, WMDE-leszek, Aklapper, daniel, Aleksey_WMDE, PokestarFan, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T172192: Decide on forms/senses creation via API

2017-08-01 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
It would be nice if everyone wrote points that he/she thinks are important to consider to make a decision.TASK DETAILhttps://phabricator.wikimedia.org/T172192EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Jakob_WMDE, Lydia_Pintscher, thiemowmde, Jonas, WMDE-leszek, Aklapper, daniel, Aleksey_WMDE, PokestarFan, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T172192: Decide on forms/senses creation via API

2017-08-01 Thread Aleksey_WMDE
Aleksey_WMDE created this task.Aleksey_WMDE added projects: Wikidata, Wikidata-Sprint, Lexicographical data.Herald added subscribers: PokestarFan, Aklapper.
TASK DESCRIPTIONWe need an ability to create new forms and senses for lexemes via API.

We need to make a decision on how do we want to do it.
Possible options:


Create those using wbeditentity
Create separate API modules for creating forms and senses
... add your idea here ...


Note: Decision should not be considered final, but should allow us to understand path we want to take (which also might change during the implementation phase)TASK DETAILhttps://phabricator.wikimedia.org/T172192EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Jakob_WMDE, Lydia_Pintscher, thiemowmde, Jonas, WMDE-leszek, Aklapper, daniel, Aleksey_WMDE, PokestarFan, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T171571: Run WikibaseLexeme tests without browser and mediawiki dependencies

2017-08-01 Thread Aleksey_WMDE
Aleksey_WMDE claimed this task.
TASK DETAILhttps://phabricator.wikimedia.org/T171571EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Jonas, Aleksey_WMDE, christophneuroth, Aklapper, GoranSMilovanovic, QZanden, 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] T167432: Run Wikibase daily browser tests on Jenkins

2017-08-01 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
Can I ask what the status is?TASK DETAILhttps://phabricator.wikimedia.org/T167432EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zeljkofilipin, Aleksey_WMDECc: gerritbot, PokestarFan, Tobi_WMDE_SW, Jonas, thiemowmde, WMDE-leszek, zeljkofilipin, hashar, Aleksey_WMDE, Aklapper, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Liudvikas, Izno, Luke081515, thcipriani, Wikidata-bugs, aude, Mbch331, Jay8g, greg___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T171595: Improve main page of demo system

2017-07-31 Thread Aleksey_WMDE
Aleksey_WMDE claimed this task.Aleksey_WMDE moved this task from Backlog to Done on the Wikidata-Sprint board.
TASK DETAILhttps://phabricator.wikimedia.org/T171595WORKBOARDhttps://phabricator.wikimedia.org/project/board/2351/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Jakob_WMDE, daniel, WMDE-leszek, Jonas, thiemowmde, Aklapper, gerritbot, PokestarFan, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T171571: Run WikibaseLexeme tests without browser and mediawiki dependencies

2017-07-31 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
What left is removing dependency on globals in the GlossWidget.

Also, migration of other VueJs widgets' testsTASK DETAILhttps://phabricator.wikimedia.org/T171571EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Jonas, Aleksey_WMDE, christophneuroth, Aklapper, GoranSMilovanovic, QZanden, 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] T151577: Do not call Entity::setId() with an int parameter

2017-07-27 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
I suggest to mark this ticket as done, as soon as we don't use setId(int) in Wikibase* repositories and make release later when we have more changes.TASK DETAILhttps://phabricator.wikimedia.org/T151577EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Ladsgroup, Aleksey_WMDECc: Ladsgroup, gerritbot, PokestarFan, Aleksey_WMDE, aude, Lydia_Pintscher, WMDE-leszek, thiemowmde, Aklapper, daniel, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, Mbch331, Jay8g___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T165576: [Story] Multi-variant Lemma

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
I think this ticket should be closed. Shouldn't it?TASK DETAILhttps://phabricator.wikimedia.org/T165576EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Aleksey_WMDE, PokestarFan, Aklapper, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T165587: [Task] polish CSS of Lexeme page

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
Can we close this task?TASK DETAILhttps://phabricator.wikimedia.org/T165587EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Aleksey_WMDE, PokestarFan, Aklapper, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T165580: [Story] New datatype for referencing Senses

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed this task as "Resolved".Aleksey_WMDE moved this task from Proposed to Done on the Wikidata-Sprint board.Aleksey_WMDE claimed this task.
TASK DETAILhttps://phabricator.wikimedia.org/T165580WORKBOARDhttps://phabricator.wikimedia.org/project/board/2351/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Jakob_WMDE, Ladsgroup, Aleksey_WMDE, thiemowmde, WMDE-leszek, Jonas, Aklapper, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T165588: tasks for lexicographical data support until Wikimania 2017

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T165580: [Story] New datatype for referencing Senses as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T165588EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Jakob_WMDE, daniel, WMDE-leszek, Aleksey_WMDE, Jonas, thiemowmde, Aklapper, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T91505: [Epic] Adding new datatypes to Wikidata (tracking)

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T165580: [Story] New datatype for referencing Senses as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T91505EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Swpb, ArthurPSmith, gerritbot, Smalyshev, Shrutika719, MGChecker, Sannita, Ricordisamoa, Liuxinyu970226, Rits, Physikerwelt, Lydia_Pintscher, Aklapper, GoranSMilovanovic, QZanden, srishakatux, Pahadiahimanshu, Manrajsinghgrover, Keer25, 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] [Unblock] T168263: WikibaseLexeme functional baseline

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T165580: [Story] New datatype for referencing Senses as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T168263EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Lea_Lacroix_WMDE, Lydia_Pintscher, Aklapper, daniel, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T165588: tasks for lexicographical data support until Wikimania 2017

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T165579: [Story] New datatype for referencing Forms as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T165588EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Jakob_WMDE, daniel, WMDE-leszek, Aleksey_WMDE, Jonas, thiemowmde, Aklapper, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T168263: WikibaseLexeme functional baseline

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T165579: [Story] New datatype for referencing Forms as "Resolved".Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T168263EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Lea_Lacroix_WMDE, Lydia_Pintscher, Aklapper, daniel, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T165579: [Story] New datatype for referencing Forms

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed this task as "Resolved".Aleksey_WMDE moved this task from Proposed to Done on the Wikidata-Sprint board.Aleksey_WMDE claimed this task.
TASK DETAILhttps://phabricator.wikimedia.org/T165579WORKBOARDhttps://phabricator.wikimedia.org/project/board/2351/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Jonas, WMDE-leszek, thiemowmde, Aklapper, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T91505: [Epic] Adding new datatypes to Wikidata (tracking)

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T165579: [Story] New datatype for referencing Forms as "Resolved".Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T91505EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Swpb, ArthurPSmith, gerritbot, Smalyshev, Shrutika719, MGChecker, Sannita, Ricordisamoa, Liuxinyu970226, Rits, Physikerwelt, Lydia_Pintscher, Aklapper, GoranSMilovanovic, QZanden, srishakatux, Pahadiahimanshu, Manrajsinghgrover, Keer25, 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] T169716: [Story] Referencing Forms and Senses

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed this task as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T169716EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Aklapper, Jonas, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T165580: [Story] New datatype for referencing Senses

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T169716: [Story] Referencing Forms and Senses as "Resolved".Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T165580EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Jakob_WMDE, Ladsgroup, Aleksey_WMDE, thiemowmde, WMDE-leszek, Jonas, Aklapper, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T165579: [Story] New datatype for referencing Forms

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T169716: [Story] Referencing Forms and Senses as "Resolved".Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T165579EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Jonas, WMDE-leszek, thiemowmde, Aklapper, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T169639: Make it possible to add Senses to the Lexeme

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed this task as "Resolved".Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T169639EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Jakob_WMDE, gerritbot, Lydia_Pintscher, daniel, Aklapper, Jonas, thiemowmde, WMDE-leszek, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T160053: [Epic] support for Senses

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T169639: Make it possible to add Senses to the Lexeme as "Resolved".Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T160053EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Liuxinyu970226, thiemowmde, WMDE-leszek, Jonas, Jan_Dittrich, Aklapper, daniel, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T170279: Query editor toolbar

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.Herald added a subscriber: PokestarFan.
Is this task resolved?TASK DETAILhttps://phabricator.wikimedia.org/T170279EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jonas, Aleksey_WMDECc: Aleksey_WMDE, PokestarFan, Lydia_Pintscher, Smalyshev, Daniel_Mietchen, Fadirra, Pigsonthewing, Astinson, Lea_Lacroix_WMDE, Jonas, Aklapper, GoranSMilovanovic, QZanden, EBjune, merbst, Avner, debt, Gehel, Liridon, FloNight, Xmlizer, Izno, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T168036: rebuildTermSqlIndex.php causing beta-update-databases-eqiad to timeout and abort

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T168708: Populating full entity column in wb_terms table when running MW update.php should be fast and run only once as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T168036EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: aude, Aleksey_WMDECc: PokestarFan, WMDE-leszek, Stashbot, Aklapper, Reedy, GoranSMilovanovic, QZanden, TerraCodes, Izno, Luke081515, Wikidata-bugs, aude, Mbch331, Jay8g, Krenair, hashar, greg___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T159851: Add a column for full entity ID to wb_terms table

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T168708: Populating full entity column in wb_terms table when running MW update.php should be fast and run only once as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T159851EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Ladsgroup, aude, gerritbot, Aklapper, daniel, Lydia_Pintscher, WMDE-leszek, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T168708: Populating full entity column in wb_terms table when running MW update.php should be fast and run only once

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed this task as "Resolved".Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T168708EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: WMDE-leszek, Aleksey_WMDECc: PokestarFan, aude, gerritbot, Aklapper, Lydia_Pintscher, daniel, WMDE-leszek, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T165588: tasks for lexicographical data support until Wikimania 2017

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T165575: [Story] Multi-variant Representations as "Resolved".Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T165588EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Jakob_WMDE, daniel, WMDE-leszek, Aleksey_WMDE, Jonas, thiemowmde, Aklapper, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T165575: [Story] Multi-variant Representations

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed this task as "Resolved".Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T165575EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jakob_WMDE, Aleksey_WMDECc: PokestarFan, Liuxinyu970226, gerritbot, WMDE-leszek, Aklapper, Lydia_Pintscher, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T160522: [Story] List of Forms

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T165575: [Story] Multi-variant Representations as "Resolved".Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T160522EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Lydia_Pintscher, Aleksey_WMDECc: PokestarFan, WMDE-leszek, gerritbot, Jan_Dittrich, Aklapper, Jonas, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T165587: [Task] polish CSS of Lexeme page

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T170287: Make hierarchy more clear on Lexeme page  as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T165587EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Aklapper, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T170287: Make hierarchy more clear on Lexeme page

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed this task as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T170287EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Aleksey_WMDE, Ladsgroup, Lydia_Pintscher, gerritbot, James_Budday, Aklapper, Jonas, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T87108: [edit] links should not print in Wikidata

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed this task as "Resolved".Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T87108EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Ladsgroup, Aleksey_WMDECc: PokestarFan, TerraCodes, TheDJ, gerritbot, Zppix, Lydia_Pintscher, Alaa.Mustafa87, Ricordisamoa, daniel, adrianheine, thiemowmde, Snaterlicious, Aklapper, FriedhelmW, Lordiis, GoranSMilovanovic, Adik2382, Soteriaspace, Th3d3v1ls, JakeTheDeveloper, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Abbe98, MuhammadShuaib, 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] [Unassigned] T171589: Remove the dummy data for new lexemes

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE removed Aleksey_WMDE as the assignee of this task.
TASK DETAILhttps://phabricator.wikimedia.org/T171589EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Jakob_WMDE, daniel, WMDE-leszek, Jonas, thiemowmde, Aklapper, gerritbot, PokestarFan, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unassigned] T168373: polish demo data

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE removed Aleksey_WMDE as the assignee of this task.
TASK DETAILhttps://phabricator.wikimedia.org/T168373EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, gerritbot, Aklapper, thiemowmde, Jonas, Aleksey_WMDE, WMDE-leszek, daniel, Jakob_WMDE, Lydia_Pintscher, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unassigned] T171590: Fix the statement indent on senses

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE removed Aleksey_WMDE as the assignee of this task.
TASK DETAILhttps://phabricator.wikimedia.org/T171590EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Jakob_WMDE, daniel, WMDE-leszek, Jonas, thiemowmde, Aklapper, gerritbot, PokestarFan, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unassigned] T171594: Setup logo on demo system

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE removed Aleksey_WMDE as the assignee of this task.
TASK DETAILhttps://phabricator.wikimedia.org/T171594EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Jakob_WMDE, daniel, WMDE-leszek, Jonas, thiemowmde, Aklapper, gerritbot, PokestarFan, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unassigned] T171593: Delete old lexemes on demo system

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE removed Aleksey_WMDE as the assignee of this task.
TASK DETAILhttps://phabricator.wikimedia.org/T171593EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Jakob_WMDE, daniel, WMDE-leszek, Jonas, thiemowmde, Aklapper, gerritbot, PokestarFan, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unassigned] T171595: Improve main page of demo system

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE removed Aleksey_WMDE as the assignee of this task.
TASK DETAILhttps://phabricator.wikimedia.org/T171595EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Jakob_WMDE, daniel, WMDE-leszek, Jonas, thiemowmde, Aklapper, gerritbot, PokestarFan, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Block] T168373: polish demo data

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE created subtask T171595: Improve main page of demo system.
TASK DETAILhttps://phabricator.wikimedia.org/T168373EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, gerritbot, Aklapper, thiemowmde, Jonas, Aleksey_WMDE, WMDE-leszek, daniel, Jakob_WMDE, Lydia_Pintscher, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T171595: Improve main page of demo system

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE created this task.Aleksey_WMDE added projects: Lexicographical data, Wikidata, Wikidata-Sprint, Patch-For-Review.Herald removed a project: Patch-For-Review.
TASK DESCRIPTIONA person who gets to the page should be able to try out the main page as good as possible even if the person is external and has no clue what goes on. This makes us showing the demo more robust.

Some of improvements:


Links to example pages should have descriptive texts instead of "modeling 1", "modeling 2", etc.
Link to Data Model should present
Add more here...


Be open-minded and ask colleagues for advises.TASK DETAILhttps://phabricator.wikimedia.org/T171595EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Jakob_WMDE, daniel, WMDE-leszek, Jonas, thiemowmde, Aklapper, gerritbot, PokestarFan, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Block] T168373: polish demo data

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE created subtask T171594: Setup logo on demo system.
TASK DETAILhttps://phabricator.wikimedia.org/T168373EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, gerritbot, Aklapper, thiemowmde, Jonas, Aleksey_WMDE, WMDE-leszek, daniel, Jakob_WMDE, Lydia_Pintscher, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T171594: Setup logo on demo system

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE created this task.Aleksey_WMDE added projects: Lexicographical data, Wikidata, Wikidata-Sprint, Patch-For-Review.Herald removed a project: Patch-For-Review.
TASK DESCRIPTIONDemo system has no logo.
Set up the logo. Use logo of wikidata sprint boardTASK DETAILhttps://phabricator.wikimedia.org/T171594EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Jakob_WMDE, daniel, WMDE-leszek, Jonas, thiemowmde, Aklapper, gerritbot, PokestarFan, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T171593: Delete old lexemes on demo system

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE created this task.Aleksey_WMDE added projects: Lexicographical data, Wikidata, Wikidata-Sprint, Patch-For-Review.Herald removed a project: Patch-For-Review.
TASK DESCRIPTIONThere are some old lexemes on test system.
Some of those even throw an exception when displayed (due to old serialization format), others are just not needed.

List of existing lexemes should be reviewed and ones that not needed for the demo should be removed.TASK DETAILhttps://phabricator.wikimedia.org/T171593EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Jakob_WMDE, daniel, WMDE-leszek, Jonas, thiemowmde, Aklapper, gerritbot, PokestarFan, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Block] T168373: polish demo data

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE created subtask T171593: Delete old lexemes on demo system.
TASK DETAILhttps://phabricator.wikimedia.org/T168373EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, gerritbot, Aklapper, thiemowmde, Jonas, Aleksey_WMDE, WMDE-leszek, daniel, Jakob_WMDE, Lydia_Pintscher, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T171590: Fix the statement indent on senses

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE created this task.Aleksey_WMDE added projects: Lexicographical data, Wikidata, Wikidata-Sprint, Patch-For-Review.Herald removed a project: Patch-For-Review.
TASK DESCRIPTIONCurrently, statements on senses has very big indent.
Indent should be the same as in forms section.TASK DETAILhttps://phabricator.wikimedia.org/T171590EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Jakob_WMDE, daniel, WMDE-leszek, Jonas, thiemowmde, Aklapper, gerritbot, PokestarFan, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Block] T168373: polish demo data

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE created subtask T171590: Fix the statement indent on senses.
TASK DETAILhttps://phabricator.wikimedia.org/T168373EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, gerritbot, Aklapper, thiemowmde, Jonas, Aleksey_WMDE, WMDE-leszek, daniel, Jakob_WMDE, Lydia_Pintscher, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Retitled] T171589: Remove the test data for new lexemes

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE renamed this task from "Remoe the test data for new lexemes" to "Remove the test data for new lexemes".
TASK DETAILhttps://phabricator.wikimedia.org/T171589EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Jakob_WMDE, daniel, WMDE-leszek, Jonas, thiemowmde, Aklapper, gerritbot, PokestarFan, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Retitled] T171589: Remove the dummy data for new lexemes

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE renamed this task from "Remove the test data for new lexemes" to "Remove the dummy data for new lexemes".
TASK DETAILhttps://phabricator.wikimedia.org/T171589EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Jakob_WMDE, daniel, WMDE-leszek, Jonas, thiemowmde, Aklapper, gerritbot, PokestarFan, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T171589: Remoe the test data for new lexemes

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE created this task.Aleksey_WMDE added projects: Lexicographical data, Wikidata, Wikidata-Sprint, Patch-For-Review.Herald removed a project: Patch-For-Review.
TASK DESCRIPTIONCurrently when you create a Lexeme, it will already contain dummy forms and senses.

Those should be gone.

Note: some browser tests will fail after those are removed, so these tests should be skipped during the CI run.TASK DETAILhttps://phabricator.wikimedia.org/T171589EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Jakob_WMDE, daniel, WMDE-leszek, Jonas, thiemowmde, Aklapper, gerritbot, PokestarFan, Aleksey_WMDE, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Block] T168373: polish demo data

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE created subtask T171589: Remoe the test data for new lexemes.
TASK DETAILhttps://phabricator.wikimedia.org/T168373EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, gerritbot, Aklapper, thiemowmde, Jonas, Aleksey_WMDE, WMDE-leszek, daniel, Jakob_WMDE, Lydia_Pintscher, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T170284: Create example Lexeme pages

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE moved this task from Review to Done on the Wikidata-Sprint board.Aleksey_WMDE closed this task as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T170284WORKBOARDhttps://phabricator.wikimedia.org/project/board/2351/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Lydia_Pintscher, Jakob_WMDE, daniel, Aleksey_WMDE, Jonas, thiemowmde, Aklapper, WMDE-leszek, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T168373: polish demo data

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T170284: Create example Lexeme pages  as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T168373EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, gerritbot, Aklapper, thiemowmde, Jonas, Aleksey_WMDE, WMDE-leszek, daniel, Jakob_WMDE, Lydia_Pintscher, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T167432: Run Wikibase daily browser tests on Jenkins

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
It's not exactly ruby related. We just need a job in JenkinsTASK DETAILhttps://phabricator.wikimedia.org/T167432EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zeljkofilipin, Aleksey_WMDECc: PokestarFan, Tobi_WMDE_SW, Jonas, thiemowmde, WMDE-leszek, zeljkofilipin, hashar, Aleksey_WMDE, Aklapper, GoranSMilovanovic, QZanden, Liudvikas, Izno, Luke081515, thcipriani, Wikidata-bugs, aude, Mbch331, Jay8g, greg___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T167432: Run Wikibase daily browser tests on Jenkins

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.Herald added a subscriber: PokestarFan.
Hi @zeljkofilipin! I see that T164721 is resolved ;)
So what about this ticket?
We kind of sad because of this issue...TASK DETAILhttps://phabricator.wikimedia.org/T167432EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Tobi_WMDE_SW, Jonas, thiemowmde, WMDE-leszek, zeljkofilipin, hashar, Aleksey_WMDE, Aklapper, GoranSMilovanovic, QZanden, Liudvikas, Izno, Luke081515, thcipriani, Wikidata-bugs, aude, Mbch331, Jay8g, greg___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T169716: [Story] Referencing Forms and Senses

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T169718: Fake statements that link to Forms and Senses as "Resolved".
TASK DETAILhttps://phabricator.wikimedia.org/T169716EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Aklapper, Jonas, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T169718: Fake statements that link to Forms and Senses

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed this task as "Resolved".Aleksey_WMDE added a comment.Herald added a subscriber: PokestarFan.
Done. See T165580TASK DETAILhttps://phabricator.wikimedia.org/T169718EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jonas, Aleksey_WMDECc: Aleksey_WMDE, PokestarFan, WMDE-leszek, gerritbot, Jonas, Aklapper, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T169716: [Story] Referencing Forms and Senses

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T169723: Create fake items that pretend to be Senses and Forms as "Declined".
TASK DETAILhttps://phabricator.wikimedia.org/T169716EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Aklapper, Jonas, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Declined] T169723: Create fake items that pretend to be Senses and Forms

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed this task as "Declined".Aleksey_WMDE added a comment.Herald added a subscriber: PokestarFan.
See T165580TASK DETAILhttps://phabricator.wikimedia.org/T169723EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Aleksey_WMDE, Aklapper, Jonas, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T169716: [Story] Referencing Forms and Senses

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T169717: Create properties for use in senses and forms as "Declined".Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T169716EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Aklapper, Jonas, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Declined] T169717: Create properties for use in senses and forms

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed this task as "Declined".Aleksey_WMDE added a comment.Herald added a subscriber: PokestarFan.
We've decided to implement regular property types.TASK DETAILhttps://phabricator.wikimedia.org/T169717EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Jonas, Aleksey_WMDECc: PokestarFan, Aleksey_WMDE, WMDE-leszek, Jonas, Aklapper, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Closed] T170388: Polish CSS of the Forms (Morphology) Section

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE moved this task from Done to Blocked External on the Wikidata-Sprint board.Aleksey_WMDE closed this task as "Resolved".Aleksey_WMDE claimed this task.Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T170388WORKBOARDhttps://phabricator.wikimedia.org/project/board/2351/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, WMDE-leszek, Lydia_Pintscher, gerritbot, Jonas, Aklapper, James_Budday, Aleksey_WMDE, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T170284: Create example Lexeme pages

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE claimed this task.Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T170284EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Lydia_Pintscher, Jakob_WMDE, daniel, Aleksey_WMDE, Jonas, thiemowmde, Aklapper, WMDE-leszek, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Unblock] T170287: Make hierarchy more clear on Lexeme page

2017-07-25 Thread Aleksey_WMDE
Aleksey_WMDE closed subtask T170388: Polish CSS of the Forms (Morphology) Section as "Resolved".Herald added a subscriber: PokestarFan.
TASK DETAILhttps://phabricator.wikimedia.org/T170287EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Aleksey_WMDE, Ladsgroup, Lydia_Pintscher, gerritbot, James_Budday, Aklapper, Jonas, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T170673: Make ChangeOps define required permissions

2017-07-24 Thread Aleksey_WMDE
Aleksey_WMDE claimed this task.
TASK DETAILhttps://phabricator.wikimedia.org/T170673EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, Ladsgroup, thiemowmde, WMDE-leszek, Aleksey_WMDE, gerritbot, Aklapper, daniel, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, 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] [Reopened] T166586: Consistently check permission for entity creation

2017-07-24 Thread Aleksey_WMDE
Aleksey_WMDE reopened this task as "Open".Aleksey_WMDE added a comment.
Not all patches are mergedTASK DETAILhttps://phabricator.wikimedia.org/T166586EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: PokestarFan, WMDE-leszek, gerritbot, Aklapper, daniel, GoranSMilovanovic, QZanden, 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] T66950: Tidy up Special:PagesWithProp

2017-07-24 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
It doesn't really give more insight about the purpose of the ticket.
@Lydia_Pintscher, can you describe a scenario for this ticket from the user perspective?TASK DETAILhttps://phabricator.wikimedia.org/T66950EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Ladsgroup, Aleksey_WMDECc: Aleksey_WMDE, PokestarFan, gerritbot, Ricordisamoa, Aklapper, Tobi_WMDE_SW, Lydia_Pintscher, Lordiis, Lsherwinforone, GoranSMilovanovic, Adik2382, Soteriaspace, Th3d3v1ls, JakeTheDeveloper, Ramalepe, Liugev6, QZanden, Ptolusque, Sethakill, Lewizho99, Maathavan, Izno, Wong128hk, Wikidata-bugs, aude, TheDJ, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T66950: Tidy up Special:PagesWithProp

2017-07-24 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
I've looked at the patch and have several questions:


Who uses this page and what for?
What is "page property" in this context?
Why is this task needed in general? Who will benefit from it?


TASK DETAILhttps://phabricator.wikimedia.org/T66950EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Ladsgroup, Aleksey_WMDECc: Aleksey_WMDE, PokestarFan, gerritbot, Ricordisamoa, Aklapper, Tobi_WMDE_SW, Lydia_Pintscher, Lordiis, Lsherwinforone, GoranSMilovanovic, Adik2382, Soteriaspace, Th3d3v1ls, JakeTheDeveloper, Ramalepe, Liugev6, QZanden, Ptolusque, Sethakill, Lewizho99, Maathavan, Izno, Wong128hk, Wikidata-bugs, aude, TheDJ, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Changed Project Column] T170673: Make ChangeOps define required permissions

2017-07-24 Thread Aleksey_WMDE
Aleksey_WMDE moved this task from Done to Review on the Wikidata-Sprint board.Aleksey_WMDE added a comment.
https://gerrit.wikimedia.org/r/#/c/365624/ is not merged yetTASK DETAILhttps://phabricator.wikimedia.org/T170673WORKBOARDhttps://phabricator.wikimedia.org/project/board/2351/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: WMDE-leszek, Aleksey_WMDECc: PokestarFan, Ladsgroup, thiemowmde, WMDE-leszek, Aleksey_WMDE, gerritbot, Aklapper, daniel, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, 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] T127929: [Story] Add a new datatype for linking to creators of artwork and more (smart URI)

2017-07-21 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
His solution will also buy us time to eventually think an expansion of the approach, instead of immediately creating new namespaces in MediaInfo.

Cannot really agree, because it seems that we might be stuck with this solution for quiet a long time as soon as Property's data-type (generally) cannot be changed and migration of old revisions is not possible (as far as I know).
So to add a new way of referencing authors instead of the old one seems to me like a huge pain that might bring a lot of confusion to users.TASK DETAILhttps://phabricator.wikimedia.org/T127929EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Sannita, Aleksey_WMDE, Jarekt, Ayack, Ghouston, Charlie_WMDE, Izno, thiemowmde, Ladsgroup, Liuxinyu970226, Pigsonthewing, Bugreporter, Jan_Dittrich, Josve05a, Sadads, Poyekhali, gerritbot, DannyH, Micru, intracer, mkroetzsch, Aklapper, daniel, Steinsplitter, Lydia_Pintscher, SandraF_WMF, GoranSMilovanovic, QZanden, Acer, Wong128hk, Wikidata-bugs, PKM, Base, matthiasmullie, aude, El_Grafo, Ricordisamoa, Fabrice_Florin, Mbch331, Tgr___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T168859: Restore descriptions in Wikibase api error message

2017-07-21 Thread Aleksey_WMDE
Aleksey_WMDE updated the task description. (Show Details)
CHANGES TO TASK DESCRIPTION...* [ ] https://gerrit.wikimedia.org/r/366576
* [ * [x] https://gerrit.wikimedia.org/r/366583...TASK DETAILhttps://phabricator.wikimedia.org/T168859EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: thiemowmde, Aleksey_WMDECc: Aleksey_WMDE, Ladsgroup, Jonas, daniel, Lydia_Pintscher, thiemowmde, gerritbot, aude, Aklapper, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Edited] T170388: Polish CSS of the Forms (Morphology) Section

2017-07-19 Thread Aleksey_WMDE
Aleksey_WMDE updated the task description. (Show Details)
CHANGES TO TASK DESCRIPTION...  - [] Rename title Forms to Morphology (needs discussion)
  - [x] Align with headline 'Forms'...TASK DETAILhttps://phabricator.wikimedia.org/T170388EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: WMDE-leszek, Lydia_Pintscher, gerritbot, Jonas, Aklapper, James_Budday, Aleksey_WMDE, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T171056: Make Lexeme Label Edit Button Look Like Other Edit Buttons

2017-07-19 Thread Aleksey_WMDE
Aleksey_WMDE claimed this task.Aleksey_WMDE moved this task from Proposed to Doing on the Wikidata-Sprint board.
TASK DETAILhttps://phabricator.wikimedia.org/T171056WORKBOARDhttps://phabricator.wikimedia.org/project/board/2351/EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Aleksey_WMDE, Aklapper, James_Budday, GoranSMilovanovic, QZanden, 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] T166586: Consistently check permission for entity creation

2017-07-19 Thread Aleksey_WMDE
Aleksey_WMDE claimed this task.Aleksey_WMDE added a subscriber: WMDE-leszek.
TASK DETAILhttps://phabricator.wikimedia.org/T166586EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: WMDE-leszek, gerritbot, Aklapper, daniel, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, 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] T170918: Fix lexeme data type labels

2017-07-18 Thread Aleksey_WMDE
Aleksey_WMDE claimed this task.
TASK DETAILhttps://phabricator.wikimedia.org/T170918EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Aleksey_WMDE, Aklapper, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Created] T170920: Display labels for statements on forms and senses

2017-07-18 Thread Aleksey_WMDE
Aleksey_WMDE created this task.Aleksey_WMDE added projects: Wikidata-Sprint, Wikidata.Herald added a subscriber: Aklapper.
TASK DESCRIPTIONCurrently, on lexeme page all links to properties and items in statements on forms and senses are displayed like P40 and Q74

Links should have same look as in lexeme statements (i.e. have proper label), e.g. Instance of and EarthTASK DETAILhttps://phabricator.wikimedia.org/T170920EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Lydia_Pintscher, Aleksey_WMDE, Aklapper, GoranSMilovanovic, QZanden, 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 Subscribers] T170287: Make hierarchy more clear on Lexeme page

2017-07-17 Thread Aleksey_WMDE
Aleksey_WMDE added subscribers: Lydia_Pintscher, Ladsgroup, Aleksey_WMDE.Aleksey_WMDE added a comment.
@Ladsgroup, thank you for making the patch, but header change is blocked on @Lydia_Pintscher. We need to discuss it first with her.TASK DETAILhttps://phabricator.wikimedia.org/T170287EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Aleksey_WMDE, Ladsgroup, Lydia_Pintscher, gerritbot, James_Budday, Aklapper, Jonas, Lordiis, Cinemantique, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, Maathavan, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T168373: polish demo data

2017-07-13 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
Ask out - modeling 3 - http://wikidata-lexeme.wmflabs.org/index.php/Lexeme:L19TASK DETAILhttps://phabricator.wikimedia.org/T168373EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Aklapper, thiemowmde, Jonas, Aleksey_WMDE, WMDE-leszek, daniel, Jakob_WMDE, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T168373: polish demo data

2017-07-13 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
Ask out - modeling 2 - http://wikidata-lexeme.wmflabs.org/index.php/Lexeme:L18TASK DETAILhttps://phabricator.wikimedia.org/T168373EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Aklapper, thiemowmde, Jonas, Aleksey_WMDE, WMDE-leszek, daniel, Jakob_WMDE, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Commented On] T168373: polish demo data

2017-07-13 Thread Aleksey_WMDE
Aleksey_WMDE added a comment.
Ask out - modeling 1 - http://wikidata-lexeme.wmflabs.org/index.php/Lexeme:L17TASK DETAILhttps://phabricator.wikimedia.org/T168373EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Aklapper, thiemowmde, Jonas, Aleksey_WMDE, WMDE-leszek, daniel, Jakob_WMDE, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Updated] T168373: polish demo data

2017-07-13 Thread Aleksey_WMDE
Aleksey_WMDE added a project: Wikidata-Sprint.
TASK DETAILhttps://phabricator.wikimedia.org/T168373EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Aklapper, thiemowmde, Jonas, Aleksey_WMDE, WMDE-leszek, daniel, Jakob_WMDE, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] [Claimed] T168373: polish demo data

2017-07-13 Thread Aleksey_WMDE
Aleksey_WMDE claimed this task.
TASK DETAILhttps://phabricator.wikimedia.org/T168373EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: Aleksey_WMDECc: Aklapper, thiemowmde, Jonas, Aleksey_WMDE, WMDE-leszek, daniel, Jakob_WMDE, Lydia_Pintscher, Cinemantique, GoranSMilovanovic, QZanden, Izno, Wikidata-bugs, aude, Darkdadaah, Mbch331___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


  1   2   3   >