Diff for /loncom/html/res/adm/pages/menu.html between versions 1.6 and 1.7

version 1.6, 2000/10/02 18:51:53 version 1.7, 2000/10/03 19:38:11
Line 4  The LearningOnline Network with CAPA Line 4  The LearningOnline Network with CAPA
 Remote Control  Remote Control
 6/12/00,6/13,6/14,6/15 Gerd Kortemeyer  6/12/00,6/13,6/14,6/15 Gerd Kortemeyer
 Sept Ben Tyszka  Sept Ben Tyszka
 10/2 Gerd Kortemeyer  10/2,10/3 Gerd Kortemeyer
 -->  -->
 <head>  <head>
 <title>LON-CAPA Remote</title>  <title>LON-CAPA Remote</title>
Line 25  function windowcheck() { Line 25  function windowcheck() {
    if (clientwindow.closed) {     if (clientwindow.closed) {
       clientwindow=window.open("http://"+clienthost+"/");         clientwindow=window.open("http://"+clienthost+"/"); 
    }     }
      clientwindow.name='loncapaclient';
 }  }
   
 function logout () {  function logout () {
Line 68  function setstatus(tp,bt) { Line 69  function setstatus(tp,bt) {
 function go(url) {  function go(url) {
    this.document['led'].src="ledsend.gif";     this.document['led'].src="ledsend.gif";
    if (url!='') {     if (url!='') {
          clientwindow.window.location.href="http://"+clienthost+url;         windowcheck();
          clientwindow.window.location.href="http://"+clienthost+url;
      }
   }
   
   function gopost(url,postdata) {
      this.document['led'].src="ledsend.gif";
      if (url!='') {
         windowcheck();
         this.document.server.postdata=postdata;
         this.document.server.action="http://"+clienthost+url;
         this.document.server.submit();
    }     }
 }  }
   
Line 219  function edit_bookmarks() { Line 231  function edit_bookmarks() {
   
 <MAP NAME="navmenuMap">  <MAP NAME="navmenuMap">
     <AREA SHAPE="rect" COORDS="86,24,110,80"      <AREA SHAPE="rect" COORDS="86,24,110,80"
           href="javascript:go('');"            href="javascript:gopost('/adm/flip',
                                  'forward:'+clientwindow.window.location.href);"
           onMouseOver="display('go','forward');"            onMouseOver="display('go','forward');"
     >      >
     <AREA SHAPE="rect" COORDS="20,23,44,81"      <AREA SHAPE="rect" COORDS="20,23,44,81"
           href="javascript:go('');"            href="javascript:gopost('/adm/flip',
                                  'back:'+clientwindow.window.location.href);"
           onMouseOver="display('go','back');"            onMouseOver="display('go','back');"
     >      >
     <AREA SHAPE="rect" COORDS="35,72,95,97"      <AREA SHAPE="rect" COORDS="35,72,95,97"
Line 259  function edit_bookmarks() { Line 273  function edit_bookmarks() {
          onMouseOver="defdis()";           onMouseOver="defdis()";
     >      >
 </MAP>  </MAP>
   <form name='server' action='/adm/logout' method='post' target='loncapaclient'>
   <input type='hidden' name='postdata' value='none'>
   </form>
 </body>  </body>
 </html>  </html>
   

Removed from v.1.6  
changed lines
  Added in v.1.7


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