--- rat/client/Attic/code.html 2001/03/03 16:45:10 1.14 +++ rat/client/Attic/code.html 2001/03/15 14:43:12 1.22 @@ -10,7 +10,7 @@ Resource Assembly Tool 2/2,2/3,2/10,2/12,2/13,2/14,2/15,2/17,2/18,2/19,2/20,2/21,2/22, 5/2,5/3,5/4,5/5,5/6,5/8,5/9,5/13,5/18,5/20,5/22,5/24,5/25, 6/7,6/8,6/9,6/10,6/12,6/15,7/4,7/26,7/28,7/31,8/5,8/19,8/24, -01/17/01,03/03 Gerd Kortemeyer with Scott Harrison +01/17/01,03/03,03/05 Gerd Kortemeyer with Scott Harrison --> @@ -72,6 +72,11 @@ var data4=new Array(1024); var data5=new Array(1024); var inf; +var srch; + +function testfunction() { + inf.document.forms.resinfo.elements.t.value="ABC"; +} // ------------------------------------------------ Insert a row into the table @@ -1281,7 +1286,9 @@ function infoclear() { } inf.document.writeln(''); inf.document.close(); - parent.focus(); + srchclose(); + + parent.top.focus(); parent.mapout.focus(); notclear=1; lastinfo=''; @@ -1374,7 +1381,7 @@ function info(infostr) { } inf.document.writeln(''); inf.document.close(); - parent.focus(); + parent.top.focus(); parent.mapout.focus(); notclear=0; lastinfo=infostr; @@ -1453,6 +1460,46 @@ function insertcondlink(cid,lnr) { joinres(nobj,tobj,0); } + + + +// ------------------------------------------------------- Clears search window + +function srchclear() { + srch.document.clear(); +} + +// ------------------------------------------------------- Closes search window + +function srchclose() { + if (srch) { + srch.close(); + } +} + +// --------------------------------------------------------- Open search window + +function srchopen() { + var options="scrollbars=1,resizable=1,menubar=0"; + srch=open("/adm/searchcat?catalogmode=interactive","srchout",options); + srch.focus(); +} + +// -------------------------------------------- Interface function to searching + +function search() { + alert("Searching not yet implemented"); +} + +// ------------------------------------------------------- Do srch status check + +function srchcheck() { + if (!srch || srch.closed) { + srchopen(); + } + srch.focus(); +} + // ---------------------------------------------------- Handles "click to edit" function handler(infostr) { @@ -1540,16 +1587,16 @@ function handler(infostr) { } } inf.document.write( - '
Title:' + ''); if ((data2[3]!='start') && (data2[3]!='finish')) { - inf.document.write('' +'' - +'' + +''); } inf.document.writeln( - '
Title:' +'
URL:' + inf.document.write('
URL:' +'
External:
' + inf.document.write('>Search
' +'
' +'Insert resource linked to from above
'); @@ -1983,7 +2031,9 @@ function insrestab(irow,be,af,typ) { '' +'Insert resource linked to from above and linking to below
'); @@ -1993,6 +2043,7 @@ function insrestab(irow,be,af,typ) { '' +'Insert resource linking to below
'); @@ -2454,6 +2505,9 @@ function leave() { if (!inf.closed) { inf.close(); } + if (!srch.closed) { + srchclose(); + } }