User:Ta bu shi da yu/monobook.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
The accompanying .css page for this skin is at User:Ta bu shi da yu/monobook.css. |
// Veropedia script
importScript('User:^demon/vero.js');
// Script from [[User:Lupin/editcount.js]]
document.write('<script type="text/javascript" src="'
+ 'http://en.wikipedia.org/w/index.php?title=User:Lupin/editcount.js'
+ '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
popupEditCounterTool='custom';
popupEditCounterUrl='http://en.wikipedia.org/wiki/User:$1?ectarget=$1';
// Script from [[User:Lupin/recent2.js]]
mw.loader.load(
'https://en.wikipedia.org/w/index.php?title=User:Lupin/recent2.js'
+ '&action=raw&ctype=text/javascript&dontcountme=s');
/* Lupo's tool */
function makerawlink (name, url)
{
/* Creates a link pointing to "url", displaying "name" */
var link = document.createElement('a');
link.setAttribute('href', url);
link.appendChild(document.createTextNode(name));
return link;
}
function getElementsByClassName (class_name)
{
/* Returns an array of all elements having the class "class_name". This simplified version
works only for single classes. If the length of the returned array is zero, no such
elements were found. */
var all_obj;
var result=new Array();
var j = 0;
if (document.all) /* For IE */
all_obj=document.all;
else if (document.getElementsByTagName && !document.all) /* For Mozilla/Firefox */
all_obj=document.getElementsByTagName ("*");
for (i = 0; i < all_obj.length; i++)
{
if (all_obj[i].className == class_name)
{
result[j] = all_obj[i]; j++;
}
}
return result;
}
function addLeadSectionTab () {
/* Only add new tab if the page is editable and has section editing links. */
if (getElementsByClassName('editsection').length > 0) {
var edit_tab = document.getElementById ('ca-edit');
if (edit_tab != null) {
var href_for_lead = edit_tab.firstChild.getAttribute ('href') + "§ion=0";
var first_title = getElementsByClassName ('firstHeading');
if (first_title.length > 0) {
/* We have a "firstHeading": put "[edit]" to its right */
var edit_div = document.createElement ('div');
edit_div.setAttribute ('class', 'editsection');
edit_div.setAttribute ('style', 'float:right;margin-left:5px;');
edit_div.appendChild (document.createTextNode ('['));
edit_div.appendChild (makerawlink ("edit", href_for_lead));
edit_div.appendChild (document.createTextNode (']'));
first_title[0].parentNode.insertBefore (edit_div, first_title[0]);
} else {
/* No first title found: create a tab */
var new_tab = document.createElement ('li');
new_tab.id = 'ca-editlead';
var link = makerawlink ("Edit lead", href_for_lead);
new_tab.appendChild (link);
edit_tab.parentNode.appendChild (new_tab);
}
}
}
}
function myCustomizations ()
{
addLeadSectionTab ();
/* Add future customizations here... */
}
if (window.addEventListener) window.addEventListener("load",myCustomizations,false);
else if (window.attachEvent) window.attachEvent("onload",myCustomizations)