File:  [LON-CAPA] / loncom / html / res / adm / pages / menu.html
Revision 1.123: download - view: text, annotated - select for diffs
Tue Oct 30 23:40:49 2007 UTC (16 years, 9 months ago) by albertel
Branches: MAIN
CVS tags: version_2_7_X, version_2_7_1, version_2_7_0, version_2_6_X, version_2_6_99_1, version_2_6_99_0, version_2_6_3, version_2_6_2, version_2_6_1, version_2_6_0, version_2_5_99_1, version_2_5_99_0, HEAD
- BUG#5500 appears something in firefox changed with collapsing the remote,
  the form submission seems to no longer occur.
  switch to mucking with .location directly (works firefox 2/linux and
   IE5.5/6 win)

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

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