User:DatRoot/Skins/Skin2.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. |
![]() | Documentation for this user script can be added at User:DatRoot/Skins/Skin2. This user script seems to have an accompanying .css page at User:DatRoot/Skins/Skin2.css. |
function addLink(parent, link)
{
if(typeof(link) == "string") link = document.getElementById(link);
if(!link) return;
if(typeof(parent) == "string") parent = document.getElementById(parent);
if(!parent) return;
for(parent = parent.firstChild; parent != null; parent = parent.nextSibling)
{
if(parent.className == "pBody")
{
for(parent = parent.firstChild; parent != null; parent = parent.nextSibling)
{
if(parent.nodeName == "UL")
{
parent.appendChild(link);
return link;
}
}
}
}
}
/*
* Set up the elements for the skin
*/
addOnloadHook(function ()
{
// Add "Actions" label unless in a namespace that won't have them
if(wgNamespaceNumber >= 0)
{
var actionsLabel = document.createElement("li");
actionsLabel.className = "cactionsLabel";
actionsLabel.innerHTML = "Actions>";
var firstAction = document.getElementById("ca-edit");
if(!firstAction) firstAction = document.getElementById("ca-viewsource");
if(firstAction) firstAction.parentNode.insertBefore(actionsLabel, firstAction);
}
// Rename edit link from "Edit this page" to "Edit"
var editLink = document.getElementById("ca-edit");
if(editLink) editLink.firstChild.innerHTML = "Edit";
// Rename add section link from "+" to "Add section"
var addSectionLink = document.getElementById("ca-addsection");
if(addSectionLink) addSectionLink.firstChild.innerHTML = "Add section";
// Add all page-related links to 'p-cations'
if(wgNamespaceNumber >= 0)
{
var cactions = document.getElementById("p-cactions");
addLink(cactions, document.createElement("br"));
var relatedLabel = document.createElement("li");
relatedLabel.className = "cactionsLabel";
relatedLabel.innerHTML = "Related>";
addLink(cactions, relatedLabel);
addLink(cactions, "ca-history");
addLink(cactions, "t-contributions");
addLink(cactions, "t-recentchangeslinked");
addLink(cactions, "t-whatlinkshere");
addLink(cactions, "t-emailuser");
addLink(cactions, "t-permalink");
addLink(cactions, "t-print");
addLink(cactions, "t-cite");
}
// Add some links to toolbox and move it to above search
var toolbox = document.getElementById("p-tb");
addLink(toolbox, "n-recentchanges");
addLink(toolbox, "n-randompage");
toolbox.parentNode.insertBefore(toolbox, document.getElementById("p-navigation"));
// Move search to above navigation
var search = document.getElementById("p-search");
search.parentNode.insertBefore(search, document.getElementById("p-navigation"));
/*
if(wgNamespaceNumber == 0)
addLinkElem(pageLinksElem, "t-log", "logs", "/w/index.php?title=Special:Log&page=" + wgPageName);
else
addLinkElem(pageLinksElem, "t-log", "logs", "");
// Re-order portlets
var columnOneElem = document.getElementById("column-one");
columnOneElem.insertBefore(document.getElementById("p-navigation"), columnOneElem.firstChild);
columnOneElem.insertBefore(document.getElementById("p-search"), columnOneElem.firstChild);
columnOneElem.insertBefore(toolboxElem, columnOneElem.firstChild);
*/
});