User:Misza13/Scripts

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.

User:Misza13/Scripts
This user is a member of the
User scripts WikiProject.

JavaScript

statusChanger

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 your monobook file:

importScript('User:Misza13/statusChanger.js');

Additionally, you'll need two additional pages:

  1. Special:Mypage/Status
  2. Special:Mypage/StatusTemplate

The first one is the one modified by the script to hold {{User:Example/StatusTemplate|STATUS}}, 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:

<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>

You can tweak it to look whatever you like.

Then all you need is to put {{User:Example/Status}} 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 importScript statement):

statusChangerConfig = {
  statusList : [ 'in', 'busy', 'school', 'work', 'out' ],
};

Make sure your template knows how to handle these new values.

watchlistSorter

This tool that sorts your watchlist by 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 your monobook:

if (mw.config.get('wgPageName') == 'Special:Watchlist') {
  importScript('User:Misza13/watchlistSorter.js');
}

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 your monobook:

importScript('User:Misza13/viewSource.js');

pywikipedia scripts

MediaWiki template stuff

Other random stuff I've created:

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.