Difference between revisions of "MediaWiki:Common.js"

From Biowikifarm Metawiki
Jump to: navigation, search
(New page: // <source lang="javascript"> Any JavaScript here will be loaded for all users on every page load.: /*** *** Special javascript code to support highlighting of targets of internal li...)
 
Line 1: Line 1:
 
// <source lang="javascript">
 
// <source lang="javascript">
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
 +
 
/***
 
/***
  *** Special javascript code to support highlighting of targets of internal links. The code works generically, but has  
+
  *** Highlight all targets of page-internal links. The code works generically, but has  
  ***  special options for use with single-access identification keys.
+
  ***  special options for single-access identification keys.
 
  *** by Gregor Hagedorn, Nov. 2008
 
  *** by Gregor Hagedorn, Nov. 2008
 
  ***/
 
  ***/
 
 
function highlight_target(caller) {
 
function highlight_target(caller) {
 
/* Highlight a single element that is the target of the caller (which must always be a link object, e.g. <a href=...>)
 
/* Highlight a single element that is the target of the caller (which must always be a link object, e.g. <a href=...>)
 
   USAGE: highlight_target(this) */  
 
   USAGE: highlight_target(this) */  
  if (caller.pathname==location.pathname && caller.hash.length>0) { /* = page internal link */
 
    var ref = caller.hash.substring(1, caller.hash.length); /* substring strips leading hash */
 
    var target = document.getElementById(ref);
 
    /* style.fontSize="120%" moves lines up/down..., style.color="#800000" (= dark red) is too strong. */
 
    target.style.textDecoration = "blink underline"; /* blink for x seconds */
 
    target.style.backgroundColor = "#FFCC50";
 
    window.setTimeout("highlight_reset("+ref+","+target.style.backgroundColor+")", 2000);
 
    /*### TEST of row highlighting, works only for rwo 2 */
 
    var target = document.getElementById(ref+"row");
 
    target.style.backgroundColor = "#FFCC50";
 
    target.style.border = "solid red 1px";
 
    }
 
 
/* LATER: perhaps try elem.scrollIntoView() instead of the normal hyperlink action */
 
/* LATER: perhaps try elem.scrollIntoView() instead of the normal hyperlink action */
 +
/* style.fontSize="120%" moves lines up/down..., style.color="#FFCC50" (= nice orange) is too strong. */
 +
/* I HAVE NO CLUE WHY BORDER DOES NOT WORK: target.style.border = "2px dashed red"; */
 +
var idref = caller.hash.substring(1, caller.hash.length); /* substring strips leading hash */
 +
highlight_targetx( idref,      "",        "",              "blink underline");
 +
highlight_targetx( idref+"row", "#FFEEA0", "2px dashed red", "none");
 
}
 
}
  
function highlight_reset(ref, old_backcolor) {
+
function highlight_targetx(idref, backgroundColor, border, txtdeco) {
 +
/* subfunction of highlight_target, for a single target element */
 +
var target = document.getElementById(idref);
 +
var reset_string = "highlight_reset(\""+idref+"\",\""+target.style.backgroundColor+"\",\""+target.style.border+"\",\""+target.style.textDecoration+"\")";
 +
target.style.backgroundColor = backgroundColor;
 +
target.style.border          = border;
 +
target.style.textDecoration  = txtdeco;
 +
window.setTimeout(reset_string, 2000);
 +
}
 +
 
 +
function highlight_reset(idref, old_bcolor, old_border, old_txtdeco) {
 
/* Stop highlighting (blinking and background color) */  
 
/* Stop highlighting (blinking and background color) */  
if (ref != "") { /* remove previous highlight: */
+
if (idref != "") { /* remove previous highlight: */
  var e = document.getElementById(ref)
+
var e = document.getElementById(idref);
  e.style.backgroundColor = old_backcolor;
+
e.style.backgroundColor = old_bcolor;
  e.style.textDecoration = "none";
+
e.style.border          = old_border; /* reset value may be "" for no border! */
  }
+
if (old_txtdeco == "") old_txtdeco = "none";
 +
e.style.textDecoration  = old_txtdeco;
 +
}
 
}
 
}
  
 
function add_target_highlighting() {
 
function add_target_highlighting() {
 
/* Add the necessary onclick events to all page-internal links.  
 
/* Add the necessary onclick events to all page-internal links.  
  Registration is done through anonymous function calling highlight_target(); Note: "this" must be passed as parameter since valid only in the anonymous function, but not in  highlight_target()! */
+
Registration is done through anonymous function calling highlight_target();  
  var elements = document.getElementsByTagName('a');
+
Note: "this" must be passed as parameter since valid only in the anonymous function, but not in  highlight_target()! */
  for (var i = 0, max = elements.length; i < max; i++) {
+
for (var i = 0, max = document.links.length; i < max; i++) {
     elements[i].onclick = function(){highlight_target(this)};  
+
  lnk = document.links[i];
 +
  if (lnk.pathname==location.pathname && lnk.hash.length>0) { /* = is page internal link */
 +
     document.links[i].onclick = function(){highlight_target(this)};
 
   }
 
   }
 +
}
 
}
 
}
  

Revision as of 01:34, 18 November 2008

// <source lang="javascript">
/* Any JavaScript here will be loaded for all users on every page load. */

/***
 *** Highlight all targets of page-internal links. The code works generically, but has 
 ***  special options for single-access identification keys.
 *** by Gregor Hagedorn, Nov. 2008
 ***/
function highlight_target(caller) {
/* Highlight a single element that is the target of the caller (which must always be a link object, e.g. <a href=...>)
   USAGE: highlight_target(this) */ 
/* LATER: perhaps try elem.scrollIntoView() instead of the normal hyperlink action */
/* style.fontSize="120%" moves lines up/down..., style.color="#FFCC50" (= nice orange) is too strong. */
/* I HAVE NO CLUE WHY BORDER DOES NOT WORK: target.style.border = "2px dashed red"; */
var idref = caller.hash.substring(1, caller.hash.length); /* substring strips leading hash */
highlight_targetx( idref,       "",        "",               "blink underline");
highlight_targetx( idref+"row", "#FFEEA0", "2px dashed red", "none");
}

function highlight_targetx(idref, backgroundColor, border, txtdeco) {
 /* subfunction of highlight_target, for a single target element */ 
 var target = document.getElementById(idref);
 var reset_string = "highlight_reset(\""+idref+"\",\""+target.style.backgroundColor+"\",\""+target.style.border+"\",\""+target.style.textDecoration+"\")";
 target.style.backgroundColor = backgroundColor;
 target.style.border          = border;
 target.style.textDecoration  = txtdeco;
 window.setTimeout(reset_string, 2000);
}

function highlight_reset(idref, old_bcolor, old_border, old_txtdeco) {
/* Stop highlighting (blinking and background color) */ 
if (idref != "") { /* remove previous highlight: */
 var e = document.getElementById(idref);
 e.style.backgroundColor = old_bcolor;
 e.style.border          = old_border; /* reset value may be "" for no border! */
 if (old_txtdeco == "") old_txtdeco = "none";
 e.style.textDecoration  = old_txtdeco;
 }
}

function add_target_highlighting() {
/* Add the necessary onclick events to all page-internal links. 
Registration is done through anonymous function calling highlight_target(); 
Note: "this" must be passed as parameter since valid only in the anonymous function, but not in  highlight_target()! */
 for (var i = 0, max = document.links.length; i < max; i++) {
  lnk = document.links[i];
  if (lnk.pathname==location.pathname && lnk.hash.length>0) { /* = is page internal link */
    document.links[i].onclick = function(){highlight_target(this)};
  }
 }
}

addOnloadHook(add_target_highlighting);

// </source>