Annotation of loncom/html/res/adm/pages/menu.html, revision 1.66.2.2
1.1 www 1: <html>
2: <!--
3: The LearningOnline Network with CAPA
4: Remote Control
1.40 www 5:
6: //
1.66.2.2! albertel 7: // $Id: menu.html,v 1.66.2.1 2002/09/09 18:30:19 albertel Exp $
1.40 www 8: //
9: // Copyright Michigan State University Board of Trustees
10: //
11: // This file is part of the LearningOnline Network with CAPA (LON-CAPA).
12: //
13: // LON-CAPA is free software; you can redistribute it and/or modify
14: // it under the terms of the GNU General Public License as published by
15: // the Free Software Foundation; either version 2 of the License, or
16: // (at your option) any later version.
17: //
18: // LON-CAPA is distributed in the hope that it will be useful,
19: // but WITHOUT ANY WARRANTY; without even the implied warranty of
20: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21: // GNU General Public License for more details.
22: //
23: // You should have received a copy of the GNU General Public License
24: // along with LON-CAPA; if not, write to the Free Software
25: // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26: //
27: // /home/httpd/html/adm/gpl.txt
28: //
29: // http://www.lon-capa.org/
30: //
31:
1.1 www 32: -->
33: <head>
34: <title>LON-CAPA Remote</title>
35: </head>
36:
1.23 www 37: <body bgcolor="#BBBBBB"
1.46 www 38: background="remotebg.gif"
1.49 matthew 39: onUnload="logout();"
40: >
1.62 www 41: <font size="1">
1.19 albertel 42: <script type="text/javascript">
1.22 harris41 43: <!--
1.44 matthew 44: var statustop = '';
45: var statusbot = '';
46: var active = 0;
1.55 www 47: var dislocked = 1;
1.1 www 48:
1.44 matthew 49: var imgpath='/res/adm/pages/';
1.65 www 50: var fontpath='/adm/lonLCDfont/';
1.27 harris41 51: var currentURL='';
1.59 www 52: var reloadURL='';
1.28 www 53: var currentStale=1;
1.33 www 54: var menucltim;
1.60 www 55:
56: var clockdelta=0;
1.55 www 57:
1.25 harris41 58: // not used (yet)
59: // var w_Annotator;
60: // var w_bmquery;
61: // var w_BookmarkPal;
62: // var w_LONcatInfo;
63:
64: //////////////////////////////////////
65: var w_Annotator_flag=-1;
66: var w_bmquery_flag=-1;
67: var w_BookmarkPal_flag=-1;
68: var w_LONcatInfo_flag=-1;
69: // 1 means currently open
70: // 0 means closed (but has been open)
71: // -1 means never yet opened/defined
72: ///////////////////////////////////////
73:
1.44 matthew 74: var hr = new Array;
75: var db = new Array;
76: var dt = new Array;
77:
78: for (var i=1;i<=3;i++) {
79: for (var j=1;j<=10;j++) {
80: var index = 10*j+i;
1.49 matthew 81: hr[index]='';
82: db[index]='';
83: dt[index]='';
1.44 matthew 84: }
85: }
1.31 www 86:
1.44 matthew 87: var clienthost=window.location.host;
88: var clientwindow=opener;
1.1 www 89:
1.60 www 90: function syncclock(servertime) {
91: var clientclock=new Date;
92: clockdelta=servertime-clientclock.getTime();
93: }
94:
1.55 www 95: function advanceclock() {
1.60 www 96: var clock=new Date();
97: clock.setTime(clock.getTime()+clockdelta);
1.58 www 98:
99: var days=""+clock.getDate();
100: if (days.length<2) { days="0"+days; }
101: var mons=""+(clock.getMonth()+1);
102: if (mons.length<2) { mons="0"+mons; }
103: var years=""+clock.getYear();
1.63 www 104:
105: if (years>1000) {
106: years=years.substring(2,4);
107: } else {
108: years=years.substring(1,3);
109: }
1.58 www 110: statustop=mons+'/'+days+'/'+years;
111:
1.56 www 112: var secs=""+clock.getSeconds();
113: if (secs.length<2) { secs="0"+secs; }
114: var mins=""+clock.getMinutes();
1.57 www 115: if (mins.length<2) { mins="0"+mins; }
1.56 www 116: var hours=""+clock.getHours();
117: if (hours.length<2) { hours=" "+hours; }
118: statusbot=hours+':'+mins+':'+secs;
1.58 www 119:
120: if (!dislocked) { showdisplay(); }
121:
1.55 www 122: setTimeout('advanceclock();',1000);
123: }
124:
1.1 www 125: function windowcheck() {
1.45 www 126: if (clientwindow==null || clientwindow.closed) {
127: clientwindow=window.open("http://"+clienthost+"/",'',
128: "height=400,width=440,"+
129: "scrollbars=1,toolbar=1,status=1,resizable=1,location=1,"+
130: "left=190,top=15,screenX=190,screenY=15");
1.1 www 131: }
1.7 www 132: clientwindow.name='loncapaclient';
1.45 www 133: clientwindow.menuwindow=self;
1.1 www 134: }
135:
1.5 www 136: function logout () {
1.10 www 137: windowcheck();
1.41 www 138:
1.25 harris41 139: if (w_Annotator_flag!=-1 && annotator && !annotator.closed) {
140: annotator.close();
141: }
142: if (w_bmquery_flag!=-1 && bmquery && !bmquery.closed) {
143: bmquery.close();
144: }
145: if (w_BookmarkPal_flag!=-1 && bookmarkpal && !bookmarkpal.closed) {
146: bookmarkpal.close();
147: }
148: if (w_LONcatInfo_flag!=-1 && loncatinfo && !loncatinfo.closed) {
149: loncatinfo.close();
150: }
1.9 www 151: clientwindow.window.location.href="http://"+clienthost+"/adm/logout";
1.41 www 152:
1.1 www 153: }
154:
1.23 www 155: function activate () {
1.31 www 156: opener.menuloaded=1;
1.23 www 157: setTimeout('active=1;',2000);
1.55 www 158: advanceclock();
1.23 www 159: }
160:
161: function deactivate () {
162: active=0;
163: }
164:
1.1 www 165: function display(utext,ltext) {
1.58 www 166: this.window.focus();
167: showdisplay(utext,ltext);
168: }
169:
170: function showdisplay(utext,ltext) {
1.23 www 171: var i; var ch;
1.55 www 172: dislocked=1;
1.47 matthew 173: if (utext == null) { utext = '';}
174: if (ltext == null) { ltext = '';}
1.49 matthew 175: if (typeof(utext)!="string") { utext=''; }
176: if (typeof(ltext)!="string") { ltext=''; }
1.31 www 177: if ((utext=='') && (ltext=='')) {
178: utext=statustop;
179: ltext=statusbot;
1.55 www 180: dislocked=0;
1.31 www 181: }
1.23 www 182: if (active) {
1.1 www 183: for (i=0;i<=7;i++) {
184: if (i<utext.length) {
185: ch=utext.charAt(i);
186: if (ch==' ') { ch='space'; }
187: if (ch=='-') { ch='hyphen'; }
1.55 www 188: if (ch==':') { ch='colon'; }
189: if (ch=='/') { ch='slash'; }
1.1 www 190: } else { ch='space'; }
1.65 www 191: this.document['i'+i].src=fontpath+ch+'.gif';
1.1 www 192: }
193: for (i=0;i<=7;i++) {
194: if (i<ltext.length) {
195: ch=ltext.charAt(i);
196: if (ch==' ') { ch='space'; }
197: if (ch=='-') { ch='hyphen'; }
1.55 www 198: if (ch==':') { ch='colon'; }
199: if (ch=='/') { ch='slash'; }
1.1 www 200: } else { ch='space'; }
1.65 www 201: this.document['j'+i].src=fontpath+ch+'.gif';
1.1 www 202: }
1.23 www 203: }
1.1 www 204: }
205:
206: function defdis() {
207: this.window.focus();
1.55 www 208: display();
1.1 www 209: }
210:
1.31 www 211: function switchbutton(row,col,imgsrc,texttop,textbot,action) {
212: var idx=10*row+col;
1.39 www 213: this.document['b'+idx].src="http://"+clienthost+imgpath+imgsrc;
1.31 www 214: hr[idx]=action;
215: dt[idx]=texttop;
216: db[idx]=textbot;
1.39 www 217: }
1.31 www 218:
219: function clearbut(row,col) {
220: var idx=10*row+col;
1.39 www 221: this.document['b'+idx].src="http://"+clienthost+imgpath+'empty.gif';
1.31 www 222: hr[idx]='javascript:defdis();';
223: dt[idx]='';
224: db[idx]='';
225: }
226:
1.1 www 227: function setstatus(tp,bt) {
228: this.document['led'].src="ledblink.gif";
229: statustop=tp;
230: statusbot=bt;
231: defdis();
232: endsend();
233: }
234:
1.52 matthew 235: function is_editable_resource (url) {
1.66.2.1 albertel 236: // figure out if this a specific resource version
1.52 matthew 237: var Chunks = url.split('.');
238: var tmp = Chunks[Chunks.length-1];
239: if ((Chunks.length > 1) && (Math.floor(tmp) == tmp)) {
1.66.2.1 albertel 240: return false;
241: }
242: // see if this is actually in resource space
243: var SlashChunks=url.split('/');
244: if (SlashChunks[1]!='res') { return false; }
245: return true;
1.52 matthew 246: }
247:
1.47 matthew 248: function cstrgo(currenturl,defaulturl) {
249: windowcheck();
250: var url;
1.52 matthew 251: if ((currenturl == null) ||
252: (currenturl == '') ||
253: (! is_editable_resource(currenturl))) {
1.48 matthew 254: url = defaulturl;
255: } else {
1.66.2.1 albertel 256: var SlashChunks=currenturl.split('/');
257: SlashChunks[1]='priv';
258: var i;
259: for (i=2;i<SlashChunks.length;i++) {
260: SlashChunks[i]=SlashChunks[i+1];
1.47 matthew 261: }
1.66.2.1 albertel 262: SlashChunks.length--;
263: url=SlashChunks.join('/');
1.47 matthew 264: }
265: this.document['led'].src="ledsend.gif";
266: if (url != '') {
267: clientwindow.window.location.href="http://"+clienthost+url;
268: }
269: }
270:
1.1 www 271: function go(url) {
1.10 www 272: windowcheck();
1.1 www 273: this.document['led'].src="ledsend.gif";
1.53 matthew 274: if (url!='' && url!= null) {
1.47 matthew 275: currentURL = null;
1.7 www 276: clientwindow.window.location.href="http://"+clienthost+url;
277: }
278: }
279:
280: function gopost(url,postdata) {
1.10 www 281: windowcheck();
1.7 www 282: this.document['led'].src="ledsend.gif";
283: if (url!='') {
284: this.document.server.action="http://"+clienthost+url;
1.8 www 285: this.document.server.postdata.value=postdata;
1.34 www 286: this.document.server.command.value='';
287: this.document.server.url.value='';
288: this.document.server.submit();
289: }
290: }
291:
292: function gocmd(url,cmd) {
293: windowcheck();
294: this.document['led'].src="ledsend.gif";
295: if (url!='') {
296: this.document.server.action="http://"+clienthost+url;
297: this.document.server.postdata.value='';
298: this.document.server.command.value=cmd;
299: this.document.server.url.value=currentURL;
1.7 www 300: this.document.server.submit();
1.1 www 301: }
302: }
303:
1.2 tyszkabe 304: function annotate() {
1.25 harris41 305: w_Annotator_flag=1;
1.11 tyszkabe 306: annotator=window.open('','Annotator','width=365,height=265,scrollbars=0');
1.14 www 307: annotator.document.write(
308: "<html><body onload='Javascript:document.goannotate.submit();'>"
309: +"<form name='goannotate' target='Annotator' method='post' "
310: +"action='/adm/annotations'>"
1.36 www 311: +"<input type='hidden' name='urlnew' value='"+currentURL+"'>"
1.14 www 312: +"</form></body></html>");
313: annotator.document.close();
1.2 tyszkabe 314: }
315:
316: function set_bookmark() {
317: go('');
1.36 www 318: if (currentStale) {
319: clienttitle="Enter Title";
320: clienthref=currentURL;
321: } else {
322: clienttitle=clientwindow.document.title;
323: clienthref=clientwindow.location.pathname;
324: }
1.25 harris41 325: w_bmquery_flag=1;
1.24 tyszkabe 326: bmquery=window.open('','bmquery','width=365,height=165,scrollbars=0');
327: bmquery.document.write(
328: "<html><body bgcolor='bbbbbb'><center><form method='post'"
329: +" name='newlink' action='/adm/bookmarks' target='bmquery' "
330: +">\n <table width=340 height=150 "
331: +"bgcolor='ffffff' align=center><tr><td>Link Name:<br><input "
332: +"type='text' name='title' size=45 value='"+clienttitle+"'>"
333: +"<br>Address:<br><input type='text' name='address' size='45' "
334: +"value='"+clienthref+"'><br><center><input type='submit' "
335: +"value='Save'> <input type='button' value='Close (no save)' "
336: +"onclick='javascript:window.close();'></center></td>"
337: +"</tr></table></form></center></body></html>");
338: bmquery.document.close();
1.2 tyszkabe 339: }
340:
341: function edit_bookmarks() {
342: go('');
1.25 harris41 343: w_BookmarkPal_flag=1;
344: bookmarkpal=window.open("http://"+clienthost+"/adm/bookmarks",
1.6 www 345: "BookmarkPal", "width=400,height=505,scrollbars=0");
1.2 tyszkabe 346: }
347:
1.14 www 348: function catalog_info() {
349: go('');
1.25 harris41 350: w_LONcatInfo_flag=1;
1.66.2.2! albertel 351: loncatinfo=window.open(clientwindow.window.location.pathname+'.meta',"LONcatInfo");
1.14 www 352: }
1.22 harris41 353: // -->
1.1 www 354: </script>
355: <center>
1.54 matthew 356: <table hspace="0" border="0" cellspacing="0" cellpadding="0">
1.1 www 357: <tr><td>
358: <a href="javascript:defdis();"
359: onMouseOver="defdis();"
1.54 matthew 360: ><img border="0" width="80" height="50" src="title.gif"></a>
1.1 www 361: </td><td>
1.54 matthew 362: <img border="0" width="50" height="50" name="led" src="ledoff.gif">
1.1 www 363: </td></tr>
364: </table>
1.54 matthew 365: </center>
366:
367: <center>
368: <a href="javascript:defdis();"
369: onMouseOver="defdis();"
1.62 www 370: ><img width="103" height="3" border="0" src="spacer.gif" /></a>
1.54 matthew 371: </center>
372:
373: <center>
374: <table hspace="1" border="0" cellspacing="0" cellpadding="1">
1.1 www 375: <tr><td bgcolor="#666666">
1.54 matthew 376: <table hspace="0" border="0" cellspacing="1" cellpadding="0">
1.1 www 377: <tr>
1.66 www 378: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="i0" width="15" height="19" src="/adm/lonLCDfont/l.gif" /></a></td>
379: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="i1" width="15" height="19" src="/adm/lonLCDfont/o.gif" /></a></td>
380: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="i2" width="15" height="19" src="/adm/lonLCDfont/n.gif" /></a></td>
381: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="i3" width="15" height="19" src="/adm/lonLCDfont/hyphen.gif"></a></td>
382: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="i4" width="15" height="19" src="/adm/lonLCDfont/c.gif" /></a></td>
383: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="i5" width="15" height="19" src="/adm/lonLCDfont/a.gif" /></a></td>
384: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="i6" width="15" height="19" src="/adm/lonLCDfont/p.gif" /></a></td>
385: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="i7" width="15" height="19" src="/adm/lonLCDfont/a.gif" /></a></td>
1.62 www 386: </tr>
387: <tr>
1.66 www 388: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j0" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
389: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j1" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
390: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j2" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
391: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j3" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
392: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j4" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
393: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j5" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
394: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j6" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
395: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j7" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
1.1 www 396: </tr>
397: </table>
1.54 matthew 398: </td></tr>
399: </table>
400: </center>
1.1 www 401:
1.54 matthew 402: <center>
403: <table hspace="0" border="0" cellspacing="0" cellpadding="0">
1.31 www 404:
405: <tr>
1.54 matthew 406: <td colspan="2"><a href="javascript:eval(hr[11]);" onMouseOver="display(dt[11],db[11]);"><img width="86" height="20" border="0" name="b11" src="dempty.gif" /></a></td>
407: <td><a href="javascript:eval(hr[12]);" onMouseOver="display(dt[12],db[12]);"><img width="43" height="20" border="0" name="b12" src="empty.gif" /></a></td>
1.31 www 408: </tr>
409:
410: <tr>
1.54 matthew 411: <td rowspan="2"><a href="javascript:eval(hr[21]);" onMouseOver="display(dt[21],db[21]);"><img width="43" height="40" border="0" name="b21" src="qempty.gif" /></a></td>
412: <td><a href="javascript:eval(hr[22]);" onMouseOver="display(dt[22],db[22]);"><img width="43" height="20" border="0" name="b22" src="empty.gif" /></a></td>
413: <td rowspan="2"><a href="javascript:eval(hr[23]);" onMouseOver="display(dt[23],db[23]);"><img width="43" height="40" border="0" name="b23" src="qempty.gif" /></a></td>
1.31 www 414: </tr>
415:
416: <tr>
1.54 matthew 417: <td><a href="javascript:eval(hr[31]);" onMouseOver="display(dt[31],db[31]);"><img width="43" height="20" border="0" name="b31" src="empty.gif" /></a></td>
1.31 www 418: </tr>
419:
420: <tr>
1.54 matthew 421: <td><a href="javascript:eval(hr[41]);" onMouseOver="display(dt[41],db[41]);"><img width="43" height="20" border="0" name="b41" src="empty.gif" /></a></td>
422: <td><a href="javascript:eval(hr[42]);" onMouseOver="display(dt[42],db[42]);"><img width="43" height="20" border="0" name="b42" src="empty.gif" /></a></td>
423: <td><a href="javascript:eval(hr[43]);" onMouseOver="display(dt[43],db[43]);"><img width="43" height="20" border="0" name="b43" src="empty.gif" /></a></td>
1.31 www 424: </tr>
425:
426: <tr>
1.54 matthew 427: <td><a href="javascript:eval(hr[51]);" onMouseOver="display(dt[51],db[51]);"><img width="43" height="20" border="0" name="b51" src="empty.gif" /></a></td>
428: <td><a href="javascript:eval(hr[52]);" onMouseOver="display(dt[52],db[52]);"><img width="43" height="20" border="0" name="b52" src="empty.gif" /></a></td>
429: <td><a href="javascript:eval(hr[53]);" onMouseOver="display(dt[53],db[53]);"><img width="43" height="20" border="0" name="b53" src="empty.gif" /></a></td>
1.31 www 430: </tr>
431:
432: <tr>
1.54 matthew 433: <td><a href="javascript:eval(hr[61]);" onMouseOver="display(dt[61],db[61]);"><img width="43" height="20" border="0" name="b61" src="empty.gif" /></a></td>
434: <td><a href="javascript:eval(hr[62]);" onMouseOver="display(dt[62],db[62]);"><img width="43" height="20" border="0" name="b62" src="empty.gif" /></a></td>
435: <td><a href="javascript:eval(hr[63]);" onMouseOver="display(dt[63],db[63]);"><img width="43" height="20" border="0" name="b63" src="empty.gif" /></a></td>
1.31 www 436: </tr>
437:
438: <tr>
1.54 matthew 439: <td><a href="javascript:eval(hr[71]);" onMouseOver="display(dt[71],db[71]);"><img width="43" height="20" border="0" name="b71" src="empty.gif" /></a></td>
440: <td><a href="javascript:eval(hr[72]);" onMouseOver="display(dt[72],db[72]);"><img width="43" height="20" border="0" name="b72" src="empty.gif" /></a></td>
441: <td><a href="javascript:eval(hr[73]);" onMouseOver="display(dt[73],db[73]);"><img width="43" height="20" border="0" name="b73" src="empty.gif" /></a></td>
1.31 www 442: </tr>
443:
444: <tr>
1.54 matthew 445: <td><a href="javascript:eval(hr[81]);" onMouseOver="display(dt[81],db[81]);"><img width="43" height="20" border="0" name="b81" src="empty.gif" /></a></td>
446: <td><a href="javascript:eval(hr[82]);" onMouseOver="display(dt[82],db[82]);"><img width="43" height="20" border="0" name="b82" src="empty.gif" /></a></td>
447: <td><a href="javascript:eval(hr[83]);" onMouseOver="display(dt[83],db[83]);"><img width="43" height="20" border="0" name="b83" src="empty.gif" /></a></td>
1.31 www 448: </tr>
1.1 www 449:
1.31 www 450: <tr>
1.54 matthew 451: <td><a href="javascript:eval(hr[91]);" onMouseOver="display(dt[91],db[91]);"><img width="43" height="20" border="0" name="b91" src="empty.gif" /></a></td>
452: <td><a href="javascript:eval(hr[92]);" onMouseOver="display(dt[92],db[92]);"><img width="43" height="20" border="0" name="b92" src="empty.gif" /></a></td>
453: <td><a href="javascript:eval(hr[93]);" onMouseOver="display(dt[93],db[93]);"><img width="43" height="20" border="0" name="b93" src="empty.gif" /></a></td>
1.35 www 454: </tr>
455:
456: <tr>
1.54 matthew 457: <td><a href="javascript:eval(hr[101]);" onMouseOver="display(dt[101],db[101]);"><img width="43" height="20" border="0" name="b101" src="empty.gif" /></a></td>
458: <td><a href="javascript:eval(hr[102]);" onMouseOver="display(dt[102],db[102]);"><img width="43" height="20" border="0" name="b102" src="empty.gif" /></a></td>
459: <td><a href="javascript:eval(hr[103]);" onMouseOver="display(dt[103],db[103]);"><img width="43" height="20" border="0" name="b103" src="empty.gif" /></a></td>
1.31 www 460: </tr>
1.1 www 461:
1.62 www 462: <tr>
463: <td><a href="javascript:eval(hr[111]);" onMouseOver="display(dt[111],db[111]);"><img width="43" height="20" border="0" name="b111" src="empty.gif" /></a></td>
464: <td><a href="javascript:eval(hr[112]);" onMouseOver="display(dt[112],db[112]);"><img width="43" height="20" border="0" name="b112" src="empty.gif" /></a></td>
465: <td><a href="javascript:eval(hr[113]);" onMouseOver="display(dt[113],db[113]);"><img width="43" height="20" border="0" name="b113" src="empty.gif" /></a></td>
466: </tr>
467:
1.31 www 468: </table>
1.54 matthew 469: </center>
1.1 www 470:
1.54 matthew 471: <center>
1.1 www 472: <a href="javascript:defdis();"
473: onMouseOver="defdis();"
1.64 matthew 474: ><img width="103" height="3" border="0" src="spacer.gif" /></a>
1.54 matthew 475: </center>
1.1 www 476:
1.54 matthew 477: <form name="server" action="/adm/logout" method="post" target="loncapaclient">
478: <input type="hidden" name="postdata" value="none" />
1.34 www 479: <input type="hidden" name="command" value="none" />
480: <input type="hidden" name="url" value="none" />
1.54 matthew 481: </form>
1.37 harris41 482: <script>
483: activate();
484: </script>
1.62 www 485: </font>
1.1 www 486: </body>
1.20 www 487: </html>
1.42 matthew 488:
489:
490:
491:
492:
493:
494:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>