view xul/content/tree.js @ 306:9e4d3608fb71

Servlet version 1.5.1b -- the beginning of the next generation :-) - code restructuring to improve scaleability - new Initialiser servlet that must be run first - image transformation work moved to DigilibImageWorker class - Maximum number of concurrent threads limited by Semaphore - old JIMI toolkit implementation removed - new option "mo=jpg" to force sending JPEGs
author robcast
date Sun, 24 Oct 2004 23:12:56 +0200
parents bf945fcf9105
children
line wrap: on
line source

function open_link()
{
var t=document.getElementById("menu_tree");    //baum in variable t holen
var l=t.view.getItemAtIndex(t.currentIndex);	        //aus baum treeitem herausholen mit dem selected index (currentIndex)
var d=l.firstChild.firstChild.getAttribute("link");       //aus treeitem treecell (mit firstChild.firstChild) und dann dort wert von id herausholen (mit getAttribute)
if (d!=""){
  //alert(d);
  var isHera=d.search(/pythia2\.unibe\.ch/);
  if (isHera!=-1){
     window.content.location.href=d;
  }else{
     // window.content.location.href="http://hera.unibe.ch:8080/alcatraz/xul/"+d;
     window.content.location.href="http://pythia2.unibe.ch:8080/docuserver/digitallibrary/"+d;
  }
}
}