Wikipedia:WikiProject User scripts/Scripts/User Contribs Tabs

This is an old revision of this page, as edited by Minesweeper.007 (talk | contribs) at 22:54, 6 March 2007 (minor). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

//


// by:[[User:Darkest Hour]] 
 
addOnloadHook(function() {
  if (wgTitle.indexOf("/") != -1 || document.title.indexOf("- History -") != -1)  //no subpages or history
     return;
  if (wgCanonicalNamespace == "User" || wgCanonicalNamespace == "User_talk") {
     var username = encodeURIComponent( wgTitle );
     addPortletLink("p-cactions", wgServer + "/wiki/Special:Contributions/" + username, "contribs", "ca-contrib", "User contributions");
     addPortletLink("p-cactions",
http://www.math.ucla.edu/~aoleg/wp/rfa/edit_summary.cgi?username=" + username + "&site=en.wikipedia.org", "summary", "ca-summary", "summary1");
     
  }
});

//