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

1.1       www         1: <html>
                      2: <!--
                      3: The LearningOnline Network with CAPA
                      4: Remote Control
1.40      www         5: 
                      6: //
1.127   ! bisitz      7: // $Id: menu.html,v 1.126 2009/03/27 05:13:04 raeburn 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.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.31      www       206:    var idx=10*row+col;
1.124     raeburn   207:    this.document['b'+idx].src=imgpath+imgsrc;
1.31      www       208:    hr[idx]=action;
                    209:    dt[idx]=texttop;
                    210:    db[idx]=textbot;
1.74      www       211:    ds[idx]=desc;
1.85      www       212:    for (var k=0;k<document.links.length;k++) {
                    213:        if (document.links[k].name=='link'+idx) {
                    214:           document.links[k].title=desc;
                    215:        }
                    216:    }
1.39      www       217: } 
1.31      www       218: 
                    219: function clearbut(row,col) {
                    220:    var idx=10*row+col;
1.124     raeburn   221:    this.document['b'+idx].src=imgpath+'empty.gif';
1.31      www       222:    hr[idx]='javascript:defdis();';
                    223:    dt[idx]='';
                    224:    db[idx]='';
1.74      www       225:    ds[idx]='';
1.85      www       226:    for (var k=0;k<document.links.length;k++) {
                    227:        if (document.links[k].name=='link'+idx) {
                    228:           document.links[k].title='';
                    229:        }
                    230:    }
1.31      www       231: }
                    232: 
1.1       www       233: function setstatus(tp,bt) {
1.124     raeburn   234:    this.document['led'].src=imgpath+"ledblink.gif";
1.1       www       235:    statustop=tp;
                    236:    statusbot=bt;
1.71      www       237:    statuslocked=1;
1.1       www       238:    defdis();
1.47      matthew   239: }
                    240: 
1.1       www       241: function go(url) {
1.10      www       242:    windowcheck();
1.71      www       243:    statuslocked=0;
1.124     raeburn   244:    this.document['led'].src=imgpath+"ledsend.gif";
1.53      matthew   245:    if (url!='' && url!= null) {
1.101     www       246:       currentURL = null;
                    247:       currentSymb= null;
1.113     albertel  248:       this.document.server.target='loncapaclient';
1.124     raeburn   249:       this.document.server.action=url;
1.101     www       250:       this.document.server.postdata.value='';
                    251:       this.document.server.command.value='';
                    252:       this.document.server.url.value='';
                    253:       this.document.server.postsymb.value='';
                    254:       this.document.server.submit();
1.7       www       255:    }
                    256: }
                    257: 
1.112     albertel  258: function gonav(url) {
1.115     albertel  259:    if (w_loncapanav_flag == 1) {
1.112     albertel  260:       navwindowcheck();
                    261:       statuslocked=0;
1.115     albertel  262:       this.document.server.target="loncapanav";
1.117     albertel  263:    } else {
                    264:       this.document.server.target="loncapaclient";
                    265:    } 
1.124     raeburn   266:    this.document['led'].src=imgpath+"ledsend.gif";
1.115     albertel  267:    if (url!='' && url!= null) {
1.124     raeburn   268:        this.document.server.action=url;
1.115     albertel  269:        this.document.server.postdata.value=currentURL;
                    270:        this.document.server.command.value='';
                    271:        this.document.server.url.value='';
                    272:        this.document.server.postsymb.value=currentSymb;
                    273:        this.document.server.submit();
1.112     albertel  274:    }
                    275: }
                    276: 
1.105     www       277: function gopost(url,postdata,makenewwin) {
1.10      www       278:    windowcheck();
1.71      www       279:    statuslocked=0;
1.124     raeburn   280:    this.document['led'].src=imgpath+"ledsend.gif";
1.7       www       281:    if (url!='') {
1.105     www       282:       if (makenewwin) {
1.124     raeburn   283:          var LONcomWin=window.open("/adm/rat/empty.html",
1.106     www       284:                        'LONcom',
1.116     www       285:                        "height=600,width=600,"+
1.106     www       286:       "scrollbars=1,toolbar=0,status=0,resizable=1,location=0,menubar=0"); 
1.105     www       287:          this.document.server.target='LONcom';
1.113     albertel  288:       } else {
                    289:          this.document.server.target='loncapaclient';
1.105     www       290:       }
1.124     raeburn   291:       this.document.server.action=url;
1.8       www       292:       this.document.server.postdata.value=postdata;
1.34      www       293:       this.document.server.command.value='';
                    294:       this.document.server.url.value='';
1.92      www       295:       this.document.server.postsymb.value='';
1.34      www       296:       this.document.server.submit();
                    297:    }
                    298: }
                    299: 
                    300: function gocmd(url,cmd) {
                    301:    windowcheck();
1.71      www       302:    statuslocked=0;
1.124     raeburn   303:    this.document['led'].src=imgpath+"ledsend.gif";
1.34      www       304:    if (url!='') {
1.113     albertel  305:       this.document.server.target='loncapaclient';
1.124     raeburn   306:       this.document.server.action=url;
1.34      www       307:       this.document.server.postdata.value='';
                    308:       this.document.server.command.value=cmd;
                    309:       this.document.server.url.value=currentURL;
1.92      www       310:       this.document.server.postsymb.value=currentSymb;
1.7       www       311:       this.document.server.submit();
1.1       www       312:    }
                    313: }
                    314: 
1.2       tyszkabe  315: function annotate() {
1.25      harris41  316:    w_Annotator_flag=1;
1.11      tyszkabe  317:    annotator=window.open('','Annotator','width=365,height=265,scrollbars=0');
1.14      www       318:    annotator.document.write(
                    319:    "<html><body onload='Javascript:document.goannotate.submit();'>"
                    320:   +"<form name='goannotate' target='Annotator' method='post' "
                    321:   +"action='/adm/annotations'>"
1.122     albertel  322:   +"<input type='hidden' name='symbnew' value='"+currentSymb+"' />"
                    323:   +"<\/form><\/body><\/html>");
1.14      www       324:    annotator.document.close();
1.2       tyszkabe  325: }
                    326: 
                    327: function set_bookmark() {
                    328:    go('');
1.36      www       329:    if (currentStale) {
                    330:       clienttitle="Enter Title";
                    331:       clienthref=currentURL;
                    332:    } else {
                    333:       clienttitle=clientwindow.document.title;
                    334:       clienthref=clientwindow.location.pathname;
                    335:    }
1.25      harris41  336:    w_bmquery_flag=1;
1.24      tyszkabe  337:    bmquery=window.open('','bmquery','width=365,height=165,scrollbars=0');
                    338:    bmquery.document.write(
1.127   ! bisitz    339:    '<html><body bgcolor="#BBBBBB"><center><form method="post"'
        !           340:    +' name="newlink" action="/adm/bookmarks" target="bmquery" '
        !           341:    +'>'+"\n"+' <table width="340" height="150" '
        !           342:    +'bgcolor="#FFFFFF" align="center"><tr><td>Link Name:<br /><input '
        !           343:    +'type="text" name="title" size="45" value="'+clienttitle+'">'
        !           344:    +'<br />Address:<br /><input type="text" name="address" size="45" '
        !           345:    +'value="'+clienthref+'" /><br /><center><input type="submit" '
        !           346:    +'value="Save" /> <input type="button" value="Close" '
        !           347:    +'onclick="javascript:window.close();" /><\/center><\/td>'
        !           348:    +'<\/tr><\/table><\/form><\/center><\/body><\/html>');
1.24      tyszkabe  349:    bmquery.document.close();
1.2       tyszkabe  350: }
                    351: 
1.77      www       352: function extenddispclose() {
                    353:    if (w_extdisp_flag>0) {
                    354:       if (extdisp!=null && !extdisp.closed) {
                    355:          extdisp.close();
                    356:       }
                    357:       w_extdisp_flag=-1;
                    358:    }
                    359: }
                    360: 
1.75      www       361: function extenddisp() {
1.74      www       362:    go('');
1.77      www       363:    w_extdisp_flag=1;
1.124     raeburn   364:    extdisp=window.open("/adm/rat/loading.html",
1.82      albertel  365:                "ExtDisp", "scrollbars=1,width=400,height=450");
1.87      www       366: }
                    367: 
                    368: function drawwindow() {
1.74      www       369:    extdisp.document.clear();
                    370:    extdisp.document.writeln(
1.78      www       371:   '<html><body bgcolor="#666666" text="#DDDDDD" link="#EEEEEE" '+
1.77      www       372:          'onUnload="opener.w_extdisp_flag=-1;">'+
1.122     albertel  373:   '<h2>LON-CAPA Extended Display Remote Control<\/h2>'+
                    374:   '<script type="text/javascript">var currentURL="'+currentURL+'";self.focus();<\/s'+'cript>'+
                    375:   '<table border="2"><tr><th>Select Functionality from Below<\/th>'+
                    376:   '<th>Description<\/th><\/tr>');
1.74      www       377:    for (var i=0; i<=ds.length; i++) {
                    378:        if (typeof(ds[i])!='undefined') {
                    379:           if (ds[i]!='') {
                    380:              extdisp.document.writeln(
1.78      www       381:                 '<tr><td align="center"><a href="javascript:opener.'+
                    382:                hr[i]+';">&gt;&gt;&gt;<img align="absmiddle" border="0" src="'+
1.122     albertel  383:             this.document['b'+i].src+'" />&lt;&lt;&lt;<\/a><br />&nbsp;<br />');
1.107     www       384:              bigdisplay(dt,db,i);
1.122     albertel  385:              extdisp.document.writeln('<\/td><td>'+ds[i]+'<\/td><\/tr>');
1.107     www       386:           }
                    387:        }
                    388:    }
1.122     albertel  389:    extdisp.document.writeln('<\/table><\/body><\/html>');
1.107     www       390:    extdisp.document.close();
                    391: }
                    392: 
                    393: function edit_bookmarks() {
                    394:    go('');
                    395:    w_BookmarkPal_flag=1;
1.124     raeburn   396:    bookmarkpal=window.open("/adm/bookmarks",
1.107     www       397:                "BookmarkPal", "width=400,height=505,scrollbars=0");
                    398: }
                    399: 
                    400: function catalog_info() {
                    401:    go('');
                    402:    w_LONcatInfo_flag=1;
1.116     www       403:    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       404: }
                    405: 
                    406: function chat_win() {
                    407:    go('');
                    408:    w_LONchat_flag=1;
1.116     www       409:    lonchat=window.open('/res/adm/pages/chatroom.html',"LONchat",'height=420,width=480,resizable=yes,location=no,menubar=no,toolbar=no');
1.107     www       410: }
1.122     albertel  411: //-->
1.107     www       412: </script>
1.109     www       413: <block condition="&EXT('request.browser.textremote')!=1">
1.107     www       414: <script type="text/javascript">
1.108     albertel  415: //<!--
1.107     www       416: function bigdisplay(dt,db,i) {
                    417:              extdisp.document.writeln(
                    418: '<table hspace="0" border="0" cellspacing="1" cellpadding="0"><tr>');
1.74      www       419:              for (var j=0;j<=7;j++) {
                    420:                 if (j<dt[i].length) {
                    421:                    ch=dt[i].charAt(j);
                    422:                    if (ch==' ') { ch='space'; }
                    423:                    if (ch=='-') { ch='hyphen'; }
                    424:                    if (ch==':') { ch='colon'; }
                    425:                    if (ch=='/') { ch='slash'; }
                    426:                 } else { ch='space'; }
1.124     raeburn   427:                 extdisp.document.writeln('<td><img border="0" src="'
                    428:                                          +fontpath+ch+'.gif" /><\/td>');
1.74      www       429:              }
1.122     albertel  430:              extdisp.document.writeln('<\/tr><tr>');
1.74      www       431:              for (var j=0;j<=7;j++) {
                    432:                 if (j<db[i].length) {
                    433:                    ch=db[i].charAt(j);
                    434:                    if (ch==' ') { ch='space'; }
                    435:                    if (ch=='-') { ch='hyphen'; }
                    436:                    if (ch==':') { ch='colon'; }
                    437:                    if (ch=='/') { ch='slash'; }
                    438:                 } else { ch='space'; }
1.124     raeburn   439:                 extdisp.document.writeln('<td><img border="0" src="'
                    440:                                          +fontpath+ch+'.gif" /><\/td>');
1.74      www       441:             }
1.122     albertel  442:             extdisp.document.writeln('<\/tr><\/table>');
1.74      www       443: }
1.87      www       444: 
1.107     www       445: function showdisplay(utext,ltext) {
                    446:   var i; var ch;
                    447:   dislocked=1;
                    448:   if (utext == null) { utext = '';}
                    449:   if (ltext == null) { ltext = '';}
                    450:   if (typeof(utext)!="string") { utext=''; }
                    451:   if (typeof(ltext)!="string") { ltext=''; }
                    452:   if ((utext=='') && (ltext=='')) {
                    453:      utext=statustop;
                    454:      ltext=statusbot;
                    455:      dislocked=0;
                    456:   }
                    457:   if (active) {
                    458:    for (i=0;i<=7;i++) {
                    459:       if (i<utext.length) {
                    460:          ch=utext.charAt(i);
                    461:          if (ch==' ') { ch='space'; }
                    462:          if (ch=='-') { ch='hyphen'; }
                    463:          if (ch==':') { ch='colon'; }
                    464:          if (ch=='/') { ch='slash'; }
                    465:       } else { ch='space'; }
1.124     raeburn   466:       this.document['i'+i].src=fontpath+ch+'.gif';
1.107     www       467:    }
                    468:    for (i=0;i<=7;i++) {
                    469:       if (i<ltext.length) {
                    470:          ch=ltext.charAt(i);
                    471:          if (ch==' ') { ch='space'; }
                    472:          if (ch=='-') { ch='hyphen'; }
                    473:          if (ch==':') { ch='colon'; }
                    474:          if (ch=='/') { ch='slash'; }
                    475:       } else { ch='space'; }
1.124     raeburn   476:       this.document['j'+i].src=fontpath+ch+'.gif';
1.107     www       477:    }
                    478:   }
1.2       tyszkabe  479: }
1.108     albertel  480: //-->
1.107     www       481: </script>
1.114     albertel  482: <display>
                    483: return '<script type="text/javascript">w_loncapanav_flag=\''.('on' eq &EXT('user.environment.remotenavmap')).'\';</script>';
                    484: </display>
1.107     www       485: </block>
1.109     www       486: <block condition="&EXT('request.browser.textremote')">
1.107     www       487: <script type="text/javascript">
1.108     albertel  488: //<!--
1.107     www       489: function bigdisplay(dt,db,i) {
1.110     www       490:   extdisp.document.writeln(dt[i]+'<br />'+db[i]);
1.93      www       491: }
                    492: 
1.107     www       493: function showdisplay(utext,ltext) {
                    494:   var i; var ch;
                    495:   dislocked=1;
                    496:   if (utext == null) { utext = '';}
                    497:   if (ltext == null) { ltext = '';}
                    498:   if (typeof(utext)!="string") { utext=''; }
                    499:   if (typeof(ltext)!="string") { ltext=''; }
                    500:   if ((utext=='') && (ltext=='')) {
                    501:      utext=statustop;
                    502:      ltext=statusbot;
                    503:      dislocked=0;
                    504:   }
                    505:   if (active) {
1.109     www       506:    self.document.forms.disp.topdisplay.value=utext;
                    507:    self.document.forms.disp.botdisplay.value=ltext;
1.107     www       508:   }
1.14      www       509: }
1.108     albertel  510: //-->
1.1       www       511: </script>
1.107     www       512: </block>
1.1       www       513: <center>
1.54      matthew   514: <table hspace="0" border="0" cellspacing="0" cellpadding="0">
1.1       www       515: <tr><td>
                    516: <a href="javascript:defdis();"
1.96      albertel  517:    onmouseover="defdis();"
1.80      albertel  518: ><img border="0" width="80" height="50" src="title.gif" /></a>
1.1       www       519: </td><td>
1.80      albertel  520: <img border="0" width="50" height="50" name="led" src="ledoff.gif" />
1.1       www       521: </td></tr>
                    522: </table>
1.54      matthew   523: </center>
                    524: 
                    525: <center>
1.75      www       526: <a href="javascript:extenddisp();"
1.96      albertel  527:    onmouseover="defdis();"
1.74      www       528: ><img width="104" height="10" border="0" src="spacer.gif" /></a>
1.54      matthew   529: </center>
                    530: 
                    531: <center>
1.109     www       532: <block condition="&EXT('request.browser.textremote')!=1">
1.54      matthew   533: <table hspace="1" border="0" cellspacing="0" cellpadding="1">
1.1       www       534: <tr><td bgcolor="#666666">
1.54      matthew   535: <table hspace="0" border="0" cellspacing="1" cellpadding="0"> 
1.1       www       536: <tr>
1.96      albertel  537: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i0" width="15" height="19" src="/adm/lonLCDfont/l.gif" /></a></td>
                    538: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i1" width="15" height="19" src="/adm/lonLCDfont/o.gif" /></a></td>
                    539: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i2" width="15" height="19" src="/adm/lonLCDfont/n.gif" /></a></td>
                    540: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i3" width="15" height="19" src="/adm/lonLCDfont/hyphen.gif" /></a></td>
                    541: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i4" width="15" height="19" src="/adm/lonLCDfont/c.gif" /></a></td>
                    542: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i5" width="15" height="19" src="/adm/lonLCDfont/a.gif" /></a></td>
                    543: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i6" width="15" height="19" src="/adm/lonLCDfont/p.gif" /></a></td>
                    544: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0"  name="i7" width="15" height="19" src="/adm/lonLCDfont/a.gif" /></a></td>
                    545: </tr>
                    546: <tr>
                    547: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j0" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    548: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j1" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    549: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j2" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    550: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j3" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    551: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j4" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    552: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j5" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    553: <td><a href="javascript:defdis();" onmouseover="defdis();"><img border="0" name="j6" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    554: <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       555: </tr>
                    556: </table>
1.54      matthew   557: </td></tr>
                    558: </table>
1.107     www       559: </block>
1.109     www       560: <block condition="&EXT('request.browser.textremote')">
1.107     www       561: <font size="1">
1.109     www       562: <form name="disp">
                    563: <input type="text" name="topdisplay" size="14" value="LON-CAPA" /><br />
                    564: <input type="text" name="botdisplay" size="14" value="" />
                    565: </form>
                    566: </font>
1.107     www       567: </block>
                    568: 
1.54      matthew   569: </center>
1.1       www       570: 
1.54      matthew   571: <center>
                    572: <table hspace="0" border="0" cellspacing="0" cellpadding="0">
1.31      www       573: 
                    574: <tr>
1.96      albertel  575: <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>
                    576: <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       577: </tr>
                    578: 
                    579: <tr>
1.96      albertel  580: <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>
                    581: <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>
                    582: <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       583: </tr>
                    584: 
                    585: <tr>
1.96      albertel  586: <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       587: </tr>
                    588: 
                    589: <tr>
1.96      albertel  590: <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>
                    591: <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>
                    592: <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       593: </tr>
                    594: 
                    595: <tr>
1.96      albertel  596: <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>
                    597: <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>
                    598: <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       599: </tr>
                    600: 
                    601: <tr>
1.96      albertel  602: <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>
                    603: <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>
                    604: <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       605: </tr>
                    606: 
                    607: <tr>
1.96      albertel  608: <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>
                    609: <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>
                    610: <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       611: </tr>
                    612: 
                    613: <tr>
1.96      albertel  614: <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>
                    615: <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>
                    616: <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       617: </tr>
1.1       www       618: 
1.31      www       619: <tr>
1.96      albertel  620: <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>
                    621: <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>
                    622: <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       623: </tr>
                    624: 
                    625: <tr>
1.96      albertel  626: <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>
                    627: <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>
                    628: <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       629: </tr>
1.1       www       630: 
1.62      www       631: <tr>
1.96      albertel  632: <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>
                    633: <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>
                    634: <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       635: </tr>
                    636: 
1.119     www       637: <tr>
                    638: <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>
                    639: <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>
                    640: <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>
                    641: 
1.126     raeburn   642: <tr>
                    643: <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>
                    644: <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>
                    645: <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>
                    646: 
1.31      www       647: </table>
1.54      matthew   648: </center>
1.1       www       649: 
1.54      matthew   650: <form name="server" action="/adm/logout" method="post" target="loncapaclient">
                    651: <input type="hidden" name="postdata" value="none" />
1.34      www       652: <input type="hidden" name="command" value="none" />
                    653: <input type="hidden" name="url" value="none" />
1.92      www       654: <input type="hidden" name="postsymb" value="none" />
1.54      matthew   655: </form>
1.1       www       656: </body>
1.20      www       657: </html>
1.42      matthew   658: 
                    659: 
                    660: 
                    661: 
                    662: 
                    663: 
                    664: 

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