Wikipedia:WikiProject User scripts/Scripts/User Contribs Tabs: Difference between revisions

Content deleted Content added
maybe the space?
Amorymeltzer changed the content model of the page Wikipedia:WikiProject User scripts/Scripts/User Contribs Tabs from "wikitext" to "JavaScript": Page is javascript
 
(4 intermediate revisions by 3 users not shown)
Line 2:
 
addOnloadHook(function() {
if (mw.config.get('wgTitle').indexOf("/") != -1 || document.title.indexOf("- History -") != -1) //no subpages or history
return;
if (mw.config.get('wgCanonicalNamespace') == "User" || mw.config.get('wgCanonicalNamespace') == "User_talk") {
var username = encodeURIComponent( mw.config.get('wgTitle') );
addPortletLink("p-cactions", mw.config.get('wgServer') + "/wiki/Special:Contributions/" + username, "contribs", "ca-contrib", "User contributions");
addPortletLink("p-cactions", "http://tools.wikimedia.de/~interiot/cgi-bin/Tool1/wannabe_kate?username=" + username + "&site=en.wikipedia.org", "count", "ca-editcount", "Edit count from Interiot's Tool1");
addPortletLink("p-cactions", "http://www.math.ucla.edu/~aoleg/wp/rfa/edit_summary.cgi?user=" + username + "&site=en.wikipedia.org", "EditSummarySummary", "ca-editsummarysummary", "Edit Summary");
}
});