Diff for /loncom/html/res/adm/pages/menu.html between versions 1.110 and 1.121

version 1.110, 2003/10/13 00:22:00 version 1.121, 2007/08/30 22:56:32
Line 38  Remote Control Line 38  Remote Control
       background="remotebg.gif"        background="remotebg.gif"
       onUnload="collapse();"        onUnload="collapse();"
       onLoad="activate();"        onLoad="activate();"
         style="{background-repeat: no-repeat;}"
       >        >
 <LONCAPA_INTERNAL_LONHTTPD_PORT />  <LONCAPA_INTERNAL_LONHTTPD_PORT />
 <script type="text/javascript">  <script type="text/javascript">
Line 52  if (lonhttpdport == null) { Line 53  if (lonhttpdport == null) {
     var lonhttpdport='8080';      var lonhttpdport='8080';
 }  }
   
   var protocol="http://";
   if (lonhttpdport == 443) {
       protocol="https://"
   }
 var imgpath=':'+lonhttpdport+'/res/adm/pages/';  var imgpath=':'+lonhttpdport+'/res/adm/pages/';
 var fontpath=':'+lonhttpdport+'/adm/lonLCDfont/';  var fontpath=':'+lonhttpdport+'/adm/lonLCDfont/';
 var currentURL='';  var currentURL='';
Line 60  var currentSymb=''; Line 65  var currentSymb='';
 var reloadSymb='';  var reloadSymb='';
 var currentStale=1;  var currentStale=1;
 var menucltim;  var menucltim;
   
 var clockdelta=0;  var clockdelta=0;
   
 var w_extdisp_flag=-1;  var w_extdisp_flag=-1;
Line 80  var w_bmquery_flag=-1; Line 84  var w_bmquery_flag=-1;
 var w_BookmarkPal_flag=-1;  var w_BookmarkPal_flag=-1;
 var w_LONcatInfo_flag=-1;  var w_LONcatInfo_flag=-1;
 var w_LONchat_flag=-1;  var w_LONchat_flag=-1;
   var w_loncapanav_flag=-1;
  // 1 means currently open   // 1 means currently open
  // 0 means closed (but has been open)   // 0 means closed (but has been open)
  // -1 means never yet opened/defined   // -1 means never yet opened/defined
Line 102  for (var i=1;i<=3;i++) { Line 107  for (var i=1;i<=3;i++) {
   
 var clienthost=window.location.host;  var clienthost=window.location.host;
 var clientwindow=opener;  var clientwindow=opener;
   var navwindow;
   
 function syncclock(servertime) {  function syncclock(servertime) {
     var clientclock=new Date;      var clientclock=new Date;
Line 140  function advanceclock() { Line 146  function advanceclock() {
   
 function windowcheck() {  function windowcheck() {
    if (clientwindow==null || clientwindow.closed) {     if (clientwindow==null || clientwindow.closed) {
       clientwindow=window.open("http://"+clienthost+"/",'',        clientwindow=window.open(protocol+clienthost+"/",'',
       "height=400,width=440,"+        "height=400,width=440,"+
       "scrollbars=1,toolbar=1,status=1,resizable=1,location=1,menubar=1,"+        "scrollbars=1,toolbar=1,status=1,resizable=1,location=1,menubar=1,"+
       "left=190,top=15,screenX=190,screenY=15");         "left=190,top=15,screenX=190,screenY=15"); 
Line 149  function windowcheck() { Line 155  function windowcheck() {
    extenddispclose();     extenddispclose();
 }  }
   
   function navwindowcheck() {
      if (navwindow==null || navwindow.closed) {
         navwindow=window.open(protocol+clienthost+"/adm/navmaps#curloc",
                     "loncapanav","height=600,width=400,scrollbars=1"); 
      }
   }
   
 function collapse() {  function collapse() {
    if (autologout) {     if (autologout) {
        go('/adm/remote?action=collapse');         go('/adm/remote?action=collapse');
Line 200  function defdis() { Line 213  function defdis() {
   
 function switchbutton(row,col,imgsrc,texttop,textbot,action,desc) {  function switchbutton(row,col,imgsrc,texttop,textbot,action,desc) {
    var idx=10*row+col;     var idx=10*row+col;
    this.document['b'+idx].src="http://"+clienthost+imgpath+imgsrc;     this.document['b'+idx].src=protocol+clienthost+imgpath+imgsrc;
    hr[idx]=action;     hr[idx]=action;
    dt[idx]=texttop;     dt[idx]=texttop;
    db[idx]=textbot;     db[idx]=textbot;
Line 214  function switchbutton(row,col,imgsrc,tex Line 227  function switchbutton(row,col,imgsrc,tex
   
 function clearbut(row,col) {  function clearbut(row,col) {
    var idx=10*row+col;     var idx=10*row+col;
    this.document['b'+idx].src="http://"+clienthost+imgpath+'empty.gif';     this.document['b'+idx].src=protocol+clienthost+imgpath+'empty.gif';
    hr[idx]='javascript:defdis();';     hr[idx]='javascript:defdis();';
    dt[idx]='';     dt[idx]='';
    db[idx]='';     db[idx]='';
Line 227  function clearbut(row,col) { Line 240  function clearbut(row,col) {
 }  }
   
 function setstatus(tp,bt) {  function setstatus(tp,bt) {
    this.document['led'].src="http://"+clienthost+imgpath+"ledblink.gif";     this.document['led'].src=protocol+clienthost+imgpath+"ledblink.gif";
    statustop=tp;     statustop=tp;
    statusbot=bt;     statusbot=bt;
    statuslocked=1;     statuslocked=1;
Line 237  function setstatus(tp,bt) { Line 250  function setstatus(tp,bt) {
 function go(url) {  function go(url) {
    windowcheck();     windowcheck();
    statuslocked=0;     statuslocked=0;
    this.document['led'].src="http://"+clienthost+imgpath+"ledsend.gif";     this.document['led'].src=protocol+clienthost+imgpath+"ledsend.gif";
    if (url!='' && url!= null) {     if (url!='' && url!= null) {
       currentURL = null;        currentURL = null;
       currentSymb= null;        currentSymb= null;
       this.document.server.action="http://"+clienthost+url;        this.document.server.target='loncapaclient';
         this.document.server.action=protocol+clienthost+url;
       this.document.server.postdata.value='';        this.document.server.postdata.value='';
       this.document.server.command.value='';        this.document.server.command.value='';
       this.document.server.url.value='';        this.document.server.url.value='';
Line 250  function go(url) { Line 264  function go(url) {
    }     }
 }  }
   
   function gonav(url) {
      if (w_loncapanav_flag == 1) {
         navwindowcheck();
         statuslocked=0;
         this.document.server.target="loncapanav";
      } else {
         this.document.server.target="loncapaclient";
      } 
      this.document['led'].src=protocol+clienthost+imgpath+"ledsend.gif";
      if (url!='' && url!= null) {
          this.document.server.action=protocol+clienthost+url;
          this.document.server.postdata.value=currentURL;
          this.document.server.command.value='';
          this.document.server.url.value='';
          this.document.server.postsymb.value=currentSymb;
          this.document.server.submit();
      }
   }
   
 function gopost(url,postdata,makenewwin) {  function gopost(url,postdata,makenewwin) {
    windowcheck();     windowcheck();
    statuslocked=0;     statuslocked=0;
    this.document['led'].src="http://"+clienthost+imgpath+"ledsend.gif";     this.document['led'].src=protocol+clienthost+imgpath+"ledsend.gif";
    if (url!='') {     if (url!='') {
       if (makenewwin) {        if (makenewwin) {
          var LONcomWin=window.open("http://"+clienthost+"/adm/rat/empty.html",           var LONcomWin=window.open(protocol+clienthost+"/adm/rat/empty.html",
                        'LONcom',                         'LONcom',
                        "height=400,width=540,"+                         "height=600,width=600,"+
       "scrollbars=1,toolbar=0,status=0,resizable=1,location=0,menubar=0");         "scrollbars=1,toolbar=0,status=0,resizable=1,location=0,menubar=0"); 
          this.document.server.target='LONcom';           this.document.server.target='LONcom';
         } else {
            this.document.server.target='loncapaclient';
       }        }
       this.document.server.action="http://"+clienthost+url;        this.document.server.action=protocol+clienthost+url;
       this.document.server.postdata.value=postdata;        this.document.server.postdata.value=postdata;
       this.document.server.command.value='';        this.document.server.command.value='';
       this.document.server.url.value='';        this.document.server.url.value='';
       this.document.server.postsymb.value='';        this.document.server.postsymb.value='';
       this.document.server.submit();        this.document.server.submit();
       this.document.server.target='loncapaclient';  
    }     }
 }  }
   
 function gocmd(url,cmd) {  function gocmd(url,cmd) {
    windowcheck();     windowcheck();
    statuslocked=0;     statuslocked=0;
    this.document['led'].src="http://"+clienthost+imgpath+"ledsend.gif";     this.document['led'].src=protocol+clienthost+imgpath+"ledsend.gif";
    if (url!='') {     if (url!='') {
       this.document.server.action="http://"+clienthost+url;        this.document.server.target='loncapaclient';
         this.document.server.action=protocol+clienthost+url;
       this.document.server.postdata.value='';        this.document.server.postdata.value='';
       this.document.server.command.value=cmd;        this.document.server.command.value=cmd;
       this.document.server.url.value=currentURL;        this.document.server.url.value=currentURL;
Line 293  function annotate() { Line 328  function annotate() {
    "<html><body onload='Javascript:document.goannotate.submit();'>"     "<html><body onload='Javascript:document.goannotate.submit();'>"
   +"<form name='goannotate' target='Annotator' method='post' "    +"<form name='goannotate' target='Annotator' method='post' "
   +"action='/adm/annotations'>"    +"action='/adm/annotations'>"
   +"<input type='hidden' name='urlnew' value='"+currentURL+"'>"    +"<input type='hidden' name='symbnew' value='"+currentSymb+"'>"
   +"</form></body></html>");    +"</form></body></html>");
    annotator.document.close();     annotator.document.close();
 }  }
Line 335  function extenddispclose() { Line 370  function extenddispclose() {
 function extenddisp() {  function extenddisp() {
    go('');     go('');
    w_extdisp_flag=1;     w_extdisp_flag=1;
    extdisp=window.open("http://"+clienthost+"/adm/rat/loading.html",     extdisp=window.open(protocol+clienthost+"/adm/rat/loading.html",
                "ExtDisp", "scrollbars=1,width=400,height=450");                 "ExtDisp", "scrollbars=1,width=400,height=450");
 }  }
   
Line 367  function drawwindow() { Line 402  function drawwindow() {
 function edit_bookmarks() {  function edit_bookmarks() {
    go('');     go('');
    w_BookmarkPal_flag=1;     w_BookmarkPal_flag=1;
    bookmarkpal=window.open("http://"+clienthost+"/adm/bookmarks",     bookmarkpal=window.open(protocol+clienthost+"/adm/bookmarks",
                "BookmarkPal", "width=400,height=505,scrollbars=0");                 "BookmarkPal", "width=400,height=505,scrollbars=0");
 }  }
   
 function catalog_info() {  function catalog_info() {
    go('');     go('');
    w_LONcatInfo_flag=1;     w_LONcatInfo_flag=1;
    loncatinfo=window.open(clientwindow.window.location.pathname+'.meta',"cat",'height=320,width=280,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');     loncatinfo=window.open(clientwindow.window.location.pathname+'.meta',"cat",'height=420,width=480,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');
 }  }
   
 function chat_win() {  function chat_win() {
    go('');     go('');
    w_LONchat_flag=1;     w_LONchat_flag=1;
    lonchat=window.open('/res/adm/pages/chatroom.html',"LONchat",'height=320,width=280,resizable=yes,location=no,menubar=no,toolbar=no');     lonchat=window.open('/res/adm/pages/chatroom.html',"LONchat",'height=420,width=480,resizable=yes,location=no,menubar=no,toolbar=no');
 }  }
 // -->  // -->
 </script>  </script>
Line 437  function showdisplay(utext,ltext) { Line 472  function showdisplay(utext,ltext) {
          if (ch==':') { ch='colon'; }           if (ch==':') { ch='colon'; }
          if (ch=='/') { ch='slash'; }           if (ch=='/') { ch='slash'; }
       } else { ch='space'; }        } else { ch='space'; }
       this.document['i'+i].src="http://"+clienthost+fontpath+ch+'.gif';        this.document['i'+i].src=protocol+clienthost+fontpath+ch+'.gif';
    }     }
    for (i=0;i<=7;i++) {     for (i=0;i<=7;i++) {
       if (i<ltext.length) {        if (i<ltext.length) {
Line 447  function showdisplay(utext,ltext) { Line 482  function showdisplay(utext,ltext) {
          if (ch==':') { ch='colon'; }           if (ch==':') { ch='colon'; }
          if (ch=='/') { ch='slash'; }           if (ch=='/') { ch='slash'; }
       } else { ch='space'; }        } else { ch='space'; }
       this.document['j'+i].src="http://"+clienthost+fontpath+ch+'.gif';        this.document['j'+i].src=protocol+clienthost+fontpath+ch+'.gif';
    }     }
   }    }
 }  }
 //-->  //-->
 </script>  </script>
   <display>
   return '<script type="text/javascript">w_loncapanav_flag=\''.('on' eq &EXT('user.environment.remotenavmap')).'\';</script>';
   </display>
 </block>  </block>
 <block condition="&EXT('request.browser.textremote')">  <block condition="&EXT('request.browser.textremote')">
 <script type="text/javascript">  <script type="text/javascript">
Line 605  function showdisplay(utext,ltext) { Line 643  function showdisplay(utext,ltext) {
 <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>  <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>
 </tr>  </tr>
   
   <tr>
   <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>
   <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>
   <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>
   
 </table>  </table>
 </center>  </center>
   

Removed from v.1.110  
changed lines
  Added in v.1.121


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