[00:00:35] New patchset: Kaldari; "Add label to discussion tag paramter(afd/rfd/mfd)" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18061 [00:00:35] Change merged: Kaldari; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18061 [00:00:51] Change abandoned: Kaldari; "superceeded by https://gerrit.wikimedia.org/r/#/c/18061/1" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18062 [00:01:12] 03(mod) Former account of renamed accounts can be picked up by any user - 10https://bugzilla.wikimedia.org/39116 +comment (10Matthias Becker) [00:06:49] 03(NEW) Config setting to remove printable version link - 10https://bugzilla.wikimedia.org/39117 normal; MediaWiki: General/Unknown; (porplemontage) [00:13:29] 03(mod) Config setting to remove printable version link - 10https://bugzilla.wikimedia.org/39117 normal->15enhancement (10Sam Reed (reedy)) [00:16:11] 03(mod) Former account of renamed accounts can be picked up by any user - 10https://bugzilla.wikimedia.org/39116 04CRIT->normal; +comment (10Sam Reed (reedy)) [00:18:00] New patchset: Helder.wiki; "Reduced repetition of code" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17186 [00:18:35] Krinkle, ^ there is one thing here which I'm not sure why it works [00:19:11] yes? [00:19:27] The deffered is stored in a variable: [00:19:30] userRightsDfd = deffereds.rights [00:19:36] 03(FIXED) Wikitext to html parsing works QUnit test broken - 10https://bugzilla.wikimedia.org/38987 +comment (10Krinkle) [00:19:42] then we do some things using the copy in the variable [00:19:56] There is no such thing as a copy [00:19:57] but next call to the function will use the original deffereds.rights [00:20:14] 03(mod) Config setting to remove printable version link - 10https://bugzilla.wikimedia.org/39117 +easy; +comment (10Sam Reed (reedy)) [00:20:18] really? [00:20:35] helderwiki: Objects in javascript are never passed by value. Always by reference [00:20:54] functions are objects. [00:21:26] so var x, y = x = { foo: 123; } creates an object in space with a unique identifier. And then x and y point to that. [00:21:37] x is no more or less original then y [00:21:44] setting x = null; will not affect y. [00:21:54] because that sets the variable x not the value of it. [00:22:21] but doing x.foo = 456; will affect both, because that changes the value of the object referenced [00:22:41] o.O [00:22:48] similar to $ and jQuery [00:22:52] * helderwiki needs to see this [00:23:02] Please do try it yourself. It will become clearer :) [00:23:17] New patchset: Bsitu; "Tag wizard change" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18067 [00:23:29] yep, I'll [00:23:44] one more thing: [00:24:01] what about returning a promise (deffered?) from that functions? [00:24:08] so the user could use .done and .fail [00:24:15] instead of passing a callback? [00:24:46] promises are nice but only if the application is exepted to error case for everything. [00:24:58] I think in this case it is best to not require everything to handle the error case here. [00:25:38] e.g. if you have a gadget and need to check if the user has a certain user right. You just want the array. If you'd bind to .done() and the api fails, then the gadget would crash/stop since .done() will never be called then. [00:25:54] it is an abstraction. [00:26:18] for $.ajax and mw.Api the abstraction layer is done/fail. For mw.user I'd say the abstraction layer is "get a value" [00:26:51] ok then [00:27:01] Which reminds me. It may be better to use $.Callbacks instead of $.Deferred. They are practically the same. $.Deferred is just a group of 2 $.Callbacks instances (done and fail). [00:27:11] New patchset: Tim Starling; "Allow session storage to be configured independently" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17929 [00:27:31] var list = jQuery.Callbacks( "once memory" ); [00:27:34] list.add( .. ); [00:27:45] list.fire( [stuff, here] ) [00:27:53] I don't know that yet [00:28:01] http://api.jquery.com/jQuery.Callbacks/ [00:28:30] jQuery.Deferred = function() { var doneList = jQuery.Callbacks( "once memory" ), failList = jQuery.Callbacks( "once memory" ); /* some other stuff */ } [00:28:48] TimStarling: whats with the 3600? [00:29:21] I just copied the code from MemcachedSessions.php and removed the memsess_ prefix from the function names [00:29:30] Krinkle: last time we did not finish the topic of built-in loadPageContent( pagename ) and loadTemplateContent( title, params )... [00:30:16] Danny_B|backup, would that be an utility function to get the wiki code of the pages? [00:30:20] it's always been 3600 [00:30:50] like I said in the inline comment, I can fix it in a followup commit, but I think it should be properly configurable, not a class constant [00:31:03] in MemcachedSessions.php yeah [00:31:08] Danny_B|backup: I'm not sure when that was, but sounds like something that doesn't need a utility. that's 3 lines of $.ajax [00:31:18] TimStarling: I recommended configurable with a default [00:31:25] anyway, I guess it does matter for that patch [00:31:30] or mw.Api for that matter, which already simplified/abstracts a lot [00:33:16] New review: Tim Starling; "PS2: fixed doc comment for $wgSessionCacheType in DefaultSettings.php. Added doc comment to ObjectCa..." [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17929 [00:34:17] 03(mod) DynamicPageList2 has security issues - 10https://bugzilla.wikimedia.org/24199 15enhancement->04CRIT; +comment (10Jan Schejbal) [00:34:52] New patchset: Kaldari; "Fixing typo" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18068 [00:35:07] 03(mod) PageTriage Undefined index: user_name - 10https://bugzilla.wikimedia.org/39108 (10bsitu) [00:35:33] Change merged: Kaldari; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18068 [00:36:00] Change merged: Aaron Schulz; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17929 [00:37:20] helderwiki: not the wikitext, but the content [00:37:44] i mean the rendered content [00:37:50] HMTL [00:37:51] ? [00:38:02] yup like action=render [00:38:22] * Danny_B|backup is looking for mw.Api doc [00:39:03] the doc is the code itself, I think ;-) [00:39:27] hehe, no doc as usual ;-) [00:42:24] doc comments are docs [00:42:30] that's why they are called doc comments [00:43:31] New review: Krinkle; "Regarding the change in modules/ve/ui/ve.ui.Menu.js (and other ones):" [mediawiki/extensions/VisualEditor] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17930 [00:46:04] New review: Krinkle; "-1 for the left-over of the 'mw-hide' event." [mediawiki/core] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/17605 [00:49:02] New patchset: Krinkle; "(bug 35212) keep tipsy tip active when hoovering over the tip itself" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/9962 [00:49:06] New patchset: GWicke; "Template encapsulation algorithm work in progress" [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18064 [00:50:24] New review: Krinkle; "Since a few weeks now, we've forked jQuery Tipsy over here: https://github.com/wikimedia/jquery-tipsy" [mediawiki/core] (master); V: -1 C: -2; - https://gerrit.wikimedia.org/r/9962 [00:53:25] New patchset: GWicke; "Template encapsulation algorithm work in progress" [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18064 [00:57:17] Change abandoned: Catrope; "Per Krinkle, this should be submitted to the Wikimedia fork in github, not to MediaWiki itself." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/9962 [01:01:14] New patchset: Kaldari; "Fixing some tag wizard stuff." [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/17977 [01:05:27] New patchset: GWicke; "Template encapsulation algorithm work in progress" [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18064 [01:07:34] New patchset: GWicke; "Template encapsulation algorithm work in progress" [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18064 [01:11:07] 03(mod) Add support for deploying per-datacenter config variances - 10https://bugzilla.wikimedia.org/39082 +comment (10Tim Starling) [01:14:07] New patchset: SPQRobin; "Rewrite logo/configuration code" [mediawiki/extensions/WikimediaIncubator] (master) - https://gerrit.wikimedia.org/r/17925 [01:15:05] New review: SPQRobin; "Ok, good. Wasn't sure about that." [mediawiki/extensions/WikimediaIncubator] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17925 [01:21:47] New patchset: Tim Starling; "Allow session expiry time to be configured" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18069 [01:23:33] Krinkle, I saw your comments on https://bugzilla.wikimedia.org/show_bug.cgi?id=37982 [01:23:48] do you think .always should also be avoided? [01:23:58] or is it just .then? [01:24:59] helderwiki: .always() is fine. [01:27:36] Hi. I wanted to make my media wiki a secure page.I had set wgSecureLogin to be true. But it says safety concerns and says error. [01:27:44] How do i get my media wiki to be a secure page? [01:37:19] I am helping a friend to run a MediaWiki at wikimultiple.net [01:37:23] Here is what happened. [01:37:43] We got flooded with fake accounts posting a lot of web content farm garbage and spam. [01:37:56] Now I'm going to try to use d-paste [01:38:16] and you can see what I tried to do to fix the problem. [01:38:56] Extension:CheckUser and Extension:Nuke could be useful [01:39:53] Well, I installed Nuke, that's what I'm going to show in d-paste. [01:40:01] Because it... returned some weird error. [01:41:32] New patchset: Helder.wiki; "Reduced repetition of code" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17186 [01:41:39] http://dpaste.com/782985/ [01:41:52] Krinkle, the code ^ became simpler using $.Callbacks :-) [01:42:19] helderwiki: Why is the topic "bug/38151/AMENDED" ? [01:42:40] probably a left over from another change? I'm sure you can come up with a cooler name [01:43:20] git newbie =P [01:43:47] helderwiki: oops, be careful there. Don't optimize too much. Now you've got a logic error [01:43:51] groups !== rights [01:43:55] rights = groups = []; [01:44:14] mw.user.getGroups(function (groups) { groups.push('hi there'); }); [01:44:18] palmface [01:44:28] still the same reference [01:44:47] mw.user.getRights(function (rights) { oh noes, righs contains "hi there"; }); [01:46:09] helderwiki: I'd say keep rights and global local 'var's in the .always() callback [01:46:39] also you may want to get rid of 'userRightsCallback', not sure if you need the local one. js has lexical scope chains [01:46:50] so callbacks is visible everywhere in there, including the subscope of the callback inside [01:47:15] lexical scope chains? [01:47:18] not just 'this and outside' but everything in between. [01:47:36] function () { var a; function () { function () { function () { a = 123; } } }.... [01:48:27] New review: Johnduhart; "Generating forms using purely Javascript is a huge no-no. This will break on non-JS browsers and is ..." [mediawiki/extensions/ConventionExtension] (master) C: -1; - https://gerrit.wikimedia.org/r/14055 [01:48:29] in PHP there is 'local function' and 'global'. But in JavaScript there is a scope chain. The scope a function is created in is visible in all functions created within that scope. [01:49:06] Anyway, if you don't know that that means, don't worry. I thought that was the reason you created a local variable. [01:49:07] Krinkle: We frown apon JavaScript generated pages without a fallback, right? [01:49:49] johnduhart: Depends on the situation, but yes content must not be exclusively available through a javascript interface. [01:50:12] Okay, just making sure that we still had some standards [01:51:08] yeah, there are cases where it is okay. But in most cases considering js-only is a sign of a design flaw. [01:51:15] The 'userRightsCallback' is used below in this.getRights/Groups, so how could we get rid of it? [01:51:30] the same way you assign it [01:51:39] callbacks.rights [01:52:01] Why do you need 2 pointers to the same object? [01:52:31] oh, I misread what you said [01:52:37] I understood "getUserGroupsOrRights" [01:52:41] ah, no. [01:52:45] :) [01:53:23] how to rename the "bug/38151/AMENDED"? [01:53:23] helderwiki: btw, for bonus points: put var api = new mw.Api() inside the getUserGroupsOrRights [01:53:36] that way you save the construction overhead for when it is needed. [01:53:45] makes the initial page load faster [01:53:54] helderwiki: "git branch -m old_name new_name [01:54:12] thanks [01:54:20] Anyone know how to use the $wgSecureLogin option? [01:54:29] !wg SecureLogin [01:54:29] https://www.mediawiki.org/wiki/Manual:$wgSecureLogin [01:54:44] will git know the new commit should be a new patchset like the previous ones? [01:54:52] http://dpaste.com/782985/ Can anyone look at this and see what I did wrong, if anything? [01:55:24] helderwiki: what do yo mean? You want your change to be an alternative version of the previous one, not a new patch set. [01:56:34] so when you're going to commit your changes, use "git add filename filename filename" then instead of "git commit" use "git commit --amend". That will add these changes on top of the previous change and create a new change in its place. Make sure not to touch the "Change-Id" like. Gerrit needs that to know this is linked to the other one. [01:56:59] line* [01:57:51] Jordan__: Sounds like you have a wrong version [01:58:10] Jordan__: Where did you download Nuke? And what version of MediaWiki do you have? (check Special:Version) [01:58:10] A wrong version of Nuke? [01:58:19] yes [02:01:50] I have MediaWiki 1.16.4 [02:01:52] and, [02:02:02] Nuke version 1.1.4, [02:02:09] which I got from Git [02:02:37] Oh, hang on [02:02:52] okay, I chose version 1.19, should be 1.16 [02:02:59] Let me change that and see what happens [02:03:16] How do I delete the Nuke that's already in there? It is showing as installed, it just doesn't work. [02:11:03] Jordan__: nuke extension? [02:11:32] oh, hold on [02:11:38] No James F.? [02:11:49] I get into the extensions directory and type rm nuke [02:11:57] pht, been too long since I did this kind of code [02:13:42] Jordan__: I think nuke is also core script [02:14:08] I just rm'd the previous version and uploaded the correct one [02:14:19] cool [02:16:12] oh, my cable box is so heavy! [02:16:20] 03(mod) VisualEditor: Creating link over an existing link is broken - 10https://bugzilla.wikimedia.org/37820 +comment (10MZMcBride) [02:16:31] OK, good, now when I go to Mass Delete, it says [02:16:39] This tool allows for mass deletions of pages recently added by a given user or IP. Input the username or IP to get a list of pages to delete. [02:16:51] (Problem is, each one has a different username and IP!) [02:18:37] * Juandev doesnt know this, Juandev was using ex:maintenanceshell even for nuke [02:21:35] Jordan__: So the error is gone now, right? It works? [02:22:00] Yeh. Is there any way to get a list of users and check boxes and delete them? [02:22:07] Or do I have to go through each one? There are thousands. [02:22:52] Jordan__: special:allpages? [02:23:41] I'm there [02:24:17] okay, how would I delete all of these? [02:25:08] Jordan__: list the pagese you need to delete [02:25:19] Jordan__: then copy them to nuke dialog box [02:25:26] and nuke them [02:25:40] as in copy and paste? [02:25:54] sure [02:26:20] Hi I am using LDAP config in my media wiki . I am having an issue. [02:26:21] wait a sec, there are thousands [02:27:10] In my debug log, it says Entering Connect and then next step becomes Enter Cannonical Username [02:27:27] There is no step Using server : server ip [02:27:43] nor does it say Using server : TLS or SSL [02:27:54] When i set it to clear without encryption it works fine. [02:27:58] Can you help me out pleasE? [02:28:10] Jordan__: I see. than you can get it from SQL or API [02:28:22] What's up with gerrit irc? [02:28:24] Ryan_Lane: [02:28:40] eagle_: http://www.mediawiki.org/wiki/Extension:LDAP_Authentication/Requirements [02:28:44] https://gerrit.wikimedia.org/r/#/c/14055/ actions didn't go to irc [02:28:50] eagle_: you need to set up certificate trusts [02:28:53] Juandev: How do I do that? [02:28:58] Jordan__: but I remember maintenanceshell uses a script, where you can list specific pages and let them die [02:28:58] for TLS as well? [02:29:01] Krinkle: eh? [02:29:04] New review: Krinkle; "Also:" [mediawiki/extensions/ConventionExtension] (master); V: 0 C: -2; - https://gerrit.wikimedia.org/r/14055 [02:29:10] no clue [02:29:18] Jordan__: well thats a right question for these IT guys [02:29:19] eagle_: of course [02:29:31] Is there any documentations as to how to do that in windows? [02:29:50] Ryan_Lane: is there some kind of "(no comment)" filter? [02:29:51] Because I just left 3 comments with inline comments but no "main" comment. [02:29:55] eagle_: it's in the documentation I just gave you. [02:29:56] "Patch Set 3: Do not submit (30 inline comments)" [02:29:58] Krinkle: yes [02:30:01] that one was not reported in urc [02:30:02] irc [02:30:26] that's a major change, should definitely be in IRC. [02:30:41] Ryan_Lane: Is it a hack on our end, or upstream? [02:30:44] i.e. can we fix it [02:30:52] it's a hack in the script [02:31:11] it's meant to avoid reporting + and - without comments because they are spammy [02:31:29] sure, but if there are inline comments it should not be considered as having no comments [02:31:37] well, maybe we can detect that somehow [02:31:45] I'm sure we can [02:31:49] * Juandev cant find his notes [02:32:26] 03(mod) VisualEditor: Creating link over an existing link is broken - 10https://bugzilla.wikimedia.org/37820 +comment (10MZMcBride) [02:34:43] New patchset: Helder.wiki; "Reduced repetition of code" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17186 [02:35:16] Hey Ryan . when i try connecting using SSL to get the certificate i get this 19639:error:140790E5:SSL routines:SSL23_WRITE:ssl handshake failure:s23_lib.c:188: [02:35:45] It says Connected (000003) above. [02:35:51] and below this comes. [02:35:58] ? [02:36:12] 03(NEW) {{reflist}} template cannot be rendered correctly in official App. - 10https://bugzilla.wikimedia.org/39118 normal; Wikipedia App: Generic; (Cccmm002) [02:37:07] Krinkle, I think that is it ^ [02:37:08] 03(mod) {{reflist}} template cannot be rendered correctly in official App. - 10https://bugzilla.wikimedia.org/39118 (10Cccmm002) [02:37:19] helderwiki: what is what? [02:37:31] eagle_: then ssl/tls isn't enabled on your AD server [02:37:33] the getUser** [02:37:36] eagle_: you'll need to fix that fist [02:37:38] *first [02:37:50] Jordan__: but why do you want to nuke so many pages? [02:37:59] Because they are spam. [02:38:02] Hey where do i do that Ryan? [02:38:09] hell if I know [02:38:18] Krinkle, the https://gerrit.wikimedia.org/r/#/c/17186/ [02:38:19] Because we didn't have safety settings set properly, we got pounded by bots. [02:38:23] your AD admin needs to do that [02:38:23] Thousands of them. [02:38:46] Oh right. Okay. Once thats done i need to put the certs in the folder and it should be up and running? [02:38:46] Jordan__: ok [02:38:59] Jordan__: how do you know which pages you want to delete? [02:39:42] Practically all of them. This wiki was barely created when the spamming started. [02:39:47] There are only two or three real pages. [02:40:24] actual users could re-create their articles easily. [02:40:36] Jordan__: so what about to backup those 3 pages, delete the wiki with databese and set up a new wiki? [02:41:24] Can I delete the database without deleting anythign else? [02:41:25] sure work is to customise new extensions [02:41:57] Jordan__: If you will delete the database you will need to setup the wiki again I thing [02:42:01] I'm just the assistant. The lady who runs this wiki is not up to any more programming right now -- she has this set up and my job is to maintain it. [02:42:31] Jordan__: but I realy dont know what "nuke" you are talking about [02:42:41] Nuke is a program that does mass deletion. [02:43:01] Problem is, when I got it running, I found that you still had to go in and type in each user's name [02:43:08] and there are thousands of users [02:43:11] fake ones [02:43:52] well [02:44:58] I think maybe I need "deletebatch" [02:45:34] Jordan__: thats in the core too [02:46:37] helderwiki: I'm checking it out now to run the unit test [02:46:50] great! [02:47:13] Jordan__: you probably need this: https://www.mediawiki.org/wiki/Extension:NukeDPL [02:47:45] Jordan__: you will list all pages you will need to delete (I assume all from ns user) and you will press a red bottom [02:48:08] Jordan__: than you can redelete those you didnt want to remove [02:48:28] Oh, use this instead of plain Nuke? [02:48:32] I can do that [02:48:59] Jordan__: but you need to install it to your wiki following the instalation guide [02:49:15] Jordan__: this extension is not a part of you mw version [02:49:23] Uh oh. [02:49:49] helderwiki: I'm making a few minor tweaks that I'll leave for you to find in gerrit. [02:50:10] New patchset: Krinkle; "mediawiki.user: Reduce repetition of code" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17186 [02:50:20] Jordan__: you need server access and access to localsetings.php [02:50:30] helderwiki: https://gerrit.wikimedia.org/r/#/c/17186/5..6//COMMIT_MSG,unified [02:50:32] Jordan__: or wait for your IT lady [02:50:42] left you as "Author" of course [02:50:43] New review: Asher; "schema fail, we should discuss." [mediawiki/extensions/Echo] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/16580 [02:50:51] https://gerrit.wikimedia.org/r/#/c/17186/5..6/resources/mediawiki/mediawiki.user.js,unified [02:50:57] * Juandev will try to go to sleep as in 2:30 hours the new working day starts [02:51:08] helderwiki: I optimized it a bit by only creating the array if it is needed [02:51:15] (the empty arrays) [02:51:15] OK thanks Juandev [02:51:46] helderwiki: And some @param documentation [02:51:57] Jordan__: just to know, you will delete them from the wiki, but they will stay in the database. But I think you doesnt mind this [02:53:03] helderwiki: could you look it over and +1/-1? Then I'll merge based on that [02:53:16] I just want them gone [02:54:59] Krinkle, I'll check [02:55:08] Oh interesting. jQuery is changing from GPL+MIT to MIT. [02:56:16] or not [03:01:17] Krinkle, the only thing left is a tab on "var rights, groups;" [03:01:21] which could be a space [03:01:32] you're right [03:01:32] except that, =1 [03:01:34] +1 [03:01:41] Do you want to fix that? Or shall I? [03:02:10] go ahead ;-) [03:02:52] $ gogogerrit; [03:02:56] New patchset: Krinkle; "mediawiki.user: Reduce repetition of code" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17186 [03:03:15] (that's a shortcut I have for git commit --amend -C HEAD && git review -R) [03:05:27] https://gerrit.wikimedia.org/r/#/c/17186/6..7/resources/mediawiki/mediawiki.user.js,unified [03:05:42] New review: Krinkle; "Thanks!" [mediawiki/core] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/17186 [03:05:42] Change merged: Krinkle; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17186 [03:05:49] boom [03:07:19] 03(mod) Choropleth maps of geodata - 10https://bugzilla.wikimedia.org/35725 +comment (10MZMcBride) [03:07:19] :-) [03:35:49] 03(mod) Add read-only mode - 10https://bugzilla.wikimedia.org/35597 +comment (10MZMcBride) [03:36:12] 03(mod) Add read-only mode to Wikimedia Report Card - 10https://bugzilla.wikimedia.org/35597 summary (10MZMcBride) [03:37:04] 03(mod) Pages with at least an image - 10https://bugzilla.wikimedia.org/38394 +comment (10MZMcBride) [03:40:26] 03(NEW) Wikimedia Report Card does not give data sources for most graphs - 10https://bugzilla.wikimedia.org/39119 normal; Analytics: ReportCard; (b) [03:41:54] 03(NEW) Graph types are unclear on Wikimedia Report Card - 10https://bugzilla.wikimedia.org/39120 normal; Analytics: ReportCard; (b) [03:45:34] 03(NEW) Provide link to exportable data (CSV) from Wikimedia Report Card - 10https://bugzilla.wikimedia.org/39121 normal; Analytics: ReportCard; (b) [04:04:28] 03(NEW) Re-evaluate pages system in Wikimedia Report Card - 10https://bugzilla.wikimedia.org/39122 normal; Analytics: ReportCard; (b) [04:07:33] Y u no allow redirect to special page [04:19:12] New patchset: Krinkle; "Throw ve.Error instead of string literals" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/17890 [04:20:48] Change merged: Krinkle; [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/17890 [04:25:54] 03(mod) Implement a way to index Bugzilla bugs by Wikimedia wiki family - 10https://bugzilla.wikimedia.org/38994 +comment (10MZMcBride) [04:28:35] 03(mod) Implement a way to index Bugzilla bugs by Wikimedia wiki family - 10https://bugzilla.wikimedia.org/38994 +comment (10Krinkle) [04:28:57] 03(mod) Implement a way to index Bugzilla bugs by Wikimedia wiki family - 10https://bugzilla.wikimedia.org/38994 +comment (10Krinkle) [04:29:40] * Brooke blinks at wikibugs. [04:30:11] Krinkle: Did you delete a comment? o_o [04:30:18] I did [04:30:27] triggered return too early [04:30:28] I didn't even know that was possible. [04:30:39] well, I didn't delete it. I hid it. [04:30:53] I thought Bugzilla was forever. [04:31:03] the deletecomment plugin has security leaks, that one was created last year and has been disabled soon after. [04:31:10] but private commands has been available for ever. [04:31:17] private comments* [04:32:08] Brooke: http://cl.ly/image/0K3K0b3j1T1t [04:32:21] Interesting. [04:32:40] Brooke: What does the count look like for you? [04:32:45] is there no #7 ? [04:32:53] It's completely hidden, yeah. [04:32:58] It goes from #6 to #8. [04:33:00] k [04:33:03] I only noticed because wikibugs double-reported. [04:33:05] at least its not broken [04:33:11] e.g. 7>8 [04:33:14] Right. [04:34:13] 03(mod) Parsoid: Support PST pipe trick - 10https://bugzilla.wikimedia.org/38514 summary (10Krinkle) [04:40:48] 03(mod) Parsoid / parserTests: Add JUnit XML test output for Jenkins integration - 10https://bugzilla.wikimedia.org/38092 +comment (10Krinkle) [05:49:18] 03(NEW) Adding Labsdebrepo role causes Puppet to complain about missing directory - 10https://bugzilla.wikimedia.org/39123 normal; Wikimedia Labs: General; (ori) [05:50:49] New patchset: GWicke; "Template encapsulation algorithm work in progress" [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18064 [05:51:39] ori-l: please include line #s! [05:52:07] (i think there are some?) [05:54:21] hi, recently I'm doing some data mining on wiki. I see the enwiki-20120601-externallinks.sql file in wiki dump. it has several attributes. my question is, there are prop cl_from, cl_to. from means category page id and cl_to means category's parent category names. But, for example, there are 4 catogories shown on the bottom the page, but there may be 7 relations in category link in sql db. Especially, there are many relations like [05:54:44] “Articles_with_dead_external_links_from_November_2011”, and “Good_articles” [05:55:05] sammyliu: Sure. And? [05:55:06] can anyone help me to explain this? thanks ! [05:55:15] I think you're getting confused by hidden categories. [05:55:25] Some categories are marked hidden, which means they're not exposed to readers by default. [05:55:30] They're mostly maintenance categories. [05:55:43] Such as "Articles with dead external links from November 2011". [05:55:57] I think you mean categorylinks above, not externallinks. [05:56:04] mean/meant [05:56:38] There's a user preference for exposing hidden categories or you can look at the bottom of the edit screen (there's a list below the textareaw). [05:56:42] textarea [05:56:44] Typing is the worst. [05:58:34] hi brooke, thank you !:) I think your explanation is exactly what I want. [05:58:58] Hidden category status is tracked by the page_props table, as I recall. [05:59:27] but the sql dump has no flag to classify the hidden category from shown category [05:59:52] Change merged: IAlex; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18066 [06:00:25] sammyliu: There's categorylinks, category, and page_props. [06:00:27] https://www.mediawiki.org/wiki/Manual:Category_table [06:00:37] https://www.mediawiki.org/wiki/Manual:Page_props_table [06:08:51] thank you Brooke! I'll check the page_pros table first :) [06:13:09] Change merged: IAlex; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18063 [07:01:18] 03(mod) DynamicPageList2 has security issues - 10https://bugzilla.wikimedia.org/24199 +comment (10p858snake) [07:04:21] 03(mod) New namespaces for UzWiki - 10https://bugzilla.wikimedia.org/38840 +comment (10abdulla) [07:22:54] New review: Siebrand; "L10n review failed." [mediawiki/extensions/PageTriage] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/18056 [07:35:53] New review: Nikerabbit; "Have you decided how to use @since in Wikidata branch?" [mediawiki/core] (Wikidata) - https://gerrit.wikimedia.org/r/17805 [07:38:05] Change merged: Nikerabbit; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17963 [07:41:47] New patchset: Tim Starling; "Added a Redis client for object cache storage" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18071 [07:44:48] New patchset: Aaron Schulz; "Revision and WikiPage cleanup with IDBAccessObject interface." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18070 [07:46:40] hello, i am doing fresh install of mediawiki on rhel 5.6, but it detects sqlite and says it can't install, but i have mysql and want to use that [07:46:48] how can i force it to use mysql? [07:47:20] ArcAngel: does your php have mysql support? [07:47:28] ArcAngel, looks like you don't have a mysql module for PHP [07:47:33] i will install [07:47:54] thnx [08:03:41] New review: Nikerabbit; "Comments for PHP part" [mediawiki/extensions/BlameMaps] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17972 [08:04:18] 03(mod) Meta changes notification will be useful - 10https://bugzilla.wikimedia.org/39061 +comment (10Григор Гачев) [08:05:11] Change merged: Tobias Gritschacher; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17951 [08:13:35] ok.. now my phpinfo says it has mysql support [08:13:41] but it still wants to use sqlite [08:14:04] click or restart installation [08:14:26] i did [08:14:32] hi, how to enable the wibiya widgets on all page like haitipedia.org? i already installed the widgets in my wiki, but it wont show on every page [08:16:13] New patchset: Henning Snater; "37923: removing site links table's toolbar hover event" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18072 [08:16:50] bam! [08:16:59] just disabled sqlite module [08:17:00] O=) [08:17:45] o_0 I need to investiate this [08:18:00] New review: Nikerabbit; "Good catch!" [translatewiki] (master) - https://gerrit.wikimedia.org/r/18032 [08:19:16] it only show widget on http://sakkhi.org/Widget:Wibiya [08:19:48] i need to change global template, so i can show the widget on every page. [08:34:20] 03(mod) Upgrade Wikimedia OTRS installation to the latest version - 10https://bugzilla.wikimedia.org/22622 +comment (10Rjd0060) [08:36:26] gd_aryadi, That's really a horrible way to try and do that [08:36:51] New review: Nikerabbit; "Can you upload the correct one again? There isn't much point reviewing code which cannot be merged." [mediawiki/extensions/TranslateSvg] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/16891 [08:39:49] New review: Tobias Gritschacher; "Selenium tests have to be adjusted too.." [mediawiki/extensions/Wikibase] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/18072 [08:41:44] 03(NEW) [Regression] Odd linked list wrapping - 10https://bugzilla.wikimedia.org/39124 major; MediaWiki: User blocking; (krinklemail) [08:41:57] New review: Platonides; "Trailing spaces. Superfluous "//$title = Title::newFromText( $source );" line." [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/11137 [08:42:26] 03(mod) [Regression] Odd linked list wrapping - 10https://bugzilla.wikimedia.org/39124 +comment (10Krinkle) [08:42:55] 03(mod) [Regression] Odd linked list wrapping - 10https://bugzilla.wikimedia.org/39124 +comment (10Krinkle) [08:43:10] 03(mod) [Regression] Odd linked list wrapping - 10https://bugzilla.wikimedia.org/39124 (10Krinkle) [08:43:21] Has anyone else seen these weird wrapping lately? [08:43:29] !b 39124 [08:43:29] https://bugzilla.wikimedia.org/show_bug.cgi?id=39124 [08:43:36] Nikerabbit: Do you see it as del on https://translatewiki.net/wiki/User:Krinkle ? [08:43:39] well* [08:44:18] New patchset: IAlex; "Follow-up I47412b67: pass an array of query parameters to Linker::link()" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18073 [08:44:42] Krinkle: pardon? [08:44:56] the wrapping in the catlinks [08:44:58] see by bug report [08:45:18] Krinkle: your image descriptions in that bug are swapped [08:45:39] shit happens [08:45:41] and no I don't see them [08:45:44] I blame my screenshot app [08:45:47] is it only on my mac? [08:45:52] Nikerabbit: what browser? [08:45:53] s/my// [08:45:56] Krinkle: chrome [08:46:13] me too [08:46:15] try https://meta.wikimedia.org/wiki/Countervandalism_Network/settings [08:46:20] How does the table of contents look [08:46:26] is '1.2 Channel setting' wrapped? [08:46:28] Krinkle: did you try cross browser testing? [08:46:30] or on 1 line? [08:46:32] I did [08:46:32] no it isn't [08:46:35] (browserstack) [08:46:36] in one line [08:46:54] Version 20.0.1132.57 [08:47:14] Dantman: is there any template that can change whole article structure maybe? [08:47:15] there is update to google chrome, should I test after upating? [08:48:05] gd_aryadi, Like I said that's a completely screwed up way of doing that, you shouldn't be inserting scripts by making WikiText show up on every page [08:48:21] Krinkle: what's your version? [08:48:51] Just use the SkinAfterBottomScripts hook to insert whatever script the service gives you [08:49:23] New patchset: Jens Ohlig; "Undo for items [DO NOT MERGE]" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17057 [08:49:45] Nikerabbit: 21 [08:49:46] auto stable release updating [08:49:47] you should be on 21 too [08:50:01] Change merged: Nikerabbit; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18059 [08:50:22] Krinkle: I only have updates via yum [08:52:07] Nikerabbit: ? Chrome doesn't update itself? [08:53:08] New review: Daniel Kinzler; "@Daniel: it's Wikibase\Type and Wikibase\Value" [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/16829 [08:53:31] New review: Daniel Kinzler; "sorry. it SHOULD be Wikibase\Type and Wikibase\Value ;)" [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/16829 [08:54:47] Krinkle: not if installed this way on fedora [08:55:15] k [09:04:33] 04(REOPENED) register a nickserv account for nagios-wm - 10https://bugzilla.wikimedia.org/20771 +comment (10Rjd0060) [09:05:13] Krinkle: yep, definitely regression in new chrome [09:06:17] 03(mod) [Regression] Odd linked list wrapping - 10https://bugzilla.wikimedia.org/39124 +comment (10Niklas Laxström) [09:07:46] Change merged: John Erling Blad; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17660 [09:16:02] New patchset: Amire80; "Rephrased two messages to make them clearer" [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/18074 [09:17:18] 03(mod) [Regression] Odd linked list wrapping - 10https://bugzilla.wikimedia.org/39124 +comment (10Krinkle) [09:18:56] New patchset: Amire80; "Rephrase scribunto-ignore-errors" [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/18075 [09:23:54] New review: Daniel Kinzler; "unfinished, needs rebase and more cowbell." [mediawiki/extensions/Wikibase] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/17970 [09:24:07] dantman: ive found the solution [09:24:29] insert the wibiya code into the skin.php [09:24:38] *facepalm* [09:24:39] for example, im using vector.php [09:24:46] DON'T MODIFY CORE! [09:24:54] Just use the SkinAfterBottomScripts hook to insert whatever script the service gives you [09:24:58] and then, i paste it, it works [09:25:14] i already use skinafterbottomscripts [09:25:23] but "database error" [09:25:39] SkinAfterBottomScripts has nothing to do with the database [09:25:45] You screwed up your code [09:25:53] Gimme the script that's supposed to be inserted [09:26:39] Database error [09:26:39] Jump to: navigation, search [09:26:39] A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was: [09:26:39] (SQL query hidden) [09:26:51] Script, not errot! [09:27:27] [09:27:27] [09:31:04] gd_aryadi, http://dpaste.org/csVwT/ [09:31:37] New patchset: Daniel Werner; "Fixed some issues mentioned in Bug 38888" [mediawiki/extensions/StickToThatLanguage] (master) - https://gerrit.wikimedia.org/r/17113 [09:33:28] New patchset: Henning Snater; "preventing propagation of tooltip background image" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18076 [09:34:54] Dantman: where shoud i paste that? [09:35:10] gd_aryadi, The end of your LocalSettings.php [09:36:51] New patchset: Daniel Kinzler; "Undo and restore for items" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17057 [09:37:44] thank you very much dantman, it works [09:41:16] 03(NEW) Document the Scribunto debug console messages - 10https://bugzilla.wikimedia.org/39125 normal; MediaWiki extensions: Scribunto; (amir.aharoni) [09:43:10] Change merged: Nikerabbit; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18073 [09:46:45] vvv: Hi. http://www.mediawiki.org/wiki/Extension:Scribunto says that to enable it I should put [09:46:48] require( "$IP/extensions/Scribunto/Scribunto.php" ); [09:46:59] in LocalSettings.php. Isn't it require_once usually? [09:48:30] 03(NEW) Special:WhatLinksHere behaves incorrectly on targets from "Special:" namespace - 10https://bugzilla.wikimedia.org/39126 minor; MediaWiki: Special pages; (qq) [09:49:05] New patchset: Daniel Kinzler; "Tests for EditEntityAction" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17970 [09:50:26] There should be a way to separate revdelete deletions and actual page deletions in the deletion log. [10:02:01] 03(NEW) Make edit tools pixel accurate - 10https://bugzilla.wikimedia.org/39127 normal; MediaWiki extensions: WikidataRepo; (Danweetz) [10:02:30] 03(mod) Make edit tools pixel accurate - 10https://bugzilla.wikimedia.org/39127 +need-volunteer (10Daniel Werner) [10:09:19] 03(mod) Make edit tools pixel accurate - 10https://bugzilla.wikimedia.org/39127 (10Daniel Werner) [10:09:19] 03(mod) Implement new Wikidata user interface design (tracking) - 10https://bugzilla.wikimedia.org/37771 (10Daniel Werner) [10:13:28] New patchset: Daniel Kinzler; "Tests for EditEntityAction" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17970 [10:13:42] New patchset: IAlex; "Fix checks to pass or display "return to" links in Special:UserLogin." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18077 [10:23:16] New patchset: John Erling Blad; "Simplify call syntax for props in wbgetitems." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17431 [10:23:29] I've been reading OAuth and writing python for too long [10:23:50] When I see "secret" and "id" I want to write $secret_id rather than $secretID [10:26:02] 03(NEW) Show old title on item diff pages - 10https://bugzilla.wikimedia.org/39128 normal; MediaWiki extensions: WikidataRepo; (daniel.kinzler) [10:28:12] 03(NEW) Show old title when showing old revision - 10https://bugzilla.wikimedia.org/39129 normal; MediaWiki extensions: WikidataRepo; (daniel.kinzler) [10:30:06] 03(NEW) Show (reset) link when viewing old revisions of items - 10https://bugzilla.wikimedia.org/39130 normal; MediaWiki extensions: WikidataRepo; (daniel.kinzler) [10:30:14] 03(mod) Show (restor) link when viewing old revisions of items - 10https://bugzilla.wikimedia.org/39130 summary (10Daniel Kinzler) [10:30:25] 03(mod) Show (restore) link when viewing old revisions of items - 10https://bugzilla.wikimedia.org/39130 summary (10Daniel Kinzler) [10:31:55] 03(NEW) autoComment functionality needs tests for each Wikibase API module - 10https://bugzilla.wikimedia.org/39131 normal; MediaWiki extensions: WikidataRepo; (daniel.kinzler) [10:33:19] 03(NEW) #ask does not work inside #ifeq or #switch - 10https://bugzilla.wikimedia.org/39132 normal; MediaWiki extensions: Semantic MediaWiki; (jan) [10:45:47] 03(NEW) Show full item preview in undo/restore form - 10https://bugzilla.wikimedia.org/39133 normal; MediaWiki extensions: WikidataRepo; (daniel.kinzler) [10:46:04] how does one get the name of a namespace in a different langauge ? [10:46:48] chughakshay16, For what purpose? [10:47:33] I want to parse some wikitext depending on the $wgContLang [10:47:55] New patchset: Daniel Werner; "Items in non-editable views are not editable anymore" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18078 [10:47:55] New patchset: Daniel Werner; "Tell JS whether editing should be enabled." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17806 [10:48:32] 03(NEW) Generate translatable autoComments for undo and restore operations - 10https://bugzilla.wikimedia.org/39134 normal; MediaWiki extensions: WikidataRepo; (daniel.kinzler) [10:48:40] Dantman: I am looking to parse [[User:*|*]] in a wikitext... [10:49:27] Dantman: by parsing I mean matching it against a regexp.. [10:49:51] New patchset: Tobias Gritschacher; "adjusted selenium tests to go along with removal of hover-event in sitelinks;" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18079 [10:49:52] New patchset: Tobias Gritschacher; "37923: removing site links table's toolbar hover event" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18072 [10:49:56] Bleh… sounds like a horrible idea… But in any case what you want is just the canonical name and the contenting name [10:50:48] Dantman: I want a canonical name in a different language.. [10:50:56] Change merged: Tobias Gritschacher; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18072 [10:51:13] What you just said is ridiculous [10:51:30] Anyways you want both… because both can be used inside content. [10:51:47] Dantman: In Message*.php files there are arrays for $namespaceNames[].. how do i access those ? [10:51:52] New review: Nikerabbit; "Message docs?" [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17978 [10:53:08] 04(REOPENED) Clear suggested text when input no longer matches - 10https://bugzilla.wikimedia.org/38847 (10Niklas Laxström) [10:53:42] Change merged: Tobias Gritschacher; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18076 [10:55:08] MWNamespace::getCanonicalName, $wgContLang->getNsText, and $wgContLang->getGenderNsText (multiple calls) after $wgContLang->needsGenderDistinction() and MWNamespace::hasGenderDistinction [10:55:47] There is a potential for 4 different names for the user namespace to be available [10:55:59] Excluding aliases which add more [10:58:52] Dantman: it wouldnt work for me this way.. [10:58:56] New patchset: Daniel Werner; "Items in non-editable views are not editable anymore" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18078 [10:59:49] Also if the user decides to use something like {{ns:user}} you're probably screwed. [11:01:21] Dantman: Whats the result of {{ns:User}} ? [11:01:45] Should be $wgContLang->getNsText [11:02:11] But that's only after template expansion using the preprocessor [11:02:41] So it's impossible to check for without starting the parser [11:02:47] Change merged: Henning Snater; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18079 [11:03:53] Dantman: I found the solution, what was I thinking... I already had the $user object with me .. so calling Title::makeTitle(NS_USER,$user->getName())->getPrefixedDBKey() would have given me what I was looking for ... right ?? [11:04:17] Only one possible version [11:05:08] 03(NEW) Use ULS on WikidataRepo test system - 10https://bugzilla.wikimedia.org/39135 enhancement; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [11:05:08] 03(mod) Install extensions that will be used on the repo on the test system - 10https://bugzilla.wikimedia.org/38950 (10denny vrandecic) [11:05:22] Dantman: if the admin has set $wgContLang = 'es' .. wouldnt ->getPrefixedDBKey() fetch me the correct version ? [11:06:15] There is more than one possible name for some namespaces [11:06:35] Dantman: yeah depending on the gender there can be more [11:07:50] For example in an es wiki User: Usuario: and Usuaria: are all valid text to use to link to a user page [11:07:53] 03(mod) RC inclusion: Add namespace parameter - 10https://bugzilla.wikimedia.org/31802 (10duplicatebug) [11:08:21] Dantman: lets take this for example, we have a link [[User:abcd]] on en wikipedia.. wouldnt the frenche wikipedia show us the french version for the same link.. and if it does how is it done ? [11:08:34] Dantman: i m thinking its the parser which is doing the magic there.. [11:08:51] Dantman: correct me if m wrong .. ^^ :) [11:09:16] If you put [[User:abcd]] into the page the text should stay the same because it's just text. [11:09:52] Dantman: so it would only be displayed differently.. ? [11:09:56] If you visit the page Title::getNsText will be used which uses the wgContLang version and also does gender handling. [11:10:06] On the french wiki itself [11:10:19] 03(NEW) replace Item::addSiteLink with Item::setSiteLink - 10https://bugzilla.wikimedia.org/39136 normal; MediaWiki extensions: WikidataRepo; (daniel.kinzler) [11:10:59] Each of the following will link to the same page [[User:abcd]] [[Utilisateur:abcd]] [11:11:29] Naturally of course [[USER:abcd]] [[User:Abcd]] [[utilisateur::Abcd]] etc... [11:11:35] 03(mod) Special:WhatLinksHere behaves incorrectly on targets from "Special:" namespace - 10https://bugzilla.wikimedia.org/39126 (10duplicatebug) [11:11:51] 03(mod) Enable "What links here" on applicable special pages - 10https://bugzilla.wikimedia.org/14787 (10duplicatebug) [11:13:03] Dantman: okay, so getPrefixedDBKey() does the same thing as well --- it internally calls getNSText()... [11:13:06] 03(mod) Config setting to remove printable version link - 10https://bugzilla.wikimedia.org/39117 (10duplicatebug) [11:13:31] Yes, to get one single possible namespace [11:15:22] 03(mod) Config setting to remove printable version link - 10https://bugzilla.wikimedia.org/39117 +comment (10p858snake) [11:16:22] Dantman: so there is no perfect of judging the perfect namespace that user has entered.. ? [11:16:27] *perfect way [11:16:37] *there is no way [11:16:45] 03(mod) "Entry points" section on Special:Version should respect custom $wgScript and $wgLoadScript - 10https://bugzilla.wikimedia.org/39102 (10duplicatebug) [11:16:49] If you're taking WikiText there is no sane way other than actually parsing it [11:17:21] New patchset: Daniel Werner; "Items in non-editable views are not editable anymore" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18078 [11:17:32] The idea that you could even encompass the possible ways to format one thing in WikiText using a regexp is ridiculous in the first place [11:20:09] Dantman: it wouldne be ridiculous if I am controlling what all is stored as wikitext on that page.. if its the software that is generating the wikitext in a specific pattern [11:22:10] Dantman: would $parser->replaceInternalLinks() do the job for me .. I am not that familiar with the parser stuff . [11:22:22] I don [11:22:28] Dantman: it returns the LinkHolderArray [11:22:32] I don't even know what you're trying to do [11:24:06] Dantman: see line 353 - https://gerrit.wikimedia.org/r/#/c/14047/7/model/ConferenceOrganizer.php [11:24:40] Dantman: this is how i am storing the wikitext in a particular section of a page ^^ [11:24:55] 03(NEW) Test the replication of links from repo to client - 10https://bugzilla.wikimedia.org/39137 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [11:25:49] I don't even understand what you're attempting to do now [11:25:57] Dantman: this is where I am matching it against a regexp(line 149) - https://gerrit.wikimedia.org/r/#/c/14051/3/utils/ConferenceOrganizerUtils.php [11:26:56] Dantman: so I want to modify my parsing logic in order to make it work even if the $wgContLang is set to something other than 'en' [11:27:42] Why are you using WikiText in the first place. [11:28:11] Dantman: ?? [11:28:26] 03(mod) Make edit tools pixel accurate - 10https://bugzilla.wikimedia.org/39127 (10jeblad) [11:28:33] Dantman: isnt it obvious to enter wikitext in a wiki page.. [11:29:12] For a user, yeah… but you're not a user… and judging by your assumptions the user is not supposed to edit this content. [11:29:40] "you're" meaning the extension [11:30:41] chughakshay16: i'm starting to doubt you'll even be able to get this thing working the way you're trying ... howbout you forget about doing modifications fo this type of page and just set a point with comment in the wikitext saying "you can edit beyond this point the rest gets autogenerated on edit" [11:30:50] New patchset: Nikerabbit; "Apparently equals is deprecated in favour of equal" [mediawiki/extensions/Narayam] (master) - https://gerrit.wikimedia.org/r/18080 [11:32:48] 03(NEW) After clicking to edit aliases no proper focus is provided - 10https://bugzilla.wikimedia.org/39138 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [11:33:04] freakolowsky: yes I will add a comment asking user to only edit specific portion of this page [11:33:49] probably best ... i don't see a decent way to do it at this moment ... [11:34:10] New patchset: Daniel Kinzler; "Tests and fixes for ItemDiff::apply()" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18081 [11:34:12] *facepalm* If the user shouldn't edit it you shouldn't output it as WikiText in the first place [11:35:53] Dantman: may be you are not aware of the pages where comments are placed along wikitext to let the user know what and what not he is supposed to edit... [11:36:04] That is no better [11:36:16] In fact that's practically what I'm saying is wrong. [11:36:33] Dantman: go check the Lab Account request page , and you will see what I am trying to say [11:36:35] If you have to tell the user not to edit something. Then you're whole foundation is fucked up. [11:36:59] That's not outputted or parsed by an extension. [11:37:19] That's human written boilerplates preloaded into edit pages edited by humans and read by humans. [11:37:28] Dantman: https://www.mediawiki.org/wiki/Git/New_repositories/Requests [11:38:20] Dantman: the solution that I m talking about is setting a standard wikitext for the user, and letting him/her push rest of the information as requested on the page [11:38:49] Dantman: this is somewhat similar to filling and submitting a form [11:39:26] New review: Daniel Werner; "#contentSub is not sufficient to display stuf in vector and monobook above the line beneath the h1. ..." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/17073 [11:39:41] None of that is a custom tailored extension. That's just a human controlled use of inputbox. [11:40:12] Dantman: yes thats true, but a user is only allowed to edit what he/she is asked to edit.. [11:40:34] Except you're missing two key facts. [11:40:58] 03(mod) Data Item DOM for description & aliases should be integrated into existing DOM properly (8) - 10https://bugzilla.wikimedia.org/38145 +comment (10Daniel Werner) [11:41:02] No extension parses that afterwards. It's all read and edited by humans. [11:41:11] And that's not a custom tailored extension. [11:41:36] It's just a few bits of generic functionality thrown together as an on-wiki hack. [11:41:38] Dantman: even in my case i am not parsing the whole text that is edited by the user.. [11:42:05] If you are writing an extension such a pattern is not an acceptable way to write a good extension. [11:42:16] Dantman: i am only interested in the first line of every section.. where i am writing the wikitext for user link [11:43:11] If the user is not supposed to edit the output, then you don't output it as WikiText. You output something semantic that you can understand and in the parser you convert that into nice fancy output. [11:43:15] Dantman: I am only parsing it to know which user i am dealing with. thats all [11:44:03] Dantman: may be you didnt understand my point,, i am letting user input information on that page [11:44:24] Dantman: but not the first line of every section.. [11:44:31] Dantman: is it that big a crime ? [11:44:35] Dantman: :) [11:44:59] chughakshay16: Dantman has got a point there ... you could replace this whole user block/section you have with a custom tag ... problem solved [11:46:20] something like text ppl can add freely [11:46:59] that way you don't have to fool around with raw wikitext [11:47:06] freakolowsky: so what does that tag output ? [11:47:18] freakolowsky: it would still have to output the user link for the user.. [11:47:22] Whatever you want [11:47:24] the same thing you're pushing into wikitext at the moment [11:47:58] just so you reduce the borkability of the text [11:49:17] freakolowsky: okay i get your point.. [11:50:03] freakolowsky: , Dantman but I never got any answer for what i originally was asking.. [11:50:28] * freakolowsky scrolls back ... wasn't paying attention [11:51:44] namespace in a certain language? [11:52:31] freakolowsky: Dantman , so even if i do it via a tag , i would still have to generate a user link for a specific language..($wgContLang) ? [11:52:53] well ... no [11:52:57] At that point you'd just be doing visual output [11:53:21] you just push that text ... parser will make it look right [11:53:31] 03(mod) Enable "What links here" on applicable special pages - 10https://bugzilla.wikimedia.org/14787 (10Danny B.) [11:53:39] Change merged: Siebrand; [mediawiki/extensions/Narayam] (master) - https://gerrit.wikimedia.org/r/18080 [11:55:16] You'd just use Linker::userLink [11:56:38] freakolowsky:, Dantman : okay , I totally get your point [11:58:43] 03(NEW) Translate links should be protocol-relative; avoid red links - 10https://bugzilla.wikimedia.org/39139 normal; MediaWiki extensions: TranslationNotifications; (jhsoby) [12:06:01] Personally I've hated having these kind of things where we go and insert things which have a whole meaning of their own into WikiText and edit the page to change them. I'd much rather see it detached from the page and have the page output a UI. Then you could have really good interfaces for inputting and editing the stuff. And you could have real sorting, meanings, paging, etc... [12:06:07] Crap... [12:06:33] T_T This just leads me to one of the same ideas as that Gadgets discussion before was leading me to [12:06:58] New review: Jeroen De Dauw; "One minor issue with method visibility, the rest looks good" [mediawiki/extensions/Wikibase] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/18081 [12:06:59] "I want to build and abstract revisioning system" [12:07:00] an* [12:08:38] Am I going to end up making this #4? [12:08:55] …or is it going to be a project that ends up like the skin system [12:09:15] 03(mod) DynamicPageList2 has security issues - 10https://bugzilla.wikimedia.org/24199 +comment (10Bawolff) [12:28:54] 03(mod) PDF generation does not support grouped refs - 10https://bugzilla.wikimedia.org/39095 summary (10Bartosz Dziewoński) [12:30:47] whoever created code assist in JDeveloper ... it'd really like to have a long conversation with that person (yes i know, crappy tool, but i have to use it on a certain project) [12:31:44] 03(mod) Config setting to remove printable version link - 10https://bugzilla.wikimedia.org/39117 +comment (10Steve) [12:38:26] 03(mod) Factbox vanishing when reloading page - 10https://bugzilla.wikimedia.org/38809 04CRIT->major; summary; +comment (10Markus Krötzsch) [12:38:59] 03(mod) Config setting to remove printable version link - 10https://bugzilla.wikimedia.org/39117 +comment (10Daniel Friesen) [12:44:07] 03(mod) Provide link to exportable data (CSV) from Wikimedia Report Card - 10https://bugzilla.wikimedia.org/39121 normal->15enhancement (10Sam Reed (reedy)) [12:44:08] New patchset: John Erling Blad; "Splitting og language attributes in label and description" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17227 [12:45:28] New review: John Erling Blad; "Should be ready for review and possibly merging now." [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17227 [12:45:35] >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉ [12:45:35] ҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ [12:45:36] ҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉ [12:45:41] ҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ >҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ [12:45:51] hi [12:46:24] does anyone know in which mediawiki files i can access the and ? [12:47:48] bobklap, at skins folder [12:48:53] which file? [12:48:58] in the 'common' foldeR? [12:49:20] Change merged: Reedy; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18069 [12:50:35] 03(NEW) wbgetitems to return revid - 10https://bugzilla.wikimedia.org/39140 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [12:51:51] New patchset: Daniel Kinzler; "Tell JS whether editing should be enabled." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17806 [12:53:09] 03(NEW) wbsetitem should ignore a revid in the content - 10https://bugzilla.wikimedia.org/39141 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [12:54:42] 03(NEW) Add a parameter reset to wbsetitem that allows to completely set the item - 10https://bugzilla.wikimedia.org/39142 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [12:54:47] bobklap: You can't... not in such a way as you seem to describe... please explain what you are trying to do [12:54:51] devunt: He can't [12:54:58] i can dantman [12:55:01] ? [12:55:10] in Vector.php the skin i use [12:55:19]
[12:55:22] Skins don't control their [12:55:27] is the header i suppose [12:55:31] No it's not [12:55:37] That's just some random div in the body. [12:55:39] and
the content [12:55:48] That's just more body [12:55:50] 03(mod) 'Protect' user right does not allow a user to protect pages up to their editing level - 10https://bugzilla.wikimedia.org/36489 +comment (10Tyler Romeo) [12:55:58] whatever it tried to do worked though [12:56:01] And you would never EVER edit a skin to add something. [12:56:32] We have hooks galore to do almost anything you want. Without even modifying a single core file. [12:56:34] http://gyazo.com/1f107a788a17ba825fb8f8f4291f636e.png?1344430275 [12:58:24] New patchset: John Erling Blad; "This removes use of fallback languages from ViewEntityAction" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18086 [12:58:38] 03(NEW) Use JSON serialization as coming from wbgetitem for wbsetitem - 10https://bugzilla.wikimedia.org/39143 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [12:59:57] New review: John Erling Blad; "This is for testing purposes only!!" [mediawiki/extensions/Wikibase] (master); V: 0 C: -2; - https://gerrit.wikimedia.org/r/18086 [13:01:01] I remember there was a "move back" link on Special:Log/move [13:01:05] but where is it now? [13:02:48] New patchset: Mwjames; "Fix queryprinter into/outro" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/18087 [13:08:30] New review: John Erling Blad; "Message docs are missing for the moment. There are also a few messages that should be changed as the..." [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17978 [13:10:50] Change merged: Jeroen De Dauw; [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/18087 [13:13:34] New patchset: Reedy; "Added a Redis client for object cache storage" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18071 [13:15:45] 03(NEW) JSON diff representation of items should be closer aligned to the other JSON serializations - 10https://bugzilla.wikimedia.org/39144 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [13:17:33] hello all [13:18:06] New review: John Erling Blad; "Not only testing, needs reviewer..." [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18086 [13:18:11] New review: Tobias Gritschacher; "existing Selenium tests pass." [mediawiki/extensions/Wikibase] (master); V: 0 C: 1; - https://gerrit.wikimedia.org/r/17227 [13:18:14] New patchset: Amire80; "Add a test for autonym sorting" [mediawiki/extensions/UniversalLanguageSelector] (master) - https://gerrit.wikimedia.org/r/18088 [13:19:09] 03(NEW) Remove the nousekeys parameter from the wbsetitem API module - 10https://bugzilla.wikimedia.org/39145 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [13:20:03] can somebody help me with the mediawiki? :) [13:20:44] 03(NEW) Check the id in the data parameter payload for wbsetitem - 10https://bugzilla.wikimedia.org/39146 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [13:23:01] the toolbox isn't working on Chrome for editting pages. Can see it in FF but not in Chrome [13:23:18] New review: John Erling Blad; "Just to get an answer to Daniels comment." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17227 [13:23:29] New patchset: Parent5446; "Changed Status class to allow passing of Message objects." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17962 [13:23:52] 03(NEW) Expose the diff functionality for items through the MW API - 10https://bugzilla.wikimedia.org/39147 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [13:29:19] 03(NEW) $1 of MediaWiki:Translationnotifications-email-deadline should use date in user language - 10https://bugzilla.wikimedia.org/39148 normal; MediaWiki extensions: TranslationNotifications; (raimond.spekking) [13:30:10] 03(NEW) Module wbpatchitem that updates an item - 10https://bugzilla.wikimedia.org/39149 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [13:30:10] 03(mod) Expose the diff functionality for items through the MW API - 10https://bugzilla.wikimedia.org/39147 (10denny vrandecic) [13:30:48] New patchset: Yaron Koren; "Bug fix - special handling is needed for getHeadScripts() for MW 1.18" [mediawiki/extensions/SemanticForms] (master) - https://gerrit.wikimedia.org/r/18089 [13:31:25] Change merged: Yaron Koren; [mediawiki/extensions/SemanticForms] (master) - https://gerrit.wikimedia.org/r/18089 [13:32:15] 03(NEW) Create Special:EmptyItems - 10https://bugzilla.wikimedia.org/39150 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [13:32:56] New patchset: Yaron Koren; "Oops" [mediawiki/extensions/SemanticForms] (master) - https://gerrit.wikimedia.org/r/18090 [13:33:17] Change merged: Yaron Koren; [mediawiki/extensions/SemanticForms] (master) - https://gerrit.wikimedia.org/r/18090 [13:33:28] New patchset: Tobias Gritschacher; "This removes use of fallback languages from ViewEntityAction" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18086 [13:35:29] Change merged: Tobias Gritschacher; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18086 [13:38:45] 03(mod) If a user's default license is set to a license that isn't allowed in a campaign, the UploadWizard breaks - 10https://bugzilla.wikimedia.org/39087 +comment (10Maarten Dammers) [13:45:36] 03(NEW) Create an action column and move the action links there - 10https://bugzilla.wikimedia.org/39151 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [13:46:34] 03(mod) Create an action column and move the action links there - 10https://bugzilla.wikimedia.org/39151 (10denny vrandecic) [13:46:35] 03(mod) Implement new Wikidata user interface design (tracking) - 10https://bugzilla.wikimedia.org/37771 (10denny vrandecic) [13:48:35] New patchset: Daniel Kinzler; "Tests and fixes for ItemDiff::apply()" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18081 [13:48:35] New patchset: Daniel Kinzler; "Undo and restore for items" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17057 [13:49:57] 03(mod) Implement new Wikidata user interface design (tracking) - 10https://bugzilla.wikimedia.org/37771 (10denny vrandecic) [13:49:57] 03(NEW) Have separate columns for the language code and the language name - 10https://bugzilla.wikimedia.org/39152 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [13:53:09] New patchset: Aude; "client refactoring to re-include sorting and suppressing repo links" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18091 [13:54:28] Change merged: Nikerabbit; [mediawiki/extensions/UniversalLanguageSelector] (master) - https://gerrit.wikimedia.org/r/17941 [13:57:07] New patchset: John Erling Blad; "Formatting for the Autocomment stuff." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17978 [13:57:55] Change abandoned: Daniel Kinzler; "will be merged into main "undo" change" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17970 [13:58:13] Change abandoned: Daniel Kinzler; "will be merged into main "undo" change" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18081 [13:58:51] New review: Daniel Kinzler; "looks like is screwed up a merge somewhere. will investigate" [mediawiki/extensions/Wikibase] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/17057 [14:00:53] 03(NEW) Make the sitelink table sortable - 10https://bugzilla.wikimedia.org/39153 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [14:00:53] 03(mod) Implement new Wikidata user interface design (tracking) - 10https://bugzilla.wikimedia.org/37771 (10denny vrandecic) [14:03:11] 03(NEW) Integrate "tool tip" and notification into the new UI - 10https://bugzilla.wikimedia.org/39154 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [14:03:13] 03(mod) Implement new Wikidata user interface design (tracking) - 10https://bugzilla.wikimedia.org/37771 (10denny vrandecic) [14:09:23] http://www.wikipediaredefined.com/ [14:09:31] has anyone saw that yet? [14:09:48] New patchset: Yaron Koren; "Another attempt to get SFUploadWindow to work for all MW versions >= 1.17" [mediawiki/extensions/SemanticForms] (master) - https://gerrit.wikimedia.org/r/18092 [14:09:49] numerous times yesterday [14:09:53] <_Meow> Y_Ichiro: Hello. I think this is #mediawiki [14:10:14] it might be a good idea to turn it into an actual usable mediawiki skin [14:10:21] i don't know how feasible it is though [14:15:00] Y_Ichiro: Not skin....it would need to be a huge bunch of extensions, from what I'm seeing [14:15:26] oh i'm not talking about implementing every single thing it presented [14:15:41] even if the design idea is there, it's probably somewhat do-able [14:17:40] Y_Ichiro: Good point. I guess that's possible, yes [14:24:42] Change merged: Yaron Koren; [mediawiki/extensions/SemanticForms] (master) - https://gerrit.wikimedia.org/r/18092 [14:26:05] New patchset: Umherirrender; "Show a "(blocked)" hint on Special:ListUsers/ActiveUsers" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17945 [14:27:24] New review: Umherirrender; "readd ipb_auto = 0 to query" [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/17945 [14:31:34] 03(mod) $1 of MediaWiki:Translationnotifications-email-deadline should use date in user language - 10https://bugzilla.wikimedia.org/39148 +i18n (10Sam Reed (reedy)) [14:35:15] Hello, question, how do you execute a parser function? [14:35:21] 03(mod) unable to make edits to wikipedia entries "stick" - 10https://bugzilla.wikimedia.org/39065 +comment (10Bawolff) [14:37:02] is it {{#function: variable1 | variable2}} ? [14:37:50] ͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇͏̇ [14:38:17] Yes [14:39:09] New patchset: Aude; "client refactoring to re-include sorting and suppressing repo links" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18091 [14:39:23] Ok, thank you [14:42:15] New patchset: Amire80; "Add a test for checking that all languages have autonyms" [mediawiki/extensions/UniversalLanguageSelector] (master) - https://gerrit.wikimedia.org/r/17905 [14:43:25] 03(mod) Portal namespace on bs.wiki - 10https://bugzilla.wikimedia.org/37226 -shellpolicy (10Krenair) [14:44:48] Y_Ichiro: that design proposal has a couple of good ideas, but most of it is not actually useful. See http://lists.wikimedia.org/pipermail/wikimedia-l/2012-August/121650.html . [14:46:06] 03(FIXED) Add Portal NS to Urdu Wikipedia - 10https://bugzilla.wikimedia.org/19569 +comment (10Krenair) [14:46:08] 03(FIXED) Closure of su.wikibooks.org - 10https://bugzilla.wikimedia.org/39054 +comment (10Krenair) [14:48:28] 03(FIXED) Activation of FlaggedRevs in catalan wikinews - 10https://bugzilla.wikimedia.org/34135 +comment (10Krenair) [14:48:48] New patchset: Reedy; "Replace $wgDBerrorLogInUTC with a $wgDBerrorLogTZ variable which can be set to any other timezone. Also avoids the ugly default-changing that was being used by c15605." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15623 [14:49:45] 03(FIXED) Please implement the following changes on Turkish Wikipedia - 10https://bugzilla.wikimedia.org/38690 +comment (10Krenair) [14:50:47] 03(FIXED) Portal namespace on bs.wiki - 10https://bugzilla.wikimedia.org/37226 +comment (10Krenair) [14:51:36] New patchset: Reedy; "Replace $wgDBerrorLogInUTC with a $wgDBerrorLogTZ variable which can be set to any other timezone. Also avoids the ugly default-changing that was being used by c15605." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15623 [14:52:39] 03(FIXED) Enable import on nds.wp - 10https://bugzilla.wikimedia.org/38943 +comment (10Krenair) [14:54:21] Change merged: Reedy; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15623 [14:57:30] i'm trying to locate the docs section that deals w/ removing/editing the alphabetical letters for sorting. any ideas? [14:58:00] in the categories pages. [15:00:41] New review: Jeroen De Dauw; "This change contains a bugfix which in itself is completely valid and should be merged in ASAP - so ..." [mediawiki/extensions/Wikibase] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/17169 [15:06:25] i'm getting many "/usr/bin/diff3: No newline at end of file" errors in my apache error log. any ideas why is this happening? [15:10:50] hello [15:14:03] New patchset: Reedy; "Add a MagicWordArray::getNames() function" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17682 [15:14:53] New patchset: Reedy; "jQuery 1.8 RC1 (to become 1.8 when released)" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17455 [15:14:54] 03(mod) New namespaces for UzWiki - 10https://bugzilla.wikimedia.org/38840 +shellpolicy; +comment (10Krenair) [15:20:00] New review: Jeroen De Dauw; "I'm going to create a new item to fix this spaghetti code, before it becomes self aware and starts e..." [mediawiki/extensions/Wikibase] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/18091 [15:23:43] Change merged: Jeroen De Dauw; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18091 [15:25:24] New review: Trevor Parscal; "I think the following is a reasonable rule:" [mediawiki/extensions/VisualEditor] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/17930 [15:25:36] Change abandoned: Jeroen De Dauw; "(no reason)" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17944 [15:26:25] New patchset: Umherirrender; "(bug 32951) Do not register absolute internal externals" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18094 [15:26:35] 03(mod) Please implement the following changes on Turkish Wikipedia - 10https://bugzilla.wikimedia.org/38690 +comment (10Vito Genovese) [15:26:46] 03(NEW) Update jquery.autoEllipsis to work with jQuery 1.8 - 10https://bugzilla.wikimedia.org/39155 minor; MediaWiki: JavaScript; (sam) [15:27:03] New patchset: Parent5446; "Changed default l10n_cache to CACHE_ANYTHING." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18095 [15:27:34] 03(mod) Storing of web links with absolute protocol to the own protocol relative server - 10https://bugzilla.wikimedia.org/32951 +comment (10Umherirrender) [15:27:39] 14(INVALID) Update jquery.autoEllipsis to work with jQuery 1.8 - 10https://bugzilla.wikimedia.org/39155 +comment (10Sam Reed (reedy)) [15:27:40] Change merged: Tobias Gritschacher; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17794 [15:31:18] New review: Daniel Kinzler; "looking pretty good, but needs some polishing (see comments). will play with it now." [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17978 [15:31:18] 03(mod) VisualEditor: Creating link over an existing link is broken - 10https://bugzilla.wikimedia.org/37820 +comment (10Roan Kattouw) [15:32:26] 03(NEW) Update jquery.tablesorter to work with jQuery 1.8 - 10https://bugzilla.wikimedia.org/39156 minor; MediaWiki: JavaScript; (sam) [15:33:30] 03(mod) Config setting to remove printable version link - 10https://bugzilla.wikimedia.org/39117 (10duplicatebug) [15:40:35] New patchset: Henning Snater; "38503: using Arial as default font" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18097 [15:41:12] New review: Catrope; "This doesn't actually work. The test passes for me with Tidy enabled, but fails with Tidy disabled (..." [mediawiki/core] (master); V: -1 C: -1; - https://gerrit.wikimedia.org/r/18065 [15:41:45] Change merged: Tobias Gritschacher; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18097 [15:43:57] New review: Daniel Kinzler; "manual testing looks good" [mediawiki/extensions/Wikibase] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/17978 [15:44:30] New review: Nikerabbit; "Can't you just increase line-height? Other languages will be needing different fonts and need more s..." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18097 [15:44:42] New patchset: Parent5446; "Changed LoginForm::addNewaccountInternal() to return Status." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17952 [15:46:19] New patchset: Aude; "split sorting code, kill some obsolete code" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18098 [15:50:27] New review: Amire80; "What Nikerabbit said. Plus, it's quite likely that non-Windows machines don't have Arial." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18097 [15:51:40] New review: Jeroen De Dauw; "Still procedural spaghetti :)" [mediawiki/extensions/Wikibase] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/18098 [15:52:51] 03(mod) Parsoid: Support PST pipe trick - 10https://bugzilla.wikimedia.org/38514 +comment (10Mark Holmquist) [15:52:52] New patchset: John Erling Blad; "Forms for SpecialItemByLabel and SpecialItemByTitle" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17169 [15:54:50] Trying to upgrade a mediawiki install from 1.13 to 1.19, moved old files, uploaded new files, ran update, now I'm moving old extensions back in one at a time and trying to hack because most are no longer supported, ExtensionManager requires ObjectCache.php but it has moved into an includes/objectcache sub-directory. Can I just change the include path? [15:56:15] vanjwilson: You should probably bring in new extension versions too [15:56:37] !e ExtensionManager [15:56:37] https://www.mediawiki.org/wiki/Extension:ExtensionManager [15:56:50] MediaWiki 1.10, 1.11, 1.12 [15:56:52] New patchset: Daniel Kinzler; "Undo and restore for items" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17057 [15:56:56] I highly doubt that's going to work.. [15:57:10] New patchset: Daniel Werner; "Items in non-editable views are not editable anymore" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18078 [15:59:01] New patchset: Nischayn22; "Implementation of new Special Property ASK" [mediawiki/extensions/SemanticMediaWiki] (querycache) - https://gerrit.wikimedia.org/r/17953 [16:00:08] @Reedy: is there a newer project that picks up the ExtensionManager functionality? A developer, long-gone before my time, built a couple of custom extensions on top of it for the site I'm trying to upgrade. [16:00:37] "Provides management of MediaWiki extensions." [16:00:47] Unforunately, that's a very vague description [16:02:51] New review: Catrope; "I can verify that this makes jshint pass in resources/mediawiki/ . Still throwing 1522 errors in the..." [mediawiki/core] (master); V: 1 C: 0; - https://gerrit.wikimedia.org/r/16718 [16:03:35] New patchset: Aude; "split sorting code, kill some obsolete code" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18098 [16:06:11] Hi, my webhost is complaining about Imagemagick MediaWiki is using overloades the server. Is my only solution falling back to GD? [16:07:51] New patchset: Nischayn22; "fix minor bug" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/18100 [16:13:52] tyteen4a03: do you have many very large images ? [16:14:08] thedj: I'm not sure... I don't watch the images section often [16:14:33] right. wel big images are 'more expensive' then small images, so you might want to look into that. [16:15:04] thedj: I don't have access to the folder right now due to blockage and they claims it's "abuse". psh [16:15:16] you can set some limits on that scaling. [16:15:27] thedj: how would I do that? [16:16:02] New review: Daniel Kinzler; "ok, improved documentation and stuff" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17057 [16:16:24] tyteen4a03: http://www.mediawiki.org/wiki/Manual:Image_Administration [16:16:47] 03(mod) Config setting to remove printable version link - 10https://bugzilla.wikimedia.org/39117 +comment (10Steve) [16:16:56] you can limit wgMaxShellMemory and several other options to keep usage of resources under control [16:17:25] alternatively, set up a separate host to take care of the image scaling. [16:17:40] New review: Jeroen De Dauw; "Neat catch :)" [mediawiki/extensions/SemanticMediaWiki] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/18100 [16:17:40] Change merged: Jeroen De Dauw; [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/18100 [16:17:52] New patchset: Daniel Kinzler; "Undo and restore for items" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17057 [16:18:31] thedj: what are they? [16:21:44] 03(mod) jquery.wikiEditor.dialogs: 'missing' and 'invalid' properties should check against undefined instead of truthy - 10https://bugzilla.wikimedia.org/39091 +comment (10Codicorumus) [16:23:27] you also have the option http://www.mediawiki.org/wiki/Manual:$wgMaxImageArea [16:23:53] tyteen4a03: just a separate server that does nothing but the actual scaling. [16:24:17] thedj: no, I meant the config options [16:24:32] that i don't know [16:25:01] oh, just look on mediawiki.org [16:25:14] i already gave you the names of the 2 most important ones [16:33:08] 03(mod) Show (restore) link when viewing old revisions of items - 10https://bugzilla.wikimedia.org/39130 +comment (10Daniel Kinzler) [16:34:09] New patchset: Aaron Schulz; "Revision and WikiPage cleanup with IDBAccessObject interface." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18070 [16:34:49] 03(mod) Echo Call to a member function getText() on a non-object - 10https://bugzilla.wikimedia.org/39085 +comment (10Andrew Garrett) [16:35:50] 03(mod) Echo Call to a member function getText() on a non-object - 10https://bugzilla.wikimedia.org/39085 +comment (10Krenair) [16:37:18] 03(mod) id t-print is missing in monobook skin - 10https://bugzilla.wikimedia.org/34264 +comment (10Steve) [16:37:43] New patchset: preilly; "update MobileFrontend to master" [mediawiki/core] (wmf/1.20wmf9) - https://gerrit.wikimedia.org/r/18106 [16:38:10] New patchset: Jeroen De Dauw; "Updating caching code of the client [DO NOT MERGE]" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18107 [16:38:49] 03(mod) Bugzilla products could use a re-examination - 10https://bugzilla.wikimedia.org/38990 +comment (10Andre Klapper) [16:38:50] New review: Daniel Werner; "I find this EntityContent::userCanEdit() a little weird. Sure we want to have this? One could always..." [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17806 [16:39:02] New review: Henning Snater; ""sans-serif" is still being used as fallback. Quoting http://www.mediawiki.org/wiki/Wikimedia_Founda..." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18097 [16:39:06] New patchset: preilly; "update MobileFrontend to master" [mediawiki/core] (wmf/1.20wmf8) - https://gerrit.wikimedia.org/r/18108 [16:39:48] sans-serif? Why not comic sans? [16:40:30] Change merged: preilly; [mediawiki/core] (wmf/1.20wmf8) - https://gerrit.wikimedia.org/r/18108 [16:40:42] Change merged: preilly; [mediawiki/core] (wmf/1.20wmf9) - https://gerrit.wikimedia.org/r/18106 [16:42:51] New patchset: Jeroen De Dauw; "Updating caching code of the client [DO NOT MERGE]" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18107 [16:44:19] 03(mod) PHP Warning: Invalid argument supplied for foreach() in /www/w/includes/Uri.php on line 262 - 10https://bugzilla.wikimedia.org/39099 +comment (10Niklas Laxström) [16:47:52] New review: Daniel Kinzler; "> I find this EntityContent::userCanEdit() a little weird. " [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17806 [16:48:07] New review: Catrope; "Looks good generally, passes jshint and unit tests. -1 for one weird thing I noticed regarding slice..." [mediawiki/core] (master); V: 1 C: -1; - https://gerrit.wikimedia.org/r/16718 [16:48:59] New patchset: preilly; "update ZeroRatedMobileAccess to master" [mediawiki/core] (wmf/1.20wmf8) - https://gerrit.wikimedia.org/r/18109 [16:50:03] New patchset: Daniel Kinzler; "Undo and restore for items" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17057 [16:50:22] New patchset: preilly; "update ZeroRatedMobileAccess to master" [mediawiki/core] (wmf/1.20wmf9) - https://gerrit.wikimedia.org/r/18110 [16:50:28] Change merged: preilly; [mediawiki/core] (wmf/1.20wmf8) - https://gerrit.wikimedia.org/r/18109 [16:50:42] Change merged: preilly; [mediawiki/core] (wmf/1.20wmf9) - https://gerrit.wikimedia.org/r/18110 [16:56:01] 03(NEW) "Become an instructor" and similar functions don't work. - 10https://bugzilla.wikimedia.org/39157 normal; MediaWiki extensions: EducationProgram; (ragesoss) [16:59:14] 03(NEW) Submitting or saving edits to a course description prompts a "leave page" warning - 10https://bugzilla.wikimedia.org/39158 normal; MediaWiki extensions: EducationProgram; (ragesoss) [17:01:05] 03(ASSIGNED) Assignments in loop conditionals - 10https://bugzilla.wikimedia.org/37597 +comment (10Jeroen De Dauw) [17:01:23] Change merged: Catrope; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18070 [17:03:09] 03(mod) Assignments in loop conditionals - 10https://bugzilla.wikimedia.org/37597 +comment (10Chad H.) [17:03:48] New patchset: Daniel Kinzler; "Undo and restore for items" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17057 [17:05:27] New patchset: Jeroen De Dauw; "use foreach rather then while when looping over db result (bug 37597)" [mediawiki/extensions/EducationProgram] (master) - https://gerrit.wikimedia.org/r/18111 [17:05:54] 03(FIXED) Assignments in loop conditionals - 10https://bugzilla.wikimedia.org/37597 +comment (10Jeroen De Dauw) [17:09:31] Change merged: Demon; [mediawiki/extensions/EducationProgram] (master) - https://gerrit.wikimedia.org/r/18111 [17:11:01] Is there any issue with strtotime('+1 month'... or date_add in mediawiki code? I notice that includes/Pager.php avoids these utilities... [17:11:45] 03(mod) Enable AFTv5 on ta.wikipedia.org - 10https://bugzilla.wikimedia.org/38774 +comment (10shanmugam) [17:12:24] New patchset: Jeroen De Dauw; "Updating caching code of the client [DO NOT MERGE]" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18107 [17:13:22] New patchset: preilly; "fix language name" [mediawiki/extensions/ZeroRatedMobileAccess] (master) - https://gerrit.wikimedia.org/r/18114 [17:13:55] Change merged: preilly; [mediawiki/extensions/ZeroRatedMobileAccess] (master) - https://gerrit.wikimedia.org/r/18114 [17:16:16] New patchset: preilly; "update ZeroRatedMobileAccess to master" [mediawiki/core] (wmf/1.20wmf9) - https://gerrit.wikimedia.org/r/18115 [17:16:49] 03(NEW) course page creation gives misleading feedback, doesn't confirm page creation - 10https://bugzilla.wikimedia.org/39159 normal; MediaWiki extensions: EducationProgram; (ragesoss) [17:16:54] New patchset: Mwalker; "Adding basic version of GatewayFormChooser as a gateway-agnostic entry point into DonationInterface." [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/18055 [17:17:20] New patchset: preilly; "update ZeroRatedMobileAccess to master" [mediawiki/core] (wmf/1.20wmf8) - https://gerrit.wikimedia.org/r/18116 [17:17:33] Change merged: preilly; [mediawiki/core] (wmf/1.20wmf9) - https://gerrit.wikimedia.org/r/18115 [17:17:40] Change merged: preilly; [mediawiki/core] (wmf/1.20wmf8) - https://gerrit.wikimedia.org/r/18116 [17:20:13] 03(mod) Notification in other wiki has broken link - 10https://bugzilla.wikimedia.org/38718 normal->major (10Amir E. Aharoni) [17:20:25] Change abandoned: Brian Wolff; "Abandoning (for now at least). Need to investigate issue more" [mediawiki/extensions/Cite] (master) - https://gerrit.wikimedia.org/r/14682 [17:21:34] 03(FIXED) Special:NewImages/250 transclusion only show 50 newest images - 10https://bugzilla.wikimedia.org/33037 (10Bawolff) [17:21:47] gwicke: Beep [17:21:53] marktraceur: https://github.com/adamwight/parsoid-skel-v1 [17:22:46] Change merged: Kaldari; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18067 [17:23:01] gwicke: Now that's cool. [17:23:35] marktraceur: very early days, but still exciting ;) [17:30:08] 03(mod) Enable import on nds.wp - 10https://bugzilla.wikimedia.org/38943 +comment (10Marcus Buck) [17:30:22] 03(mod) Portal namespace on bs.wiki - 10https://bugzilla.wikimedia.org/37226 +comment (10DzWiki) [17:33:58] Change merged: Amire80; [mediawiki/extensions/TranslationNotifications] (master) - https://gerrit.wikimedia.org/r/17397 [17:34:08] New patchset: Adamw; "(bug 36791) replace date fields with jquery.ui.datepicker" [mediawiki/extensions/CentralNotice] (master) - https://gerrit.wikimedia.org/r/17975 [17:39:49] 03(FIXED) VisualEditor: Improperly escapes - 10https://bugzilla.wikimedia.org/37838 +comment (10Gabriel Wicke) [17:40:36] how do you make special pages? [17:40:48] 03(mod) noinclude / includeonly context wrongly set to 'include' when processing template parameters - 10https://bugzilla.wikimedia.org/39113 (10Gabriel Wicke) [17:40:54] New review: Brian Wolff; "Your confusing the limit on the number of bytes and the number of characters." [mediawiki/core] (master) C: -1; - https://gerrit.wikimedia.org/r/17519 [17:43:15] New patchset: Subramanya Sastry; "Added support for roundtripping sanitized attributes." [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18117 [17:43:32] Change merged: Daniel Kinzler; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17431 [17:43:35] New patchset: Krinkle; "(bug 38987) mediawiki.api.parse.test: Fix test breakage" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18065 [17:44:02] ^demon: can you look at https://gerrit.wikimedia.org/r/#/c/11731/ ? [17:44:16] <^demon> xz: You write a class that extends the SpecialPage class. The main function you'll need to implement is execute(). You register your special page in $wgSpecialPages. There should be a fair bit of documentation at http://www.mediawiki.org/wiki/Manual:Special_pages [17:45:43] New patchset: John Erling Blad; "Formatting for the Autocomment stuff." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17978 [17:49:07] New patchset: Trevor Parscal; "After much research on error objects, native = good, custom = bad" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/18118 [17:50:46] New review: Krinkle; "What didn't work with the way it was?" [mediawiki/extensions/VisualEditor] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18118 [17:54:28] New patchset: Aaron Schulz; "[Database] Various DB cleanups." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/11731 [17:58:44] New review: Brian Wolff; "/me will be sad to see this go, I've always kind of liked how we did this by default" [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/17404 [18:01:00] New patchset: Aaron Schulz; "[Database] Various DB cleanups." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/11731 [18:02:32] New review: Demon; "I kinda agree with Brian...supporting this out of the box was kind of nice (and actually, I use it o..." [mediawiki/core] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/17404 [18:02:33] 03(NEW) Parsoid: Pre-save transform tracker bug - 10https://bugzilla.wikimedia.org/39160 normal; Parsoid: General; (gwicke) [18:03:03] 03(mod) Parsoid: Pre-save transform tracker bug - 10https://bugzilla.wikimedia.org/39160 (10Gabriel Wicke) [18:06:25] 03(mod) Portal namespace on bs.wiki - 10https://bugzilla.wikimedia.org/37226 +comment (10DzWiki) [18:07:29] Change merged: Demon; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/11731 [18:08:37] 03(NEW) Investigate html5 library bugs and workarounds - 10https://bugzilla.wikimedia.org/39161 normal; Parsoid: JS/DOM; (ssastry) [18:09:39] hrmmmm, [[mw:CC]] doesn't mention git (but does svn) [18:11:06] jeremyb: Probably it's not necessary to consider the EOL style in git? *shrug* there's probably a reason [18:12:34] New patchset: Bsitu; "Personal note on user talk page" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18042 [18:12:40] marktraceur: or it hasn't been touched in a year? [18:12:46] Change merged: Catrope; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18065 [18:14:17] Change merged: Tobias Gritschacher; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18078 [18:14:17] Change merged: Daniel Werner; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17806 [18:15:01] 03(mod) Investigate html5 library bugs and workarounds - 10https://bugzilla.wikimedia.org/39161 (10Gabriel Wicke) [18:15:19] Change merged: Demon; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/12549 [18:16:05] \o/ [18:16:21] <^demon> You owe me a beer or something :p [18:16:56] jeremyb: That could also be it, I suppose [18:18:10] New review: Aaron Schulz; "What is this used for?" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17682 [18:20:19] New review: Demon; "Presumably it's just adding an accessor so we can try to make this stop being a public var that's be..." [mediawiki/core] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/17682 [18:20:20] Change merged: Demon; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17682 [18:23:25] 03(mod) Portal namespace on bs.wiki - 10https://bugzilla.wikimedia.org/37226 +comment (10Krenair) [18:23:41] 03(mod) Former account of renamed accounts can be picked up by any user - 10https://bugzilla.wikimedia.org/39116 +comment (10Matthias Becker) [18:24:01] 14(DUP) Former account of renamed accounts can be picked up by any user - 10https://bugzilla.wikimedia.org/39116 +comment (10Matthias Becker) [18:24:02] 03(mod) Enhance Renameuser to offer optional automatic recreate and/or block of old account - 10https://bugzilla.wikimedia.org/15181 +comment (10Matthias Becker) [18:24:02] New review: Trevor Parscal; "In some browsers the line numbers and stack traces were wrong or non-existent. I tried about 10 diff..." [mediawiki/extensions/VisualEditor] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18118 [18:25:31] New review: Pgehres; "Always nice to have someone take your basic idea and make it better. Looks good." [mediawiki/extensions/DonationInterface] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/18055 [18:25:31] Change merged: Pgehres; [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/18055 [18:25:40] New patchset: Bsitu; "deletion tag wizard category description" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18056 [18:25:47] https://bs.wikipedia.org/w/index.php?title=Razgovor_o_portalu:Islam&action=edit&redlink=1 [18:25:49] 03(mod) Portal namespace on bs.wiki - 10https://bugzilla.wikimedia.org/37226 +comment (10Krenair) [18:26:02] "Portal" is subject namespace, "Razgovor_o_portalu" is talk namespace [18:26:15] "Portal talk" is an alias for "Razgovor_o_portalu" [18:26:29] But if you look at that URL, it thinks you're creating a subject page, not discussion... [18:28:36] Is this a MW bug or did I do something wrong? :/ [18:29:39] https://bs.wikipedia.org/w/index.php?title=Portal%20talk:Islam&action=edit&redlink=1 [18:29:43] It's fine when you use the alias. Wut. [18:30:36] Krenair: "Razgovor" is the talk namespace, not "Razgovor_o_portalu" [18:30:54] (or no? I'm misunderstanding?) [18:31:06] Um no, it's definitely Razgovor_o_portalu [18:31:27] See https://bugzilla.wikimedia.org/show_bug.cgi?id=37226 and https://gerrit.wikimedia.org/r/#/c/17398/1/wmf-config/InitialiseSettings.php [18:32:28] New review: Brian Wolff; "djvu has an option to render as either png or jpg I believe (lossy vs lossless is the thing in the i..." [mediawiki/extensions/PdfHandler] (master) C: 0; - https://gerrit.wikimedia.org/r/6802 [18:32:47] Krenair: It's been merged, has it been deployed? [18:33:00] yes it has [18:34:51] Run mw.config.get('wgNamespaceIds') in your JS console [18:35:03] 03(mod) Portal namespace on bs.wiki - 10https://bugzilla.wikimedia.org/37226 +comment (10DzWiki) [18:35:08] New patchset: Massaf; "Add historical feedback icons to css/images" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/18119 [18:35:08] New patchset: Massaf; "Add css classes for historical feedback icons" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/18120 [18:35:08] New patchset: Massaf; "Make PEF icon CSS more efficient" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/18121 [18:35:09] New patchset: Massaf; "Add support for multiple experiments (historical and gratitude)" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/18122 [18:35:29] Change merged: IAlex; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17179 [18:35:36] Nikerabbit: is https://gerrit.wikimedia.org/r/#/c/10545/ ok? [18:35:37] Krenair: It appears to have spaces rather than underscores [18:35:58] I was thinking that might be why.. [18:36:34] 03(FIXED) "code error!" shouldn't be hard coded - 10https://bugzilla.wikimedia.org/24521 +comment (10Alexandre Emsenhuber [IAlex]) [18:37:37] New patchset: Daniel Kinzler; "Undo and restore for items" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17057 [18:39:38] marktraceur, yup, that's it. Should be underscores [18:43:33] New patchset: Yaron Koren; "Fixes for #get_ldap_data handling" [mediawiki/extensions/ExternalData] (master) - https://gerrit.wikimedia.org/r/18123 [18:46:10] New patchset: Daniel Kinzler; "Undo and restore for items" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17057 [18:46:58] 04(REOPENED) Portal namespace on bs.wiki - 10https://bugzilla.wikimedia.org/37226 +comment (10Krenair) [18:47:17] Change merged: Yaron Koren; [mediawiki/extensions/ExternalData] (master) - https://gerrit.wikimedia.org/r/18123 [18:47:39] how does one get the gitweb link for a particular extension? [18:48:23] yuvipanda, um, you want a gitweb for an entire extension? [18:48:50] https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/extensions/CentralAuth.git replace CentralAuth with the extension name [18:48:57] Being spammed with [08-Aug-2012 18:46:57] PHP Warning: Invalid argument supplied for foreach() in /www/w/includes/Uri.php on line 261 [18:49:01] AaronSchulz: I can answer tomorrow, ok? [18:49:10] https://bugzilla.wikimedia.org/show_bug.cgi?id=39099 [18:49:16] Nikerabbit: tx [18:49:44] Krenair: yeah, just figured that [18:49:53] google threw up aharoni's post from a while back [18:50:38] hi [18:50:43] I have a Gerrit-related question too: in a commit summary, how do we refer to a previous commit, so that it gets linked? [18:50:52] (Assuming there's any way to do that.) [18:51:14] It looks like each commit gets something like three different IDs and I don't know which one to use, if any. [18:51:28] hmm [18:51:55] I think it's the one which looks like this: I12cdb28b85460da24383b5e7e119f7cb51dab43b [18:52:03] Or short: I12cdb28b [18:52:19] So either one works? And do you need to put an "r" before it, or something? [18:52:57] hi, i've been trying to merge two wikis and i've been mostly successful, the last thing i have to do is merge the uploaded files. i see an images/ dir with all uploaded images but where might other uploaded files be...? also does the sub dir structure of images/ matter? [18:53:00] I guess I can just try it and see, next time I have a commit. [18:53:46] ses1984, just export all the images from the old wiki into the new one [18:54:19] ses1984 - the importImages.php is very helpful for that; see here: http://www.mediawiki.org/wiki/Manual:ImportImages.php [18:54:21] 03(mod) Remove the nousekeys parameter from the wbsetitem API module - 10https://bugzilla.wikimedia.org/39145 (10jeblad) [18:54:29] i'm not sure how you mean...the special page export just spits out an xml file with the text of the pages, but no attached files [18:54:37] And the /images folder holds all uploaded files, even non-image ones. [18:54:43] It's just poorly-named. [18:54:56] i see [18:55:25] !gitweb PUT_EXTENSION_NAME_HERE | yuvipanda [18:55:26] yuvipanda: https://gerrit.wikimedia.org/r/gitweb?p=PUT_EXTENSION_NAME_HERE.git [18:55:31] (I should have said: the importImages.php *script*) [18:56:38] so i can scrape all the files out of images/, move them to the new site, then use importImages.php to batch import to the new site. seems easy enough. thanks [18:57:48] ses1984 - it's even easier than that actually - you can keep the old /images directory exactly as it is, and importImages.php will find all the files in it. [18:57:54] New patchset: Krinkle; "Fix ve.Error" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/18126 [18:58:00] excellent [18:58:21] New review: Krinkle; "Counter proposal: https://gerrit.wikimedia.org/r/18126" [mediawiki/extensions/VisualEditor] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18118 [18:58:41] umm it says on the page you linked me, "Importimages.php will not search and upload images in sub-directories (directory recursion)" [18:58:49] Oh... [18:58:51] Let me see. [18:59:13] collapsing them into one dir is pretty trivial either way [19:00:21] New review: Brian Wolff; ">This reverts bug 23293, because with tagfilter, I see no UNIQ things." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/17669 [19:00:56] New review: Daniel Friesen; "@Brian,Demon" [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/17404 [19:01:41] ses1984 - I don't know; that's weird. I guess I was wrong. Yeah, not that hard to do in any case. [19:02:12] 03(mod) PHP Warning: Invalid argument supplied for foreach() in /www/w/includes/Uri.php on line 262 - 10https://bugzilla.wikimedia.org/39099 +comment (10Tyler Romeo) [19:03:29] New review: Trevor Parscal; "This doesn't solve the issue of not having a stack trace or line number. In browsers that support th..." [mediawiki/extensions/VisualEditor] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/18126 [19:04:36] 03(mod) Review WikidataRepo API (8) - 10https://bugzilla.wikimedia.org/38182 (10denny vrandecic) [19:04:37] 03(mod) Have separate API modules for changing labels and descriptions - 10https://bugzilla.wikimedia.org/38842 (10denny vrandecic) [19:04:37] 03(mod) Refine behavior of the wbsetitem API module - 10https://bugzilla.wikimedia.org/38843 (10denny vrandecic) [19:04:58] New patchset: Daniel Friesen; "Remove the default behaviour of "/index.php/Article" style urls." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17404 [19:05:07] New patchset: Parent5446; "Added account creation API." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18127 [19:05:36] 03(FIXED) Review WikidataRepo API (8) - 10https://bugzilla.wikimedia.org/38182 +comment (10denny vrandecic) [19:06:53] New patchset: Krinkle; "Fix ve.Error" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/18126 [19:07:30] Change merged: Bsitu; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18050 [19:07:32] New patchset: Kaldari; "Adding Learn more links (still waiting for final URLs)" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18128 [19:09:13] 03(NEW) New API module wblinktitles - 10https://bugzilla.wikimedia.org/39162 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [19:09:59] New patchset: Parent5446; "Added accessors to Message class." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17961 [19:11:36] New patchset: Parent5446; "Changed Status class to allow passing of Message objects." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17962 [19:12:01] New patchset: Parent5446; "Changed LoginForm::addNewaccountInternal() to return Status." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17952 [19:12:25] New patchset: Parent5446; "Added account creation API." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18127 [19:12:40] 03(FIXED) Investigate what is going wrong in the replication system between client and repo (8) - 10https://bugzilla.wikimedia.org/38957 +comment (10denny vrandecic) [19:13:30] 03(mod) Connect repository and client in our test systems - 10https://bugzilla.wikimedia.org/38172 (10denny vrandecic) [19:13:31] 03(mod) Refactor and clean the client (13) - 10https://bugzilla.wikimedia.org/38956 (10denny vrandecic) [19:13:40] 03(FIXED) Connect repository and client in our test systems - 10https://bugzilla.wikimedia.org/38172 (10denny vrandecic) [19:14:28] 03(FIXED) Dependence on ll_local (3) - 10https://bugzilla.wikimedia.org/38959 +comment (10denny vrandecic) [19:15:43] 03(mod) New API module wblinktitles - 10https://bugzilla.wikimedia.org/39162 (10jeblad) [19:15:50] 03(FIXED) add paramter to wbgetitems to make full url optional in the result (3) - 10https://bugzilla.wikimedia.org/37306 (10denny vrandecic) [19:17:03] New patchset: Parent5446; "Added accessors to Message class." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17961 [19:17:12] New patchset: Parent5446; "Changed Status class to allow passing of Message objects." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17962 [19:17:25] New patchset: Parent5446; "Changed LoginForm::addNewaccountInternal() to return Status." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17952 [19:17:33] 03(FIXED) Restructure API tests - 10https://bugzilla.wikimedia.org/38960 (10denny vrandecic) [19:18:21] 03(mod) remove mouse-over to display the edit links - 10https://bugzilla.wikimedia.org/37923 (10denny vrandecic) [19:18:24] 03(mod) Implement new Wikidata user interface design (tracking) - 10https://bugzilla.wikimedia.org/37771 (10denny vrandecic) [19:18:43] 03(ASSIGNED) remove mouse-over to display the edit links - 10https://bugzilla.wikimedia.org/37923 (10denny vrandecic) [19:18:49] 03(FIXED) remove mouse-over to display the edit links - 10https://bugzilla.wikimedia.org/37923 (10denny vrandecic) [19:19:22] 03(mod) Notification popups sometimes have a starlike background pattern - 10https://bugzilla.wikimedia.org/38965 (10denny vrandecic) [19:19:23] 03(mod) Implement new Wikidata user interface design (tracking) - 10https://bugzilla.wikimedia.org/37771 (10denny vrandecic) [19:19:33] 03(FIXED) Notification popups sometimes have a starlike background pattern - 10https://bugzilla.wikimedia.org/38965 (10denny vrandecic) [19:19:34] New patchset: Parent5446; "Added account creation API." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18127 [19:20:32] New review: Siebrand; "I havent checked where the URL is hidden, but you may want to put it in a message to allow it to be ..." [mediawiki/extensions/PageTriage] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18128 [19:22:32] 03raymond * 10/trunk/extensions/ (4 files in 4 dirs): Localisation updates from http://translatewiki.net. [19:26:39] 03(mod) Add Cameroon to the database - 10https://bugzilla.wikimedia.org/39163 (10Effeietsanders) [19:26:39] 03(mod) Tracking bug for sources that need to be added to the monuments database for Wiki Loves Monuments 2012 - 10https://bugzilla.wikimedia.org/38314 (10Effeietsanders) [19:27:35] New patchset: Subramanya Sastry; "Fixed parser bug handling excess '=' signs in headings." [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18177 [19:29:53] 03(mod) Add Ghana to the monuments database - 10https://bugzilla.wikimedia.org/39164 (10Effeietsanders) [19:29:53] 03(mod) Tracking bug for sources that need to be added to the monuments database for Wiki Loves Monuments 2012 - 10https://bugzilla.wikimedia.org/38314 (10Effeietsanders) [19:34:34] 03(mod) [Vector] Shift + enter in search box does not popup the search in a new browser tab or window - 10https://bugzilla.wikimedia.org/34756 +comment (10zlight) [19:36:01] 03(mod) Curation Toolbar Tag Wizards: Prompts and Text Boxes in Details Panels - 10https://bugzilla.wikimedia.org/38991 +comment (10Fabrice Florin) [19:36:31] 03(mod) Preference or default setting to open search result lists and suggestions in new tab - 10https://bugzilla.wikimedia.org/35974 summary (10zlight) [19:40:18] New patchset: Daniel Kinzler; "Undo and restore for items" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/17057 [19:40:55] New review: Brian Wolff; "This doesn't work (If I understand the change correctly of being using jsonp to do cross domain acti..." [mediawiki/extensions/UploadWizard] (master) C: -1; - https://gerrit.wikimedia.org/r/9718 [19:41:11] 03(mod) Add Egypt (not participating in 2012) to the database as far as available - 10https://bugzilla.wikimedia.org/39165 (10Effeietsanders) [19:41:11] 03(mod) Tracking bug for sources that need to be added to the monuments database for Wiki Loves Monuments 2012 - 10https://bugzilla.wikimedia.org/38314 (10Effeietsanders) [19:41:27] 03(mod) SimpleSearch should use native event handling (open link in or submit form to a new tab) - 10https://bugzilla.wikimedia.org/34756 summary (10Krinkle) [19:42:12] New patchset: Bsitu; "Personal note on user talk page" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18042 [19:42:14] 03(mod) Add Finland to the database - 10https://bugzilla.wikimedia.org/39166 (10Effeietsanders) [19:42:14] 03(mod) Tracking bug for sources that need to be added to the monuments database for Wiki Loves Monuments 2012 - 10https://bugzilla.wikimedia.org/38314 (10Effeietsanders) [19:43:22] 03(mod) Add sources to Wiki Loves Monuments 2012 monuments database (tracking) - 10https://bugzilla.wikimedia.org/38314 summary (10Krinkle) [19:43:30] 03(mod) Add Kazakhstan to the database - 10https://bugzilla.wikimedia.org/39167 (10Effeietsanders) [19:43:30] 03(mod) Add sources to Wiki Loves Monuments 2012 monuments database (tracking) - 10https://bugzilla.wikimedia.org/38314 (10Effeietsanders) [19:44:35] 03(mod) Add Kenya in English to the Database - 10https://bugzilla.wikimedia.org/39168 (10Effeietsanders) [19:44:36] 03(mod) Add sources to Wiki Loves Monuments 2012 monuments database (tracking) - 10https://bugzilla.wikimedia.org/38314 (10Effeietsanders) [19:44:49] Change abandoned: Krinkle; "(no reason)" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/18126 [19:45:36] 03(NEW) Add Mexico in Spanish to the database - 10https://bugzilla.wikimedia.org/39169 normal; Monuments database: Database; (effeietsanders) [19:45:42] 03(mod) Add Mexico in Spanish to the database - 10https://bugzilla.wikimedia.org/39169 (10Effeietsanders) [19:45:43] 03(mod) Add sources to Wiki Loves Monuments 2012 monuments database (tracking) - 10https://bugzilla.wikimedia.org/38314 (10Effeietsanders) [19:46:24] New patchset: Subramanya Sastry; "Added another parser test for headings." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18179 [19:46:58] New review: Krinkle; "Custom is possible without the problems, but it needs a proper implementation of the constructor fun..." [mediawiki/extensions/VisualEditor] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/18118 [19:46:58] Change merged: Krinkle; [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/18118 [19:47:42] 03(NEW) Add the relevant provinces in Russia to the database - 10https://bugzilla.wikimedia.org/39170 normal; Monuments database: Database; (effeietsanders) [19:47:49] 03(mod) Add the relevant provinces in Russia to the database - 10https://bugzilla.wikimedia.org/39170 (10Effeietsanders) [19:47:50] 03(mod) Add sources to Wiki Loves Monuments 2012 monuments database (tracking) - 10https://bugzilla.wikimedia.org/38314 (10Effeietsanders) [19:49:21] 03(NEW) Add USA - Maryland to the database - 10https://bugzilla.wikimedia.org/39171 normal; Monuments database: Database; (effeietsanders) [19:49:28] 03(mod) Add USA - Maryland to the database - 10https://bugzilla.wikimedia.org/39171 (10Effeietsanders) [19:49:28] 03(mod) Add sources to Wiki Loves Monuments 2012 monuments database (tracking) - 10https://bugzilla.wikimedia.org/38314 (10Effeietsanders) [19:50:13] 03(mod) Add Venezuela in Spanish to the database - 10https://bugzilla.wikimedia.org/39172 (10Effeietsanders) [19:50:14] 03(mod) Add sources to Wiki Loves Monuments 2012 monuments database (tracking) - 10https://bugzilla.wikimedia.org/38314 (10Effeietsanders) [19:52:11] 03(mod) Preference or default setting to open search result lists and suggestions in new tab - 10https://bugzilla.wikimedia.org/35974 +comment (10zlight) [19:57:58] Change merged: Bsitu; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18053 [19:59:46] New review: Jarry1250; "Per Nikerabbit, merge" [mediawiki/extensions/TranslateSvg] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/18046 [19:59:57] New review: Jarry1250; "Per Nikerabbit, merge" [mediawiki/extensions/TranslateSvg] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/18046 [19:59:57] Change merged: Jarry1250; [mediawiki/extensions/TranslateSvg] (master) - https://gerrit.wikimedia.org/r/18046 [20:06:17] 03(mod) Have search suggest results open in a new tab on middle click - 10https://bugzilla.wikimedia.org/17808 +comment (10zlight) [20:07:04] New review: Brian Wolff; "Its possible some people might be confused about how pages without sortkeys are processed in regards..." [mediawiki/core] (master) C: -1; - https://gerrit.wikimedia.org/r/9960 [20:07:28] New review: Demon; "If this isn't going to have any MediaWiki-specific code, I'd encourage moving it to /includes/libs/ ..." [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/16834 [20:07:53] New patchset: Umherirrender; "Fix title inside form on Special:ListFiles" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18180 [20:07:57] New patchset: John Erling Blad; "Added module for "wblinktitles" with a test for the creation and non-creation of items." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/16819 [20:09:50] New patchset: Reedy; "PHP Warning: Invalid argument supplied for foreach() in /www/w/includes/Uri.php on line 261" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18181 [20:10:00] New patchset: Parent5446; "Changed LoginForm::addNewaccountInternal() to return Status." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17952 [20:11:28] New patchset: Jarry1250; "Commit SVGFormatReader, cornerstone of TranslateSvg" [mediawiki/extensions/TranslateSvg] (master) - https://gerrit.wikimedia.org/r/18182 [20:12:54] ^ MaxSem: First commit I can genuinely say one can review without needing to know anything about Translate [20:13:32] I apologize for my noobness, but I'm running mediawiki 1.15 using Ubuntu 11.10 and I'm wondering: what is the relationship between /etc/mediawiki, /etc/mediawiki-extensions, and the root /var/lib/mediawiki? And where do I properly copy my LocalSettings.php file to update to mw 1.19? If someone could spare an answer or a link, I would appreciate it. [20:13:33] * MaxSem *looks* [20:14:53] MaxSem: Okay, so that doesn't make it easy to understand [20:14:56] :P [20:15:08] Change merged: Siebrand; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18181 [20:15:13] but difficult in a different way :) [20:15:16] 03(FIXED) Caching for phase I - 10https://bugzilla.wikimedia.org/36427 (10denny vrandecic) [20:15:19] Change merged: Mwalker; [mediawiki/core] (fundraising/1.20) - https://gerrit.wikimedia.org/r/17461 [20:16:47] 03(FIXED) PHP Warning: Invalid argument supplied for foreach() in /www/w/includes/Uri.php on line 262 - 10https://bugzilla.wikimedia.org/39099 +comment (10Tyler Romeo) [20:18:02] New patchset: IAlex; "Fix title inside form on Special:ListFiles" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18180 [20:18:33] New review: IAlex; "Ammendments:" [mediawiki/core] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/18180 [20:20:32] zyphex: did you try http://www.mediawiki.org/wiki/Upgrading ? [20:20:39] Change merged: IAlex; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18180 [20:21:05] New patchset: Bsitu; "Fixing some tag wizard stuff." [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/17977 [20:21:34] New review: Trevor Parscal; "As per discussion on other channels:" [mediawiki/extensions/VisualEditor] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/17930 [20:21:57] zyphex: if you are using an Ubuntu MediaWiki package, then it may have its own upgrade procedure, with which I am not familiar. [20:21:58] Change merged: GWicke; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18179 [20:22:32] 03(FIXED) Use .done() instead of .then() when adding success-handlers on Promise objects - 10https://bugzilla.wikimedia.org/37982 +comment (10denny vrandecic) [20:24:22] New review: GWicke; "Classic ;)" [mediawiki/extensions/Parsoid] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/18177 [20:24:45] New patchset: Kaldari; "Updating CentralNotice ext to master minus 1" [mediawiki/core] (wmf/1.20wmf8) - https://gerrit.wikimedia.org/r/18183 [20:25:13] Change merged: Kaldari; [mediawiki/core] (wmf/1.20wmf8) - https://gerrit.wikimedia.org/r/18183 [20:25:51] New patchset: Bsitu; "Fixing some tag wizard stuff." [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/17977 [20:26:32] Reedy: -2 in Gerrit is sticky (doesn't reset after new patch version) https://gerrit.wikimedia.org/r/#/c/17455/ [20:26:40] still on? [20:27:04] Krinkle: yeah so someone doesn't accidentally submit it ;) [20:27:10] sure [20:27:20] Tests break [20:28:52] 03(NEW) Special page for pages without labels in a given language - 10https://bugzilla.wikimedia.org/39173 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [20:28:58] Change merged: Bsitu; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/17977 [20:29:06] New review: Reedy; "bug 39156 logged for the broken tests" [mediawiki/core] (master); V: 0 C: -2; - https://gerrit.wikimedia.org/r/17455 [20:30:30] 03(NEW) Wikidata repo MW API tracking bug - 10https://bugzilla.wikimedia.org/39174 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [20:30:30] 03(mod) Tracking bug (tracking) - 10https://bugzilla.wikimedia.org/2007 (10denny vrandecic) [20:32:08] 03(NEW) Discuss the layout of the labels and descriptions - 10https://bugzilla.wikimedia.org/39175 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [20:32:56] 03(FIXED) tab button doesn't work correctly for none Latin languages - 10https://bugzilla.wikimedia.org/38192 (10denny vrandecic) [20:34:47] Thank you aharoni, yes I tried the upgrade link, it's more general in nature and it breaks the ubuntu install.. I may just backup and start fresh [20:36:17] Sorry, I use Ubuntu, but I run MediaWiki from the source and don't know anything about Ubuntu packages. [20:38:38] 03(mod) Use ULS on WikidataRepo test system - 10https://bugzilla.wikimedia.org/39135 (10denny vrandecic) [20:38:39] zyphex: If you ask me, it's quite easy to install manually on your web server without apt-get. Just unzip the tarball on your webserver... and that's about it. [20:39:27] 03(mod) Test the replication of links from repo to client - 10https://bugzilla.wikimedia.org/39137 (10denny vrandecic) [20:40:12] New patchset: Pgehres; "Adding forms that will only ask for the donor's name and email to test whether or not asking for more information than we need hurts the overall conversion rate for the second step forms." [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/17457 [20:41:29] 03(mod) Discuss the layout of the labels and descriptions - 10https://bugzilla.wikimedia.org/39175 (10denny vrandecic) [20:43:11] 03(NEW) Specify Item class for the JS API - 10https://bugzilla.wikimedia.org/39176 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [20:44:03] 03(NEW) Item class and JS In-Browser API - 10https://bugzilla.wikimedia.org/39177 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [20:44:03] 03(mod) Specify Item class for the JS API - 10https://bugzilla.wikimedia.org/39176 (10denny vrandecic) [20:44:17] aharoni, I did that - first it couldn't find LocalSettings when I ran update.php (which is located in /etc/mediawiki and not /var/lib/mediawiki) and then I copied it over and ran it again and it broke. Do I need to run update.php? [20:44:49] 03(mod) Specify Item class for the JS API - 10https://bugzilla.wikimedia.org/39176 (10denny vrandecic) [20:44:49] 03(mod) Design JavaScript API for item (5) - 10https://bugzilla.wikimedia.org/38174 (10denny vrandecic) [20:45:06] This is why we have: [20:45:10] !package [20:45:10] Many Linux distributions provide MediaWiki in a packaged format for that distribution. These packages typically contain obsolete and unsupported versions of MediaWiki, also they like to move around files, change the files, and do other batshit insane things. You'll get the best support here if you install MediaWiki directly from one of our tarballs, available at http://www.mediawiki.org/ [20:45:25] New patchset: Pgehres; "Adding $wgDonationInterfaceFormMap for testing and development of new first-step forms." [mediawiki/core] (fundraising/1.20) - https://gerrit.wikimedia.org/r/18184 [20:45:34] reedy++ [20:45:46] 03(NEW) Switch the Repo JS to use the new Item JS Classes - 10https://bugzilla.wikimedia.org/39178 normal; MediaWiki extensions: WikidataRepo; (denny.vrandecic) [20:45:47] 03(mod) Item class and JS In-Browser API - 10https://bugzilla.wikimedia.org/39177 (10denny vrandecic) [20:45:52] Reedy I have since repented in my ways of apt-getting the repo version [20:45:59] 03(mod) Specify Item class for the JS API - 10https://bugzilla.wikimedia.org/39176 (10denny vrandecic) [20:46:46] New patchset: Jarry1250; "Reimplement updated interface messages via JavaScript [Phase 1]" [mediawiki/extensions/TranslateSvg] (master) - https://gerrit.wikimedia.org/r/12469 [20:47:34] marktraceur: Think I've fixed all your comments in https://gerrit.wikimedia.org/r/#/c/12469/ , perhaps you could verify? [20:49:53] New patchset: Jarry1250; "Commit TranslateSvgUtils, a collection of helper functions." [mediawiki/extensions/TranslateSvg] (master) - https://gerrit.wikimedia.org/r/16891 [20:50:52] New patchset: Bsitu; "remove Object.keys() function" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18185 [20:51:46] Change merged: Mwalker; [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/17457 [20:54:05] New patchset: GWicke; "Added giant header comment in serializer + bug fix." [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18052 [20:54:33] New patchset: Krinkle; "Kranitor #2: Pass JSHint on resources/mediawiki/*" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/16718 [20:54:50] New review: Krinkle; "* Addresses inline comments" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/16718 [20:57:25] marktraceur: Actually, I have to go, but perhaps you could reply via review there? Thanks. [20:59:00] New patchset: Jarry1250; "SVGMessageGroup: override getSourceLanguage(), add getOnWikiLanguages()" [mediawiki/extensions/TranslateSvg] (master) - https://gerrit.wikimedia.org/r/16894 [21:02:55] New patchset: Amire80; "(bug 38718) Add an interwiki prefix when posting to other wiki" [mediawiki/extensions/TranslationNotifications] (master) - https://gerrit.wikimedia.org/r/18186 [21:04:11] 03(FIXED) Adding Labsdebrepo role causes Puppet to complain about missing directory - 10https://bugzilla.wikimedia.org/39123 +comment (10Ryan Lane) [21:05:52] 03(mod) Notification in other wiki has broken link - 10https://bugzilla.wikimedia.org/38718 +comment (10Amir E. Aharoni) [21:18:20] Change merged: Subramanya Sastry; [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18052 [21:18:35] http://en.wikinews.org/w/index.php?title=Thread%3AComments%3ASaudi_Arabian_women_gain_right_to_vote%2C_run_in_elections%2FComments_from_feedback_form_-_%22I_swear...%22&diff=1579551&oldid=1293010 has got to be a bug [21:18:57] 03(mod) Some IPs hidden without any log or apparent reason on frwiki - 10https://bugzilla.wikimedia.org/35578 +comment (10matanya) [21:19:02] New review: Katie Horn; "This can't be deployed until at least the comment in donationinterface.php is addressed." [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/18055 [21:19:25] LQT looks completely broken [21:25:44] New patchset: Subramanya Sastry; "Fixed parser bug handling excess '=' signs in headings." [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18177 [21:25:49] New patchset: Massaf; "Add milestone display + event tracking" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/18122 [21:26:51] New review: Subramanya Sastry; "Self-merging since this new patch is just a rebase of a previously approved patch." [mediawiki/extensions/Parsoid] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/18177 [21:26:51] Change merged: Subramanya Sastry; [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18177 [21:36:35] New patchset: Massaf; "Add milestone display + event tracking" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/18122 [21:37:44] New patchset: Pgehres; "Addressing Katie's comments from I61aedf95." [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/18187 [21:37:49] New review: CSteipp; "I've tested a few scenarios, and this seems to work in all of them. With the ipb_address key, there ..." [mediawiki/core] (master) C: 1; - https://gerrit.wikimedia.org/r/17945 [21:38:35] ori-l: שלום [21:38:41] 03(mod) Allow caching for Revision::newFromTitle to reduce database load - 10https://bugzilla.wikimedia.org/37030 +comment (10Asher Feldman) [21:38:51] My google WMF account doesn't work for Phabricator. [21:38:59] aharoni: מה המצב [21:39:03] tried both aaharoni and aaharoni@wikimedia.org [21:39:49] welcome to #mediawiki-he ;-) [21:40:10] aharoni: hrm. odd. just a second. [21:40:24] New patchset: Massaf; "Fix PEF container reference" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/18188 [21:40:43] ori-l: and if I try the forgot password link, it says "There is no account associated with that email address." [21:41:05] aharoni: antisemitism! :P [21:41:12] aharoni: I'm checking -- no idea, to be honest [21:41:35] Change merged: GWicke; [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18117 [21:41:57] New patchset: Kaldari; "Making all en.wiki tag messages optional" [translatewiki] (master) - https://gerrit.wikimedia.org/r/18189 [21:43:20] aharoni: you're using """Login or Register with Google""" ? [21:44:30] Oh. [21:44:37] That wasn't clear from the email. [21:44:39] Now it works. [21:45:02] ori-l: ^ [21:45:22] aharoni: i agree and what you actually did is scary ;-( [21:45:42] I was working with JuanDev yesterday on a massively spammed wiki where I'm assistant manager [21:45:48] jeremyb: what i did or what he did? [21:45:52] aharoni: sorry for being unclear [21:46:08] I got Nuke to work, but there are literally thousands of fake users [21:46:09] ZOMFG PHABRICATOR CAN HAZ MY WMF PASWORD [21:46:12] ori-l: well both. but the part about sending your passwd to an untrusted machine [21:46:13] No problem :) [21:46:25] jeremyb: oauth! [21:46:42] ori-l: err, how is that relevant? [21:46:48] You cannot just delete articles, you have to find the username and then delete all articles by that user, and most of these fake users have only one or two articles each. [21:46:48] this is google auth [21:47:04] anyway, someone should send a followup email [21:47:17] Change merged: Katie Horn; [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/18187 [21:47:35] jeremyb: provided you use the "login or register with google" link, you send your credentials to google, not to this machine [21:47:44] Received an email from Phabricator: [21:47:45] Is there any way to wipe out the database or wipe out those articles without having to re-install the wiki? The woman who owns it is not up to the task, she wants to step back and maintain it financially while I do the technical things [21:47:47] jeremyb: but i'll follow up, if it confused one person it is likely to confuse others [21:47:48] "Hi amire80, Please verify that you own this email address..." [21:47:52] bla bla bla [21:47:59] ori-l: but you shouldn't have to know which to use. it should be abundantly clear [21:48:01] Get Well Soon, Phabricator [21:48:11] "Get Well Soon"? [21:48:17] aharoni: phabricator has a sense of humor [21:48:20] ori-l: it didn't confuse me but i was concerned even before i opened the page [21:48:28] jeremyb: i'll try to disable other forms of authentication [21:49:27] ori-l: there should just be one section labeled WMF google accounts and one labeled StevenW made me an account. that's all ;) [21:49:28] It's far better than Gerrit's "I prefer that you didn't submit this". (That was one of the first things that we changed in our Gerrit setup.) [21:50:14] FYI, the email is a checkbox in the account creation interface, so if we want the norm to be no email that works [21:50:34] New patchset: Bsitu; "Personal note on user talk page" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18042 [21:50:48] jeremyb: okay, disabled regular user/pass auth [21:51:08] jeremyb: now you have to use the googles [21:51:20] i just obsoleted StevenW, someone please forward me his paycheques [21:51:31] ori-l: well i don't want that either... [21:51:37] I don't get paycheques [21:51:41] I get paychecks [21:51:45] does it have to be a WMF account? or will any Google account work? [21:51:52] New patchset: Kaldari; "Adding tooltips to the curation toolbar buttons." [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/16556 [21:52:09] i don't want to link it to the google account that i'm typically logged into [21:52:19] Change merged: Kaldari; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/16556 [21:52:35] and google does some stupid things with my account [21:52:37] ;-( [21:52:43] jeremyb: i'm not spending any more time on this at the moment -- got several other commitments -- but keep in mind that this is a very limited trial run, not a new code review setup. [21:52:48] aharoni, I just checked, any google account works [21:52:57] ori-l: yeah... [21:53:12] i think there's no way to use the email i would actually want to use for a google account [21:53:59] ori-l: do you mind if i tweak the logins? [21:54:08] page [21:54:12] New patchset: Bsitu; "Personal note on user talk page" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18042 [21:55:27] jeremyb: can we live it as is for a bit? i'd rather think this through with you and i don't have the time atm [21:55:34] New patchset: GWicke; "Template encapsulation algorithm" [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18064 [21:55:44] ori-l: yeah [21:55:52] ori-l: is it supposed to have any actual repos? [21:56:06] New patchset: GWicke; "Template encapsulation algorithm" [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18064 [21:56:14] jeremyb: if you're confident what you have in mind is better, than go for it [21:56:34] ori-l: i would just restore it how it was but change the labels [21:57:13] aharoni: only ones you add. [21:57:27] i restored it; go ahead and change the labels [21:57:43] let's see if i can figure out how ;P [21:58:02] OK, it's 1 AM here. But I'll play with it tomorrow. Good night. [21:58:22] layla tov [22:03:24] 03(mod) VisualEditor: Creating link over an existing link is broken - 10https://bugzilla.wikimedia.org/37820 +comment (10MZMcBride) [22:04:37] 01I was working with JuanDev yesterday on a massively spammed wiki where I'm assistant manager01 - Most of the articles are spam. 01Is there any way to wipe out the database or wipe out those articles without having to re-install the wiki?01 [22:05:17] New patchset: Kaldari; "Fixing z-index for monobook :P" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18190 [22:05:40] Change merged: Kaldari; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18190 [22:09:00] New patchset: Kaldari; "Fixing param labels in Deletion Wizard and removing non-functional (and unneeded) param functionality" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18058 [22:09:13] Change merged: Kaldari; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18058 [22:16:50] New patchset: Trevor Parscal; "Added basic ve.dm.SurfaceFragment class" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/17369 [22:17:55] New patchset: Trevor Parscal; "This should never happen, but if it does, lets make sure we know" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/18191 [22:17:57] 03(NEW) Tracking Sanitizer TODOs - 10https://bugzilla.wikimedia.org/39179 normal; Parsoid: CPP/DOM; (ssastry) [22:19:37] New patchset: Drecodeam; "Implement uploading images from Flickr" [mediawiki/extensions/UploadWizard] (master) - https://gerrit.wikimedia.org/r/12269 [22:20:07] 03(mod) User name blacklist should be managed globally to avoid SUL fragmentation - 10https://bugzilla.wikimedia.org/36939 +comment (10MZMcBride) [22:20:28] 14(DUP) E-Mail with notification about a new thread has a link with a wrong offset - 10https://bugzilla.wikimedia.org/23503 +comment (10Nemo_bis) [22:20:28] 03(mod) Provide direct links to threads, not links with offset which break horribly - 10https://bugzilla.wikimedia.org/34247 +comment (10Nemo_bis) [22:20:35] New review: Adamw; "The blocker is the function signature for onFilter: you'll be getting a Gateway_Extras_CustomFilters..." [mediawiki/extensions/DonationInterface] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/17895 [22:21:46] New review: Adamw; "whoa, you were two steps ahead of me! Now I see the explicit call to your onFilter." [mediawiki/extensions/DonationInterface] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17895 [22:22:16] argh [22:22:30] Should I just wait for JuanDev to return? [22:23:54] 03(mod) Update jquery.autoEllipsis to work with jQuery 1.8 - 10https://bugzilla.wikimedia.org/39155 +comment (10Krinkle) [22:24:42] 03(mod) Pages with at least an image - 10https://bugzilla.wikimedia.org/38394 +comment (10Nemo_bis) [22:26:49] 03(mod) Update jquery.tablesorter to work with jQuery 1.8 - 10https://bugzilla.wikimedia.org/39156 +comment (10Krinkle) [22:27:05] New patchset: Bsitu; "Changing cron to remove articles that are 60 days old rather than no activity for 60 days" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/17906 [22:28:30] ori-l: "MarkTraceur will administer this machine" I feel like there should have been an "also" in there somewhere? I haven't touched the machine yet :) [22:29:03] Change merged: Katie Horn; [mediawiki/core] (fundraising/1.20) - https://gerrit.wikimedia.org/r/18184 [22:29:10] marktraceur: you'll do just fine :) [22:29:22] marktraceur: p.s., it's on fire and ddosing wikipedia -- fix it now! [22:29:32] j/k [22:30:08] ori-l: I'm sure I can handle some things, but even so, I'm not "officially" on this to the best of my knowledge [22:32:11] hah, staticator [22:32:28] ori-l: any reason not to have UTC times like all the rest of our tools? [22:32:37] (BZ, gerrit) [22:33:57] New patchset: GWicke; "Disable ISBN checksum checking in tokenizer" [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18192 [22:39:09] 03(mod) Make the title blacklist allow auto creations for global accounts - 10https://bugzilla.wikimedia.org/33429 +comment (10MZMcBride) [22:39:11] <^demon> Jordan_: You could try Extension:Nuke. [22:40:02] ^demon: thanks, tried that, you have to enter the username of the person who made the fake entries... [22:40:48] and because there are thousands of these fake users, and each one created one or maybe two fake entries, it's just as time consuming as if I were to go through the entire blog and keep pressing the delete this entry link for each entry. [22:40:54] <^demon> Well, I guess you could just truncate all of the database tables, but at that point you might as well reinstall. [22:41:43] ^demon: yeesh -- I was trying not to reinstall, because I didn't install it in the first place, the owner did [22:42:03] 03(mod) Pages with at least an image - 10https://bugzilla.wikimedia.org/38394 +comment (10MZMcBride) [22:43:32] 03(mod) Update jquery.tablesorter to work with jQuery 1.8 - 10https://bugzilla.wikimedia.org/39156 +comment (10Krinkle) [22:43:46] 03(mod) Update jquery.tablesorter to work with jQuery 1.8 - 10https://bugzilla.wikimedia.org/39156 +comment (10Krinkle) [22:45:18] does Nuke not support the API? [22:45:21] 03(mod) Pages with at least an image - 10https://bugzilla.wikimedia.org/38394 +comment (10Nemo_bis) [22:45:57] 03(mod) Update jquery.tablesorter to work with jQuery 1.8 - 10https://bugzilla.wikimedia.org/39156 +upstream (10Sam Reed (reedy)) [22:46:26] Yay [22:46:46] jeremyb: "support"? [22:47:01] Does it not have an api module do you mean? [22:47:14] Reedy: can one Nuke by making an API call? [22:47:17] 03(mod) Update jquery.autoEllipsis to work with jQuery 1.8 - 10https://bugzilla.wikimedia.org/39155 +comment (10Trevor Parscal) [22:47:46] No [22:48:46] Well, I wrote to the owner -- we'll see what she says [22:48:47] thanks [22:50:54] 03(NEW)
does not round-trip correctly - 10https://bugzilla.wikimedia.org/39181 normal; Parsoid: JS/serialiser; (roan.kattouw) [22:56:11] New patchset: Trevor Parscal; "Added basic ve.dm.SurfaceFragment class" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/17369 [23:04:48] New patchset: Kaldari; "Adding Learn more links to flyouts" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18128 [23:08:33] New patchset: Trevor Parscal; "Added basic ve.dm.SurfaceFragment class" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/17369 [23:10:18] 03(mod) User name blacklist should be managed globally to avoid SUL fragmentation - 10https://bugzilla.wikimedia.org/36939 +comment (10Victor Vasiliev) [23:13:40] Change merged: Kaldari; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18056 [23:19:12] New review: Ori.livneh; "icon-50-edits is a PSD file, not a PNG. Is that intentional?" [mediawiki/extensions/E3Experiments] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18119 [23:20:23] Change merged: Kaldari; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18185 [23:21:24] New review: Oren; "can I see this live somewhere ?" [mediawiki/extensions/E3Experiments] (master) C: 1; - https://gerrit.wikimedia.org/r/18121 [23:26:50] Change merged: Bsitu; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/17906 [23:33:11] 03(ASSIGNED) Create a maintenance script to convert oversighted content to suppressed with revision deletion, and the corresponding log entries too - 10https://bugzilla.wikimedia.org/18598 +comment (10Krenair) [23:34:14] 03(mod) API should use status codes for errors - 10https://bugzilla.wikimedia.org/38716 +comment (10Jon) [23:34:16] New review: Bsitu; "@Siebrand" [mediawiki/extensions/PageTriage] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/18128 [23:34:16] Change merged: Bsitu; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/18128 [23:36:22] 03(NEW) ImageFetcher doesn't fetch images for all monuments in list - 10https://bugzilla.wikimedia.org/39182 normal; WikiLoves Monuments Mobile: General; (jrobson) [23:37:18] New patchset: Catrope; "Add ve.dm.BreakNode to represent
" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/18195 [23:37:33] New patchset: Catrope; "Strip leading and trailing whitespace in text" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/18196 [23:37:51] New patchset: Ryan Lane; "Fix how passwords are set to null. Up version to 2.0b." [mediawiki/extensions/LdapAuthentication] (master) - https://gerrit.wikimedia.org/r/18197 [23:39:10] Change merged: Catrope; [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/18191 [23:42:11] New patchset: GWicke; "Round-trip ISBN links and update RDFa types for ExtLinks" [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18199 [23:44:29] 03(NEW) Template parsing bug - 10https://bugzilla.wikimedia.org/39183 normal; Parsoid: JS/token-stream transforms; (ssastry) [23:44:35] New review: Krinkle; "Thanks IAlex, and welcome to the core reviewer team!" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18066 [23:46:39] New patchset: GWicke; "Update runtests to use current wt2wt flag" [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18200 [23:46:58] New review: GWicke; "Trivial, so self-reviewing" [mediawiki/extensions/Parsoid] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/18200 [23:46:59] Change merged: GWicke; [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18200 [23:50:44] New review: Kaldari; "I would suggest using the placeholder attribute for the note suggestion. It isn't supported in older..." [mediawiki/extensions/PageTriage] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/18042 [23:51:51] New review: Krinkle; "The description is definitely not part of the title and should not be considered part of the title. ..." [mediawiki/core] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/17073