more wikis
 
[Cizagna]

Cizagna 1,383 edits since October 30, 2006

1,383

User:Cizagna/global.js

Wikia - creating communities

Note: After saving, you have to bypass your browser's cache to see the changes.

  • Internet Explorer: hold down the Ctrl key and click the Refresh or Reload button, or press Ctrl+F5.
  • Firefox: hold down the Shift key while clicking Reload; alternatively press Ctrl+F5 or Ctrl-Shift-R.
  • Opera users have to clear their caches through Tools→Preferences
  • Konqueror and Safari users can just click the Reload button.
  • Chrome: press Ctrl+F5 or Shift+F5
 if( wgNamespaceNumber == -1 ) {
	importScriptPage('User:Cizagna/contribtools.js', 'www');
	importScriptPage('User:Cizagna/filelisttools.js', 'www');
 } else {
	importScriptPage('User:Cizagna/mwcustomeditbtns.js', 'www');
	importScriptPage('User:Cizagna/forumtools.js', 'www');
	importScriptPage('User:Cizagna/ajaxpatrollinks.js', 'www');
	importScriptPage('FastDelete/code.js', 'dev');
	// *****************************************************************
	// Adds custom automatic one-click delete tabs to any deletable page.
	var fdButtons = [];
	fdButtons[fdButtons.length] = {
	  'summary': 'Spam',
	  'label'  : 'S'};
	if ( skin != 'answers' || wgAction != 'view' ) addOnloadHook(addZeroEditSectionLink);
	// *****************************************************************
	// Subpages tab
	if(wgNamespaceNumber!=-1) addOnloadHook(function() { addTabForXSkin('ca-subpages','/wiki/Special:Prefixindex/' + encodeURIComponent(wgPageName),'Show subages of ' + wgPageName,'SubP') } );
 }
 
 
 //  *****************************************************************
 //  Adds 0 edit Link beside the title
 if (!window.$G){	window.$G = YAHOO.util.Dom.get;}
 function addZeroEditSectionLink(){
	switch( wgNamespaceNumber ) {
		case '-1':
		case '2':
		case '3':
			return;
	}
	var s = $T.create('span', {'class':'editsection',style:'float:none;position:absolute;'});
	var a = $T.create('a', {href: wgScript+'?title='+wgPageName+'&action=edit&section=0', title:'Editar la sección inicial'}, 'editar');
	$T.makeChildren([document.createTextNode('['),a,document.createTextNode(']')],s);
	(document.getElementById('content')||document.getElementById('article')).getElementsByTagName('h1')[0].appendChild(s);
 }
 
 // *****************************************************************
 // Alternating skin tabs
 function skinview() {
	var skinlink = document.location.href;
	var antiskin;
 
	if(skinlink.indexOf('?')==-1) skinlink += '?';
	else skinlink += '&';
	skinlink += 'useskin=';
 
	switch( skin ) {
		case 'awesome':
		case 'monaco_old':
		case 'monaco':
			antiskin = 'monobook';
			break;
 
		case 'uncyclopedia':
		case 'wowwiki':
		case 'lostbook':
		case 'monobook':
			antiskin = 'monaco';
			break;
 
		case 'answers':
			return;
	}
	skinlink += antiskin;
 
	addTabForXSkin('ca-skin0',skinlink,'Change skin to ' + antiskin,'CS');
 
	switch( skin ) {
		case 'uncyclopedia':
		case 'wowwiki':
		case 'lostbook':
		case 'monobook':
			addTabForXSkin('ca-skin1',skinlink + '&usetheme=custom','Change skin to ' + antiskin + ' custom','CS-C');
			break;
	}
 }
 addOnloadHook(skinview);
 
 // *****************************************************************
 // Add Tab For X Skin 
 function addTabForXSkin(id,href,title,text) {
	switch( skin ) {
		case 'answers':
		case 'awesome':
		case 'monaco_old':
		case 'monaco':
			$('<li id="' + id + '" class=""><div> </div><a href="' + href + '" rel="nofollow" title="' + title + '">' + text + '</a></li>').appendTo('#page_controls');
			break;
 
		case 'uncyclopedia':
		case 'wowwiki':
		case 'lostbook':
		case 'monobook':
			$('<li id="' + id + '"><a href="' + href + '" title="' + title + '">' + text + '</a></li>').appendTo('#p-cactions > .pBody > ul');
			break;
	}
 };