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