User talk:๐Ÿ˜‚/Archive

Latest comment: 14 years ago by BRUTE in topic Help

Re: Project talk:Administrators edit

I've reverted your edit here. Simply because you disagree that it should be done does not make for a lack of consensus. If no local admin is around, and a steward can clean up vandalism/spam/other messes, why shouldn't they? I for one welcome participation from users whom this isn't necessarily their home project (or even if they are here a lot, they're not a local admin). Asking them to ignore something like vandalism until the community can deal with it strikes me as a bad idea. ^demon 14:06, 24 August 2008 (UTC)Reply

For your information, what you did, ^demon, was exactly what you accuse me of doing. I didn't revert because it happened to be my opinion; I reverted because consensus for *anything* on stewards remained unclear. You, however, re-added the non-agreed-upon material, so it was you who did something out of form here. I am happy for that material to be added if there is consensus for it; however, at the time of its addition, there was not. โ€”Anonymous DissidentTalk 07:10, 25 August 2008 (UTC)Reply
Just an update: since consensus has been found for the text to be on there, I've presently closed the discussion and the text will now remain. The difference between now and yesterday is that there is a visible difference in those who agree and those who do not. โ€”Anonymous DissidentTalk 07:22, 25 August 2008 (UTC)Reply

commandLine.inc edit

Hello ^demon. I have a question regarding the following from your maintenance-work page:

18855 - require commandLine.inc properly (will be INVALID, commandLine.inc will be phased out)

Where can I find information and/or discussion about this change? I have extensions that depend on commandLine.inc, and am interested to know how the functionality will be maintained if it is phased out. Best regards, $wgUser 21:18, 15 June 2009 (UTC)Reply

The main source of information about this branch (svn commits) can be found at the subpage you linked. The docs, in particular, are located in docs/maintenance.txt. I plan to leave commandLine.inc in place for backward-compatibility. This is for the exact reason you mentioned: third party sites may very well still use commandLine.inc (which works just fine, and forms a large basis of the new abstract Maintenance class). I may throw a warning in it about it being deprecated, but it should still work as is just fine. Porting maintenance scripts to the new format is easy, and will allow for greater flexibility in the future. The docs should outline how to do this. If you need anymore help, let me know here or on IRC (^demon in #mediawiki on freenode). Thanks for your questions. ^demon

user:Al Maghi - extension features request edit

  1. Hand over to commiters (I don't know how to improve the code myself):
    1. bugzilla:19632 MostRevisor.php component - Extension:MostRevisors
    2. bugzilla:19433 MultiBoilerplate.page.php component - Extension:MultiBoilerplate/Special page
  2. Need help and review for further correct work:
    1. bugzilla:19621 change SpecialUserStats_body.php component - Extension:Usage Statistics#Add-on: statistics per namespace
    2. bugzilla:19665 CooperationStatistics.php (how should be named this component?) - Extension:CooperationStatistics

--almaghi 18:30, 16 July 2009 (UTC)Reply

Committed 19632 and 19665, with some minor fixes. Left a comment on 19621. ^demon 16:37, 18 July 2009 (UTC)Reply
Could you commit https://bugzilla.wikimedia.org/attachment.cgi?id=6470&action=edit to resolve bug 19621. It adds a namespace selector to UsageStatistics component.
Further improvement could be done with still XML element and external JSย ; but this would be better in a new bug subject and I really don't manage to do it correctly. (see attachement 6471) --almaghi 14:18, 3 September 2009 (UTC)Reply

Help me with some PHP code. edit

Hey, demon. Could you help me with an issue in the Emoticons extension? This while loop in the code loops forever for some reason:

while( $nowiki_text = fnStringBetween( $text, "<nowiki>", "</nowiki>" ) )
{
	$text = str_ireplace( "<nowiki>".$nowiki_text."</nowiki>", "[nowiki".$a."]", $text );
	$text2[ $a ] = str_ireplace( $currEmoticon[ 1 ], " ".$currEmoticon[ 0 ], $nowiki_text);
	$a++;
}

Here's the fnStringBetween function:

function fnStringBetween( $string, $start, $end ) {
	$ini = strpos( $string, $start );
	if( $ini === false )
	{
		return false;
	}
	else
	{
		$ini += strlen( $start );   
		$len = strpos( $string, $end, $ini ) - $ini;
		return substr( $string, $ini, $len );
	}
}

Thanks in advance!

Techjar 20:11, 17 July 2009 (UTC)Reply

Nevermind, I fixed it! The issue was this: $ini += strlen( $start );
I just replaced it with $ini .= strlen( $start );, and it worked!
Techjar 20:33, 17 July 2009 (UTC)Reply

PHP help!! edit

Why does this function always return false, even if strlen($start) IS NOT greater than strlen($string)?

function fnStringBetween( $string, $start, $end ) {
	$string = " ".$string;
	if( !strlen($start) > strlen($string) )
	{
		$ini = strpos( $string, $start );
		if( $ini === false )
		{
			return false;
		}
		else
		{
			$ini = $ini + strlen( $start );   
			$len = strpos( $string, $end, $ini ) - $ini;
			return substr( $string, $ini, $len );
		}
	}
	else
	{
		return false;
	}
}

You need to use: if(ย !( strlen($start) > strlen($string) ) ) {. Another option would be to use <= for less than or equal to. ^demon 16:09, 18 July 2009 (UTC)Reply

my unloved extensions edit

Hey, I see a few of my extensions on your list. You can go ahead and add me for labeled section transclusion & poem. -Steve Sanbeg 14:17, 10 August 2009 (UTC)Reply

Done ^demon 14:55, 10 August 2009 (UTC)Reply

Template:Fact edit

see Template talk:Fact

Regards, --Ans 11:20, 2 September 2009 (UTC)Reply

Wikitext edit

I Would like to update Malayalam (ml) version of Sites using MediaWiki. If you can send a copy of deleted wikitext from two pages Sites using MediaWiki/ml & Template:MediaWiki Sites/ml to my email or copy paste on my talk page will be helpful. Thanks --Sadik Khalid 18:43, 18 September 2009 (UTC)Reply

Help edit

Can you add Georgian translation (แƒฅแƒแƒ แƒ—แƒฃแƒšแƒ˜) to the language bar, thank's BRUTE 16:23, 8 October 2009 (UTC)Reply

Return to the user page of "๐Ÿ˜‚/Archive".