Revision as of 21:09, 14 June 2006 view sourceKylu (talk | contribs)9,405 editsm userlog.js loaded twice. Probably why I saw two links huh.← Previous edit | Revision as of 05:45, 2 July 2006 view source Kylu (talk | contribs)9,405 edits cleaning up a bitNext edit → | ||
Line 18: | Line 18: | ||
// Name me a regular editor who DOESN'T use this... | // Name me a regular editor who DOESN'T use this... | ||
inc("User:Interiot/Tool2/code.js"); | inc("User:Interiot/Tool2/code.js"); | ||
//editcount.js just adds an "Edit count" link to the toolbox | //editcount.js just adds an "Edit count" link to the toolbox | ||
//You MUST have Tool2 included to use this! | //You MUST have Tool2 included to use this! | ||
Line 27: | Line 28: | ||
// GodMode. Sometimes handy, sometimes not. | // GodMode. Sometimes handy, sometimes not. | ||
//inc("User:Kylu/godmode.js"); | //inc("User:Kylu/godmode.js"); | ||
// DISABLED! | |||
// Sam Hocevar's godmode.js (if his doesn't work, there's no helping it) | // Sam Hocevar's godmode.js (if his doesn't work, there's no helping it) | ||
inc("User:Sam_Hocevar/monobook.js"); | inc("User:Sam_Hocevar/monobook.js"); | ||
// Dynabars | |||
inc("User:Kylu/dynabars.js"); | |||
// Popups | // Popups | ||
inc("User:Lupin/popups.js"); | inc("User:Lupin/popups.js"); | ||
⚫ | // Spellchecker | ||
inc("User:Voice_of_All/replacetxt.js"); | |||
⚫ | // Google Tools | ||
inc("User:Voice_of_All/Google/monobook.js"); | |||
⚫ | // UTC Clock | ||
inc("User:Voice_of_All/UTCclock.js"); | |||
//or the VoA monobook (which includes popups) | //or the VoA monobook (which includes popups) | ||
Line 62: | Line 76: | ||
/* END OF POPUPS STUFF */ | /* END OF POPUPS STUFF */ | ||
⚫ | // Google |
||
document.write('<script type="text/javascript" src="' | |||
+ 'http://en.wikipedia.org/search/?title=User:Voice_of_All/Google/monobook.js' | |||
+ '&action=raw&ctype=text/javascript&dontcountme=s"></script>'); | |||
// | |||
⚫ | // UTC |
||
/* document.write('<script type="text/javascript" src="' | |||
+ 'http://en.wikipedia.org/search/?title=User:Voice_of_All/UTCclock.js' | |||
+ '&action=raw&ctype=text/javascript&dontcountme=s"></script>'); */ | |||
// | |||
⚫ | //Spellchecker | ||
document.write('<script type="text/javascript" src="' | |||
+ 'http://en.wikipedia.org/search/?title=User:Voice_of_All/replacetxt.js' | |||
+ '&action=raw&ctype=text/javascript&dontcountme=s"></script>'); | |||
// | |||
/* </code></pre> */ | /* </code></pre> */ |
Revision as of 05:45, 2 July 2006
/* <pre><code> */ /*** ]'s include function ***/ function inc (file) { var lt = String.fromCharCode(60); var gt = String.fromCharCode(62); document.writeln(lt+'script type="text/javascript" src="/search/?title='+file+'&action=raw&ctype=text/javascript&dontcountme=s"'+gt+lt+'/script'+gt); } /*********************************************************************************/ // * SCRIPT SECTION: INCLUDED SCRIPTS * // /*********************************************************************************/ // Some of my extra editing stuff. // (Currently under development, I keep it commented out so it // doesn't interfere with vandal-fighting.) //inc("User:Kylu/extra.js"); // Name me a regular editor who DOESN'T use this... inc("User:Interiot/Tool2/code.js"); //editcount.js just adds an "Edit count" link to the toolbox //You MUST have Tool2 included to use this! inc("User:Kylu/editcount.js"); //Adds "user logs" to the toolbox. inc("User:Kylu/userlog.js"); // GodMode. Sometimes handy, sometimes not. //inc("User:Kylu/godmode.js"); // DISABLED! // Sam Hocevar's godmode.js (if his doesn't work, there's no helping it) inc("User:Sam_Hocevar/monobook.js"); // Dynabars inc("User:Kylu/dynabars.js"); // Popups inc("User:Lupin/popups.js"); // Spellchecker inc("User:Voice_of_All/replacetxt.js"); // Google Tools inc("User:Voice_of_All/Google/monobook.js"); // UTC Clock inc("User:Voice_of_All/UTCclock.js"); //or the VoA monobook (which includes popups) inc("User:VoA/monobook.js"); // Popups options: simplePopups = false; popupAdminLinks = false; popupFixRedirs = true; popupFixDabs = true; popupDelay = 0.15; popupSubpopups = false; popupNavLinkSeparator = ' • '; popupRedirAutoClick = 'wpPreview'; //Beta! popupLiveOptions=true; //Lets you change frequently-changed Popups options while in-use popupLiveOptionsExpanded=false; //Starts with the options tab open on popover (annoying) // Everyone knows what PopUps are, why advertize? // Will happily remove this section if anyone complains. popupRedlinkSummary='Removing link to empty page ]'; popupFixDabsSummary='Disambiguate ] to ]'; popupFixRedirsSummary='Redirect bypass from ] to ]'; popupExtendedRevertSummary='Revert to revision dated %s by %s, oldid %s'; popupRevertToPreviousSummary='Revert to the revision prior to revision %s'; popupRevertSummary='Revert to revision %s'; popupRmDabLinkSummary='Remove link to dab page ]'; /* END OF POPUPS STUFF */ /* </code></pre> */