[00:09:43] 03demon * r50674 10/trunk/phase3/includes/Preferences.php: Rm unused $wgLang and some trailing whitespace. [00:23:56] 03(mod) Enable Abuse Filter on nl-wikipedia - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18812 +comment (10andre) [00:26:28] 03(mod) Allow not asking users their gender - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18761 +comment (10innocentkiller) [00:26:36] 03(mod) Allow not asking users their gender - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18761 +patch (10innocentkiller) [00:38:49] 03(mod) Oversight failure on enwiki - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18817 +comment (10mikelifeguard) [00:57:27] 03(mod) Oversight failure on enwiki - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18817 major->normal (10Prodego) [01:03:02] hola. [01:03:37] i am editing for the first time my LocalSettings.php [01:03:40] i want to Disable anonymous editing [01:03:56] so i am adding at the end $wgWhitelistEdit = true; [01:04:15] !preventingaccess | kingturtle [01:04:15] --mwbot-- kingturtle: For information on preventing access to your wiki, please see . [01:04:21] by "at the end" does that mean after $wgCacheEpoch = max( $wgCacheEpoch, gmdate( 'YmdHis', @filemtime( __FILE__ ) ) ); ?? [01:04:26] read [01:04:51] i've read it. i am just asking about where to place the text [01:05:06] this is the first time i've ever edited a wiki .php file [01:05:10] $wgWhitelistEdit has been removed in recent versions [01:05:26] what version are you using? [01:05:26] oh right. it should be $wgGroupPermissions['*']['edit'] = false; [01:05:30] exactly [01:05:39] and you would place it at the bottom of the file [01:05:49] so that nothing else is after it? [01:05:54] it doesn't matter [01:06:06] then why the bottom at all? just curious [01:06:30] it needs to be under the line "require_once("$IP/includes/DefaultSettings.php");" or else the default setting would overwrite it [01:06:55] so we say "at the bottom" to ensure that it is indeed under that particular line [01:07:10] although it doesn't matter where you place it in the file as long as it is indeed under that line [01:07:23] no where in my LocalSettings file does it say require_once [01:08:05] it should [01:08:15] line 25 or around there [01:08:34] oh i see it. [01:09:03] lines that start with # are just for notes? [01:09:05] Ctrl+f [01:09:16] lines that start with # are comments [01:09:21] as are lines that start with // [01:09:29] and lines contained within /* */ [01:09:34] ok. thank you. i realize my questions are base. but this is my first time with these files. [01:09:43] no problem [01:09:54] just try not to think too far into it :) [01:10:07] ty [01:10:27] just make sure that a) the lines you are adding are below that line I mentioned above, and b) every line you add ends with a semicolon [01:11:20] the semicolons are usually provided in the examples, so you don't need to worry much about that either [01:24:03] is there some reason why a weblink with varable content in a template wont work [01:24:06] ie [01:24:13] [{{{3}}}|{{{2}}} {{{4}}}] [01:27:06] no, it should be putting everything in that way -- can you give an example? [01:27:08] eadthem: check your syntax, it looks rather wrong [01:27:25] you mean [{{{3}}} {{{2}}} {{{4}}}] instead [01:27:32] 3 is the link 2 and 4 are the name [01:27:33] probably, yes [01:27:37] yes [01:27:46] You put double links in, right? [[{{{3}}}|{{{2}}} {{{4}}}]] [01:27:51] when i do that it treats 2 as the link ignores 3 and the name is 4 and 5 [01:27:53] the pipe is for the link title on /internal/ links, not external links [01:28:11] show me where? [01:28:12] yeah [01:28:15] double is for wiki internal only single is for external or is that diffrent in templates [01:28:24] one sec [01:29:51] http://www.reactos.org/wiki/index.php/Template_talk:AppEntry [01:30:20] http://www.reactos.org/wiki/index.php/Template:AppEntry [01:31:33] ive not tryed double but if thats the way it is for templates ile try it [01:33:35] ideas? [01:35:17] eadthem: http://meta.wikimedia.org/wiki/User_talk:Mike.lifeguard/templatething [01:35:44] the "template" is http://meta.wikimedia.org/wiki/User:Mike.lifeguard/templatething [01:36:20] so you need #=value [01:36:28] assumed positions dont work [01:36:36] if you do it right... maybe not [01:36:38] let's try [01:37:22] works: http://meta.wikimedia.org/w/index.php?title=User_talk%3AMike.lifeguard%2Ftemplatething&diff=cur&oldid=prev [01:38:19] 03(mod) Divulge Bugzilla formatting language - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18778 (10jidanni) [01:39:00] mind if i try something [01:39:30] ros did some modding to there wiki seeing this work i want to try this on wikimeda [01:40:07] *Mike_lifeguard stabs wikibugs for bringing him bad news [01:40:32] 03(mod) Divulge Bugzilla formatting language - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18778 (10jidanni) [01:40:44] he needs help [01:40:56] in calls: = is delimiter twixt parameter name and value, | is delimiter between template name and parameters. in external links: space is usual delimiter (but other things can be too, such as <>) between link and text, and in internal links it is the pipe [01:41:38] 03(mod) Divulge Bugzilla formatting language - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18778 (10mikelifeguard) [01:41:50] so {{foo|http://google.com|text}} will have [{{{1}}} {{{2}}}] as text, but... {{foo|http://www.google.com/search?q=google|text}} won't work [01:42:10] because that will try to get a parameter named {{{http://www.google.com/search?q}}} with value "google" [01:43:00] so anytime you have a parameter that will generally have links in it, best to name it like link= {{{link}}} [01:43:46] bbl [01:49:44] Mike_lifeguard perhaps its the table container thats causing the problem [01:50:02] as its got the same problems on wikimedia [02:10:27] anyone have any ideas on that [02:11:07] eadthem: sorry, got distracted nuking someone's socks [02:11:13] np [02:11:51] why is the edit box on your wiki like 20px tall? O.o [02:12:09] dont know [02:12:18] ros did there own mods and tbh they boched some stuff [02:12:26] i reporduced the problem on your talk page [02:12:38] so the line |[{{{3}}}|{{{2}}} {{{4}}}]{{#if: {{{5}}} | [{{{5}}} site] | }} should be the link right? [02:12:51] 2 links if 5 isnt blank [02:13:04] http://meta.wikimedia.org/wiki/User_talk:Mike.lifeguard/templatething [02:14:47] Does this look like it's supposed to? http://meta.wikimedia.org/w/index.php?title=User_talk:Mike.lifeguard/templatething&action=purge [02:15:05] ya [02:15:13] what was the diffrence [02:15:17] k, it's just because you're using wrong syntax [02:15:52] for external links the syntax is [http://link.domain.tld Here is where you specify what the link should say, separated from the link by a space because a space is never ever valid in a URL] [02:16:33] but you can have | which occurs in some URLs - so that can't be a valid way to split it up, though it is used for internal links [02:16:45] since | is never a valid character in internal links [02:16:54] so, I'll just change it from a | to a space [02:18:30] you also have funny spacing going on... [02:22:25] ya still dont know why the code boxes appeared [02:24:22] Template talk:AppEntry looking better now? I'm not sure what the VMWA:somebugBug 0 VBOX:None bit it supposed to look like though [02:24:55] so the fix is it needs = in it [02:25:18] also I changed the link syntax in the template itself [02:27:58] so it simply wont work without the = [02:28:43] right [02:30:40] bug in mediawiki? [02:31:50] thanks for your help btw [02:32:26] but theres no point in this template if i got to keep the = it was supost to make it simpler than the current system with them its going to make it all alot more complated [02:33:35] btw what is the {{{11|}}} for ie compared to {{{11}}} [02:54:34] eadthem: {{{parameter|default value}} [02:54:35] } [02:54:47] it just saves you using {{#if...}} unnecessarily [02:54:51] ic [02:55:17] Say a template includes {{{11}}} [02:55:21] 03(mod) Add Extension:SecurePoll to bugzilla - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18269 +comment (10rohde) [02:55:28] If 11= isn't given, then the text shows {{{11}}} [02:55:32] Say a template includes {{{11|}}} [02:55:39] If 11= isn't given, then nothing shows up [02:55:48] ic [02:59:40] wow so matter what you elimnate even 1 = sign and it all goes to shit [03:00:24] ya this templates uselss till the bug is fixed whats the best way to report a template type bug [03:01:04] post the templates on my mediawiki talk and the code in the bug + a link to the talk? [03:05:11] im not even shure what to search for for thsi bug on the bug tracker [03:08:52] EN: Database error A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was: (SQL query hidden) from within function "Revision::insertOn". MySQL returned error "1205: Lock wait timeout exceeded; Try restarting transaction (10.0.6.22) \o/ [03:09:35] quick question. when adding $wgGroupPermissions['*']['createaccount'] = false; [03:09:47] does that go at the end of LocalSettings.php? [03:10:16] it can go anywhere in the local settings, although most people put additional settings to the end of it [03:10:33] what does the wg stand for? [03:11:23] as in $wg [03:11:53] Mike_lifeguard would you say this bug is related or is the same https://bugzilla.wikimedia.org/show_bug.cgi?id=529 [03:11:56] wikipedia global, IIRC [03:12:00] im thinking its a bit fuzzy [03:12:26] sounds the same and yet it dosent [03:12:58] I don't really know if that's a bug per se, but yes, that'd be the same [03:13:59] well the way its supost to work the order you pass the paramiters defines the number the paramiter is [03:14:10] whats happing is not that [03:14:22] unless you set each paramiter = to its number [03:14:33] oh, no, that's different [03:15:37] and... for param 3 (the URL) it definitely isn't a bug... for the other parameters it might be an enhancement request, but not really a bug [03:15:45] well i mean im shure someone els has found the same bug [03:15:51] that wasnt that complex of a template [03:15:57] probably [03:16:25] how is it not a bug if i remove the equils on any of the paramiters it shuld still work [03:16:38] but instead the order changes or it forgets the paramiter all together [03:17:20] \o/ srsly, I can't save to talks; A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was: (SQL query hidden) from within function "oaiUpdatePage". MySQL returned error "1205: Lock wait timeout exceeded; Try restarting transaction (10.0.6.22)". [03:17:36] chzz: #wikimedia-tech and complain louder :) [03:17:47] ty michi_cc [03:18:00] erm michi_cc sorry ping Tabfail;;; Mike_lifeguard ty [03:18:06] no problem [03:19:13] eadthem: it's not really a bug... without the equals sign, you're saying that you have a parameter called "http://google.com?q" with a value of "whatever" instead of parameter 2 with a value of "http://google.com?q=whatever" [03:19:17] that's not a bug [03:19:49] it is more like a case of "I want the wiki to do what I want instead of what I say" but computers don't work like that [03:19:59] never needed to define the name of a paramiter before [03:20:31] that's because your values probably never included an equals sign before [03:20:35] if you only defined the varable it alwase has just assumed first paramiter named 1 second paramiter named 2 and so on [03:20:44] you showed that yourself [03:20:53] ooo [03:21:09] but if you have an equals in there... that changes things [03:21:19] wholy never thougt of that before [03:22:35] so then it would be enchancment [03:22:51] ignore equals in a passed varable when its a url [03:23:00] or similar [03:23:28] see http://meta.wikimedia.org/wiki/User_talk:Mike.lifeguard/templatething for a test case that proves what I'm saying [03:24:30] but you can't just do that... what if the parameter is actually called "http://google.com?q" -- I don't know if it's safe to assume that the wiki knows better than the user what the user wants... Microsoft tried that once... :P [03:24:49] ya [03:25:52] it actually is 100% valid to have a parameter by that name... so we probably shouldn't break that [03:26:29] mmm this is why i hate templates sometimes its like trying to code with http://en.wikipedia.org/wiki/Brainfuck#Hello_World.21 [03:26:53] or least it feals that way after bashing your head for 4 hours and realiseing it was your own bloddy falult all along :p [03:29:51] I know the feeling :D [03:30:39] when they orignaly wrote the wiki software and syntax they never orignaly thogut of templates right [03:30:57] No shit. :P [03:31:11] k cus that would answer alot of questions [03:31:13] The entire syntax is hella retarded. [03:31:40] i mean its got alot of power but well ya know [03:31:54] how do i change what is in the toolbox in my wiki? [03:32:09] ya thats a question ive been wondering my self [03:32:20] !toolbox [03:32:20] --mwbot-- See , also have a look at [03:32:28] Huh, that's useless. [03:32:29] i assuemd it was a specal page but never could find it im not totaly convenced all the specal pages are written down [03:33:24] btw template varables are they case insensitive? [03:33:39] Nope. [03:34:05] how do i get to my Common.js to edit it? [03:38:32] it's basically a nightmare, yes [03:38:40] Is there a way to use a variable number of parameters in a template? I'm making an infobox, but I kind of want the ability to add arbitrary headers/rows. [03:42:58] jtbandes i tryed that at first on this simple little template [03:43:03] i beleve there is such a command to do that [03:43:19] Do you know what it is? [03:43:23] i beleve that it was once documented and someone deleted the documentation for it or it was never documented [03:43:28] and i dont rember how to do it [03:43:45] i can only think that ive seen it done somewhere [03:44:29] if anyone knows of it mike dose btw thanks Mike_lifeguard [03:47:06] how do i get to my Common.js to edit it? [03:47:58] kingturtle I don't know - why don't you ask the same thing again, just in case I suddenly remember? [03:48:33] well you can do it manualy in your skins folder [03:53:03] "For adding more toolbar buttons above the edit field, you can use JavaScript code to register them in mwCustomEditButtons in your MediaWiki:Common.js." [04:20:31] What's the extension for search autocomplete like the Wikimedia wikis have? [04:22:29] is a core feature [04:23:23] How do you enable it? [04:23:58] !suggest [04:23:58] --mwbot-- to enable suggestions in the search box, set $wgEnableMWSuggest = true; [04:24:09] Thanks. [04:27:19] see http://www.mediawiki.org/wiki/Manual:$wgEnableMWSuggest for more infos [04:27:51] seen mediawiki-l? [04:27:58] no, what about it? [04:28:12] apparently I used the "G" word [04:28:20] naughty me [04:30:03] heh [04:30:52] I still think there should be an easter egg, whereby if you change the interface message for 'gender' to say 'sex' it adds a 4th option "yes please" [04:32:02] :) [04:32:23] for wgEnableMWSuggest, you have to supply your own list of suggestions, I presume? Or is there a script that parses article names and comes up with its own suggestions? [04:35:00] So, anyone here running a wikimedia installation with an Apache server that's running on a Windows setup? [04:35:22] Say, Windows Vista? And who's also gotten server side includes to function properly? [04:40:11] Banaticus: it does a prefix search for the title [04:41:14] does it include the namespace as part of the title or does it only search in specific namespaces? [04:41:23] can it match articles up cross namespace? [04:43:13] http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/skins/common/mwsuggest.js?view=markup [04:44:32] compare: view-source:http://en.wikipedia.org/w/api.php?action=opensearch&search=Foo to view-source:http://en.wikipedia.org/w/api.php?action=opensearch&search=User:Foo [04:51:02] mediawiki on Microsoft SQL Server 2008 Express instead of MySQL -- feasible? How much work would be involved or would the difference be noticed? [04:51:34] there's experimental support [04:51:39] most likely it would fail horribly [04:52:04] do you happen to know where people are talking about it experimentally? [04:53:13] I'm trying to upload a jpg, and getting the error "The file is corrupt or has an incorrect extension." I'm fairly sure it's not corrupt. I tried setting the MIME detector command to "file -bi", but I still get the same error. How can I find out what's causing the error? [04:53:49] http://www.schneier.com/blog/archives/2009/05/software_proble.html heh, open source FTW [04:55:07] > This is a loss of precision in the data; of a possible twelve bits of information, only four bits are used. Further, because of an attribute in the IR calculations, the result value is further divided in half. This means that only 8 values are possible for the IR detection, and this is compared against the 16 values of the fuel cell. [05:01:01] TimStarling: yeah I saw it [05:01:29] I mean you could say "What is your grammatical gender?" and then [05:01:40] half the people would have no clue what we wanted :-P [05:02:07] we could have another option "neuter" just to make the point [05:02:14] and call people "it" if they select it [05:03:15] we should allow the he/she choice, actually [05:03:31] I assume that is the "unspecified" choice [05:03:45] it probably depends on the translator [05:11:59] http://en.wikipedia.org/wiki/Singular_they [05:15:25] darn, Splarka, I was about to link that [05:15:42] hi [05:15:48] can someone tell me how to link to recent changes? [05:15:51] [[Special:Recentchanges]] does not work [05:15:53] I have that userbox on my userpage [[User:Banaticus]] -- had it there for a couple years now [05:16:44] hunh, you're right, sherrod [05:18:04] must be something about en.wikipedia -- it works in wikimedia: http://meta.wikimedia.org/wiki/Help:Recent_changes -- see the link in the first sentence and the source code? [05:18:48] hrm [05:18:50] this is on my wiki [05:18:51] but [05:18:54] i think i typoed it [05:18:59] so now it appears to be proper [05:19:17] http://en.wikipedia.org/wiki/Special:ExpandTemplates?input=[[Special:Recentchanges]] [05:19:52] whoa [07:14:11] I'm trying to use wikipedia's Template:Navbar in my wiki, so I copied it, Template:Transclude, and Template:Fullurl to my wiki. But when I try to use it, I get this output (for the page "A page"): http://pastie.org/private/1pdybpiabq5bah7xkou67q How do I fix this? [07:21:02] did you copy and paste it or use Special:Export? [07:21:34] also you look like you need [07:21:39] !parserfunctions | jtbandes [07:21:39] --mwbot-- jtbandes: "Parser functions" are a way to extend the wiki syntax. ParserFunctions is an extension that provides the basic set of parser functions (you have to install it separately!). For help using parser functions, please see . For details about the extension, see . [07:21:53] I do have that. [07:22:26] I think I found the problem, or at least a problem. 1.15 introduces parameters to {{PAGENAME}} and the like, but I have 1.14. [07:24:09] Is there any reason not to install the 1.15 RC? [07:28:08] p858snake: or is there a way that 1.14 can support those parameters without a full upgrade? [07:30:17] 03(ASSIGNED) Oversight failure on enwiki - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18817 (10JSchulz_4587) [07:30:18] 03(mod) Oversight failure on enwiki - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18817 (10JSchulz_4587) [07:31:01] 03(mod) Oversight failure on enwiki - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18817 (10JSchulz_4587) [07:31:15] you could apply the patches, or you could go to the templates as they existed prior to the addition of those features [07:31:39] http://www.mediawiki.org/wiki/Special:Code/MediaWiki/46630 http://www.mediawiki.org/wiki/Special:Code/MediaWiki/46662 [07:41:17] 03(mod) add "oversight" component to cover RevDeleted, HideUser, etc - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18818 +shell; +comment (10JSchulz_4587) [08:29:37] 03(NEW) Cannot parse source code containing < source > - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18820 major; Normal; MediaWiki extensions: SyntaxHighlight (GeSHi); (ronga) [08:34:32] 03(mod) Cannot parse source code containing < source > - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18820 (10niklas.laxstrom) [08:34:47] 03(mod) Cannot parse source code containing < source > - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18820 (10N/A) [08:51:30] 03nikerabbit * r50675 10/trunk/extensions/Translate/tag/ (PageTranslationHooks.php SpecialPageTranslation.php): [08:51:30] * Sort pages [08:51:30] * Bug fix for translation page edit prevention [08:54:42] 03nikerabbit * r50676 10/trunk/extensions/Translate/ (4 files in 2 dirs): * Split the table used for displaying messages into it's own class [08:55:43] 03nikerabbit * r50677 10/trunk/extensions/Translate/utils/MessageIndex.php: * More stricter namespace check for now, might otherwise throw exceptions in some situations [09:02:02] 03(NEW) Revision::fetchAllRevisions has LIMIT=1, thus not returning all revisions - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18821 minor; Normal; MediaWiki: History/Diffs; (endlessoblivion) [09:06:21] 03nikerabbit * r50678 10/trunk/extensions/Translate/scripts/toolserver-export.php: * A new script :) [09:16:36] 03siebrand * r50679 10/trunk/phase3/languages/messages/ (11 files): Localisation updates for core messages from translatewiki.net (2009-05-17 09:04 UTC) [09:21:13] 03siebrand * r50680 10/trunk/extensions/ (63 files in 55 dirs): Localisation updates for extension messages from translatewiki.net (2009-05-17 09:04 UTC) [09:28:27] 03(mod) add "oversight" component to cover RevDeleted, HideUser, etc - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18818 (10happy-melon) [09:35:53] Okay, bizarre problem: I'm using Apache2's rewrite to get rid of index.php, and rewrite it to /articles/. That works fine and dandy. The problem is that I have to be logged in on the server for my wiki to not give me a 403 Forbidden error. [09:36:25] It works just fine while I'm running ssh; as soon as I log out, I get the error. I did just move servers, so it's possible that the permissions got messed up somewhere. [09:37:28] Any suggestions on where to start looking? [09:41:25] Furthermore, it has to be me as a user, I presume since the wiki directory is symlinked to /home//wiki [09:51:33] sql persons here? [09:53:51] anybody here? :D [09:54:25] You should ask your question :) [09:54:35] People are more likely to respond if they know the answer. [09:57:16] bah [09:57:47] SQL: SELECT /* SpecialPageTranslation::loadPagesFromDB Nike */ page_id,page_title,page_namespace,page_latest,MAX(rt_revision) as rt_revision,rtt_name FROM `bw_page`,`bw_revtag_type`,`bw_revtag` WHERE (page_id=rt_page) AND (rt_type=rtt_id) AND rtt_name IN ('tp:mark','tp:tag') GROUP BY page_id, rtt_id ORDER BY page_namespace, page_title; [09:57:52] answer that [09:59:51] TimStarling: another Q: is it ok for you if I start working on gsoc already? [10:02:30] yes [10:02:58] bbl [10:15:04] i have a software related question about mediawiki, since maybe it's changed since my hiatus [10:15:04] is it possible to combine edits of one account with another nowadays? [10:15:14] at en-wikipedia, that is [10:16:45] I don't think so [10:21:09] shit [10:23:19] 03siebrand * r50681 10/trunk/phase3/languages/messages/ (17 files): [10:23:19] Localisation updates from translatewiki.net [10:23:19] * special pages aliases, magic words, namespace names and namespace aliases [10:25:47] One: http://en.wikipedia.org/wiki/Wikipedia:Changing_attribution_for_an_edit (see top notice) [10:26:18] Splarka: oh ok. thanks [10:54:15] 03(mod) The (hide) button on revision deletion is confusing, displayed when revision is already hidden - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18746 (10foxyloxy.wikimedia) [11:14:27] 03(mod) Integrate SVN and Mediawiki - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17322 (10matthew.britton) [12:25:33] 03ashley * r50683 10/trunk/extensions/FCKeditor/FCKeditorSajax.body.php: FCKeditor: reverting one SQL change back to raw SQL - was getting database errors [12:42:22] 03ashley * r50684 10/trunk/extensions/EditSimilar/ (EditSimilar.css EditSimilar.php): [12:42:22] EditSimilar: [12:42:22] *update for new preferences system - breaks backwards compat, but that's why we have tagged versions of extensions and Special:ExtensionDistributor [12:42:22] *remove extension setup function & one hooked function that was using a wikia-specific hook [12:42:22] *move css into its own file and add it with addExtensionStyle rather than adding it inline with addHTML [12:42:25] *bump version number [12:42:27] *remove one unused global [13:27:44] ialex, est-ce que les slash / sont autorisés dans les noms de fichier uploadés ? [13:27:51] (bonjour aussi :) [13:28:10] guillom: bonne question :) [13:28:16] arf [13:28:19] guillom: et salut également [13:28:21] *ialex teste [13:28:29] je pensais que tu savais :) [13:29:44] guillom: réponse : non [13:29:53] rah [13:29:54] merci [13:30:00] ça m'arrange pas, mais merci :) [13:30:00] guillom: (essai avec Lo/go.png) : Le fichier a été renommé en « Go.png ». [13:30:05] oki [13:38:30] 03(mod) Missing tooltip of images (title="" not specified) - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16912 (10Simetrical+wikibugs) [13:43:08] / cannot be allowed [13:43:16] it's a special character on Unix and cannot be used in filenames [13:43:58] ugga [13:44:14] flyingparchment: oh really? [13:45:26] yes. unless we start urlencoding, anyway [13:46:37] is it the only reserved char? [13:47:07] nearly... \0 isn't allowed either, and you can't have a file called "." or "..", but i think that's it [13:48:17] (/ isn't allowed because it's the path separator, and \0 isn't allowed because it's used to terminate the filename in the syscall, so it would be impossible to include it) [13:49:46] Nikerabbit: . makes a file hidden iirc [13:51:37] 03(NEW) no such method: Title::newFromString () - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18822 normal; Normal; MediaWiki extensions: TitleBlacklist; (marcello) [13:53:52] 03nikerabbit * r50685 10/trunk/extensions/Translate/tag/SpecialPageTranslation.php: * Fix the list pages query, hopefully [13:55:10] 03ialex * r50686 10/trunk/phase3/includes/specials/SpecialUpload.php: replace ereg(i) by preg_match since the former is deprecated since PHP 5.3 [13:55:38] 03(mod) Date in occitan - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18308 (10niklas.laxstrom) [13:56:25] 03(mod) Allow not asking users their gender - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18761 +comment (10Simetrical+wikibugs) [14:10:27] 03(mod) Add setting to hide a list of preferences - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18761 summary; +comment (10siebrand) [14:12:52] 03ialex * r50687 10/trunk/extensions/TitleBlacklist/TitleBlacklist.list.php: * (bug 18822) Title::newFromString() doesn't exist; changed to Title::newFromText() [14:13:16] 03(FIXED) no such method: Title::newFromString () - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18822 +comment (10alex.emsenhuber) [14:18:08] 03siebrand * r50688 10/trunk/phase3/ (RELEASE-NOTES languages/Names.php): (bug 18806) Use correct unicode characters in spelling of native Chuvash [14:19:00] 03(FIXED) Unicode *Cyrillic* codes for languages of Russia (Chuvash) - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18806 +comment (10siebrand) [14:34:41] 03siebrand * r50689 10/trunk/phase3/ (CREDITS RELEASE-NOTES includes/Exif.php): [14:34:41] * (bug 18389) Localise numbers in EXIF data (patch by Marcus Buck and Ahmad Sherif). Possible FIXME: Is said not to work for "Exif version" and fraction in "Exposure time" [14:34:41] * limit lines in RELEASE-NOTES to 80 characters and remove trailing whitespace [14:34:55] 03(FIXED) EXIF data lacking localization - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18389 +comment (10siebrand) [14:42:14] 14(DUP) Add current revision to the printfooter - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18786 +comment (10siebrand) [14:42:17] 03(mod) Include permalink in printable version - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16428 +comment (10siebrand) [14:44:05] flyingparchment: can you take another look at https://bugzilla.wikimedia.org/show_bug.cgi?id=18779 ? Examples were added (see attached PDFs) [14:48:27] 03(mod) Use file.inc or file.php, not file.inc.php - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18698 (10siebrand) [14:48:29] 03(mod) Code quality issues (tracking) - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=700 (10siebrand) [14:49:31] 03(mod) Move .plainlinks declaration to common stylesheets - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18708 -easy ; +comment (10siebrand) [14:57:01] 03ialex * r50690 10/trunk/extensions/FCKeditor/ (3 files): [14:57:01] * Fixed an E_WARNING in FCKeditor_MediaWiki::onCustomEditor() with PHP 5.3: paramters are no passed by reference [14:57:01] * Fixed an E_STRICT: non-static method FCKeditorParser::fck_leaveTemplatesAlone() should not be called statically [14:57:01] * Put the preferences in their own filedset [14:57:02] * Updated French localisation [14:57:43] 03siebrand * r50691 10/trunk/phase3/ (RELEASE-NOTES includes/ProtectionForm.php): (bug 18522) Wrap MediaWiki:Protect-cascadeon in a div for identification (patch by Happy-melon) [14:58:01] 03(FIXED) Wrap MediaWiki:Protect-cascadeon in a div for identification - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18522 +comment (10siebrand) [15:00:24] 03(mod) Move .plainlinks declaration to common stylesheets - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18708 (10happy-melon) [15:10:46] 03(mod) Cannot parse source code containing < source > - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18820 (10ronga) [15:19:34] 03nikerabbit * r50692 10/trunk/extensions/Translate/ (7 files in 2 dirs): [15:19:34] * Restore RenderJob, now used for both when translation is updated and when source page is changed [15:19:34] * If over 10 translation pages would change, job queue is used [15:19:34] * Purge translation percentages on action=purge [15:19:34] * Some documentation [15:21:50] 03soxred93 * r50693 10/trunk/extensions/SyntaxHighlight_GeSHi/ (SyntaxHighlight_GeSHi.class.php SyntaxHighlight_GeSHi.php): Add optional $wgSyntaxHighlightDefaultLang parameter; allows people to set a default language that shows up if the lang parameter is missing. [15:27:47] Ello. I've installed and configured MediaWiki, but going to http://my-server/wiki gives me a 404. What is /wiki supposed to point to? [15:28:37] kerlo: did you install it to /wiki/, or somewhere else? [15:28:51] I installed it using apt-get. [15:29:19] Well that's... non-standard [15:29:33] How did you configure it if you can't get to the setup page? [15:30:14] 03(mod) Cannot parse source code containing < source > - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18820 (10niklas.laxstrom) [15:30:24] 03siebrand * r50694 10/trunk/extensions/Translate/groups/mediawiki-defines.txt: Re-add support for FCKeditor [15:30:26] The configuration was at /mediawiki/config. [15:30:47] Oh, looks like the wiki is at /mediawiki. [15:31:56] kerlo: what is your apaches document root? [15:32:21] at least fedora does something wtf'is so that the wiki is not accessible by default [15:32:51] Q. Is there a restriction on the maximum number of user sub-pages (someone tells me 100, can't find the doc) [15:33:00] chzz: no [15:33:30] Nikerabbit: /var/www, I think. [15:33:35] My problem seems to be fixed. [15:33:50] Nikerabbit Thx. No offence, but - are you 100% sure on it? [15:34:55] chzz: yes [15:35:03] Nikerabbit great, thx. [15:35:17] chzz: in software that is.... policies may say whatever they want [15:35:18] 03(mod) Localized namespaces for mt.wp (2) - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18498 (10djchris_portelli) [15:45:04] 03nikerabbit * r50695 10/trunk/phase3/includes/ProtectionForm.php: * Follow-up for r50691, add \n to be safe in case there is line-start sensitive markup [15:48:07] 03(mod) Cannot parse source code containing < source > - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18820 (10paul.copperman) [15:49:30] 03nikerabbit * r50696 10/trunk/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.php: [15:49:30] * bug (18820) Cannot parse source code containing [15:49:30] -> Added alternative tag [15:52:52] 03(mod) Cannot parse source code containing < source > - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18820 (10niklas.laxstrom) [16:00:09] how do I invalidate caches for a page? [16:05:29] hi Luxo [16:05:38] hi Nikerabbit [16:13:18] 03nikerabbit * r50697 10/trunk/extensions/Translate/scripts/messageDust.php: Update messageDust.php [16:17:01] Is it easy to create users automatically? [16:30:22] 03nikerabbit * r50698 10/trunk/extensions/Translate/MessageGroups.php: * Missing setter [16:32:43] kerlo: like? [16:33:29] Like a create_user() function I can call from elsewhere. [16:38:00] shouldn't be too hard [16:39:18] Wouldn't be too hard to figure it out from what the web form does, I guess. [16:41:01] kerlo https://fisheye.toolserver.org/browse/ACC/functions.php?r=2172 [16:48:34] 03siebrand * r50699 10/trunk/extensions/FCKeditor/ (. fckeditor/): Remove fckeditor fork and add http://svn.fckeditor.net/FCKeditor/branches/versions/2.6.x/ as external per discussion on http://www.mediawiki.org/wiki/Special:Code/MediaWiki/50669#c2535 [16:57:51] Where's the post-commit hook that can be used with CodeReview? [17:01:36] 03nikerabbit * r50700 10/trunk/extensions/Translate/TranslateUtils.php: * Too slow to unserialize every time... keep the data in memory [17:10:07] chuck: you need to post at http://www.mediawiki.org/w/api.php?action=codeupdate&repo=MediaWiki&rev=XXX (where XXX is the revision number) [17:10:28] (you can use wget) [17:32:38] 03siebrand * r50701 10/trunk/phase3/ (4 files in 4 dirs): (bug 18466) Add note or warning when overruling a move (semi-)protection (patch by Nakon with tweaks by Siebrand) [17:33:55] 03(FIXED) Admins should see a warning when in process of overruling a move protection - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18466 +comment (10siebrand) [17:39:28] 03(mod) Tweak HTML for preview bar (patch) - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18438 +comment (10siebrand) [17:41:29] ialex: thanks [17:41:53] ialex: I'm trying to make CodeReview to be Git compatible, can I create a branch in branches/ for that? [17:42:56] chuck: you can; but I can't promise that it'll be merged back in trunk ;) [17:47:03] ialex: Why wouldn't it be? :P [17:47:16] chuck: dunno, ask Brion :) [17:55:27] 03siebrand * r50702 10/trunk/phase3/ (4 files in 3 dirs): (bug 18438) Tweak HTML for preview bar for consistency and accessibility (patch contributed by Happy-melon with tweaks by siebrand) [17:57:51] :o [17:57:58] doesn't anybody have any problem with mediawiki today? [17:58:10] 03(FIXED) Tweak HTML for preview bar (patch) - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18438 +comment (10siebrand) [17:58:57] *ialex has problems with PHP, not MediaWiki ;) [17:59:29] ialex: whassa? [18:00:00] Nikerabbit: trying to use PHP 6.0-dev is fun ;) [18:00:19] O_o [18:00:51] and doesn't work very well :D [18:05:45] Hi , I am having and issue where any article that gets edited has it's image tag messed up ( actually swappign to and from wikitext veiw is enough to do it ) [18:06:02] wow, great! somebody has a problem [18:06:02] to and from the wikitext and what? [18:06:06] what I get left with is [[image:]] instead of [[image:filename]] [18:06:17] switching views to and from [18:06:21] to and from what? [18:06:23] LEAPFROG: are you using some kind of wysiwyg editor? [18:06:26] "to and from" requires _two_ things [18:06:30] one is the wikitext, what is the other? [18:06:43] to wikitext from normal rich text editor [18:06:48] there is no rich text editor in mediawiki [18:06:49] 03(mod) Tweak HTML for preview bar (patch) - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18438 (10happy-melon) [18:06:55] you must be using an extension of some kind [18:06:56] and yes I belive it's ksckeditor [18:07:01] .jpg [18:07:16] fck? [18:07:32] yes sorry fck [18:07:41] I am running a turkey linux install [18:07:48] never heard of that either [18:07:59] * turnkey [18:08:20] its an appliance , was just easier to load to a vm whilst the board decides what gets used [18:08:41] the fck editor kind of sucks, which is why not many sites use it [18:08:52] nah [18:09:08] all of them do... but would be nice if they do not break what they do not understand [18:09:18] lol [18:09:55] basicly I'm left with the task of finding somethign any moron they hire can use , and isn't going to have them on the phone to me everytime they make an edit [18:10:29] what I am lookign at with the appliance seems great except fot this bug , thought i woudl see if anyone here had seen it but was a pot shot [18:10:35] LEAPFROG: demand money for phone support 2) ??? 3) $$$$ [18:12:26] 03siebrand * r50703 10/trunk/phase3/languages/messages/MessagesEn.php: Follow-up on r50701. Close bold on WARNING. [18:12:33] LEAPFROG: If ease of use is a must, and wikitext isn't easy for the target users, then I wouldn't suggest using MediaWiki [18:12:53] confluence! [18:12:59] But try the Uniwiki extensions, they really improve the edit screen, although they still use wikitext [18:13:05] flyingparchment: yeah, that's what I was thinking too :P [18:13:17] Except Confluence's rich text editor doesn't work in Safari... [18:13:33] chuck : wikitext is fine it just doesn't work [18:13:43] it strips away the image name from the tag [18:13:45] wikitext doesn't work? [18:13:58] No, that's what FCKeditor is doing (or so we assume) [18:14:08] chuck: their list of supported browsers is annoyingly small [18:14:23] FCKeditor is a third-party extension to MediaWiki. MediaWiki's default editing page will work just fine. [18:14:26] what happens is this , they add the image.. first up works fine then if they eighter submit that article and come back to edit again or if they switch to normal view then back to wikitext view [18:14:42] the image tag goes from [[image:name.jpg]] to [[image:]] [18:15:20] mabey my terminology of wikitext is incorrect it's just what my button says and it displays the text in the "wiki format" [18:15:57] the problem is with fckeditor, so you're probably better off finding a more direct support channel, since not many people here know about it [18:16:34] LEAPFROG: By default, MediaWiki uses a wiki text markup language. FCKeditor provides an option to either use the default wiki text system, or use the rich text editor. As flyingparchment said, something is wrong in the FCKeditor extension that you are using, so you should probably ask the developer of that extension for assistance. [18:16:42] will see what i can do to get around using it , I haven't selected it or anythign i just installed the appliance and have run as is [18:17:12] no worries will just try and reverse that part of the appliance [18:17:14] thanx anyways [18:17:25] any reason why the non rich editor does it ? [18:17:27] LEAPFROG: If MediaWiki doesn't work out, and you guys either have a lot of money or are an open-source project or non-profit organisation, I would suggest Confluence as an alternative. [18:17:31] as thats not fck [18:18:01] it's fck editor doing it [18:18:11] thankyou chuck the money isn't really the concern tbh I am a lover of open source but see no benifit if it's a screw around to get suport [18:18:16] LEAPFROG: The non-rich text editor isn't doing it, because MediaWiki will work perfectly without FCKeditor. It's just getting lost in FCKeditor's internal conversion processes, whatever those are. [18:19:01] LEAPFROG: Yes, if getting support is a problem, then Confluence might be a good option, as the developer of that software, Atlassian, provides great support. [18:21:32] flyingparchment: How does the JIRA reporting bot work in #wikimedia-toolserver? I noticed a jira module for supybot in SVN, but as far as I can see, that could only get information on certain issues. [18:21:44] ugga [18:21:55] chuck: it send mails to a script which extracts the data and shows it on irc [18:22:14] Oh, I see. [18:22:35] http://rafb.net/p/ccAZFe68.html [18:24:55] flyingparchment: How do you send mail to that script? [18:29:06] by configuration it in the notification scheme [18:31:30] flyingparchment: Yes, but how does the perl script receive the mail? [18:42:35] 03rotem * r50704 10/trunk/ (2 files in 2 dirs): Localization update for he. [18:48:17] thankyou for your help all , I must be off [18:58:24] 03(mod) subpages should not display the full qualified page name - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18759 +comment (10happy-melon) [19:04:19] 03siebrand * r50705 10/trunk/phase3/ (RELEASE-NOTES skins/common/edit.js): (bug 18342) insertTags works in edit summary box now (patch contributed by Ahmad Sherif) [19:04:39] 03(FIXED) insertTags should insert into edit summary box too - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18342 +comment (10siebrand) [19:05:05] 03(mod) new option for move: supresssubpagesredirect - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18769 +comment (10happy-melon) [19:07:38] 03(NEW) "move succeeded" text displays bluelinks even when redirect was suppressed - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18823 minor; Normal; MediaWiki: Special pages; (happy-melon) [19:07:59] 03(mod) Tweak HTML for preview bar (patch) - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18438 (10siebrand) [19:09:16] 03(mod) WAI-ARIA landmark roles to improve accessibility in the Monobook skin - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18338 +comment (10siebrand) [19:09:32] 03(mod) Monobook for accessibility to selected items - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18465 +comment (10siebrand) [19:11:53] any regex wizards who want to take the time to review https://bugzilla.wikimedia.org/show_bug.cgi?id=18609 ? [19:23:25] 03siebrand * r50706 10/trunk/phase3/ (CREDITS RELEASE-NOTES includes/specials/SpecialUpload.php): (bug 18411) The upload form now also checks post_max_size (patch contributed by Enukarmers, updated by Stefano Codari) [19:23:38] 03(FIXED) The upload form only checks upload_max_filesize, not post_max_size - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18411 +comment (10siebrand) [19:28:15] 03siebrand * r50707 10/trunk/phase3/ (RELEASE-NOTES maintenance/dumpBackup.php): (bug 18432) Updated documentation for dumpBackup.php (patch contributed by Jidanni) [19:28:29] 03(FIXED) dumpBackup.php documentation improvements - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18432 +comment (10siebrand) [19:30:58] domas: is http://bug-attachment.wikimedia.org/attachment.cgi?id=5982 ok performance-wise (from https://bugzilla.wikimedia.org/show_bug.cgi?id=18273)? [19:31:25] well, isn't the change doing exactly same? [19:32:02] domas: NS_CATEGORY was added [19:32:54] domas: and it looks like he made the parameters strings instead of numbers. No idea what that will do. [19:33:08] those are php defines.. [19:33:41] AND pl_namespace NOT IN ( ". NS_USER .", ". NS_USER_TALK .", ". NS_CATEGORY ." ) [19:33:59] ah. oops. My bad. [19:34:26] domas: so nothing against it? Then I'll prepare, test and commit after the next Prison Break. [19:39:10] *shrug*, it is expensive query anyway ;-)) [19:39:19] 03(mod) Tweak HTML for preview bar (patch) - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18438 (10happy-melon) [20:39:25] 03siebrand * r50708 10/trunk/phase3/includes/specials/SpecialWantedpages.php: [20:39:25] * replace hard coded namespace numbers by the php define [20:39:25] * remove leading spaces, and replace leading space blocks by tabs [20:39:25] Inspired by a patch by jidanni in bug 18273. [20:39:27] carl-m: Any suggestions on pulling 2,000 random articles? [20:39:45] I tried SELECT ... WHERE page_random > RAND(), but the results are meh. [20:39:52] 14(INVALID) Don't jumble Wanted Categories into Wanted Pages anymore - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18273 +comment (10siebrand) [20:40:19] Hmm. Adding ORDER BY page_random helps. [20:44:37] yes, that would do it [20:44:48] or you could do 2000 single queries [20:46:24] 03(mod) Extension:NewUserMessage using template substitution - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18809 (10siebrand) [20:54:49] 03(mod) Cannot parse source code containing < source > - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18820 (10ronga) [21:12:43] 03(mod) Extension:NewUserMessage using template substitution - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18809 (10crangasi2001) [21:16:34] I have a blocked user that is creating new pages via http request [21:16:50] is this a known issue with 1.13.3? [21:17:11] http://wiki.laptop.org/index.php?title=Special:Log&type=block&page=User:65.98.80.2 [21:17:17] http://wiki.laptop.org/go/Special:Contributions/65.98.80.2 [21:20:40] Simetrical: Thx for link= !! [21:20:45] "Article updated via HTTP request" doesn't sound like a message generated by the software. [21:20:55] It sounds like a custom provided message. [21:21:30] You seem to be using a number of extensions. [21:21:36] I would conjecture that one of those is at fault. [21:21:45] Although I don't know. [21:22:07] Perhaps SimpleForms? [21:22:19] Or CreateBox? [21:23:49] http://www.organicdesign.co.nz/Extension:SimpleForms.php [21:23:58] SimpleForms looks like the culprit, judging by its code. [21:24:10] if ($wgSimpleFormsAllowEdit && ($allow || $wgUser->isAllowed('edit'))) { [21:24:20] That needs a check for isBlocked() or such as well. [21:24:24] a ha [21:24:25] thank you [21:24:41] You need to be careful with third-party extensions. [21:25:14] hi Simetrical [21:25:32] Changing to this might do it: [21:25:33] if ($wgSimpleFormsAllowEdit && ($allow || ($wgUser->isAllowed('edit') && !$wgUser->isBlocked()))) { [21:25:42] Don't know what $allow does, though. [21:25:57] Simetrical: that extension has a bug listed "It should use edit tokens" heh [21:26:11] So it's CSRF too, then. [21:26:20] This is why third-party extensions are evil. [21:26:37] Anyone who says "Who cares about features that Firefox doesn't have, you can just use extensions!" needs to be smacked in the head. [21:27:07] . . . Although I do use quite a few extensions. [21:27:16] Maybe Shiretoko seems faster because most are disabled. [21:28:47] Simetrical: huh? [21:31:16] There's not much to say to "huh?". [21:31:31] Especially when it was in response to five lines of text making a number of distinct points. [21:32:10] features that Firefox doesn't have [21:33:11] There are some, you know, remarkably. [21:33:22] For instance, WebKit allows you to resize form fields. [21:33:30] There's a Firefox extension to do that, but it sucks. [21:34:10] Opera does about twenty different useful things built-in that Firefox can't manage without extensions, although I can't recall most of them. [21:34:40] The only really good point Firefox has going for it is extensions. And open-source, of course, if you're into that. Not counting "I've used it forever and am used to it". [21:35:48] ugga [21:36:37] *Splarka gets Nikerabbit a big box of open source interjections [21:36:55] örö [21:37:37] r�r [21:38:32] http://en.wiktionary.org/wiki/Category:Interjections heh [21:38:53] [[Category:Interjections by language]] [[interjection]] and [[holy guacamole]] [21:50:39] 03(mod) Relative URIs in interwiki links table causes failed redirects - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18664 +need-review; +comment (10siebrand) [21:52:41] 03(mod) Database error when using japanese characters - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17910 -easy -patch ; +comment (10siebrand) [21:55:17] 03(NEW) customised version of dberrortext not displayed - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18824 minor; Normal; MediaWiki: Database; (happy-melon) [22:09:33] 03(mod) customised version of dberrortext not displayed - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18824 (10niklas.laxstrom) [22:42:35] Is there a way to use a parser #if or something to hide a bit of content from anonymous users? [22:44:41] http://www.mediawiki.org/wiki/Extension:UserFunctions [22:45:14] Aha! thanks [22:45:20] if by "hide" you mean "conveniently not display", not "protect" [22:45:48] Yeah. [22:46:36] that breaks cache a bit, it would be better to use JS/CSS probably [22:48:20] How would I do that? [22:50:16] if(wgUserName) appendCSS('.nonanon-inline {display:inline !important;} .nonanon-block {display:block !important;}') [22:50:26] in site JS [[MediaWiki:Common.js]] [22:51:14] and then give the objects to hide foo
foo
[22:51:36] and in site CSS (Common.css): .nonanon-inline, .nonanon-block {display:none;} [23:47:17] 03(NEW) subst is not parsed within footnotes - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18825 normal; Normal; MediaWiki extensions: Cite; (cbm) [23:50:38] 14(DUP) subst is not parsed within footnotes - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=18825 +comment (10Simetrical+wikibugs) [23:50:42] 03(mod) Pre-save transform skips extensions using wikitext (gallery, references, pipe trick, subst, signatures) - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=2700 +comment (10Simetrical+wikibugs) [23:51:05] is that the most duped bug yet? [23:51:18] 03(mod) Pre-save transform skips extensions using wikitext (gallery, references, footnotes, Cite, pipe trick, subst, signatures) - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=2700 summary (10Simetrical+wikibugs) [23:51:40] *Simetrical counts 18 dupes [23:51:47] Possibly. [23:54:17] often you must check for dupes of dupes, double reduprects