Annotation of loncom/html/res/adm/pages/menu.html, revision 1.118

1.1       www         1: <html>
                      2: <!--
                      3: The LearningOnline Network with CAPA
                      4: Remote Control
1.40      www         5: 
                      6: //
1.118   ! albertel    7: // $Id: menu.html,v 1.117 2005/08/02 20:40:30 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.91      www        39:       onUnload="collapse();"
1.85      www        40:       onLoad="activate();"
1.111     www        41:       style="{background-repeat: no-repeat;}"
1.49      matthew    42:       >
1.88      albertel   43: <LONCAPA_INTERNAL_LONHTTPD_PORT />
1.19      albertel   44: <script type="text/javascript">
1.108     albertel   45: //<!--
1.44      matthew    46: var statustop = '';
                     47: var statusbot = '';
                     48: var active = 0;
1.55      www        49: var dislocked = 1;
1.71      www        50: var statuslocked = 0;
1.1       www        51: 
1.89      albertel   52: if (lonhttpdport == null) {
                     53:     var lonhttpdport='8080';
                     54: }
1.107     www        55: 
1.88      albertel   56: var imgpath=':'+lonhttpdport+'/res/adm/pages/';
                     57: var fontpath=':'+lonhttpdport+'/adm/lonLCDfont/';
1.27      harris41   58: var currentURL='';
1.59      www        59: var reloadURL='';
1.68      www        60: var currentSymb='';
                     61: var reloadSymb='';
1.28      www        62: var currentStale=1;
1.33      www        63: var menucltim;
1.60      www        64: var clockdelta=0;
1.55      www        65: 
1.77      www        66: var w_extdisp_flag=-1;
1.87      www        67: var extdisp=null;
1.77      www        68: 
1.84      www        69: var autologout=1;
                     70: 
1.25      harris41   71: // not used (yet)
                     72: // var w_Annotator;
                     73: // var w_bmquery;
                     74: // var w_BookmarkPal;
                     75: // var w_LONcatInfo;
                     76: 
                     77: //////////////////////////////////////
                     78: var w_Annotator_flag=-1;
                     79: var w_bmquery_flag=-1;
                     80: var w_BookmarkPal_flag=-1;
                     81: var w_LONcatInfo_flag=-1;
1.93      www        82: var w_LONchat_flag=-1;
1.112     albertel   83: var w_loncapanav_flag=-1;
1.25      harris41   84:  // 1 means currently open
                     85:  // 0 means closed (but has been open)
                     86:  // -1 means never yet opened/defined
                     87: ///////////////////////////////////////
                     88: 
1.44      matthew    89: var hr = new Array;
                     90: var db = new Array;
                     91: var dt = new Array;
1.74      www        92: var ds = new Array;
1.44      matthew    93: 
                     94: for (var i=1;i<=3;i++) {
                     95:    for (var j=1;j<=10;j++) {
                     96:       var index = 10*j+i;
1.49      matthew    97:       hr[index]='';
                     98:       db[index]='';
                     99:       dt[index]='';
1.74      www       100:       ds[index]='';
1.44      matthew   101:    }
                    102: }
1.31      www       103: 
1.44      matthew   104: var clienthost=window.location.host;
                    105: var clientwindow=opener;
1.112     albertel  106: var navwindow;
1.1       www       107: 
1.60      www       108: function syncclock(servertime) {
                    109:     var clientclock=new Date;
                    110:     clockdelta=servertime-clientclock.getTime();
                    111: }
                    112: 
1.55      www       113: function advanceclock() {
1.60      www       114:     var clock=new Date();
                    115:     clock.setTime(clock.getTime()+clockdelta);
1.71      www       116:     if (!statuslocked) {
                    117:        var days=""+clock.getDate();
                    118:        if (days.length<2) { days="0"+days; }
                    119:        var mons=""+(clock.getMonth()+1);
                    120:        if (mons.length<2) { mons="0"+mons; }
                    121:        var years=""+clock.getYear();
                    122: 
                    123:        if (years>1000) {
                    124:           years=years.substring(2,4);
                    125:        } else {
                    126:           years=years.substring(1,3);
                    127:        }
                    128:        statustop=mons+'/'+days+'/'+years;
                    129: 
                    130:        var secs=""+clock.getSeconds();
                    131:        if (secs.length<2) { secs="0"+secs; }
                    132:        var mins=""+clock.getMinutes();
                    133:        if (mins.length<2) { mins="0"+mins; }
                    134:        var hours=""+clock.getHours();
                    135:        if (hours.length<2) { hours=" "+hours; }
                    136:        statusbot=hours+':'+mins+':'+secs;
1.58      www       137: 
1.71      www       138:        if (!dislocked) { showdisplay(); }
1.63      www       139:     }
1.55      www       140:     setTimeout('advanceclock();',1000);
                    141: }
                    142: 
1.1       www       143: function windowcheck() {
1.102     www       144:    if (clientwindow==null || clientwindow.closed) {
1.45      www       145:       clientwindow=window.open("http://"+clienthost+"/",'',
                    146:       "height=400,width=440,"+
1.100     www       147:       "scrollbars=1,toolbar=1,status=1,resizable=1,location=1,menubar=1,"+
1.45      www       148:       "left=190,top=15,screenX=190,screenY=15"); 
1.102     www       149:       clientwindow.name='loncapaclient';
1.1       www       150:    }
1.77      www       151:    extenddispclose();
1.1       www       152: }
                    153: 
1.112     albertel  154: function navwindowcheck() {
                    155:    if (navwindow==null || navwindow.closed) {
                    156:       navwindow=window.open("http://"+clienthost+"/adm/navmaps#curloc",
                    157:                   "loncapanav","height=600,width=400,scrollbars=1"); 
                    158:    }
                    159: }
                    160: 
1.91      www       161: function collapse() {
                    162:    if (autologout) {
                    163:        go('/adm/remote?action=collapse');
                    164:    }
                    165: }
                    166:  
1.5       www       167: function logout () {
1.10      www       168:    windowcheck();
1.41      www       169: 
1.25      harris41  170:       if (w_Annotator_flag!=-1 && annotator && !annotator.closed) {
                    171:           annotator.close();
                    172:       }
                    173:       if (w_bmquery_flag!=-1 && bmquery && !bmquery.closed) {
                    174:           bmquery.close();
                    175:       }
                    176:       if (w_BookmarkPal_flag!=-1 && bookmarkpal && !bookmarkpal.closed) {
                    177:           bookmarkpal.close();
                    178:       }
                    179:       if (w_LONcatInfo_flag!=-1 && loncatinfo && !loncatinfo.closed) {
                    180:           loncatinfo.close();
                    181:       }
1.93      www       182:       if (w_LONchat_flag!=-1 && lonchat && !lonchat.closed) {
                    183:           lonchat.close();
                    184:       }
1.84      www       185:       if (autologout) {
1.101     www       186:          go("/adm/logout");
1.84      www       187:       }
1.1       www       188: }
                    189: 
1.23      www       190: function activate () {
1.86      www       191:    setTimeout('opener.menuloaded=1;',1000);
                    192:    setTimeout('active=1;',500);
1.55      www       193:    advanceclock();
1.23      www       194: }
                    195: 
                    196: function deactivate () {
                    197:    active=0;
                    198: }
                    199: 
1.1       www       200: function display(utext,ltext) {
1.58      www       201:     this.window.focus();
                    202:     showdisplay(utext,ltext);
                    203: }
                    204: 
1.1       www       205: function defdis() {
                    206:    this.window.focus();
1.55      www       207:    display();
1.1       www       208: }
                    209: 
1.74      www       210: function switchbutton(row,col,imgsrc,texttop,textbot,action,desc) {
1.31      www       211:    var idx=10*row+col;
1.39      www       212:    this.document['b'+idx].src="http://"+clienthost+imgpath+imgsrc;
1.31      www       213:    hr[idx]=action;
                    214:    dt[idx]=texttop;
                    215:    db[idx]=textbot;
1.74      www       216:    ds[idx]=desc;
1.85      www       217:    for (var k=0;k<document.links.length;k++) {
                    218:        if (document.links[k].name=='link'+idx) {
                    219:           document.links[k].title=desc;
                    220:        }
                    221:    }
1.39      www       222: } 
1.31      www       223: 
                    224: function clearbut(row,col) {
                    225:    var idx=10*row+col;
1.39      www       226:    this.document['b'+idx].src="http://"+clienthost+imgpath+'empty.gif';
1.31      www       227:    hr[idx]='javascript:defdis();';
                    228:    dt[idx]='';
                    229:    db[idx]='';
1.74      www       230:    ds[idx]='';
1.85      www       231:    for (var k=0;k<document.links.length;k++) {
                    232:        if (document.links[k].name=='link'+idx) {
                    233:           document.links[k].title='';
                    234:        }
                    235:    }
1.31      www       236: }
                    237: 
1.1       www       238: function setstatus(tp,bt) {
1.70      www       239:    this.document['led'].src="http://"+clienthost+imgpath+"ledblink.gif";
1.1       www       240:    statustop=tp;
                    241:    statusbot=bt;
1.71      www       242:    statuslocked=1;
1.1       www       243:    defdis();
1.47      matthew   244: }
                    245: 
1.1       www       246: function go(url) {
1.10      www       247:    windowcheck();
1.71      www       248:    statuslocked=0;
1.81      www       249:    this.document['led'].src="http://"+clienthost+imgpath+"ledsend.gif";
1.53      matthew   250:    if (url!='' && url!= null) {
1.101     www       251:       currentURL = null;
                    252:       currentSymb= null;
1.113     albertel  253:       this.document.server.target='loncapaclient';
1.101     www       254:       this.document.server.action="http://"+clienthost+url;
                    255:       this.document.server.postdata.value='';
                    256:       this.document.server.command.value='';
                    257:       this.document.server.url.value='';
                    258:       this.document.server.postsymb.value='';
                    259:       this.document.server.submit();
1.7       www       260:    }
                    261: }
                    262: 
1.112     albertel  263: function gonav(url) {
1.115     albertel  264:    if (w_loncapanav_flag == 1) {
1.112     albertel  265:       navwindowcheck();
                    266:       statuslocked=0;
1.115     albertel  267:       this.document.server.target="loncapanav";
1.117     albertel  268:    } else {
                    269:       this.document.server.target="loncapaclient";
                    270:    } 
1.115     albertel  271:    this.document['led'].src="http://"+clienthost+imgpath+"ledsend.gif";
                    272:    if (url!='' && url!= null) {
                    273:        this.document.server.action="http://"+clienthost+url;
                    274:        this.document.server.postdata.value=currentURL;
                    275:        this.document.server.command.value='';
                    276:        this.document.server.url.value='';
                    277:        this.document.server.postsymb.value=currentSymb;
                    278:        this.document.server.submit();
1.112     albertel  279:    }
                    280: }
                    281: 
1.105     www       282: function gopost(url,postdata,makenewwin) {
1.10      www       283:    windowcheck();
1.71      www       284:    statuslocked=0;
                    285:    this.document['led'].src="http://"+clienthost+imgpath+"ledsend.gif";
1.7       www       286:    if (url!='') {
1.105     www       287:       if (makenewwin) {
1.106     www       288:          var LONcomWin=window.open("http://"+clienthost+"/adm/rat/empty.html",
                    289:                        'LONcom',
1.116     www       290:                        "height=600,width=600,"+
1.106     www       291:       "scrollbars=1,toolbar=0,status=0,resizable=1,location=0,menubar=0"); 
1.105     www       292:          this.document.server.target='LONcom';
1.113     albertel  293:       } else {
                    294:          this.document.server.target='loncapaclient';
1.105     www       295:       }
1.7       www       296:       this.document.server.action="http://"+clienthost+url;
1.8       www       297:       this.document.server.postdata.value=postdata;
1.34      www       298:       this.document.server.command.value='';
                    299:       this.document.server.url.value='';
1.92      www       300:       this.document.server.postsymb.value='';
1.34      www       301:       this.document.server.submit();
                    302:    }
                    303: }
                    304: 
                    305: function gocmd(url,cmd) {
                    306:    windowcheck();
1.71      www       307:    statuslocked=0;
                    308:    this.document['led'].src="http://"+clienthost+imgpath+"ledsend.gif";
1.34      www       309:    if (url!='') {
1.113     albertel  310:       this.document.server.target='loncapaclient';
1.34      www       311:       this.document.server.action="http://"+clienthost+url;
                    312:       this.document.server.postdata.value='';
                    313:       this.document.server.command.value=cmd;
                    314:       this.document.server.url.value=currentURL;
1.92      www       315:       this.document.server.postsymb.value=currentSymb;
1.7       www       316:       this.document.server.submit();
1.1       www       317:    }
                    318: }
                    319: 
1.2       tyszkabe  320: function annotate() {
1.25      harris41  321:    w_Annotator_flag=1;
1.11      tyszkabe  322:    annotator=window.open('','Annotator','width=365,height=265,scrollbars=0');
1.14      www       323:    annotator.document.write(
                    324:    "<html><body onload='Javascript:document.goannotate.submit();'>"
                    325:   +"<form name='goannotate' target='Annotator' method='post' "
                    326:   +"action='/adm/annotations'>"
1.36      www       327:   +"<input type='hidden' name='urlnew' value='"+currentURL+"'>"
1.14      www       328:   +"</form></body></html>");
                    329:    annotator.document.close();
1.2       tyszkabe  330: }
                    331: 
                    332: function set_bookmark() {
                    333:    go('');
1.36      www       334:    if (currentStale) {
                    335:       clienttitle="Enter Title";
                    336:       clienthref=currentURL;
                    337:    } else {
                    338:       clienttitle=clientwindow.document.title;
                    339:       clienthref=clientwindow.location.pathname;
                    340:    }
1.25      harris41  341:    w_bmquery_flag=1;
1.24      tyszkabe  342:    bmquery=window.open('','bmquery','width=365,height=165,scrollbars=0');
                    343:    bmquery.document.write(
                    344:    "<html><body bgcolor='bbbbbb'><center><form method='post'"
                    345:    +" name='newlink' action='/adm/bookmarks' target='bmquery' "
                    346:    +">\n <table width=340 height=150 "
                    347:    +"bgcolor='ffffff' align=center><tr><td>Link Name:<br><input "
                    348:    +"type='text' name='title' size=45 value='"+clienttitle+"'>"
                    349:    +"<br>Address:<br><input type='text' name='address' size='45' "
                    350:    +"value='"+clienthref+"'><br><center><input type='submit' "
                    351:    +"value='Save'> <input type='button' value='Close (no save)' "
                    352:    +"onclick='javascript:window.close();'></center></td>"
                    353:    +"</tr></table></form></center></body></html>");
                    354:    bmquery.document.close();
1.2       tyszkabe  355: }
                    356: 
1.77      www       357: function extenddispclose() {
                    358:    if (w_extdisp_flag>0) {
                    359:       if (extdisp!=null && !extdisp.closed) {
                    360:          extdisp.close();
                    361:       }
                    362:       w_extdisp_flag=-1;
                    363:    }
                    364: }
                    365: 
1.75      www       366: function extenddisp() {
1.74      www       367:    go('');
1.77      www       368:    w_extdisp_flag=1;
1.87      www       369:    extdisp=window.open("http://"+clienthost+"/adm/rat/loading.html",
1.82      albertel  370:                "ExtDisp", "scrollbars=1,width=400,height=450");
1.87      www       371: }
                    372: 
                    373: function drawwindow() {
1.74      www       374:    extdisp.document.clear();
                    375:    extdisp.document.writeln(
1.78      www       376:   '<html><body bgcolor="#666666" text="#DDDDDD" link="#EEEEEE" '+
1.77      www       377:          'onUnload="opener.w_extdisp_flag=-1;">'+
1.74      www       378:   '<h2>LON-CAPA Extended Display Remote Control</h2>'+
1.94      albertel  379:   '<script type="text/javascript">var currentURL="'+currentURL+'";self.focus();</s'+'cript>'+
1.76      www       380:   '<table border="2"><tr><th>Select Functionality from Below</th>'+
                    381:   '<th>Description</th></tr>');
1.74      www       382:    for (var i=0; i<=ds.length; i++) {
                    383:        if (typeof(ds[i])!='undefined') {
                    384:           if (ds[i]!='') {
                    385:              extdisp.document.writeln(
1.78      www       386:                 '<tr><td align="center"><a href="javascript:opener.'+
                    387:                hr[i]+';">&gt;&gt;&gt;<img align="absmiddle" border="0" src="'+
1.107     www       388:             this.document['b'+i].src+'" />&lt;&lt;&lt;</a><br />&nbsp;<br />');
                    389:              bigdisplay(dt,db,i);
                    390:              extdisp.document.writeln('</td><td>'+ds[i]+'</td></tr>');
                    391:           }
                    392:        }
                    393:    }
                    394:    extdisp.document.writeln('</table></body></html>');
                    395:    extdisp.document.close();
                    396: }
                    397: 
                    398: function edit_bookmarks() {
                    399:    go('');
                    400:    w_BookmarkPal_flag=1;
                    401:    bookmarkpal=window.open("http://"+clienthost+"/adm/bookmarks",
                    402:                "BookmarkPal", "width=400,height=505,scrollbars=0");
                    403: }
                    404: 
                    405: function catalog_info() {
                    406:    go('');
                    407:    w_LONcatInfo_flag=1;
1.116     www       408:    loncatinfo=window.open(clientwindow.window.location.pathname+'.meta',"cat",'height=420,width=480,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');
1.107     www       409: }
                    410: 
                    411: function chat_win() {
                    412:    go('');
                    413:    w_LONchat_flag=1;
1.116     www       414:    lonchat=window.open('/res/adm/pages/chatroom.html',"LONchat",'height=420,width=480,resizable=yes,location=no,menubar=no,toolbar=no');
1.107     www       415: }
                    416: // -->
                    417: </script>
1.109     www       418: <block condition="&EXT('request.browser.textremote')!=1">
1.107     www       419: <script type="text/javascript">
1.108     albertel  420: //<!--
1.107     www       421: function bigdisplay(dt,db,i) {
                    422:              extdisp.document.writeln(
                    423: '<table hspace="0" border="0" cellspacing="1" cellpadding="0"><tr>');
1.74      www       424:              for (var j=0;j<=7;j++) {
                    425:                 if (j<dt[i].length) {
                    426:                    ch=dt[i].charAt(j);
                    427:                    if (ch==' ') { ch='space'; }
                    428:                    if (ch=='-') { ch='hyphen'; }
                    429:                    if (ch==':') { ch='colon'; }
                    430:                    if (ch=='/') { ch='slash'; }
                    431:                 } else { ch='space'; }
                    432:                 extdisp.document.writeln('<td><img border="0" src="http://'
                    433:                                     +clienthost+fontpath+ch+'.gif" /></td>');
                    434:              }
                    435:              extdisp.document.writeln('</tr><tr>');
                    436:              for (var j=0;j<=7;j++) {
                    437:                 if (j<db[i].length) {
                    438:                    ch=db[i].charAt(j);
                    439:                    if (ch==' ') { ch='space'; }
                    440:                    if (ch=='-') { ch='hyphen'; }
                    441:                    if (ch==':') { ch='colon'; }
                    442:                    if (ch=='/') { ch='slash'; }
                    443:                 } else { ch='space'; }
                    444:                 extdisp.document.writeln('<td><img border="0" src="http://'
                    445:                                     +clienthost+fontpath+ch+'.gif" /></td>');
                    446:             }
1.107     www       447:             extdisp.document.writeln('</tr></table>');
1.74      www       448: }
1.87      www       449: 
1.107     www       450: function showdisplay(utext,ltext) {
                    451:   var i; var ch;
                    452:   dislocked=1;
                    453:   if (utext == null) { utext = '';}
                    454:   if (ltext == null) { ltext = '';}
                    455:   if (typeof(utext)!="string") { utext=''; }
                    456:   if (typeof(ltext)!="string") { ltext=''; }
                    457:   if ((utext=='') && (ltext=='')) {
                    458:      utext=statustop;
                    459:      ltext=statusbot;
                    460:      dislocked=0;
                    461:   }
                    462:   if (active) {
                    463:    for (i=0;i<=7;i++) {
                    464:       if (i<utext.length) {
                    465:          ch=utext.charAt(i);
                    466:          if (ch==' ') { ch='space'; }
                    467:          if (ch=='-') { ch='hyphen'; }
                    468:          if (ch==':') { ch='colon'; }
                    469:          if (ch=='/') { ch='slash'; }
                    470:       } else { ch='space'; }
                    471:       this.document['i'+i].src="http://"+clienthost+fontpath+ch+'.gif';
                    472:    }
                    473:    for (i=0;i<=7;i++) {
                    474:       if (i<ltext.length) {
                    475:          ch=ltext.charAt(i);
                    476:          if (ch==' ') { ch='space'; }
                    477:          if (ch=='-') { ch='hyphen'; }
                    478:          if (ch==':') { ch='colon'; }
                    479:          if (ch=='/') { ch='slash'; }
                    480:       } else { ch='space'; }
                    481:       this.document['j'+i].src="http://"+clienthost+fontpath+ch+'.gif';
                    482:    }
                    483:   }
1.2       tyszkabe  484: }
1.108     albertel  485: //-->
1.107     www       486: </script>
1.114     albertel  487: <display>
                    488: return '<script type="text/javascript">w_loncapanav_flag=\''.('on' eq &EXT('user.environment.remotenavmap')).'\';</script>';
                    489: </display>
1.107     www       490: </block>
1.109     www       491: <block condition="&EXT('request.browser.textremote')">
1.107     www       492: <script type="text/javascript">
1.108     albertel  493: //<!--
1.107     www       494: function bigdisplay(dt,db,i) {
1.110     www       495:   extdisp.document.writeln(dt[i]+'<br />'+db[i]);
1.93      www       496: }
                    497: 
1.107     www       498: function showdisplay(utext,ltext) {
                    499:   var i; var ch;
                    500:   dislocked=1;
                    501:   if (utext == null) { utext = '';}
                    502:   if (ltext == null) { ltext = '';}
                    503:   if (typeof(utext)!="string") { utext=''; }
                    504:   if (typeof(ltext)!="string") { ltext=''; }
                    505:   if ((utext=='') && (ltext=='')) {
                    506:      utext=statustop;
                    507:      ltext=statusbot;
                    508:      dislocked=0;
                    509:   }
                    510:   if (active) {
1.109     www       511:    self.document.forms.disp.topdisplay.value=utext;
                    512:    self.document.forms.disp.botdisplay.value=ltext;
1.107     www       513:   }
1.14      www       514: }
1.108     albertel  515: //-->
1.1       www       516: </script>
1.107     www       517: </block>
1.1       www       518: <center>
1.54      matthew   519: <table hspace="0" border="0" cellspacing="0" cellpadding="0">
1.1       www       520: <tr><td>
                    521: <a href="javascript:defdis();"
1.96      albertel  522:    onmouseover="defdis();"
1.80      albertel  523: ><img border="0" width="80" height="50" src="title.gif" /></a>
1.1       www       524: </td><td>
1.80      albertel  525: <img border="0" width="50" height="50" name="led" src="ledoff.gif" />
1.1       www       526: </td></tr>
                    527: </table>
1.54      matthew   528: </center>
                    529: 
                    530: <center>
1.75      www       531: <a href="javascript:extenddisp();"
1.96      albertel  532:    onmouseover="defdis();"
1.74      www       533: ><img width="104" height="10" border="0" src="spacer.gif" /></a>
1.54      matthew   534: </center>
                    535: 
                    536: <center>
1.109     www       537: <block condition="&EXT('request.browser.textremote')!=1">
1.54      matthew   538: <table hspace="1" border="0" cellspacing="0" cellpadding="1">
1.1       www       539: <tr><td bgcolor="#666666">
1.54      matthew   540: <table hspace="0" border="0" cellspacing="1" cellpadding="0"> 
1.1       www       541: <tr>
1.96      albertel  542: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i0" width="15" height="19" src="/adm/lonLCDfont/l.gif" /></a></td>
                    543: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i1" width="15" height="19" src="/adm/lonLCDfont/o.gif" /></a></td>
                    544: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i2" width="15" height="19" src="/adm/lonLCDfont/n.gif" /></a></td>
                    545: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i3" width="15" height="19" src="/adm/lonLCDfont/hyphen.gif" /></a></td>
                    546: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i4" width="15" height="19" src="/adm/lonLCDfont/c.gif" /></a></td>
                    547: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i5" width="15" height="19" src="/adm/lonLCDfont/a.gif" /></a></td>
                    548: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i6" width="15" height="19" src="/adm/lonLCDfont/p.gif" /></a></td>
                    549: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i7" width="15" height="19" src="/adm/lonLCDfont/a.gif" /></a></td>
                    550: </tr>
                    551: <tr>
                    552: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j0" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    553: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j1" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    554: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j2" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    555: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j3" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    556: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j4" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    557: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j5" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    558: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j6" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    559: <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       560: </tr>
                    561: </table>
1.54      matthew   562: </td></tr>
                    563: </table>
1.107     www       564: </block>
1.109     www       565: <block condition="&EXT('request.browser.textremote')">
1.107     www       566: <font size="1">
1.109     www       567: <form name="disp">
                    568: <input type="text" name="topdisplay" size="14" value="LON-CAPA" /><br />
                    569: <input type="text" name="botdisplay" size="14" value="" />
                    570: </form>
                    571: </font>
1.107     www       572: </block>
                    573: 
1.54      matthew   574: </center>
1.1       www       575: 
1.54      matthew   576: <center>
                    577: <table hspace="0" border="0" cellspacing="0" cellpadding="0">
1.31      www       578: 
                    579: <tr>
1.96      albertel  580: <td colspan="2"><a name="link11" 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>
                    581: <td><a name="link12" 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       582: </tr>
                    583: 
                    584: <tr>
1.96      albertel  585: <td rowspan="2"><a name="link21" 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>
                    586: <td><a name="link22" 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>
                    587: <td rowspan="2"><a name="link23" 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       588: </tr>
                    589: 
                    590: <tr>
1.96      albertel  591: <td><a name="link31" 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       592: </tr>
                    593: 
                    594: <tr>
1.96      albertel  595: <td><a name="link41" 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>
                    596: <td><a name="link42" 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>
                    597: <td><a name="link43" 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       598: </tr>
                    599: 
                    600: <tr>
1.96      albertel  601: <td><a name="link51" 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>
                    602: <td><a name="link52" 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>
                    603: <td><a name="link53" 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       604: </tr>
                    605: 
                    606: <tr>
1.96      albertel  607: <td><a name="link61" 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>
                    608: <td><a name="link62" 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>
                    609: <td><a name="link63" 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       610: </tr>
                    611: 
                    612: <tr>
1.96      albertel  613: <td><a name="link71" 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>
                    614: <td><a name="link72" 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>
                    615: <td><a name="link73" 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       616: </tr>
                    617: 
                    618: <tr>
1.96      albertel  619: <td><a name="link81" 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>
                    620: <td><a name="link82" 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>
                    621: <td><a name="link83" 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       622: </tr>
1.1       www       623: 
1.31      www       624: <tr>
1.96      albertel  625: <td><a name="link91" 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>
                    626: <td><a name="link92" 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>
                    627: <td><a name="link93" 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       628: </tr>
                    629: 
                    630: <tr>
1.96      albertel  631: <td><a name="link101" 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>
                    632: <td><a name="link102" 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>
                    633: <td><a name="link103" 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       634: </tr>
1.1       www       635: 
1.62      www       636: <tr>
1.96      albertel  637: <td><a name="link111" 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>
                    638: <td><a name="link112" 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>
                    639: <td><a name="link113" 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>
1.62      www       640: </tr>
                    641: 
1.31      www       642: </table>
1.54      matthew   643: </center>
1.1       www       644: 
1.54      matthew   645: <form name="server" action="/adm/logout" method="post" target="loncapaclient">
                    646: <input type="hidden" name="postdata" value="none" />
1.34      www       647: <input type="hidden" name="command" value="none" />
                    648: <input type="hidden" name="url" value="none" />
1.92      www       649: <input type="hidden" name="postsymb" value="none" />
1.54      matthew   650: </form>
1.1       www       651: </body>
1.20      www       652: </html>
1.42      matthew   653: 
                    654: 
                    655: 
                    656: 
                    657: 
                    658: 
                    659: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>