User:BNutzer/monobook.js

From Wikipedia, the free encyclopedia

If a message on your talk page led you here, please be wary of who left it. The code below could contain malicious content capable of compromising your account; if your account appears to be compromised, it will be blocked. If you are unsure whether the code is safe, you can ask at the appropriate village pump.
Note: After saving, you have to bypass your browser's cache to see the changes. In Internet Explorer and Firefox, hold down the Ctrl key and click the Refresh or Reload button. Opera users have to clear their caches through Tools→Preferences, see the instructions for Opera. Konqueror and Safari users can just click the Reload button.
 importScript('User:TheDJ/Gadget-HotCat.js');
 
 importScript('User:Lupin/popups.js');
 popupFixDabs = true;
 popupFixRedirs = true;
 popupPreviewKillTemplates = false;
 popupPreviewFirstParOnly = false;
 
 importScript('User:Outriggr/metadatatest.js');
// importScript('User:BNutzer/outriggr.js');
// assessmentMyProjects = ["WPBiography", "Album", "LGBTProject", "WikiProject China", "WikiProject Finland", "WikiProject France", "WikiProject Russia", "WikiProject Germany", "WikiProject Wales", "WPE",];
//   assessmentMyTemplateCode = ["{"+"{WPBiography|class=|listas=}}"]; 
   assessmentMyTemplateCode = ["{"+"{WPBiography|class=}}"]; 
   assessmentDefaultProject = "WPBiography"; 
   assessmentDefaultWorkGroup = "musician-work-group";
   assessmentOverrideWatchPref = true;
 
 
//  importScript('User:Kollision/bioassessment.js');
//      defaultWorkgroup = "|musician-work-group=yes";
//      defaultProject = "WP  Biography";
 
    importScript('User:AzaToth/morebits.js');
    importScript('User:AzaToth/twinklefluff.js');
    importScript('User:Ioeth/friendlytag.js');
FriendlyConfig = {
        watchTaggedPages                :       false,
        markTaggedPagesAsMinor          :       false
};
    importScript('Wikipedia:WikiProject User scripts/Scripts/Add LI menu');
    importStylesheet('Wikipedia:WikiProject User scripts/Scripts/Add LI menu/css');
    importScript('User:AzaToth/twinklewarn.js');
    importScript('User:AzaToth/twinklearv.js');
    importScript('User:AzaToth/twinklespeedy.js');
    importScript('User:AzaToth/twinklediff.js');
    importScript('User:AzaToth/twinkleprotect.js');
 
///--------------------------------------------------------------------------
///   Edit first section only
///--------------------------------------------------------------------------
// This will add an [edit] link at the top of all pages except preview pages and the main page
// by User:Pile0nades
 
// Add an [edit] link to pages
addOnloadHook(function () {
  // if this is preview page or generated page, stop
  if(
    document.getElementById("wikiPreview") ||
    document.getElementById("histlegend‎") ||
    document.getElementById("difference‎") ||
    document.getElementById("watchdetails") ||
    document.getElementById("ca-viewsource") ||
    window.location.href.indexOf("/wiki/Special:") != -1
  ) {
    if(window.location.href.indexOf("&action=edit&section=0") != -1) {
      document.getElementById("wpSummary").value = "/* Intro */ ";
    }
    return;
  };
 
  // get the page title
  var pageTitle = wgPageName;
 
  // create div and set innerHTML to link
  var divContainer = document.createElement("div");
  divContainer.innerHTML = '<div class="editsection">[<a href="/w/index.php?title='+pageTitle+'&action=edit&section=0" title="Edit section: '+pageTitle+'">edit intro</a>]</div>';
 
  // insert divContainer into the DOM below the h1
  if(window.location.href.indexOf("&action=edit") == -1) {
    document.getElementById("content").insertBefore(divContainer, document.getElementsByTagName("h1")[0]);
  }
 
});
 
///--------------------------------------------------------------------------
///   Sidebar shortcuts to my most used Wikipedia pages
///--------------------------------------------------------------------------
 
 // [[User:Jsimlo/shortcuts.js]]
 document.write('<script type="text/javascript" src="' 
             + 'http://en.wikipedia.org/w/index.php?title=User:Jsimlo/shortcuts.js' 
             + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
 
 function shortcutsInit ()
 {
 
  shortcutsAddLink ('Links', 'User:');
//  shortcutsAddLink ('Watchlist', 'Special:Watchlist');
//  shortcutsAddLink ('Contribs', 'Special:Contributions/Mahanga');
  shortcutsAddLink ('Monobook', 'Special:Mypage/monobook.js');
  shortcutsAddLink ('Bookmarks', 'Special:Mypage/bookmarks');
 
 shortcutsStartSection ('wikipedia');
 
  shortcutsAddLink ('WP:1.0', 'WP:1.0');
  shortcutsAddLink ('Assessment Drive', 'Wikipedia:WikiProject Biography/Assessment/Assessment Drive/Spring 2008');
  shortcutsAddLink ('metadatatest.js', 'User_talk:Outriggr/metadatatest.js');
  shortcutsAddLink ('Unassessed musicians', ':Category:Unassessed biography (musicians) articles');
  shortcutsAddLink ('Uncategorized bands', ':Category:Uncategorised musical groups');
  shortcutsAddLink ('Canterbury sound', 'Category:Canterbury sound');
  shortcutsAddLink ('WikiProject Jazz', 'Wikipedia:WikiProject_Jazz');
 
  shortcutsAddLink ('German music groups', 'Category:German_musical_groups');
  shortcutsAddLink ('GA candidates', 'Wikipedia:Good article candidates');
 
  }