version 1.30, 2001/05/01 15:23:40
|
version 1.40, 2001/07/04 18:19:53
|
Line 14 Resource Assembly Tool
|
Line 14 Resource Assembly Tool
|
March/April 01 Scott Harrison |
March/April 01 Scott Harrison |
04/20 Gerd Kortemeyer |
04/20 Gerd Kortemeyer |
04/30 Scott Harrison |
04/30 Scott Harrison |
|
05/31 Scott Harrison |
|
06/11,06/25,06/27,06/28,06/29,07/04 Gerd Kortemeyer |
--> |
--> |
|
|
|
|
Line 79 var srch;
|
Line 81 var srch;
|
var srchflag=-1; // 1 means currently open |
var srchflag=-1; // 1 means currently open |
// 0 means closed (but has been open) |
// 0 means closed (but has been open) |
// -1 means never yet opened/defined |
// -1 means never yet opened/defined |
|
var srchmode=''; |
|
|
|
var idx; |
|
var idxflag=-1; // 1 means currently open |
|
// 0 means closed (but has been open) |
|
// -1 means never yet opened/defined |
|
var idxmode=''; |
|
|
|
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/'; |
|
|
function testfunction() { |
function testfunction() { |
inf.document.forms.resinfo.elements.t.value="ABC"; |
inf.document.forms.resinfo.elements.t.value="ABC"; |
Line 923 function delres (obj1,recon) {
|
Line 939 function delres (obj1,recon) {
|
|
|
function drawcell (rtype,ctype,what,cm,obj1,ej,ek,ne) { |
function drawcell (rtype,ctype,what,cm,obj1,ej,ek,ne) { |
var bgcolor; |
var bgcolor; |
|
var url=''; |
|
var urlparts=new Array; |
|
var mime; |
|
var ext; |
|
var objref; |
|
var objnum; |
|
|
if ((what=='') && (ne==0)) { cm="#DDDDDD"; } |
if ((what=='') && (ne==0)) { cm="#DDDDDD"; } |
if (ctype!=0) { |
if (ctype!=0) { |
parent.mapout.document.write('<td bgcolor='+cm+' width='+cw[ctype]+'>'); |
parent.mapout.document.write('<td bgcolor='+cm+' width='+cw[ctype]+'>'); |
if ((what!='') && (what!=undefined)) { |
if ((what!='') && (what!=undefined)) { |
if ((obj1!='') && (obj1!=undefined)) { |
if ((obj1!='') && (obj1!=undefined)) { |
obj1="'"+obj1+"'"; |
objref="'"+obj1+"'"; |
parent.mapout.document.write |
parent.mapout.document.write |
('<a href="javascript:parent.code.handler('+obj1 |
('<a href="javascript:parent.code.handler('+objref |
+');" onMouseOver="parent.code.info('+obj1+');">'); |
+');" onMouseOver="parent.code.info('+objref+');">'); |
} |
} |
if (what=='r:') { |
if (what=='r:') { |
|
mime=''; |
|
objnum=(obj1.split('&'))[1]; |
|
if (objcont[objnum]!=undefined) { |
|
urlparts=objcont[objnum].split(':'); |
|
url=urlparts[1]; |
|
ext=urlparts[2]; |
|
urlparts=url.split('.'); |
|
mime=urlparts[urlparts.length-1]; |
|
if (mime==undefined) { mime=''; } |
|
} |
parent.mapout.document.write |
parent.mapout.document.write |
('<img border=0 width='+cw[ctype]+' height='+rh[rtype] |
('<img border=0 width='+cw[ctype]+' height='+rh[1] |
+' src="resource.gif">'); |
+' src="resource.gif">'); |
|
if ((mime!='') && (ext!='true')) { |
|
parent.mapout.document.write |
|
('<br><img border=0 src="left.gif"></a><a target="preview" href="'+ |
|
url+'.meta"><img border=0 src="'+iconpath+ |
|
'meta.gif"><a target="preview" href="'+url+ |
|
'"><img border=0 src="'+iconpath+mime+'.gif">'+ |
|
'<img border=0 src="right.gif">'); |
|
} else { |
|
parent.mapout.document.write |
|
('<br><img border=0 src="middle.gif">'); |
|
} |
|
parent.mapout.document.write |
|
('<br><img border=0 src="bottom.gif">'); |
} else { |
} else { |
if (what=='c:') { |
if (what=='c:') { |
parent.mapout.document.write |
parent.mapout.document.write |
Line 944 function drawcell (rtype,ctype,what,cm,o
|
Line 990 function drawcell (rtype,ctype,what,cm,o
|
+' src="condition.gif">'); |
+' src="condition.gif">'); |
} else { |
} else { |
if (what=='rs:') { |
if (what=='rs:') { |
|
mime=''; |
|
objnum=(obj1.split('&'))[1]; |
|
if (objcont[objnum]!=undefined) { |
|
urlparts=objcont[objnum].split(':'); |
|
url=urlparts[1]; |
|
ext=urlparts[2]; |
|
urlparts=url.split('.'); |
|
mime=urlparts[urlparts.length-1]; |
|
if (mime==undefined) { mime=''; } |
|
} |
parent.mapout.document.write |
parent.mapout.document.write |
('<img border=0 width='+cw[ctype]+' height='+rh[rtype] |
('<img border=0 width='+cw[ctype]+' height='+rh[1] |
+' src="start.gif">'); |
+' src="start.gif">'); |
|
if ((mime!='') && (ext!='true')) { |
|
parent.mapout.document.write |
|
('<br><img border=0 src="left.gif"></a><a target="preview" href="'+ |
|
url+'.meta"><img border=0 src="'+iconpath+ |
|
'meta.gif"><a target="preview" href="'+url+ |
|
'"><img border=0 src="'+iconpath+mime+'.gif">'+ |
|
'<img border=0 src="right.gif">'); |
|
} else { |
|
parent.mapout.document.write |
|
('<br><img border=0 src="middle.gif">'); |
|
} |
|
parent.mapout.document.write |
|
('<br><img border=0 src="bottom.gif">'); |
|
|
} else { |
} else { |
if (what=='rf:') { |
if (what=='rf:') { |
|
mime=''; |
|
objnum=(obj1.split('&'))[1]; |
|
if (objcont[objnum]!=undefined) { |
|
urlparts=objcont[objnum].split(':'); |
|
url=urlparts[1]; |
|
ext=urlparts[2]; |
|
urlparts=url.split('.'); |
|
mime=urlparts[urlparts.length-1]; |
|
if (mime==undefined) { mime=''; } |
|
} |
parent.mapout.document.write |
parent.mapout.document.write |
('<img border=0 width='+cw[ctype]+' height='+rh[rtype] |
('<img border=0 width='+cw[ctype]+' height='+rh[1] |
+' src="finish.gif">'); |
+' src="finish.gif">'); |
|
if ((mime!='') && (ext!='true')) { |
|
parent.mapout.document.write |
|
('<br><img border=0 src="left.gif"></a><a target="preview" href="'+ |
|
url+'.meta"><img border=0 src="'+iconpath+ |
|
'meta.gif"><a target="preview" href="'+url+ |
|
'"><img border=0 src="'+iconpath+mime+'.gif">'+ |
|
'<img border=0 src="right.gif">'); |
|
} else { |
|
parent.mapout.document.write |
|
('<br><img border=0 src="middle.gif">'); |
|
} |
|
parent.mapout.document.write |
|
('<br><img border=0 src="bottom.gif">'); |
} else { |
} else { |
parent.mapout.document.write |
parent.mapout.document.write |
('<img border=0 width='+cw[ctype]+' height='+rh[rtype] |
('<img border=0 width='+cw[ctype]+' height='+rh[rtype] |
Line 1295 function infoclear() {
|
Line 1388 function infoclear() {
|
if (srchflag==1) { |
if (srchflag==1) { |
srchclose(); |
srchclose(); |
} |
} |
|
if (idxflag==1) { |
|
idxclose(); |
|
} |
|
if (parmflag==1) { |
|
parmclose(); |
|
} |
parent.top.focus(); |
parent.top.focus(); |
parent.mapout.focus(); |
parent.mapout.focus(); |
notclear=1; |
notclear=1; |
Line 1320 function infcheck() {
|
Line 1419 function infcheck() {
|
// --------------------------------------------------- Prints out resource info |
// --------------------------------------------------- Prints out resource info |
|
|
function info(infostr) { |
function info(infostr) { |
|
var mime=''; |
|
var ext; |
|
var urlparts=new Array; |
|
var url=''; |
if ((editmode!=1) && (infostr!=lastinfo)) { |
if ((editmode!=1) && (infostr!=lastinfo)) { |
notclear=1; |
notclear=1; |
infcheck(); |
infcheck(); |
Line 1350 function info(infostr) {
|
Line 1453 function info(infostr) {
|
} else { |
} else { |
if (data1[0]=='r') { |
if (data1[0]=='r') { |
data2=objcont[data1[1]].split(':'); |
data2=objcont[data1[1]].split(':'); |
inf.document.write('<b>'); |
url=data2[1]; |
|
ext=data2[2]; |
|
urlparts=url.split('.'); |
|
mime=urlparts[urlparts.length-1]; |
|
if (mime==undefined) { mime=''; } |
|
if (ext=='true') { mime=''; } |
|
if (mime!='') { |
|
inf.document.write |
|
('<br><a target="preview" align="right" href="'+url+ |
|
'"><img border=0 src="'+iconpath+mime+'.gif"></a> '); |
|
} |
|
inf.document.write('<b>'); |
if (data2[2]=='true') { inf.document.write('External '); } |
if (data2[2]=='true') { inf.document.write('External '); } |
if (data2[3]=='start') { |
if (data2[3]=='start') { |
inf.document.writeln('<b>Start</b>'); |
inf.document.writeln('<b>Start</b>'); |
Line 1470 function insertcondlink(cid,lnr) {
|
Line 1584 function insertcondlink(cid,lnr) {
|
|
|
|
|
|
|
|
// ------------------------------------------------------ Clears indexer window |
|
|
|
function idxclear() { |
|
idx.document.clear(); |
|
} |
|
|
// ------------------------------------------------------- Clears search window |
// ------------------------------------------------------- Clears search window |
|
|
function srchclear() { |
function srchclear() { |
srch.document.clear(); |
srch.document.clear(); |
} |
} |
|
|
|
// --------------------------------------------------------- Clears parm window |
|
|
|
function parmclear() { |
|
parm.document.clear(); |
|
} |
|
|
|
// ------------------------------------------------------ Closes indexer window |
|
|
|
function idxclose() { |
|
if (idx && !idx.closed) { |
|
idxflag=0; |
|
idx.close(); |
|
} |
|
} |
|
|
// ------------------------------------------------------- Closes search window |
// ------------------------------------------------------- Closes search window |
|
|
function srchclose() { |
function srchclose() { |
Line 1485 function srchclose() {
|
Line 1620 function srchclose() {
|
} |
} |
} |
} |
|
|
|
// ------------------------------------------------------- Closes search window |
|
|
|
function parmclose() { |
|
if (parm && !parm.closed) { |
|
parmflag=0; |
|
parm.close(); |
|
} |
|
} |
|
|
|
// -------------------------------------------------------- Open indexer window |
|
|
|
function idxopen(mode) { |
|
var options="scrollbars=1,resizable=1,menubar=0"; |
|
idxmode=mode; |
|
idxflag=1; |
|
idx=open("/res?catalogmode="+mode,"idxout",options); |
|
idx.focus(); |
|
} |
|
|
// --------------------------------------------------------- Open search window |
// --------------------------------------------------------- Open search window |
|
|
function srchopen() { |
function srchopen(mode) { |
var options="scrollbars=1,resizable=1,menubar=0"; |
var options="scrollbars=1,resizable=1,menubar=0"; |
|
srchmode=mode; |
srchflag=1; |
srchflag=1; |
srch=open("/adm/searchcat?catalogmode=interactive","srchout",options); |
srch=open("/adm/searchcat?catalogmode=interactive","srchout",options); |
srch.focus(); |
srch.focus(); |
Line 1502 function search() {
|
Line 1657 function search() {
|
|
|
// ------------------------------------------------------- Do srch status check |
// ------------------------------------------------------- Do srch status check |
|
|
function srchcheck() { |
function srchcheck(mode) { |
if (!srch || srch.closed) { |
if (!srch || srch.closed || srchmode!=mode) { |
srchopen(); |
srchopen(); |
} |
} |
srch.focus(); |
srch.focus(); |
} |
} |
|
|
|
// -------------------------------------------------------- Do idx status check |
|
|
|
function idxcheck(mode) { |
|
if (!idx || idx.closed || idxmode!=mode) { |
|
idxopen(mode); |
|
} |
|
idx.focus(); |
|
} |
|
|
// ---------------------------------------------------- Handles "click to edit" |
// ---------------------------------------------------- Handles "click to edit" |
|
|
function handler(infostr) { |
function handler(infostr) { |
Line 1556 function handler(infostr) {
|
Line 1720 function handler(infostr) {
|
} |
} |
inf.document.writeln( |
inf.document.writeln( |
'opener.infoclear();opener.editmode=0;opener.draw(' |
'opener.infoclear();opener.editmode=0;opener.draw(' |
+');"><b>Change to above values</b></a> ' |
+');"><b>Save Changes</b></a> ' |
+' <a href="javascript:self.document.forms.condinfo.reset()">Reset</a><br>' |
+' <a href="javascript:self.document.forms.condinfo.reset()">Reset</a><br>' |
+'<input type=hidden name=h value='+data2[1]+'>'); |
+'<input type=hidden name=h value='+data2[1]+'>'); |
|
|
Line 1599 function handler(infostr) {
|
Line 1763 function handler(infostr) {
|
'<form name=resinfo><table><tr><td>Title:</td><td colspan=2>' |
'<form name=resinfo><table><tr><td>Title:</td><td colspan=2>' |
+'<input type=text name=t size=30 value="' |
+'<input type=text name=t size=30 value="' |
+data2[0]+'"><input type=hidden name=h value='+data2[3]+'></td></tr>'); |
+data2[0]+'"><input type=hidden name=h value='+data2[3]+'></td></tr>'); |
if ((data2[3]!='start') && (data2[3]!='finish')) { |
|
inf.document.write('<tr><td>URL:</td><td colspan=2>' |
inf.document.write('<tr><td>URL:</td><td colspan=2>' |
+'<input type=text name=u size=30 value="'+data2[1]+'"></td></tr>' |
+'<input type=text name=u size=30 value="'+data2[1]+'"></td></tr>' |
+'<tr><td>External:</td><td><input type=checkbox name=e'); |
+'<tr><td>External:</td><td><input type=checkbox name=e'); |
if (data2[2]=='true') { inf.document.write(' checked'); } |
if (data2[2]=='true') { inf.document.write(' checked'); } |
inf.document.write('></td><td align=right><a href="javascript:opener.srchcheck()">Search</a></td></tr>' |
inf.document.write('></td><td align=right>' |
+'<tr><td colspan=3>' |
+'<a href="javascript:opener.idxcheck(\'interactive\')">Browse</a> ' |
|
+'<a href="javascript:opener' |
|
+'.srchcheck(\'interactive\')">Search</a></td></tr>'); |
|
if ((data2[3]!='start') && (data2[3]!='finish')) { |
|
inf.document.write('<tr><td colspan=3>' |
+'<input type=radio name=y value=normal '+ |
+'<input type=radio name=y value=normal '+ |
'onClick="self.document.forms.resinfo.elements.h.value='+"'normal'"+'"'); |
'onClick="self.document.forms.resinfo.elements.h.value='+"'normal'"+'"'); |
if (data2[3]=='normal') { inf.document.write(' checked'); } |
if (data2[3]=='normal') { inf.document.write(' checked'); } |
Line 1618 function handler(infostr) {
|
Line 1785 function handler(infostr) {
|
'onClick="self.document.forms.resinfo.elements.h.value='+"'optional'"+'"'); |
'onClick="self.document.forms.resinfo.elements.h.value='+"'optional'"+'"'); |
if (data2[3]=='optional') { inf.document.write(' checked'); } |
if (data2[3]=='optional') { inf.document.write(' checked'); } |
inf.document.write('> Optional</td></tr>'); |
inf.document.write('> Optional</td></tr>'); |
} else { |
} |
inf.document.write( |
|
'<tr><td><input type=hidden name=e value=false>' |
|
+'<input type=hidden name=u value=""></td></tr>'); |
|
} |
|
inf.document.writeln( |
inf.document.writeln( |
'<tr><td colspan=3><a href="javascript:opener.editmode=0;' |
'<tr><td colspan=3><a href="javascript:opener.editmode=0;' |
+'opener.notclear=0;opener.objcont['+data1[1] |
+'opener.notclear=0;opener.objcont['+data1[1] |
Line 1631 function handler(infostr) {
|
Line 1794 function handler(infostr) {
|
+'+self.document.forms.resinfo.elements.e.checked+'+"':'" |
+'+self.document.forms.resinfo.elements.e.checked+'+"':'" |
+'+self.document.forms.resinfo.elements.h.value+'+"':res'" |
+'+self.document.forms.resinfo.elements.h.value+'+"':res'" |
+';opener.infoclear();opener.editmode=0;opener.draw();">' |
+';opener.infoclear();opener.editmode=0;opener.draw();">' |
+'<b>Change to above values</b></a> ' |
+'<b>Save Changes</b></a> ' |
+' <a href="javascript:self.document.forms.resinfo.reset()">Reset</a>' |
+' <a href="javascript:self.document.forms.resinfo.reset()">Reset</a>' |
+'</td></tr></table>'); |
+'</td></tr></table>'); |
if ((data2[3]!='start') && (data2[3]!='finish')) { |
if ((data2[3]!='start') && (data2[3]!='finish')) { |
Line 1675 function handler(infostr) {
|
Line 1838 function handler(infostr) {
|
} |
} |
inf.document.writeln( |
inf.document.writeln( |
'<br><a href="javascript:opener.editmode=0;opener.notclear=0;' |
'<br><a href="javascript:opener.editmode=0;opener.notclear=0;' |
+'opener.infoclear();">Done</a>'); |
+'opener.infoclear();">Cancel</a>'); |
inf.document.writeln('</form></td></tr></table></body></html>'); |
inf.document.writeln('</form></td></tr></table></body></html>'); |
inf.document.close(); |
inf.document.close(); |
inf.focus(); |
inf.focus(); |
Line 1745 function empty(rid,k) {
|
Line 1908 function empty(rid,k) {
|
|
|
inf.document.writeln( |
inf.document.writeln( |
'<br><a href="javascript:opener.editmode=0;opener.notclear=0;' |
'<br><a href="javascript:opener.editmode=0;opener.notclear=0;' |
+'opener.infoclear();">Done</a>'); |
+'opener.infoclear();">Cancel</a>'); |
inf.document.writeln('</td></tr></table></body></html>'); |
inf.document.writeln('</td></tr></table></body></html>'); |
inf.document.close(); |
inf.document.close(); |
inf.focus(); |
inf.focus(); |
Line 1786 function save() {
|
Line 1949 function save() {
|
} |
} |
parent.server.document.forms.storage.output.value+= |
parent.server.document.forms.storage.output.value+= |
'<&>tablemode<:>'+tablemode; |
'<&>tablemode<:>'+tablemode; |
|
|
|
for (k=0;k<objparms.length;k++) { |
|
if (objparms[k]) { |
|
parent.server.document.forms.storage.output.value+= |
|
'<&>objparms<:>'+k+'<:>'+objparms[k]; |
|
} |
|
} |
for (k=0;k<objcont.length;k++) { |
for (k=0;k<objcont.length;k++) { |
if (objcont[k]) { |
if (objcont[k]) { |
parent.server.document.forms.storage.output.value+= |
parent.server.document.forms.storage.output.value+= |
Line 1867 function tabledraw() {
|
Line 2036 function tabledraw() {
|
var ck; |
var ck; |
var cck; |
var cck; |
var condid; |
var condid; |
|
var url=''; |
|
var mime=''; |
|
var urlparts=new Array; |
var sortstr=sortobjs(); |
var sortstr=sortobjs(); |
insrestab(1,-1,-1,''); |
insrestab(1,-1,-1,''); |
if ((sortstr!='') && (sortstr!=undefined)) { |
if ((sortstr!='') && (sortstr!=undefined)) { |
Line 1885 function tabledraw() {
|
Line 2057 function tabledraw() {
|
} |
} |
data1=objcont[i].split(':'); |
data1=objcont[i].split(':'); |
ck=rescolor(data1[2],data1[3]); |
ck=rescolor(data1[2],data1[3]); |
parent.mapout.document.write('<tr><td bgcolor="'+ck |
parent.mapout.document.write('<tr><td bgcolor="'+ck+'">'); |
+'"><b><a href="javascript:if (parent.code.linkmode!=0) { ' |
url=data1[1]; |
|
urlparts=url.split('.'); |
|
mime=urlparts[urlparts.length-1]; |
|
if (mime==undefined) { mime=''; } |
|
if (mime!='') { |
|
parent.mapout.document.write |
|
('<a target="preview" align="right" href="'+url+'.meta'+ |
|
'"><img src="'+iconpath+'meta.gif"></a><p>'+ |
|
'<a target="preview" align="right"href="'+url+ |
|
'"><img src="'+iconpath+mime+'.gif"></a><p>'); |
|
} |
|
parent.mapout.document.write( |
|
'<b><a href="javascript:if (parent.code.linkmode!=0) { ' |
+'parent.code.joinres(parent.code.linkmode,'+i+',0);' |
+'parent.code.joinres(parent.code.linkmode,'+i+',0);' |
+'parent.code.linkmode=0;parent.code.editmode=0;' |
+'parent.code.linkmode=0;parent.code.editmode=0;' |
+'parent.code.notclear=0;parent.code.infoclear();' |
+'parent.code.notclear=0;parent.code.infoclear();' |
Line 1894 function tabledraw() {
|
Line 2078 function tabledraw() {
|
+'"><form name=r'+i+' method=post>'); |
+'"><form name=r'+i+' method=post>'); |
data2=obj[i].split('&'); |
data2=obj[i].split('&'); |
parent.mapout.document.write('<table bgcolor="#CCCCCC">'); |
parent.mapout.document.write('<table bgcolor="#CCCCCC">'); |
|
|
if (data1[3]=='start') { |
if (data1[3]=='start') { |
parent.mapout.document.writeln('<tr><td><b>Start</b></td></tr>'); |
parent.mapout.document.writeln('<tr><td><b>Start</b></td></tr>'); |
} |
} |
Line 1904 function tabledraw() {
|
Line 2089 function tabledraw() {
|
'<tr><td>Title:</td><td><input type=text name=t size=50 value="' |
'<tr><td>Title:</td><td><input type=text name=t size=50 value="' |
+data1[0]+'"><input type=hidden name=h value='+data1[3] |
+data1[0]+'"><input type=hidden name=h value='+data1[3] |
+'></td></tr>'); |
+'></td></tr>'); |
if ((data1[3]!='start') && (data1[3]!='finish')) { |
|
parent.mapout.document.write( |
parent.mapout.document.write( |
'<tr><td>URL:</td><td><input type=text name=u size=50 value="' |
'<tr><td>URL:</td><td><input type=text name=u size=50 value="' |
+data1[1]+'"></td></tr>' |
+data1[1]+'"></td></tr>' |
+'<tr><td>External:</td><td><input type=checkbox name=e'); |
+'<tr><td>External:</td><td><input type=checkbox name=e'); |
if (data1[2]=='true') { parent.mapout.document.write(' checked'); } |
if (data1[2]=='true') { parent.mapout.document.write(' checked'); } |
parent.mapout.document.write('></td></tr>' |
parent.mapout.document.write('></td></tr>'); |
+'<tr><td colspan=2><input type=radio name=y value=normal '+ |
if ((data1[3]!='start') && (data1[3]!='finish')) { |
|
parent.mapout.document.write( |
|
'<tr><td colspan=2><input type=radio name=y value=normal '+ |
'onClick="parent.mapout.document.forms.r'+i+'.elements.h.value='+ |
'onClick="parent.mapout.document.forms.r'+i+'.elements.h.value='+ |
"'normal'"+'"'); |
"'normal'"+'"'); |
if (data1[3]=='normal') { parent.mapout.document.write(' checked'); } |
if (data1[3]=='normal') { parent.mapout.document.write(' checked'); } |
Line 1926 function tabledraw() {
|
Line 2112 function tabledraw() {
|
"'optional'"+'"'); |
"'optional'"+'"'); |
if (data1[3]=='optional') { parent.mapout.document.write(' checked'); } |
if (data1[3]=='optional') { parent.mapout.document.write(' checked'); } |
parent.mapout.document.write('> Optional</td></tr>'); |
parent.mapout.document.write('> Optional</td></tr>'); |
} else { |
} |
parent.mapout.document.write( |
|
'<tr><td><input type=hidden name=u value="">' |
|
+'<input type=hidden name=e value=false></td></tr>'); |
|
} |
|
parent.mapout.document.write( |
parent.mapout.document.write( |
'<tr><td colspan=2><a href="javascript:parent.code.objcont['+i |
'<tr><td colspan=2><a href="javascript:parent.code.objcont['+i |
+']=parent.code.escape(parent.mapout.document.forms.r'+i |
+']=parent.code.escape(parent.mapout.document.forms.r'+i |
Line 1940 function tabledraw() {
|
Line 2122 function tabledraw() {
|
+'+parent.mapout.document.forms.r'+i+'.elements.e.checked+'+"':'" |
+'+parent.mapout.document.forms.r'+i+'.elements.e.checked+'+"':'" |
+'+parent.mapout.document.forms.r'+i+'.elements.h.value+'+"':res'" |
+'+parent.mapout.document.forms.r'+i+'.elements.h.value+'+"':res'" |
+';parent.code.draw();">' |
+';parent.code.draw();">' |
+'<b>Change to above values</b></a> ' |
+'<b>Save Changes</b></a> ' |
+' <a href="javascript:parent.mapout.document.forms.r'+i |
+' <a href="javascript:parent.mapout.document.forms.r'+i |
+'.reset()">Reset</a></td></tr><tr><td colspan=2>'); |
+'.reset()">Reset</a></td></tr><tr><td colspan=2>'); |
if ((data1[3]!='start') && (data1[3]!='finish')) { |
if ((data1[3]!='start') && (data1[3]!='finish')) { |
Line 2089 function simpletabledraw() {
|
Line 2271 function simpletabledraw() {
|
} |
} |
data1=objcont[i].split(':'); |
data1=objcont[i].split(':'); |
ck=rescolor(data1[2],data1[3]); |
ck=rescolor(data1[2],data1[3]); |
parent.mapout.document.write('<tr><td bgcolor="'+ck |
parent.mapout.document.write('<tr><td bgcolor="'+ck+'">'); |
+'"><b>'+k+'</b></td><td bgcolor="'+ck |
url=data1[1]; |
+'">'); |
urlparts=url.split('.'); |
|
mime=urlparts[urlparts.length-1]; |
|
if (mime==undefined) { mime=''; } |
|
if (mime!='') { |
|
parent.mapout.document.write |
|
('<a target="preview" align="right" href="'+url+'.meta'+ |
|
'"><img src="'+iconpath+'meta.gif"></a><p>'+ |
|
'<a target="preview" align="right"href="'+url+ |
|
'"><img src="'+iconpath+mime+'.gif"></a><p>'); |
|
} |
|
parent.mapout.document.write('<b>'+k+'</b></td><td bgcolor="'+ck+'">'); |
data2=obj[i].split('&'); |
data2=obj[i].split('&'); |
parent.mapout.document.write('<table>'); |
parent.mapout.document.write('<table>'); |
|
|
if (data1[3]=='start') { |
if (data1[3]=='start') { |
parent.mapout.document.writeln('<tr><td><b>Start</b></td></tr>'); |
parent.mapout.document.writeln('<tr><td><b>Start</b></td></tr>'); |
} |
} |
Line 2312 function condense() {
|
Line 2505 function condense() {
|
function load() { |
function load() { |
message("Loading"); |
message("Loading"); |
schedule('load'); |
schedule('load'); |
checkdef(); |
|
} |
} |
|
|
function finishload() { |
function finishload() { |
Line 2339 function finishload() {
|
Line 2531 function finishload() {
|
if (data2[0]=='obj') { obj[data2[1]]=data2[2]; } |
if (data2[0]=='obj') { obj[data2[1]]=data2[2]; } |
if (data2[0]=='objcont') { objcont[data2[1]]=data2[2]; } |
if (data2[0]=='objcont') { objcont[data2[1]]=data2[2]; } |
if (data2[0]=='objlinks') { objlinks[data2[1]]=data2[2]; } |
if (data2[0]=='objlinks') { objlinks[data2[1]]=data2[2]; } |
|
if (data2[0]=='objparms') { |
|
if (objparms[data2[1]]==undefined) { |
|
objparms[data2[1]]=data2[2]; |
|
} else { |
|
objparms[data2[1]]+=':'+data2[2]; |
|
} |
|
} |
if (data2[0]=='rowcont') { rowcont[data2[1]]=data2[2]; } |
if (data2[0]=='rowcont') { rowcont[data2[1]]=data2[2]; } |
if (data2[0]=='row') { row[data2[1]]=1*data2[2]; } |
if (data2[0]=='row') { row[data2[1]]=1*data2[2]; } |
if (data2[0]=='col') { col[data2[1]]=1*data2[2]; } |
if (data2[0]=='col') { col[data2[1]]=1*data2[2]; } |
Line 2357 function finishload() {
|
Line 2556 function finishload() {
|
// -------------------------------------------------------------- Parameter set |
// -------------------------------------------------------------- Parameter set |
|
|
function setparms(resid) { |
function setparms(resid) { |
alert('Called setparms for '+resid); |
var options="scrollbars=1,resizable=1,menubar=0"; |
|
parmflag=1; |
|
data1=objcont[resid].split(':'); |
|
parm=open("/adm/ratparms?url="+data1[1]+"&parms="+objparms[resid]+ |
|
"&resid="+resid,"parmout",options); |
|
parm.focus(); |
} |
} |
|
|
// -------------------------------------------------------------- Undo function |
// -------------------------------------------------------------- Undo function |
Line 2422 function wheelswitch() {
|
Line 2626 function wheelswitch() {
|
// --------------------------------------------- Checks if server frame defined |
// --------------------------------------------- Checks if server frame defined |
|
|
function checkdef() { |
function checkdef() { |
// if (parent.server!=undefined) { |
|
// if (parent.server.document!=undefined) { |
|
// if (parent.server.document.forms.storage.output.value!=undefined) { |
|
// srvloaded(); |
|
// } |
|
// } |
|
// } |
|
if (parent.flag==1) { |
if (parent.flag==1) { |
srvloaded(); |
srvloaded(); |
} |
} |
Line 2459 function schedule(action) {
|
Line 2656 function schedule(action) {
|
reqaction=action; |
reqaction=action; |
tim=0; |
tim=0; |
finishdone=0; |
finishdone=0; |
canceltim=setTimeout('tim=1;',20000) |
canceltim=setTimeout('tim=1;',20000); |
|
checkdef(); |
wait(); |
wait(); |
} |
} |
|
|
|
// ----------------------------------------------------- launch indexer browser |
|
|
|
function groupsearch() { |
|
alert('not yet implemented'); |
|
} |
|
|
|
function groupimport() { |
|
idxcheck('groupimport'); |
|
} |
|
|
// -------------------------------------------------------------- Store changes |
// -------------------------------------------------------------- Store changes |
|
|
function storechange() { |
function storechange() { |
var k; |
var k; |
|
parent.flag=0; |
parent.server.document.forms.storage.submit(); |
parent.server.document.forms.storage.submit(); |
schedule('save'); |
schedule('save'); |
} |
} |
Line 2524 function leave() {
|
Line 2733 function leave() {
|
if (srch && !srch.closed) { |
if (srch && !srch.closed) { |
srchclose(); |
srchclose(); |
} |
} |
|
if (idx && !idx.closed) { |
|
srchclose(); |
|
} |
} |
} |
|
|
</script> |
</script> |
Line 2538 function leave() {
|
Line 2750 function leave() {
|
<a href="javascript:revert();">Revert</a> |
<a href="javascript:revert();">Revert</a> |
<a href="javascript:undo();">Undo</a> |
<a href="javascript:undo();">Undo</a> |
<a href="javascript:redo();">Redo</a> |
<a href="javascript:redo();">Redo</a> |
<a href="javascript:storechange();">Store</a> |
<a href="javascript:groupsearch();">Group Search</a> |
|
<a href="javascript:groupimport();">Group Import</a> |
|
<a href="javascript:storechange();">Save Map</a> |
</body> |
</body> |
</html> |
</html> |
|
|
|
|
|
|
|
|
|
|