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

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

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