MediaWiki:Common.js

From CERES
Jump to: navigation, search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences


/* Any JavaScript here will be loaded for all users on every page load. */

jQuery(function($){ 
console.info("all"); //gives an info message with an 'i' in front of the message
console.info(mw.config.get( 'wgUserId' )); //gives an info message with an 'i' in front of the message

if ( mw.config.get( 'wgUserId' ) == null) {
var str = mw.config.get( 'wgTitle' );
var patt1=/Internal/gi;
console.info("anon"); //gives an info message with an 'i' in front of the message
if (str.match(patt1)) {
document.location.href="http://ceres.hh.se/mediawiki/";
console.info("anon+internal"); //gives an info message with an 'i' in front of the message
$jq(window).attr("location","http://ceres.hh.se/mediawiki/");
var url = "http://ceres.hh.se/mediawiki/";    
$(location).attr('href',url);
}
mw.util.addCSS( 'div.hidden_not_loggedin{display:none!important; }' );
mw.util.addCSS( '#p-tb { display: none!important; }' );
mw.util.addCSS( '#contentSub { display: none!important; }' );
mw.util.addCSS( '#ca-protect{ display:none!important; }' );
mw.util.addCSS( '#ca-watch{ display:none!important; }' );
mw.util.addCSS( '#ca-purge{ display:none!important; }' );
mw.util.addCSS( '#ca-history{ display:none!important; }' );
mw.util.addCSS( '#ca-delete{ display:none!important; }' );
mw.util.addCSS( '#ca-move{ display:none!important; }' );
mw.util.addCSS( '#ca-edit{ display:none!important; }' );
mw.util.addCSS( '#ca-talk{ display:none!important; }' );
mw.util.addCSS( '#ca-nstab-main{ display:none!important; }' );
mw.util.addCSS( '.editsection{ display:none!important; }' );
mw.util.addCSS( 'div#footer{ display:none!important; }' );
mw.util.addCSS( '#p-Internal { display: none!important; }' );
mw.util.addCSS( '#ca-viewsource { display: none!important;}' );
mw.util.addCSS( '#ca-form_edit { display: none!important;}' );
mw.util.addCSS( '#jump-to-nav { display: none!important;}' );
mw.util.addCSS( '#mw-editsection-bracket { display: none!important;}' );
mw.util.addCSS( '.printfooter { display: none!important;}' );
mw.util.addCSS( '.mw-jump { display: none!important;}' );
 }  } );