[00:00:01] New code comment: Aaron Schulz; Why are these tagged 1.19wmf or 1.19 for that matter?; [00:00:21] and? [00:00:42] used circa? [00:00:45] sumanah: Maybe. Very much maybe [00:00:58] 03(mod) installer: ability to override LocalSettings.php filename - 10https://bugzilla.wikimedia.org/34426 +comment (10Sumana Harihareswara) [00:01:15] I guess as a direct replacement for "approximately," that works. [00:01:19] But it looks very silly. [00:01:47] Dantman: I am fixing PostgresUpdater. The last fatal error was it mailing out in deleteDefaultMessages.php because it tried to log article deletion in RecentChanges sending getName() ("MediaWiki default") thinking it's an IP address, and PostgreSQL does not like such strings in a cidr field. [00:01:55] s/mailing/bailing/ [00:02:34] Hmmm.. cidr field? [00:03:01] rc_ip CIDR, [00:03:12] postgres has nice fields and functions for IP addresses [00:03:43] That sounds off... [00:03:46] New code comment: Catrope; Yeah, moving $processed outside of the loop sounds good. I don't know what else would be wrong here,; [00:03:50] rc_ip is a field for ip addresses, not usernames [00:04:01] It's an ip even when a user is logged in [00:04:11] That sounds like it's getting the data from the wrong place [00:04:51] 03laner * 10/trunk/extensions/LdapAuthentication/LdapAuthentication.php: Reverting AuthAttribute back to former implementation. I really need to read my own documentation before I make stupid changes like this. [00:04:58] So, Reedy, back to my problem... [00:05:10] Dantman: the code is doing isAnon() ? -> yes then getName() -> rc_ip [00:05:13] I think that's the bug [00:05:31] Is there a version of CR that will work with 1.18 that has the new diff feature, or will I have to wait until 1.19? [00:05:33] Sounds like it. [00:05:34] (Or play hacky-go-lucky?) [00:05:44] only 69 isAnon()s [00:05:46] not bad [00:06:21] I'd rather fix that than mess with ID [00:09:00] fix? [00:10:56] Dantman: check if any of them is used in the context of getName() being IP address [00:11:21] Ok... I don't really expect to find any other actual bugs [00:11:22] maintenance/edit.php is excellent: if ( $wgUser->isAnon() ) { $wgUser->addToDatabase(); } } [00:11:31] New code comment: Aaron Schulz; $wgMathUseMathJax was a better name. It's good to prefix globals with the extension name.; [00:11:55] In a lot of cases we treat named id=0 users as the same as anon for an actual reason. [00:12:33] // @todo FIXME: We can detect some anons even if it is not loaded. See User::getId() [00:12:53] 03jdlrobson * 10/trunk/extensions/MobileFrontend/ (4 files in 3 dirs): [00:12:53] redefine toggle behaviour [00:12:53] this rewrites the tests to describe toggle behaviour [00:12:53] in terms of classes rather than visibility [00:12:54] in beta we use height:0 and overflow:hidden instead of [00:12:55] display:none so we can make use of transitions to [00:12:56] animate expanding/collapsing [00:13:59] * Dantman wonders if we should write a bot that'll scan core and once every 6h quote a @todo or @fixme from some random place in core into the irc channel [00:14:16] SkinLegacy deals nice with it: $name = $wgRequest->getIP(); [00:14:52] 94932 ialex $name = $wgRequest->getIP(); [00:14:53] 03(mod) Rename "gerrit2" bot/approver to "linterbot" or similar - 10https://bugzilla.wikimedia.org/35141 +comment (10sumanah) [00:15:19] 03(mod) Autolink to new Gerrit / Git changesets and SHA-1 commits - 10https://bugzilla.wikimedia.org/35144 +comment (10sumanah) [00:15:59] saper: SkinLegacy doesn't deal with anything [00:16:20] 03(mod) Add facility to disable follow-up notification e-mails. - 10https://bugzilla.wikimedia.org/35217 +comment (10wiki) [00:17:31] 03(mod) Set up gitweb redirects so that Gerrit will work as repo browser - 10https://bugzilla.wikimedia.org/34140 +comment (10Sumana Harihareswara) [00:17:31] saper: While there are three states ip, virtual, and user, it's impossible for the user associated with an actual request to be virtual, they will only ever be ip or user [00:17:54] Dantman: would be nice to handle imported users [00:18:03] or, users from dumps [00:18:15] AaronSchulz: in what way? [00:19:04] * AaronSchulz recalls the current handling being iffy [00:19:09] it's been a while [00:19:23] Imported users are assigned user ID = 0, I think. [00:19:42] Well, the users of imported edits. [00:19:53] might be nice to represent them with entities somehow, but, meh [00:19:59] * AaronSchulz goes back to Math [00:20:06] Well, the users of imported edits with no current user. [00:20:35] I can't remember if there was some hack that gave imported edits an id if the user existed at the time the import was made.x [00:20:37] Assuming that a current user with the same name as the imported edits is a bit daft. [00:20:45] Aye [00:22:54] Yuck... I'm right [00:24:45] whatis CreditsAction for? [00:24:52] * Formats credits for articles [00:24:54] ah [00:25:12] Used in HTML dumps. [00:27:24] From the looks of the importer code it does a getID on a User gotten from User::newFromName. Meaning that if a user exists at the time of import that matches the name the edit will be given their id. [00:27:28] Reedy: After a bit of playing I find myself on trunk, r95036. This isn't there (we don't have line numbers/comments/etc.) but it is better than what we had before. Will cut my losses there for tonight, I think... might have to wait until we deploy 1.19. [00:27:31] New code comment: Aaron Schulz; Expanded to what other files?; [00:27:36] 03jdlrobson * 10/trunk/extensions/MobileFrontend/javascripts/beta_opensearch.js: [00:27:36] correct viewport resetting [00:27:36] viewport should be set for anything that can support it [00:27:36] not just iphone/ipad (palm pre for example) [00:27:37] also when we do reset it make sure we reset to the initial [00:27:38] value [00:28:29] 03(FIXED) Provide url parameters to prefill the fields of upload wizard - 10https://bugzilla.wikimedia.org/33341 +comment (10Jeroen De Dauw) [00:29:01] (next revision, 95043, caused an invalid chunk error on page rendering, so I stopped there) [00:31:48] If we really want to handle imported users we should export dumps with an api url instead of just the unstable and if we do my virtual user bit associate virtual users with an api url [00:32:47] If we want we could consider giving users a universally unique id and do a comparison of that over the api if we want to see if we should consider a user the same [00:34:44] 03(mod) Wikimedia 404 error page shouldn't use a Refresh HTTP header to implement the auto-redirect to /wiki - 10https://bugzilla.wikimedia.org/35052 +comment (10mah) [00:35:35] 03jdlrobson * 10/trunk/extensions/MobileFrontend/ (javascripts/beta_opensearch.js stylesheets/beta_common.css): [00:35:36] remove autocomplete from search results [00:35:36] it was discussed that although we'd like this in future [00:35:36] at the moment whilst the search is only a title search [00:35:37] this doesn't make much sense so removing [00:38:00] Reedy: so what of r 113836? [00:41:54] 03jdlrobson * 10/trunk/extensions/MobileFrontend/stylesheets/beta_common.css: [00:41:55] add cursor pointer for section headings [00:41:55] make it clear you can click these [00:44:51] Dantman: throwing an exception on illegal rc_ip in Recentchange sound a bit too harsh, or? :) [00:45:38] 03(mod) Forward slashes in template/form names cause error: patch for suggested fix attached - 10https://bugzilla.wikimedia.org/35128 +comment (10Mark A. Hershberger) [00:45:57] 03(mod) Properties of type record output only the first record of a unique datatype - 10https://bugzilla.wikimedia.org/35131 (10Mark A. Hershberger) [00:46:14] saper: Depens on what is supposed to be passed to it [00:46:28] Firefox can't find the server at svn.wikimedia.org. [00:46:30] * AaronSchulz sighs [00:46:42] 03(mod) [MW] Split or copy overwritten uploaded files and versions into their own file pages - 10https://bugzilla.wikimedia.org/35133 (10Mark A. Hershberger) [00:47:06] Dantman: null, '' or IP address [00:47:20] I check it with IP::isIPAddress() [00:47:22] 03(mod) stats.wikimedia.org needs options to see exact counts and dates - 10https://bugzilla.wikimedia.org/35150 (10Mark A. Hershberger) [00:47:31] New code comment: Krinkle; Yes, I recognized the logic from GlobalDependency, but without the unnecessary overhead and with the; [00:48:07] Well if user names are being passed to it sure, that doesn't sound like something it should expect if there's an explicit ip arg. [00:50:09] 03(mod) MathJax: Several commands that work in texvc are not recognized - 10https://bugzilla.wikimedia.org/35186 +comment (10Richard Morris) [00:54:01] New code comment: Aaron Schulz; Would it suck to have to debug these?; [01:01:25] 03(mod) Set up Gerrit project owner group for MediaWiki core + WMF-deployed extensions - 10https://bugzilla.wikimedia.org/35148 +comment (10sumanah) [01:05:18] 03(mod) curious date parameter parsing for #time - 10https://bugzilla.wikimedia.org/35172 +comment (10Mark A. Hershberger) [01:07:04] 03krinkle * 10/trunk/extensions/CentralAuth/modules/ext.centralauth.js: [CentralAuth JS] remove redunant function expression name, whitespace (follow-up r112930) [01:07:34] 03jdlrobson * 10/trunk/extensions/MobileFrontend/stylesheets/operamini.css: remove trailing whitespace on operamini.css [01:07:48] 03(mod) Input box on BlackBerry is too thin - 10https://bugzilla.wikimedia.org/35182 +comment (10Mark A. Hershberger) [01:08:34] 03(mod) MathJax doesn't allow abuse of \mathbb and other fonts for special characters - 10https://bugzilla.wikimedia.org/35187 (10Mark A. Hershberger) [01:08:53] 03(mod) MathJax sometimes shows subscripts in sums at different position as rendered PNG - 10https://bugzilla.wikimedia.org/35188 (10Mark A. Hershberger) [01:09:09] 03(mod) MathJax treats double \underline differently as texvc - 10https://bugzilla.wikimedia.org/35189 (10Mark A. Hershberger) [01:09:24] 03(mod) MathJax doesn't show double lines in tables - 10https://bugzilla.wikimedia.org/35190 (10Mark A. Hershberger) [01:10:47] 03(FIXED) "My Bugs" does not return my UNCONFIRMED bugs - 10https://bugzilla.wikimedia.org/35192 +comment (10Bugmeister Bot) [01:12:15] 03(mod) Semantic Search produces invalid links for ModSecurity (the WAF) - 10https://bugzilla.wikimedia.org/35203 (10Mark A. Hershberger) [01:12:46] 03(mod) Problems with namespace name cause unit test failures if $wgLanguageCode is not "en" - 10https://bugzilla.wikimedia.org/35204 (10Mark A. Hershberger) [01:13:31] 14(INVALID) toolserver is listing assessed articles - 10https://bugzilla.wikimedia.org/35222 +comment (10Mark A. Hershberger) [01:13:44] 03(mod) About Menu title bar off-centre - 10https://bugzilla.wikimedia.org/35224 (10Mark A. Hershberger) [01:14:48] 03(mod) About Menu title bar off-centre - 10https://bugzilla.wikimedia.org/35224 +comment (10Mark A. Hershberger) [01:14:49] 03(NEW) Show last seen position in Nearby map view - 10https://bugzilla.wikimedia.org/35236 normal; Wikipedia App: Near by; (yuvipanda) [01:15:10] 03(mod) App Icon looks bad - 10https://bugzilla.wikimedia.org/35225 (10Mark A. Hershberger) [01:16:26] 14(WFM) All titles broken - 10https://bugzilla.wikimedia.org/35235 +comment (10Mark A. Hershberger) [01:16:35] 03(mod) Show last seen position in Nearby map view - 10https://bugzilla.wikimedia.org/35236 +comment (10yuvipanda) [01:17:46] New code comment: Brion VIBBER; Potentially, but that's usually an issue for upstream to handle. ;) \ Could think about including the; [01:18:50] 03(mod) No way to do logins without user surrendering their password to software - 10https://bugzilla.wikimedia.org/35199 +comment (10Mark A. Hershberger) [01:20:46] New code comment: Brion VIBBER; So they can get deployed some day soon instead of in 4 months? :); [01:22:01] New code comment: Brion VIBBER; texvc.js, wiki2jax.js, and ext.math.mathjax.enabler.js, and now the newer version of this or similar; [01:22:39] brion: did you ping robla about it? [01:23:01] gah [01:23:02] * robla listens up [01:23:05] brion no here :) [01:23:09] heh [01:23:10] * AaronSchulz is used to him being here [01:25:22] 03(mod) unreadable on high contrast theme - 10https://bugzilla.wikimedia.org/35200 (10Mark A. Hershberger) [01:26:24] 03(mod) unreadable on high contrast theme - 10https://bugzilla.wikimedia.org/35200 +comment (10mah) [01:27:28] 03(mod) Pending changes diff is centered - 10https://bugzilla.wikimedia.org/35202 (10Mark A. Hershberger) [01:28:05] 03(mod) Special:Whatlinkshere spews deprecation warning - 10https://bugzilla.wikimedia.org/35206 (10Mark A. Hershberger) [01:29:11] 03(mod) Kill secure.wikimedia.org landing page - 10https://bugzilla.wikimedia.org/35207 +ops (10Mark A. Hershberger) [01:29:36] 03(mod) Create a welcome page for new users, for when they initially log in - 10https://bugzilla.wikimedia.org/35210 (10Mark A. Hershberger) [01:30:39] 03(mod) tipsy missing a feature - 10https://bugzilla.wikimedia.org/35212 +need-review +patch (10Mark A. Hershberger) [01:31:38] 03(mod) App W and cancel buttons can't be clicked in regular web browser (Safari, Chrome) - 10https://bugzilla.wikimedia.org/35213 (10Mark A. Hershberger) [01:35:39] 03(mod) Set up Gerrit project owner group for MediaWiki core + WMF-deployed extensions - 10https://bugzilla.wikimedia.org/35148 +comment (10sumanah) [01:38:17] 03(mod) Mobile redirect strips https - 10https://bugzilla.wikimedia.org/35215 +ops; +comment (10Mark A. Hershberger) [01:38:54] 03(mod) Add facility to disable follow-up notification e-mails. - 10https://bugzilla.wikimedia.org/35217 (10Mark A. Hershberger) [01:40:26] 03(mod) Triage Git conversion issues wiki pages - 10https://bugzilla.wikimedia.org/34349 +comment (10Sumana Harihareswara) [01:42:40] 03aaron * 10/trunk/phase3/includes/specials/SpecialUndelete.php: Add error css to errors like the other file operation pages and actions [01:42:57] 03(mod) Make git-review more easy to install on Windows - 10https://bugzilla.wikimedia.org/35145 summary; +comment (10Sumana Harihareswara) [01:43:23] 03awjrichards * 10/trunk/extensions/MobileFrontend/ (MobileFrontend.body.php tests/MobileFrontendTest.php): (log message trimmed) [01:43:23] * Abstracted cookie expiration time handling to its own method [01:43:23] * Added unit tests for cookie expiration time handling method as well as getUseFormat() [01:43:23] * Wanted to add further unit tests around cookie handling, but I cannot get [01:43:24] PHPUnit playing nicely with cookies. At first it was causing header issues until [01:43:25] prielly suggested disabling output buffereing for the test method, which quieted [01:43:26] the errors. However, setcookie() seems to have actual effect in the tests (see [01:44:17] 03(mod) svnImport generates "svn: No such revision" errors. - 10https://bugzilla.wikimedia.org/35218 (10Mark A. Hershberger) [01:44:32] 03(mod) Mass-create a bunch of Gerrit accounts for existing SVN committers - 10https://bugzilla.wikimedia.org/35209 +comment (10Sumana Harihareswara) [01:45:31] New code comment: Awjrichards; Wow, typing fail in the commit message. \
 \ Wanted to add further unit tests around cookie handlin; 
[01:47:09] 	 03(mod) MathJax sometimes breaks off rendering formulas in Internet Explorer - 10https://bugzilla.wikimedia.org/35219  (10Mark A. Hershberger)
[01:49:16] 	 03(mod) Allow per-session log out - 10https://bugzilla.wikimedia.org/35220  (10Mark A. Hershberger)
[01:50:18] 	 03(mod) Categories can contain themselves - 10https://bugzilla.wikimedia.org/35221  (10Mark A. Hershberger)
[01:50:35] 	 03(mod) App spinner animation never stops - 10https://bugzilla.wikimedia.org/35229  (10Mark A. Hershberger)
[01:50:49] 	 03(mod) 'X' image is really pixelated - 10https://bugzilla.wikimedia.org/35231  (10Mark A. Hershberger)
[01:51:09] 	 03(mod) Show last seen position in Nearby map view - 10https://bugzilla.wikimedia.org/35236  (10Mark A. Hershberger)
[01:52:05] 	 I have seen some examples in mw,
[01:52:24] 	 about importing javascript code
[01:52:39] 	 wpirc4923: like, user scripts & gadgets?
[01:52:40] 	 !gadgets
[01:52:41] 	 For information about Extension:Gadgets see http://www.mediawiki.org/wiki/Extension:Gadgets
[01:52:42] 	 some use smaxage and maxage and some others don't
[01:52:43] 	 03saper *  10/trunk/phase3/ (3 files in 3 dirs): (log message trimmed)
[01:52:43] 	 Unbreak maintenance/deleteDefaultMessages.php for PostgreSQL
[01:52:43] 	 deleteDefaultMessages.php was failing during upgrade
[01:52:43] 	 from MediaWiki 1.7.3 with a databaser error.
[01:52:44] 	 A stub user:
[01:52:45] 	 $user = User::newFromName( 'MediaWiki default' );
[01:52:46] 	 has user ID 0, so that $user->isAnon() is true.
[01:52:58] 	 what's the best practice?
[01:54:46] 	 New code comment: Saper; Another step to get PostgresUpdater to let you upgrade from 1.7.3 till present.; 
[01:55:11] 	 sumanah, any idea on this?
[01:55:40] 	 Dantman: !r113888 
[01:56:00] 	 ;) You mixed up the command
[01:56:15] 	 !r113888 | Dantman
[01:56:16] 	 Dantman: I don't know anything about "r113888".
[01:56:29] 	 Hmmm right... actually it was messed up even more
[01:56:32] 	 !r 113888 | Dantman
[01:56:32] 	 Dantman: https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113888
[01:56:43] 	 tricky, eh?
[01:57:13] 	 eh
[01:57:16] 	 wfDebug
[02:00:18] 	 03saper *  10/trunk/phase3/includes/RecentChange.php: Followup-To: r113888 Remove extra wfDebug()
[02:03:58] 	 03(NEW) testing - 10https://bugzilla.wikimedia.org/35237 normal; MediaWiki: API; (hexmode)
[02:04:18] 	 03(mod) Write git localization import scripts for translatewiki.net - 10https://bugzilla.wikimedia.org/34137  normal->major (10Sumana Harihareswara)
[02:05:01] 	 14(INVALID) testing - 10https://bugzilla.wikimedia.org/35237  (10Mark A. Hershberger)
[02:05:07] 	 I see a pure Japanese e-mail on mediawiki-l and think... "I wish I knew kanji and kana."
[02:05:18] 	 03(mod) [MW] Split or copy overwritten uploaded files and versions into their own file pages - 10https://bugzilla.wikimedia.org/35133  +comment (10bawolff+wn)
[02:07:14] 	 04(REOPENED) testing - 10https://bugzilla.wikimedia.org/35237  (10Mark A. Hershberger)
[02:07:31] 	 14(INVALID) testing - 10https://bugzilla.wikimedia.org/35237  (10Mark A. Hershberger)
[02:11:53] 	 What must be the title of the page when showing diffs https://bugzilla.wikimedia.org/show_bug.cgi?id=33928
[02:12:11] 	 jquery UI isn't loaded by default in mediawiki.org?
[02:12:11] 	 hmm
[02:17:51] 	 this is frustrating
[02:17:52] 	 sigh
[02:17:53] 	 Hello. Is anyone here good at writing regular expressions?
[02:18:06] 	 yuvipanda: Hello. Do you have a problem?
[02:18:28] 	 Hazard-SJ: jquery.ui.button (and jquery.ui in general) seems to be inconsistently loaded in mediawiki.org
[02:18:34] 	 am trying to write a smallish userscript
[02:18:40] 	 yuvipanda: They're not loaded unless something indicates they're needed
[02:18:53] 	 yuvipanda: mw.loader.using( 'jquery.ui.button', function() { code that runs once jui button is loaded } );
[02:19:58] 	 RoanKattouw: I have that
[02:20:05] 	 http://www.mediawiki.org/wiki/User:Yuvipanda/common.js is where i'm experimenting
[02:20:06] 	 That should Just Work
[02:20:15] 	 hmm, let me see if it's a cache thing
[02:20:33] 	 okay, disabling cache in chrome seems to do the trick
[02:20:59] 	 RoanKattouw: Are you good at RegEx?
[02:21:13] 	 03(mod) Wikimedia 404 error page shouldn't use a Refresh HTTP header to implement the auto-redirect to /wiki - 10https://bugzilla.wikimedia.org/35052  +comment (10b)
[02:23:31] 	 yuvipanda: btw, you may wanna swap the document-ready handler and the mw.loader.using wrapper
[02:23:42] 	 no need to wait until document ready to start downloading jquery.ui
[02:24:06] 	 Krinkle: ah, okay! 
[02:24:16] * yuvipanda  switches to developing this on enwiki
[02:24:34] 	 i see no code editor gadget on enwiki, so I guess i'll have to do copy paste dance (or set it up myself)
[02:24:56] 	 Krinkle: You?
[02:25:17] 	 Hazard-SJ: RegExps are dead simple... instead of poking people why don't you just ask your question to the channel.
[02:26:41] 	 Could you please give me a regex that prevents creation of pages in the "Talk" namespace to pages like:
[02:26:43] 	 Talk:2011 Costa Book Awards+Result:+èñïîëüçîâàí+íèêíåéì+"gaveDaubage";+ïðèñóòñòâóåò+nofollow;+óñïåõ+-+çàïîñòèëè+â+ïåðâûé+ïîïàâøèéñÿ+ðàçäåë+"/w/index.php
[02:26:45] 	 Talk:Burning of Parliament+Result:+èñïîëüçîâàí+íèêíåéì+"gaveDaubage";+ïðèñóòñòâóåò+nofollow;+óñïåõ+-+çàïîñòèëè+â+ïåðâûé+ïîïàâøèéñÿ+ðàçäåë+"/w/index.php
[02:26:46] 	 Talk:The Sleep of Reason Produces Monsters+Result:+GET-òàéìàóòîâ+1;+èñïîëüçîâàí+íèêíåéì+"gaveDaubage";+ïðèñóòñòâóåò+nofollow;+óñïåõ+-+çàïîñòèëè+â+ïåðâûé+ïîïàâøèéñÿ+ðàçäåë+"/w/index.php
[02:26:48] 	 Talk:Whipped cream++Result:+èñïîëüçîâàí+íèêíåéì+"Spiphette";+ïðèñóòñòâóåò+nofollow;+óñïåõ+-+çàïîñòèëè+â+ïåðâûé+ïîïàâøèéñÿ+ðàçäåë+"/w/index.php‎
[02:26:50] 	 (do I need to continue?)
[02:26:52] 	 Something that prevents creating in 'Talk:', which ends with '+"/w/index.php', has some '+'s in it, and has '+nofollow;+'?
[02:26:57] 	 Hazard-SJ: Me?
[02:27:07] 	 Hazard-SJ: I'm the last person you want to get help from for regexes
[02:27:24] 	 Krinkle: :O
[02:27:30] 	 Krinkle: also, is me prefixing every class and id I use with a gadget specific handler overkill?
[02:27:39] 	 yuvipanda: No
[02:27:53] 	 thought so
[02:28:22] 	 yuvipanda: It's perfectly fine to have a class like mw-sp-whatlinkshere-label or id mw-sp-whatlinkshere-form
[02:28:31] 	 or mw-gadget-foobar-button
[02:28:41] 	 !^Talk:.+\+nofollow;\+.+/w/index\.php$!
[02:28:41] 	 I don't know anything about "^talk:.+\+nofollow;\+.+/w/index\.php$!".
[02:28:48] 	 i'm doing gadgetname-button
[02:28:51] 	 gadgetname-*
[02:28:53] 	 without the w
[02:28:55] 	 err
[02:28:56] 	 without the mw-
[02:29:03] 	 k
[02:29:57] 	 Dantman: With the "!", right?
[02:30:04] 	  no
[02:30:10] 	 Those are delimiters.
[02:30:22] * Hazard-SJ  is confused
[02:30:31] 	 Like quotes
[02:30:37] * Hazard-SJ  wants it for titleblacklist
[02:30:38] 	 "string" /regex/
[02:30:49] 	 or !regex!
[02:31:04] 	 doesn't matter afaik, you use whatever delimiter least conflicts with the rest
[02:31:07] 	 Okay, thanks.
[02:31:08] 	 ;) There's also |regex| #regex# etc...
[02:31:09] 	 to avoid extra exaping
[02:31:12] 	 escaping
[02:31:22] 	 iirc titleblacklist just goes without delimiters
[02:36:33] 	 Dantman: The blacklist code |^Talk:.+\+nofollow;\+.+/w/index\.php$| claims to be invalid.
[02:37:08] 	 No delimiters?
[02:37:15] 	 Correct
[02:37:19] 	 (I could also use abuse filter code if you're not sure about the titleblacklist code)
[02:37:31] 	 The following line in the title blacklist is invalid;
[02:37:34] 	 please correct it before saving:
[02:37:35] 	 ^Talk:.+\+nofollow;\+.+/w/index\.php$
[02:37:45] 	 That was the error I got
[02:37:50] 	 Hmmm... I'm not sure if title blacklist is pre anchored
[02:39:00] 	 Dantman: So do you know the abusefilter code to prevent IPs from creating such pages?
[02:39:05] 	 Try dropping the ^ and $
[02:39:13] * Hazard-SJ  tries
[02:39:23] 	 hi yuvipanda - what does "Madam Hut" mean btw?
[02:39:53] 	 sumanah: Ironholds has paid me with a promise of a bottle of alcohol so I revealed the meaning to him. You can do the same and I would tell you :D
[02:39:57] 	 he gave up after trying for a while
[02:39:58] 	 :D
[02:40:02] 	 it isn't exactly significant
[02:40:13] 	 Dantman:
[02:40:16] 	 The following line in the title blacklist is invalid;
[02:40:18] 	 please correct it before saving:
[02:40:18] 	 and I'm sure he went 'damn that's lame!' after I told him as well.
[02:40:19] 	 Talk:.+\+nofollow;\+.+/w/index\.php
[02:40:25] 	 New patchset: saper; "Merge from SVN r113408, r113487, r113488, r113489, r113500, r113501, r113534" [test/mediawiki/core] (master) - https://gerrit.wikimedia.org/r/3181
[02:40:26] 	 New patchset: saper; "SVN r113789: Cosmetic improvements to PostreSQL updater output" [test/mediawiki/core] (master) - https://gerrit.wikimedia.org/r/3182
[02:40:27] 	 New patchset: saper; "SVN r113838: Follow-up to r15791: Rename "user" and "text" when upgrading on PostgreSQL" [test/mediawiki/core] (master) - https://gerrit.wikimedia.org/r/3183
[02:40:28] 	 New patchset: saper; "SVN r113888, r113889: Unbreak maintenance/deleteDefaultMessages.php for PostgreSQL" [test/mediawiki/core] (master) - https://gerrit.wikimedia.org/r/3184
[02:40:51] 	 03(mod) Set up gitweb redirects so that Gerrit will work as repo browser - 10https://bugzilla.wikimedia.org/34140  +comment (10Krinkle)
[02:44:44] 	 New patchset: saper; "Nuke .orig" [test/mediawiki/core] (master) - https://gerrit.wikimedia.org/r/3185
[02:44:54] 	 hi, i'm looking for a way to integrate Mediawiki into Drupal
[02:45:18] 	 Dantman?
[02:45:26] 	 is there an alternative to https://drupal.org/project/liquid that is maintained?
[02:46:16] 	 Pft... well this explains it
[02:46:32] 	 Hazard-SJ: Talk:.+\+nofollow;\+.+\/w\/index\.php
[02:46:36] 	 03(mod) HTML page title should say we are looking at a diff - 10https://bugzilla.wikimedia.org/33928  +comment (10nischayn22)
[02:46:51] 	 TitleBlacklist uses / internally as a delimiter so you have to exape it...
[02:47:29] 	 To test if a regexp is valid it just does preg_match( "/{$regex}/u", '' ) === false
[02:47:33] 	 03(mod) HTML page title should say we are looking at a diff - 10https://bugzilla.wikimedia.org/33928   +need-review (10Nischay Nahata)
[02:48:15] 	 walden_: https://www.mediawiki.org/wiki/Extension:DrupalIntegration
[02:49:03] 	 Dantman: Okay, thanks. Trying...
[02:50:11] 	 Hazard-SJ: thanks, this looks good
[02:51:32] 	 Hazard-SJ: so if we use this option, will our users have to login through Mediawiki before they can access Drupal?
[02:51:45] 	 Dantman: It was saved successfully
[02:52:13] 	 walden_: Is that what you want, or vice versa?
[02:53:41] 	 walden_: We also have http://www.mediawiki.org/wiki/Extension:AuthDrupal
[02:56:19] 	 03(mod) tipsy missing a feature - 10https://bugzilla.wikimedia.org/35212  +comment (10fur.hewiki)
[03:00:15] 	 Hazard-SJ: nice, i think AuthDrupal is what we are looking for
[03:00:29] 	 thanks for point it out
[03:00:37] 	 *pointing
[03:01:47] 	 walden_: You're welcome.
[03:12:35] 	 03(NEW) Installer's "authorized editors only" does not allow edit or createaccount rights to anons but allows creating pages - 10https://bugzilla.wikimedia.org/35238 enhancement; MediaWiki: Installation; (jeffwang16)
[03:23:05] 	 03(mod) Wikimedia 404 error page shouldn't use a Refresh HTTP header to implement the auto-redirect to /wiki - 10https://bugzilla.wikimedia.org/35052  +comment (10mediawiki-bugs)
[03:34:13] 	 03(mod) Wikimedia 404 error page shouldn't use a Refresh HTTP header to implement the auto-redirect to /wiki - 10https://bugzilla.wikimedia.org/35052  +comment (10b)
[03:40:16] 	 New code comment: Krinkle; This is a 1.19 regression, no need for release notes.; 
[03:41:01] 	 New code comment: Krinkle; Oh, 1.19beta is out?; 
[03:46:31] 	 New code comment: Krinkle; That's fine. The unit tests are ran in a PHP environment, albeit most files being html or js. We hav; 
[03:50:26] 	 03tstarling *  10/trunk/php/luasandbox/ (9 files in 2 dirs): (log message trimmed)
[03:50:26] 	 * Allow LuaSandbox objects to be re-entered, i.e. lua -> php -> lua.
[03:50:26] 	 * When there is an emergency timeout, make the LuaSandbox object "invalid", with state=NULL, instead of re-initialising it.
[03:50:26] 	 * Cleaned up conversion of LUA_TFUNCTION to PHP LuaSandboxFunction object, from r110080.
[03:50:27] 	 * Fixed code duplication from r110080 by merging the two places where LuaSandboxFunction objects are made. Moved zval allocation to the luasandbox_lua_to_zval() caller so that it can set return_value.
[03:50:28] 	 * In luasandbox_lua_to_zval(), fixed negative index handling in the LUA_TFUNCTION case.
[03:50:29] 	 * Fixed handling of the case where more than 2^31 chunks are created
[03:53:42] 	 03(NEW) Fatal error if to be merged users are blocked - 10https://bugzilla.wikimedia.org/35239 major; MediaWiki extensions: UserMerge; (krinklemail)
[03:56:19] 	 03(mod) Fatal error if to be merged users are blocked - 10https://bugzilla.wikimedia.org/35239  +comment (10krinklemail)
[03:58:24] 	 03(mod) Fatal error if to be merged users are blocked - 10https://bugzilla.wikimedia.org/35239  +comment (10krinklemail)
[04:01:38] 	 are they making a LUA sandbox in PHP??
[04:04:48] 	 ![[ Lua | JRWR 
[04:04:48] 	 JRWR: https://www.mediawiki.org/wiki/Lua
[04:24:08] 	 03tstarling *  10/trunk/php/luasandbox/ (luasandbox.c php_luasandbox.h): Override math.random and math.randomseed with versions that don't allow Lua to affect the exection of PHP by setting the seed, or to obtain information about state of PHP's PRNGs
[04:29:41] 	 Warning:  Illegal string offset 'LIMIT' in C:\wamp\www\MediaWiki\includes\db\Database.php on line 1462
[04:29:43] * Aaron|home hmms [04:34:25] 03aaron * 10/trunk/phase3/includes/specials/SpecialUndelete.php: Fixed 'Illegal string offset 'LIMIT' in C:\wamp\www\MediaWiki\includes\db\Database.php on line 1462' [04:46:20] Woot... linear recursive looping [05:01:32] Joan: poke? [05:02:57] Hi. [05:03:00] mw-bot is here. [05:05:02] Joan: revert that iframe if you havn't [05:05:16] Per the privacy policy [05:05:18] It's a single revision. [05:05:27] There's no reverting it. [05:05:35] blank or delete than [05:05:57] It's not that simple. :-) [05:06:04] I have to give them time to respond. [05:06:23] Privacy policy overrides rules tbh [05:20:24] Hi, I have been reading [[mw:Manual:Coding_conventions/JavaScript]], but I wonder [05:21:12] what's the difference between a IIFE like ( function ( $, mw, undefined ) { //Code } )( jQuery, mediaWiki ); [05:21:38] and just ( function () { //code } )(); [05:21:50] p858snake|l: The question is whether JobVite's privacy policy is compatible with WMF"s, I think. [05:21:53] WMF's [05:22:02] Which is a legal question, I supose. [05:22:04] suppose [05:22:10] Typing is so overrated. [05:22:15] Joan: It doesn't matter theres is, ours doesn't allow tracking of users via 3rd parties [05:22:28] p858snake|l: Is it that explicit? [05:22:39] Every time I think the privacy policy says something, I re-read it and it's usually very vague. [05:22:51] iirc, Its the same reason we can't use the social network sharing features [05:23:03] If domas was around, he would know [05:23:27] possible TimStarling, hes pretty Qed up on our privacy policy iirc [05:23:40] wait... how is foundationwiki even using a iframe... [05:23:47] It supports raw HTML. [05:24:13] that sounds like not my problem [05:24:34] * Aaron|home wonders if the lua stuff only works on *nix [05:24:49] It's just out of curiosity... [05:24:53] p858snake|l: I think it's Erik's call. [05:25:49] I imagine someone'll respond tomorrow. It's the middle of the night right now. [05:26:01] Aaron|home: there's no reason it can't work on windows [05:26:06] but nobody has written a config.w32 yet [05:27:07] wpirc6166: one makes aliases for global variables and one doesn't [05:27:49] TimStarling: But what's the difference, if they're global the are accessible anyway [05:27:55] Performance? [05:29:21] yeah apparently you save could save up to 0.6us [05:29:31] https://www.mediawiki.org/wiki/Special:Code/MediaWiki/111989 [05:30:18] and also if you're running MediaWiki on, say, the Mirriam Webster intranet then the skin might overwrite window.mw [05:30:50] but it's less likely to overwrite window.mediaWiki [05:31:27] I see... [05:34:20] "slight speed improvement by accessing jQuery via $ from the local scope instead of several steps up in the chain to the window property. " by Krinkle [05:34:26] Thanks TimStarling [05:53:33] Aaron|home: actually it doesn't quite support windows at the moment [05:53:41] the signal stuff is unix-specific [05:55:12] 03krinkle * 10/trunk/phase3/resources/mediawiki.api/mediawiki.api.watch.js: [05:55:12] [mediawiki.action.watch] Move re-used logic into local function [05:55:12] * Follows-up r112440, r107969, r107350 [05:58:53] hmph [06:00:48] Hi All, having trouble installing media wiki [06:00:48] maybe you could hack all of that out with #ifdef [06:00:58] Catchable fatal error: Argument 2 passed to Parser::parse() must be an instance of Title, null given, [06:01:10] true that [06:02:02] techfiz: what version? [06:02:12] what OS, what sort of host [06:02:32] TimStarling: MediaWiki 1.17.2, and the latest version, LAMP [06:03:40] you know 1.18 is out now [06:03:57] what linux distro? [06:04:02] do you use a package or install from source? [06:04:23] 03krinkle * 10/trunk/phase3/resources/mediawiki.action/mediawiki.action.watch.ajax.js: [06:04:24] [mediawiki.action.watch] clean up [06:04:24] * Fix implied global variable 'i' in mwUriGetAction() [06:04:24] * Indention nearly everything an extra level (svn di -x-uw) [06:04:25] * other minor js coding style [06:04:31] TimStarling: source install Centos is what I'm trying on [06:04:58] TimStarling: yes same issue with 1.18.1 as well [06:05:06] what do you do to get this error? [06:05:45] when we start the installation [06:06:09] Warning: preg_replace() [function.preg-replace]: Compilation failed: unknown option bit(s) set at offset 0 in /home/locus/public_html/mediawiki/includes/Title.php on line 2590 [06:07:04] Is there any easy way to swap database types with an existing mediawiki install? [06:07:16] techfiz: what version of PHP? [06:07:29] 5.3.6 [06:08:44] 03(mod) include Marathi alphabet and characters in edit tools - 10https://bugzilla.wikimedia.org/35111 +comment (10Shantanoo) [06:09:03] is this on line 2590 of Title.php in your installation? [06:09:06] $dbkey = preg_replace( '/[ _\xA0\x{1680}\x{180E}\x{2000}-\x{200A}\x{2028}\x{2029}\x{202F}\x{205F}\x{3000}]+/u', '_', $dbkey ); [06:10:00] I bet it's a shared PCRE library instead of the bundled one [06:10:37] yes, I have it in there [06:10:56] what version of CentOS? [06:11:19] 5.8 [06:15:50] if you do this: [06:15:52] rpm -qa | grep pcre [06:15:57] what version does it say? [06:17:03] -6.6-6 [06:17:22] that version was released in 2006 [06:18:23] probably PHP 5.3.6 is not compatible with it [06:18:35] you got PHP 5.3.6 from a package right? [06:19:39] Its installed from source itself thugh [06:20:02] PHP is installed from source? or MediaWiki? [06:20:14] both [06:20:46] can you pastebin the output of: ldd `which php` [06:20:52] sure [06:21:15] 03(NEW) Module state changes from server response should trigger handlePending - 10https://bugzilla.wikimedia.org/35240 normal; MediaWiki: Resource Loader; (krinklemail) [06:21:40] also php -i [06:21:57] http://pastebin.com/q49ejWVZ [06:22:25] oh, you compiled your own pcre as well? [06:22:46] this really sounds more and more like a mess of your own making ;) [06:22:55] lol [06:23:02] heh [06:23:03] I'm on a cPanel server [06:23:34] what hosting provider? [06:24:01] railsplayground [06:24:21] maybe PHP hosting is not really their specialty... [06:24:51] hmmm, Let me get the php recompiled again and see if that helps [06:26:00] don't use --with-pcre-dir this time [06:26:14] PHP comes with its own copy of PCRE, just use that [06:27:34] Alright, thanks for the tip TimStarling [06:44:29] 03krinkle * 10/trunk/phase3/resources/jquery/jquery.client.js: [06:44:29] [jquery.client] clean up [06:44:29] * Move translate() out of the if-block, no need to re-define [06:44:29] * `else` after return in `if` [06:44:30] * update js coding style [06:44:31] * remove bogus '=' in comment [06:44:32] * line-wrapping of long arrays [06:49:03] ^_^ skin rewrite is coming along interestingly? [06:49:11] s/\?/!/ [06:50:34] Not only is there a parser for the tree structure but the start of an implementation that outputs html based on that [06:50:46] Well... minus of course the {} handling and things like mw:if [06:56:34] TimStarling: After writing a parser to parse the xmlish portions of a template like this https://raw.github.com/gist/1239039/480ee2d05425dfef475d41912ad6257eb9507e0f/Vector.tpl into a tree structure I decided to write the skin implementation using a (for lack of a more established term) stack+queue based linear recursive loop, do you think I should have instead implemented it by instead taking the tree structure and dynamically generating php from it [06:57:59] I think that sounds like a good way to do it [06:58:07] it's better to avoid making large arrays in PHP if you can help it [06:58:22] or any language for that matter [06:58:52] 03(mod) [MW] Split or copy overwritten uploaded files and versions into their own file pages - 10https://bugzilla.wikimedia.org/35133 +comment (10fastgoldfish) [06:59:29] large arrays? [06:59:50] with lots of elements [06:59:51] bbl [07:10:59] Ahhhhhhhhhhhh.... [07:13:26] T_T I screwed up my first real complex rebase [07:14:41] Catchable fatal error: Argument 2 passed to Parser::parse() must be an instance of Title, null given, called in /home/locus/public_html/mediawiki/includes/installer/Installer.php on line 555 and defined in /home/locus/public_html/mediawiki/includes/parser/Parser.php on line 313 - No luck with mediawiki installation even with default pcre on php [07:14:57] Anybody facing the same issue? [07:15:11] 1.18.1 , on CentOS 5.8, php 5.3.10 [07:22:17] @_@ Ahhhh... fsck slow [07:23:31] 03(NEW) take over jquery.tipsy plugin - 10https://bugzilla.wikimedia.org/35241 normal; MediaWiki: Javascript; (hashar) [07:23:52] 03(mod) Update jquery.tipsy plugin to latest version - 10https://bugzilla.wikimedia.org/33562 +comment (10Antoine "hashar" Musso) [07:23:52] 03(mod) take over jquery.tipsy plugin - 10https://bugzilla.wikimedia.org/35241 (10Antoine "hashar" Musso) [07:25:03] 03(mod) tipsy missing a feature - 10https://bugzilla.wikimedia.org/35212 normal->15enhancement; +comment (10Antoine "hashar" Musso) [07:25:03] 03(mod) take over jquery.tipsy plugin - 10https://bugzilla.wikimedia.org/35241 (10Antoine "hashar" Musso) [07:26:25] 03(mod) take over jquery.tipsy plugin - 10https://bugzilla.wikimedia.org/35241 +comment (10hashar) [07:28:23] Interesting lesson... [07:29:19] Git fsck --lost-found is insanely slow (presumably on large repos like core), but `git log -g` works and may help [07:44:14] Where should I ask wiki markup questions? My question is how to nest a
 in a numeric list.
[07:44:31] 	 The bug I'm hit with is similar to this one - http://bit.ly/wxJQX0  but on 1.18.1 and php 5.3.10
[07:44:35] 	 YAY! I finially gone my rebase right.
[07:44:53] 	 phy1729: Use html style lists
[07:45:04] 	 ah thanks
[07:47:01] 	 03wikinaut *  10/trunk/extensions/AJAXPoll/ (AJAXPoll.php AJAXPoll_body.php): code cosmetics. jquery improvements.
[07:56:35] 	 03jdlrobson *  10/trunk/extensions/MobileFrontend/tests/js/test_application.js:
[07:56:35] 	 adjust utils tests
[07:56:35] 	 there are some side effects with the old tests
[07:56:35] 	 sometimes causing them to fail
[07:56:36] 	 this makes them past consistently
[08:16:53] 	 03(NEW) ext.wikihiero.css align: center - 10https://bugzilla.wikimedia.org/35242 trivial; MediaWiki extensions: WikiHiero; (bachinchi)
[08:17:13] 	 03(mod) ext.wikihiero.css align: center - 10https://bugzilla.wikimedia.org/35242   +patch (10B Baron)
[08:17:25] 	 03(mod) jquery.makeCollapsible() very slow if many collapsible, initially collapsed elements - 10https://bugzilla.wikimedia.org/34876  +comment (10lupo.bugzilla)
[08:30:02] 	 03(mod) Secure login on Wikimedia wikis via SSL - 10https://bugzilla.wikimedia.org/225  +comment (10Tristan Miller)
[08:38:33] 	 Change abandoned: ArielGlenn; "ok, keeping the two instances in sync later could be a problem." [operations/dumps] (ariel) - https://gerrit.wikimedia.org/r/3085
[08:39:15] 	 New review: ArielGlenn; "(no comment)" [operations/dumps] (ariel); V: 1 C: 2;  - https://gerrit.wikimedia.org/r/2875
[08:40:41] 	 New review: ArielGlenn; "(no comment)" [operations/dumps] (ariel); V: 1 C: 2;  - https://gerrit.wikimedia.org/r/3129
[08:40:44] 	 Change merged: ArielGlenn; [operations/dumps] (ariel) - https://gerrit.wikimedia.org/r/3129
[08:41:11] 	 New review: ArielGlenn; "(no comment)" [operations/dumps] (ariel); V: 1 C: 2;  - https://gerrit.wikimedia.org/r/2875
[08:41:14] 	 Change merged: ArielGlenn; [operations/dumps] (ariel) - https://gerrit.wikimedia.org/r/2875
[08:42:26] 	 New review: ArielGlenn; "(no comment)" [operations/dumps] (ariel); V: 1 C: 2;  - https://gerrit.wikimedia.org/r/3174
[08:42:29] 	 Change merged: ArielGlenn; [operations/dumps] (ariel) - https://gerrit.wikimedia.org/r/3174
[08:44:21] 	 03(mod) toolserver is listing assessed articles - 10https://bugzilla.wikimedia.org/35222  +comment (10saraswatishagnik)
[08:46:45] 	 New review: ArielGlenn; "(no comment)" [operations/dumps] (ariel); V: 1 C: 2;  - https://gerrit.wikimedia.org/r/3175
[08:46:47] 	 Change merged: ArielGlenn; [operations/dumps] (ariel) - https://gerrit.wikimedia.org/r/3175
[09:00:15] 	 03(NEW) Use the correct localisation for de.wikipedia.org for users not logged in - 10https://bugzilla.wikimedia.org/35243 normal; MediaWiki: Internationalization; (filzstift)
[09:01:15] 	 New review: ArielGlenn; "(no comment)" [operations/dumps] (ariel); V: 1 C: 2;  - https://gerrit.wikimedia.org/r/3176
[09:01:17] 	 Change merged: ArielGlenn; [operations/dumps] (ariel) - https://gerrit.wikimedia.org/r/3176
[09:13:16] 	 New code comment: MaxSem; There is no coreTableExists() or tableExists(), this function's name is not only u; 
[09:14:24] 	 14(DUP) Add Secure Login Link - 10https://bugzilla.wikimedia.org/12807  +comment (10Nemo_bis)
[09:14:24] 	 New patchset: ArielGlenn; "get prev incr dump which recorded revid" [operations/dumps] (ariel) - https://gerrit.wikimedia.org/r/3190
[09:14:28] 	 03(mod) User preference for HTTP vs HTTPS while logged in - 10https://bugzilla.wikimedia.org/29898  +comment (10Nemo_bis)
[09:15:51] 	 New review: ArielGlenn; "(no comment)" [operations/dumps] (ariel); V: 1 C: 2;  - https://gerrit.wikimedia.org/r/3190
[09:15:53] 	 Change merged: ArielGlenn; [operations/dumps] (ariel) - https://gerrit.wikimedia.org/r/3190
[09:17:00] 	 03(mod) SSL cert hostname mismatch errors on wikis with multiple subdomain components - 10https://bugzilla.wikimedia.org/31335  +comment (10Nemo_bis)
[09:29:52] 	 03(WONTFIX) Use the correct localisation for de.wikipedia.org for users not logged in - 10https://bugzilla.wikimedia.org/35243  +comment (10Siebrand)
[09:34:00] 	 Hi where to ask questions regarding multi-writing in wikipedia?
[09:34:57] 	 I am working on automated conversion of wikipedia text between multiple scripts. 
[09:39:22] 	 supreeth: there's already a language converter primarily designed for srwiki and zhwiki
[09:40:40] 	 liangent: yes I would like to who who its been implemented. 
[09:41:06] 	 I am working on the same feature for Konkani wikipedia
[09:41:28] 	 lanhuages/classes/
[09:42:08] 	 supreeth: I have no knowledge about Konkani but is there a charater<->character mapping between its scripts?
[09:42:45] 	 liangent: Yes I have worked on the character mapping
[09:42:50] 	 and it is working fine
[09:43:04] 	 I need to add some rules 
[09:43:22] 	 and modify the mapping according to the rule
[09:43:45] 	 I need pointers regarding how to add the rules for mapping.
[09:44:22] 	 03jdlrobson *  10/trunk/extensions/MobileFrontend/ (4 files in 3 dirs):
[09:44:22] 	 restyle header
[09:44:22] 	 following design @
[09:44:22] 	 http://www.mediawiki.org/wiki/Mobile_design/Full-screen_search
[09:44:23] 	 increase margin of content/header
[09:44:24] 	 change icons for close search and clear search
[09:45:15] 	 supreeth: see class ReplacementArray
[09:46:18] 	 supreeth: look at an existing language with conversion
[09:47:15] 	 liangent: I found this function applyManualConv( $convRule ) in LanguageConverter class 
[09:47:49] 	 03jdlrobson *  10/trunk/extensions/MobileFrontend/stylesheets/beta_common.css:
[09:47:50] 	 follow up to r113898
[09:47:50] 	 add missing semicolon
[09:48:03] 	 But couldnt figureout how to pass the convRule object
[09:49:03] 	 liangent: I will check the replacementArray class
[09:49:35] 	 I will try to figure out is there a way to specify conditions for replacement
[09:49:46] 	 what conditions?
[09:51:33] 	 for ex: If a word ends with certain characters, the mapping should change
[09:51:45] 	 Nickserv
[09:59:11] 	 is it possible to 'interwiki link' a template?
[09:59:55] 	 or, transclude a page over a interwiki link
[10:00:41] 	 03jdlrobson *  10/trunk/extensions/MobileFrontend/ (stylesheets/beta_common.css templates/SearchTemplate.php):
[10:00:41] 	 style search results for full screen search
[10:00:41] 	 this completes the first iteration of
[10:00:41] 	 http://www.mediawiki.org/wiki/Mobile_design/Full-screen_search
[10:00:42] 	 add box shadow to search box when active
[10:00:43] 	 use css transitions to fade into full screen search
[10:00:44] 	 move results element to under search form
[10:02:29] 	 liagent: Hi I read the Replacement Array class
[10:02:50] 	 It has no options to add rules to modify the array
[10:03:49] 	 03jdlrobson *  10/trunk/extensions/MobileFrontend/stylesheets/ (beta_common.css common.css):
[10:03:49] 	 font size tweaks
[10:03:50] 	 increase default font size
[10:03:50] 	 reduce footer size for normal mobile version
[10:04:17] 	 03maxsem *  10/trunk/extensions/MobileFrontend/ (HtmlFormatter.php api/ApiQueryExcerpts.php): Refactoring
[10:06:19] 	 03jdlrobson *  10/trunk/extensions/MobileFrontend/stylesheets/iphone.css:
[10:06:19] 	 fix iphone styling
[10:06:19] 	 these rules are now redundant
[10:12:35] 	 03(mod) toolserver is listing assessed articles - 10https://bugzilla.wikimedia.org/35222  +comment (10EN.WP.ST47)
[10:18:21] 	 hi all, I'm trying to edit a template so hyperlinks in the template are white (link and visited). any idea how to do this?
[10:43:53] 	 03maxsem *  10/trunk/extensions/MobileFrontend/api/ApiQueryExcerpts.php: Lower the limit due to worst-case performance concerns. OpenSearchXml will generate its fast but inaccurate extracts for the remaining pages, while geosearch will not need more.
[10:49:20] 	 nobody wants to reply to my wikitech-l post, was it that heretic? :)
[10:50:33] 	 03(mod) Mass-create a bunch of Gerrit accounts for existing SVN committers - 10https://bugzilla.wikimedia.org/35209  +comment (10Antoine "hashar" Musso)
[10:51:12] 	 03(mod) The number of articles is not updated - 10https://bugzilla.wikimedia.org/35169  +comment (10bknliem)
[10:56:18] 	 03schuellersa *  10/trunk/extensions/SolrStore/templates/SolrSearchTemplate_FIS.php: Language fix
[10:57:43] 	 03(mod) Categories can contain themselves - 10https://bugzilla.wikimedia.org/35221  +comment (10Michael M.)
[11:03:01] 	 03schuellersa *  10/trunk/extensions/SolrStore/templates/SolrSearchTemplate_FIS.php: isset FIX
[11:15:58] 	 03(NEW) can't include media and file tag - 10https://bugzilla.wikimedia.org/35244 normal; MediaWiki extensions: SemanticForms; (mark.mauerwerk)
[11:24:26] 	 03mark *  10/trunk/debs/mailman/: No longer needed, we are running stock Ubuntu mailman packages again
[11:28:08] 	 03(mod) Manually fix blocks from when global oversight log removal problem started - 10https://bugzilla.wikimedia.org/34995  +comment (10snowolf)
[11:33:50] 	 03santhosh *  10/trunk/extensions/Translate/PageTranslation.i18n.php: Better message documentation
[11:43:54] 	 03gwicke *  10/trunk/extensions/VisualEditor/modules/parser/ (mediawiki.tokenizer.peg.js pegTokenizer.pegjs.txt): (log message trimmed)
[11:43:54] 	 Enable support for block-level wiki constructs in template arguments. This
[11:43:54] 	 gets a bit closer to supporting table fragments passed through template
[11:43:54] 	 arguments. Next, we'll need a way to indicate start-of-line position to
[11:43:55] 	 enable sol block-levels in template parameters.
[11:43:56] 	 Example:
[11:43:57] 	 {|
[11:48:29] 	 03(mod) Manually fix blocks from when global oversight log removal problem started - 10https://bugzilla.wikimedia.org/34995  +comment (10snowolf)
[11:48:32] 	 03(mod) Enable WebFonts on the Burmese Wikipedia (mywiki) - 10https://bugzilla.wikimedia.org/34817  +comment (10santhosh.thottingal)
[11:49:11] 	 04(REOPENED) Manually fix blocks from when global oversight log removal problem started - 10https://bugzilla.wikimedia.org/34995  +comment (10Snowolf)
[11:49:25] 	 03(mod) Enable WebFonts on the Burmese Wikipedia (mywiki) - 10https://bugzilla.wikimedia.org/34817  +comment (10santhosh.thottingal)
[11:50:19] 	 03(mod) Enable WebFonts on the Burmese Wikipedia (mywiki) - 10https://bugzilla.wikimedia.org/34817  +comment (10santhosh.thottingal)
[11:51:05] 	 03(mod) Enable WebFonts on the Burmese Wikipedia (mywiki) - 10https://bugzilla.wikimedia.org/34817  +comment (10santhosh.thottingal)
[12:02:16] 	 03(mod) Global lock seems to affect a different user from the its target - 10https://bugzilla.wikimedia.org/35011  +comment (10vituzzu.wiki)
[12:02:51] 	 03(mod) Enable WebFonts on the Burmese Wikipedia (mywiki) - 10https://bugzilla.wikimedia.org/34817  +comment (10santhosh.thottingal)
[12:14:11] 	 03santhosh *  10/trunk/extensions/WebFonts/resources/ext.webfonts.fontlist.js: Remove trailing commas, to avoid issues with some browsers.
[12:20:42] 	 03(NEW) Many thousands of submissions possible in minutes - 10https://bugzilla.wikimedia.org/35245 blocker; MediaWiki extensions: Moodbar; (and1eternal1)
[12:21:43] 	 Hi, I'm setting up a wiki-only website, and I've followed the shorturl guides and got them working to /wiki, what's the best way to redirect everyone straight to the wiki homepage from domain root?
[12:22:08] 	 eg tf2wiki.net
[12:26:53] 	 anyone?
[12:32:49] 	 03santhosh *  10/trunk/extensions/WebFonts/ (15 files in 2 dirs):
[12:32:49] 	 Cleanup the Mymr font directory- remove svg font(Does not work), remove unused fonts
[12:32:49] 	 Recreate the WOFF files
[12:32:49] 	 Add TharLon font
[12:32:50] 	 Ref Bug 34817
[12:39:39] 	 03(mod) Enable WebFonts on the Burmese Wikipedia (mywiki) - 10https://bugzilla.wikimedia.org/34817  +comment (10slayeroflion)
[12:59:12] 	 03(mod) Enable WebFonts on the Burmese Wikipedia (mywiki) - 10https://bugzilla.wikimedia.org/34817  +comment (10santhosh.thottingal)
[13:00:37] 	 Anyone
[13:00:38] 	 ?
[13:09:52] 	 03schuellersa *  10/trunk/extensions/SolrStore/templates/SolrSearchTemplate_FIS.php: Vorgehensweise // to test
[13:17:31] 	 New code comment: Nikerabbit; Should not wrap block-level parsed wikitext into inline span element.; 
[13:20:55] 	 Dunhamzzz: Some sort of 301 HTTP redirect, presumably.
[13:21:24] 	 You could do this via .htaccess, say.
[13:22:24] 	 (Bleh, forgot we have conference view on in here.)
[13:33:23] 	 03(mod) Many thousands of submissions possible in minutes - 10https://bugzilla.wikimedia.org/35245  +comment (10and1eternal1)
[13:35:43] 	 03(mod) Write git localization import scripts for translatewiki.net - 10https://bugzilla.wikimedia.org/34137  +comment (10niklas.laxstrom)
[13:37:46] 	 03yaron *  10/trunk/extensions/SemanticForms/includes/SF_FormEditAction.php: Restored backward-compatibility for MW 1.17 (?), improved display of "more than one form" warning
[13:40:52] 	 hi Nikerabbit - thanks for your comment re https://bugzilla.wikimedia.org/show_bug.cgi?id=34137 
[13:41:19] 	 Nikerabbit: I'm off today but if you could work with hashar to clarify etc, that would be very welcome
[13:41:38] 	 varnent: I'm off today; if you have a chance to hang out here a bit & direct GSoC potential students, that would be great
[13:42:25] 	 03(mod)  unreadable on high contrast theme - 10https://bugzilla.wikimedia.org/35200  (10mybugs.mail)
[13:42:40] * sumanah  needs to leave IRC before spouse comes back from laundry & catches me
[13:45:48] 	 03(mod) [CharInsert] Use event binding from a module instead of inline javascript - 10https://bugzilla.wikimedia.org/9424  (10mybugs.mail)
[13:46:33] 	 03(mod) can't include media and file tag - 10https://bugzilla.wikimedia.org/35244  +comment (10yaron57)
[13:48:17] 	 03(mod) take over jquery.tipsy plugin - 10https://bugzilla.wikimedia.org/35241  +comment (10kipod)
[13:48:20] 	 03(mod) [Regression] WikiLove's preview button only works on second click - 10https://bugzilla.wikimedia.org/35057  +comment (10vivekee047)
[13:51:47] 	 03(mod) CentralNotice moves content down when a link to a heading is followed - 10https://bugzilla.wikimedia.org/26234  (10mybugs.mail)
[13:57:27] 	 03(mod) Many thousands of submissions possible in minutes - 10https://bugzilla.wikimedia.org/35245  +comment (10Snowolf)
[14:00:01] 	 New code comment: Nikerabbit; Adds debugging output. Why is part of the code in German?; 
[14:01:31] 	 New code comment: Nikerabbit; When you fix something in previous commit, please link them by mentioning the revision number like r; 
[14:02:17] 	 can anyone tell me what extension provides special:code and special:codereview?
[14:03:39] 	 Is it not Extension:CodeReview?
[14:03:51] 	 aah, yes, just found it
[14:03:52] 	 thanks!
[14:06:16] 	 New code comment: Nikerabbit; $1 is not the user; 
[14:06:24] 	 03(mod) Many thousands of submissions possible in minutes - 10https://bugzilla.wikimedia.org/35245  +comment (10and1eternal1)
[14:07:16] 	 New code comment: Nikerabbit; Does this need quick deployment?; 
[14:15:03] 	 03nikerabbit *  10/trunk/extensions/Translate/tag/PageTranslationHooks.php: Fixing this fixme since it was reported as bug in twn
[14:17:36] 	 03(mod) No way to do logins without user surrendering their password to software - 10https://bugzilla.wikimedia.org/35199  +comment (10benapetr)
[14:20:00] 	 03nikerabbit *  10/trunk/extensions/Translate/scripts/cldr-plural-to-yaml.php: Unicode wheee
[14:21:49] 	 03(mod) No way to do logins without user surrendering their password to software - 10https://bugzilla.wikimedia.org/35199  (10Peter Bena)
[14:22:08] 	 03(mod) No way to do logins without user surrendering their password to software - 10https://bugzilla.wikimedia.org/35199  (10Peter Bena)
[14:22:27] 	 03yonishostak *  10/trunk/extensions/ArticleFeedbackv5/ (8 files in 4 dirs): AFTv5: sync commit, readded i18n msgs etc.
[14:22:58] 	 03yonishostak *  10/trunk/extensions/ArticleFeedbackv5/tests/ (10 files in 3 dirs): AFTv5: added first batch of selenium tests for the feedback page
[14:24:58] 	 03(FIXED) Group review API allows changing workflow status to the current state - 10https://bugzilla.wikimedia.org/34046  (10Niklas Laxström)
[14:26:30] 	 03(FIXED) Translate: matching message shows completely different text - 10https://bugzilla.wikimedia.org/29728  +comment (10Niklas Laxström)
[14:26:37] 	 03(FIXED) AFT5 Feedback Page Permalinks to Hidden, Oversight requested and Oversighted Posts - 10https://bugzilla.wikimedia.org/34883  (10Yoni Shostak)
[14:27:25] 	 03(mod) Article Feedback v5 - Develop Feedback link Option A (vs. Option E or no link) - Metrics test 2 - 10https://bugzilla.wikimedia.org/34406  (10Yoni Shostak)
[14:28:42] 	 03(mod) Article feedback v5 - Feedback button 'X' close box - 10https://bugzilla.wikimedia.org/34403  (10Yoni Shostak)
[14:28:46] 	 New code comment: Wikinaut; Hi, I chose that name in correspondence to dropExtensionField ... etc. but you are right, as usual. ; 
[14:29:02] 	 03(mod) Enable WebFonts on the Burmese Wikipedia (mywiki) - 10https://bugzilla.wikimedia.org/34817  +comment (10slayeroflion)
[14:29:26] 	 03(mod) Pending changes diff is centered - 10https://bugzilla.wikimedia.org/35202  +comment (10alexsm333)
[14:33:11] 	 03(mod) Article Feedback Page - Go back' button for permalinks - 10https://bugzilla.wikimedia.org/34076  (10Yoni Shostak)
[14:33:53] 	 03(mod) Cursor bug on mouseover - 10https://bugzilla.wikimedia.org/34774  (10Yoni Shostak)
[14:42:04] 	 New code comment: Nikerabbit; Double space: \ + foreach ( $groups as $group ) { \ Still fails with for example a dot in the name. \ ; 
[14:43:16] 	 New code comment: Nikerabbit; Could also remove space after count.; 
[14:43:24] 	 03nikerabbit *  10/trunk/extensions/Translate/api/ApiAggregateGroups.php: Fix typo
[14:44:31] 	 New code comment: Nikerabbit; The id should not conflict with any existing group. We talked about prefixing these groups at some p; 
[14:46:38] 	 when I edit a page I often don't see the new version of the page - this is happening in both FF and Chrome, it's MW 1.15.1 on RHEL5, with PHP 5.2 and Apache 2.0 (we were on RHEL6 before, but one very important extension for this project didn't work on PHP 5.3 and the hosting provider is terrible)
[14:47:16] 	 I'm wondering where to look for a solution, not sure what to put in google to get any results related to this issue
[14:55:03] 	 03schuellersa *  10/trunk/extensions/SolrStore/SolrStore.i18n.php: edit solrstore-searchFieldSets
[14:57:11] 	 03(mod) can't include media and file tag - 10https://bugzilla.wikimedia.org/35244  +comment (10mark.mauerwerk)
[15:03:01] 	 New code comment: Schuellersa; because is needet in this case. \ we can splitt the highlichtoutput by checking the category \ (Insti; 
[15:03:02] 	 I found out the problem is NOT occurring on IE7!  (and everyone but me is forced to use IE7 on this project)   Probably the first time ever I'm happy with IE! Such a beautiful day!
[15:04:31] 	 New code comment: Schuellersa; line 48 + print_r( $xml ); \ DELETE only 4 debug; 
[15:04:58] 	 03nikerabbit *  10/trunk/extensions/Translate/Translate.alias.php: Pedantic, r113032
[15:10:14] 	 03nikerabbit *  10/trunk/extensions/Translate/TranslateHooks.php: Pedantic, r113124
[15:11:47] 	 New code comment: Nikerabbit; Please update translations at translatewiki.net in the future.; 
[15:21:49] 	 03maxsem *  10/trunk/phase3/ (RELEASE-NOTES-1.19 includes/EditPage.php): Bug 35051 - [Regression] If heading has a trailing space after == then its name is not preloaded into edit summary on section edit. Regression from r105380.
[15:21:52] 	 03(mod) [Regression] WikiLove's preview button only works on second click - 10https://bugzilla.wikimedia.org/35057  +comment (10vivekee047)
[15:22:46] 	 New code comment: MaxSem; Fixed in r105380.; 
[15:23:16] 	 New code comment: MaxSem; I mean r113922:); 
[15:23:41] 	 03(FIXED) [Regression] If heading has a trailing space after == then its name is not preloaded into edit summary on section edit - 10https://bugzilla.wikimedia.org/35051  +comment (10Max Semenik)
[15:25:29] 	 hi hashar
[15:25:35] 	 hello :)
[15:25:40] 	 had a good flight back home ?
[15:25:54] 	 hashar: what?
[15:26:05] 	 no matter, I though you were flying yesterday
[15:26:13] 	 away from home
[15:29:58] 	 hashar: do we have a git repo of extensions anywhere?
[15:29:59] 	 03maxsem *  10/branches/REL1_19/phase3/ (RELEASE-NOTES-1.19 includes/EditPage.php): MFT r113922 to 1.19: Bug 35051 - [Regression] If heading has a trailing space after == then its name is not preloaded into edit summary on section edit. Regression from r105380.
[15:30:24] 	 Reedy: we will not have any
[15:30:44] 	 Bleugh
[15:30:48] 	 Reedy: WMF will run off a branch in  mediawiki/core.git which we have git submodules in extensions/
[15:30:55] 	 03(mod) [Regression] File deletions leave stuff behind - 10https://bugzilla.wikimedia.org/35047  +comment (10wiki)
[15:30:58] 	 .. which will have ..
[15:31:11] 	 hmmmm
[15:31:14] 	 MaxSem: no tests?
[15:31:18] 	 extension distributor might need some more work then..
[15:31:29] 	 are there tests for that func?
[15:31:56] 	 oops, writing
[15:32:39] 	 Reedy: there is a list of extension hosted on gerrit at https://gerrit.wikimedia.org/mediawiki-extensions.txt  List updated every 15 minutes
[15:38:13] 	 03maxsem *  10/trunk/phase3/tests/phpunit/includes/EditPageTest.php: Follow-up r113922: tests
[15:38:58] 	 is it possible to force all image upload on wikipedia to commons?
[15:39:57] 	 yes, disable local uploads and make upload link point to Commons
[15:41:56] 	 MaxSem: but that will force all uploads to commons. is it possible to have uploads of image .jpeg, .tif etc. to commons but non-image to local one. e.g. on source you have .djvu which i think is better handled at that specific wiki.
[15:42:33] 	 03(mod) ext.wikihiero.css align: center - 10https://bugzilla.wikimedia.org/35242   +need-review (10Sam Reed (reedy))
[15:43:14] 	 it's possible to restrict uploading of specific file types, but it's pointless - *all* free files should go to Commons
[15:48:43] 	 03raymond *  10/trunk/translatewiki/MediaWiki/mediawiki-defines.txt: r113916: Update keys. 1 to ignore
[15:52:32] 	 03maxsem *  10/trunk/extensions/wikihiero/modules/ext.wikihiero.css: Bug 35242 - invalid CSS in ext.wikihiero.css. Haven't used the patch from that bug as it's wrong.
[15:53:46] 	 New code comment: Raymond; I do not know how these messages are rendered. Does {{int:...}} works? If yes I sug; 
[15:53:57] 	 03(FIXED) ext.wikihiero.css align: center - 10https://bugzilla.wikimedia.org/35242  -need-review -patch +reviewed; +comment (10Max Semenik)
[15:59:18] 	 03jeroendedauw *  10/trunk/extensions/EducationProgram/ (3 files in 2 dirs): fix regression. fields are no needlessly loaded now before save, but we still need the id
[16:04:33] 	 03(mod) Many thousands of submissions possible in minutes - 10https://bugzilla.wikimedia.org/35245  04BLOCKER->major; +comment (10Sam Reed (reedy))
[16:09:42] 	 03reedy *  10/trunk/extensions/WikimediaMaintenance/cleanupBug31576.php:
[16:09:42] 	 Followup r104758
[16:09:42] 	 Only ever attempt to process a page once, as the synontm is only used for getting a list of articles to edit (ie it doesn't affect the RefreshLinks part), there's no point processing an article more than once
[16:12:12] 	 03reedy *  10/branches/wmf/1.19wmf1/extensions/WikimediaMaintenance/ (. cleanupBug31576.php): MFT r113928
[16:13:28] 	 03ialex *  10/trunk/extensions/ (17 files in 8 dirs): svn:eol-style native
[16:14:03] 	 03(mod) Many thousands of submissions possible in minutes - 10https://bugzilla.wikimedia.org/35245  +comment (10Erik Moeller)
[16:14:29] 	 03(mod) Write git localization import scripts for translatewiki.net - 10https://bugzilla.wikimedia.org/34137  +comment (10raimond.spekking)
[16:15:58] * Lcawte  yawns
[16:16:34] 	 Ok, so initial page for London Hackathon this year is up... still have a billion things to confirm though ^.^
[16:20:05] 	 New patchset: Diederik; "Removed OS specific build file." [analytics/udp-filters] (master) - https://gerrit.wikimedia.org/r/3205
[16:22:05] 	 New review: Diederik; "(no comment)" [analytics/udp-filters] (master); V: 1 C: 2;  - https://gerrit.wikimedia.org/r/3205
[16:22:07] 	 Change merged: Diederik; [analytics/udp-filters] (master) - https://gerrit.wikimedia.org/r/3205
[16:26:34] 	 03(mod) Many thousands of submissions possible in minutes - 10https://bugzilla.wikimedia.org/35245  +comment (10sam)
[16:27:45] 	 hmm, is there a class defined I could use that will float things to the right for me?
[16:27:48] 	 Lcawte: Sounds good :)
[16:28:25] 	 Jarry1250: :) Now all I have left to do, is plan it and pick a date ^.^
[16:28:44] 	 lol
[16:28:51] 	 I want to make it more newbie friendly, busier (ie, more people, and more of a schedule), and well.. cooler :P
[16:29:07] * Reedy  makes class FloatyStuff {} for yuvipanda
[16:29:32] 	 aww you!
[16:29:41] 	 but seriously, is there one? tright is for thumbnails...
[16:29:57] 	 Hmm, I had a discussion with Chad about how I could get more people/more paid staff people to London for a hackathon ... need to find that...
[16:30:35] 	 Lcawte: pay for them! ;)
[16:30:50] 	 lol
[16:31:10] 	 So in other words, I need to work for the WMF, to pay the WMF back, to get people over here? :P
[16:31:33] 	 lure them with promises of a world in which wikitext did not exist
[16:31:41] 	 and something saner was used instead
[16:32:02] 	 03santhosh *  10/trunk/extensions/Translate/PageTranslation.i18n.php:
[16:32:02] 	 Better message documentation, this time for real
[16:32:02] 	 Ping 113908
[16:32:18] * yuvipanda  makes his own floaty classes
[16:32:27] 	 Grrr, who turned off my server...
[16:32:36] 	 Lcawte: the simple answer is to have a reason it's worth staff coming from SF etc to go to
[16:33:00] 	 Reedy: Unicorns and Rainbows?
[16:34:30] 	 Reedy: what did you and Roan say about Berlin and why so many staff go there, was it an all staff meeting or something?
[16:34:39] 	 gwicke: good talking to you this morning, and good luck with the Visual Editor!
[16:41:32] 	 "This month, the TikiWiki project added their 500th committer."
[16:44:27] 	 I saw that
[16:45:16] 	 New code comment: Santhosh.thottingal; "00" evaluates to true. So the edge case here is priority reason like "0" and moveMetadata not movin; 
[16:47:44] 	 New code comment: Reedy; Also, it's useful if you copy in the bug title aswell to the commit message. \ Just copying the title; 
[16:48:01] 	 New code comment: Reedy; Bah, that didn't display how I wanted to... \ Just copy in the title line from Bugzilla, makes review; 
[16:48:44] 	 Wish people would sign their talk page comments.
[16:49:08] 	 enwiki/enwikinews has a bot which does it.
[16:49:41] 	 Maybe we can get the operator to run it on mediawikiwiki?
[16:49:46] 	 New code comment: Reedy; Should this go into 1.19 aswell?; 
[16:50:01] 	 03(mod) Write git localization import scripts for translatewiki.net - 10https://bugzilla.wikimedia.org/34137  +comment (10hashar)
[17:08:19] 	 New patchset: Mark Bergsma; "Integrate Asher's varnishncsa udplog patch" [operations/debs/varnish] (master) - https://gerrit.wikimedia.org/r/3209
[17:09:23] 	 New review: Mark Bergsma; "(no comment)" [operations/debs/varnish] (master); V: 0 C: 2;  - https://gerrit.wikimedia.org/r/3209
[17:10:04] 	 New review: Mark Bergsma; "(no comment)" [operations/debs/varnish] (master); V: 1 C: 2;  - https://gerrit.wikimedia.org/r/3209
[17:10:06] 	 Change merged: Mark Bergsma; [operations/debs/varnish] (master) - https://gerrit.wikimedia.org/r/3209
[17:10:35] 	 03reedy *  10/branches/wmf/1.19wmf1/ (. includes/ includes/SkinTemplate.php): MFT r111647
[17:12:14] 	 03reedy *  10/branches/REL1_19/phase3/ (. RELEASE-NOTES-1.19 includes/ includes/SkinTemplate.php): MFT r111647
[17:14:30] 	 03reedy *  10/trunk/phase3/ (RELEASE-NOTES-1.19 RELEASE-NOTES-1.20): Move RELEASE-NOTES after merging r111647 into 1.19 in r113933
[17:14:57] 	 03(mod) Write git localization import scripts for translatewiki.net - 10https://bugzilla.wikimedia.org/34137  +comment (10s.mazeland)
[17:17:56] 	 03(mod) Listen in feature needs an icon - 10https://bugzilla.wikimedia.org/35230  +comment (10Patrick Hayes)
[17:20:31] 	 is it possible to use action=render with a custom style?
[17:21:28] 	 03(mod) App spinner animation never stops - 10https://bugzilla.wikimedia.org/35229  +comment (10Patrick Hayes)
[17:21:34] 	 also it seems to me that, there is a difference in the rendered html between action=view vs action=rendered, any idea if that difference matters?
[17:26:46] 	 03(mod) [Regression] File deletions leave stuff behind - 10https://bugzilla.wikimedia.org/35047  +comment (10aschulz4587)
[17:27:09] 	 03reedy *  10/branches/wmf/1.19wmf1/ (16 files in 7 dirs): MFT r112918, r113214, r113394, r113415, r113617, r113710, r113727, r113737, r113816
[17:27:36] 	 03(mod) 'X' image is really pixelated - 10https://bugzilla.wikimedia.org/35231  +comment (10Patrick Hayes)
[17:28:44] 	 Hallo. I fixed a "1.19 tarball" bug - https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113782 .
[17:29:44] 	 I suppose that it should be merged. Should i tag it somehow or will the release people find it by querying Bugzilla for the milestone?
[17:29:56] 	 (merged to the 1.19 branch, i mean.)
[17:31:42] 	 hexmode: i have a few users who need additional privileges to close/relabel bugs in bugzilla for the Wiktionary mobile ap
[17:31:59] 	 Heiya, one short question. On Wikipedias, is the upo for WikiEditor (beta features) set to true or false for newly created user accounts. Do not want to create a new account right now. :)
[17:34:36] 	 03(mod) Switch appearances of the word "Wikipedia" to "Wiktionary" and then translate from English - 10https://bugzilla.wikimedia.org/34836  +comment (10Patrick Hayes)
[17:35:12] 	 03reedy *  10/branches/wmf/1.19wmf1/ (5 files in 4 dirs): MFT r113268, r113892
[17:36:38] 	 03maxsem *  10/trunk/extensions/MobileFrontend/ (HtmlFormatter.php MobileFormatter.php): Avoid a DOM parse when it's not needed
[17:41:01] 	 03reedy *  10/branches/wmf/1.19wmf1/ (. includes/ includes/RecentChange.php): MFT r113171
[17:43:30] 	 kghbln: upo?
[17:43:40] 	 user preference option
[17:43:54] 	 got this from LocalSettings.php?
[17:44:08] 	 ? -> :)
[17:44:17] 	 03(mod) Installer's "authorized editors only" does not allow edit or createaccount rights to anons but allows creating pages - 10https://bugzilla.wikimedia.org/35238  (10jeffwang16)
[17:44:46] 	 New code comment: Saper; All issues so far resolved, now moving on to fix rest of PostgresUpdater problems.; 
[17:45:01] 	 pfhayes: who?
[17:45:10] 	 03(mod) Manually fix blocks from when global oversight log removal problem started - 10https://bugzilla.wikimedia.org/34995  +comment (10aschulz4587)
[17:45:22] 	 hexmode: what do you need? their emails?
[17:45:31] 	 New code comment: Saper; Issues fixed by followup edits.; 
[17:45:31] 	 New code comment: Saper; Issues fixed by followup edits.; 
[17:45:33] 	 pfhayes: yes... 
[17:45:42] 	 about to do that work now
[17:46:42] 	 hexmode: great, thank you
[17:47:09] 	 03(NEW) Upload video files > 100 MB upload to Commons - 10https://bugzilla.wikimedia.org/35246 normal; Wikimedia: Site requests; (antoinemotteditfalisse)
[17:47:55] 	 03(mod) Upload video files > 100 MB upload to Commons - 10https://bugzilla.wikimedia.org/35246   +shell (10M0tty)
[17:48:41] 	 03(mod) "Saved Pages" items fail to respond when tapped - 10https://bugzilla.wikimedia.org/34833  +comment (10Patrick Hayes)
[17:49:45] 	 I wonder what counts as an 'education' day off from school... I wonder if I can two off before a half term...
[17:50:58] 	 03aaron *  10/trunk/phase3/includes/ (FileDeleteForm.php specials/SpecialUndelete.php):
[17:50:58] 	 * r113886: use 
instead of span to wrap element that has p tags. [17:50:58] * Also fixed an older instance of the same problem. [17:51:20] 03(FIXED) Switch appearances of the word "Wikipedia" to "Wiktionary" and then translate from English - 10https://bugzilla.wikimedia.org/34836 +comment (10Patrick Hayes) [17:51:25] Flying out on the 31st would be cool, except I'd be rather bored sitting in a hostel/hotel room for a day :/ [17:51:29] 03reedy * 10/branches/wmf/1.19wmf1/extensions/ (11 files in 7 dirs): MFT r112586, r112930, r113352, r113926 [17:51:57] 03(FIXED) Listen in feature needs an icon - 10https://bugzilla.wikimedia.org/35230 (10Patrick Hayes) [17:52:34] 03jeroendedauw * 10/trunk/extensions/EducationProgram/ (EducationProgram.i18n.php EducationProgram.php): remove rights admins should not have and added some message docs [17:52:37] 03(FIXED) App logo required - 10https://bugzilla.wikimedia.org/34786 (10Patrick Hayes) [17:53:27] 03(mod) "Share to Wiktionary" is confusing. - 10https://bugzilla.wikimedia.org/35103 (10Patrick Hayes) [17:54:28] 03(mod) App Icon looks bad - 10https://bugzilla.wikimedia.org/35225 (10Patrick Hayes) [17:54:55] 03(mod) Translations needed for new menu items - 10https://bugzilla.wikimedia.org/34834 (10Patrick Hayes) [17:55:08] 03(mod) Search bar icon off-centre - 10https://bugzilla.wikimedia.org/35100 (10Patrick Hayes) [17:58:52] Lcawte: public transport in Belrin is cheap and plentiful. Explore! [17:59:46] 03(UNCONFIRMED) 'X' image is really pixelated - 10https://bugzilla.wikimedia.org/35231 (10Patrick Hayes) [18:00:12] Ok, thats of course, if I can get the day(s) off school [18:00:40] 03(UNCONFIRMED) App spinner animation never stops - 10https://bugzilla.wikimedia.org/35229 (10Patrick Hayes) [18:00:54] Wooo! Parents evening time, be back in a bit.. [18:05:46] 03jdlrobson * 10/trunk/extensions/MobileFrontend/ (4 files in 4 dirs): [18:05:46] first version of references reveal [18:05:46] see design: [18:05:46] http://www.mediawiki.org/wiki/Mobile_design/Reference_reveal [18:05:47] this is only made available for the beta [18:10:22] 03(mod) "Saved Pages" items fail to respond when tapped - 10https://bugzilla.wikimedia.org/34833 +comment (10shealen.clare) [18:11:47] 14(DUP) "Saved Pages" items fail to respond when tapped - 10https://bugzilla.wikimedia.org/34833 +comment (10Patrick Hayes) [18:11:47] 03(mod) Non-Wikipedia mobile domains use Wikipedia's SSL certificate - 10https://bugzilla.wikimedia.org/34788 +comment (10pfhayes) [18:14:56] 03(mod) 'X' image is really pixelated - 10https://bugzilla.wikimedia.org/35231 +comment (10tfinc) [18:15:43] 03siebrand * 10/trunk/extensions/Translate/scripts/export.php: Follow-up r113756: Use $wgTranslateGroupRoot instead of '%GROUPROOT%', since it has already been replaced. [18:22:52] 03(FIXED) can't include media and file tag - 10https://bugzilla.wikimedia.org/35244 (10Dan Collins) [18:23:28] 03(mod) tipsy missing a feature - 10https://bugzilla.wikimedia.org/35212 +comment (10fur.hewiki) [18:28:46] 03(mod) Using @font-face should work from a file module stylesheet with custom 'media' attribute - 10https://bugzilla.wikimedia.org/34459 (10Mark A. Hershberger) [18:28:48] 03(mod) Upload image, delete and upload it again causes database error with postgresql - 10https://bugzilla.wikimedia.org/32822 (10Mark A. Hershberger) [18:28:51] 03(mod) Milestone: MediaWiki 1.19 (tracking) - 10https://bugzilla.wikimedia.org/29097 (10Mark A. Hershberger) [18:28:52] 03(mod) Function applyDiffStyle uses regexes which do not detect CSS classes appropriately - 10https://bugzilla.wikimedia.org/34801 (10Mark A. Hershberger) [18:28:52] 03(mod) Special:MovePage should disable options for immovable namespace - 10https://bugzilla.wikimedia.org/35137 (10Mark A. Hershberger) [18:28:52] 03(mod) Diffs on recent changes feed should have the same formatting of the on wiki diffs - 10https://bugzilla.wikimedia.org/34798 (10Mark A. Hershberger) [18:28:53] 03(mod) Moving page triggers HTTP 500 on zhwiki - 10https://bugzilla.wikimedia.org/35030 (10Mark A. Hershberger) [18:28:54] 03(mod) Module state changes from server response should trigger handlePending - 10https://bugzilla.wikimedia.org/35240 (10Mark A. Hershberger) [18:28:54] 03(mod) jquery.textSelection tests fail randomly on IE (6-10) - 10https://bugzilla.wikimedia.org/34820 (10Mark A. Hershberger) [18:30:18] 03(mod) Uploading stuck about 1-2 minutes on "Finished!" - 10https://bugzilla.wikimedia.org/34997 (10Mark A. Hershberger) [18:30:19] 03(mod) [Regression] HTML dump is missing all images due to new FileBackend code - 10https://bugzilla.wikimedia.org/33878 (10Mark A. Hershberger) [18:30:42] New patchset: Mark Bergsma; "Bump version number to deal with varnish3 package conflict" [operations/debs/varnish] (master) - https://gerrit.wikimedia.org/r/3216 [18:30:42] New patchset: Mark Bergsma; "Bump version number again to deal with varnish3 package conflict" [operations/debs/varnish] (master) - https://gerrit.wikimedia.org/r/3217 [18:31:42] 03(mod) AutoAuthSetup no longer working on 1.19 - 10https://bugzilla.wikimedia.org/35165 (10Mark A. Hershberger) [18:33:02] 03(mod) is empty in the Sanskrit Wikipedia - 10https://bugzilla.wikimedia.org/34938 (10Mark A. Hershberger) [18:33:18] <wikibugs> 03(mod) Upgrade to 1.19 on Postgres fails due to incomplete query when trying to defer foreign key for externallinks - 10https://bugzilla.wikimedia.org/33689 (10Mark A. Hershberger) [18:34:42] <gerrit-wm> Change abandoned: Catrope; "Submitted against wrong branch" [analytics/udp-filters] (master) - https://gerrit.wikimedia.org/r/2878 [18:35:33] <gerrit-wm> New review: Diederik; "Ok." [analytics/udp-filters] (refactoring); V: 1 C: 2; - https://gerrit.wikimedia.org/r/2698 [18:37:15] <gerrit-wm> New review: Diederik; "Ok." [analytics/udp-filters] (refactoring); V: 1 C: 2; - https://gerrit.wikimedia.org/r/2626 [18:37:17] <gerrit-wm> Change merged: Diederik; [analytics/udp-filters] (refactoring) - https://gerrit.wikimedia.org/r/2698 [18:37:18] <gerrit-wm> Change merged: Diederik; [analytics/udp-filters] (refactoring) - https://gerrit.wikimedia.org/r/2626 [18:38:16] <codurr> New code comment: Preilly; Missing a semicolon in trunk/extensions/MobileFrontend/stylesheets/beta_common.css in the #searchbo; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113898#c32213> [18:51:55] <gerrit-wm> New patchset: Diederik; "Merge branch 'refactoring' into refactoring-merge" [analytics/udp-filters] (master) - https://gerrit.wikimedia.org/r/3222 [18:52:31] <wikibugs> 03(mod) can't include media and file tag - 10https://bugzilla.wikimedia.org/35244 +comment (10Yaron Koren) [18:55:28] <gerrit-wm> New review: Catrope; "Gerrit doesn't display the diff of this merge commit, but you can show it as follows:" [analytics/udp-filters] (master) C: 0; - https://gerrit.wikimedia.org/r/3222 [18:56:15] <wikibugs> 03(NEW) content-holding <div> should only contain the page text - 10https://bugzilla.wikimedia.org/35247 normal; MediaWiki: User interface; (a.d.bergi) [18:58:23] <gerrit-wm> New patchset: Catrope; "Merge branch 'refactoring' into master" [analytics/udp-filters] (master) - https://gerrit.wikimedia.org/r/3222 [19:04:40] <gerrit-wm> New patchset: Diederik; "Merge branch 'refactoring' into master" [analytics/udp-filters] (master) - https://gerrit.wikimedia.org/r/3222 [19:35:28] <codurr> 03jeroendedauw * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113944> 10/trunk/extensions/Maps/ (4 files in 2 dirs): add option to disable poi [19:36:36] <codurr> 03jeroendedauw * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113945> 10/trunk/extensions/Maps/Maps.i18n.php: Follow up to r113944; [19:46:47] <codurr> 03siebrand * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113946> 10/trunk/extensions/Translate/Translate.i18n.php: Fix typos. [19:55:56] <wikibugs> 03(mod) Show last seen position in Nearby map view - 10https://bugzilla.wikimedia.org/35236 +comment (10brion) [19:59:14] <codurr> 03amire80 * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113947> 10/trunk/extensions/TranslationNotifications/SpecialNotifyTranslators.php: Added very basic support for actual emailing. [20:09:40] <codurr> 03reedy * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113948> 10/trunk/extensions/WikimediaMaintenance/cleanupBug31576.php: [20:09:40] <codurr> Not sure why we're doing a LIKE query against what are going to be exact template names. [20:09:40] <codurr> Re-running this way gives sensible amounts of results - 21 on enwiki, just over 6000 on itwiki, not seemingly iterating over more pages than the wiki has.. [20:09:40] <codurr> Then running RefreshLinks::fixLinksFromArticle( '1234' ) clears it off the list [20:12:21] <codurr> 03reedy * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113949> 10/branches/wmf/1.19wmf1/extensions/ (3 files in 2 dirs): MFT r113948 [20:15:23] <sumanah> robla: hey, I just came up with an idea you could submit to OSBridge so I emailed it to you just now. For reference, Open Source Bridge "tracks" descriptions of desired talks: http://opensourcebridge.org/events/2012/tracks [20:15:54] <Daniel_krank> oh, wb robla! glad we have you back! [20:16:02] <IsmAvatar> Hey, is there a way to hide the category list at the bottom? I have a category where all the pages will be listed in the category description along with a short description of the page, so the list at the bottom would become redundant [20:16:13] <sumanah> Daniel_krank: ANOTHER nick? :-) [20:16:21] <robla> thanks Daniel_krank and thanks sumanah [20:16:47] <Daniel_krank> sumanah: "krank" == "ill" [20:16:51] <sumanah> robla: had a lightbulb moment as my spouse was reading to me from an old IBM book about the development of ASCII [20:17:02] <Daniel_krank> maybe i should just... [20:17:08] <Duesentrieb> :) [20:17:11] <sumanah> Daniel_krank: :-( still ill? Get well soon Duesentrieb! [20:17:13] <Duesentrieb> or maybe... [20:17:34] <Duesentrieb> sumanah: well, getting better all the time. i had that in my nick basically not to be pestered too much by wmde folks :) [20:17:51] * sumanah prescribes rest, Firefly, rice-with-peppery-veg-broth, and whiskey-with-lemon [20:18:01] <Duesentrieb> there's still a fair amount of cotton whool in my head, but other than that, all is good again [20:18:16] <Duesentrieb> oh. ohh.... [20:18:26] <Duesentrieb> will you come and be my doctor? you sound competent. [20:19:05] <sumanah> I'm about as competent as Dr. Mario. [20:19:14] <sumanah> :-) [20:19:26] <sumanah> (Rx: reviewing patches!) [20:19:31] <codurr> New code comment: Duplicatebug; Because the templatelinks table can contains rows with <tt>INT:Lang</tt>, where INT: is the synonym.; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113948#c32214> [20:19:48] <sumanah> "hey wait this Rx pad has that prescription preprinted on all the sheets" [20:20:29] <k3333> hi, im trying to install the Facebook Connect to my mediawiki, but get the error Please update $wgFbAppId and $wgFbSecret. when running maintenance/update.php script as recommended here https://www.mediawiki.org/wiki/Extension:Facebook does anybody know how I can update these? [20:21:01] <codurr> New code comment: Duplicatebug; HTML comments are also valid after headers, when the <tt>(\n|$)</tt> is removed, the old behaviour i; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113922#c32215> [20:21:24] <Danny_B|backup> who can delete pages with >5000 revisions? even bureaucrats can't :-/ [20:21:37] <Duesentrieb> Danny_B|backup: why do you need to? [20:22:29] <Danny_B|backup> Duesentrieb: hihi, actually you are the right person to ask that ;-) - we want to delete leftovers after commons ticker which no longer works for ages [20:22:38] <codurr> 03jeroendedauw * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113950> 10/trunk/extensions/EducationProgram/ (EducationProgram.settings.php includes/EPOAPager.php): tweak default img width [20:22:49] <Duesentrieb> Danny_B|backup: muhahaha... [20:23:00] <Duesentrieb> Danny_B|backup: well, just blank it and put a note there. [20:23:01] <Danny_B|backup> so who can delete such pages? [20:23:49] <Danny_B|backup> stewards? devs? [20:24:03] <MaxSem> Duesentrieb, hi! how's WikiData, by the way? [20:24:12] <k3333> anybody know about Facebook Connect extension ? have problems with update $wgFbAppId. please help! [20:24:53] <Duesentrieb> MaxSem: we are slowly sorting things out. developing is to start after easter. [20:25:08] <Duesentrieb> i was going to get a head start myself, but have been ill all week [20:25:35] <MaxSem> hope we'll discuss it in Berlin [20:25:54] <Duesentrieb> k3333: i have no idea about that extension, but your question isn't very clear. do you want to know where to get the appropriate values? or where to put them? or how to enter them? or...? [20:26:01] <codurr> New code comment: Duplicatebug; Using 1 for boolean parameter in api is bad (<tt>unwatch=1</tt>) because that indicates, that 0 mean; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/107350#c32216> [20:26:01] <Duesentrieb> MaxSem: we definitly will [20:26:26] <Duesentrieb> MaxSem: we actually have a full day set aside just for wikidata. the day before the hackathon proper. [20:28:30] <k3333> Duesentrieb: thanks. im following the instructions on the wiki ext page, but get a message from the maintenance/update.php script (after running $php update.php) that I need to update $wgFbAppId and the other one. but I don't know how to update these? is there an update function in mediawiki that could take care of it, or ? thanks again [20:30:32] <sumanah> AaronSchulz, aharoni, hashar, Lydia_WMDE, saper, Platonides, thedj, finlay, you should know that tomorrow is the last day to submit a talk to the excellent Open Source Bridge conference: http://opensourcebridge.org/blog/2012/01/announcing-the-2012-call-for-proposals/ [20:30:58] <Lydia_WMDE> sumanah: thx [20:31:05] <saper> sumanah: yeah do you still have slots for us? [20:31:09] <sumanah> http://lists.wikimedia.org/pipermail/wikitech-l/2012-March/058790.html [20:31:13] <Duesentrieb> k3333: i suppose you would assigne "updated" values to these settings in your LocalSettings.php. that's where all configuration, including extension settings, live [20:31:13] <sumanah> saper: slots? [20:31:27] <sumanah> Open Source Bridge subsidy opportunity: http://lists.wikimedia.org/pipermail/wikitech-l/2012-March/058790.html [20:31:32] <Duesentrieb> k3333: but i have no idea where to get these values, or why they should be updated, or what they even are [20:32:00] <sumanah> saper: not a single person has contacted me about the travel subsidy for OSBridge, so, I haven't even had to consider slots! [20:32:10] <k3333> Duesentrieb: thank you! i think ur right. i got the values. thanks a lot! [20:32:24] <sumanah> paulproteus: might I see you at OSB again this year? [20:32:42] <sumanah> Zaran: http://lists.wikimedia.org/pipermail/wikitech-l/2012-March/058790.html & http://opensourcebridge.org/blog/2012/01/announcing-the-2012-call-for-proposals/ - deadline tomorrow [20:32:55] <saper> sumanah: ORLY [20:33:36] <paulproteus> Aww man, deadline tomorrow... [20:33:39] <paulproteus> I'll apply, that's for sure (: [20:34:01] <sumanah> Ryan_Lane: btw you probably want to submit a Labs talk? [20:34:06] <saper> omg it's June! [20:34:13] <saper> not July! Great! [20:34:34] <sumanah> Oooh, here's a great proposed talk: "Text Lacks Empathy: Have you ever written a nice friendly email and gotten a reply that seems like they read a whole different email? Textual communication has special problems. This talk will help you mitigate them: ensuring that what you mean to say is what is understood; interpreting messages that seem totally out of whack; and increasing empathic bandwidth." [20:34:42] <sumanah> you can see the existing proposals at http://opensourcebridge.org/events/2012/proposals [20:34:44] <Ryan_Lane> sumanah: eh? to what? [20:34:48] <Ryan_Lane> OSB? [20:35:06] <sumanah> Ryan_Lane: yeah. But then again maybe you have no specific reason to. [20:35:10] <Ryan_Lane> I may not be in the country [20:35:15] <sumanah> Ah [20:35:19] <sumanah> Might Andrew want to? [20:36:35] <sumanah> awjr: if you wanted to be all "here's what we did in fundraising, bow before our string-and-baling-wire genius" that would also get strong impressiveness ratings from the FLOSS community [20:36:41] <sumanah> awjr: http://opensourcebridge.org/blog/2012/01/announcing-the-2012-call-for-proposals/ [20:36:47] <sumanah> awjr: deadline tomorrow [20:37:11] <awjr> sumanah: talk to K4-713 - i would love to go to opensource bridge but cannot [20:37:36] <codurr> 03yonishostak * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113951> 10/trunk/extensions/ArticleFeedbackv5/tests/Selenium/FeedbackPage/000_prerequisite_login_hider.testcase: AFTv5: fixed feedback page test prerequisite step [20:38:00] <codurr> 03aaron * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113952> 10/trunk/phase3/includes/filerepo/file/File.php: [FileRepo] Tweaked transformErrorOutput() to allow more useful error output (like backend errors) for problems moving thumbnails into storage. [20:38:07] <saper> sumanah: " Building the Open Source Battle Rifle." how could one possibly compete with open source AK-47! [20:38:23] <sumanah> Nemo_bis: ashish_d: dbolser: kevin_brown_ pfhayes http://lists.wikimedia.org/pipermail/wikitech-l/2012-March/058790.html deadline tomorrow. [20:38:48] <sumanah> awjr: I think I have talked to K4-713 and K4-713 is not available in late June :-( [20:38:59] <Nemo_bis> uh, the home of the Portland pattern repository [20:39:02] <sumanah> Krenair: actually you might be interested in OSBridge as well! [20:39:12] <codurr> 03bsitu * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113953> 10/trunk/extensions/MoodBar/ (7 files in 4 dirs): fix for bug 35245 - add rate limiter and spam filter check [20:39:28] <K4-713> sumanah: I might be. Can we table this for a minute? I'm fighting fires... [20:39:39] <awjr> sumanah: try pgehres or jpostlethwaite or james alexander [20:39:40] <K4-713> ...but I don't want to forget. [20:39:55] <sumanah> K4-713: I'm trying to take today off! but am happy to respond to email tomorrow or IRC tomorrow [20:39:58] <awjr> i've already got a presentation ready from 2010 fundraiser :) [20:40:05] <K4-713> I'm ooo tomorrow. [20:40:08] <sumanah> aw yeah! [20:40:31] <sumanah> K4-713: hm. well, you can look at the existing proposals on their site & pattern one after that, maybe consult awjr for advice K4-713 ? [20:40:45] <sumanah> K4-713: but go fight your fires [20:40:56] <sumanah> Nemo_bis: is that a good thing or a bad thing? [20:41:05] <Nemo_bis> sumanah, very very very good :D [20:41:17] <sumanah> saper: last year I got to show off the latest version of MediaWiki to WARD CUNNINGHAM, the man who invented the wiki. Life is good! [20:41:31] <Nemo_bis> The Portland Pattern Repository (PPR) is a repository for computer programming design patterns. It was accompanied by a companion website, WikiWikiWeb, which was the world's first wiki. [20:41:50] <sumanah> Nemo_bis: yeah, Ward usually shows up to OSBridge [20:41:52] <sumanah> :D [20:42:11] <Nemo_bis> and yet en.wiki desysoped him :( [20:42:12] <jpostlethwaite> sumanah: I have a family reunion and cannot go :P [20:42:20] <sumanah> jpostlethwaite: next year maybe, then [20:42:41] <awjr> im missing out on all the fun stuff in june :( [20:42:50] <sumanah> also, saper, Nemo_bis, please feel free to forward http://lists.wikimedia.org/pipermail/wikitech-l/2012-March/058790.html to other Wikimedia technical communities [20:43:00] <sumanah> awjr: :( [20:43:14] <awjr> sumanah: it's cool though cuz im getting married instead :D [20:43:35] <sumanah> WOW congrats awjr! That's rockin'! I look forward to welcoming you to the perm-partnered club. :-) [20:43:44] <awjr> :) [20:43:50] <awjr> i'm looking forward to being there [20:43:52] <sumanah> "PermaPartnered: A Collaboration for Life" is the educational film [20:44:03] <awjr> lol can i stream it on netflix? [20:44:09] <saper> sumanah: it's like for me I got my volunteer t-shirt signed (I voluntered for WWW5 in Paris in 2006) by Tim Berners Lee - he said in the keynote then "You ain't seen nothing yet" [20:44:17] <sumanah> it sounds like something that should be in the Internet Archive [20:44:36] <sumanah> oh wow saper :D [20:44:37] <saper> and they put the first web server of the world (a NeXT box) on display at the Louvre where we've had dinner [20:44:46] <sumanah> <3 [20:44:46] <Lcawte> Hmm, need to get planning London for this year... [20:45:14] <saper> it's the first time I've seen all talks being streamed live all around the compound [20:45:22] <saper> it was called MBONE [20:45:41] <sumanah> whoa [20:46:46] <sumanah> heatherw: oh yeah, wanted to remind you & jorm about the Open Source Bridge deadline tomorrow. Do you happen to know whether Brandon is around? [20:47:14] <Lcawte> Hmmm, do I redesign https://www.mediawiki.org/wiki/London_Hackathon_2012 to be like all the more recent hackathons? [20:47:38] <heatherw> jorm is at the away meeting this week [20:48:25] <sumanah> oh right [20:48:55] <sumanah> "London is the capital of the England" [20:48:55] <Danny_B|backup> so who can delete pages with >5000 revisions? [20:49:49] <sumanah> England gets the definite article now? ;-) [20:49:59] <Nemo_bis> Danny_B|backup, wasn't bigdelete right removed [20:50:00] <Lcawte> Hmm? [20:50:01] <codurr> New code comment: Siebrand; I think there is something like wrapWikiMsg you can use to make these one liners.; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113939#c32217> [20:50:14] <sumanah> so -- talk proposals encouraged! and now I go off to finish my beer and watch TV during my day off. :-) [20:50:36] <IsmAvatar> Hey, is there a way to hide the category list at the bottom? I have a category where all the pages will be listed in the category description along with a short description of the page, so the list at the bottom would become redundant [20:51:01] <Danny_B|backup> Nemo_bis: idk, i just need to know who can delete it and need such person to perform it [20:51:23] <codurr> 03raymond * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113954> 10/trunk/ (76 files in 47 dirs): Localisation updates for core and extension messages from translatewiki.net [20:53:49] <codurr> 03bsitu * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113955> 10/trunk/extensions/MoodBar/modules/ext.moodBar/ext.moodBar.core.js: followup to -r113953 - clean up javascript code [20:54:55] <wikibugs> 03(mod) Many thousands of submissions possible in minutes - 10https://bugzilla.wikimedia.org/35245 (10bsitu) [20:57:36] <codurr> 03pgehres * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113956> 10/branches/fundraising/deployment/payments_1.17/DonationInterfaceFormSettings.php: Disabling GlobalCollect credit card forms temporarily [21:00:35] * poopman » poopman has entered. [21:02:56] <Krenair> hi poopman [21:03:46] <RoanKattouw> !r 113858 [21:03:46] <mw-bot> https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113858 [21:04:09] * Lcawte has taken on RoanKattouw's advice for the next hackathon he is planning... [21:04:24] <RoanKattouw> What's that? London? [21:04:28] <Lcawte> Yep [21:04:41] <RoanKattouw> Nice [21:04:48] <jeremyb> http://lists.alioth.debian.org/pipermail/pkg-mediawiki-devel/2012-March/001914.html [21:04:49] <RoanKattouw> Any idea roughly when it would be? [21:04:56] * RoanKattouw doesn't live so close to London any more [21:05:25] <poopman> when i use $wgShowIPinHeader = false my entire wiki breaks, any idea why? [21:05:29] <Lcawte> August or later, I'm not really sure when though yet, I want to have it so I can get some more staff like people out... but Wikimania is July :/ [21:05:33] <jeremyb> RoanKattouw: you mean there's a big pond in the way? [21:05:34] <RoanKattouw> poopman: You have to add ; at the end [21:05:40] <RoanKattouw> $wgShowIPinHeader = false; [21:05:49] <RoanKattouw> jeremyb: That and an entire continent with mountains and stuff [21:06:01] <jeremyb> poopman is a horrible nick. for the record [21:06:04] <Lcawte> If its not August, I'll put money on it being October half term or something like that... [21:06:12] <RoanKattouw> Right [21:06:25] <RoanKattouw> I hear rumors that another India event might happen around that time [21:07:08] <Lcawte> What?! My entire continant only had 2 last year, and I see 2 on the list for one country in the same year (I think)... [21:07:21] <codurr> 03catrope * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113957> 10/branches/wmf/1.19wmf1/extensions/ArticleFeedbackv5/ (4 files in 3 dirs): 1.19wmf1: MFT r113858 [21:07:50] <jeremyb> continent* ;) [21:08:04] <RoanKattouw> Lcawte: Well India is pretty much the same size as our continent :) [21:08:47] <Lcawte> Seriously? Wow... [21:09:18] <jeremyb> 15 21:03:05 < fedel> Hi, I'm problems with my wiki. The images from a user dissapear, someone know what can be? [21:09:19] <Lcawte> It you'd said that was Russia or China, it wouldn't of suprised me :P [21:09:36] <RoanKattouw> I'd need to check that [21:09:53] <fedel> Hi, I'm problems with my wiki. The images from a user dissapear, someone know what can be? [21:11:12] <codurr> 03catrope * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113958> 10/branches/wmf/1.19wmf1/extensions/ArticleFeedback/modules/ext.articleFeedback/ext.articleFeedback.js: 1.19wmf1: Adjust pitch weights in AFTv4 per Dario's request. Will merge back to trunk later [21:18:26] <codurr> 03catrope * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113959> 10/branches/wmf/1.19wmf1/extensions/ArticleFeedback/modules/ext.articleFeedback/ext.articleFeedback.js: 1.19wmf1: Temporarily disable clicktracking for toolbox-link per Dario. Will merge to trunk later [21:20:16] <codurr> New code comment: Reedy; Right... \ In the original case, on abwiki (for example) \ <pre> \ mysql> select count(*) from templatel; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113948#c32218> [21:26:12] <codurr> 03catrope * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113960> 10/trunk/extensions/ArticleFeedbackv5/ArticleFeedbackv5.hooks.php: Fix r113858: EditPage::getRevIdFetched() doesn't exist [21:27:10] <codurr> 03catrope * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113961> 10/branches/wmf/1.19wmf1/extensions/ArticleFeedbackv5/ (. ArticleFeedbackv5.hooks.php api/ApiArticleFeedbackv5.php): 1.19wmf1: MFT r113960 [21:27:34] <jeremyb> 15 21:26:06 < xfree> I have installed wikimedia for the first time, and I do not have any idea how to create an admin account [21:28:10] <jeremyb> fedel: you could have used webchat if it's just a one-time session never to be repeated... [21:28:16] <jeremyb> err, xfree i mean [21:28:18] <RoanKattouw> xfree: The installer creates an admin account for you [21:28:41] <RoanKattouw> If you forgot the username/password you can create another one from the command line [21:31:26] <freesample> I have just installed wikimedia and I do not have any idea how to create an admin account [21:31:33] <Nemo_bis> RoanKattouw, what if one doesn't have shell access? [21:31:41] <jeremyb> 15 21:28:18 < RoanKattouw> xfree: The installer creates an admin account for you [21:31:44] <jeremyb> 15 21:28:41 < RoanKattouw> If you forgot the username/password you can create another one from the command line [21:32:03] <jeremyb> Nemo_bis: get a better webhost [21:32:10] <Nemo_bis> heh [21:32:46] <freesample> how do I use command line, I have been using phpbb up to now an it is the first time I have installed wikimedia [21:33:27] <Nemo_bis> jeremyb, I guess I'll install https://www.mediawiki.org/wiki/Extension:Sudo , give sudo to all users and disabled it very quickly [21:33:47] <Ashex> How does one add a description to a permission? [21:34:37] <codurr> 03catrope * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113962> 10/trunk/extensions/ArticleFeedbackv5/ArticleFeedbackv5.hooks.php: Fix revision ID tracking to track the new revid instead of the old one [21:34:55] <RoanKattouw> freesample: If you forgot the admin user/pass and there is no data in your wiki, you can just reinstall it [21:35:30] <AaronSchulz> RoanKattouw: those I/O errors have been there for a while [21:35:49] <freesample> RoanKattouw: are you talking about the DBuser name and password ? those don't work actually, but ok, I will re-do it. [21:37:10] <RoanKattouw> freesample: No, I mean the MediaWiki admin account. That's what you were asking about, right? [21:37:30] <RoanKattouw> The installer will ask you for the user/pass for the admin account. The default username is WikiSysop. You can choose the username and password yourself [21:38:18] <freesample> hm ok, I am doing it again at the moment, I will be back when I encounter any problem :) [21:40:46] <codurr> New code comment: Reedy; Oh, it's getting into an infinite loop.. \ As it's doing small queries, if it doesn't process any of ; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113948#c32219> [21:41:50] <jeremyb> Nemo_bis: huh? [21:42:14] <jeremyb> freesample: you might want to call it mediawiki or MediaWiki (not wikimedia) [21:42:56] <freesample> jeremyb: it is an exact sign of that I have installed it for the first time, ok, I will be more careful about it :) [21:43:06] <Nemo_bis> jeremyb, as emergency solution [21:43:22] * Nemo_bis found the crat [21:43:27] <jeremyb> Nemo_bis: why all users? [21:43:49] <Nemo_bis> jeremyb, registered [21:44:00] <jeremyb> huh? [21:44:05] <Nemo_bis> who else if you don't have any sysop [21:45:00] <jeremyb> Nemo_bis: so, why sudo?! [21:45:29] <Nemo_bis> jeremyb, to get access to the default sysop+crat one lost access to [21:45:35] <Nemo_bis> Danny_B|backup, I guess you found out that it's staff and stewards? [21:45:41] <Nemo_bis> (used to be also OS) [21:47:25] <Danny_B|backup> Nemo_bis: i didn't find even any of them - i checked listgrourights and there's no such right :-/ [21:47:42] <Nemo_bis> Danny_B|backup, http://toolserver.org/~pathoschild/globalgroups/ doesn't lie [21:48:38] <freesample> Ok, thanks jeremyb and RoanKattouw, I have installed mediawiki succesfully and completely without any problem for now :) I am sure, I am going to need more help here, see you later. [21:49:14] <Danny_B|backup> Nemo_bis: hmm, i didn't check global stuff, that's right [21:49:15] <Nemo_bis> scary, stewards could assign themselves mergehistory right https://meta.wikimedia.org/wiki/Special:GlobalGroupPermissions/steward <-- Nikerabbit [21:49:38] <jeremyb> what's that? [21:50:32] <Nemo_bis> jeremyb, almost nobody knows exactly, see recent wikitech-l thread :p [21:53:06] <jeremyb> Nemo_bis: you mean 4 month old thread? that's stretching "recent" [21:53:54] <Nemo_bis> jeremyb, dunno, I usually reference all discussions after 2008 as recent [21:54:04] <Nemo_bis> 2006 is old [21:54:07] * jeremyb stabs Nemo_bis [21:54:10] <Nemo_bis> less than that (before I came) very old :p [21:56:17] <Nemo_bis> jeremyb, I should introduce you to my vice-rector then: every time you propose something, "Oh, but we've already discussed this!" "Oh really?" "Yes, just 15 or 20 years ago, issue closed, no need to find new solutions" [22:05:31] <Joan> Nemo_bis, heatherw: https://commons.wikimedia.org/wiki/File_talk:WMF_Job_link_graphic.png [22:06:44] <Nemo_bis> what can I do but +1'ing [22:06:54] <codurr> 03rmoen * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113963> 10/trunk/extensions/VisualEditor/modules/ve/ (ce/ve.ce.Surface.js ui/ve.ui.Context.js ui/ve.ui.Toolbar.js): [22:06:54] <codurr> add surfaceObserver on select methods to ui toolbar and surfaceView for [22:06:54] <codurr> responding to select event. tools now updating to selected node annotations. [22:06:54] <codurr> revise getSelectionRect to return actual start & end pos. context icon properly [22:06:55] <codurr> showing on range selection [22:08:12] <heatherw> true, Joan. this is something fast I did for Gayle, alt text will have to do until a better solution is found for that area. [22:08:31] <codurr> New code comment: Catrope; Aha. So let's fix that, then, as opposed to ignoring broken rows that don't exactly match a magic wo; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113948#c32220> [22:09:59] <codurr> 03reedy * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113964> 10/trunk/extensions/WikimediaMaintenance/cleanupBug31576.php: [22:09:59] <codurr> Just because we pull a result from the database, doesn't mean it needs fixing. As such, if we pull 50 with nothing to fix, pulling another 50 won't pull anything. And then we're going nowhere [22:09:59] <codurr> Appropriate quote: [22:10:00] <codurr> God gave us offset parameters for a reason. -- Tim Starling [22:14:16] <codurr> New code comment: SPQRobin; I see you did so already.. that's even better I suppose :); <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/111647#c32221> [22:15:47] <codurr> 03reedy * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113965> 10/branches/wmf/1.19wmf1/extensions/ (3 files in 2 dirs): MFT r113964 [22:16:41] <wikibugs> 03(mod) Don't autologin if local account doesn't exist (don't autocreate if user doesn't explicitly login) - 10https://bugzilla.wikimedia.org/19161 +comment (10Platonides) [22:16:56] <Joan> Nemo_bis: You have an account there, right? [22:20:33] <AaronSchulz> RoanKattouw: what does "Could not connect to gerrit" mean? Anything specific? [22:20:46] * AaronSchulz suspects auth [22:21:01] <RoanKattouw> Where did you get that error? [22:21:13] <AaronSchulz> git review [22:21:52] * AaronSchulz should avoid mixing git clients [22:22:57] <RoanKattouw> Oh [22:23:01] <codurr> New code comment: Reedy; Fix in what way? Delete?; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113948#c32222> [22:23:03] <RoanKattouw> Any detail on that error message at all? [22:23:31] * AaronSchulz fixes his key setup [22:25:48] <wikibugs> 03(mod) Support Flash-based upload widget to handle multiple file selection - 10https://bugzilla.wikimedia.org/16753 +comment (10Platonides) [22:27:46] <codurr> New code comment: Catrope; I mean fix the infinite loop issue so the script will pick up rows like "DEFAULTSORT:foobar" too.; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113948#c32223> [22:36:00] <wikibugs> 03(mod) CentralAuth global session doesn't include some *.wikimedia.org public wikis - 10https://bugzilla.wikimedia.org/14407 +comment (10Platonides) [22:40:29] <codurr> 03jeroendedauw * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113966> 10/trunk/phase3/includes/GlobalFunctions.php: docs++ [22:42:05] <gerrit-wm> New patchset: saper; "Yes, I should be kept quiet on #wikimedia-tech" [test/mediawiki/core] (master) - https://gerrit.wikimedia.org/r/3229 [22:47:16] <codurr> New code comment: Reedy; I used tl_from as an offset in r113964; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113948#c32224> [22:50:28] * AaronSchulz wonders if https://www.mediawiki.org/wiki/Git/Workflow is missing a step [22:52:00] <codurr> 03jeroendedauw * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113967> 10/trunk/extensions/EducationProgram/ (8 files in 3 dirs): work on adding special:StudentActivity [22:54:42] <wikibugs> 03(NEW) Remove gerrit-wm from #wikimedia-tech - 10https://bugzilla.wikimedia.org/35248 normal; Wikimedia: General/Unknown; (b) [22:55:32] <wikibugs> 03(mod) Upload video files > 100 MB upload to Commons - 10https://bugzilla.wikimedia.org/35246 +comment (10sam) [23:02:36] <wikibugs> 03(mod) Manually fix blocks from when global oversight log removal problem started - 10https://bugzilla.wikimedia.org/34995 +comment (10snowolf) [23:03:31] <wikibugs> 03(mod) [Regression] File deletions leave stuff behind - 10https://bugzilla.wikimedia.org/35047 +comment (10wiki) [23:03:56] <codurr> 03rsterbin * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113970> 10/trunk/extensions/ArticleFeedbackv5/ (4 files in 3 dirs): (log message trimmed) [23:03:56] <codurr> Drop jquery.elastic and allow regular browser scrolling/resizing: [23:03:56] <codurr> - modules/jquery.articleFeedbackv5/jquery.articleFeedbackv5.css: [23:03:56] <codurr> - Allow the textarea to scroll and, if the browser permits it, resize [23:03:57] <codurr> manually [23:03:58] <codurr> - modules/jquery.articleFeedbackv5/jquery.articleFeedbackv5.js: [23:03:59] <codurr> - Dropped jquery.elastic [23:05:15] <wikibugs> 03(mod) Remove gerrit-wm from #wikimedia-tech - 10https://bugzilla.wikimedia.org/35248 +comment (10Krinkle) [23:07:03] <wikibugs> 03(NEW) 'Permanently disable mobile frontend' feature does not properly redirect after confirmation - 10https://bugzilla.wikimedia.org/35249 normal; MediaWiki extensions: MobileFrontend; (arichards) [23:08:01] <wikibugs> 03(mod) Manually fix blocks from when global oversight log removal problem started - 10https://bugzilla.wikimedia.org/34995 +comment (10aschulz4587) [23:08:31] <codurr> 03awjrichards * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113971> 10/trunk/extensions/MobileFrontend/templates/DisableTemplate.php: Fix for bug 35249, makes disable mobile version confirmation page properly redirect after confirmation [23:10:57] <codurr> 03catrope * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113972> 10/branches/wmf/1.19wmf1/extensions/ArticleFeedbackv5/modules/ext.articleFeedbackv5/ext.articleFeedbackv5.js: Fix ClickTracking URLs for the edit links so the title is added to those too [23:10:57] <codurr> 03awjrichards * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113973> 10/branches/wmf/1.19wmf1/extensions/MobileFrontend/templates/DisableTemplate.php: MFT r113971 [23:15:09] <wikibugs> 03(FIXED) 'Permanently disable mobile frontend' feature does not properly redirect after confirmation - 10https://bugzilla.wikimedia.org/35249 +comment (10Arthur Richards) [23:16:16] <wikibugs> 03(mod) [Regression] File deletions leave stuff behind - 10https://bugzilla.wikimedia.org/35047 +comment (10rainerrillke) [23:17:06] <codurr> 03catrope * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113974> 10/branches/wmf/1.19wmf1/extensions/ArticleFeedbackv5/ (. ArticleFeedbackv5.hooks.php api/ApiArticleFeedbackv5.php): 1.19wmf1: MFT r113962 [23:19:36] <wikibugs> 03(FIXED) Feedback form needs scrollbar so we don't hide Post button in overlay mode - 10https://bugzilla.wikimedia.org/34805 +comment (10Reha Sterbin) [23:20:59] <codurr> New code comment: Catrope; This is essentially an MFT of r113718, which I didn't discover until after committing this.; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113972#c32225> [23:21:18] <wikibugs> 14(INVALID) API allows viewing of oversighted diffs - 10https://bugzilla.wikimedia.org/35153 +comment (10Rob Lanphier) [23:21:31] <codurr> 03jeroendedauw * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113975> 10/trunk/extensions/EducationProgram/ (6 files in 2 dirs): Follow up to r113967; [23:25:42] <codurr> 03catrope * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113976> 10/trunk/extensions/ArticleFeedback/modules/ext.articleFeedback/ext.articleFeedback.js: MTT r113958, r113959 [23:27:57] <wikibugs> 03(FIXED) Make ExtensionDistributor work with Git - 10https://bugzilla.wikimedia.org/27812 (10Sam Reed (reedy)) [23:32:58] <wikibugs> 03(FIXED) 1.18.0 issues (tracking) - 10https://bugzilla.wikimedia.org/32711 (10Rob Lanphier) [23:34:21] <codurr> 03tstarling * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113977> 10/trunk/php/luasandbox/ (6 files): Split off some more modules from luasandbox.c, it was getting a bit too long. [23:37:13] <codurr> 03rsterbin * <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113978> 10/trunk/extensions/ArticleFeedbackv5/ArticleFeedbackv5.php: Changed bucketing for AFT links from 100% E to 1/3 each A, E, and nothing; also bumped up the version number (see bug 34406) [23:38:17] <codurr> New code comment: Reedy; Looks fine to me. Just need someone to review the JS, then we can push it live and re-enable Moodbar; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113953#c32226> [23:39:37] <wikibugs> 03(mod) Article Feedback v5 - Develop Feedback link Option A (vs. Option E or no link) - Metrics test 2 - 10https://bugzilla.wikimedia.org/34406 +comment (10reha) [23:41:47] <codurr> New code comment: Reedy; One criticism: \ <pre> \ +/** Rate limit setting for moodbar **/ \ 255 +$wgMoodBarFeedbackRateLimit = 3; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113953#c32227> [23:54:02] <codurr> New code comment: Bsitu; Moodbar code would not re-set the value of these two global variables, the error message may referen; <https://www.mediawiki.org/wiki/Special:Code/MediaWiki/113953#c32228> [23:59:42] <wikibugs> 03(mod) CentralNotice moves content down when a link to a heading is followed - 10https://bugzilla.wikimedia.org/26234 +comment (10Ryan Kaldari)