Diff for /rat/client/parameter.html between versions 1.20 and 1.27

version 1.20, 2003/02/03 18:03:54 version 1.27, 2003/11/25 22:19:22
Line 304  function stringeval() { Line 304  function stringeval() {
    draw();     draw();
 }  }
   
   function radiostringeval(newval) {
      svalue=newval;
      draw();
   }
   
 function intervaldis() {  function intervaldis() {
     csecs=svalue;      csecs=svalue;
     cdays=Math.floor(csecs/86400);      cdays=Math.floor(csecs/86400);
Line 315  function intervaldis() { Line 320  function intervaldis() {
     choicewrite(cdays+' days '+chours+' hours '      choicewrite(cdays+' days '+chours+' hours '
                +cmins+' mins '+csecs+' secs');                 +cmins+' mins '+csecs+' secs');
 }  }
       
   function pickcolor(picked) {
     svalue=picked;
     draw();
   }
   
   function colorfield(ir,ig,ib) {
      var col=new Array;
      col=["00","11","22","44","66","88","AA","CC","DD","EE","FF"];
      var color='#'+col[ir]+col[ig]+col[ib];
      var selection="<font color='"+color+"'>X</font>";
      if (color==svalue) { selection="<font color='#"+col[10-ir]+col[10-ig]+col[10-ib]+"'>X</font>"; }
      choicewrite('<td bgcolor="'+color+'"><a href="javascript:parent.pickcolor('+"'"+
                  color+"'"+')">'+selection+'</a></td>');
                  
   }    
   
 function draw() {  function draw() {
    choicestart();     choicestart();
    choicewrite('<form name=sch');     choicewrite('<form name=sch');
Line 404  function draw() { Line 425  function draw() {
          choicewrite('</table>');           choicewrite('</table>');
      } else {       } else {
       if (pscat=='start') {        if (pscat=='start') {
          tablestart('Starting or opening date and time');           tablestart('Date and time');
       }        }
       if (pscat=='end') {        if (pscat=='end') {
          tablestart('Ending or closing date and time');           tablestart('Date and time');
       }        }
       if (pscat=='interval') {        if (pscat=='interval') {
          tablestart('Time interval');           tablestart('Time interval');
Line 504  function draw() { Line 525  function draw() {
          tablestart('Default value or none');           tablestart('Default value or none');
          choicewrite('</table>');                    choicewrite('</table>');         
       } else {        } else {
         if (pscat=='any') {          if ((pscat=='any') || (pscat=='') || (typeof(pscat)=='undefined')) {
            tablestart('Text');             tablestart('Text');
      choicewrite('<tr bgcolor="#AAFFAA"><td>Value:</td><td colspan=2>');
              choicewrite('<input name="stringval" size="20" value="'+svalue+
                       '" type="text" onChange="parent.stringeval()">');
         }          }
         choicewrite('<tr bgcolor="#AAFFAA"><td>Value:</td><td colspan=2>');          if (pscat=='yesno') {
         choicewrite('<input name=stringval size=20 value="'+svalue+             tablestart('Yes/No');
                     '" name=stringval onChange="parent.stringeval()">');     choicewrite('<tr bgcolor="#AAFFAA"><td>Value:</td><td colspan=2>');
              choicewrite('<input name="stringval" value="yes"'+
                     ' type="radio" onChange="parent.radiostringeval(\'yes\')"');
              if (svalue=='yes') { choicewrite(' checked'); }
              choicewrite('> Yes<br />');
              choicewrite('<input name="stringval" value="no"'+
                     ' type="radio" onChange="parent.radiostringeval(\'no\')"');
              if (svalue=='no') { choicewrite(' checked'); }
              choicewrite('> No<br />');
           }
           if (pscat=='examtype') {
              tablestart('Exam Type');
      choicewrite('<tr bgcolor="#AAFFAA"><td>Value:</td><td colspan=2>');
              choicewrite('<input name="stringval" value="online"'+
                   ' type="radio" onChange="parent.radiostringeval(\'online\')"');
              if (svalue=='online') { choicewrite(' checked'); }
              choicewrite('> Online<br />');
              choicewrite('<input name="stringval" value="checkout"'+
                 ' type="radio" onChange="parent.radiostringeval(\'checkout\')"');
              if (svalue=='checkout') { choicewrite(' checked'); }
              choicewrite('> Check out<br />');
          }
           if (pscat=='questiontype') {
              tablestart('Question Type');
      choicewrite('<tr bgcolor="#AAFFAA"><td>Value:</td><td colspan=2>');
              choicewrite('<input name="stringval" value="problem"'+
                  ' type="radio" onChange="parent.radiostringeval(\'problem\')"');
              if (svalue=='problem') { choicewrite(' checked'); }
              choicewrite('> Standard Problem<br />');
              choicewrite('<input name="stringval" value="quiz"'+
                     ' type="radio" onChange="parent.radiostringeval(\'quiz\')"');
              if (svalue=='quiz') { choicewrite(' checked'); }
              choicewrite('> Quiz<br />');
              choicewrite('<input name="stringval" value="exam"'+
                     ' type="radio" onChange="parent.radiostringeval(\'exam\')"');
              if (svalue=='exam') { choicewrite(' checked'); }
              choicewrite('> Exam<br />');
              choicewrite('<input name="stringval" value="assess"'+
                   ' type="radio" onChange="parent.radiostringeval(\'assess\')"');
              if (svalue=='assess') { choicewrite(' checked'); }
              choicewrite('> Assessment<br />');
              choicewrite('<input name="stringval" value="survey"'+
                   ' type="radio" onChange="parent.radiostringeval(\'survey\')"');
              if (svalue=='survey') { choicewrite(' checked'); }
              choicewrite('> Survey<br />');
              choicewrite('<input name="stringval" value="form"'+
                     ' type="radio" onChange="parent.radiostringeval(\'form\')"');
              if (svalue=='form') { choicewrite(' checked'); }
              choicewrite('> Input Form<br />');
              choicewrite('<input name="stringval" value="library"'+
                  ' type="radio" onChange="parent.radiostringeval(\'library\')"');
              if (svalue=='library') { choicewrite(' checked'); }
              choicewrite('> Library<br />');
           }
           if (pscat=='ip') {
              tablestart('IP Number/Name');
      choicewrite('<tr bgcolor="#AAFFAA"><td>Value:</td><td colspan=2>');
              choicewrite('<input name="stringval" size="20" value="'+svalue+
                       '" onChange="parent.stringeval()">');
           }
           if (pscat=='fileext') {
               tablestart('Allowed File Extensions');
      choicewrite('<tr bgcolor="#AAFFAA"><td>Value:</td><td colspan=2>');
              choicewrite('<input name="radstringval" value="txt"'+
                  ' type="radio" onChange="parent.radiostringeval(\'txt\')"');
              if (svalue=='txt') { choicewrite(' checked'); }
              choicewrite('> Plain Text<br />');
              choicewrite('<input name="radstringval" value="png,jpg,jpeg,gif"'+
                  ' type="radio" onChange="parent.radiostringeval(\'png,jpg,jpeg,gif\')"');
              if (svalue=='png,jpg,jpeg,gif') { choicewrite(' checked'); }
              choicewrite('> Picture File<br />');
              choicewrite('<input name="radstringval" value="doc,xls,ppt"'+
                  ' type="radio" onChange="parent.radiostringeval(\'doc,xls,ppt\')"');
              if (svalue=='doc,xls,ppt') { choicewrite(' checked'); }
              choicewrite('> Office Document<br />');
              choicewrite('<input name="stringval" size="20" value="'+svalue+
                       '" onChange="parent.stringeval()">');
          }
         choicewrite('</td></table>');          choicewrite('</td></table>');
       }        }
    }     }
      
      if (ptype=='color') {
         tablestart('Choose a Color');
         choicewrite('<table>');
         if (svalue) {
            choicewrite('<tr><td colspan="9">Current choice:</td><td bgcolor="'+
                        svalue+'" colspan="2">&nbsp;</td></tr>');
         }
         for (var ir=0; ir<=10; ir++) {
             for (var ig=0; ig<=10; ig++) {
                 choicewrite('<tr>');
                 for (var ib=0; ib<=10; ib++) {
                     colorfield(ir,ig,ib);
         }
                 choicewrite('</tr>');
     }      
         }
         choicewrite('</table></td></table>');
      }
   
    choicewrite('</table></form>');     choicewrite('</table></form>');
    choiceend();     choiceend();
Line 685  function init() { Line 805  function init() {
      sopt('string','String Value');       sopt('string','String Value');
   }    }
   
     if (ptype=='color') {
        sopt('default','Use Default Color');
        sopt('custom','Use Custom Color');
     }
   
   selwrite('</select></form>');    selwrite('</select></form>');
   
   selwrite('<a href="javascript:parent.assemble();');    selwrite('<a href="javascript:parent.assemble();');

Removed from v.1.20  
changed lines
  Added in v.1.27


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