User talk:Skizzerz
From MediaWiki.org
Dear Skizzerz, Welcome to MediaWiki.org!
Yes, Welcome! This site is dedicated to the documentation of the MediaWiki software, the software behind many wikis, including that of Wikipedia and the Wikimedia Foundation projects.
Please, take a look at the following pages. They might prove useful to you as a newcomer here:
If you have any questions, please ask me on my talk page. Once again, welcome, and I hope you quickly feel comfortable here, and find this site a beneficial documentation of the MediaWiki software.
Thanks, and regards, -PatPeter, MediaWiki Support Team 02:52, 31 December 2007 (UTC)
Please put new messages at the bottom by clicking either the + tab on top or click here. If you leave a message here, I will respond here (unless you state that I should answer on your talk page).
Contents |
[edit] OMG!!! RightFunctions!
I realize my section heading is AOL-speak, but in this case I think it's justified (I almost never use IM langauge). Imagine my surprise when, just when I was trying (and failing) to write my own extension to return the current protection level of a page, I discovered yours (RightFunctions) in a search for "getrestrictions"! What joy! And you just added it a few days ago. Congratulations on the extension, by the way; it's doing exactly what I need it to do so far. Thanks for making it and saving me from hours of writing and debugging! — Tuvok[Talk/en.wp] 19:32, 25 December 2007 (UTC)
- You're welcome, and glad you enjoy it ^_^. I'm planning on making getrestrictions and ifprotected much more powerful in 1.4, so that'll come by in a few days (hopefully). And if you have any suggestions, feel free to let me know :) --Skizzerz talk 00:40, 26 December 2007 (UTC)
- Actually, I just came here after cascade-protecting something and noticing that it didn't get tagged as protected. Is cascade-protection detection (I know, ouch) planned? I see you're using
$title->getRestrictions()in the code; perhaps that's a problem with MediaWiki's function that should be put in Bugzilla (if it's not there already)? That's the onlybugmissing feature I've seen so far (with the extension; my ParserFunctions chops have also needed work :P). I'll be watching the extension page for updates; cheers! — Tuvok[Talk/en.wp] 02:25, 27 December 2007 (UTC)- Ok, should work now. --Skizzerz talk 04:12, 27 December 2007 (UTC)
- Well, I haven't tested the cascade detection yet, but it no longer works on pages I've explicitly protected. Every protected page I put the template on now displays my "not protected" icon (if you want my template source, just ask). I've gone back to 1.3. It's probably just a code flow issue. I'll look at the extension's code in a bit, after breakfast. Glad to see you're working on development, though. :) — Tuvok[Talk/en.wp] 13:57, 27 December 2007 (UTC)
- Ok, should work now. --Skizzerz talk 04:12, 27 December 2007 (UTC)
- Actually, I just came here after cascade-protecting something and noticing that it didn't get tagged as protected. Is cascade-protection detection (I know, ouch) planned? I see you're using
-
-
-
- So, I've been messing with it, and it's returning the value of what I put after the colon (e.g. for
{{#getrestrictions:edit}}, "edit"; for{{#getrestrictions:move}}, "move"), and if I leave it blank, it returns an empty. But only in version 1.4; 1.3 returns "sysop", "bureaucrat", or "", depending on if the page is protected (sysop level or bureaucrat level) or not. — Tuvok[Talk/en.wp] 15:22, 27 December 2007 (UTC)- Yeah, I've been experiencing that too in my tests, and I wasn't sure what was going on with that. I'll do some major debugging of that now. --Skizzerz talk 15:24, 27 December 2007 (UTC)
- So, I've been messing with it, and it's returning the value of what I put after the colon (e.g. for
-
-
-
-
-
-
-
- It's kind of frustrating that it's doing that, not because it doesn't work, but because I don't see what's changed that should be causing that. I tried changing the array value you have for
if(!$right)to a string, but that just broke it more. I'm not sure I understand the point oftrim()ming stuff, though. But then again, I'm not super familiar with MediaWiki's API... I've been trying to help, though. I'll have to delve into some of the docs later today. — Tuvok[Talk/en.wp] 15:32, 27 December 2007 (UTC)
- It's kind of frustrating that it's doing that, not because it doesn't work, but because I don't see what's changed that should be causing that. I tried changing the array value you have for
-
-
-
-
I've fixed it, try it now (I didn't realize that getRestrictions sometimes returned an array, so I had to check for that and extract the value of it if it did, which is why it was breaking). --Skizzerz talk 15:56, 27 December 2007 (UTC)
- Looks good so far! Man, that cascade detection is cool, but boy does it make template programming complicated. :P I'm going to have to think about how to update my template for that...
- Actually, how hard would it be for you to implement another function to return just the level? This business of adding parenthetical clauses gets really complicated, really fast, and the template won't switch properly if the switch cases have spaces in them. I'm just speaking from the point of view of a template developer, here. Also, perhaps at some point you'll I18n the extension?
- I know, I'm just piling it on. :D Sorry if you feel overwhelmed. :) — Tuvok[Talk/en.wp] 16:37, 27 December 2007 (UTC)
- Yeah, I'll add in a toggle for how the thing should be returned... check back in about half an hour or so for that. As for internationalisation... that's on hold for 2.0 when things REALLY turn complicated (plus, I'll need someone to help translate, I can do de i18n, but that's about it). --Skizzerz talk 16:49, 27 December 2007 (UTC)
- Done, it now returns the highest-level restriction among all sources (local and cascading) by default, but you can toggle it back to the list of all restrictions by setting the third parameter. --Skizzerz talk 17:25, 27 December 2007 (UTC)
- Deary me, I was gone for the day and I come back to find all this! Thanks! Will it still return whether the page is cascade or local? Ideally, I'd like to display different messages depending on whether the protection is local or via cascade. Perhaps that should be its own function, though.
-
-
- Also, on a side note, I was having issues with category links (bug 12420), and I just got a response from Brion Vibber. He says, "Looks like your extension is using
$wgTitle... that's bad mojo, as I believe $wgTitle may belong to someone else during background updates. You should instead pull the current title from the parser, eg$parser->getTitle()." I dunno if it'll solve the bug I've been having, but perhaps you could change the code to use the parser's title for the next release? I tweaked the one line afterif(!$title->exists()), but it didn't seem to work. Perhaps you'll have better luck. — Tuvok[Talk/en.wp] 01:43, 28 December 2007 (UTC)- You can use {{#ifprotected:true|false||c}} to check if it's cascading protected or not (returns true if it is, false if it isn't). As for the title bug, I'll fix that tomorrow. I gotta get some sleep now :) --Skizzerz talk 02:53, 28 December 2007 (UTC)
- Also, on a side note, I was having issues with category links (bug 12420), and I just got a response from Brion Vibber. He says, "Looks like your extension is using
-
-
-
-
-
- Ha ha! Developers, sleep? I don't. :P
-
-
-
-
-
-
-
- Seriously, though, I'll have to look into that other function. I actually forgot that there were other protection-related functions in your extension. :D Really! Thanks for all the help, and the constant communication. Let me know how the title thing goes. 'Night! — Tuvok[Talk/en.wp] 03:06, 28 December 2007 (UTC)
-
-
-
-
-
-
-
-
- Did you change ALL instances of $wgTitle to $parser->getTitle()? If not, then the else clause is probably what messed you up. --Skizzerz talk 15:12, 28 December 2007 (UTC)
-
-
-
-
(reset indent) I actually only changed the two instances I could find in getrestrictions(). :P I was being lazy and trying to only test the function I was having problems with at first, before trying the others. — Tuvok[Talk/en.wp] 15:29, 28 December 2007 (UTC)
[edit] Very nicely done
I can't believe I missed you when I was spreading the news about the support team, but you are doing hell of a good job, keep it up! -PatPeter, MediaWiki Support Team 02:52, 31 December 2007 (UTC)
- It's fine, I only officially joined recently anyway ^_^. --Skizzerz talk 03:02, 31 December 2007 (UTC)
- The offfical sig addition for MediaWiki is at Project:Support_desk/Support_team#Official_Sig. -PatPeter,
MediaWiki Support Team 15:06, 10 January 2008 (UTC)
[edit] Anon 82.42.23784 on support desk
Special:Contributions/82.42.237.84 is asking for your help again... looks like he's struggling.
--84.45.219.185 10:17, 5 February 2008 (UTC)
[edit] RE:
Wait wait what? You mean the edits I made to Template:Support desk notes? Because as you can see I have made a lot of edits to that template, no need to make a sandbox version of it. As for the speedy and all the rest I wouldn't have made the Support team if I wasn't an experienced editor, hell I've been a Wiki editor for about 2 years this April. -PatPeter,
MediaWiki Support Team 05:34, 10 February 2008 (UTC)
- No need to get defensive or cranky... I'm just saying that if you do happen to break something, it's best to do it in a sandbox than on the real template page. --Skizzerz talk - contribs
MediaWiki Support Team 15:29, 10 February 2008 (UTC) - Did I sound like that? Sorry. It is a one-use template for only that page, so making a few test edits on that wouldn't do much harm, if I tried that on Wikipedia's Navbox, or any other high-use template I would sandbox first. -PatPeter,
MediaWiki Support Team 15:05, 13 February 2008 (UTC)
[edit] EditUser imported into SVN
Hi Ryan. Thanks for writing EditUser. I have imported it into the MediaWiki svn repository and made a few changed to it. It uses wfLoadExtensionMessages now, which is the standard for betawiki: supported extensions. I have also updated the version. The file containing the extension logic has been renamed to EditUser_body.php, which is a standard name.
I an looking into importing some more of the extensions you wrote. Cheers! Siebrand 17:50, 10 February 2008 (UTC)
[edit] Unblock
Hello Skizzerz, you know how large of a contributor I am here at this wiki. I was in my opinion unjustly blocked from Wikipedia. If you could put a word in at wikipedia:User talk:PatPeter, I would be grateful. -PatPeter,
MediaWiki Support Team 17:02, 24 February 2008 (UTC)
- Please do not bug me about Wikipedia shit. I hate the bureaucracy there and that is why I refuse to edit there, or even attempt to understand what the hell goes on behind-the-scenes. Try asking at #wikipedia on IRC or something. --Skizzerz talk - contribs
MediaWiki Support Team 19:24, 24 February 2008 (UTC)
[edit] PHP 6 moved to support desk
Greetings, I noticed you moved my PHP 6 question to support desk. However, I had checked that section before posting, and noticed that "Questions on this page are unlikely to be answered very quickly, and may not get answered at all.", so it kind of drove me off, and that's why I posted my question to the main page... I want a reply, and if possible fast!
CielProfond 05:24, 28 February 2008 (UTC)
- The support desk is for asking questions about the software. The main page talk page is only for discussion of the Main Page itself. I've replied to your question as well. --Skizzerz talk - contribs
MediaWiki Support Team 21:19, 28 February 2008 (UTC)
[edit] EditSubpages error
I am encountering an error with you extension EditSubpages, which I've detailed on the extension's talk page. Any ideas to try to help me are appreciated, as the extension seems very useful! Smaug 20:59, 29 March 2008 (UTC)
[edit] GPManager warning showing
Hi i've just installed your GMManager extension but it's throwing up the following warning in Special:Grouppermissions
Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of sort(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /home/semanticgrid/semanticgrid.ecs.soton.ac.uk/devel/htdocs/extensions/GPManager/GPManager.page.php on line 46
Do you know what I need to comment out or chaage in GPManager.page.php to tfix the problem?
cheers
rebekah
- Hmm... I'll fix that. I need to add in a few features and commit it to SVN anyway, so expect it later today or tomorrow, perhaps. I'm a bit restricted time-wise due to a huge test I have to study for. --Skizzerz talk - contribs 22:23, 31 March 2008 (UTC)
[edit] GPManager
Hiya... were you able to chase down that issue mentioned above? I am having a similar problem when I am trying to execute the extension using MediaWiki 1.12.0. Thanks, Maggi
- I have just fixed it, needs a bit more standardization and stuff, but it should be fully usable again --Skizzerz talk - contribs 00:13, 4 May 2008 (UTC)
Sorry to be a pest... have a new issue... : (
Warning: Invalid argument supplied for foreach() in /extensions/GPManager/GPManager_body.php on line 242
- I cannot reproduce that error on my local install. could you please paste your PHP version? --Skizzerz talk - contribs 03:23, 4 May 2008 (UTC)
Hi! Sure... here is the version info for PHP:
PHP 5.2.3 (cgi-fcgi) (from the Special:Version page)
[edit] Bug in AuthorProtect ?
Hi Skizzerz ! Thank you for your extension AuthorProtect which is exactly what i was looking for... The only problem I see is that when a page has been protected, It seems impossible tu "unprotect" it. When I click on the "unprotect" tab, uncheck the restrictions and then click on the "protect" button (which would by more likely to become an "unprotect" button by the way), I've got the message "Protection Succesful" and the page is still protected.
Besides, when I go to the "unprotect" tab and change nothing, I've got the following notice : undefined variable cascade in AuthorProtect.php in line 170.
I tried rev 33130 and 33102 of the file but with the same results...
Am I the only one with this problem ?
Thanks for your help.
I'm using mediawiki 1.12
- Should be fixed now in version 1.1 of the extension. --Skizzerz 02:22, 25 May 2008 (UTC)
[edit] ForcePreview + LivePreview
I've left note at Extension_talk:ForcePreview. Please take a look.
--Aik099 09:28, 20 May 2008 (UTC)
[edit] Extension:VideoWiki
Thanks for doing the move of Extension:KalturaCollaborativeVideo to Extension:VideoWiki so promptly, I should have put a speedy delete template on it earlier :p --Zven 01:30, 3 June 2008 (UTC)
- No problem :) I troll recentchanges anyway, so I'd catch pretty much anything. I just must have been afk the first time when you marked it --Skizzerz 02:15, 3 June 2008 (UTC)

