User:Free edits/vector.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 can be added at User:Free edits/vector.css. |
// Add [[WP:Reflinks]] launcher in the toolbox on left
$(function () {
mw.util.addPortletLink(
"p-tb", // toolbox portlet
"http://dispenser.homenet.org/~dispenser/cgi-bin/webreflinks.py/" + mw.config.get('wgPageName')
+ "?client=script&citeweb=on&overwrite=&limit=20&lang=" + mw.config.get('wgContentLanguage'),
"Reflinks" // link label
)});
/* This script adds the Page Curation link to the top toolbar; the link combines the two main Page Curation
features, namely the Special:NewPagesFeed and the curation toolbar. It is primarily designed to
assist new page reviewers. Page Curation is a feature-rich purpose-built system to review new pages.
Be sure to have read and fully understood the instructions at New Pages Patrol. To use the script,
add the following line to Special:MyPage/common.js:
importScript('User:Lourdes/PageCuration.js'); // Linkback: [[User:Lourdes/PageCuration.js]]
*/
$( document ).ready( function() {
mw.util.addPortletLink(
'p-personal',
mw.util.getUrl('Special:NewPagesFeed'),
'Page Curation',
'pt-pagecuration',
'View Special:New Pages using the Page Curation tool',
null,
'#pt-preferences'
);
});
window.hotcat_use_category_links = true;
// Stub tag tab. Original version by [[User:ais523]], on a request by [[User:thesublime514]].
// This version of the script is based on work by [[User:MC10]].
// Enhancements made on requests by [[User:Alai]], [[User:jj137]], and [[User:Sam Sailor]].
// This file is [[User:ais523/stubtagtab2.js]], based on [[User:MC10/stubtagtab.js]]
(function ($) { // Wrap with anonymous function
function stubTagTab() {
var $h, $hb, $newa,
// A list of subpages of WikiProject Stub sorting/Stub types/ that are relevant to this
a = ['General', 'Architecture', 'Commerce', 'Culture', 'Education', 'Geography', 'Government, law, and politics',
'History', 'Leisure', 'Military and weaponry', 'Organizations', 'People',
'Religion, mythology, faiths, and beliefs', 'Science', 'Sports', 'Technology', 'Transport',
'Miscellaneous'];
$h = $("<div></div>", {
"color": "#000000",
"background-color": "#fff8f8"
});
for (var i = 0; i < a.length; i++) {
$newa = $("<a href=\"#\"></a>");
$newa.click(function (e) {
e.preventDefault();
stubTagMenu($(this).text());
});
$newa.text(a[i]);
$h.append($newa);
if ((i + 1) < a.length) {
$h.append(" • ");
}
}
$("#contentSub").append($h);
$hb = $("<div></div>", {
"color": "#000000",
"background-color": "#fffff8"
});
$hb.attr("id", "stubtagmenu");
$("#contentSub").append($hb);
}
function stubTagMenuRender(data) {
var $parseData = $(data.parse.text["*"]);
$parseData.find("a").each(function () {
var link = $(this).attr("href"),
index = link.indexOf("Template:");
if (index === -1) {
$(this).attr({
"href": null,
"title": null
});
$(this).css({
"color": "#000000",
"text-decoration": "none"
});
} else {
$(this).attr("href", mw.config.get("wgServer") + mw.config.get("wgScript")
+ "?title=" + encodeURIComponent(mw.config.get("wgPageName"))
+ "&action=edit&autoaddstubtag=" + encodeURIComponent(link.slice(index + 9)));
}
});
$("#stubtagmenu").html($parseData);
}
function stubTagMenuFail() {
$("#stubtagmenu").html("Failed to load stub tags.");
}
function stubTagMenu(stubType) {
// Add loading message
$("#stubtagmenu").html("Loading stub tags, please wait...");
// Fetch the relevant subpage of the WikiProject
$.ajax({
url: mw.config.get("wgServer") + mw.config.get("wgScriptPath") + '/api.php?action=parse&prop=text&text=' + encodeURIComponent('__NOTOC____NOEDITSECTION__\{\{Wikipedia:WikiProject Stub sorting/Stub types/' + stubType + '}}') + '&format=json',
dataType: "json",
success: stubTagMenuRender,
error: stubTagMenuFail
});
}
$(function () {
if ((mw.config.get("wgNamespaceNumber") === 0 ||
mw.config.get("wgPageName") === "Wikipedia:Sandbox")
&& mw.config.get("wgAction") === "view" && $("#ca-edit").length !== 0) {
var portletLink = mw.util.addPortletLink('p-cactions', '#', 'Stub', 'ca-stubtag', 'Add a stub tag to this page', '');
$(portletLink).click(function (e) {
e.preventDefault();
stubTagTab();
});
}
if (location.href.indexOf("&autoaddstubtag=") !== -1 && $("#wpTextbox1").length !== 0) {
var x = decodeURIComponent(location.href.split("&autoaddstubtag=")[1]);
if (x.indexOf("-stub") === -1 && x !== "Stub") {
x += "-stub";
}
$("#wpTextbox1").val($("#wpTextbox1").val() + "\n{" + "{" + x + "}}"); // add to the end of the article
$("#wpSummary").val("Tagging with {" + "{" + x + "}} ([[User:ais523/stubtagtab2.js|StubTagTab]])");
$("#wpPreview").trigger("click");
}
});
} (jQuery)); // End wrap with anonymous function
// [[Category:Wikipedia scripts]]