Jëfandikukat:DerHexer/monobook.js

Jóge Wikiquote.

Karmat : Soo dence xët wi ba noppi, faaw nga far nëmbiitu sa joowukaay ngir man a gis say coppite, te nga, su dee Mozilla / Firefox / Safari : cuq ci yeesal te bësaale shift, walla nga bës Shift-R walla Ctrl-F5 (Command-R ci Mac ), su dee Konqueror: cuq yeesal walla nga bës F5; su dee Opera faral nëbiit li (Jumtukaay → Tànneef) su dee Internet Explorer: cuq ci yeesal te bësaale Ctrl walla nga bës Ctrl-F5.

 // get URL parameters (used for page type variables)
 var UrlParameters = new Array ();
 readparams();
 
 function readparams() {
  var asReadInUrlParameters;
  var asReadInUrlParameter;
 
  // Get URL parameters
  asReadInUrlParameters = location.search.substring(1, location.search.length).split("&");
  for (i = 0; i < asReadInUrlParameters.length; i++) {
    asReadInUrlParameter = asReadInUrlParameters[i].split("=");
    UrlParameters[decodeURIComponent(asReadInUrlParameter[0])] = decodeURIComponent(asReadInUrlParameter[1]);
  }
 }
 
 function fillActionPage() {
   document.forms["blockip"].wpBlockReason.value = UrlParameters["blockreason"];
   document.forms["blockip"].wpBlockOther.value = UrlParameters["blockduration"];
   window.setTimeout(function() { document.forms["blockip"].wpBlock.click(); }, 100);
 }
 
 
 if ( UrlParameters["blockreason"] > '') {
   addOnloadHook(fillActionPage);
 }