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

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

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