Diff for /loncom/html/res/adm/pages/menu.html between versions 1.35 and 1.39

version 1.35, 2001/06/15 22:25:10 version 1.39, 2001/08/24 15:33:59
Line 11  Jan Guy Albertelli Line 11  Jan Guy Albertelli
 3/21 Gerd Kortemeyer  3/21 Gerd Kortemeyer
 4/30 Ben Tyszka  4/30 Ben Tyszka
 5/2 Scott Harrison  5/2 Scott Harrison
 5/4,5/9,5/28,5/30,6/1,6/2,6/3,6/8 Gerd Kortemeyer  5/4,5/9,5/28,5/30,6/1,6/2,6/3,6/8,6/15,6/16 Gerd Kortemeyer
   7/24,8/6 Scott Harrison
   8/24 Gerd Kortemeyer
 -->  -->
 <head>  <head>
 <title>LON-CAPA Remote</title>  <title>LON-CAPA Remote</title>
Line 20  Jan Guy Albertelli Line 22  Jan Guy Albertelli
   
 <body bgcolor="#BBBBBB"   <body bgcolor="#BBBBBB" 
       background="remotebg.gif"        background="remotebg.gif"
       onLoad="activate();"   
       onUnload="logout();">        onUnload="logout();">
 <basefont size="1" />  <basefont size="1" />
   
Line 98  function deactivate () { Line 99  function deactivate () {
 function display(utext,ltext) {  function display(utext,ltext) {
   var i; var ch;    var i; var ch;
   this.window.focus();    this.window.focus();
   if (utext==undefined) { utext=''; }    if (typeof(utext)=="undefined") { utext=''; }
   if (ltext==undefined) { ltext=''; }    if (typeof(ltext)=="undefined") { ltext=''; }
   if ((utext=='') && (ltext=='')) {    if ((utext=='') && (ltext=='')) {
      utext=statustop;       utext=statustop;
      ltext=statusbot;       ltext=statusbot;
Line 131  function defdis() { Line 132  function defdis() {
   
 function switchbutton(row,col,imgsrc,texttop,textbot,action) {  function switchbutton(row,col,imgsrc,texttop,textbot,action) {
    var idx=10*row+col;     var idx=10*row+col;
    this.document['b'+idx].src=imgpath+imgsrc;     this.document['b'+idx].src="http://"+clienthost+imgpath+imgsrc;
    hr[idx]=action;     hr[idx]=action;
    dt[idx]=texttop;     dt[idx]=texttop;
    db[idx]=textbot;     db[idx]=textbot;
 }  } 
   
 function clearbut(row,col) {  function clearbut(row,col) {
    var idx=10*row+col;     var idx=10*row+col;
    this.document['b'+idx].src=imgpath+'empty.gif';     this.document['b'+idx].src="http://"+clienthost+imgpath+'empty.gif';
    hr[idx]='javascript:defdis();';     hr[idx]='javascript:defdis();';
    dt[idx]='';     dt[idx]='';
    db[idx]='';     db[idx]='';
Line 192  function annotate() { Line 193  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='"+clientwindow.location.href+"'>"    +"<input type='hidden' name='urlnew' value='"+currentURL+"'>"
   +"</form></body></html>");    +"</form></body></html>");
    annotator.document.close();     annotator.document.close();
 }  }
   
 function set_bookmark() {  function set_bookmark() {
    go('');     go('');
    clienttitle="Enter Title";     if (currentStale) {
    clienthref="Enter Address";        clienttitle="Enter Title";
         clienthref=currentURL;
      } else {
         clienttitle=clientwindow.document.title;
         clienthref=clientwindow.location.pathname;
      }
    w_bmquery_flag=1;     w_bmquery_flag=1;
    bmquery=window.open('','bmquery','width=365,height=165,scrollbars=0');     bmquery=window.open('','bmquery','width=365,height=165,scrollbars=0');
    bmquery.document.write(     bmquery.document.write(
Line 342  function catalog_info() { Line 348  function catalog_info() {
 <input type="hidden" name="url" value="none" />  <input type="hidden" name="url" value="none" />
  </form>   </form>
 </center>  </center>
   <script>
   activate();
   </script>
 </body>  </body>
 </html>  </html>

Removed from v.1.35  
changed lines
  Added in v.1.39


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