Diff for /loncom/html/res/adm/pages/menu.html between versions 1.120 and 1.123

version 1.120, 2007/04/24 23:26:15 version 1.123, 2007/10/30 23:40:49
Line 53  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 142  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 153  function windowcheck() { Line 157  function windowcheck() {
   
 function navwindowcheck() {  function navwindowcheck() {
    if (navwindow==null || navwindow.closed) {     if (navwindow==null || navwindow.closed) {
       navwindow=window.open("http://"+clienthost+"/adm/navmaps#curloc",        navwindow=window.open(protocol+clienthost+"/adm/navmaps#curloc",
                   "loncapanav","height=600,width=400,scrollbars=1");                     "loncapanav","height=600,width=400,scrollbars=1"); 
    }     }
 }  }
   
 function collapse() {  function collapse() {
    if (autologout) {     if (autologout) {
        go('/adm/remote?action=collapse');         windowcheck();
          clientwindow.location='/adm/remote?action=collapse';
    }     }
 }  }
     
Line 209  function defdis() { Line 214  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 223  function switchbutton(row,col,imgsrc,tex Line 228  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 236  function clearbut(row,col) { Line 241  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 246  function setstatus(tp,bt) { Line 251  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.target='loncapaclient';        this.document.server.target='loncapaclient';
       this.document.server.action="http://"+clienthost+url;        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 268  function gonav(url) { Line 273  function gonav(url) {
    } else {     } else {
       this.document.server.target="loncapaclient";        this.document.server.target="loncapaclient";
    }      } 
    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) {
        this.document.server.action="http://"+clienthost+url;         this.document.server.action=protocol+clienthost+url;
        this.document.server.postdata.value=currentURL;         this.document.server.postdata.value=currentURL;
        this.document.server.command.value='';         this.document.server.command.value='';
        this.document.server.url.value='';         this.document.server.url.value='';
Line 282  function gonav(url) { Line 287  function gonav(url) {
 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=600,width=600,"+                         "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"); 
Line 293  function gopost(url,postdata,makenewwin) Line 298  function gopost(url,postdata,makenewwin)
       } else {        } else {
          this.document.server.target='loncapaclient';           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='';
Line 305  function gopost(url,postdata,makenewwin) Line 310  function gopost(url,postdata,makenewwin)
 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.target='loncapaclient';        this.document.server.target='loncapaclient';
       this.document.server.action="http://"+clienthost+url;        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 324  function annotate() { Line 329  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='symbnew' value='"+currentSymb+"'>"    +"<input type='hidden' name='symbnew' value='"+currentSymb+"' />"
   +"</form></body></html>");    +"<\/form><\/body><\/html>");
    annotator.document.close();     annotator.document.close();
 }  }
   
Line 344  function set_bookmark() { Line 349  function set_bookmark() {
    "<html><body bgcolor='bbbbbb'><center><form method='post'"     "<html><body bgcolor='bbbbbb'><center><form method='post'"
    +" name='newlink' action='/adm/bookmarks' target='bmquery' "     +" name='newlink' action='/adm/bookmarks' target='bmquery' "
    +">\n <table width=340 height=150 "     +">\n <table width=340 height=150 "
    +"bgcolor='ffffff' align=center><tr><td>Link Name:<br><input "     +"bgcolor='ffffff' align=center><tr><td>Link Name:<br /><input "
    +"type='text' name='title' size=45 value='"+clienttitle+"'>"     +"type='text' name='title' size=45 value='"+clienttitle+"'>"
    +"<br>Address:<br><input type='text' name='address' size='45' "     +"<br />Address:<br /><input type='text' name='address' size='45' "
    +"value='"+clienthref+"'><br><center><input type='submit' "     +"value='"+clienthref+"' /><br /><center><input type='submit' "
    +"value='Save'> <input type='button' value='Close (no save)' "     +"value='Save' /> <input type='button' value='Close (no save)' "
    +"onclick='javascript:window.close();'></center></td>"     +"onclick='javascript:window.close();' /><\/center><\/td>"
    +"</tr></table></form></center></body></html>");     +"<\/tr><\/table><\/form><\/center><\/body><\/html>");
    bmquery.document.close();     bmquery.document.close();
 }  }
   
Line 366  function extenddispclose() { Line 371  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 375  function drawwindow() { Line 380  function drawwindow() {
    extdisp.document.writeln(     extdisp.document.writeln(
   '<html><body bgcolor="#666666" text="#DDDDDD" link="#EEEEEE" '+    '<html><body bgcolor="#666666" text="#DDDDDD" link="#EEEEEE" '+
          'onUnload="opener.w_extdisp_flag=-1;">'+           'onUnload="opener.w_extdisp_flag=-1;">'+
   '<h2>LON-CAPA Extended Display Remote Control</h2>'+    '<h2>LON-CAPA Extended Display Remote Control<\/h2>'+
   '<script type="text/javascript">var currentURL="'+currentURL+'";self.focus();</s'+'cript>'+    '<script type="text/javascript">var currentURL="'+currentURL+'";self.focus();<\/s'+'cript>'+
   '<table border="2"><tr><th>Select Functionality from Below</th>'+    '<table border="2"><tr><th>Select Functionality from Below<\/th>'+
   '<th>Description</th></tr>');    '<th>Description<\/th><\/tr>');
    for (var i=0; i<=ds.length; i++) {     for (var i=0; i<=ds.length; i++) {
        if (typeof(ds[i])!='undefined') {         if (typeof(ds[i])!='undefined') {
           if (ds[i]!='') {            if (ds[i]!='') {
              extdisp.document.writeln(               extdisp.document.writeln(
                 '<tr><td align="center"><a href="javascript:opener.'+                  '<tr><td align="center"><a href="javascript:opener.'+
                hr[i]+';">&gt;&gt;&gt;<img align="absmiddle" border="0" src="'+                 hr[i]+';">&gt;&gt;&gt;<img align="absmiddle" border="0" src="'+
             this.document['b'+i].src+'" />&lt;&lt;&lt;</a><br />&nbsp;<br />');              this.document['b'+i].src+'" />&lt;&lt;&lt;<\/a><br />&nbsp;<br />');
              bigdisplay(dt,db,i);               bigdisplay(dt,db,i);
              extdisp.document.writeln('</td><td>'+ds[i]+'</td></tr>');               extdisp.document.writeln('<\/td><td>'+ds[i]+'<\/td><\/tr>');
           }            }
        }         }
    }     }
    extdisp.document.writeln('</table></body></html>');     extdisp.document.writeln('<\/table><\/body><\/html>');
    extdisp.document.close();     extdisp.document.close();
 }  }
   
 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");
 }  }
   
Line 413  function chat_win() { Line 418  function chat_win() {
    w_LONchat_flag=1;     w_LONchat_flag=1;
    lonchat=window.open('/res/adm/pages/chatroom.html',"LONchat",'height=420,width=480,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>
 <block condition="&EXT('request.browser.textremote')!=1">  <block condition="&EXT('request.browser.textremote')!=1">
 <script type="text/javascript">  <script type="text/javascript">
Line 430  function bigdisplay(dt,db,i) { Line 435  function bigdisplay(dt,db,i) {
                    if (ch=='/') { ch='slash'; }                     if (ch=='/') { ch='slash'; }
                 } else { ch='space'; }                  } else { ch='space'; }
                 extdisp.document.writeln('<td><img border="0" src="http://'                  extdisp.document.writeln('<td><img border="0" src="http://'
                                     +clienthost+fontpath+ch+'.gif" /></td>');                                      +clienthost+fontpath+ch+'.gif" /><\/td>');
              }               }
              extdisp.document.writeln('</tr><tr>');               extdisp.document.writeln('<\/tr><tr>');
              for (var j=0;j<=7;j++) {               for (var j=0;j<=7;j++) {
                 if (j<db[i].length) {                  if (j<db[i].length) {
                    ch=db[i].charAt(j);                     ch=db[i].charAt(j);
Line 442  function bigdisplay(dt,db,i) { Line 447  function bigdisplay(dt,db,i) {
                    if (ch=='/') { ch='slash'; }                     if (ch=='/') { ch='slash'; }
                 } else { ch='space'; }                  } else { ch='space'; }
                 extdisp.document.writeln('<td><img border="0" src="http://'                  extdisp.document.writeln('<td><img border="0" src="http://'
                                     +clienthost+fontpath+ch+'.gif" /></td>');                                      +clienthost+fontpath+ch+'.gif" /><\/td>');
             }              }
             extdisp.document.writeln('</tr></table>');              extdisp.document.writeln('<\/tr><\/table>');
 }  }
   
 function showdisplay(utext,ltext) {  function showdisplay(utext,ltext) {
Line 468  function showdisplay(utext,ltext) { Line 473  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 478  function showdisplay(utext,ltext) { Line 483  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';
    }     }
   }    }
 }  }

Removed from v.1.120  
changed lines
  Added in v.1.123


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