User:EWikist/monobook.js

From Wikipedia, the free encyclopedia
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.
importScript('User:VoA/monobook.js');

//[[Category:Wikipedians who use RC script]]
importScript('User:MarkS/extraeditbuttons.js'); //[[User:MarkS/extraeditbuttons.js]]
<div style="float:right; border:1px solid #0099CC; margin:1px;">
{| cellspacing="0" style="width:238px; background: #CCCC33;"
| style="width:45px; height:45px; background: #0099CC; text-align:center; font-size:14pt; color:black;" | [[Image:Vista-advancedsettings.png|45px]]
| style="font-size:8pt; padding:4pt; line-height:1.25em; color:black;" | This user is a member of the<br/>[[Wikipedia:WikiProject User scripts|User scripts WikiProject]].
|}</div>

== JavaScript ==

=== statusChanger ===

{{notice|It has been repeatedly reported that this script '''does not work''' under Internet Explorer 7 and/or Windows Vista. A workaround solution (other than installing [[Mozilla Firefox]] (or possibly [[Opera (web browser)|Opera]]), which is BTW '''highly recommended''') may or may not be developed.}}

This module will add 3 new links beside the "log out" link. These will be "in", "busy" and "out" for quickly changing your current Wikipedia status.

To enable this, first add the following line to [[Special:Mypage/monobook.js|your monobook file]]:

<source lang=javascript>
importScript('User:Misza13/statusChanger.js');
</source>

Additionally, you'll need two additional pages:
# [[Special:Mypage/Status]]
# [[Special:Mypage/StatusTemplate]]

The first one is the one modified by the script to hold '''<nowiki>{{User:Example/StatusTemplate|STATUS}}</nowiki>''', where "STATUS" will be one of "in", "busy", "out". Then it is up to the "Template" to render it the way you wish. An example is:

<source lang=javascript>
'''<div style="border: 1px solid black; background: white; float: right; position: relative; top: -30px; padding: 5px">
Example's status: {{ #switch: {{{1}}}
 | in=<span style="color: green;">IN</span>
 | busy=<span style="color: #FFAA00;">BUSY</span>
 | out=<span style="color: red;">OUT</span>
}}
</div>'''
</source>

You can tweak it to look whatever you like.

Then all you need is to put '''<nowiki>{{User:Example/Status}}</nowiki>''' on whatever pages you want the status to be displayed.

You can also define your own range of statuses using this statement (put it right after the<tt>importScript</tt> statement):

<source lang=javascript>
statusChangerConfig = {
  statusList : [ 'in', 'busy', 'school', 'work', 'out' ],
};
</source>
Make sure your template knows how to handle these new values.

[[Category:Wikipedia scripts]]

=== watchlistSorter ===

This tool that sorts your watchlist by [[WP:NS|namespace]] making it easier to browse for important edits - not recommended for people with thousands of pages watched. Not compatible with Internet Explorer. Not compatible with "Enhanced recent changes" option in Preferences.

To install it, add the following to [[Special:Mypage/monobook.js|your monobook]]:

<source lang=javascript>
if (wgPageName == 'Special:Watchlist') {
  importScript('User:Misza13/watchlistSorter.js');
}
</source>

=== viewSource ===

This code will create a new button called '''[view source]''' to the left of the '''[edit this page]''' button (unless you're already editing a page or the page is protected). Technically, it takes you to editing the page, but removes the interface (edit summary box, minor edit and watch checkboxes, save/preview/show changes buttons) below the editing box. This will prevent you from accidentally saving the page if you were just playing with the content.

To install it, add the following to [[Special:Mypage/monobook.js|your monobook]]:

<source lang=javascript>
importScript('User:Misza13/viewSource.js');
</source>

== [[m:pywikipedia|pywikipedia]] scripts ==

*[[User:Misza13/ace_voter.py]] - ArbCom Election voting script
*[[User:Misza13/spoilerkill.py]] - interactive script to aid in the removal of redundant {{tl|spoiler}} (and related) tags from articles
*[[User:Misza13/browseCSD.py]]

== MediaWiki template stuff ==

Other random stuff I've created:
*[[User:Misza13/vote]] is the ultimate voting template! All in one, but since [[m:voting is evil|voting is evil]] and such templates have been pretty controversial in the past, '''use it at your own risk'''.
*[[User:Misza13/CURRENTMINUTEOFDAY]] is a template that translates '''<nowiki>{{CURRENTTIME}}</nowiki>''' (i.e. '''{{CURRENTTIME}}''') into a number of minutes passed since midnight: '''{{User:Misza13/CURRENTMINUTEOFDAY}}'''
*[[User:Misza13/Random]] is a Wiki-[[random number generator|RNG]]! See for yourself!