--- rat/client/Attic/code.html 2001/06/27 19:19:06 1.38 +++ rat/client/Attic/code.html 2002/05/25 20:32:10 1.58 @@ -3,6 +3,32 @@ @@ -89,19 +118,25 @@ var idxflag=-1; // 1 means currently ope // -1 means never yet opened/defined var idxmode=''; +var copydx; +var copydxflag=-1; // 1 means currently open + // 0 means closed (but has been open) + // -1 means never yet opened/defined +var copydxmode=''; + var parm; var parmflag=-1; // 1 means currently open // 0 means closed (but has been open) // -1 means never yet opened/defined var iconpath='/adm/lonIcons/'; +var raticons='/adm/rat/'; function testfunction() { inf.document.forms.resinfo.elements.t.value="ABC"; } // ------------------------------------------------ Insert a row into the table - function insertrow(j,ex1,ex2) { var kj; stored=0; @@ -120,7 +155,7 @@ function insertrow(j,ex1,ex2) { objects=objects1+':'+objects2; data1=objects.split(':'); for (kj=0;kj'); - if ((what!='') && (what!=undefined)) { - if ((obj1!='') && (obj1!=undefined)) { + if ((what!='') && (typeof(what)!="undefined")) { + if ((obj1!='') && (typeof(obj1)!="undefined")) { objref="'"+obj1+"'"; parent.mapout.document.write (''); - if (mime!='') { + +' src="'+raticons+'resource.gif">'); + if ((mime!='') && (ext!='true')) { + parent.mapout.document.write + ('
'+ + ''); + } else { parent.mapout.document.write - ('
'); + ('
'); } + parent.mapout.document.write + ('
'); } else { if (what=='c:') { parent.mapout.document.write (''); + +' src="'+raticons+'condition.gif">'); } else { if (what=='rs:') { + mime=''; + objnum=(obj1.split('&'))[1]; + if (typeof(objcont[objnum])!="undefined") { + urlparts=objcont[objnum].split(':'); + url=urlparts[1]; + ext=urlparts[2]; + urlparts=url.split('.'); + mime=urlparts[urlparts.length-1]; + if (typeof(mime)=="undefined") { mime=''; } + } parent.mapout.document.write - (''); + (''); + if ((mime!='') && (ext!='true')) { + parent.mapout.document.write + ('
'+ + ''); + } else { + parent.mapout.document.write + ('
'); + } + parent.mapout.document.write + ('
'); + } else { if (what=='rf:') { + mime=''; + objnum=(obj1.split('&'))[1]; + if (typeof(objcont[objnum])!="undefined") { + urlparts=objcont[objnum].split(':'); + url=urlparts[1]; + ext=urlparts[2]; + urlparts=url.split('.'); + mime=urlparts[urlparts.length-1]; + if (typeof(mime)=="undefined") { mime=''; } + } parent.mapout.document.write - (''); + (''); + if ((mime!='') && (ext!='true')) { + parent.mapout.document.write + ('
'+ + ''); + } else { + parent.mapout.document.write + ('
'); + } + parent.mapout.document.write + ('
'); } else { parent.mapout.document.write (''); + +' src="'+raticons+rtype+'.'+ctype+'.'+what+'.gif">'); } } } } - if ((obj1!='') && (obj1!=undefined)) { + if ((obj1!='') && (typeof(obj1)!="undefined")) { parent.mapout.document.write('
'); } } else { @@ -1010,14 +1077,13 @@ function drawcell (rtype,ctype,what,cm,o parent.mapout.document.write ( ''); + +' src="'+raticons+rtype+'.'+ctype+'.empty.gif">'); } parent.mapout.document.write(''); } } // --------------------------------------------------------- Color of resources - function rescolor (ext,typ) { var rc; var gc; var bc; if (ext=='true') { bc='55'; } else { bc='99'; } @@ -1028,7 +1094,6 @@ function rescolor (ext,typ) { } // -------------------------------------------------------- Color of conditions - function condcolor(typ) { if (typ=='stop') { return '#EEAAAA'; } if (typ=='force') { return '#AAAAEE'; } @@ -1036,7 +1101,6 @@ function condcolor(typ) { } // ----------------------------------------------------------------- Draw a row - function drawrow (jid) { var j; var jk; var k; var ck; var rtype; var objd1=new Array(); @@ -1051,7 +1115,7 @@ if (rowtype[jid]!=0) { } parent.mapout.document.writeln(''); - if ((rowcont[jid]!='') && (rowcont[jid]!=undefined)) { + if ((rowcont[jid]!='') && (typeof(rowcont[jid])!="undefined")) { data2=rowcont[jid].split(':'); for (jk=0;jkmiddle) { for (k=middle+1;kleftin;k--) { - if ((colmap4[k]!='') && (colmap4[k]!=undefined)) { + if ((colmap4[k]!='') && (typeof(colmap4[k])!="undefined")) { colmap[k]='lrt'; } else { colmap[k]='lr'; @@ -1138,7 +1202,7 @@ if (rowtype[jid]!=0) { if (rightoutmiddle) { - if ((colmap3[middle]!='') && (colmap3[middle]!=undefined)) { + if ((colmap3[middle]!='') && (typeof(colmap3[middle])!="undefined")) { colmap2[middle]='rtdl'; } else { colmap2[middle]='rtl'; @@ -1147,7 +1211,7 @@ if (rowtype[jid]!=0) { } if (leftoutleftout;k--) { - if ((colmap3[k]!='') && (colmap3[k]!=undefined)) { + if ((colmap3[k]!='') && (typeof(colmap3[k])!="undefined")) { colmap2[k]='rld'; } else { colmap2[k]='rl'; @@ -1157,7 +1221,7 @@ if (rowtype[jid]!=0) { } if (rightout>middle) { for (k=middle+1;k'+ - '
'); + '
'); data1=infostr.split('&'); if (data1[0]=='c') { inf.document.write('Condition ('); @@ -1394,13 +1453,15 @@ function info(infostr) { if (data1[0]=='r') { data2=objcont[data1[1]].split(':'); url=data2[1]; + ext=data2[2]; urlparts=url.split('.'); mime=urlparts[urlparts.length-1]; - if (mime==undefined) { mime=''; } + if (typeof(mime)=="undefined") { mime=''; } + if (ext=='true') { mime=''; } if (mime!='') { inf.document.write ('
'); + '">  '); } inf.document.write(''); if (data2[2]=='true') { inf.document.write('External '); } @@ -1448,7 +1509,6 @@ function info(infostr) { } // ------------------------------------------------ "Escapes" out special chars - function escape(instring) { var outstring=''; var thischar; @@ -1456,7 +1516,7 @@ function escape(instring) { for (k=0;k

Group Copy from Map

'+ + '
'+ + '
'); -// --------------------------------------------------------- Open search window + copydx.document.writeln(''); + copydx.focus(); +} +// --------------------------------------------------------- Open search window function srchopen(mode) { var options="scrollbars=1,resizable=1,menubar=0"; srchmode=mode; srchflag=1; - srch=open("/adm/searchcat?catalogmode=interactive","srchout",options); + srch=open("/adm/searchcat?launch=1&mode=rat&catalogmode="+mode,"srchout",options); srch.focus(); } // -------------------------------------------- Interface function to searching - function search() { alert("Searching not yet implemented"); } // ------------------------------------------------------- Do srch status check - function srchcheck(mode) { if (!srch || srch.closed || srchmode!=mode) { - srchopen(); + srchopen(mode); } srch.focus(); } // -------------------------------------------------------- Do idx status check - function idxcheck(mode) { if (!idx || idx.closed || idxmode!=mode) { idxopen(mode); @@ -1611,8 +1709,15 @@ function idxcheck(mode) { idx.focus(); } -// ---------------------------------------------------- Handles "click to edit" +// -------------------------------------------------------- Do idx status check +function copydxcheck(mode) { + if (!copydx || copydx.closed || copydxmode!=mode) { + copydxopen(mode); + } + copydx.focus(); +} +// ---------------------------------------------------- Handles "click to edit" function handler(infostr) { var k; editmode=1; @@ -1621,7 +1726,7 @@ function handler(infostr) { inf.document.clear(); inf.document.writeln( ''+ - '
'); + '
'); data1=infostr.split('&'); if (data1[0]=='c') { inf.document.writeln('Condition
'); @@ -1658,7 +1763,7 @@ function handler(infostr) { } inf.document.writeln( 'opener.infoclear();opener.editmode=0;opener.draw(' - +');">Change to above values  ' + +');">Save Changes  ' +' Reset
' +''); @@ -1675,8 +1780,6 @@ function handler(infostr) { 'opener.insertcondlink('+data1[1]+','+data1[3]+');'+ 'opener.editmode=0;opener.notclear=0;opener.infoclear();opener.draw(' +');">Insert Resource Into Link'); - - } else { if (data1[0]=='r') { if (linkmode!=0) { @@ -1732,7 +1835,7 @@ function handler(infostr) { +'+self.document.forms.resinfo.elements.e.checked+'+"':'" +'+self.document.forms.resinfo.elements.h.value+'+"':res'" +';opener.infoclear();opener.editmode=0;opener.draw();">' - +'Change to above values  ' + +'Save Changes  ' +' Reset' +'
'); if ((data2[3]!='start') && (data2[3]!='finish')) { @@ -1776,14 +1879,13 @@ function handler(infostr) { } inf.document.writeln( '
Done'); + +'opener.infoclear();">Cancel'); inf.document.writeln('
'); inf.document.close(); inf.focus(); } // ----------------------------------------------------- Clicks on empty fields - function empty(rid,k) { var cid=findcol(k); var lcol=k-1; @@ -1796,7 +1898,7 @@ function empty(rid,k) { inf.document.clear(); inf.document.writeln( ''+ - '
'+ + '
'+ 'Empty Field
'); inf.document.writeln('
Insert resource'); if ((mostrecent!=0) && (objcont[mostrecent]!='') && - (objcont[mostrecent]!=undefined)) { + (typeof(objcont[mostrecent])!="undefined")) { inf.document.writeln('
Done'); + +'opener.infoclear();">Cancel'); inf.document.writeln('
'); inf.document.close(); inf.focus(); } // ---------------------------------------------------- Save into hidden fields - function save() { var k; if (graphdef=='yes') { @@ -1912,7 +2013,6 @@ function save() { } // ----------------------------------------------- Reset all layout information - function graphreset() { var k; @@ -1935,17 +2035,12 @@ function graphreset() { objcont[0]=''; objlinks[0]=''; - if (((objcont[1]==undefined)&&(objcont[2]==undefined)) || - ((objcont[1]=='')&&(objcont[2]==''))) { - objcont[1]='Start::false:start:res' - objcont[2]='Finish::false:finish:res'; - } + graphdef='no'; } // --------------------- Compare two resources with each other for "straighten" - function rescompare(a,b) { data1=a.split(':'); data2=b.split(':'); @@ -1954,7 +2049,7 @@ function rescompare(a,b) { for (k=1;k
'); url=data1[1]; + ext=data1[2]; urlparts=url.split('.'); mime=urlparts[urlparts.length-1]; - if (mime==undefined) { mime=''; } - if (mime!='') { + if (typeof(mime)=="undefined") { mime=''; } + if ((mime!='') && (ext!='true')) { parent.mapout.document.write - ('

'+ + '

'); } parent.mapout.document.write( @@ -2058,7 +2156,7 @@ function tabledraw() { +'+parent.mapout.document.forms.r'+i+'.elements.e.checked+'+"':'" +'+parent.mapout.document.forms.r'+i+'.elements.h.value+'+"':res'" +';parent.code.draw();">' - +'Change to above values  ' + +'Save Changes  ' +' Reset

'); if ((data1[3]!='start') && (data1[3]!='finish')) { @@ -2135,7 +2233,6 @@ function tabledraw() { } // ----------------------------------------------------- Insert Resource Output - function insrestab(irow,be,af,typ) { parent.mapout.document.writeln('
'+ '
'); url=data1[1]; + ext=data1[2]; urlparts=url.split('.'); mime=urlparts[urlparts.length-1]; - if (mime==undefined) { mime=''; } - if (mime!='') { + if (typeof(mime)=="undefined") { mime=''; } + if ((mime!='') && (ext!='true')) { parent.mapout.document.write - ('

'+ + '

'); } parent.mapout.document.write(''+k+'

'); @@ -2276,7 +2380,6 @@ function simpletabledraw() { } // ---------------------------------- Sort objects to straighten graph or table - function sortobjs() { message("Sorting Resources: "+funny); var k; @@ -2298,7 +2401,7 @@ function sortobjs() { for (k=1;k