[00:04:33] bd808, marxarelli, I've been having some major MediaWiki-Vagrant performance problems recently. [00:04:36] Trying to figure out why. [00:04:40] Either of you familiar with xhprof? [00:08:23] superm401: I am a bit. I wrote the xhprof profiler wrapper [00:09:28] bd808, I'm looking at http://127.0.0.1:8080/xhprof/ . Is there a way to figure out which URLs/requests correspond with which xhprof runs? [00:09:57] superm401: One thing that I know has horrible horrible performance is the stat'ing of files that RL does to decide if it can use cache or not [00:10:33] bd808, that would make sense, since RL seems to have terrible performance for me too. [00:10:38] Are you getting around that somehow? [00:10:58] I'm using NFS, FWIW. [00:11:05] I haven't found a cure yet [00:11:48] the problem is that hhvm has a great stat cache but it relies on inotify to work and inotify doesn't work on nfs for semi-obvious reasons [00:12:26] If we enable the hhvm stat cache it never sees files change and thus never reloads content [00:12:26] bd808, hmm, maybe I should just go back to zend for now. [00:12:58] With HHVM, I'm even getting 503's sometimes. [00:13:17] that's probably an apache tuning problem [00:13:17] On RL requests. [00:13:28] not giving it enough time to wait on the hhv run [00:13:33] *hhvm run [00:13:45] I'm not sure why people are having issues with that, I haven't seen any performance issues with RL on vagrant [00:13:57] (until I installed MF which is super slow) [00:14:01] it's horrible for me [00:14:19] like 12 seconds to get the combined sytlesheets [00:14:36] legoktm, I'm using HHVM (default) and memcached (role). You? [00:14:53] I was using Redis before, but I had problems with that too, and Flow is not as well-tested with that. [00:14:59] HHVM + whatever is stock so redis [00:15:27] Yeah, I might have to go back to that too, but I would really prefer not to. [00:15:42] I wonder if any of these perf problems exist in production too and are being hidden by Varnish. [00:15:59] MediaWiki-Vagrant uses memcached-pecl, more or less like production, except MWV doesn't use nutcracker. [00:16:14] is this likely an issue with nfs + fstat? [00:16:22] yes [00:16:22] oh, I'm not using NFS fwiw [00:16:42] legoktm, oh, good to know. What host OS are you on? [00:16:54] fedora 21 [00:17:23] legoktm, hmm. Why aren't you using NFS? Performance or another reason? [00:17:38] I...didn't want to figure out how to set it up >.. [00:17:38] encrypted home drive I bet [00:17:40] >.>* [00:17:57] my drive is encrypted but I don't think that would have been an issue [00:18:00] bbl in like 10 [00:18:17] legoktm, it basically just works once you install the packages. [00:18:25] It even writes the config for you dynamically. [00:18:40] ResourceLoaderFileModule::getModifiedTime is the big hog in the tests I've done [00:19:28] line 572 -- $filesMtime = max( array_map( array( __CLASS__, 'safeFilemtime' ), $files ) ); [00:21:31] bd808, I just realized why it might have gotten so much slower. [00:21:42] oh? [00:21:51] I've enabled VE again recently to test Flow integration, which has a huge number of files. [00:22:01] So that could exacerbate the stat cache thing you mentioned massively. [00:22:02] I've never really looked at how core handles resource loading properly, but is there not some variable to set to not update things unless required? [00:22:20] (VE has a huge number of files I mean, not the integration). [00:22:37] superm401: *nod* turning on VE is a killer for the fstat count [00:23:23] onei: core does lots of awesome things for this. The problem on mw-vagrant is mostly a combination of HHVM runtime and NFS file hosting [00:24:26] what happened to grrrt-wm? [00:24:36] The only file stat cache for HHVM needs inotify support from the kernel to decide when to purge it's cache. inotify doesn't work across nfs servers [00:24:46] onei: redis dead in labs [00:24:53] oops ori ^ [00:25:34] ori: I haven't heard who is working on fixing it (redis in labs) [00:28:29] superm401: maybe you're filling up memcached so it doesn't get cached properly? [00:28:36] if you have a ton of modules.. [00:29:27] legoktm, maybe, it's 200 right now (default). [00:29:30] I could try raising it. [00:29:59] I'm giving MWV 3 GB right now even though I only have 8 (I raised it to try to deal with this perf problem). [00:31:38] I typically don't have that many extensions enabled [00:32:01] when I had MF installed it was super duper slow, but that was because they had some pretty inefficient code that I filed a bug for... [00:32:06] Yeah, I'm trying to be better about not leaving stuff enabled. [00:44:16] superm401: do you have MF enabled? [00:44:34] marxarelli, no. I think I disabled it as part of troubleshooting this. [00:45:07] I also just trimmed settings.d (the non-Puppet one) to 10 files total. [00:45:23] Not sure, but it couldn't hurt to move the non-PHP ones to a different directory to speed up the GLOB. [00:45:39] Plus there were ones I no longer needed. [00:45:51] Some of which were .php.disabled, others still enabled but I didn't really need them. [00:45:56] superm401: got it. if you can, report your experience to https://phabricator.wikimedia.org/T78733 [00:46:43] since we suspect nfs as a culprit, it might help to see some `nfsstat -ncl` output as well [00:47:11] before/after requests to load.php [00:54:18] marxarelli, okay, I posted before seeing that. [00:54:33] I'll check if it's still present, then do that test. [00:54:44] superm401: nice. thanks! [00:54:52] marxarelli, glad to answer any other questions or do checks too. [00:56:20] superm401: cool, appreciate it. i know jdlrobson has been struggling with that same performance issue [01:12:42] marxarelli, should I run that inside or outside of the VM? [01:13:04] superm401: inside [01:13:36] i suppose you could also run `nfsstat -nsl` on the host side [01:20:03] marxarelli, that would be equivalent, I guess? [01:20:14] I posted the ncl before/after version, along with the request I used. [01:20:23] superm401: yeah, the `-s` is for server stats only, `-c` is for client [01:21:00] superm401: awesome. thanks [01:21:01] marxarelli, and that isn't even the slowest request I've seen. [01:21:35] superm401: i've got a 26s one when MF is enabled :) [01:21:53] I also have a 5400 RPM drive (I know, I know), which I'm sure makes it even worse. [01:56:54] ori: is there a standard JS performance benchmark for MediaWiki? [01:57:32] tgr: no. but what do you have in mind? [01:58:07] I've written this horrible thing: I'm actually envisioning that the user would edit through the third party's [01:58:11] proxy (via OAuth, linked to the new, "Special Account"), so no special [01:58:13] permissions are needed by the "Special Account", and a standard block on [01:58:15] that username can prevent them from editing. Additionally, revoking the [01:58:18] um [01:58:20] OAuth token of the proxy itself would stop all editing by this process, so [01:58:23] there's a quick way to "pull the plug" if it looks like the edits are [01:58:25] predominantly unproductive. [01:58:55] sorry, this: https://gerrit.wikimedia.org/r/195826 [01:59:06] and want to get an idea of the performance impact [02:00:05] what's the most JS-heavy functionality? VisualEditor I suppose? [02:00:26] yeah, and we do have a benchmark for that [02:00:44] see vbench in operations/puppet in files/ve [02:00:53] see also https://github.com/petkaantonov/bluebird/wiki/Optimization-killers , under the heading 'workaround' [02:01:17] it suggests that the impact of try/catch is minimal if it is isolated to a minimal function [02:01:37] the performance impact is most likely going to be immeasurably small [02:01:49] yeah, try...catch is not problem here [02:02:17] it does an apply call on every call of every promise method, amongst other things [02:02:28] oh, i see [02:02:49] yeah, if i had to guess, i think that would be fine too, but definitely worth being cautious here [02:03:16] i'll be in the office tomorrow if you want to spend a bit of time adapting vbench to test this [02:03:36] thanks, I'll give it a try [02:11:40] springle, around? [02:20:45] springle, could you take another look at https://gerrit.wikimedia.org/r/#/c/195192 [02:30:44] yurik: "This design should allow us to quickly move forward with various innovations without being restricted by the frequent schema changes." doesn't inspire confidence [02:31:23] lists sound like a straightforward feature that should be thought-through and implemented simply and correctly the first time around [02:35:31] <^demon|away> ori: Nothing makes me smile more than storing stuff as a json blob. Why even use a database if all you need is a kv store? :) [02:36:33] <^demon|away> s/Nothing makes/Few things make/ [02:38:30] ori, we use exactly the same approach for user options - storing json blobs [02:39:00] we dont know yet the exact features of the lists - what information should be stored and what shouldn't [02:39:13] the best approach is to have a flexible schema [02:39:22] since the cost of changing db schema is huge [02:39:51] btw, that's exactly the reason why you keep event messages as user pages - they change too much [02:39:53] ;) [02:40:10] s/user/wiki [02:41:17] <^demon|away> No we don't [02:41:20] <^demon|away> We fixed that ages ago [02:41:52] <^demon|away> User options are stored as a tuple (up_id, up_name, up_value) [02:42:00] <^demon|away> (and they used to be stored as serialized php, not json) [02:42:23] right, but the up_value is up to each user of that up_name, right? [02:42:57] of course the user store is somewhat different because it is shared between multiple code pieces [02:43:13] <^demon|away> I suppose, but most prefs are also a single string or int or bool :) [02:43:33] thus the up_name is "namespaced", e.g. "ext.myext.config-name" [02:43:51] but the point remains - we haven't hardcoded each up_name into its own column [02:44:14] because the cost of changing user table is huge [02:44:24] <^demon|away> It's not in the user table, but w/e [02:44:35] same difference [02:44:45] yurik, however, with up_name, you can still query by an individual preference/feature. [02:44:55] <^demon|away> Anyway, schema changes aren't all that scary [02:44:58] JSON blobs in MySQL are totally un-queryable. This might be relevant for analytics later. [02:45:46] <^demon|away> And if the schema really is in such a state of flux that it needs to be so hacky for now then it has little business being in prod yet imho. Back to ori's original point about wanting to have it thought through... [02:45:57] its not in prod [02:47:02] <^demon|away> As long as it's cleaned up before a prod deployment I don't care so much then :D [02:47:14] cool [02:48:21] <^demon|away> superm401: True story, I like querying user_properties. It's a fun table :) [02:48:32] <^demon|away> All kinds of crazy data in enwiki's [02:49:16] Yeah, I remember one time we wanted to know which skins power users use. [02:49:36] Turned out to be more annoying than it should have been, partly because user properties is not fully normalized (different values for the same thing). [02:50:44] i say we implement a number of useful tables: intoptions, stroptions, ... and store tuples (id,FK_id,name,value) - this way we can store anything we want in a nice normalized way... [02:51:18] LOL [03:07:29] i found it! https://mariadb.com/kb/en/mariadb/column_json/ ))) [04:08:11] where's grrrit? [04:10:23] in labs, which has a broken redis [04:28:31] 6MediaWiki-Core-Team, 5Patch-For-Review: Investigate/prevent master revision query on enwiki edit form - https://phabricator.wikimedia.org/T86862#1107215 (10aaron) [04:28:33] 10MediaWiki-Developer-Summit-2015, 6WMF-Legal, 10dev.wikimedia.org: Technology selection for the Developer Hub - https://phabricator.wikimedia.org/T312#1107217 (10Mattflaschen) >>! In T312#3738, @flimport wrote: > **qgil** wrote on `2014-07-29 14:46:01 (UTC)` > > (Generous CC because this is probably the mo... [04:28:35] 10MediaWiki-Developer-Summit-2015, 6WMF-Legal, 10dev.wikimedia.org: Technology selection for the Developer Hub - https://phabricator.wikimedia.org/T312#1107219 (10Mattflaschen) [04:28:38] 10WMF-Product-Strategy: Perform a Wikidata gap analysis - https://phabricator.wikimedia.org/T91423#1107220 (10Eloquence) Tentatively suggesting Oliver and perhaps Leila (if she has bandwidth to help) work on this project. [04:28:51] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, 3LE-Sprint-84: language-reportcard.wmflabs.org shows wrong graphs - data swapped - https://phabricator.wikimedia.org/T92237#1107223 (10Arrbee) [04:28:53] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, 3LE-Sprint-84: Newly added language ky and pa doesn't reflect in Language Limn Graph - https://phabricator.wikimedia.org/T92236#1107226 (10Arrbee) [04:28:57] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, 3LE-Sprint-84: Newly added language ky and pa doesn't reflect in Language Limn Graph - https://phabricator.wikimedia.org/T92236#1107228 (10santhosh) p:5Triage>3High [04:29:00] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, 3LE-Sprint-84: language-reportcard.wmflabs.org shows wrong graphs - data swapped - https://phabricator.wikimedia.org/T92237#1107230 (10santhosh) p:5Triage>3High [04:43:14] 10MediaWiki-Vagrant, 10Multimedia-Sprint-2015-03-04, 5Patch-For-Review: import_text puppet role in MediaWiki-Vagrant uses wrong server name - https://phabricator.wikimedia.org/T90361#1107268 (10Tgr) 5Open>3Resolved [04:54:12] 10MediaWiki-extensions-WikibaseClient, 10Wikidata: Track multi-lingual label usage - https://phabricator.wikimedia.org/T89002#1107278 (10Bugreporter) [04:54:13] 10MediaWiki-extensions-WikibaseClient, 10Wikidata, 7Schema-change: Add render_key field to wbc_entity_usage to enable per-language usage tracking - https://phabricator.wikimedia.org/T92288#1107279 (10Bugreporter) [04:54:35] 10MediaWiki-Developer-Summit-2015, 6WMF-Legal, 10dev.wikimedia.org: Technology selection for the Developer Hub - https://phabricator.wikimedia.org/T312#1107280 (10Slaporte) Releasing the documentation under a CC0 license will make it flexible and easy to use. Is there any existing licensed content that you p... [05:02:35] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 5ContentTranslation-Release4, 3LE-Sprint-84, 3Roadmap: Enable ContentTranslation in the Afrikaans (af) Wikipedia - https://phabricator.wikimedia.org/T90127#1107282 (10KartikMistry) [05:02:36] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 5ContentTranslation-Release4, 3LE-Sprint-84, 5Patch-For-Review: Prepare Apertium packages for Dutch-Afrikaans - https://phabricator.wikimedia.org/T91750#1107283 (10KartikMistry) [05:03:07] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 5ContentTranslation-Release4, 3LE-Sprint-84, 5Patch-For-Review: Prepare Apertium packages for Dutch-Afrikaans - https://phabricator.wikimedia.org/T91750#1095434 (10KartikMistry) [05:03:08] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 5ContentTranslation-Release4, 3LE-Sprint-84, 3Roadmap: Enable ContentTranslation in the Afrikaans (af) Wikipedia - https://phabricator.wikimedia.org/T90127#1053048 (10KartikMistry) [05:06:02] 3Team-Practices-This-Week: tech talk on Q2 health check survey results - https://phabricator.wikimedia.org/T85821#1107286 (10Rfarrand) Do either of these two dates/times work for you @KLans_WMF?: 3/20: 10am - 11am 3/25: 10am - 11am I have reserved conference rooms for both of there dates/times [05:31:55] 10UI-Standardization: Create primary button with indeterminate loader - https://phabricator.wikimedia.org/T72417#1107364 (10violetto) My thinking was we could reuse current elements on the button instead of adding another element to show the loader. @Jaredzimmerman-wmf, you think even "fill horizontal" is comp... [05:33:44] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, and 2 others: Newly added language ky and pa doesn't reflect in Language Limn Graph - https://phabricator.wikimedia.org/T92236#1107368 (10Arrbee) [05:34:01] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, and 2 others: language-reportcard.wmflabs.org shows wrong graphs - data swapped - https://phabricator.wikimedia.org/T92237#1107369 (10Arrbee) [05:34:16] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 5ContentTranslation-Release4, 3LE-Sprint-84, 7Tracking: [Tracker] Special:CXStats does not reflect the actual number of published articles - https://phabricator.wikimedia.org/T92233#1107370 (10Arrbee) [05:34:31] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84: Reorganize the links module to support more complex link related usecases - https://phabricator.wikimedia.org/T90718#1107371 (10Arrbee) [05:34:40] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-cxserver, 5ContentTranslation-Release4, 3LE-Sprint-84: Create a checklist of development items to be completed before enabling a new language pair - https://phabricator.wikimedia.org/T91627#1107373 (10Arrbee) [05:40:05] 10MediaWiki-extensions-ContentTranslation, 6Language-Engineering, 3LE-Sprint-84, 5Patch-For-Review: Persist the published status with page ids - https://phabricator.wikimedia.org/T89442#1107393 (10Arrbee) [05:40:24] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 6Language-Engineering, 5ContentTranslation-Release4, 3LE-Sprint-84: Show evolution of published articles over time for a language pair - https://phabricator.wikimedia.org/T90104#1107394 (10Arrbee) [05:41:10] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84: Measure the effectiveness of editor invitations - https://phabricator.wikimedia.org/T90529#1107400 (10Arrbee) [05:41:25] 10Spelling-Dictionary, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Collaborative spelling dictionary building tool - https://phabricator.wikimedia.org/T92243#1107401 (10KartikMistry) [05:41:27] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84: Enable edit page entry point - https://phabricator.wikimedia.org/T90876#1107403 (10Arrbee) [05:44:30] 10Spelling-Dictionary, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Collaborative spelling dictionary building tool - https://phabricator.wikimedia.org/T92243#1107405 (10KartikMistry) Project URL: https://github.com/ankitashukla/mediawiki-spelling-dictionary Wrap-up post: https://ankitashukla707... [05:44:43] 10Spelling-Dictionary, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Collaborative spelling dictionary building tool - https://phabricator.wikimedia.org/T92243#1107406 (10KartikMistry) [05:49:06] 10MediaWiki-extensions-ContentTranslation, 3LE-Sprint-84, 5Patch-For-Review: ContentTranslation publishing error handling is too generic - https://phabricator.wikimedia.org/T89585#1107412 (10Arrbee) [05:50:06] 10Spelling-Dictionary, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Collaborative spelling dictionary building tool - https://phabricator.wikimedia.org/T92243#1107414 (10KartikMistry) [05:50:35] 10Spelling-Dictionary, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Collaborative spelling dictionary building tool - https://phabricator.wikimedia.org/T92243#1103802 (10KartikMistry) @Ankitashukla @Qgil Are we missing anything now? [05:54:15] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 3LE-Sprint-83, 5Patch-For-Review, 3Roadmap: Enable ContentTranslation for testing in Xhosa (xh) - https://phabricator.wikimedia.org/T90126#1107418 (10Arrbee) [05:54:56] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 5ContentTranslation-Release4, 3LE-Sprint-84, 3Roadmap: Enable ContentTranslation for testing in the Afrikaans (af) - https://phabricator.wikimedia.org/T90127#1107420 (10Arrbee) [05:56:14] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 3LE-Sprint-83, 5Patch-For-Review, 3Roadmap: Enable ContentTranslation for testing in Xhosa (xh) - https://phabricator.wikimedia.org/T90126#1107426 (10Arrbee) 5Open>3Resolved [05:56:15] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 7Tracking: [Tracker] New language requests for Content Translation - https://phabricator.wikimedia.org/T88408#1107427 (10Arrbee) [05:59:21] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-83, 5Patch-For-Review: Campaign: Can not get ahead after clicking 'Try Content Translation' button - https://phabricator.wikimedia.org/T91615#1107428 (10Arrbee) 5Open>3Resolved a:3santhosh [06:00:20] 10MediaWiki-extensions-ContentTranslation, 3LE-Sprint-83, 5Patch-For-Review, 7Technical-Debt: While saving translation to CX database, set target URL only when it is changed to published status - https://phabricator.wikimedia.org/T91365#1107430 (10Arrbee) 5Open>3Resolved [06:00:21] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 5ContentTranslation-Release4, 3LE-Sprint-84, 7Tracking: [Tracker] Special:CXStats does not reflect the actual number of published articles - https://phabricator.wikimedia.org/T92233#1107431 (10Arrbee) [06:00:35] 7Blocked-on-Language, 5ContentTranslation-Release4, 3LE-Sprint-83, 5Patch-For-Review: References: Update the implementaiton to match new Parsoid output - https://phabricator.wikimedia.org/T90776#1107432 (10Arrbee) 5Open>3Resolved [06:03:14] 10MediaWiki-extensions-ContentTranslation, 6Language-Engineering, 5ContentTranslation-Release4, 3LE-Sprint-84, 5Patch-For-Review: Persist the published status with page ids - https://phabricator.wikimedia.org/T89442#1107436 (10Arrbee) [06:03:29] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84, 5Patch-For-Review: ContentTranslation publishing error handling is too generic - https://phabricator.wikimedia.org/T89585#1107438 (10Arrbee) [06:10:10] 10Wikimedia-Site-requests, 3HTTPS-by-default, 5Patch-For-Review: Russian projects force HTTPS regardless of preferences - https://phabricator.wikimedia.org/T91352#1107443 (10Eloquence) > I have slow and unstable and limited by quota connection to Internet. And no, it's not going to improve because of where... [06:10:20] 10Wikimedia-Site-requests, 3HTTPS-by-default, 5Patch-For-Review: Russian projects force HTTPS regardless of preferences - https://phabricator.wikimedia.org/T91352#1107446 (10Eloquence) 5Open>3Invalid a:3Eloquence [06:12:04] 10MediaWiki-extensions-Translate, 3LE-Sprint-84, 5Patch-For-Review, 7Performance: Optimize Special:SupportedLanguages - https://phabricator.wikimedia.org/T54728#1107450 (10Arrbee) [06:12:08] 10Gather, 3Gather Sprint C_: Gather breaks with bad data - https://phabricator.wikimedia.org/T92347#1107451 (10Jdlrobson) @jhernandez any chance you could take a look? [06:13:42] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84, 5Patch-For-Review, and 2 others: Optimize the Content translation stats query with an index - https://phabricator.wikimedia.org/T88538#1107456 (10Arrbee) [06:22:26] 10MediaWiki-extensions-TitleBlacklist, 10SUL-Finalization, 10Wikimedia-Site-requests, 5Patch-For-Review, 7user-notice: User name blacklist should be managed globally to avoid SUL fragmentation - https://phabricator.wikimedia.org/T38939#1107561 (10Keegan) P384 contains the current wikis with MediaWiki:Tit... [06:23:25] 10MediaWiki-Documentation, 7Documentation, 7Easy: Example extension has minor differences with BoilerPlate - https://phabricator.wikimedia.org/T92362#1107703 (10Spage) 3NEW [06:25:30] 10Spelling-Dictionary, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Collaborative spelling dictionary building tool - https://phabricator.wikimedia.org/T92243#1108060 (10NiharikaKohli) @Qgil, shall we add the wrap-up posts, project URL on the Past projects page as well? Or link to this task itself? [06:29:53] 10ContentTranslation-Analytics, 3LE-Sprint-84: Stats: Consider the existence of target URL as a proof that translation was published - https://phabricator.wikimedia.org/T92363#1108545 (10santhosh) 3NEW a:3santhosh [06:33:29] 10ContentTranslation-Analytics, 3LE-Sprint-84: Make translation_target_url of cx_translations table nullable - https://phabricator.wikimedia.org/T92364#1108555 (10santhosh) 3NEW a:3santhosh [06:37:47] 10ContentTranslation-Analytics, 3LE-Sprint-84, 5Patch-For-Review: Stats: Consider the existence of target URL as a proof that translation was published - https://phabricator.wikimedia.org/T92363#1108545 (10santhosh) [06:37:48] 10ContentTranslation-Analytics, 3LE-Sprint-84, 5Patch-For-Review: Make translation_target_url of cx_translations table nullable - https://phabricator.wikimedia.org/T92364#1108555 (10santhosh) [06:39:05] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84, 5Patch-For-Review: when adapting references in Special:ContentTranslation, make sure that the actual references is adapted and not just - https://phabricator.wikimedia.org/T87146#1108578 (10santhosh) 5... [06:39:17] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-83, 5Patch-For-Review: when adapting references in Special:ContentTranslation, make sure that the actual references is adapted and not just - https://phabricator.wikimedia.org/T87146#984730 (10santhosh) [06:47:18] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 5ContentTranslation-Release4, 3LE-Sprint-84, 5Patch-For-Review: Prepare Apertium packages for French-Spanish - https://phabricator.wikimedia.org/T92252#1108584 (10santhosh) p:5Triage>3High [06:47:39] 10Gather, 3Gather Sprint C_: Watchstar overlay broken with keyboard up on mobile - https://phabricator.wikimedia.org/T92251#1108587 (10Jdlrobson) a:5rmoen>3None [06:50:58] 10Popups, 7Beta-Feature, 5Patch-For-Review: Hovercards: Create access point for user survey in hovercards - https://phabricator.wikimedia.org/T1005#1108589 (10Prtksxna) Done. I just need the PNGs now. The cog image is right now rendered at `18*18px`. Can you give me a PNG with some margins and those dimensi... [06:52:08] 10MediaWiki-extensions-ContentTranslation, 10Ops-Access-Requests, 6operations, 3LE-Sprint-84, 5Patch-For-Review: Access to stat1003 for Niklas and Kartik - https://phabricator.wikimedia.org/T91625#1108590 (10santhosh) [07:09:50] (03CR) 10Tweichart: [C: 031 V: 031] Mask templates in table style definitions [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/195581 (owner: 10Mglaser) [07:16:04] (03CR) 10Niharika29: "This is not as trivial as I incorrectly assumed. If the reviewer fills out only one question field at the start of campaign, then s/he has" [wikimedia/iegreview] - 10https://gerrit.wikimedia.org/r/195852 (owner: 10Niharika29) [07:18:00] (03CR) 10Tweichart: [C: 031 V: 031] Review: Notifications (032 comments) [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/194328 (owner: 10Pwirth) [07:18:54] (03CR) 10Robert Vogel: [C: 032 V: 032] added missing en l10n [extensions/BlueSpiceExtensions] (REL1_22) - 10https://gerrit.wikimedia.org/r/193818 (owner: 10Tweichart) [07:22:06] (03CR) 10Tweichart: [C: 032] ExtensionInfo: Fixed typo [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/195570 (owner: 10Robert Vogel) [07:22:19] (03Merged) 10jenkins-bot: ExtensionInfo: Fixed typo [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/195570 (owner: 10Robert Vogel) [07:23:06] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 5ContentTranslation-Release4, 3LE-Sprint-84, 7Tracking: [Tracker] Special:CXStats does not reflect the actual number of published articles - https://phabricator.wikimedia.org/T92233#1108597 (10santhosh) Once T92363 and T92364 done... [07:24:59] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84, 5Patch-For-Review: ContentTranslation publishing error handling is too generic - https://phabricator.wikimedia.org/T89585#1108601 (10santhosh) [07:25:12] (03CR) 10Tweichart: [V: 031] BsMailer: Fixed mail footer (031 comment) [extensions/BlueSpiceFoundation] - 10https://gerrit.wikimedia.org/r/195561 (owner: 10Pwirth) [07:25:14] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84: Enable edit page entry point - https://phabricator.wikimedia.org/T90876#1108603 (10santhosh) [07:25:24] 10MediaWiki-extensions-ContentTranslation, 10Wikidata, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84: When creating a new page, suggest doing a translation instead - https://phabricator.wikimedia.org/T88600#1108604 (10santhosh) [07:25:27] (03CR) 10Tweichart: [C: 031] BsMailer: Fixed mail footer [extensions/BlueSpiceFoundation] - 10https://gerrit.wikimedia.org/r/195561 (owner: 10Pwirth) [07:27:30] (03PS41) 10Paladox: Re add svg images [extensions/WikiEditor] - 10https://gerrit.wikimedia.org/r/181786 (https://phabricator.wikimedia.org/T37342) [07:27:47] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-cxserver, 5ContentTranslation-Release4, 3LE-Sprint-84: Create a checklist of development items to be completed before enabling a new language pair - https://phabricator.wikimedia.org/T91627#1108609 (10santhosh) [07:28:19] 10ContentTranslation-Analytics, 3LE-Sprint-84, 5Patch-For-Review: Make translation_target_url of cx_translations table nullable - https://phabricator.wikimedia.org/T92364#1108610 (10santhosh) [07:28:27] 10MediaWiki-extensions-WikibaseClient, 10MediaWiki-extensions-WikibaseRepository, 10DataTypes, 10DataValues, and 5 others: Centralize Wikibase documentation process and assign responsibilities - https://phabricator.wikimedia.org/T92365#1108612 (10Snaterlicious) 3NEW [07:28:28] 10ContentTranslation-Analytics, 3LE-Sprint-84, 5Patch-For-Review: Stats: Consider the existence of target URL as a proof that translation was published - https://phabricator.wikimedia.org/T92363#1108619 (10santhosh) [07:28:37] (03CR) 10Paladox: "@Krinkle please could you review." [extensions/WikiEditor] - 10https://gerrit.wikimedia.org/r/181786 (https://phabricator.wikimedia.org/T37342) (owner: 10Paladox) [07:28:38] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 5ContentTranslation-Release4, 3LE-Sprint-84, 5Patch-For-Review: Prepare Apertium packages for French-Spanish - https://phabricator.wikimedia.org/T92252#1108621 (10santhosh) [07:28:48] (03PS14) 10Paladox: Add support for svg with png fallback for logo [core] - 10https://gerrit.wikimedia.org/r/193434 (https://phabricator.wikimedia.org/T86229) [07:28:50] (03PS24) 10Awight: WIP (bug 56849) Pass true oldid for atomic page save [core] - 10https://gerrit.wikimedia.org/r/94584 (https://phabricator.wikimedia.org/T58849) [07:28:52] (03PS1) 10Awight: Clean up oldid argument to Content::prepareSave() [core] - 10https://gerrit.wikimedia.org/r/195856 [07:28:57] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 5ContentTranslation-Release4, 3LE-Sprint-84, 7Tracking: [Tracker] Special:CXStats does not reflect the actual number of published articles - https://phabricator.wikimedia.org/T92233#1108625 (10santhosh) [07:29:19] (03CR) 10Paladox: "@Krinkle please could you review." [extensions/WikiEditor] - 10https://gerrit.wikimedia.org/r/195529 (https://phabricator.wikimedia.org/T37342) (owner: 10Paladox) [07:29:36] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84: Reorganize the links module to support more complex link related usecases - https://phabricator.wikimedia.org/T90718#1108626 (10santhosh) [07:30:03] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 5ContentTranslation-Release4, 3LE-Sprint-84, 7Tracking: [Tracker] Special:CXStats does not reflect the actual number of published articles - https://phabricator.wikimedia.org/T92233#1108630 (10santhosh) a:3santhosh [07:30:54] (03CR) 10Tweichart: [C: 032 V: 032] ResponsibleEditors: Fixed missing permissions in ajax context [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/189963 (owner: 10Robert Vogel) [07:32:50] (03CR) 10jenkins-bot: [V: 04-1] WIP (bug 56849) Pass true oldid for atomic page save [core] - 10https://gerrit.wikimedia.org/r/94584 (https://phabricator.wikimedia.org/T58849) (owner: 10Awight) [07:35:46] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 7Documentation, 3§ Wikidata-Sprint-2015-02-25: update documentation of high-level data model - https://phabricator.wikimedia.org/T75603#1108634 (10Snaterlicious) As I am not sure whether I should just go ahead an edit as to my perceptions, see also: T9... [07:37:50] 10MediaWiki-extensions-Extensions-requests: The Event Organiser's Userright - https://phabricator.wikimedia.org/T91928#1108636 (10WereSpielChequers) Hi Fae, thanks for the questions. The existing procedures are documented at: https://en.wikipedia.org/wiki/Wikipedia:How_to_run_an_edit-a-thon Yes there are a num... [07:38:05] (03Abandoned) 10Yuvipanda: Add info about puppet classes to instance list API [extensions/OpenStackManager] - 10https://gerrit.wikimedia.org/r/175984 (owner: 10Yuvipanda) [07:55:01] (03PS1) 10Yuvipanda: Directly interface with gerrit stream-events [labs/tools/grrrit] - 10https://gerrit.wikimedia.org/r/195861 [07:55:07] (03CR) 10jenkins-bot: [V: 04-1] Directly interface with gerrit stream-events [labs/tools/grrrit] - 10https://gerrit.wikimedia.org/r/195861 (owner: 10Yuvipanda) [07:55:10] (03CR) 10Pwirth: Review: Notifications (032 comments) [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/194328 (owner: 10Pwirth) [07:56:01] (03PS2) 10Yuvipanda: Directly interface with gerrit stream-events [labs/tools/grrrit] - 10https://gerrit.wikimedia.org/r/195861 [08:06:52] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84, 5Patch-For-Review: Provide a link from ContentTranslation to the tool to look for missing articles - https://phabricator.wikimedia.org/T76843#1108643 (10Arrbee) [08:08:37] (03PS2) 10Pwirth: BsMailer: Fixed mail footer [extensions/BlueSpiceFoundation] - 10https://gerrit.wikimedia.org/r/195561 [08:08:41] 10MediaWiki-Vagrant: git-update for /srv/jobrunner emits "fatal: ref HEAD is not a symbolic ref" "expr: syntax error" - https://phabricator.wikimedia.org/T92345#1108646 (10mobrovac) This is a known side-effect of the [new version](https://gerrit.wikimedia.org/r/#/c/194556/) of `vagrant git-update`. When provisio... [08:09:28] 10MediaWiki-Interface: Never show anonymous users' IP addresses - https://phabricator.wikimedia.org/T92366#1108647 (10awight) 3NEW [08:12:06] 10MediaWiki-Interface: Never show anonymous users' IP addresses - https://phabricator.wikimedia.org/T92366#1108657 (10awight) [08:17:02] 10WMF-Product-Strategy: Perform a Wikidata gap analysis - https://phabricator.wikimedia.org/T91423#1108659 (10Lydia_Pintscher) Would love to work with both of them on this. [08:21:34] (03CR) 10Tweichart: [C: 031 V: 031] BsMailer: Fixed mail footer [extensions/BlueSpiceFoundation] - 10https://gerrit.wikimedia.org/r/195561 (owner: 10Pwirth) [08:23:53] 10MediaWiki-Developer-Summit-2015, 6WMF-Legal, 10dev.wikimedia.org: Technology selection for the Developer Hub - https://phabricator.wikimedia.org/T312#1108671 (10Spage) >>! In T312#1107280, @Slaporte wrote: > Releasing the documentation under a CC0 license will make it flexible and easy to use. Is there any... [08:24:23] 10Possible-Tech-Projects, 7Elasticsearch, 3Google-Summer-of-Code-2015, 3Outreachy-Round-10: One stop translation search - https://phabricator.wikimedia.org/T89103#1108672 (10Ayushimrigen) Hi. On searching anything on Special:SearchTranslations, it says 'The search service is temporarily unavailable.' Howev... [08:25:27] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84: Measure the effectiveness of editor invitations - https://phabricator.wikimedia.org/T90529#1108673 (10santhosh) [08:26:52] 10ContentTranslation-Analytics, 3LE-Sprint-84, 5Patch-For-Review: Make translation_target_url of cx_translations table nullable - https://phabricator.wikimedia.org/T92364#1108674 (10santhosh) p:5Normal>3High [08:27:08] 10ContentTranslation-Analytics, 3LE-Sprint-84, 5Patch-For-Review: Stats: Consider the existence of target URL as a proof that translation was published - https://phabricator.wikimedia.org/T92363#1108675 (10santhosh) p:5Normal>3High [08:27:12] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 5ContentTranslation-Release4, 3LE-Sprint-84: Lightweight metric representations for CX - https://phabricator.wikimedia.org/T91528#1108676 (10Arrbee) [08:28:01] 10MediaWiki-extensions-WikibaseClient, 10MediaWiki-extensions-WikibaseRepository, 10DataTypes, 10DataValues, and 5 others: Centralize Wikibase documentation process and assign responsibilities - https://phabricator.wikimedia.org/T92365#1108679 (10Snaterlicious) [08:30:14] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: Create a Wikibase glossary - https://phabricator.wikimedia.org/T72763#1108685 (10Snaterlicious) [08:39:50] 10Math, 7Accessibility: The MathML mode does not work well with VoiceOver + touch screen - https://phabricator.wikimedia.org/T74141#1108706 (10TheDJ) [08:41:21] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 6Language-Engineering, 5ContentTranslation-Release4, and 2 others: [Tracker] Rewrite Special:ContentTranslationStats to query common database to make useful - https://phabricator.wikimedia.org/T87709#1108709 (10santhosh) [08:41:45] 10MediaWiki-Categories, 6Mobile-Web, 5Patch-For-Review: Categories should not be rendered in a table (do not display well on mobile) - https://phabricator.wikimedia.org/T55130#1108710 (10Edokter) It concerns both desktop and mobile, so i would say rename. [08:43:08] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 6Language-Engineering, 5ContentTranslation-Release4, and 2 others: [Tracker] Rewrite Special:ContentTranslationStats to query common database to make useful - https://phabricator.wikimedia.org/T87709#1108711 (10Arrbee) p:5High>3N... [08:46:59] 10MediaWiki-General-or-Unknown, 7Accessibility, 7Easy: Empty Link in the content section below Wikipedia logo can trip web content reader - https://phabricator.wikimedia.org/T39515#1108713 (10TheDJ) [08:47:04] 10MediaWiki-extensions-Collection, 5Patch-For-Review: Collections should accept "chapters" consisting of "only one wikipage" and format them properly - https://phabricator.wikimedia.org/T30066#1108717 (10Nemo_bis) https://phabricator.wikimedia.org/F79896 is an example of current PDF output for https://it.wikis... [08:48:48] 10MediaWiki-General-or-Unknown, 7Accessibility, 7Easy: Empty Link in the content section below Wikipedia logo can trip web content reader - https://phabricator.wikimedia.org/T39515#421756 (10TheDJ) We should probably move the content of the link from title to text content, and then use one of the text hiding... [08:49:05] (03PS1) 10Mglaser: Fixed some trailing whitespace [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/195867 [08:49:33] 10MediaWiki-Parser, 7Accessibility, 7Newparser: Colon (:) & semicolon (;) shouldn't output as HTML definition list when used for indentation, boldfacing - https://phabricator.wikimedia.org/T6521#1108722 (10TheDJ) [08:50:10] (03PS7) 10Nemo bis: Respect $wgNamespacesWithSubpages by default [extensions/Collection] - 10https://gerrit.wikimedia.org/r/163139 (https://bugzilla.wikimedia.org/28066) [08:51:01] (03PS1) 10Mglaser: Fixed table property dialog [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/195869 [08:55:09] (03CR) 10Nemo bis: "Thanks TTO! You are right, I amended the commit message. Is it better now?" [extensions/Collection] - 10https://gerrit.wikimedia.org/r/163139 (https://bugzilla.wikimedia.org/28066) (owner: 10Nemo bis) [08:55:48] (03PS8) 10Nemo bis: Respect $wgNamespacesWithSubpages by default [extensions/Collection] - 10https://gerrit.wikimedia.org/r/163139 (https://bugzilla.wikimedia.org/28066) [08:58:13] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84: In ContentTranslation templates in tables are not published as expected - https://phabricator.wikimedia.org/T91876#1108729 (10santhosh) [09:07:10] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release5, 7Technical-Debt: Evaluate cookie domain strategy - https://phabricator.wikimedia.org/T86307#1108734 (10Arrbee) [09:07:36] 10MediaWiki-extensions-MultimediaViewer, 6Multimedia, 7Accessibility: Add tooltips or speakable title (title attribute) to close and zoom buttons - https://phabricator.wikimedia.org/T77216#1108735 (10TheDJ) [09:09:00] 10MediaWiki-extensions-ContentTranslation, 10Wikidata, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84: When creating a new page, suggest doing a translation instead - https://phabricator.wikimedia.org/T88600#1108742 (10Arrbee) a:3Pginer-WMF [09:09:43] (03Abandoned) 10Hashar: SECURITY: Disable entity loader in getid3 library [extensions/TimedMediaHandler] (REL1_22) - 10https://gerrit.wikimedia.org/r/180573 (https://bugzilla.wikimedia.org/69209) (owner: 10Mglaser) [09:09:50] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84: Make contributions entry point easier to access - https://phabricator.wikimedia.org/T88586#1108745 (10Pginer-WMF) [09:10:16] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84: Suggest articles to translate from the dashboard - https://phabricator.wikimedia.org/T87439#1108749 (10Pginer-WMF) [09:17:29] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design: Experiment ways to get more users to translate articles - https://phabricator.wikimedia.org/T87867#1108755 (10Arrbee) [09:17:31] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-83: Prototype and test an initial set of entry points - https://phabricator.wikimedia.org/T90719#1108753 (10Arrbee) 5Open>3Resolved [09:25:03] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84: Make contributions entry point easier to access - https://phabricator.wikimedia.org/T88586#1108756 (10Arrbee) a:3Pginer-WMF [09:25:58] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84: Make contributions entry point easier to access - https://phabricator.wikimedia.org/T88586#1108757 (10Pginer-WMF) [09:26:58] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, and 2 others: Newly added language ky and pa doesn't reflect in Language Limn Graph - https://phabricator.wikimedia.org/T92236#1108758 (10Arrbee) a:3KartikMistry [09:27:28] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, and 2 others: language-reportcard.wmflabs.org shows wrong graphs - data swapped - https://phabricator.wikimedia.org/T92237#1108760 (10Arrbee) a:3KartikMistry [09:28:31] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84: In ContentTranslation templates in tables are not published as expected - https://phabricator.wikimedia.org/T91876#1108762 (10Arrbee) a:3Amire80 [09:29:08] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 3LE-Sprint-84: Correct the old data present in translations table about status - https://phabricator.wikimedia.org/T92368#1108764 (10santhosh) 3NEW [09:29:26] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 5ContentTranslation-Release4, 3LE-Sprint-84, 7Tracking: [Tracker] Special:CXStats does not reflect the actual number of published articles - https://phabricator.wikimedia.org/T92233#1108771 (10santhosh) [09:29:27] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 3LE-Sprint-84: Correct the old data present in translations table about status - https://phabricator.wikimedia.org/T92368#1108772 (10santhosh) [09:30:06] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 3LE-Sprint-84: Correct the old data present in translations table about status - https://phabricator.wikimedia.org/T92368#1108776 (10santhosh) p:5Triage>3High a:3Nikerabbit [09:30:46] 10MediaWiki-Vagrant, 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84, 5Patch-For-Review: Create MediaWiki-Vagrant module and role for Content Translation - https://phabricator.wikimedia.org/T88163#1108778 (10Arrbee) [09:33:48] (03PS9) 10TTO: Allow users to add, remove and apply change tags using the API [core] - 10https://gerrit.wikimedia.org/r/188543 (https://phabricator.wikimedia.org/T20670) [09:33:51] (03PS1) 10TTO: Output change tags in the machine-readable RCFeeds [core] - 10https://gerrit.wikimedia.org/r/195872 [09:35:14] (03CR) 10TTO: "Sorry for the slow progress here. I think all issues have been addressed." [core] - 10https://gerrit.wikimedia.org/r/188543 (https://phabricator.wikimedia.org/T20670) (owner: 10TTO) [09:38:19] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84: Polish the CX Dashboard - https://phabricator.wikimedia.org/T88344#1108799 (10Arrbee) [09:38:29] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84: Polish the CX Dashboard - https://phabricator.wikimedia.org/T88344#1108801 (10Arrbee) a:3Pginer-WMF [09:40:06] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 7Tracking: [Tracker] Experiment ways to get more users to translate articles - https://phabricator.wikimedia.org/T87867#1108804 (10Arrbee) [09:41:56] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Analytics, 5ContentTranslation-Release4, 3LE-Sprint-84: Represent key metrics in the CX analytics dashboard - https://phabricator.wikimedia.org/T86532#1108807 (10Arrbee) [09:47:24] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 5ContentTranslation-Release4, 3LE-Sprint-84, 3Roadmap: Enable ContentTranslation in the French Wikipedia - https://phabricator.wikimedia.org/T91836#1108828 (10Arrbee) [09:49:49] 10LiquidThreads, 10Vector, 7Accessibility: Tabbing from summary/textarea field should not go to the search box (vector) - https://phabricator.wikimedia.org/T48336#1108831 (10TheDJ) Per comments of Ciencia, marking this as specific to LQT again, since that is the only situation where we still seem to encounte... [09:49:54] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84: CX beta-feature does not stay enabled for the logged-in user - https://phabricator.wikimedia.org/T92232#1108833 (10Arrbee) a:3KartikMistry [09:51:28] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release3, 5ContentTranslation-Release4, 3LE-Sprint-81, 5Patch-For-Review: Publish translations to the main namespace by default (if the page does not exist already) - https://phabricator.wikimedia.org/T76618#1108838 (10Arrbee) 5Open>3Resol... [10:04:14] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 5ContentTranslation-Release4, 3LE-Sprint-84: enable Apertium machine translation from Bokmal (no/nb/nob) to Danish (da/dan) - https://phabricator.wikimedia.org/T91493#1108847 (10Arrbee) p:5Normal>3High [10:04:17] 10MediaWiki-extensions-ContentTranslation, 10Beta-Cluster, 10ContentTranslation-Deployments, 5ContentTranslation-Release4, 3LE-Sprint-84: Setup new wikis in Beta Cluster for Content Translation - https://phabricator.wikimedia.org/T90683#1108850 (10Arrbee) p:5Normal>3High [10:06:18] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84, 7Tracking: [Tracker] Experiment ways to get more users to translate articles - https://phabricator.wikimedia.org/T87867#1108855 (10Arrbee) [10:06:29] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-cxserver, 5ContentTranslation-Release4, 3LE-Sprint-84: Content Translation dashboard does not reflect real state of published article - https://phabricator.wikimedia.org/T88281#1108856 (10Arrbee) [10:06:39] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84: Publishing page fails if the target title is not a valid title - https://phabricator.wikimedia.org/T90873#1108858 (10Arrbee) [10:06:47] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84: Organize the documentation of CX in mediawiki.org properly - https://phabricator.wikimedia.org/T76329#1108860 (10Arrbee) [10:07:59] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 5ContentTranslation-Release4, 3LE-Sprint-84, 7Tracking: [Tracker] CX Phase 1 deployment issues - https://phabricator.wikimedia.org/T87162#1108861 (10Arrbee) [10:09:21] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 3LE-Sprint-84: Reorganize the links module to support more complex link related usecases - https://phabricator.wikimedia.org/T90718#1108864 (10Arrbee) [10:09:23] 10MediaWiki-extensions-ContentTranslation, 6Language-Engineering, 7Epic: [Epic] ContentTranslation - Link Adaptation - https://phabricator.wikimedia.org/T76455#1108863 (10Arrbee) [10:09:34] Hi, need help fixing "Lua error in Module:TimeAgo at line 60: attempt to perform arithmetic on a string value." in https://kn.wikipedia.org/wiki/%E0%B2%9F%E0%B3%86%E0%B2%82%E0%B2%AA%E0%B3%8D%E0%B2%B2%E0%B3%87%E0%B2%9F%E0%B3%81:Time_ago/testcases [10:09:56] hi YuviPanda [10:11:43] (03CR) 10Tweichart: [C: 032] Fixed some trailing whitespace [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/195867 (owner: 10Mglaser) [10:12:04] (03Merged) 10jenkins-bot: Fixed some trailing whitespace [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/195867 (owner: 10Mglaser) [10:12:16] (03CR) 10Tweichart: [C: 032] Fixed table property dialog [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/195869 (owner: 10Mglaser) [10:12:36] (03Merged) 10jenkins-bot: Fixed table property dialog [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/195869 (owner: 10Mglaser) [10:22:15] (03PS1) 10Matthias Mullie: Request text in editor's desired content format right away [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195878 [10:22:19] (03CR) 10jenkins-bot: [V: 04-1] Request text in editor's desired content format right away [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195878 (owner: 10Matthias Mullie) [10:24:09] 10UI-Standardization: Create primary button with indeterminate loader - https://phabricator.wikimedia.org/T72417#1108870 (10Pginer-WMF) @Nirzar I like them. The colour-based ones look good but I have some comments: - Will the colour depend on the button colour (e.g., green dots for green buttons)? - For the det... [10:33:00] (03PS1) 10Mglaser: Added marker about table_class_list [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/195879 [10:34:33] 10MediaWiki-Developer-Summit-2015: Graphs and Maps and Raw Data on Wikipedia - https://phabricator.wikimedia.org/T87590#1108871 (10Yurik) 5Open>3Resolved [10:35:01] (03CR) 10Matthias Mullie: [C: 04-1] "There's a couple of things that I don't really like. I don't want to make drastic changes now; I think we'll be in a better place to clean" (032 comments) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195878 (owner: 10Matthias Mullie) [10:36:48] 10MediaWiki-Developer-Summit-2015: MediaWiki Developer Summit 2015: Building websites with MediaWiki + Lua - https://phabricator.wikimedia.org/T87289#1108872 (10Yurik) 5Open>3Resolved [10:37:03] (03CR) 10Matthias Mullie: "Matt: I've just pushed https://gerrit.wikimedia.org/r/#/c/195878/, where I remove the client-side conversion and request it immediately in" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/194871 (https://phabricator.wikimedia.org/T73474) (owner: 10Matthias Mullie) [10:37:40] 10LiquidThreads: Unregistered users (anons) are unable to edit posts - https://phabricator.wikimedia.org/T54805#1108877 (10Nemo_bis) I wonder if the bug summary is still correct: https://www.mediawiki.org/w/index.php?title=Thread:Help_talk:CirrusSearch/Does_incategory_locate_articles_with_transcluded_categories%... [10:38:26] 6MediaWiki-Core-Team, 6CA-team, 10SUL-Finalization, 6operations: db1068 (s4/commonswiki slave) is missing data about at least 6 users - https://phabricator.wikimedia.org/T91920#1108878 (10Krenair) >>! In T91920#1107363, @Springle wrote: >>>! In T91920#1105596, @Krenair wrote: >> Are the other two db1062 an... [10:42:43] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: Avoid formatting in italics - https://phabricator.wikimedia.org/T92370#1108879 (10aude) 3NEW [10:44:11] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 7Need-volunteer, 5Patch-For-Review: "unknown value" and "no value" in diff should be italic - https://phabricator.wikimedia.org/T63662#1108887 (10aude) created T92370 for the issue of italics. (it's one of those super annoyances for me, and probably fo... [10:47:15] 3Gather Sprint C_, 5Patch-For-Review: Edit and delete an existing collection UI - https://phabricator.wikimedia.org/T90990#1108890 (10Jhernandez) > * [x] should NOT be able to edit watchlist name/description --this specification was not in original card, so happy to pull out--- But as is, the edit's don't wor... [10:47:44] 3Gather Sprint C_, 5Patch-For-Review: Edit and delete an existing collection UI - https://phabricator.wikimedia.org/T90990#1108891 (10Jhernandez) Patch for review here: https://gerrit.wikimedia.org/r/195880 See previous comment for new acceptance criteria for the reviewin' [10:54:57] 3Gather Sprint C_, 5Patch-For-Review: A user can delete their own collection - https://phabricator.wikimedia.org/T91776#1108894 (10Jhernandez) @rmoen I think the delete button goes inside an overlay. Not sure but I think the workflow is: # View a collection page # If editable, edit button shows. Click it # O... [10:57:09] 10MediaWiki-Parser, 7Accessibility: .mw-editsection links should not be part of the element - https://phabricator.wikimedia.org/T13555#1108896 (10TheDJ) hgroup never made it to the final html5 right ? Since we cannot introduce sections right now, and because [[ http://www.w3.org/TR/2014/REC-html5-2014102... [10:58:05] 10Growth-Team: Turn off task recommendations A/B test - https://phabricator.wikimedia.org/T92171#1108897 (10Nemo_bis) Thanks for the import [11:00:06] 10MediaWiki-extensions-BookManagerv2, 7Accessibility, 5Patch-For-Review: Implement keyboard navigation - https://phabricator.wikimedia.org/T52679#1108898 (10TheDJ) [11:00:22] 10MediaWiki-extensions-BookManager, 7Accessibility: Keyboard navigation does not work when custom - https://phabricator.wikimedia.org/T33350#1108900 (10TheDJ) [11:02:25] (03PS1) 10Mobrovac: Minor language fixes and version bump [extensions/RestBaseUpdateJobs] - 10https://gerrit.wikimedia.org/r/195881 (https://phabricator.wikimedia.org/T92250) [11:14:10] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-cxserver, 5ContentTranslation-Release4, 3LE-Sprint-84: Create a checklist of development items to be completed before enabling a new language pair - https://phabricator.wikimedia.org/T91627#1091673 (10santhosh) https://www.mediawiki.org/wiki/C... [11:18:45] Hello. I am trying to make oauth through wikimedia on my iste with mediawiki-extensions-OAuth but always get "{"error":"mwoauth-oauth-exception"}" in response. Consumer and secret keys are correct [11:31:24] 10Gather, 3Gather Sprint C_, 5Patch-For-Review: Fix design issues on the collection page - https://phabricator.wikimedia.org/T91634#1108933 (10Jhernandez) See ^^^ for patch for review : https://gerrit.wikimedia.org/r/#/c/195884/ - [x] Move user icon 1px below - [x] There is too much space between title and... [11:35:43] 10Gather, 3Gather Sprint C_, 5Patch-For-Review: Fix design issues on the collection page - https://phabricator.wikimedia.org/T91634#1108937 (10Jhernandez) Here is a gif showing the spacing with this patch: {F80911} Open it up clicking the image (phabricator hates gifs) and wait, there's 3 seconds of collec... [11:45:31] 10MediaWiki-extensions-BookManagerv2, 7Accessibility, 5Patch-For-Review: Implement keyboard navigation for Bookmanager - https://phabricator.wikimedia.org/T52679#1108945 (10Qgil) [11:48:58] 6Commons, 10Wikimedia-General-or-Unknown, 7Tracking: Bug and feature requests related to Wikimedia Commons (tracking) - https://phabricator.wikimedia.org/T39883#1108946 (10Nemo_bis) > Please use / watch the project Commons instead of this task. I wish I could, but that would mean a 57 % increase of the open... [11:52:18] 10Spelling-Dictionary, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Collaborative spelling dictionary building tool - https://phabricator.wikimedia.org/T92243#1108947 (10Qgil) @KartikMistry, do you mind adding the links/ comments next to each point in the description, please? This way it is easie... [11:55:34] 10Wikimedia-Interwiki-links: Add all global sites as valid interwiki links - https://phabricator.wikimedia.org/T47116#1108948 (10TTO) >>! In T47116#1103169, @awight wrote: > Shouldn't the abbreviated interwiki prefixes be tracked as a new column in mediawiki-core/maintenance/interwiki.sql? What do you mean? [11:56:44] 6Phabricator, 6Security, 6WMF-NDA: Enable select Fundraising people to modify policy for tasks - https://phabricator.wikimedia.org/T88762#1108949 (10Qgil) >>! In T823#1106786, @atgo wrote: > @dartar @qgil 'm pretty happy with it, though I would like to expand the > group who can write policy a little bit to... [11:59:23] 6Phabricator, 10Phabricator-Upstream: Phabricator should only notify changes to the "Security" field if it is indeed changed - https://phabricator.wikimedia.org/T87135#1108953 (10Qgil) "Is Sprint" is another custom field, so again not a good case for a report upstream. As far as I'm aware, our Security extens... [12:00:44] 10Gather, 3Gather Sprint C_, 5Patch-For-Review: Fix design issues on the collection page - https://phabricator.wikimedia.org/T91634#1108954 (10Jhernandez) a:3Jhernandez [12:01:35] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: No language fallback applied for property labels on qualifiers and references in JS UI. - https://phabricator.wikimedia.org/T88275#1108955 (10adrianheine) My proposal: # Move the existing formatting JS code into an EntityIdFormatter # Replace usage of the... [12:08:09] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: [Dispatch via delayed job] Factor dispatch logic out of maintenance script - https://phabricator.wikimedia.org/T70380#1108964 (10Lydia_Pintscher) [12:08:10] 10MediaWiki-extensions-WikibaseClient, 10Wikidata, 3§ Wikidata-Sprint-2015-02-25: Implement hybrid mode for change dispatcher, which uses both wb_items_per_site and wb_changes_subscription. - https://phabricator.wikimedia.org/T90755#1108963 (10Lydia_Pintscher) [12:08:45] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 3§ Wikidata-Sprint-2015-03-11: [Dispatch via delayed job] Factor dispatch logic out of maintenance script - https://phabricator.wikimedia.org/T70380#1108965 (10Tobi_WMDE_SW) [12:09:50] 10MediaWiki-extensions-GeoData, 10MediaWiki-extensions-WikibaseClient, 10Wikidata, 10Wikipedia-App-Android-App, and 4 others: GeoData should pull coordinates from Wikidata on sites with the Wikibase Client - https://phabricator.wikimedia.org/T35704#1108969 (10Tobi_WMDE_SW) [12:10:25] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 3§ Wikidata-Sprint-2015-02-25: Allow list of available languages to be configurable - https://phabricator.wikimedia.org/T86182#1108979 (10Lydia_Pintscher) [12:10:27] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: Make language list injectable throughout backend - https://phabricator.wikimedia.org/T87761#1108977 (10Lydia_Pintscher) 5Open>3Resolved a:3Lydia_Pintscher [12:12:26] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 3§ Wikidata-Sprint-2015-02-03, 3§ Wikidata-Sprint-2015-02-25, 3§ Wikidata-Sprint-2015-03-11: UI should get list of supported languages from the backend, via dedicated resource loader module - https://phabricator.wikimedia.org/T78007#1108987 (10Tobi_WM... [12:14:49] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 3§ Wikidata-Sprint-2015-02-03, 3§ Wikidata-Sprint-2015-02-25, 3§ Wikidata-Sprint-2015-03-11: UI should get list of supported languages from the backend, via dedicated resource loader module - https://phabricator.wikimedia.org/T78007#1108989 (10Tobi_WM... [12:15:41] 10Spelling-Dictionary, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Collaborative spelling dictionary building tool - https://phabricator.wikimedia.org/T92243#1108991 (10NiharikaKohli) @Qgil, actually I meant that the wrap-up blogpost and the project URLs should also be added to the Past Projects... [12:18:14] 10Wikimedia-Site-requests, 7Easy, 5Patch-For-Review: Tidy up wmf-config CommonSettings.php and InitialiseSettings.php - https://phabricator.wikimedia.org/T31902#1108993 (10Nemo_bis) [12:18:48] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: Feature switch for using subscription mechanism for change propagation. - https://phabricator.wikimedia.org/T88419#1108994 (10Tobi_WMDE_SW) [12:18:49] 10MediaWiki-extensions-WikibaseClient, 10Wikidata, 3§ Wikidata-Sprint-2015-02-25: Implement hybrid mode for change dispatcher, which uses both wb_items_per_site and wb_changes_subscription. - https://phabricator.wikimedia.org/T90755#1108995 (10Tobi_WMDE_SW) [12:20:10] 10Wikimedia-Site-requests, 7Easy, 5Patch-For-Review: Tidy up wmf-config CommonSettings.php and InitialiseSettings.php - https://phabricator.wikimedia.org/T31902#326552 (10Nemo_bis) This is not General/Unknown. Configuration matters traditionally go in Site requests unless there is a more specific component;... [12:20:51] 6Language-Engineering, 7Tracking: [Tracker] Language Engineering tracker of trackers - https://phabricator.wikimedia.org/T76456#1109004 (10Nemo_bis) [12:20:53] 7Tracking: Tracking bug (tracking) - https://phabricator.wikimedia.org/T4007#1109003 (10Nemo_bis) [12:20:55] 10MediaWiki-extensions-UniversalLanguageSelector, 10ULS-CompactLinks, 5MW-1.24-release, 7Tracking: Make compact interwikis (interlanguage wikilinks) default (tracking) - https://phabricator.wikimedia.org/T66793#1109000 (10Nemo_bis) 5declined>3Invalid a:3Nemo_bis Declined looks bad. We definitely want... [12:22:46] 10Spelling-Dictionary, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Collaborative spelling dictionary building tool - https://phabricator.wikimedia.org/T92243#1109006 (10KartikMistry) @Qgil, Sure. I'll do that. [12:23:07] 10Spelling-Dictionary, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Collaborative spelling dictionary building tool - https://phabricator.wikimedia.org/T92243#1109007 (10NiharikaKohli) [12:23:51] 10Wikidata-Query-Service: Open questions for Blazegraph data model research - https://phabricator.wikimedia.org/T92308#1109008 (10Thompsonbry.systap) This may not be the right ticket, but I did some experimentation with the data sets that I referenced above looking at parameterization of the load. Using an Inte... [12:24:25] 10Wikimedia-General-or-Unknown, 6Wikisource, 7Tracking: Wikisource related bugs and enhancements (tracking) - https://phabricator.wikimedia.org/T37925#1109010 (10Nemo_bis) > Please use / watch the project Wikisource instead of this task. I wish I could, but that would increase my subscriptions in this area... [12:25:30] 10MediaWiki-extensions-Translate, 7I18n, 3LE-Sprint-84: Not able to mark big pages for translation at mediawiki.org - https://phabricator.wikimedia.org/T90704#1109014 (10Springle) May not be relevant any longer, but this recalled T72153 to mind. We'll have to poll the master innodb status to catch the curren... [12:26:43] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-02-03, and 2 others: Split entityViewInit into WikibaseRepo and WikibaseView part - https://phabricator.wikimedia.org/T87434#1109018 (10Tobi_WMDE_SW) [12:27:36] 10MediaWiki-extensions-TimedMediaHandler, 6Multimedia, 7Accessibility: Video thumbs are not accessible to the visually impaired - https://phabricator.wikimedia.org/T43696#1109022 (10TheDJ) There indeed is an alt now, but it's still not really a great overall experience. More work is definetly still needed h... [12:28:21] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 3§ Wikidata-Sprint-2015-02-25, 3§ Wikidata-Sprint-2015-03-11: investigate solutions for items with a large number of aliases - https://phabricator.wikimedia.org/T87579#1109024 (10Tobi_WMDE_SW) [12:28:31] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, and 2 others: Newly added language ky and pa doesn't reflect in Language Limn Graph - https://phabricator.wikimedia.org/T92236#1109026 (10Milimetric) When the ky and pa wikis were added, they were... [12:28:53] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, and 2 others: Newly added language ky and pa doesn't reflect in Language Limn Graph - https://phabricator.wikimedia.org/T92236#1109027 (10Milimetric) a:5KartikMistry>3Milimetric [12:28:58] 10MediaWiki-extensions-CentralAuth, 6Editing, 10Possible-Tech-Projects, 7Crosswiki, and 2 others: Cross-wiki watchlists - https://phabricator.wikimedia.org/T5525#1109028 (10Springle) >>! In T5525#1104132, @NiharikaKohli wrote: > @Springle, would you like to mentor this project? Probably not alone since I... [12:29:16] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-02-25, 3§ Wikidata-Sprint-2015-03-11: Implement RDF mapping for Data Types - https://phabricator.wikimedia.org/T53795#1109029 (10Tobi_WMDE_SW) [12:29:24] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-02-25, 3§ Wikidata-Sprint-2015-03-11: Script for creating RDF dumps of all entities - https://phabricator.wikimedia.org/T46580#1109032 (10Tobi_WMDE_SW) [12:29:31] 10MediaWiki-extensions-ConfirmEdit-(CAPTCHA-extension), 5Patch-For-Review: ConfirmEdit should block IPs after a set number of failed CAPTCHA attempts - https://phabricator.wikimedia.org/T48292#1109033 (10Nemo_bis) > It is deactivated by default, so if we want to enable it on wmf-wikis, we need to configure it.... [12:29:34] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-02-25, 3§ Wikidata-Sprint-2015-03-11: Implement RDF mapping for Claims/Statements - https://phabricator.wikimedia.org/T50141#1109034 (10Tobi_WMDE_SW) [12:29:37] 10Wikimedia-Site-requests, 7Easy, 5Patch-For-Review: Tidy up wmf-config CommonSettings.php and InitialiseSettings.php - https://phabricator.wikimedia.org/T31902#1109036 (10TTO) Continuing the OT, the Site-requests project is, to me, ill-defined. Traditionally, stuff to do with *Settings.php has gone in there... [12:30:02] 10MediaWiki-extensions-ConfirmEdit-(CAPTCHA-extension), 5MW-1.25-release, 5Patch-For-Review, 7notice: ConfirmEdit should block IPs after a set number of failed CAPTCHA attempts - https://phabricator.wikimedia.org/T48292#1109039 (10Nemo_bis) [12:30:35] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 3§ Wikidata-Sprint-2015-02-25, 3§ Wikidata-Sprint-2015-03-11: Allow list of available languages to be configurable - https://phabricator.wikimedia.org/T86182#1109043 (10Tobi_WMDE_SW) [12:31:28] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-02-25: StorageException in EditEntityActionTest::testActionForPage (edit-already-exists) and related failures - https://phabricator.wikimedia.org/T72710#1109049 (10Lydia_Pintscher) 5Open>3Resolved a:3Lydi... [12:32:23] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 7Documentation, 3§ Wikidata-Sprint-2015-02-25, 3§ Wikidata-Sprint-2015-03-11: update documentation of high-level data model - https://phabricator.wikimedia.org/T75603#1109054 (10Tobi_WMDE_SW) [12:35:40] 10Wikimedia-Site-requests: Set $wgRateLimits['badcaptcha'] to counter bots - https://phabricator.wikimedia.org/T92376#1109056 (10Nemo_bis) 3NEW [12:36:05] 10MediaWiki-ResourceLoader, 10MediaWiki-Vagrant, 10Continuous-Integration, 10Wikidata, and 3 others: qunit test broken without explicitly setting $wgResourceLoaderMaxQueryLength - https://phabricator.wikimedia.org/T90453#1109063 (10Tobi_WMDE_SW) [12:36:11] 10Wikimedia-Site-requests: Set $wgRateLimits['badcaptcha'] to counter bots - https://phabricator.wikimedia.org/T92376#1109064 (10Nemo_bis) [12:36:12] 10MediaWiki-extensions-ConfirmEdit-(CAPTCHA-extension), 5MW-1.25-release, 5Patch-For-Review, 7notice: ConfirmEdit should block IPs after a set number of failed CAPTCHA attempts - https://phabricator.wikimedia.org/T48292#1109065 (10Nemo_bis) [12:36:19] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-02-25, 3§ Wikidata-Sprint-2015-03-11: Browsertests for geo value input - https://phabricator.wikimedia.org/T88543#1109067 (10Tobi_WMDE_SW) [12:36:33] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-02-25, 3§ Wikidata-Sprint-2015-03-11: Smoke browsertests for statements on properties - https://phabricator.wikimedia.org/T74664#1109070 (10Tobi_WMDE_SW) [12:36:49] 10MediaWiki-extensions-SemanticForms, 7I18n: SF & translate extension : "Save page" button does nothing (saves nothing) - https://phabricator.wikimedia.org/T49510#1109074 (10Darkdragon09) Hi, I would to work on this to get understanding of Semantic Forms and Translate extension of Mediawiki. I was not able to... [12:37:34] 10MediaWiki-Interface, 7Accessibility, 7Upstream: After introduction of WAI-ARIA roles, Voice-Over is extremely slow - https://phabricator.wikimedia.org/T44394#1109084 (10TheDJ) [12:40:20] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, and 3 others: Newly added language ky and pa doesn't reflect in Language Limn Graph - https://phabricator.wikimedia.org/T92236#1109093 (10Milimetric) 5Open>3Resolved Please take a look at the... [12:41:32] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-02-03, and 2 others: Special:GoToLinkedPage should support redirects - https://phabricator.wikimedia.org/T78526#1109095 (10Tobi_WMDE_SW) [12:41:48] 10Wikimedia-Site-requests, 7Easy, 5Patch-For-Review: Tidy up wmf-config CommonSettings.php and InitialiseSettings.php - https://phabricator.wikimedia.org/T31902#1109097 (10Glaisher) I removed it from #site-requests as it doesn't actually change a configuration on wiki. I don't mind much about which project t... [12:43:19] (03CR) 10Rits: "should i use the $linkPrefixCharset then? would it be feasible" [core] - 10https://gerrit.wikimedia.org/r/195439 (owner: 10Rits) [12:44:06] 10MediaWiki-extensions-ContentTranslation, 10Ops-Access-Requests, 6operations, 3LE-Sprint-84, 5Patch-For-Review: Access to stat1003 for Niklas and Kartik - https://phabricator.wikimedia.org/T91625#1109102 (10Milimetric) This seems to have spiraled into a lot bigger thing than I imagined. I would like to... [12:44:24] Hi, I am Tonia an Software Engineering Student (undergraduate) and I would like to work on the project "Extension to identify and delete spam pages" as part of Outreachy. Can anyone give me some pointers on where to begin? Thanks [12:45:35] 10Wikimedia-Site-requests: Set $wgRateLimits['badcaptcha'] to counter bots - https://phabricator.wikimedia.org/T92376#1109105 (10Glaisher) [12:45:36] 10Wikimania-Hackathon-2015, 10Wikimedia-General-or-Unknown, 7Tracking: Steward, global sysop and SWMT tasks bugs (tracking) - https://phabricator.wikimedia.org/T43492#1109104 (10Glaisher) [12:46:08] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 7Performance, and 3 others: batch entity revision lookup for performance improvements - https://phabricator.wikimedia.org/T87238#1109109 (10Tobi_WMDE_SW) [12:47:19] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-02-03, and 2 others: Allow simultaneous editing of mainsnak and references - https://phabricator.wikimedia.org/T87759#1109114 (10Tobi_WMDE_SW) [12:48:16] 10MonoBook, 10Vector, 7Accessibility: Tabs in Monobook and Vector should indicate selected state - https://phabricator.wikimedia.org/T20465#1109117 (10TheDJ) [12:49:32] 10Spelling-Dictionary, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Collaborative spelling dictionary building tool - https://phabricator.wikimedia.org/T92243#1109123 (10Ankitashukla) [12:50:56] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-02-03, and 2 others: API function wbsetqualifier blocks frontend - https://phabricator.wikimedia.org/T89698#1109129 (10Tobi_WMDE_SW) [12:51:43] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-02-03, and 2 others: Non standard calandar model breaks JS UI - https://phabricator.wikimedia.org/T89698#1109145 (10Tobi_WMDE_SW) [12:51:45] 10MonoBook, 10Vector, 7Accessibility: Tabs in Monobook and Vector should indicate selected state - https://phabricator.wikimedia.org/T20465#1109147 (10TheDJ) This ticket originally was about a proposal to use strong and em to indicate selected state for elements in the monobook skin. The scope of that solut... [12:51:57] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-02-03, and 2 others: Non standard calandar model breaks JS UI - https://phabricator.wikimedia.org/T89698#1042981 (10Tobi_WMDE_SW) p:5Unbreak!>3High [12:54:05] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 7Performance, and 2 others: Frontend JS should not re-render qualifiers and references upon load. - https://phabricator.wikimedia.org/T88425#1109170 (10Tobi_WMDE_SW) [12:56:31] tonietonia: Come over to #mediawiki. Less noisy. [12:57:21] Thanks Niharika. I will do that [12:57:21] Niharika: this channel has become unusably noisy, hasn’t it? :( [12:58:12] YuviPanda: I find it quite handy. But it ain't for the new folks. I remember being mightily confused when I first encoutered grrrit-wm and wikibugs. [12:58:39] Niharika: true, but needs filtering. last fair bit of spam is wikidata stuff, for example... [12:59:40] YuviPanda: Yeah, right. And the LE stuff should probably be restricted to -i18n rather than both this and that. [12:59:48] Niharika: yeah [13:00:06] 10MediaWiki-Watchlist, 10MediaWiki-extensions-GlobalUsage, 6Commons, 6Editing, and 3 others: Show edits made on WikimediaCommons on the Watchlist - https://phabricator.wikimedia.org/T91192#1109222 (10Steinsplitter) [13:00:10] YuviPanda: Is this something I can help with? I'd love to poke about and learn stuff. [13:00:23] Niharika: oh totally! Would love help :D [13:00:25] let me find the repo [13:00:30] :D [13:01:09] 6Commons, 10Wikimedia-Site-requests: Change the value of wmgAbuseFilterEmergencyDisableCount for commonswiki - https://phabricator.wikimedia.org/T87431#1109224 (10Steinsplitter) [13:01:27] Niharika: https://www.mediawiki.org/wiki/Wikibugs [13:01:35] Niharika: source is https://github.com/wikimedia/labs-tools-wikibugs2/ [13:01:44] Niharika: channel config is https://github.com/wikimedia/labs-tools-wikibugs2/blob/master/channels.yaml [13:02:19] 6Commons, 10Wikimedia-Site-requests: Change the value of wmgAbuseFilterEmergencyDisableCount for commonswiki - https://phabricator.wikimedia.org/T87431#1109231 (10Glaisher) To get this done, can we agree on a value here? [13:02:24] 10MediaWiki-extensions-TimedMediaHandler, 6Commons, 6Multimedia: Commons uploads: Support automatic conversion of video formats to free formats - https://phabricator.wikimedia.org/T45150#1109233 (10TheDJ) There is now a volunteer developed and maintained service hosted on wmf labs that does all this, with... [13:03:30] 6Editing, 6Language-Engineering, 10Possible-Tech-Projects, 7I18n: Unified language proofing tools integration framework - https://phabricator.wikimedia.org/T89107#1109234 (10Mdshekh) @Aklapper Hii, microtask above is to fix a bug related to visual editor toolbar button,but starter bugs under "Language Engi... [13:03:32] 6Commons, 10Wikimedia-General-or-Unknown, 7Tracking: Bug and feature requests related to Wikimedia Commons (tracking) - https://phabricator.wikimedia.org/T39883#1109235 (10Steinsplitter) >>! In T39883#1108946, @Nemo_bis wrote: >> Please use / watch the project Commons instead of this task. > > I wish I coul... [13:04:34] YuviPanda: In channels.yaml, the lines in blue are the projects or just text strings? [13:04:46] 10Spelling-Dictionary, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Collaborative spelling dictionary building tool - https://phabricator.wikimedia.org/T92243#1109237 (10Qgil) @NiharikaKohli, good idea! Each summary in the Past projects page could link to the wrap up post (to have the overview) a... [13:04:53] Niharika: projects, yeah. [13:04:59] Niharika: or rather, regular expressions that match projects [13:05:08] YuviPanda: Right. [13:05:12] Niharika: wikimedia-dev is also the ‘default’. if nothing matches, it comes here. [13:05:54] Niharika: so I suspect that for the wikidata stuff, because one or two things don’t match (Tracking, maybe?) they end up here. [13:06:08] YuviPanda: Okay. Right. [13:06:25] Niharika: one way to fix it is perhaps to not have it send to -dev if it matches anywhere else... [13:08:01] YuviPanda: Okay. Hint on how to check if it's already matched someplace else? [13:09:20] Niharika: somewhere in https://github.com/wikimedia/labs-tools-wikibugs2/blob/master/channelfilter.py [13:10:10] Niharika: another option is to move the default channel to somewhere else... [13:10:21] Niharika: and explicitly specify what comes here. [13:11:42] YuviPanda: Yeah. What about -tech? Can we use that as default? (I've rarely seen any activity there). Although not duplicating stuff is still a good idea and I'm gonna dig into that. [13:12:01] Niharika: ah, probably not -tech. I think several people will kill us for it… :) [13:13:38] YuviPanda: Hmm. [13:14:15] 10MediaWiki-extensions-WikibaseClient, 10Wikidata, 7Schema-change, 3§ Wikidata-Sprint-2015-03-11: Add render_key field to wbc_entity_usage to enable per-language usage tracking - https://phabricator.wikimedia.org/T92288#1109257 (10Tobi_WMDE_SW) [13:14:28] Niharika: but look at the wikidata spam. If wikibugs just sees ‘oh, ok, wikidata’, and then just *stops*, that would be nice :D [13:14:38] Niharika: basically, things should come to the default channel only if *no* projects matched [13:14:44] not if *any one project did not match* [13:14:46] if that makes sense [13:15:31] YuviPanda: Yep, it does. [13:16:23] (03PS1) 10Matthias Mullie: Add flow_workflow_update_timestamp index [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195888 [13:16:26] (03PS1) 10Matthias Mullie: Index Flow data [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195889 (https://phabricator.wikimedia.org/T78788) [13:16:30] (03PS1) 10Matthias Mullie: Maint script to fix workflow_last_update_timestamp dates [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195890 [13:16:32] (03PS1) 10Matthias Mullie: Search indexed Flow data [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195891 (https://phabricator.wikimedia.org/T78789) [13:16:36] (03PS1) 10Matthias Mullie: Search API endpoint [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195892 (https://phabricator.wikimedia.org/T78791) [13:17:41] 10MediaWiki-extensions-Scribunto: Load local Geshi.css in module namespace - https://phabricator.wikimedia.org/T49798#1109270 (10Anomie) 5Open>3Resolved a:3Anomie This does appear to be resolved, likely by the linked change. [13:17:53] 10Spelling-Dictionary, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Collaborative spelling dictionary building tool - https://phabricator.wikimedia.org/T92243#1109273 (10Qgil) Thanks, this is good, but please let me help you to make it even better. :) * Is there a functional prototype in Labs o... [13:19:03] (03CR) 10Catrope: [C: 031] Make toolbar non-floatable [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195834 (https://phabricator.wikimedia.org/T90762) (owner: 10Mattflaschen) [13:20:16] (03CR) 10Anomie: ApiParse: Support previewing section=new (031 comment) [core] - 10https://gerrit.wikimedia.org/r/195695 (https://phabricator.wikimedia.org/T84877) (owner: 10TheDJ) [13:21:25] (03PS5) 10Werdna: Add "extrawikis" role. [vagrant] - 10https://gerrit.wikimedia.org/r/195576 [13:22:05] (03PS6) 10Werdna: Add "extrawikis" role. [vagrant] - 10https://gerrit.wikimedia.org/r/195576 [13:23:45] 10Wikimedia-Site-requests, 5Patch-For-Review: Standardize name of interface editor group across Wikimedia wikis - https://phabricator.wikimedia.org/T85731#1109276 (10Calak) @Glaisher You forgot to change 'interface_editor' on abusefilter.php. Now we have two distinct user groups on ckbwiki. [13:24:43] (03Abandoned) 10Matthias Mullie: Search [extensions/Flow] - 10https://gerrit.wikimedia.org/r/126996 (https://phabricator.wikimedia.org/T78788) (owner: 10Matthias Mullie) [13:24:46] Niharika: https://phabricator.wikimedia.org/tag/wikibugs/ is the workboard for the project :) [13:24:47] 10Wikimedia-Site-requests, 5Patch-For-Review: Standardize name of interface editor group across Wikimedia wikis - https://phabricator.wikimedia.org/T85731#1109280 (10Glaisher) eh... sorry..will fix it later. :/ have to leave now [13:25:23] (03PS7) 10Werdna: Add "extrawikis" role. [vagrant] - 10https://gerrit.wikimedia.org/r/195576 [13:25:48] YuviPanda: Ah. Thanks! I'm brushing up my rusty Python. :) [13:26:02] Niharika: :D it’s python3 as well [13:26:15] and both valhallasw and legoktm are very happy to accept contributions :D [13:27:00] (03PS1) 10AdSvS: Additional params 'filename' and 'link text' [extensions/Cargo] - 10https://gerrit.wikimedia.org/r/195893 [13:27:01] YuviPanda: I'm very happy to contribute. :D [13:27:06] +1 [13:32:50] 10MediaWiki-Database, 5Patch-For-Review, 7Performance, 7Schema-change: Allow comments longer than 255 bytes - https://phabricator.wikimedia.org/T6715#1109285 (10Springle) [13:32:51] 10Wikimedia-General-or-Unknown, 7Schema-change, 7Tracking: Schema changes for Wikimedia wikis (tracking) - https://phabricator.wikimedia.org/T51188#1109284 (10Springle) [13:33:14] (03PS8) 10Werdna: Add "extrawikis" role. [vagrant] - 10https://gerrit.wikimedia.org/r/195576 [13:33:47] 6Editing, 6Language-Engineering, 10Possible-Tech-Projects, 7I18n: Unified language proofing tools integration framework - https://phabricator.wikimedia.org/T89107#1109286 (10NiharikaKohli) @Mdshekh, pick one from https://phabricator.wikimedia.org/project/board/483/ [13:34:49] (03PS1) 10Yurik: Updated vega to upstream v1.5.0 [extensions/Graph] (wmf/1.25wmf19) - 10https://gerrit.wikimedia.org/r/195894 [13:36:41] (03PS6) 10Springle: Allow edit summaries to be up to 767 bytes long [core] - 10https://gerrit.wikimedia.org/r/191811 (https://phabricator.wikimedia.org/T6715) (owner: 10Brian Wolff) [13:37:45] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, and 3 others: Newly added language ky and pa doesn't reflect in Language Limn Graph - https://phabricator.wikimedia.org/T92236#1109296 (10KartikMistry) @Milimetric Thanks a lot! http://language-re... [13:38:11] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, and 3 others: Newly added language ky and pa doesn't reflect in Language Limn Graph - https://phabricator.wikimedia.org/T92236#1109297 (10KartikMistry) My bad. Sync is still needed. Sorry! [13:38:58] (03CR) 10Matthias Mullie: Index Flow data (032 comments) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195889 (https://phabricator.wikimedia.org/T78788) (owner: 10Matthias Mullie) [13:39:01] (03CR) 10Springle: [C: 031] "The schema change will start shortly. I suppose this could be +2'd quickly since it's only a length thing?" [core] - 10https://gerrit.wikimedia.org/r/191811 (https://phabricator.wikimedia.org/T6715) (owner: 10Brian Wolff) [13:39:04] (03CR) 10Matthias Mullie: Search indexed Flow data (032 comments) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195891 (https://phabricator.wikimedia.org/T78789) (owner: 10Matthias Mullie) [13:40:48] (03CR) 10Matthias Mullie: [C: 04-1] "Parent patch has been abandoned and split into 5 newer patches." [extensions/Flow] - 10https://gerrit.wikimedia.org/r/161251 (https://phabricator.wikimedia.org/T78787) (owner: 10Matthias Mullie) [13:41:09] 4(no projects): Implement (dump) formatter for quantities with units based on URIs - https://phabricator.wikimedia.org/T92382#1109312 (10Tobi_WMDE_SW) 3NEW [13:42:15] (03CR) 10Matthias Mullie: [C: 031] "Merge after release has gone out" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/193053 (owner: 10EBernhardson) [13:42:35] (03CR) 10Matthias Mullie: [C: 032] Reuse history templates [extensions/Flow] - 10https://gerrit.wikimedia.org/r/193054 (owner: 10EBernhardson) [13:42:46] (03PS6) 10Matthias Mullie: Defer required module decision to the blocks [extensions/Flow] - 10https://gerrit.wikimedia.org/r/194230 (owner: 10EBernhardson) [13:45:22] 10Wikimedia-Site-requests, 7Commons: Change the value of wmgAbuseFilterEmergencyDisableCount for commonswiki - https://phabricator.wikimedia.org/T87431#1109323 (10Steinsplitter) >>! In T87431#1109231, @Glaisher wrote: > To get this done, can we agree on a value here? I think 30% (= 0.30) should be enough. [13:45:44] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: Fix empty map serialization behaviour - https://phabricator.wikimedia.org/T73349#1109325 (10Tobi_WMDE_SW) [13:47:10] 10MediaWiki-extensions-WikibaseRepository, 10Wikibase-DataModel-Serialization, 10Wikidata: Fix empty map serialization behaviour - https://phabricator.wikimedia.org/T73349#774997 (10Tobi_WMDE_SW) [13:54:19] (03CR) 10Matthias Mullie: [C: 04-1] "Doesn't work for me; CSS seems to be missing on (at least) board page" (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/194230 (owner: 10EBernhardson) [13:57:33] (03CR) 10Anomie: [C: 032] "Since Springle approves the DB changes, let's do this." [core] - 10https://gerrit.wikimedia.org/r/191811 (https://phabricator.wikimedia.org/T6715) (owner: 10Brian Wolff) [13:58:47] 10MediaWiki-extensions-Newsletter, 6Engineering-Community, 10Possible-Tech-Projects, 10Wikimedia-Hackathon-2015: Possible Project for a Newsletter MediaWiki extension - https://phabricator.wikimedia.org/T76199#1109367 (10Tinaj1234) I'm very much interested in working on this project. I believe I'm equipped... [14:00:46] (03CR) 10Krinkle: This is the initial re-activation of VE (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/192759 (https://phabricator.wikimedia.org/T88182) (owner: 10Mattflaschen) [14:04:44] (03Merged) 10jenkins-bot: Allow edit summaries to be up to 767 bytes long [core] - 10https://gerrit.wikimedia.org/r/191811 (https://phabricator.wikimedia.org/T6715) (owner: 10Brian Wolff) [14:06:18] (03CR) 10Matthias Mullie: [C: 04-1] "Some quick feedback. I guess it looks mostly good now, but haven't been able to really test (some parent patch is causing CSS glichtes)" (035 comments) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/194047 (owner: 10EBernhardson) [14:07:33] 10MediaWiki-extensions-BookManagerv2, 7Accessibility, 7JavaScript, 5Patch-For-Review: Implement keyboard navigation for Bookmanagerv2 - https://phabricator.wikimedia.org/T52679#1109402 (10He7d3r) [14:09:00] (03CR) 10Matthias Mullie: [C: 031] "Merge after code freeze" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195438 (https://phabricator.wikimedia.org/T91901) (owner: 10EBernhardson) [14:09:33] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 7Need-volunteer: Tag protected items with a padlock - https://phabricator.wikimedia.org/T64554#1109415 (10Lydia_Pintscher) @Jdforrester-wmf: poke :) [14:14:57] (03CR) 10Matthias Mullie: [C: 031] "Other than Krinke's comment, this is good to merge after code freeze" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/192759 (https://phabricator.wikimedia.org/T88182) (owner: 10Mattflaschen) [14:15:25] 10MediaWiki-extensions-ContentTranslation, 10ContentTranslation-Deployments, 5ContentTranslation-Release4, 3LE-Sprint-84, 3Roadmap: Enable ContentTranslation in the French Wikipedia - https://phabricator.wikimedia.org/T91836#1109426 (10KartikMistry) a:3KartikMistry Claiming myself as of now, but we've... [14:17:26] 10MediaWiki-extensions-Newsletter, 6Engineering-Community, 10Possible-Tech-Projects, 10Wikimedia-Hackathon-2015: Possible Project for a Newsletter MediaWiki extension - https://phabricator.wikimedia.org/T76199#1109430 (1001tonythomas) That looks great. Adding few microtasks. I think most of the work would... [14:19:12] 10MediaWiki-extensions-Newsletter, 6Engineering-Community, 10Possible-Tech-Projects, 10Wikimedia-Hackathon-2015: Possible Project for a Newsletter MediaWiki extension - https://phabricator.wikimedia.org/T76199#1109435 (10NiharikaKohli) @01tonythomas, add it to the task description. :) [14:21:51] (03CR) 10Matthias Mullie: [C: 032] Make toolbar non-floatable [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195834 (https://phabricator.wikimedia.org/T90762) (owner: 10Mattflaschen) [14:22:29] 10MediaWiki-extensions-Scribunto: Load local Geshi.css in module namespace - https://phabricator.wikimedia.org/T49798#1109441 (10He7d3r) I confirmed this works at https://pt.wikibooks.org/wiki/Module:String with https://pt.wikibooks.org/wiki/MediaWiki:Geshi.css?diff=276854&oldid=172197 [14:22:45] (03PS4) 10Krinkle: jsduck: Refactor example iframe to catch uncaught errors [core] - 10https://gerrit.wikimedia.org/r/195099 [14:23:28] 10MediaWiki-extensions-CentralNotice, 10Fundraising-Backlog, 3Fundraising Sprint Flaming Lips: Spike: How to implement performant campaign-associated mixins - https://phabricator.wikimedia.org/T90913#1109445 (10AndyRussG) >>! In T90913#1106994, @awight wrote: > That sounds great! One small question though,... [14:23:43] 10MediaWiki-extensions-CentralNotice, 10Fundraising-Backlog, 3Fundraising Sprint Flaming Lips: Spike: How to implement performant campaign-associated mixins - https://phabricator.wikimedia.org/T90913#1109447 (10AndyRussG) 5Resolved>3Open [14:23:45] 10MediaWiki-extensions-CentralNotice, 10Wikimedia-Fundraising, 7Epic, 3HTTPS-by-default, and 3 others: Special:RecordImpression should die in a fire - https://phabricator.wikimedia.org/T45250#1109448 (10AndyRussG) [14:23:46] 10MediaWiki-extensions-CentralNotice, 10Fundraising-Backlog, 7Epic: Banner History - https://phabricator.wikimedia.org/T78089#1109449 (10AndyRussG) [14:23:47] 10MediaWiki-extensions-CentralNotice, 10Fundraising Tech Backlog, 3Fundraising Sprint Flaming Lips, 5Patch-For-Review: Do banner hiding with mixins - https://phabricator.wikimedia.org/T86100#1109450 (10AndyRussG) [14:24:48] 10MediaWiki-API, 6MediaWiki-Core-Team, 5Patch-For-Review: Clean up ApiResult and ApiFormatXml, create new formatversion - https://phabricator.wikimedia.org/T76728#1109456 (10Anomie) [14:24:58] 10MediaWiki-API, 6MediaWiki-Core-Team, 5Patch-For-Review: Clean up ApiResult and ApiFormatXml, create new formatversion - https://phabricator.wikimedia.org/T76728#819003 (10Anomie) [14:25:10] 10MediaWiki-API, 10Wikidata: Update Wikidata for ApiResult rewrite - https://phabricator.wikimedia.org/T91073#1109461 (10Anomie) [14:25:11] 10MediaWiki-API, 6MediaWiki-Core-Team, 5Patch-For-Review: Clean up ApiResult and ApiFormatXml, create new formatversion - https://phabricator.wikimedia.org/T76728#819003 (10Anomie) [14:26:23] 10MediaWiki-extensions-Newsletter, 6Engineering-Community, 10Possible-Tech-Projects, 10Wikimedia-Hackathon-2015: Possible Project for a Newsletter MediaWiki extension - https://phabricator.wikimedia.org/T76199#1109465 (10Qgil) Hi @Tinaj1234, thank you for your interest in this project. Wow, looking at task... [14:30:00] 10MediaWiki-extensions-Newsletter, 6Engineering-Community, 10Possible-Tech-Projects, 10Wikimedia-Hackathon-2015: Possible Project for a Newsletter MediaWiki extension - https://phabricator.wikimedia.org/T76199#1109471 (10NiharikaKohli) I was wondering if @Tinaj1234 was a previous GSoC/OPW intern with us. I... [14:30:17] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review: Make Wikibase Repo work with a custom File collection, not only Wikimedia Commons - https://phabricator.wikimedia.org/T90492#1109472 (10adrianheine) On a general note, I think it makes more sense to be much more flexible about this. I... [14:31:14] (03CR) 10Bartosz Dziewoński: [C: 032] jsduck: Refactor example iframe to catch uncaught errors [core] - 10https://gerrit.wikimedia.org/r/195099 (owner: 10Krinkle) [14:34:35] 10MediaWiki-extensions-Collection, 10MediaWiki-extensions-PdfBook: Thumbnail of GIF file is not displayed in PDF output - https://phabricator.wikimedia.org/T51693#1109482 (10Thgoiter) [14:35:36] 10MediaWiki-extensions-Newsletter, 6Engineering-Community, 10Possible-Tech-Projects, 10Wikimedia-Hackathon-2015: Possible Project for a Newsletter MediaWiki extension - https://phabricator.wikimedia.org/T76199#1109484 (10Qgil) See https://www.mediawiki.org/wiki/User:Tinaj1234/MassMessage [14:38:05] (03Merged) 10jenkins-bot: jsduck: Refactor example iframe to catch uncaught errors [core] - 10https://gerrit.wikimedia.org/r/195099 (owner: 10Krinkle) [14:38:09] 10MediaWiki-extensions-Collection, 10MediaWiki-extensions-PdfBook: Thumbnail of GIF file is not displayed in PDF output - https://phabricator.wikimedia.org/T51693#1109499 (10Thgoiter) Or rather "wontfix" as the PDFs are created with another technology than in 2013? [14:39:39] 10MediaWiki-extensions-ContentTranslation, 10Ops-Access-Requests, 6operations, 3LE-Sprint-84, 5Patch-For-Review: Access to stat1003 for Niklas and Kartik - https://phabricator.wikimedia.org/T91625#1109503 (10Ottomata) As far as I can tell, this is not really blocked on ops, as they could just sign the do... [14:45:04] (03PS1) 10Matthias Mullie: Add auto-rename script to makefile [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195903 [14:47:30] (03PS1) 10Krinkle: jsduck: Add 'mediawiki.startUp.js' to eg-iframe. [core] - 10https://gerrit.wikimedia.org/r/195904 [14:47:52] (03PS2) 10Krinkle: jsduck: Add 'mediawiki.startUp.js' to eg-iframe [core] - 10https://gerrit.wikimedia.org/r/195904 [14:51:22] (03CR) 10Matthias Mullie: [C: 031] "Good to merge after code freeze." [extensions/Flow] - 10https://gerrit.wikimedia.org/r/192742 (owner: 10EBernhardson) [14:53:25] (03CR) 10Matthias Mullie: [C: 031] "Good to merge after code freeze" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/193260 (owner: 10EBernhardson) [14:54:24] (03CR) 10Krinkle: [C: 032] FeedItem: Use full URL with protocol for / in Atom/RSS feeds [core] - 10https://gerrit.wikimedia.org/r/195073 (https://phabricator.wikimedia.org/T89975) (owner: 10Bartosz Dziewoński) [14:58:02] 10Citoid, 5Patch-For-Review, 3VisualEditor 2014/15 Q3 blockers: Use "WikimediaBot" as UA when making public requests - https://phabricator.wikimedia.org/T89756#1109520 (10Jdforrester-WMF) [14:58:20] 10Citoid, 5Patch-For-Review: Let outbound proxy be configurable - https://phabricator.wikimedia.org/T90341#1109527 (10Jdforrester-WMF) [14:58:32] 10Citoid, 3VisualEditor 2014/15 Q3 blockers: Make requests.js an object and pass through citoid config - https://phabricator.wikimedia.org/T89968#1109528 (10Jdforrester-WMF) [14:58:44] (03CR) 10Matthias Mullie: "Just a minor remark, looks good otherwise" (032 comments) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/193554 (https://phabricator.wikimedia.org/T91150) (owner: 10Mattflaschen) [14:58:51] 10Citoid, 3VisualEditor 2014/15 Q3 blockers: Diagnose cause of 500 error in citoid in production - https://phabricator.wikimedia.org/T89058#1109530 (10Jdforrester-WMF) [14:59:46] (03CR) 10Matthias Mullie: [C: 031] "Good to merge after code freeze" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/194210 (owner: 10Mattflaschen) [15:00:48] 10Citoid, 3VisualEditor 2014/15 Q3 blockers: Make requests.js an object and pass through citoid config - https://phabricator.wikimedia.org/T89968#1109543 (10Jdforrester-WMF) a:3Mvolz [15:00:57] (03CR) 10Matthias Mullie: [C: 031] "Good to merge after code freeze" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/194260 (owner: 10EBernhardson) [15:01:21] (03Merged) 10jenkins-bot: FeedItem: Use full URL with protocol for / in Atom/RSS feeds [core] - 10https://gerrit.wikimedia.org/r/195073 (https://phabricator.wikimedia.org/T89975) (owner: 10Bartosz Dziewoński) [15:03:26] (03PS2) 10AdSvS: Additional params 'filename' and 'link text' [extensions/Cargo] - 10https://gerrit.wikimedia.org/r/195893 [15:03:31] (03CR) 10Matthias Mullie: [C: 04-1] "There have been changes to Formatter files since this." [extensions/Flow] - 10https://gerrit.wikimedia.org/r/192743 (owner: 10EBernhardson) [15:05:57] 10MediaWiki-Recent-changes, 5Patch-For-Review: using protocol-relative URL as id in Special:RecentChanges atom feed don't validate - https://phabricator.wikimedia.org/T89975#1109564 (10matmarex) 5Open>3Resolved a:3matmarex [15:05:58] 10MediaWiki-General-or-Unknown: Protocol-relative URLs are poorly supported or unsupported by a number of HTTP clients - https://phabricator.wikimedia.org/T54253#1109566 (10matmarex) [15:08:23] (03CR) 10Matthias Mullie: [C: 031] "Good to merge after code freeze." (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/193013 (https://phabricator.wikimedia.org/T90745) (owner: 10EBernhardson) [15:08:51] (03CR) 10Yuvipanda: [C: 032] Directly interface with gerrit stream-events [labs/tools/grrrit] - 10https://gerrit.wikimedia.org/r/195861 (owner: 10Yuvipanda) [15:11:39] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: misleading placeholder text in header - https://phabricator.wikimedia.org/T92386#1109579 (10Lydia_Pintscher) 3NEW [15:12:12] 10MediaWiki-Search: Searching by date - https://phabricator.wikimedia.org/T3871#1109586 (10Nemo_bis) The "problem" is that few core devs' wikis use the MySQL search engine and know about it. Brion, do you have ideas how this could be implemented if someone wanted to work on it? [15:17:08] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: expand in other languages box by default - https://phabricator.wikimedia.org/T92387#1109594 (10Lydia_Pintscher) 3NEW [15:17:16] [06:14:38] Niharika: basically, things should come to the default channel only if *no* projects matched <-- that's how it works right now. But MediaWiki-* is -dev, so most things match here (which is good IMO!) [15:17:38] legoktm: someone asked a question aboug GSoC and was totally lost... [15:17:39] 10MediaWiki-extensions-SemanticForms, 7I18n: SF & translate extension : "Save page" button does nothing (saves nothing) - https://phabricator.wikimedia.org/T49510#1109601 (10Nemo_bis) > I was not able to reproduce this error. Thanks for trying. What's the content //you// tried? :) Given "first part with a per... [15:17:56] legoktm: amongst Wikidata and CxServer spam [15:18:37] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-03-11: Special:SetLabelDescriptionandAlias should support removing of labels, descriptions and aliases - https://phabricator.wikimedia.org/T91387#1109602 (10Tobi_WMDE_SW) [15:18:54] :| [15:22:21] 10MediaWiki-extensions-Newsletter, 6Engineering-Community, 10Possible-Tech-Projects, 10Wikimedia-Hackathon-2015: Possible Project for a Newsletter MediaWiki extension - https://phabricator.wikimedia.org/T76199#1109612 (10Tinaj1234) Yes, that's pretty much all about me. Thanks, @Qgil ! Starting with the mi... [15:22:54] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 7Need-volunteer: Store the badges of sitelinks in a queryable format - https://phabricator.wikimedia.org/T72229#1109613 (10aude) I don't think there is good solution to this other than have the badges in a database table. We have two options: 1) schema... [15:23:38] ^demon|away: WTF happened to the wmf20 extension branches? None of them have "Creating new wmf/1.25wmf20 branches" commits and none of them have adjusted .gitreview files. Did anything weird happen when twentyafterfour (not here?) ran make-wmf-branch last week? [15:24:20] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: Specific workflow makes it possible to add empty references - https://phabricator.wikimedia.org/T89094#1027342 (10Lydia_Pintscher) [15:24:44] RoanKattouw: i think he had some trouble with it [15:25:06] don't know how it got 'resolved' [15:25:14] Not correctly, apparently [15:27:23] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 7Need-volunteer, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-03-11: Wikidata edits do not update "page watched" icon - https://phabricator.wikimedia.org/T87640#1109627 (10Lydia_Pintscher) [15:28:29] 10MediaWiki-extensions-Newsletter, 6Engineering-Community, 10Possible-Tech-Projects, 10Wikimedia-Hackathon-2015: Possible Project for a Newsletter MediaWiki extension - https://phabricator.wikimedia.org/T76199#1109630 (1001tonythomas) >>! In T76199#1109612, @Tinaj1234 wrote: > Yes, that's pretty much all a... [15:38:03] (03CR) 10Yuvipanda: "It was precise's fault, wasn't it?" [labs/tools/grrrit] - 10https://gerrit.wikimedia.org/r/195861 (owner: 10Yuvipanda) [15:39:10] (03PS1) 10Yuvipanda: Run on trusty nodes [labs/tools/grrrit] - 10https://gerrit.wikimedia.org/r/195921 [15:39:20] 10service-template-node, 7service-runner: node-template with latest service-runner fail to start - config.logging.name - https://phabricator.wikimedia.org/T92388#1109637 (10Yurik) 3NEW [15:39:42] legoktm: ^ for example, should have no business here... [15:39:47] I guess that just needs rules added [15:39:54] yeah [15:39:54] (03CR) 10Yuvipanda: [C: 032] Run on trusty nodes [labs/tools/grrrit] - 10https://gerrit.wikimedia.org/r/195921 (owner: 10Yuvipanda) [15:39:57] (03Merged) 10jenkins-bot: Run on trusty nodes [labs/tools/grrrit] - 10https://gerrit.wikimedia.org/r/195921 (owner: 10Yuvipanda) [15:40:08] people are creating projects faster than updating wikibugs [15:40:10] (03PS3) 10Yuvipanda: Add some obvious repos to -releng (and scap to -operations too) [labs/tools/grrrit] - 10https://gerrit.wikimedia.org/r/195569 (owner: 10Jforrester) [15:40:14] legoktm: heh. [15:40:23] legoktm: I wonder if we should set the default to something other than #wikimedia-dev [15:41:43] nop [15:42:43] legoktm: alright, let’s argue that some other time :D I’m going to make service-* go to -services tho [15:42:53] (03CR) 10Yuvipanda: [C: 032] Add some obvious repos to -releng (and scap to -operations too) [labs/tools/grrrit] - 10https://gerrit.wikimedia.org/r/195569 (owner: 10Jforrester) [15:42:56] (03Merged) 10jenkins-bot: Add some obvious repos to -releng (and scap to -operations too) [labs/tools/grrrit] - 10https://gerrit.wikimedia.org/r/195569 (owner: 10Jforrester) [15:43:12] YuviPanda: ok, just be careful with deploying... I have a non-committed live hack for https://phabricator.wikimedia.org/T92301?workflow=create [15:43:31] legoktm: oh, right. that’s wikibugs... [15:43:37] I… for some reason, kept thinking it was grrrit-wm :| [15:43:48] I’ll stay out for now, I think. enough bots for one day. [15:44:22] 10MediaWiki-Change-tagging, 7Performance: Performance issues with tags - https://phabricator.wikimedia.org/T91535#1109645 (10Cenarium) a:3Cenarium I'll make a patch set for this, which includes an overhaul of the caching. We should also merge the ChangeTagCanDelete hook in the single hook as an 'extensionDel... [15:46:42] (03PS1) 10Yaron Koren: Small fixes - follow-up to a6abef5 [extensions/Cargo] - 10https://gerrit.wikimedia.org/r/195927 [15:47:33] 10MediaWiki-Database, 5Patch-For-Review, 7Performance, 7Schema-change, 7user-notice: Allow comments longer than 255 bytes - https://phabricator.wikimedia.org/T6715#1109663 (10Glaisher) [15:47:49] (03CR) 10Yaron Koren: [C: 032 V: 032] Small fixes - follow-up to a6abef5 [extensions/Cargo] - 10https://gerrit.wikimedia.org/r/195927 (owner: 10Yaron Koren) [15:49:23] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: expand in other languages box by default - https://phabricator.wikimedia.org/T92387#1109668 (10Snaterlicious) The reason for opening this ticket is not specified in the sense of that the ticket would not have been opened unless there was not already an opi... [15:51:40] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: entitytermsview edit toolbar should not stick to the header-row of the "other languages" box - https://phabricator.wikimedia.org/T92390#1109670 (10aude) 3NEW [15:53:28] <^demon|away> RoanKattouw: You'll have to ask him, I don't know what the final state of his efforts was [15:53:38] <^demon|away> (other than +1 to aude's he had trouble) [15:53:40] It was not very good :( [15:53:52] None of the extensions' wmf branches had their .gitreview files updated [15:54:12] Anyway because of my change to make-wmf-branch, I'll make sure to be around when he creates the branches today [15:54:20] * ^demon|away nods [15:54:24] <^demon|away> I shall not be around! [15:54:27] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: entitytermsview edit toolbar should not stick to the header-row of the "other languages" box - https://phabricator.wikimedia.org/T92390#1109683 (10aude) propose something like this: {F81872} [15:54:31] Also because we had a separate screw-up in VE that means we have to emergency patch wmf20 before it goes to Wikipedia [15:54:34] ^demon|away: When will it be? [15:54:45] <^demon|away> 11ish our time usually [15:55:00] OK [15:56:35] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: entitytermsview edit toolbar should not stick to the header-row of the "other languages" box - https://phabricator.wikimedia.org/T92390#1109684 (10aude) the edit toolbar for entitytermsview could also have a white or white / semi-transparent background, to... [15:56:38] 10MediaWiki-extensions-ContentTranslation, 10Ops-Access-Requests, 6operations, 3LE-Sprint-84, 5Patch-For-Review: Access to stat1003 for Niklas and Kartik - https://phabricator.wikimedia.org/T91625#1109685 (10KartikMistry) I've signed the document :) [15:56:47] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84: Suggest articles to translate from the dashboard - https://phabricator.wikimedia.org/T87439#1109686 (10leila) @Pginer-WMF since you moved this task to in-progress in the sprint starting today, please let me kno... [15:57:35] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 7Tracking: Redesign header - https://phabricator.wikimedia.org/T75654#1109687 (10Lydia_Pintscher) [15:57:36] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: entitytermsview edit toolbar should not stick to the header-row of the "other languages" box - https://phabricator.wikimedia.org/T92390#1109688 (10Lydia_Pintscher) [16:00:05] (03PS1) 10Matthias Mullie: Get rid of some lifecyclehandlers in container-test.php [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195933 (https://phabricator.wikimedia.org/T89691) [16:00:44] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: expand in other languages box by default - https://phabricator.wikimedia.org/T92387#1109693 (10thiemowmde) In general, nothing should be hidden by default. There will always be a major percentage of users that miss collapsed stuff, no matter how obvious th... [16:01:08] (03CR) 10jenkins-bot: [V: 04-1] Get rid of some lifecyclehandlers in container-test.php [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195933 (https://phabricator.wikimedia.org/T89691) (owner: 10Matthias Mullie) [16:02:09] !logs [16:02:09] channel logs: http://bots.wmflabs.org/~wm-bot/logs/%23mediawiki/ html version: http://tools.wmflabs.org/wm-bot/logs/index.php?display=%23mediawiki [16:02:32] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: expand in other languages box by default - https://phabricator.wikimedia.org/T92387#1109697 (10Lydia_Pintscher) Yes I do have an opinion but I want to get input before we make a final decision. That's why this ticket. [16:03:15] (03PS1) 10Catrope: Update VisualEditor for cherry-picks [core] (wmf/1.25wmf20) - 10https://gerrit.wikimedia.org/r/195935 [16:03:17] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: expand in other languages box by default - https://phabricator.wikimedia.org/T92387#1109700 (10Sjoerddebruin) Open by default, please. [16:05:26] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 7Documentation, 3§ Wikidata-Sprint-2015-02-25, 3§ Wikidata-Sprint-2015-03-11: update documentation of high-level data model - https://phabricator.wikimedia.org/T75603#1109704 (10JanZerebecki) Yes, please be bold! [16:06:26] 10MediaWiki-extensions-Newsletter, 6Engineering-Community, 10Possible-Tech-Projects, 10Wikimedia-Hackathon-2015: Possible Project for a Newsletter MediaWiki extension - https://phabricator.wikimedia.org/T76199#1109707 (10NiharikaKohli) [16:06:46] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: allow statements on properties - https://phabricator.wikimedia.org/T51554#1109714 (10thiemowmde) [16:06:48] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 5Patch-For-Review, 3§ Wikidata-Sprint-2015-02-25, 3§ Wikidata-Sprint-2015-03-11: Smoke browsertests for statements on properties - https://phabricator.wikimedia.org/T74664#1109711 (10thiemowmde) 5Open>3Resolved [16:06:50] 10MediaWiki-extensions-WikibaseClient, 10Wikidata, 7Tracking: Wikidata watchlist integration (tracking) - https://phabricator.wikimedia.org/T90435#1109716 (10Lydia_Pintscher) We're collecting input on this topic at https://www.wikidata.org/wiki/Wikidata:Watchlist_integration_improvement_input [16:07:20] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84: Suggest articles to translate from the dashboard - https://phabricator.wikimedia.org/T87439#1109721 (10Pginer-WMF) @leila thanks for asking. The idea for this sprint is to complete the design aspects. @Nirzar w... [16:07:23] 10MediaWiki-Vendor, 10Librarization, 10Wikibase-DataModel-JavaScript, 10Wikidata: Add data-values/javascript 0.6.0 to mediawiki/vendor - https://phabricator.wikimedia.org/T88436#1109724 (10Krinkle) [16:08:44] (03PS2) 10Matthias Mullie: Get rid of some lifecyclehandlers in container-test.php [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195933 (https://phabricator.wikimedia.org/T89691) [16:10:30] (03PS9) 10EBernhardson: Port wfBaseConvert to javascript [core] - 10https://gerrit.wikimedia.org/r/191660 [16:10:37] 10Multimedia-Sprint-2015-03-04, 5Patch-For-Review: Move makeTransitioner to the step objects - https://phabricator.wikimedia.org/T91258#1109726 (10Gilles) 5Open>3Resolved [16:10:44] 10MediaWiki-extensions-UploadWizard, 6Multimedia, 10Multimedia-Sprint-2015-03-04, 5Patch-For-Review: Move newUpload to the Upload step controller - https://phabricator.wikimedia.org/T86679#1109728 (10Gilles) 5Open>3Resolved [16:10:51] (03CR) 10Catrope: [C: 032] Update VisualEditor for cherry-picks [core] (wmf/1.25wmf20) - 10https://gerrit.wikimedia.org/r/195935 (owner: 10Catrope) [16:12:24] 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release4, 7Design, 3LE-Sprint-84: Suggest articles to translate from the dashboard - https://phabricator.wikimedia.org/T87439#1109729 (10leila) That makes sense, @Pginer-WMF. I just checked and we have the data for all the language pairs you me... [16:13:59] (03PS4) 10MarkTraceur: Move detailsErrorCount to details step UI [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/193485 (https://phabricator.wikimedia.org/T90771) [16:14:51] 10MediaWiki-extensions-TimedMediaHandler, 6Multimedia, 10Multimedia-Sprint-2015-03-04, 5Patch-For-Review: Internet Explorer (MSIE) video setup experience is very confusing - https://phabricator.wikimedia.org/T75348#1109731 (10Gilles) 5Open>3Resolved [16:16:12] 10MediaWiki-extensions-CentralNotice, 10Fundraising-Backlog, 3Fundraising Sprint Flaming Lips: Spike: How to implement performant campaign-associated mixins - https://phabricator.wikimedia.org/T90913#1109733 (10AndyRussG) It looks like we could override getDependencies() in CNBannerChoiceDataResourceLoaderMo... [16:16:40] (03PS12) 10Krinkle: Replace log() calls with mw.track error events in ResourceLoader [core] - 10https://gerrit.wikimedia.org/r/188482 (owner: 10Gergő Tisza) [16:20:23] (03Merged) 10jenkins-bot: Update VisualEditor for cherry-picks [core] (wmf/1.25wmf20) - 10https://gerrit.wikimedia.org/r/195935 (owner: 10Catrope) [16:22:40] 10MediaWiki-extensions-UploadWizard, 6Multimedia, 3Multimedia-Sprint-2015-03-11, 5Patch-For-Review: Move details-related methods on mw.UploadWizard.prototype to the details step - https://phabricator.wikimedia.org/T90771#1109739 (10Gilles) [16:22:44] 10MediaWiki-extensions-TimedMediaHandler, 6Multimedia, 3Multimedia-Sprint-2015-03-11, 5Patch-For-Review: Support ogv.js in player - https://phabricator.wikimedia.org/T63823#1109742 (10Gilles) [16:22:45] 10MediaWiki-extensions-TimedMediaHandler, 6Multimedia, 3Multimedia-Sprint-2015-03-11, 5Patch-For-Review: "Error, running transcode job, for job that has already started" notices - https://phabricator.wikimedia.org/T89977#1109743 (10Gilles) [16:22:46] 10MediaWiki-extensions-Sentry, 6Multimedia, 10Quality-Assurance, 3Multimedia-Sprint-2015-03-11, 5Patch-For-Review: Automated tests for Sentry error logging - https://phabricator.wikimedia.org/T88078#1109745 (10Gilles) [16:22:48] 10MediaWiki-extensions-UploadWizard, 6Multimedia, 3Multimedia-Sprint-2015-03-11, 5Patch-For-Review: Make the step UI and controller classes more self-contained - https://phabricator.wikimedia.org/T78057#1109746 (10Gilles) [16:22:49] 6MediaWiki-Core-Team, 6Multimedia, 3Multimedia-Sprint-2015-03-11, 5Patch-For-Review: SHA-1 file name support - https://phabricator.wikimedia.org/T1210#1109748 (10Gilles) [16:22:51] 10MediaWiki-extensions-Sentry, 6Multimedia, 3Multimedia-Sprint-2015-03-11, 5Patch-For-Review: Wrap jQuery AJAX callbacks in try..catch via mw.eventLogging - https://phabricator.wikimedia.org/T92247#1109747 (10Gilles) [16:22:53] 10MediaWiki-extensions-UploadWizard, 6Multimedia, 3Multimedia-Sprint-2015-03-11: Trying to upload causes wikimedia to return a - https://phabricator.wikimedia.org/T90233#1109750 (10Gilles) [16:22:55] 10MediaWiki-extensions-UploadWizard, 6Multimedia, 3Multimedia-Sprint-2015-03-11, 5Patch-For-Review: Displaying the stashed file as a thumbnail in UploadWizard fails with an 503 - https://phabricator.wikimedia.org/T90599#1109751 (10Gilles) [16:22:56] 10MediaWiki-extensions-MultimediaViewer, 10Analytics, 6Multimedia, 3Multimedia-Sprint-2015-03-11, 5Patch-For-Review: Set up varnish 204 beacon endpoint for virtual media views and use it in Media Viewer - https://phabricator.wikimedia.org/T89088#1109752 (10Gilles) [16:22:58] 10MediaWiki-extensions-UploadWizard, 6Multimedia, 3Multimedia-Sprint-2015-03-11: Make uploads and details use promises for their transitions, and change transition methods to use them - https://phabricator.wikimedia.org/T91514#1109757 (10Gilles) [16:23:00] 10MediaWiki-extensions-CommonsMetadata, 6Multimedia, 3Multimedia-Sprint-2015-03-11, 5Patch-For-Review: Convert CommonsMetadata to use extension registration - https://phabricator.wikimedia.org/T87900#1109755 (10Gilles) [16:23:01] 10MediaWiki-extensions-UploadWizard, 6Multimedia, 3Multimedia-Sprint-2015-03-11: Move the interface for adding new files to a new UI class and refactor things around it - https://phabricator.wikimedia.org/T89855#1109756 (10Gilles) [16:23:46] 10MediaWiki-Vagrant, 10Mathoid-General-or-Unknown: Services in Vagrant should not be cloned into root - https://phabricator.wikimedia.org/T89919#1109759 (10dduvall) p:5Triage>3High [16:24:10] (03PS13) 10Krinkle: mw.loader: Replace log() calls with mw.track events [core] - 10https://gerrit.wikimedia.org/r/188482 (owner: 10Gergő Tisza) [16:26:00] 10WMF-Product-Strategy: Set up a process to keep a tally of problematic VisualEditor edits - https://phabricator.wikimedia.org/T90894#1109772 (10gpaumier) I've finished the first batch of diffs fon en.wp and posted the results at https://en.wikipedia.org/wiki/Special:Permalink/650919447 . [16:26:18] (03PS14) 10Krinkle: mw.loader: Replace log() calls with mw.track events [core] - 10https://gerrit.wikimedia.org/r/188482 (owner: 10Gergő Tisza) [16:27:02] (03CR) 10Krinkle: "Added linebreaks as otherwise the list is just a long paragraph of test per Markdown syntax > jsduck > doc.wikimedia.org." [core] - 10https://gerrit.wikimedia.org/r/188482 (owner: 10Gergő Tisza) [16:27:08] (03CR) 10Krinkle: [C: 032] mw.loader: Replace log() calls with mw.track events [core] - 10https://gerrit.wikimedia.org/r/188482 (owner: 10Gergő Tisza) [16:29:02] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: expand in other languages box by default - https://phabricator.wikimedia.org/T92387#1109774 (10Snaterlicious) I do not have a strict opinion on that matter yet. But, hm, sorry guys, those two comments above are not really helpful to get one. :-/ [16:29:08] 10Wikimedia-IEG-grant-review, 3Roadmap: Update grants application in production to deploy changes to support April 2015 Inspire campaign - https://phabricator.wikimedia.org/T92391#1109775 (10bd808) 3NEW [16:29:26] 10Wikimedia-IEG-grant-review, 3Roadmap: Update grants application in production to deploy changes to support April 2015 Inspire campaign - https://phabricator.wikimedia.org/T92391#1109783 (10bd808) [16:29:28] 10Wikimedia-IEG-grant-review: Update IEG Review application for April 2015 Inspire campaign - https://phabricator.wikimedia.org/T88810#1109782 (10bd808) [16:31:42] 10Wikimedia-IEG-grant-review, 3Roadmap: Update grants application in production to deploy changes to support April 2015 Inspire campaign - https://phabricator.wikimedia.org/T92391#1109784 (10bd808) [16:31:43] 10Wikimedia-IEG-grant-review: Add panel(s) to Start and End campaign by Admin - https://phabricator.wikimedia.org/T87095#1109789 (10bd808) [16:31:44] 10Wikimedia-IEG-grant-review, 5Patch-For-Review: Update wording of tool to be more general ("Grants" instead of "IEG") - https://phabricator.wikimedia.org/T89731#1109786 (10bd808) [16:31:45] 10Wikimedia-IEG-grant-review, 5Patch-For-Review: Allow question content to vary per campaign - https://phabricator.wikimedia.org/T88806#1109785 (10bd808) [16:31:46] 10Wikimedia-IEG-grant-review: Change vhost name to "grantreview.wikimedia.org" - https://phabricator.wikimedia.org/T88807#1109787 (10bd808) [16:31:47] 10Wikimedia-IEG-grant-review, 5Patch-For-Review: Allow administrator to associate users with review campaigns - https://phabricator.wikimedia.org/T88808#1109788 (10bd808) [16:32:20] 10Wikimedia-IEG-grant-review, 3Roadmap: Update grants application in production to deploy changes to support April 2015 Inspire campaign - https://phabricator.wikimedia.org/T92391#1109791 (10bd808) a:3bd808 [16:32:30] is it just me or is phab's scrolling broken? [16:32:35] it used to work fine [16:32:44] but after an update, it doesn't work properly [16:32:54] (with the new custom scrollbar) [16:34:11] (03Merged) 10jenkins-bot: mw.loader: Replace log() calls with mw.track events [core] - 10https://gerrit.wikimedia.org/r/188482 (owner: 10Gergő Tisza) [16:36:30] (03CR) 10Anomie: Output change tags in the machine-readable RCFeeds (031 comment) [core] - 10https://gerrit.wikimedia.org/r/195872 (owner: 10TTO) [16:37:50] (03CR) 10Legoktm: API: Overhaul ApiResult, make format=xml not throw, and add json formatversion (031 comment) [core] - 10https://gerrit.wikimedia.org/r/182858 (https://phabricator.wikimedia.org/T76728) (owner: 10Anomie) [16:40:05] 6Phabricator: Ability to move card/task via edit task interface - https://phabricator.wikimedia.org/T92392#1109794 (10JKatzWMF) 3NEW [16:40:27] (03CR) 10Anomie: [C: 04-1] Output change tags in the machine-readable RCFeeds (031 comment) [core] - 10https://gerrit.wikimedia.org/r/195872 (owner: 10TTO) [16:42:18] 10Wikimedia-IEG-grant-review, 3Roadmap: Update grants application in production to deploy changes to support April 2015 Inspire campaign - https://phabricator.wikimedia.org/T92391#1109805 (10bd808) This is a Trebuchet deploy to update an existing application that is deployed on the cluster which //should// be... [16:42:36] 10MediaWiki-extensions-CentralNotice, 10Fundraising-Backlog, 3Fundraising Sprint Flaming Lips: Spike: How to implement performant campaign-associated mixins - https://phabricator.wikimedia.org/T90913#1109806 (10awight) Right, I hadn't thought this through, now I see why you're planning to load the extra RL m... [16:42:45] 4(no projects): SpecialPageFactory::getAliasListObject is really slow (~700ms) - https://phabricator.wikimedia.org/T92393#1109807 (10mwjames) 3NEW [16:42:45] (03CR) 10Anomie: [C: 04-1] "A few minor issues. Note I tested both this and I060811b2 at the same time." (037 comments) [core] - 10https://gerrit.wikimedia.org/r/188543 (https://phabricator.wikimedia.org/T20670) (owner: 10TTO) [16:44:16] (03CR) 10Matthias Mullie: [C: 04-1] "We may not want this for the API tests - make it configurable in a not too hacky way ;)" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/195933 (https://phabricator.wikimedia.org/T89691) (owner: 10Matthias Mullie) [16:44:39] (03CR) 10Legoktm: API: Overhaul ApiResult, make format=xml not throw, and add json formatversion (031 comment) [core] - 10https://gerrit.wikimedia.org/r/182858 (https://phabricator.wikimedia.org/T76728) (owner: 10Anomie) [16:45:07] 10Phabricator-Upstream: Difficult ("impossible"?) to drag cards to unscrollable regions in OSX - https://phabricator.wikimedia.org/T78190#1109820 (10Jhernandez) I've been suffering this also, Firefox in OSX. The scrolling works but gotta do it very slowly, and TIL about the zooming out trick. It could certainl... [16:45:31] 10MediaWiki-Special-pages, 7Performance: SpecialPageFactory::getAliasListObject is really slow (~700ms) - https://phabricator.wikimedia.org/T92393#1109822 (10Legoktm) [16:47:38] legoktm: hey. do you have a minute to help us figure out a strange jenkins failure? it just dies with no error report. and we have no idea how to fix it. [16:47:44] 10MediaWiki-extensions-ContentTranslation, 10Ops-Access-Requests, 6operations, 3LE-Sprint-84, 5Patch-For-Review: Access to stat1003 for Niklas and Kartik - https://phabricator.wikimedia.org/T91625#1109825 (10RobH) This is also a perfect example of why all access requests should be one person, one ticket.... [16:47:44] it looks like this: https://integration.wikimedia.org/ci/job/mwext-Wikibase-client-tests/11288/console [16:47:46] 3Team-Practices-This-Week: tech talk on Q2 health check survey results - https://phabricator.wikimedia.org/T85821#1109826 (10ksmith) If it's not too late, perhaps: "This talk will provide a brief overview of the health check and the health check process, focusing on what we have learned to date and the next steps." [16:47:57] DanielK_WMDE_: looking [16:48:15] legoktm: aude apparently just found something [16:48:46] Build step 'Shell ausführen' marked build as failure [16:48:48] (03CR) 10Arlolra: Tidy up tidy usage (031 comment) [core] - 10https://gerrit.wikimedia.org/r/181777 (owner: 10Arlolra) [16:48:54] I guess this was when jenkins was in german? [16:48:56] :P [16:49:03] o_O [16:49:06] looks like it :) [16:49:28] 10MediaWiki-extensions-WikibaseClient, 10Wikidata: Call to undefined method Mock_JobQueueRedis_d05ceecc::delayedJobsEnabled() - https://phabricator.wikimedia.org/T92395#1109841 (10aude) 3NEW [16:49:49] legoktm: ok, seems like aude found it. but... isn't there a way to log fatal errors, and see these logs? [16:50:07] every time me hit something like this, it's a big guessing game... [16:50:30] (03PS10) 10MarkTraceur: Add framework for file warnings [core] - 10https://gerrit.wikimedia.org/r/194565 (https://phabricator.wikimedia.org/T89765) [16:50:37] DanielK_WMDE_: https://integration.wikimedia.org/ci/job/mwext-Wikibase-client-tests/11288/ <-- download the build artifacts I think [16:50:58] or not [16:51:12] I don't know why it just died [16:51:15] 4(no projects): Make the visual template editor drag-able & re-sizable to allow editing easy - https://phabricator.wikimedia.org/T92396#1109848 (1001tonythomas) 3NEW [16:51:28] is the error_reporting stuff not set up properly? [16:51:39] legoktm: because it couldn't find a method. it's a plain php fatal. these are invisible from jenkins output [16:51:47] i can't find any info in the build artifacts [16:51:48] error_reporting( -1 ); [16:51:48] ini_set( 'display_errors', 1 ); [16:51:49] hm [16:52:05] it has been like this forever... [16:52:05] this is weird [16:52:12] DanielK_WMDE_: is there a bug for this? [16:52:12] (03CR) 10Anomie: API: Overhaul ApiResult, make format=xml not throw, and add json formatversion (031 comment) [core] - 10https://gerrit.wikimedia.org/r/182858 (https://phabricator.wikimedia.org/T76728) (owner: 10Anomie) [16:52:23] legoktm: i don't know.... [16:52:56] 10MediaWiki-Developer-Summit-2015, 6WMF-Legal, 10dev.wikimedia.org: Technology selection for the Developer Hub - https://phabricator.wikimedia.org/T312#1109866 (10Slaporte) >>! In T312#1108671, @Spage wrote: >>>! In T312#1107280, @Slaporte wrote: >> Releasing the documentation under a CC0 license will make i... [16:53:01] is aaron around? [16:53:14] legoktm: i'll file one. [16:53:23] DanielK_WMDE_: thanks, I'll look into it later today [16:53:35] legoktm: thanks! [16:53:37] i am not exactly sure what to do in https://github.com/wikimedia/mediawiki-extensions-Wikibase/blob/master/client/includes/UpdateRepo/UpdateRepo.php#L167 [16:53:56] instead of delayedJobsEnabled() or if that is not needed at all now [16:54:08] aude: https://github.com/wikimedia/mediawiki/commit/c8f96384aad312e52969b81dd8ce6b8d80c3857a is the commit [16:54:16] i know [16:54:27] I think checking supportsDelayedJobs() should be good enough? [16:54:48] i see [16:55:06] (03Abandoned) 10EBernhardson: Use fixtures for parsoid in unit tests [extensions/Flow] - 10https://gerrit.wikimedia.org/r/191697 (owner: 10EBernhardson) [16:58:17] 3Team-Practices-This-Week: Update health check survey scale - https://phabricator.wikimedia.org/T92320#1109875 (10KLans_WMF) @awjrichards here's a few suggestions: So far I think that "Fair" is the best candidate. It is commonly used on rating scales and conveys a sense of "adequate". It seems like a good middl... [16:59:01] 4(no projects): PHP fatal errors are not visible in jenkins output - https://phabricator.wikimedia.org/T92397#1109880 (10daniel) 3NEW [16:59:27] legoktm: --^ [16:59:28] 3Team-Practices-This-Week: tech talk on Q2 health check survey results - https://phabricator.wikimedia.org/T85821#1109888 (10ggellerman) +1 to Kevin's wordsmithing [16:59:55] DanielK_WMDE_: thanks [17:00:45] DanielK_WMDE_: ^ [17:02:01] 10MediaWiki-Interface, 10MediaWiki-Page-editing: Wikitext editor no longer links to full help - https://phabricator.wikimedia.org/T92398#1109891 (10awight) 3NEW [17:02:29] DanielK_WMDE_: ? [17:02:38] 12:53 < aude> i am not exactly sure what to do in https://github.com/wikimedia/mediawiki-extensions-Wikibase/blob/master/client/includes/UpdateRepo/UpdateRepo.php#L16 [17:02:44] instead of delayedJobsEnabled() or if that is not needed at all no [17:02:45] (03PS22) 10Anomie: API: Overhaul ApiResult, make format=xml not throw, and add json formatversion [core] - 10https://gerrit.wikimedia.org/r/182858 (https://phabricator.wikimedia.org/T76728) [17:02:54] https://github.com/wikimedia/mediawiki/commit/c8f96384aad312e52969b81dd8ce6b8d80c3857a is the commit [17:03:02] (03PS5) 10Anomie: Change API result data structure to be cleaner in new formats [core] - 10https://gerrit.wikimedia.org/r/191103 (https://phabricator.wikimedia.org/T87053) [17:03:27] https://github.com/wikimedia/mediawiki-extensions-Wikibase/blob/master/client/includes/UpdateRepo/UpdateRepo.php#L167 [17:03:41] (03PS5) 10Anomie: API: Add output of JS config vars to action=parse [core] - 10https://gerrit.wikimedia.org/r/186540 (https://phabricator.wikimedia.org/T67015) [17:04:34] 4(no projects): slack test - https://phabricator.wikimedia.org/T92399#1109898 (10Rizzo7890) 3NEW [17:05:00] (03PS11) 10Anomie: API: Move parameter formatting into LogFormatter [core] - 10https://gerrit.wikimedia.org/r/183315 (https://phabricator.wikimedia.org/T35235) [17:06:49] (03CR) 10jenkins-bot: [V: 04-1] API: Overhaul ApiResult, make format=xml not throw, and add json formatversion [core] - 10https://gerrit.wikimedia.org/r/182858 (https://phabricator.wikimedia.org/T76728) (owner: 10Anomie) [17:06:53] 4(no projects): slack test - https://phabricator.wikimedia.org/T92401#1109917 (10Rizzo7890) 3NEW a:3Rizzo7890 [17:07:17] (03CR) 10jenkins-bot: [V: 04-1] Change API result data structure to be cleaner in new formats [core] - 10https://gerrit.wikimedia.org/r/191103 (https://phabricator.wikimedia.org/T87053) (owner: 10Anomie) [17:07:52] (03CR) 10jenkins-bot: [V: 04-1] API: Add output of JS config vars to action=parse [core] - 10https://gerrit.wikimedia.org/r/186540 (https://phabricator.wikimedia.org/T67015) (owner: 10Anomie) [17:08:44] 10MediaWiki-User-login-and-signup, 10Possible-Tech-Projects, 7I18n: Allow user login with email address in addition to username - https://phabricator.wikimedia.org/T30085#1109930 (10devunt) @Qgil Is there any plan to make this as a GSoC project? [17:08:57] (03CR) 10jenkins-bot: [V: 04-1] API: Move parameter formatting into LogFormatter [core] - 10https://gerrit.wikimedia.org/r/183315 (https://phabricator.wikimedia.org/T35235) (owner: 10Anomie) [17:09:26] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: entitytermsview edit toolbar should not stick to the header-row of the "other languages" box - https://phabricator.wikimedia.org/T92390#1109934 (10thiemowmde) White background patch is at https://gerrit.wikimedia.org/r/#/c/195951/, tracked at T89956. [17:10:13] 6Phabricator, 6Security, 6WMF-NDA: Enable select Fundraising people to modify policy for tasks - https://phabricator.wikimedia.org/T88762#1109939 (10atgo) 5Open>3Resolved a:3atgo [17:10:19] (03PS1) 10Legoktm: Revert "Made JobQueueFederated no longer need "checkDelay" for delaying" [core] - 10https://gerrit.wikimedia.org/r/195953 [17:10:27] (03CR) 10Legoktm: [C: 032] Revert "Made JobQueueFederated no longer need "checkDelay" for delaying" [core] - 10https://gerrit.wikimedia.org/r/195953 (owner: 10Legoktm) [17:10:33] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: expand in other languages box by default - https://phabricator.wikimedia.org/T92387#1109944 (10thiemowmde) What are you missing in my comment? [17:12:12] (03CR) 10Aude: "see https://phabricator.wikimedia.org/T92395" [core] - 10https://gerrit.wikimedia.org/r/195953 (owner: 10Legoktm) [17:15:28] 10Education-Program-Dashboard: See the ratings (Start/Stub/etc) for each article - https://phabricator.wikimedia.org/T92403#1109970 (10Ragesoss) 3NEW a:3Ragesoss [17:15:39] 10Education-Program-Dashboard: See the ratings (Start/Stub/etc) for each article - https://phabricator.wikimedia.org/T92403#1109979 (10Ragesoss) a:5Ragesoss>3None [17:16:50] 10Education-Program-Dashboard: Login via OAuth with Wikipedia account - https://phabricator.wikimedia.org/T92404#1109983 (10Ragesoss) 3NEW [17:17:06] (03CR) 10Ori.livneh: [C: 032] Fix job runner service availability during redis outages [services/jobrunner] - 10https://gerrit.wikimedia.org/r/195517 (https://phabricator.wikimedia.org/T91835) (owner: 10Aaron Schulz) [17:17:17] (03PS3) 10devunt: Trim spaces and underscores from suggested filename on Special:Upload [core] - 10https://gerrit.wikimedia.org/r/192773 (https://phabricator.wikimedia.org/T67811) [17:17:35] 10Education-Program-Dashboard: Post message to talk pages of students who didn't complete training - https://phabricator.wikimedia.org/T92405#1109991 (10Ragesoss) 3NEW [17:17:35] (03Merged) 10jenkins-bot: Revert "Made JobQueueFederated no longer need "checkDelay" for delaying" [core] - 10https://gerrit.wikimedia.org/r/195953 (owner: 10Legoktm) [17:17:39] (03Merged) 10jenkins-bot: Fix job runner service availability during redis outages [services/jobrunner] - 10https://gerrit.wikimedia.org/r/195517 (https://phabricator.wikimedia.org/T91835) (owner: 10Aaron Schulz) [17:18:08] (03CR) 10devunt: "PS3: This is only rebase patchshet." [core] - 10https://gerrit.wikimedia.org/r/192773 (https://phabricator.wikimedia.org/T67811) (owner: 10devunt) [17:18:20] (03PS1) 10Yurik: Updated vega to upstream v1.5.0 [extensions/Graph] - 10https://gerrit.wikimedia.org/r/195955 [17:18:59] 10Education-Program-Dashboard: Usable layout on mobile - https://phabricator.wikimedia.org/T92407#1110012 (10Ragesoss) 3NEW [17:19:09] (03CR) 10Yurik: [C: 032] Updated vega to upstream v1.5.0 [extensions/Graph] - 10https://gerrit.wikimedia.org/r/195955 (owner: 10Yurik) [17:19:22] (03PS4) 10devunt: Trim spaces and underscores from suggested filename on Special:Upload [core] - 10https://gerrit.wikimedia.org/r/192773 (https://phabricator.wikimedia.org/T67811) [17:19:27] (03Merged) 10jenkins-bot: Updated vega to upstream v1.5.0 [extensions/Graph] - 10https://gerrit.wikimedia.org/r/195955 (owner: 10Yurik) [17:19:29] (03Abandoned) 10Yurik: Updated vega to upstream v1.5.0 [extensions/Graph] (wmf/1.25wmf19) - 10https://gerrit.wikimedia.org/r/195894 (owner: 10Yurik) [17:19:41] 10MediaWiki-extensions-MultimediaViewer, 10Analytics, 6Multimedia, 7Blocked-on-Performance, and 2 others: Set up varnish 204 beacon endpoint for virtual media views and use it in Media Viewer - https://phabricator.wikimedia.org/T89088#1110021 (10MarkTraceur) [17:21:19] 10Education-Program-Dashboard: Configure RuboCop and clean up existing offenses - https://phabricator.wikimedia.org/T92408#1110023 (10Ragesoss) 3NEW [17:23:15] 10MediaWiki-extensions-CheckUser: Allow user to specify block settings from CU form - https://phabricator.wikimedia.org/T18306#1110038 (10Glaisher) Part of this can be done with https://gerrit.wikimedia.org/r/184116 it has been open without any activity for several weeks now. reviews welcome :) [17:24:16] 10Possible-Tech-Projects, 7Elasticsearch, 3Google-Summer-of-Code-2015, 3Outreachy-Round-10: One stop translation search - https://phabricator.wikimedia.org/T89103#1110042 (10Aklapper) @Ayushimrigen: Might be more of a [[ https://www.mediawiki.org/wiki/How_to_become_a_MediaWiki_hacker#Feedback.2C_questions_... [17:25:07] 10MediaWiki-Interface: Never show anonymous users' IP addresses - https://phabricator.wikimedia.org/T92366#1110047 (10Aklapper) p:5Triage>3Low [17:25:22] 10Education-Program-Dashboard: As an instructor I want to create a new course using the Assignment Design Wizard - https://phabricator.wikimedia.org/T92409#1110048 (10Ragesoss) 3NEW [17:25:55] 10Education-Program-Dashboard: After logging in, I want to see my classes - https://phabricator.wikimedia.org/T92410#1110057 (10Ragesoss) 3NEW [17:25:58] 10MediaWiki-extensions-WikibaseClient, 10Wikidata: Call to undefined method Mock_JobQueueRedis_d05ceecc::delayedJobsEnabled() - https://phabricator.wikimedia.org/T92395#1110065 (10aude) https://gerrit.wikimedia.org/r/#/c/195953/ (reverted the core change, at least for now) [17:26:05] 10MediaWiki-extensions-WikibaseClient, 10Wikidata: Call to undefined method Mock_JobQueueRedis_d05ceecc::delayedJobsEnabled() - https://phabricator.wikimedia.org/T92395#1110068 (10aude) 5Open>3Resolved [17:26:08] (03CR) 10Ori.livneh: [C: 032] Changes to batch events more efficiently (031 comment) [extensions/EventLogging] - 10https://gerrit.wikimedia.org/r/191231 (https://phabricator.wikimedia.org/T90029) (owner: 10Nuria) [17:26:43] (03CR) 10jenkins-bot: [V: 04-1] Changes to batch events more efficiently [extensions/EventLogging] - 10https://gerrit.wikimedia.org/r/191231 (https://phabricator.wikimedia.org/T90029) (owner: 10Nuria) [17:27:01] 10Gather, 3Gather Sprint C_: Gather breaks with bad data - https://phabricator.wikimedia.org/T92347#1110071 (10Jhernandez) a:3Jhernandez Having a look [17:27:14] 10Education-Program-Dashboard: As an instructor I want to edit my course details - https://phabricator.wikimedia.org/T92411#1110074 (10Ragesoss) 3NEW [17:28:04] 4(no projects): [Regression wmf22] The lookup in citation dialog is throwing error not returning any result - https://phabricator.wikimedia.org/T92412#1110087 (10Ryasmeen) 3NEW [17:28:12] (03CR) 10Jdlrobson: resourceloader: Add template compiler for Mustache JS (031 comment) [core] - 10https://gerrit.wikimedia.org/r/180647 (owner: 10Jdlrobson) [17:28:24] 4(no projects): [Regression wmf22] The lookup in citation dialog is throwing error not returning any result - https://phabricator.wikimedia.org/T92412#1110094 (10Ryasmeen) p:5Triage>3High [17:30:36] 10MediaWiki-extensions-WikibaseClient, 10Wikidata: Call to undefined method Mock_JobQueueRedis_d05ceecc::delayedJobsEnabled() - https://phabricator.wikimedia.org/T92395#1110113 (10daniel) Patch fixing the issue on the Wikidata side, so the core patch can be re-applied: https://gerrit.wikimedia.org/r/#/c/195958/ [17:32:15] (03PS5) 10Ori.livneh: mediawiki.js: clean-ups [core] - 10https://gerrit.wikimedia.org/r/195776 [17:32:27] (03PS3) 10EBernhardson: Add extension tag for creating arbitrary local links in i18n messages only [core] - 10https://gerrit.wikimedia.org/r/167117 (https://bugzilla.wikimedia.org/66746) [17:32:29] gerrit slowness is getting rediculess [17:32:38] 10MediaWiki-extensions-Sentry, 6Multimedia, 3Multimedia-Sprint-2015-03-11: Update server-side JS error-logging RfC - https://phabricator.wikimedia.org/T91357#1110126 (10Tgr) [17:32:53] (03PS6) 10Anomie: Change API result data structure to be cleaner in new formats [core] - 10https://gerrit.wikimedia.org/r/191103 (https://phabricator.wikimedia.org/T87053) [17:33:01] 10MediaWiki-extensions-Sentry, 6Multimedia, 10Quality-Assurance, 3Multimedia-Sprint-2015-03-11, 5Patch-For-Review: Automated tests for Sentry error logging - https://phabricator.wikimedia.org/T88078#1110128 (10Tgr) [17:33:52] (03PS1) 10Daniel Kinzler: Make JobQueue::supportsDelayedJobs public. [core] - 10https://gerrit.wikimedia.org/r/195961 [17:34:10] 10MediaWiki-extensions-InputBox: inputbox width= values ignored - https://phabricator.wikimedia.org/T92348#1110133 (10Aklapper) Thanks for taking the time to report this! > Since the most recent software change I guess that translates to 1.25wmf20 (be38f2f) > ignores the set width= values. For an e... [17:35:35] 10MediaWiki-extensions-CentralAuth, 6Editing, 10Possible-Tech-Projects, 7Crosswiki, and 2 others: Cross-wiki watchlists - https://phabricator.wikimedia.org/T5525#1110137 (10NiharikaKohli) From a brief chat with @legoktm and @yuvipanda, it appears this project might be a little too big for GSoC. If we could... [17:36:29] (03CR) 10Daniel Kinzler: "Change for allowing extensions to check if delayed jobs are supported: I840d3cc81c" [core] - 10https://gerrit.wikimedia.org/r/195953 (owner: 10Legoktm) [17:37:15] (03CR) 10Daniel Kinzler: "Sorry, wrong link. Again:" [core] - 10https://gerrit.wikimedia.org/r/195953 (owner: 10Legoktm) [17:37:47] 6Project-Creators: Please create project "Video" - https://phabricator.wikimedia.org/T91232#1110144 (10Gilles) I think there's value in having a separate Video project with its own boards. I pick up volunteer video-related tasks to put on the #Multimedia boards on a regular basis, because our team is expected to... [17:38:13] (03CR) 10jenkins-bot: [V: 04-1] Add extension tag for creating arbitrary local links in i18n messages only [core] - 10https://gerrit.wikimedia.org/r/167117 (https://bugzilla.wikimedia.org/66746) (owner: 10EBernhardson) [17:39:54] (03CR) 10jenkins-bot: [V: 04-1] Change API result data structure to be cleaner in new formats [core] - 10https://gerrit.wikimedia.org/r/191103 (https://phabricator.wikimedia.org/T87053) (owner: 10Anomie) [17:40:35] 10MediaWiki-Interface: Never show anonymous users' IP addresses - https://phabricator.wikimedia.org/T92366#1110146 (10Halfak) A bit of research to support the quality of anonymous editors: When we tell anonymous editors that they ought to register, there are substantial productivity losses https://meta.wikimedi... [17:41:22] 10MediaWiki-Developer-Summit-2015, 6WMF-Legal, 10dev.wikimedia.org: Technology selection for the Developer Hub - https://phabricator.wikimedia.org/T312#1110147 (10Anomie) >>! In T312#1108671, @Spage wrote: > - The generated API documentation at api.php doesn't seem to mention a license, though its source cod... [17:42:12] 10MediaWiki-Categories: Problem with category view in old browsers - https://phabricator.wikimedia.org/T92328#1110148 (10Aklapper) 5Open>3declined a:3Aklapper This change was intentional and the reasons for this change are given in T55130. Opera 10.x is a Grade C browser according to https://www.mediawiki... [17:44:03] rmoen: https://github.com/wikimedia/jquery-client/pull/1 [17:45:25] 10MediaWiki-extensions-InputBox: Call to undefined method MediaWiki::getVal() with MW 1.20.x; going back creates "Unknown column 'user_options' in 'field list'" - https://phabricator.wikimedia.org/T44977#1110157 (10Aklapper) 5Open>3stalled Is that still an issue in supported versions of MediaWiki? [17:45:35] 10MediaWiki-extensions-InputBox: Call to undefined method MediaWiki::getVal() with MW 1.20.x; going back creates "Unknown column 'user_options' in 'field list'" - https://phabricator.wikimedia.org/T44977#1110159 (10Aklapper) p:5Normal>3Low [17:45:38] 10Education-Program-Dashboard: As an admin or developer, I want to receive back-end error notifications - https://phabricator.wikimedia.org/T92413#1110161 (10Ragesoss) 3NEW [17:45:59] 10MediaWiki-extensions-InputBox: editintro, preload should appear in What links here - https://phabricator.wikimedia.org/T40889#1110170 (10Aklapper) p:5Low>3Lowest [17:46:01] 10MediaWiki-extensions-InputBox, 7Browser-Support-Internet-Explorer: IE7:Pressing enter discard selected namespaces in search box - https://phabricator.wikimedia.org/T21134#1110171 (10Aklapper) p:5Normal>3Lowest [17:46:02] 10MediaWiki-extensions-InputBox: New parameter: "searchtemplate" - https://phabricator.wikimedia.org/T21955#1110172 (10Aklapper) p:5Normal>3Lowest [17:46:46] 10MediaWiki-extensions-InputBox: inputbox width= values ignored - https://phabricator.wikimedia.org/T92348#1110173 (10Glaisher) T63526 caused this probably. [17:46:56] 10MediaWiki-extensions-InputBox: Allow Inputbox to accept templates as well as pages for its parameters - https://phabricator.wikimedia.org/T19001#1110177 (10Aklapper) p:5Normal>3Low [17:46:57] 10MediaWiki-extensions-InputBox: InputBox:Possibility to insert entered string in a predefined search containing boolean operators - https://phabricator.wikimedia.org/T32404#1110179 (10Aklapper) p:5Normal>3Low [17:46:58] 10MediaWiki-extensions-InputBox: Inputbox uses too much formatting - https://phabricator.wikimedia.org/T15834#1110178 (10Aklapper) p:5Normal>3Low [17:47:06] 10Gather, 3Gather Sprint C_: It should not be possible to access the editing interface for watchlist - https://phabricator.wikimedia.org/T92414#1110180 (10Jdlrobson) 3NEW [17:47:20] 10MediaWiki-extensions-InputBox: Convert InputBox to use extension registration - https://phabricator.wikimedia.org/T87931#1110191 (10Aklapper) p:5Triage>3Low [17:47:50] 10MediaWiki-extensions-Extensions-requests: Streamline the way pages are tagged for speedy deletion - https://phabricator.wikimedia.org/T91169#1110195 (10Glaisher) p:5Low>3Lowest [17:48:23] (03CR) 10Hoo man: [C: 04-1] "JobQueueRedis also needs to be changed... I guess tests don't find this as there probably aren't any tests that touch that code." [core] - 10https://gerrit.wikimedia.org/r/195961 (owner: 10Daniel Kinzler) [17:49:44] 10Education-Program-Dashboard: I want to see a gallery of media files uploaded by a user or course - https://phabricator.wikimedia.org/T92415#1110196 (10Ragesoss) 3NEW [17:51:45] 6MediaWiki-Core-Team, 10hardware-requests, 6operations, 5Patch-For-Review: Fluorine needs bigger disks - https://phabricator.wikimedia.org/T92417#1110216 (10Andrew) 3NEW [17:52:01] 6MediaWiki-Core-Team, 6operations, 5Patch-For-Review: Store unsampled API and XFF logs - https://phabricator.wikimedia.org/T88393#1110224 (10Andrew) [17:52:59] 10UI-Standardization: Create primary button with indeterminate loader - https://phabricator.wikimedia.org/T72417#1110225 (10Nirzar) > Will the colour depend on the button colour (e.g., green dots for green buttons)? Yes >For the determinate version since there are three indicators, for longer waits it may feel... [17:53:40] 3Team-Practices-This-Week: tech talk on Q2 health check survey results - https://phabricator.wikimedia.org/T85821#1110227 (10KLans_WMF) Thanks guys, I needed that extra brainpower from you :-) [17:53:47] 10MediaWiki-extensions-Extensions-requests, 10MediaWiki-extensions-Nuke, 6Editing, 10Possible-Tech-Projects, and 2 others: Extension to identify and delete spam pages - https://phabricator.wikimedia.org/T90238#1110228 (10Aklapper) >>! In T90238#1105410, @Pakshal94 wrote: > What are features to be considere... [17:55:12] 10MediaWiki-extensions-LabeledSectionTransclusion, 10VisualEditor-MediaWiki-Plugins, 5Patch-For-Review: Create a VisualEditor plugin tool to add/edit LabelledSectionTransclusion markers - https://phabricator.wikimedia.org/T72581#1110235 (10marcoil) [17:56:06] 3Team-Practices-This-Week: tech talk on Q2 health check survey results - https://phabricator.wikimedia.org/T85821#1110236 (10KLans_WMF) Revised version: Tech talk: The state of Team Health across Wikimedia Engineering The WMF’s Team Practices Group (TPG) believes that healthy teams reliably deliver customer va... [17:57:55] 10Wikimedia-General-or-Unknown, 7Commons, 7Tracking: Bug and feature requests related to Wikimedia Commons (tracking) - https://phabricator.wikimedia.org/T39883#1110241 (10Aklapper) >>! In T39883#1109235, @Steinsplitter wrote: > Maybe converting this bug to "feature requests" tracking bug? If anybody feels... [17:58:08] 10MediaWiki-extensions-TitleBlacklist, 10SUL-Finalization, 10Wikimedia-Site-requests, 5Patch-For-Review, 7user-notice: User name blacklist should be managed globally to avoid SUL fragmentation - https://phabricator.wikimedia.org/T38939#1110242 (10Glaisher) From Gerrit, some wikis have abusefilters for pr... [17:58:40] 10Wikimedia-Site-requests, 5Patch-For-Review: Set $wgRateLimits['badcaptcha'] to counter bots - https://phabricator.wikimedia.org/T92376#1110246 (10Aklapper) p:5Triage>3Normal [18:00:45] 6MediaWiki-Core-Team, 6operations, 5Patch-For-Review: Store unsampled API and XFF logs - https://phabricator.wikimedia.org/T88393#1110251 (10Andrew) OK, current log retention policy looks like this: API logs: 30 days api-feature-usage logs: 90 days xff logs: 88 days everything else: 180 days If we were... [18:01:00] 10Gather, 3Gather Sprint C_: Use API to generate special pages and manipulate collections - https://phabricator.wikimedia.org/T92418#1110252 (10Jdlrobson) 3NEW a:3Jdlrobson [18:02:12] 4(no projects): Non technical: "Database reports" - status query - https://phabricator.wikimedia.org/T92353#1110261 (10Aklapper) p:5Triage>3Lowest https://en.wikipedia.org/wiki/Wikipedia_talk:Database_reports ? I don't think you'll get a better response in Phabricator than on that page when it comes to reac... [18:02:14] 10Gather, 3Gather Sprint C_: Use API to generate special pages and manipulate collections - https://phabricator.wikimedia.org/T92418#1110263 (10Jdlrobson) Special:Gather and wgGatherCollections WIP patch: https://gerrit.wikimedia.org/r/195621 Special:Gather// WIP patch: https://gerrit.wikimedia.org/... [18:04:01] 6MediaWiki-Core-Team, 6operations, 5Patch-For-Review: Store unsampled API and XFF logs - https://phabricator.wikimedia.org/T88393#1110267 (10hoo) IMO 30 days are enough for API logs (and probably also for XFF logs, although I think we decided to no longer collect these at all?). Other logs (like exception an... [18:05:00] 10Gather, 3Gather Sprint C_: Need an API query that gives you list members AND meta data - https://phabricator.wikimedia.org/T92419#1110268 (10Jdlrobson) 3NEW [18:05:22] 10Gather, 3Gather Sprint C_: Need an API query that gives you list members AND meta data - https://phabricator.wikimedia.org/T92419#1110277 (10Jdlrobson) [18:05:23] 10Gather, 3Gather Sprint C_: Use API to generate special pages and manipulate collections - https://phabricator.wikimedia.org/T92418#1110276 (10Jdlrobson) [18:05:35] (03PS1) 10Aaron Schulz: ƒAdded delayedJobsEnabled() wrapper to unbreak callers [core] - 10https://gerrit.wikimedia.org/r/195966 [18:05:40] 10Gather, 3Gather Sprint C_: action=query&list=lists should support owner parameter - https://phabricator.wikimedia.org/T92299#1110280 (10Jdlrobson) [18:05:41] 10Gather, 3Gather Sprint C_: Use API to generate special pages and manipulate collections - https://phabricator.wikimedia.org/T92418#1110252 (10Jdlrobson) [18:05:42] 3Team-Practices-This-Week: Create TPG list of terms and practices - https://phabricator.wikimedia.org/T75785#1110281 (10ksmith) a:3ksmith [18:06:34] (03PS2) 10Aaron Schulz: Added delayedJobsEnabled() wrapper to unbreak callers [core] - 10https://gerrit.wikimedia.org/r/195966 [18:07:07] 3Team-Practices-This-Week: Create TPG list of terms and practices - https://phabricator.wikimedia.org/T75785#781996 (10ksmith) An initial list has been created. I'm not sure of the best formatting to apply, and I'm not sure whether all the definitions should be inline/visible, or hidden somehow. I assume when po... [18:08:11] (03CR) 10jenkins-bot: [V: 04-1] Added delayedJobsEnabled() wrapper to unbreak callers [core] - 10https://gerrit.wikimedia.org/r/195966 (owner: 10Aaron Schulz) [18:09:38] (03PS1) 10Aaron Schulz: Made JobQueueFederated::supportsDelayedJobs() check all the partition queues [core] - 10https://gerrit.wikimedia.org/r/195967 [18:09:45] 6MediaWiki-Core-Team, 10hardware-requests, 6operations, 5Patch-For-Review: Fluorine needs bigger disks - https://phabricator.wikimedia.org/T92417#1110300 (10RobH) We don't have any 4TB disks on site, but they could be ordered. What is the overall capacity and raid requirements for the logging server? [18:10:00] 6MediaWiki-Core-Team, 10hardware-requests, 6operations, 5Patch-For-Review: Fluorine needs bigger disks - https://phabricator.wikimedia.org/T92417#1110301 (10RobH) I forgot to ask speed requirements for disks. [18:10:02] 10Citoid: Http error encountered when scraping http://www.tandfonline.com/ urls with native scraper - https://phabricator.wikimedia.org/T91875#1110302 (10Mvolz) [18:11:21] andre__: Hi, I'm not exactly challenging your prioritization of https://phabricator.wikimedia.org/T92366, but if you want to add a few words about why it's Low priority, that would be helpful. It's a edit-facing issue, could possibly have an impact on retention, and is pretty well represented in onwiki discussion and essays. [18:11:29] s/edit/editor/ [18:11:57] awight, if you plan to work on it or push discussing actual actions, feel free to increase priority [18:12:15] sounds like an #Epic task to me and I'm happy to be corrected [18:12:31] andre__: okay, thanks for explaining! [18:12:34] (03Abandoned) 10Aaron Schulz: Added delayedJobsEnabled() wrapper to unbreak callers [core] - 10https://gerrit.wikimedia.org/r/195966 (owner: 10Aaron Schulz) [18:12:47] 10Gather, 3Gather Sprint C_: Should be possible to get page image and extract information in listpages response - https://phabricator.wikimedia.org/T92421#1110307 (10Jdlrobson) 3NEW [18:13:09] awight, priority should reflect reality instead of wishful thinking but if pushing this forward will happen, please increase priority :) [18:13:11] 10Gather, 3Gather Sprint C_: Should be possible to get page image and extract information in listpages response - https://phabricator.wikimedia.org/T92421#1110316 (10Jdlrobson) [18:13:12] 10Gather, 3Gather Sprint C_: Use API to generate special pages and manipulate collections - https://phabricator.wikimedia.org/T92418#1110315 (10Jdlrobson) [18:13:32] 6MediaWiki-Core-Team, 10hardware-requests, 6operations, 5Patch-For-Review: Fluorine needs bigger disks - https://phabricator.wikimedia.org/T92417#1110320 (10Andrew) This might be moot -- sounds like we're maybe just retaining way more logs than anyone actually wants. Stay tuned... [18:13:41] 10MediaWiki-General-or-Unknown: mediawiki.feedback should support structured feedback, so that different problems can be sent to different pages - https://phabricator.wikimedia.org/T92307#1110321 (10Aklapper) p:5Triage>3Low Might have #Epic potential? :) [18:13:47] 10MediaWiki-extensions-Extensions-requests, 10MediaWiki-extensions-Nuke, 6Editing, 10Possible-Tech-Projects, and 2 others: Extension to identify and delete spam pages - https://phabricator.wikimedia.org/T90238#1110323 (10jan) [18:14:33] andre__: That totally makes sense. I'm imagining that someone will come along and arbitrarily increase the priority regardless, but I guess it doesn't make sense to prepare for that dialogue until it happens... [18:14:53] :) [18:15:08] (03PS1) 10Aaron Schulz: Made JobQueueFederated no longer need "checkDelay" for delaying [core] - 10https://gerrit.wikimedia.org/r/195969 [18:16:40] 10Education-Program-Design-Research, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Wikipedia Education Program need-finding research - https://phabricator.wikimedia.org/T92242#1110329 (10Ragesoss) [18:18:11] (03CR) 10Legoktm: [C: 032] Made JobQueueFederated no longer need "checkDelay" for delaying [core] - 10https://gerrit.wikimedia.org/r/195969 (owner: 10Aaron Schulz) [18:18:18] 10Education-Program-Design-Research, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Wikipedia Education Program need-finding research - https://phabricator.wikimedia.org/T92242#1103792 (10Ragesoss) [18:19:32] 10Education-Program-Design-Research, 3ECT-March-2015, 3Outreach-Program-For-Women-9: Evaluate Wikipedia Education Program need-finding research - https://phabricator.wikimedia.org/T92242#1110334 (10Ragesoss) [18:19:48] 10Wikimedia-Interwiki-links: Add all global sites as valid interwiki links - https://phabricator.wikimedia.org/T47116#1110336 (10awight) Well, https://gerrit.wikimedia.org/r/#/c/195464/ and T89546 caught my attention. The issue of interwiki transclusion was forced by the global user page feature, but thinking a... [18:20:26] 10MediaWiki-extensions-TimedMediaHandler, 10MediaWiki-extensions-Translate, 6Commons, 6Multimedia, 7I18n: Use language code subpages for subtitles to allow Translate extension usage - https://phabricator.wikimedia.org/T44790#1110338 (10Nikerabbit) If you don't want to use the page translation feature, yo... [18:23:01] 10MediaWiki-extensions-ContentTranslation, 10Analytics, 10ContentTranslation-Analytics, 6Language-Engineering, and 3 others: Newly added language ky and pa doesn't reflect in Language Limn Graph - https://phabricator.wikimedia.org/T92236#1110347 (10Nikerabbit) There was one additional issue of last three l... [18:25:13] (03Merged) 10jenkins-bot: Made JobQueueFederated no longer need "checkDelay" for delaying [core] - 10https://gerrit.wikimedia.org/r/195969 (owner: 10Aaron Schulz) [18:25:53] (03PS6) 10Ori.livneh: mediawiki.js: clean-ups [core] - 10https://gerrit.wikimedia.org/r/195776 [18:29:24] 4(no projects): slack test - https://phabricator.wikimedia.org/T92401#1110361 (10Aklapper) 5Open>3Invalid Please use http://phab-01.wmflabs.org/ for testing Phabricator as this is a production instance. Thanks! [18:29:55] (03CR) 10Krinkle: [C: 032] mediawiki.js: clean-ups [core] - 10https://gerrit.wikimedia.org/r/195776 (owner: 10Ori.livneh) [18:30:08] 4(no projects): slack test - https://phabricator.wikimedia.org/T92399#1110370 (10Aklapper) Please use http://phab-01.wmflabs.org/ for testing Phabricator as this is a production instance. Thanks! [18:30:18] 4(no projects): slack test - https://phabricator.wikimedia.org/T92399#1110371 (10Aklapper) [18:31:10] 10Gather, 3Gather Sprint C_, 5Patch-For-Review: Gather breaks with bad data - https://phabricator.wikimedia.org/T92347#1110381 (10Jhernandez) From the msg on the commit above ^ > Make JSON importing more robust to avoid runtime errors > > Validate json structures before shoving them into an object (becaus... [18:31:57] (03CR) 10Ori.livneh: [C: 032] Create GlobalUsage role [vagrant] - 10https://gerrit.wikimedia.org/r/195082 (owner: 10Gilles) [18:32:21] (03Merged) 10jenkins-bot: Create GlobalUsage role [vagrant] - 10https://gerrit.wikimedia.org/r/195082 (owner: 10Gilles) [18:32:43] 10Phabricator-Upstream: Ability to move card/task via edit task interface - https://phabricator.wikimedia.org/T92392#1110389 (10Aklapper) [18:33:13] 10Phabricator-Upstream: Ability to move card/task via edit task interface - https://phabricator.wikimedia.org/T92392#1109794 (10Aklapper) [18:33:14] 10Phabricator-Upstream: Make workboard column editable from task page - https://phabricator.wikimedia.org/T76813#1110393 (10Aklapper) [18:33:14] RoanKattouw, marktraceur: change 192370 deployed, so you're unblocked [18:33:16] 10Gather, 3Gather Sprint C_: Creating a new list should response with the id of the new list - https://phabricator.wikimedia.org/T92424#1110395 (10Jdlrobson) 3NEW [18:33:31] tgr: ori says you're unblocked! [18:35:42] 10MediaWiki-extensions-MultimediaViewer, 10Analytics, 6Multimedia, 7Blocked-on-Performance, and 2 others: Set up varnish 204 beacon endpoint for virtual media views and use it in Media Viewer - https://phabricator.wikimedia.org/T89088#1027235 (10Gilles) Now I just need to update the Media Viewer patch to p... [18:35:51] marktraceur: is that about https://gerrit.wikimedia.org/r/#/c/192370/ ? [18:36:52] (03Merged) 10jenkins-bot: mediawiki.js: clean-ups [core] - 10https://gerrit.wikimedia.org/r/195776 (owner: 10Ori.livneh) [18:38:28] 10Gather, 3Gather Sprint C_: Use API to generate special pages and manipulate collections - https://phabricator.wikimedia.org/T92418#1110425 (10Jdlrobson) [18:38:29] 10Gather, 3Gather Sprint C_: Creating a new list should response with the id of the new list - https://phabricator.wikimedia.org/T92424#1110426 (10Jdlrobson) [18:38:50] 10Gather, 3Gather Sprint C_: Use API to generate special pages and manipulate collections - https://phabricator.wikimedia.org/T92418#1110252 (10Jdlrobson) [18:38:51] 10Gather, 3Gather Sprint C_, 5Patch-For-Review: Gather extension should use a database table - https://phabricator.wikimedia.org/T91308#1110429 (10Jdlrobson) [18:39:09] tgr: Yeah, I thought it was what you had mentioned about ori. [18:39:21] Oh maybe it was gi11es [18:39:35] probably him [18:39:45] 10Gather, 3Gather Sprint C_: It should not be possible to access the editing interface for watchlist - https://phabricator.wikimedia.org/T92414#1110439 (10Jhernandez) a:3Jhernandez [18:39:52] 10Fundraising-Backlog: Recurring Payments Reporting - https://phabricator.wikimedia.org/T90630#1110440 (10CCogdill_WMF) Here is the query I usually use to check all recurring failures from all gateways: mysql civicrm -B -e "SELECT * from civicrm_contribution_recur JOIN civicrm_contribution ON civicrm_contributi... [18:39:56] 10MediaWiki-extensions-CentralNotice, 10Fundraising-Backlog, 3Fundraising Sprint Flaming Lips: Spike: How to implement performant campaign-associated mixins - https://phabricator.wikimedia.org/T90913#1110441 (10AndyRussG) OK! I don't see anything in the [[ https://git.wikimedia.org/blob/operations%2Fpuppet.g... [18:40:12] Sorry gi11es, *you're* unblocked. [18:49:06] 10Citoid: Have some sort of error if there is no map, or no matching template parameters, associated with a type. - https://phabricator.wikimedia.org/T92428#1110478 (10Mvolz) 3NEW [18:51:12] 3Gather Sprint C_: Long collection names break in Special:Gather/User - https://phabricator.wikimedia.org/T92429#1110493 (10Jhernandez) 3NEW [18:52:20] 3Gather Sprint C_: Long collection names break in Special:Gather/User - https://phabricator.wikimedia.org/T92429#1110506 (10Jhernandez) Waiting for @jkatzwmf and @msyed for what to do with this before moving it to ready for dev [18:56:43] 10MediaWiki-extensions-GettingStarted, 10Quality-Assurance: Cucumber tests for GettingStarted - https://phabricator.wikimedia.org/T92156#1110527 (10Mattflaschen) [18:56:44] 10MediaWiki-extensions-GettingStarted: Browser tests for guided tours being delivered by the GettingStarted toolbar - https://phabricator.wikimedia.org/T54246#1110528 (10Mattflaschen) [18:57:10] 10MediaWiki-extensions-GettingStarted: GettingStarted browser test for toolbar behavior itself - https://phabricator.wikimedia.org/T65173#1110532 (10Mattflaschen) [18:57:11] 10MediaWiki-extensions-GettingStarted, 10Quality-Assurance: Cucumber tests for GettingStarted - https://phabricator.wikimedia.org/T92156#1103051 (10Mattflaschen) [18:57:39] 10MediaWiki-extensions-GettingStarted, 10Quality-Assurance: Cucumber tests for GettingStarted - https://phabricator.wikimedia.org/T92156#1103051 (10Mattflaschen) [18:58:29] 10Phabricator-Upstream, 7Design: Unable to distinguish unread Phabricator notifications from the read ones - https://phabricator.wikimedia.org/T91755#1110538 (10Jaredzimmerman-WMF) 5Open>3Invalid a:3Jaredzimmerman-WMF The newest version of phab seems to show unread in a darker shade of blue, please reope... [18:59:34] (03PS4) 10EBernhardson: Add extension tag for creating arbitrary local links in i18n messages only [core] - 10https://gerrit.wikimedia.org/r/167117 (https://bugzilla.wikimedia.org/66746) [19:00:06] 10Fundraising Dash: Multiple fraud widgets share one modify modal - https://phabricator.wikimedia.org/T92430#1110544 (10Ejegg) 3NEW [19:01:08] 10MediaWiki-Special-pages, 7Performance: SpecialPageFactory::getAliasListObject is really slow (~700ms) - https://phabricator.wikimedia.org/T92393#1110553 (10Aklapper) p:5Triage>3Low [19:02:21] 3Gather Sprint C_: Long collection names break in Special:Gather/User - https://phabricator.wikimedia.org/T92429#1110554 (10JKatzWMF) @jhernandez Can we wrap text to 2 lines and then elipse if it's longer than that? 1 line seems too short, but we don't want to have long-ass columns. [19:03:35] (03CR) 10jenkins-bot: [V: 04-1] Add extension tag for creating arbitrary local links in i18n messages only [core] - 10https://gerrit.wikimedia.org/r/167117 (https://bugzilla.wikimedia.org/66746) (owner: 10EBernhardson) [19:04:49] (03CR) 10Gilles: [C: 04-1] Move detailsErrorCount to details step UI (033 comments) [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/193485 (https://phabricator.wikimedia.org/T90771) (owner: 10MarkTraceur) [19:05:13] (03PS5) 10EBernhardson: Add extension tag for creating arbitrary local links in i18n messages only [core] - 10https://gerrit.wikimedia.org/r/167117 (https://bugzilla.wikimedia.org/66746) [19:06:08] 10Phabricator-Upstream: Make workboard column editable from task page - https://phabricator.wikimedia.org/T76813#1110564 (10Jhernandez) @Aklapper has super powers and reads minds. Thanks for adding me. It seems to me that it has been dismissed :( It would definitely be awesome to edit it from the task page, sin... [19:06:31] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: white gap next to wikibase-sitelinkgroupview-heading-container in site link edit mode - https://phabricator.wikimedia.org/T92431#1110565 (10aude) 3NEW [19:07:13] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata: white gap next to wikibase-sitelinkgroupview-heading-container in site link edit mode - https://phabricator.wikimedia.org/T92431#1110575 (10Lydia_Pintscher) [19:07:14] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 7Tracking: Redesign header - https://phabricator.wikimedia.org/T75654#1110574 (10Lydia_Pintscher) [19:08:55] (03CR) 10jenkins-bot: [V: 04-1] Add extension tag for creating arbitrary local links in i18n messages only [core] - 10https://gerrit.wikimedia.org/r/167117 (https://bugzilla.wikimedia.org/66746) (owner: 10EBernhardson) [19:09:34] (03PS3) 10Anomie: WIP: AuthManager skeleton [core] - 10https://gerrit.wikimedia.org/r/195297 (https://phabricator.wikimedia.org/T91699) [19:09:47] (03CR) 10Anomie: "PS3: Interesting changes:" [core] - 10https://gerrit.wikimedia.org/r/195297 (https://phabricator.wikimedia.org/T91699) (owner: 10Anomie) [19:10:15] 10MediaWiki-extensions-Extensions-requests, 10MediaWiki-extensions-Nuke, 6Editing, 10Possible-Tech-Projects, and 2 others: Extension to identify and delete spam pages - https://phabricator.wikimedia.org/T90238#1110579 (10Yaron_Koren) @Pakshal94 - and anyone else who might be interested in doing this projec... [19:11:18] [13jquery-client] 15Krinkle 04force-pushed 06testing from 1491ddd19 to 145356a5f: 02https://github.com/wikimedia/jquery-client/commits/testing [19:11:19] 13jquery-client/06testing 145356a5f 15Timo Tijhof: Bootstrap repo with JSHint, JSCS, Karma, and JSDuck [19:13:14] 10MediaWiki-Interface, 7Design: Wikitable padding - https://phabricator.wikimedia.org/T91890#1110581 (10Jaredzimmerman-WMF) @Risker, Hello! The Design tag on phabricator has over 600 tasks in it, and the list grows every day. To triage, formulate rational thoughts, reply, much less create mockup for each one w... [19:13:25] (03CR) 10jenkins-bot: [V: 04-1] WIP: AuthManager skeleton [core] - 10https://gerrit.wikimedia.org/r/195297 (https://phabricator.wikimedia.org/T91699) (owner: 10Anomie) [19:15:35] (03PS2) 10Ori.livneh: Mention metrics in IContextSource docs [core] - 10https://gerrit.wikimedia.org/r/195635 (owner: 10Aaron Schulz) [19:16:26] (03CR) 10Ori.livneh: [C: 032] "Thanks!" [core] - 10https://gerrit.wikimedia.org/r/195635 (owner: 10Aaron Schulz) [19:24:40] 10Citoid: Add requested language as part of request header to citoid service - https://phabricator.wikimedia.org/T90603#1110596 (10Mvolz) p:5Triage>3Normal a:3Mvolz [19:33:13] (03PS3) 10Ori.livneh: OutputPage: Condition-wrap the