Jump to content

User:JeremyMcCracken/logstab.js

From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
addOnloadHook(logstab); //means «execute func_start later»
 
function logstab (){
 
if (wgNamespaceNumber == 2 || wgNamespaceNumber == 3) {
  //If we're in User or User talk namespace
 
var pagename;
var name1;
var name2;
 
name1=wgPageName.indexOf(":");
  //Find the colon to separate User: prefix
 
if (name1 != -1) {
  //Skip it if we didn't find a colon
  name1=name1+1;
  pagename=wgPageName.substring(name1);
}
else
{
  pagename=wgPageName;
  //if no colon, assume we have the user name already
}
 
name2=pagename.indexOf("/");
  //If it's a subpage, get root name
 
if (name2 > 0){
  //if we found a slash earlier
  pagename=pagename.substring(0,name2);
}
 
addPortletLink ('p-cactions', '/w/index.php?title=Special:Log&page=User:'+pagename, 'Logs', 1, 'View this user\'s logs'); 
  //Add the button
 
  }
//resumes here for non-user/UT pages
}