Diff for /rat/client/parameter.html between versions 1.10 and 1.11

version 1.10, 2001/08/08 13:24:52 version 1.11, 2001/08/08 13:31:43
Line 4  The LearningOnline Network with CAPA Line 4  The LearningOnline Network with CAPA
 Parameter Input Window  Parameter Input Window
 06/16/00,06/17,11/17,11/18,11/23,11/27,11/28,12/15,12/16,  06/16/00,06/17,11/17,11/18,11/23,11/27,11/28,12/15,12/16,
 03/21/01,03/24,06/26 Gerd Kortemeyer  03/21/01,03/24,06/26 Gerd Kortemeyer
   07/24/01 Scott Harrison
 -->  -->
 <head>  <head>
 <title>LON-CAPA</title>  <title>LON-CAPA</title>
Line 489  function init() { Line 490  function init() {
      if (pair[0]=='type') { subs=pair[1].split('_');       if (pair[0]=='type') { subs=pair[1].split('_');
                             ptype=subs[0];                              ptype=subs[0];
                             pscat=subs[1];                              pscat=subs[1];
                             if (subs[2]!=undefined) { pscat+='_'+subs[2]; }                              if (typeof(subs[2])!="undefined") { 
                             if ((pscat=='') || (pscat==undefined)) {                                  pscat+='_'+subs[2]; 
                               }
                               if ((pscat=='') || (typeof(pscat)=="undefined")) { 
                                pscat='default';                                 pscat='default';
                             }                              }
                            }                             }
Line 503  function init() { Line 506  function init() {
   svalue=pvalue;    svalue=pvalue;
   if (((ptype=='float') || (ptype=='string') || (ptype=='int')) &&    if (((ptype=='float') || (ptype=='string') || (ptype=='int')) &&
       (pscat=='default') &&         (pscat=='default') && 
       (svalue!=undefined) && (svalue!=0) && (svalue!='')) { pscat='any'; }        (typeof(svalue)!="undefined") && 
         (svalue!=0) && (svalue!='')) { pscat='any'; }
   
   this.window.selector.document.clear();    this.window.selector.document.clear();
   selwrite('<html><body bgcolor="#FFFFFF">');    selwrite('<html><body bgcolor="#FFFFFF">');
Line 526  function init() { Line 530  function init() {
      sopt('end','Ending Date');       sopt('end','Ending Date');
      sopt('interval','Time Interval');       sopt('interval','Time Interval');
             
      if ((pvalue!='') && (pvalue!=undefined)) {       if ((pvalue!='') && (typeof(pvalue)!="undefined")) {
         cdate.setTime(pvalue*1000);          cdate.setTime(pvalue*1000);
      }       }
     

Removed from v.1.10  
changed lines
  Added in v.1.11


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