Diff for /rat/client/Attic/code.html between versions 1.29 and 1.31

version 1.29, 2001/04/30 17:01:06 version 1.31, 2001/05/28 19:22:45
Line 2312  function condense() { Line 2312  function condense() {
 function load() {  function load() {
    message("Loading");     message("Loading");
    schedule('load');     schedule('load');
    checkdef();  
 }  }
   
 function finishload() {  function finishload() {
Line 2422  function wheelswitch() { Line 2421  function wheelswitch() {
 // --------------------------------------------- Checks if server frame defined  // --------------------------------------------- Checks if server frame defined
   
 function checkdef() {  function checkdef() {
    if (parent.server!=undefined) {     if (parent.flag==1) {
     if (parent.server.document!=undefined) {       srvloaded();
      if (parent.server.document.forms.storage.output.value!=undefined) {  
         srvloaded();  
      }  
     }  
    }     }
    if ((finishdone==0) && (tim==0)) { setTimeout('checkdef()',100); }     if ((finishdone==0) && (tim==0)) { setTimeout('checkdef()',100); }
 }  }
Line 2456  function schedule(action) { Line 2451  function schedule(action) {
    reqaction=action;     reqaction=action;
    tim=0;     tim=0;
    finishdone=0;     finishdone=0;
    canceltim=setTimeout('tim=1;',20000)     canceltim=setTimeout('tim=1;',20000);
      checkdef();
    wait();     wait();
 }  }
   
Line 2464  function schedule(action) { Line 2460  function schedule(action) {
   
 function storechange() {  function storechange() {
    var k;     var k;
      parent.flag=0;
    parent.server.document.forms.storage.submit();     parent.server.document.forms.storage.submit();
    schedule('save');     schedule('save');
 }  }

Removed from v.1.29  
changed lines
  Added in v.1.31


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