Welcome to Assassin's Creed Wiki! Log in and join the community.

User:Vatsa1708/wikia.js: Difference between revisions

From the Assassin's Creed Wiki
Jump to navigation Jump to search
imported>Vatsa1708
m ...
imported>Vatsa1708
mNo edit summary
Line 76: Line 76:


/* =================
/* =================
  * jQuery version of fillPreloads
  * Infobox preloads
* by Grunny
  * ================= */
  * ================= */
   
   
function fillPreloads() {
// ====================
// Source Editor
// ====================
 
$(function() {
        if (skin == 'oasis'){
            var $label = $('#edit_enhancements_toolbar #wpPreloadLabel');
    if (!$label.size()) {
        return;
    }
        }
 
        if (skin == 'monobook'){
    var $label = $('.editOptions #wpPreloadLabel');
    if (!$label.size()) {
        return;
    }
        }
 
$combo = $('<select />').attr('id', 'Stdpreloads').change(function() {
var val = $(this).val();
if (val != '') {
$('#wpPreloadsEnhanced,#wppreload').val(val);
}
});
        $label.prepend('<br />').prepend($combo).prepend('Preloads: ');
 
$.ajax({
'dataType': 'text',
'data': {
'title': 'Template:Stdpreloads',
'action': 'raw',
'ctype': 'text/plain'
},
'url': wgScript,
'success': function(data) {
var lines = data.split("
");
for (var i in lines) {
var val = (lines[i].indexOf('-- ') == 0) ? lines[i].substring(3) : '';
var text = (lines[i].indexOf('-- ') == 0) ? '&nbsp;&nbsp;' + lines[i].substring(3) : lines[i];
var disable = (lines[i].indexOf('-- ') == 0 || lines[i].indexOf('(') == 0) ? '' : 'disabled';
var $opt = '<option value="' + val + '" ' + disable + '>' + text + '</option>';
$combo.append($opt);
}
}
});
})
 
// ====================
// Visual Editor
// ====================
   
   
if( !$( '#lf-preload' ).length ) {
$(function() {
var $label = $('.module_content #wpPreloadLabel');
if (!$label.size()) {
return;
return;
}
}
var preloadOptionsHtml = '',
$preloadOptionsList;
   
   
$( '#lf-preload' ).attr( 'style', 'display: block' );
$combo = $('<select />').attr('id', 'stdPreload').change(function() {
var val = $(this).val();
if (val != '') {
$('#wpPreloadEnhanced,#wpPreload').val(val);
}
});
   
   
$.get( wgScript, { title: 'Template:Stdpreloads', action: 'raw', ctype: 'text/plain' }, function( data ) {
$label.after($combo);
var lines = data.split( '
 
' );
$.ajax({
for( var i = 0; i < lines.length; i++ ) {
'dataType': 'text',
var value = ( lines[i].indexOf( '-- ' ) === 0 ) ? lines[i].substring(3) : "";
'data': {
preloadOptionsHtml += '<option value="' + value + '">' + lines[i] + '</option>';
'title': 'Template:Stdpreload',
'action': 'raw',
'ctype': 'text/plain'
},
'url': wgScript,
'success': function(data) {
var lines = data.split("
");
for (var i in lines) {
var val = (lines[i].indexOf('-- ') == 0) ? lines[i].substring(3) : '';
var text = (lines[i].indexOf('-- ') == 0) ? '&nbsp;&nbsp;' + lines[i].substring(3) : lines[i];
var disable = (lines[i].indexOf('-- ') == 0 || lines[i].indexOf('(') == 0) ? '' : 'disabled';
var $opt = '<option value="' + val + '" ' + disable + '>' + text + '</option>';
$combo.append($opt);
}
}
}
$preloadOptionsList = $( '<select />' ).attr( 'id', 'stdSummaries' ).html( preloadOptionsHtml ).change( function() {
});
var value = $( this ).val();
$('.module_content #wpPreload').css({"margin-bottom": '8px'});
if ( value !== '' ) {
$('.module_content #stdPreloads').css({"width": '258px'});
value = 'Template:' + value + '/preload';
$('.module_content #stdPreloads').css({"margin-bottom": '5px'});
value = value.replace( ' ', '_' );
})
$.get( wgScript, { title: value, action: 'raw', ctype: 'text/plain' }, function( data ) {
insertAtCursor( document.getElementById( 'wpTextbox1' ), data );
} );
}
} );
$( '#lf-preload-cbox' ).html( $preloadOptionsList );
} );
$( '#lf-preload-pagename' ).html( '<input type="text" class="textbox" />' );
$( '#lf-preload-button' ).html( '<input type="button" class="button" value="Insert" onclick="doCustomPreload()" />' );
}
function doCustomPreload() {
doPreload(document.getElementById('lf-preload-pagename').getElementsByTagName('input')[0].value);
}

Revision as of 16:31, 12 January 2012

/* ######################################################################## */
/* ### AJAX RC                                                          ### */
/* ### ---------------------------------------------------------------- ### */
/* ### Description: Automatically refresh "Recent changes" via AJAX     ### */
/* ### Credit:      User:pcj (http://www.wowpedia.org)                  ### */
/* ###              User:Porter21 (fallout.wikia.com)                   ### */
/* ######################################################################## */
 
var indicator = 'http://images1.wikia.nocookie.net/assassinscreed/images/d/de/Ajax-loader.gif';
var ajaxPages = new Array('Special:RecentChanges', 'Special:WikiActivity', 'Special:NewFiles');
var ajaxTimer;
var ajaxRefresh = 30000;
var refreshText = 'Auto-refresh';
if( typeof AjaxRCRefreshText == "string" ) {
	refreshText = AjaxRCRefreshText;
}
var refreshHover = 'Enable auto-refreshing page loads';
if( typeof AjaxRCRefreshHoverText == "string" ) {
	refreshHover = AjaxRCRefreshHoverText;
}
var doRefresh = true;
 
function setCookie(c_name,value,expiredays) {
   var exdate=new Date()
   exdate.setDate(exdate.getDate()+expiredays)
   document.cookie=c_name+ "=" +escape(value) + ((expiredays==null) ? "" : ";expires="+exdate.toGMTString())
}
 
function getCookie(c_name) {
   if (document.cookie.length>0) {
      c_start=document.cookie.indexOf(c_name + "=")
      if (c_start!=-1) { 
         c_start=c_start + c_name.length+1 
         c_end=document.cookie.indexOf(";",c_start)
         if (c_end==-1) c_end=document.cookie.length
         return unescape(document.cookie.substring(c_start,c_end))
      } 
   }
   return ""
}
 
function preloadAJAXRL() {
   ajaxRLCookie = (getCookie("ajaxload-"+wgPageName)=="on") ? true:false;
   appTo = ($("#WikiaPageHeader").length)?$("#WikiaPageHeader > h1" ) : ( $( "#AdminDashboardHeader" ).length ? $( "#AdminDashboardHeader > h1" ):$(".firstHeading") );
   appTo.append('&#160;<span style="font-size: xx-small; line-height: 100%;" id="ajaxRefresh"><span style="border-bottom: 1px dotted; cursor: help;" id="ajaxToggleText" title="' + refreshHover + '">' + refreshText + ':</span><input type="checkbox" style="margin-bottom: 0;" id="ajaxToggle"><span style="display: none;" id="ajaxLoadProgress"><img src="' + indicator + '" style="vertical-align: baseline;" border="0" alt="Refreshing page" /></span></span>');
   $("#ajaxLoadProgress").ajaxSend(function (event, xhr, settings){
      if (location.href == settings.url) $(this).show();
   }).ajaxComplete (function (event, xhr, settings){
      if (location.href == settings.url) $(this).hide();
   });
   $("#ajaxToggle").click(toggleAjaxReload);
   $("#ajaxToggle").attr("checked", ajaxRLCookie);
   if (getCookie("ajaxload-"+wgPageName)=="on") loadPageData();
}
 
function toggleAjaxReload() {
   if ($("#ajaxToggle").prop("checked") == true) {
      setCookie("ajaxload-"+wgPageName, "on", 30);
      doRefresh = true;
      loadPageData();
   } else {
      setCookie("ajaxload-"+wgPageName, "off", 30);
      doRefresh = false;
      clearTimeout(ajaxTimer);
   }
}
 
function loadPageData() {
   cC = ($("#WikiaArticle").length)?"#WikiaArticle":"#bodyContent";
   $(cC).load(location.href + " " + cC + " > *", function (data) { 
      if (doRefresh) ajaxTimer = setTimeout("loadPageData();", ajaxRefresh);
   });
}
addOnloadHook(function(){ for (x in ajaxPages) { if (wgPageName == ajaxPages[x] && $("#ajaxToggle").length==0) preloadAJAXRL() } } );


/* =================
 * Infobox preloads
 * ================= */
 
// ====================
// Source Editor
// ====================

$(function() {
        if (skin == 'oasis'){
            var $label = $('#edit_enhancements_toolbar #wpPreloadLabel');
	    if (!$label.size()) {
	    	    return;
	    }
        }

        if (skin == 'monobook'){
	    var $label = $('.editOptions #wpPreloadLabel');
	    if (!$label.size()) {
	    	    return;
	    }
        }

	$combo = $('<select />').attr('id', 'Stdpreloads').change(function() {
		var val = $(this).val();
		if (val != '') {
			$('#wpPreloadsEnhanced,#wppreload').val(val);
		}
	});
 
        $label.prepend('<br />').prepend($combo).prepend('Preloads: ');

	$.ajax({
		'dataType': 'text',
		'data': {
			'title': 'Template:Stdpreloads',
			'action': 'raw',
			'ctype': 'text/plain'
		},
		'url': wgScript,
		'success': function(data) {
			var lines = data.split("
");
			for (var i in lines) {
				var val = (lines[i].indexOf('-- ') == 0) ? lines[i].substring(3) : '';
				var text = (lines[i].indexOf('-- ') == 0) ? '&nbsp;&nbsp;' + lines[i].substring(3) : lines[i];
				var disable = (lines[i].indexOf('-- ') == 0 || lines[i].indexOf('(') == 0) ? '' : 'disabled';
				var $opt = '<option value="' + val + '" ' + disable + '>' + text + '</option>';
				$combo.append($opt);
			}
		}
	});
})

// ====================
// Visual Editor
// ====================
 
$(function() {
	var $label = $('.module_content #wpPreloadLabel');
	if (!$label.size()) {
		return;
	}
 
	$combo = $('<select />').attr('id', 'stdPreload').change(function() {
		var val = $(this).val();
		if (val != '') {
			$('#wpPreloadEnhanced,#wpPreload').val(val);
		}
	});
 
	$label.after($combo);

	$.ajax({
		'dataType': 'text',
		'data': {
			'title': 'Template:Stdpreload',
			'action': 'raw',
			'ctype': 'text/plain'
		},
		'url': wgScript,
		'success': function(data) {
			var lines = data.split("
");
			for (var i in lines) {
				var val = (lines[i].indexOf('-- ') == 0) ? lines[i].substring(3) : '';
				var text = (lines[i].indexOf('-- ') == 0) ? '&nbsp;&nbsp;' + lines[i].substring(3) : lines[i];
				var disable = (lines[i].indexOf('-- ') == 0 || lines[i].indexOf('(') == 0) ? '' : 'disabled';
				var $opt = '<option value="' + val + '" ' + disable + '>' + text + '</option>';
				$combo.append($opt);
			}
		}
	});
	$('.module_content #wpPreload').css({"margin-bottom": '8px'});
	$('.module_content #stdPreloads').css({"width": '258px'});
	$('.module_content #stdPreloads').css({"margin-bottom": '5px'});
})