Annotation of rat/client/parameter.html, revision 1.71.4.1

1.56      raeburn     1: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
                      2:     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
                      3: <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
1.1       www         4: <!--
                      5: The LearningOnline Network with CAPA
                      6: Parameter Input Window
1.16      albertel    7: //
1.71.4.1! raeburn     8: // $Id: parameter.html,v 1.71 2016/05/13 22:48:14 raeburn Exp $
1.16      albertel    9: //
                     10: // Copyright Michigan State University Board of Trustees
                     11: //
                     12: // This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                     13: //
                     14: // LON-CAPA is free software; you can redistribute it and/or modify
                     15: // it under the terms of the GNU General Public License as published by
                     16: // the Free Software Foundation; either version 2 of the License, or
                     17: // (at your option) any later version.
                     18: //
                     19: // LON-CAPA is distributed in the hope that it will be useful,
                     20: // but WITHOUT ANY WARRANTY; without even the implied warranty of
                     21: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     22: // GNU General Public License for more details.
                     23: //
                     24: // You should have received a copy of the GNU General Public License
                     25: // along with LON-CAPA; if not, write to the Free Software
                     26: // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     27: //
                     28: // /home/httpd/html/adm/gpl.txt
                     29: //
                     30: // http://www.lon-capa.org/
                     31: //
1.1       www        32: -->
                     33: <head>
1.56      raeburn    34: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
1.1       www        35: <title>LON-CAPA</title>
                     36: 
1.46      albertel   37: <script type="text/javascript">
1.56      raeburn    38: // <![CDATA[
1.1       www        39: 
                     40: var ptype='';
                     41: var pvalue='';
1.68      raeburn    42: var pmodval='';
1.70      raeburn    43: var pextraval='';
1.71      raeburn    44: var pextravaltwo='';
1.1       www        45: var preturn='';
                     46: var pcode='';
1.2       www        47: var pscat='';
                     48: var pmarker='';
1.63      www        49: var pmodal='';
1.1       www        50: var pname='';
                     51: 
1.31      www        52: var defhour=0;
                     53: var defmin=0;
                     54: var defsec=0;
                     55: 
1.1       www        56: var svalue;
1.2       www        57: var stype;
                     58: var smarker;
1.1       www        59: 
                     60: var vars=new Array();
                     61: 
1.2       www        62: var cdate=new Date();
                     63: 
                     64: var csec;
                     65: var cmin;
                     66: var chour;
                     67: var cday;
                     68: 
                     69: var months=new Array();
                     70: 
                     71: 
1.1       www        72: function selwrite(text) {
                     73:   this.window.selector.document.write(text);
                     74: }
                     75: 
                     76: function choicestart() {
1.61      raeburn    77:   this.window.choices.document.open();
1.62      raeburn    78:   choicewrite('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
                     79:   choicewrite('<html xmlns="http://www.w3.org/1999/xhtml">');
1.55      bisitz     80:   choicewrite('<head>');
1.62      raeburn    81:   choicewrite('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />');
                     82:   choicewrite('<title>LON-CAPA</title>');
1.55      bisitz     83:   choicewrite('<style type="text/css">');
                     84:   choicewrite('<!--');
                     85:   choicewrite('body {');
                     86:   choicewrite('font-family: Verdana,Arial,Helvetica,sans-serif;');
                     87:   choicewrite('line-height:130%;');
                     88:   choicewrite('font-size:0.83em;');
                     89:   choicewrite('background: #FFFFFF;');
                     90:   choicewrite('}');
                     91:   choicewrite('table.LC_parmsel_table {font-size: 90%;}');
                     92:   choicewrite('table.LC_parmsel_table tr td { padding: 5px; border: 1px solid #C8C8C8;}');
                     93:   choicewrite('-->');
                     94:   choicewrite('</style>');
                     95:   choicewrite('</head>');
1.62      raeburn    96:   choicewrite('<body>');
1.1       www        97: }
                     98: 
                     99: function choiceend() {
                    100:   choicewrite('</body></html>');
                    101:   this.window.choices.document.close();
                    102: }
                    103: 
                    104: function choicewrite(text) {
                    105:   this.window.choices.document.write(text);
                    106: }
                    107: 
                    108: function tablestart(headtext) {
1.55      bisitz    109:   choicewrite('<table class="LC_parmsel_table"><tr bgcolor="#C5DB99"><th colspan="3">'+
1.1       www       110:               headtext+'</th></tr>');
                    111: }
                    112: 
                    113: function valline(text,id1,id2) {
1.52      bisitz    114:   choicewrite('<tr><td>'+text+
1.51      bisitz    115:               '</td><td><input type="text" size="4" name="val'+
1.53      bisitz    116:               id1+'" /></td><td>incl:<input type="checkbox" name="val'+
                    117:               id2+'" /></td></tr>');
1.1       www       118: }
                    119: 
1.46      albertel  120: function escapeHTML(text) {
                    121:   text = text.replace(/&/g, '&amp;');
                    122:   text = text.replace(/"/g, '&quot;');
                    123:   text = text.replace(/</g, '&lt;');
                    124:   text = text.replace(/>/g, '&gt;');
                    125:   return text;
                    126: }
                    127: 
1.2       www       128: function datecalc() {
                    129:     var sform=choices.document.forms.sch;
                    130: 
                    131:     cdate.setHours(sform.hours.options[sform.hours.selectedIndex].value);
                    132:     cdate.setMinutes(sform.minutes.options[sform.minutes.selectedIndex].value);
                    133:     cdate.setSeconds(sform.minutes.options[sform.seconds.selectedIndex].value);
                    134:     cdate.setDate(sform.date.options[sform.date.selectedIndex].value);
                    135:     cdate.setMonth(sform.month.options[sform.month.selectedIndex].value);
                    136:     cdate.setFullYear(sform.year.options[sform.year.selectedIndex].value);
                    137: 
                    138:     draw();
                    139: }
                    140: 
                    141: function hour() {
                    142:    var thishour=cdate.getHours();
                    143:     var i; var j;
1.53      bisitz    144:     choicewrite('<select name="hours" onchange="parent.datecalc();">');
1.2       www       145:     for (i=0;i<=23;i++) {
1.54      bisitz    146:         choicewrite('<option value="'+i+'"');
1.2       www       147:         if (i==thishour) {
1.54      bisitz    148:             choicewrite(' selected="selected"');
1.2       www       149:         }
                    150:         choicewrite('>');
                    151:         if (i==12) { choicewrite('noon'); } else {
                    152:            if (i==0) { choicewrite('midnight') } else {
                    153:               
                    154:                  if (i<12) { choicewrite(i+' am'); } else {
                    155:                     j=i-12; choicewrite(j+' pm');
                    156:                  }
                    157:               
                    158:            }
                    159:         }
                    160:         choicewrite('</option>');
                    161:     }
                    162:     choicewrite('</select>');
                    163: }
                    164: 
                    165: function minute() {
                    166:    var thisminutes=cdate.getMinutes();
                    167:     var i;
1.53      bisitz    168:     choicewrite('<select name="minutes" onchange="parent.datecalc();">');
1.2       www       169:     for (i=0;i<=59;i++) {
1.54      bisitz    170:         choicewrite('<option value="'+i+'"');
1.2       www       171:         if (i==thisminutes) {
1.54      bisitz    172:             choicewrite(' selected="selected"');
1.2       www       173:         }
                    174:         choicewrite('>'+i+'</option>');
                    175:     }
                    176:     choicewrite('</select>');
                    177: } 
                    178: 
                    179: function second() {
                    180:    var thisseconds=cdate.getSeconds();
                    181:     var i;
1.53      bisitz    182:     choicewrite('<select name="seconds" onchange="parent.datecalc();">');
1.2       www       183:     for (i=0;i<=59;i++) {
1.54      bisitz    184:         choicewrite('<option value="'+i+'"');
1.2       www       185:         if (i==thisseconds) {
1.54      bisitz    186:             choicewrite(' selected="selected"');
1.2       www       187:         }
                    188:         choicewrite('>'+i+'</option>');
                    189:     }
                    190:     choicewrite('</select>');
                    191: } 
                    192: 
                    193: 
                    194: function date() {
                    195:    var thisdate=cdate.getDate();
                    196:     var i;
1.53      bisitz    197:     choicewrite('<select name="date" onchange="parent.datecalc();">');
1.2       www       198:     for (i=1;i<=31;i++) {
1.54      bisitz    199:         choicewrite('<option value="'+i+'"');
1.2       www       200:         if (i==thisdate) {
1.54      bisitz    201:             choicewrite(' selected="selected"');
1.2       www       202:         }
                    203:         choicewrite('>'+i+'</option>');
                    204:     }
                    205:     choicewrite('</select>');
                    206: }
                    207: 
                    208: function year() {
                    209:    var thisyear=cdate.getFullYear();
1.19      www       210:    var nowdate=new Date();
                    211:    var nowyear=nowdate.getFullYear();
1.33      albertel  212:    if ( !thisyear ) { thisyear=nowyear; }
1.19      www       213:    var loweryear=thisyear-2;
                    214:    var upperyear=thisyear+5;
                    215:    if (thisyear>nowyear) { loweryear=nowyear-2; }
                    216:    if (thisyear<nowyear) { upperyear=nowyear+5; } 
1.2       www       217:     var i;
1.53      bisitz    218:     choicewrite('<select name="year" onchange="parent.datecalc();">');
1.19      www       219:     for (i=loweryear;i<=upperyear;i++) {
1.54      bisitz    220:         choicewrite('<option value="'+i+'"');
1.2       www       221:         if (i==thisyear) {
1.54      bisitz    222:             choicewrite(' selected="selected"');
1.2       www       223:         }
                    224:         choicewrite('>'+i+'</option>');
                    225:     }
                    226:     choicewrite('</select>');
                    227: }
                    228: 
                    229: function month() {
                    230:     var thismonth=cdate.getMonth();
                    231:     var i;
1.53      bisitz    232:     choicewrite('<select name="month" onchange="parent.datecalc();">');
1.2       www       233:     for (i=0;i<=11;i++) {
1.54      bisitz    234:         choicewrite('<option value="'+i+'"');
1.2       www       235:         if (i==thismonth) {
1.54      bisitz    236:             choicewrite(' selected="selected"');
1.2       www       237:         }
                    238:         choicewrite('>'+months[i]+'</option>');
                    239:     }
                    240:     choicewrite('</select>');
                    241: }
                    242:     
                    243:     
                    244: function intminute() {
                    245:    var thisminutes=cmins;
                    246:     var i;
1.69      musolffc  247:     var result = '';
                    248:     result += '<select name="minutes" onchange="parent.intcalc();">';
1.2       www       249:     for (i=0;i<=59;i++) {
1.69      musolffc  250:         result += '<option value="'+i+'"';
1.2       www       251:         if (i==thisminutes) {
1.69      musolffc  252:             result += ' selected="selected"';
1.2       www       253:         }
1.69      musolffc  254:         result += '>'+i+'</option>';
1.2       www       255:     }
1.69      musolffc  256:     result += '</select>';
                    257:     return result;
1.2       www       258: } 
                    259: 
                    260: function inthour() {
                    261:    var thishours=chours;
                    262:     var i;
1.69      musolffc  263:     var result = '';
                    264:     result += '<select name="hours" onchange="parent.intcalc();">';
1.2       www       265:     for (i=0;i<=23;i++) {
1.69      musolffc  266:         result += '<option value="'+i+'"';
1.2       www       267:         if (i==thishours) {
1.69      musolffc  268:             result += ' selected="selected"';
1.2       www       269:         }
1.69      musolffc  270:         result += '>'+i+'</option>';
1.2       www       271:     }
1.69      musolffc  272:     result += '</select>';
                    273:     return result;
1.71      raeburn   274: }
1.2       www       275: 
                    276: function intsecond() {
1.69      musolffc  277:     var thisseconds=csecs;
1.2       www       278:     var i;
1.69      musolffc  279:     var result = '';
                    280:     result += '<select name="seconds" onchange="parent.intcalc();">';
1.2       www       281:     for (i=0;i<=59;i++) {
1.69      musolffc  282:         result += '<option value="'+i+'"';
1.2       www       283:         if (i==thisseconds) {
1.69      musolffc  284:             result += ' selected="selected"';
1.2       www       285:         }
1.69      musolffc  286:         result += '>'+i+'</option>';
1.2       www       287:     }
1.69      musolffc  288:     result += '</select>';
                    289:     return result;
1.2       www       290: } 
                    291: 
                    292: 
                    293: function intday() {
                    294:    var thisdate=cdays;
                    295:     var i;
1.69      musolffc  296:     var result ='';
                    297:     result += '<select name="date" onchange="parent.intcalc();">';
1.2       www       298:     for (i=0;i<=31;i++) {
1.69      musolffc  299:         result += '<option value="'+i+'"';
1.2       www       300:         if (i==thisdate) {
1.69      musolffc  301:             result += ' selected="selected"';
1.2       www       302:         }
1.69      musolffc  303:         result += '>'+i+'</option>';
1.2       www       304:     }
1.69      musolffc  305:     result += '</select>';
                    306:     return result;
1.2       www       307: }
                    308: 
                    309: function intcalc() {
                    310:     var sform=choices.document.forms.sch;
                    311:     svalue=((sform.date.options[sform.date.selectedIndex].value*24+
                    312:              sform.hours.options[sform.hours.selectedIndex].value*1)*60+
                    313:              sform.minutes.options[sform.minutes.selectedIndex].value*1)*60+
                    314:              sform.seconds.options[sform.seconds.selectedIndex].value*1;
1.68      raeburn   315:     if ((ptype=='date') && (pscat=='interval')) {
                    316:         var newpmodval = '';
1.70      raeburn   317:         var newpextraval = '';
1.71      raeburn   318:         var newpextravaltwo = 'Done';
1.68      raeburn   319:         if (sform.donebutton.length) {
                    320:             for (var i=0; i<sform.donebutton.length; i++) {
                    321:                 if (sform.donebutton[i].checked) {
                    322:                     if (sform.donebutton[i].value == '_done') {
                    323:                         newpmodval = sform.donebutton[i].value;
1.71      raeburn   324:                         newpextravaltwo = sform.donebutton_text.value;
1.70      raeburn   325:                     } else {
                    326:                         if (sform.donebutton[i].value == '_done_proctor') { 
                    327:                             newpmodval = sform.donebutton[i].value;
                    328:                             newpextraval = sform.donebutton_proctorkey.value;
1.71      raeburn   329:                             newpextravaltwo = sform.donebutton_text.value;
                    330:                             newpextravaltwo = newpextravaltwo.replace(/:/g,'');
1.70      raeburn   331:                         }
1.68      raeburn   332:                     }
                    333:                 }
                    334:             }
                    335:         }
                    336:         pmodval = newpmodval;
1.70      raeburn   337:         pextraval = newpextraval;
1.71      raeburn   338:         pextravaltwo = newpextravaltwo;
1.68      raeburn   339:         draw();
                    340:         if (pmodval) {
1.71      raeburn   341:             var doneRegExp = /^(_done)(|_proctor)$/;
                    342:             var donevals = pmodval.match(doneRegExp);
                    343:             if (donevals.length == 3) {
                    344:                 svalue += donevals[1];
                    345:             }
                    346:             if (newpextravaltwo) {
                    347:                 if (newpextravaltwo != 'Done') { 
                    348:                     svalue += ':'+newpextravaltwo+':';
                    349:                 }
                    350:             }
                    351:             if (donevals[2] != '') {
                    352:                 svalue += donevals[2];
                    353:                 if (pextraval != '') {
                    354:                     svalue += '_'+pextraval;
                    355:                 }
                    356:             }
1.70      raeburn   357:         }
1.68      raeburn   358:     } else {
                    359:         draw();
                    360:     }
1.2       www       361: }
                    362: 
1.70      raeburn   363: function toggleSecret() {
                    364:     var sform=choices.document.forms.sch;
                    365:     if (sform.donebutton.length) {
                    366:         for (var i=0; i<sform.donebutton.length; i++) {
                    367:             if (sform.donebutton[i].checked) {
1.71      raeburn   368:                 if (sform.donebutton[i].value == '') {
                    369:                     if (document.getElementById('donebuttontextdiv')) {
                    370:                         document.getElementById('donebuttontextdiv').style.display='none';
                    371:                     }
                    372:                 } else {
                    373:                     if (document.getElementById('donebuttontextdiv')) {
                    374:                         document.getElementById('donebuttontextdiv').style.display='block';
                    375:                     }
                    376:                 }
1.70      raeburn   377:                 if (sform.donebutton[i].value == '_done_proctor') {
                    378:                     if (document.getElementById('done_proctorkey')) {
                    379:                         document.getElementById('done_proctorkey').type='text';
                    380:                     }
                    381:                 } else {
                    382:                     if (document.getElementById('done_proctorkey')) {
                    383:                         document.getElementById('done_proctorkey').type='hidden';
                    384:                         document.getElementById('done_proctorkey').value='';
                    385:                     }
                    386:                 }
                    387:             }
                    388:         }
                    389:     }
                    390: }
                    391: 
                    392: function validateInterval() {
                    393:     var sform=choices.document.forms.sch;
                    394:     if (sform.donebutton.length) {
                    395:         for (var i=0; i<sform.donebutton.length; i++) {
                    396:             if (sform.donebutton[i].checked) {
                    397:                 if (sform.donebutton[i].value == '_done_proctor') {
                    398:                     if ((sform.donebutton_proctorkey.value == '') || 
                    399:                         (sform.donebutton_proctorkey.value == null)) {
                    400:                         alert('Please provide a key for a proctor to enter when a student uses the "Done" button.');
                    401:                         return;
                    402:                     }
                    403:                 }
                    404:             }
                    405:         }
                    406:     }
                    407:     intcalc();
                    408:     assemble();
                    409: }
                    410: 
1.6       www       411: function integereval() {
                    412:    svalue=choices.document.forms.sch.intval.value;
                    413:    svalue=Math.round(svalue);
                    414:    if (pscat=='zeropos') { svalue=Math.abs(svalue); }
                    415:    if ((pscat=='pos') && (svalue==0)) {
                    416:       svalue='';
                    417:    }
1.12      www       418:    if (pscat.indexOf('inrange')!=-1) {
1.10      www       419:       var rangeparts=new Array;
                    420:       rangeparts=split('_',pscat);
1.12      www       421:       rangeparts=split(',',rangeparts[1]);
1.10      www       422:       if (svalue<rangeparts[0]) { svalue=rangeparts[0]; }
                    423:       if (svalue>rangeparts[1]) { svalue=rangeparts[1]; }
                    424:    }
1.6       www       425:    draw();
                    426: }
                    427: 
                    428: function floateval() {
                    429:    svalue=choices.document.forms.sch.floatval.value;
                    430:    svalue=1.0*svalue;
                    431:    if (pscat=='pos') { svalue=Math.abs(svalue); }
                    432:    if ((pscat=='zeroone') && ((svalue<0) || (svalue>1))) {
                    433:       svalue='';
                    434:    }
                    435:    draw();
                    436: }
                    437: 
                    438: function stringeval() {
                    439:    svalue=choices.document.forms.sch.stringval.value;
                    440:    draw();
                    441: }
                    442: 
1.25      www       443: function radiostringeval(newval) {
                    444:    svalue=newval;
                    445:    draw();
                    446: }
                    447: 
1.29      www       448: function callradiostringeval(newval) {
1.67      raeburn   449:     return 'onclick="parent.radiostringeval(\''+newval+'\')"';
1.29      www       450: }
                    451: 
1.68      raeburn   452: function callintervalpmodval() {
1.70      raeburn   453:     return 'onclick="parent.intcalc();parent.toggleSecret()"';
1.68      raeburn   454: } 
                    455: 
1.2       www       456: function intervaldis() {
                    457:     csecs=svalue;
                    458:     cdays=Math.floor(csecs/86400);
                    459:     csecs-=cdays*86400;
                    460:     chours=Math.floor(csecs/3600);
                    461:     csecs-=chours*3600;
                    462:     cmins=Math.floor(csecs/60);
                    463:     csecs-=cmins*60;
1.69      musolffc  464:     return cdays+' days '+chours+' hours '+cmins+' mins '+csecs+' secs';
1.2       www       465: }
1.21      www       466: 
                    467: function pickcolor(picked) {
                    468:   svalue=picked;
                    469:   draw();
                    470: }
                    471: 
                    472: function colorfield(ir,ig,ib) {
                    473:    var col=new Array;
1.23      www       474:    col=["00","11","22","44","66","88","AA","CC","DD","EE","FF"];
1.21      www       475:    var color='#'+col[ir]+col[ig]+col[ib];
1.23      www       476:    var selection="<font color='"+color+"'>X</font>";
                    477:    if (color==svalue) { selection="<font color='#"+col[10-ir]+col[10-ig]+col[10-ib]+"'>X</font>"; }
1.21      www       478:    choicewrite('<td bgcolor="'+color+'"><a href="javascript:parent.pickcolor('+"'"+
                    479:                color+"'"+')">'+selection+'</a></td>');
                    480:                
                    481: }    
                    482: 
1.1       www       483: function draw() {
                    484:    choicestart();
1.51      bisitz    485:    choicewrite('<form name="sch"');
1.6       www       486:    if (ptype=='int') {
                    487:       choicewrite(' action="javascript:integereval();"');
                    488:    }
                    489:    if (ptype=='float') {
                    490:       choicewrite(' action="javascript:floateval();"');
                    491:    }
                    492:    if (ptype=='string') {
                    493:       choicewrite(' action="javascript:stringeval();"');
                    494:    }
1.62      raeburn   495:    if (ptype != 'int' && ptype != 'float' && ptype != 'string') {
                    496:        choicewrite(' action=""');
                    497:    }
1.6       www       498:    choicewrite('>');
1.1       www       499:    if (ptype=='tolerance') {
1.2       www       500: // 0: pscat
                    501:       if (pscat=='default') {
1.1       www       502:          tablestart('Use default value or algorithm of resource');
                    503:       }
1.2       www       504:       if (pscat=='relative_sym') {
1.1       www       505: // 2: percentage
                    506: // 3: open
                    507:          tablestart('Percentage error, symmetric around value');
                    508:          valline('Percentage',2,3);
1.13      www       509:          if ((svalue!='') && (typeof(svalue)!="undefined")) {
                    510:             choices.document.forms.sch.val2.value=parseInt(svalue);
                    511:             if (svalue.indexOf('+')!=-1) {
                    512:                choices.document.forms.sch.val3.checked=true;
                    513:             }
                    514:          }
1.1       www       515:       }
1.2       www       516:       if (pscat=='relative') {
1.1       www       517: // 2: left
                    518: // 3: open
                    519: // 4: right
                    520: // 5: open
                    521:          tablestart('Percentage error, asymmetric around value');
                    522:          valline('Upper percentage',2,3);
                    523:          valline('Lower percentage',4,5);
1.17      matthew   524:          var range1=new Array;
1.13      www       525:          if ((svalue!='') && (typeof(svalue)!="undefined")) {
1.17      matthew   526:             range1=svalue.split(',');
                    527:             if (typeof(range1[1])=='undefined') { range1[1]=range1[0]; }
                    528:             choices.document.forms.sch.val2.value=parseFloat(range1[0]);
                    529:             if (range1[0].indexOf('+')!=-1) {
1.13      www       530:                choices.document.forms.sch.val3.checked=true;
                    531:             }
1.17      matthew   532:             choices.document.forms.sch.val4.value=parseFloat(range1[1]);
                    533:             if (range1[1].indexOf('+')!=-1) {
1.13      www       534:                choices.document.forms.sch.val5.checked=true;
                    535:             }
                    536:          }
1.1       www       537:       }
1.2       www       538:       if (pscat=='absolute_sym') {
1.1       www       539:          tablestart('Absolute error, symmetric around value');
                    540:          valline('Value',2,3);
1.13      www       541:          if ((svalue!='') && (typeof(svalue)!="undefined")) {
1.15      www       542:             choices.document.forms.sch.val2.value=parseFloat(svalue);
1.13      www       543:             if (svalue.indexOf('+')!=-1) {
                    544:                choices.document.forms.sch.val3.checked=true;
                    545:             }
                    546:          }
1.1       www       547:       }
1.2       www       548:       if (pscat=='absolute') {
1.1       www       549:          tablestart('Absolute error, asymmetric around value');
                    550:          valline('Upper value',2,3);
                    551:          valline('Lower value',4,5);
1.17      matthew   552:          var range2=new Array;
1.13      www       553:          if ((svalue!='') && (typeof(svalue)!="undefined")) {
                    554:             range=svalue.split(',');
1.17      matthew   555:             if (typeof(range2[1])=='undefined') { range2[1]=range2[0]; }
                    556:             choices.document.forms.sch.val2.value=parseFloat(range2[0]);
                    557:             if (range2[0].indexOf('+')!=-1) {
1.13      www       558:                choices.document.forms.sch.val3.checked=true;
                    559:             }
1.17      matthew   560:             choices.document.forms.sch.val4.value=parseFloat(range2[1]);
                    561:             if (range2[1].indexOf('+')!=-1) {
1.13      www       562:                choices.document.forms.sch.val5.checked=true;
                    563:             }
                    564:          }
1.1       www       565:       }
                    566:    }
                    567: 
                    568:    if (ptype=='date') {
1.2       www       569:      if (pscat=='default') {
                    570:          tablestart('Default value or none');
                    571:          choicewrite('</table>');
                    572:      } else {
                    573:       if (pscat=='start') {
1.24      www       574:          tablestart('Date and time');
1.2       www       575:       }
                    576:       if (pscat=='end') {
1.24      www       577:          tablestart('Date and time');
1.2       www       578:       }
                    579:       if (pscat=='interval') {
1.70      raeburn   580:          var proctorkeytype = 'hidden'; 
1.71      raeburn   581:          var donebuttontext = 'none';
1.70      raeburn   582:          if (pmodval == '_done_proctor') {
                    583:              proctorkeytype = 'text';
1.71      raeburn   584:              donebuttontext = 'block';
                    585:          }
                    586:          if (pmodval == '_done') {
                    587:              donebuttontext = 'block';
1.70      raeburn   588:          }
1.2       www       589:          tablestart('Time interval');
1.69      musolffc  590:          choicewrite( [
                    591:             '<tr><td colspan="3">'+intervaldis()+'</td></tr>',
                    592:             '<tr><td>Time:</td><td colspan="2">',
                    593:                 '<span style="white-space:nowrap">'+intday()+' days </span>',
                    594:                 '<span style="white-space:nowrap">'+inthour()+' hours</span>',
                    595:                 '<span style="white-space:nowrap">'+intminute()+' mins</span>',
                    596:                 '<span style="white-space:nowrap">'+intsecond()+' secs</span>',
                    597:             '</td></tr>',
                    598:             '</table>',
                    599:             '<br />',
                    600:             ].join("\n"));
1.68      raeburn   601:          tablestart('Provide a "Done" button to students?');
                    602:          choicewrite('<tr><td>Value:</td><td colspan="2">');
1.70      raeburn   603:          choicewrite('<label><input name="donebutton" value=""'+
                    604:                      ' type="radio" '+callintervalpmodval());
                    605:          if (pmodval == '') { choicewrite(' checked="checked"'); }
                    606:          choicewrite(' /> No</label><br />');
1.68      raeburn   607:          choicewrite('<label><input name="donebutton" value="_done"'+
                    608:                      ' type="radio" '+callintervalpmodval());
1.70      raeburn   609:          if (pmodval == '_done') { choicewrite(' checked="checked"'); }
1.68      raeburn   610:          choicewrite(' /> Yes</label><br />');
1.70      raeburn   611:          choicewrite('<span style="white-space:nowrap">'+
                    612:                      '<label><input name="donebutton" value="_done_proctor"'+
1.68      raeburn   613:                      ' type="radio" '+callintervalpmodval());
1.70      raeburn   614:          if (pmodval == '_done_proctor') { choicewrite(' checked="checked"'); }
                    615:          choicewrite(' /> Yes, with proctor key</label>');
                    616:          choicewrite('&nbsp;<input name="donebutton_proctorkey" value='+
                    617:                      '"'+escapeHTML(pextraval)+'" type="'+proctorkeytype+
1.71      raeburn   618:                      '" id="done_proctorkey" size="10"'+
                    619:                      ' onblur="parent.intcalc();" /></span><br />'+
                    620:                      '<div id="donebuttontextdiv" style="display:'+donebuttontext+'">'+
                    621:                      '<br /><span style="white-space:nowrap">'+
                    622:                      'Button text:'+
                    623:                      '<input name="donebutton_text" value='+
                    624:                      '"'+escapeHTML(pextravaltwo)+'" type="text" '+
                    625:                      'size="10" onblur="parent.intcalc();" /></span></div>');
1.68      raeburn   626:          choicewrite('</td></tr></table>');
                    627:       } else {
1.52      bisitz    628:          choicewrite('<tr><td colspan="3">'
1.2       www       629:          +cdate.toString()+
1.52      bisitz    630:          '</td></tr><tr><td>Date:</td><td colspan="2">');
1.2       www       631:          month();date();year();
1.52      bisitz    632:          choicewrite('</td></tr><tr><td>Time:'
1.51      bisitz    633:          +'</td><td colspan="2">');hour();choicewrite('h ');minute();
1.2       www       634:          choicewrite('m ');second();
                    635:          choicewrite('s</td></tr></table>');
                    636:       }
                    637:      }
1.1       www       638:    }
                    639: 
1.6       www       640:    if (ptype=='int') {
1.19      www       641:       var pscatparts=new Array;
                    642:       pscatparts=pscat.split(',');
                    643:       pscat=pscatparts[0];
1.6       www       644:       if (pscat=='default') {
                    645:          tablestart('Default value or none');
1.14      www       646:          choicewrite('</table>');
1.6       www       647:       } else {
1.14      www       648:        if (pscat=='range') {
                    649:          tablestart('Integer range');      
1.52      bisitz    650:          choicewrite('<tr><td>Lower Value:'+
1.51      bisitz    651:               '</td><td colspan="2"><input type="text" size="4" name="val2'+
1.53      bisitz    652:               '" /></td></tr>');
1.52      bisitz    653:          choicewrite('<tr><td>Upper Value:'+
1.51      bisitz    654:               '</td><td colspan="2"><input type="text" size="4" name="val4'+
1.53      bisitz    655:               '" /></td></tr></table>');
1.14      www       656:          var range=new Array;
                    657:          if ((svalue!='') && (typeof(svalue)!="undefined")) {
                    658:             range=svalue.split(',');
                    659:             if (typeof(range[1])=='undefined') { range[1]=range[0]; }
                    660:             choices.document.forms.sch.val2.value=parseInt(range[0]);
                    661:             choices.document.forms.sch.val4.value=parseInt(range[1]);
                    662:          }
                    663:        } else {
1.6       www       664:         if (pscat=='pos') {
                    665:            tablestart('Positive (non-zero) integer');
                    666:         }
                    667:         if (pscat=='zeropos') {
                    668:            tablestart('Positive integer or zero');
                    669:         }
1.12      www       670:         if (pscat.indexOf('inrange')!=-1) {
1.10      www       671:            var rangeparts=new Array;
1.12      www       672:            rangeparts=split(',',pscat);
1.10      www       673:            tablestart('Integer in the range ['+rangeparts[1]+']');
                    674:         }
1.6       www       675:         if (pscat=='any') {
                    676:            tablestart('Integer');
                    677:         }
1.52      bisitz    678:         choicewrite('<tr><td>Value:</td><td colspan="2">');
1.51      bisitz    679:         choicewrite('<input name="intval" size="10" value="'+escapeHTML(svalue)+
1.53      bisitz    680:                     '" onchange="parent.integereval()" />');
1.54      bisitz    681:         choicewrite('</td></tr></table>');
1.6       www       682:       }
1.14      www       683:      }
1.1       www       684:    }
                    685: 
1.6       www       686:    if (ptype=='float') {
                    687:       if (pscat=='default') {
                    688:          tablestart('Default value or none');
                    689:          choicewrite('</table>');         
                    690:       } else {
                    691:         if (pscat=='pos') {
                    692:            tablestart('Positive floating point number or zero');
                    693:         }
                    694:         if (pscat=='zeroone') {
                    695:            tablestart('Floating point number between zero and one');
                    696:         }
                    697:         if (pscat=='any') {
                    698:            tablestart('Floating point number');
                    699:         }
1.52      bisitz    700:         choicewrite('<tr><td>Value:</td><td colspan="2">');
1.51      bisitz    701:         choicewrite('<input name="floatval" size="10" value="'+escapeHTML(svalue)+
1.53      bisitz    702:                     '" onchange="parent.floateval()" />');
1.54      bisitz    703:         choicewrite('</td></tr></table>');
1.6       www       704:       }
1.1       www       705:    }
                    706: 
1.6       www       707:    if (ptype=='string') {
1.42      albertel  708:         if ((pscat=='any') || (pscat=='') || (pscat=='default') ||  
                    709:             (typeof(pscat)=='undefined')) {
1.6       www       710:            tablestart('Text');
1.54      bisitz    711:            choicewrite('<tr><td>Value:</td><td colspan="2">');
1.46      albertel  712:            choicewrite('<input name="stringval" size="20" value="'+escapeHTML(svalue)+
1.53      bisitz    713:                     '" type="text" onchange="parent.stringeval()" />');
1.25      www       714:         }
                    715:         if (pscat=='yesno') {
                    716:            tablestart('Yes/No');
1.52      bisitz    717: 	   choicewrite('<tr><td>Value:</td><td colspan="2">');
1.32      albertel  718:            choicewrite('<label><input name="stringval" value="yes"'+
1.29      www       719:                   ' type="radio" '+callradiostringeval('yes'));
1.53      bisitz    720:            if (svalue=='yes') { choicewrite(' checked="checked"'); }
                    721:            choicewrite(' /> Yes</label><br />');
1.32      albertel  722:            choicewrite('<label><input name="stringval" value="no"'+
1.29      www       723:                   ' type="radio" '+callradiostringeval('no'));
1.53      bisitz    724:            if (svalue=='no') { choicewrite(' checked="checked"'); }
                    725:            choicewrite(' /> No</label><br />');
1.25      www       726:         }
1.47      albertel  727:         if (pscat=='problemstatus') {
                    728:            tablestart('Problem Status');
1.52      bisitz    729: 	   choicewrite('<tr><td>Value:</td><td colspan="2">');
1.47      albertel  730:            choicewrite('<label><input name="stringval" value="yes"'+
                    731:                   ' type="radio" '+callradiostringeval('yes'));
1.53      bisitz    732:            if (svalue=='yes') { choicewrite(' checked="checked"'); }
                    733:            choicewrite(' /> Yes</label><br />');
1.49      albertel  734:            choicewrite('<label><input name="stringval" value="answer"'+
                    735:                   ' type="radio" '+callradiostringeval('answer'));
1.53      bisitz    736:            if (svalue=='answer') { choicewrite(' checked="checked"'); }
                    737:            choicewrite(' /> Yes, and show correct answer if they exceed the maximum number of tries.</label><br />');
1.47      albertel  738:            choicewrite('<label><input name="stringval" value="no"'+
                    739:                   ' type="radio" '+callradiostringeval('no'));
1.53      bisitz    740:            if (svalue=='no') { choicewrite(' checked="checked"'); }
                    741:            choicewrite(' /> No, don\'t show correct/incorrect feedback.</label><br />');
1.47      albertel  742:            choicewrite('<label><input name="stringval" value="no_feedback_ever"'+
                    743:                   ' type="radio" '+callradiostringeval('no_feedback_ever'));
1.53      bisitz    744:            if (svalue=='no_feedback_ever') { choicewrite(' checked="checked"'); }
                    745:            choicewrite(' /> No, show no feedback at all.</label><br />');
1.47      albertel  746:         }
1.25      www       747:         if (pscat=='examtype') {
                    748:            tablestart('Exam Type');
1.52      bisitz    749: 	   choicewrite('<tr><td>Value:</td><td colspan="2">');
1.32      albertel  750:            choicewrite('<label><input name="stringval" value="online"'+
1.29      www       751:                 ' type="radio" '+callradiostringeval('online'));
1.53      bisitz    752:            if (svalue=='online') { choicewrite(' checked="checked"'); }
                    753:            choicewrite(' /> Online</label><br />');
1.32      albertel  754:            choicewrite('<label><input name="stringval" value="checkout"'+
1.29      www       755:               ' type="radio" '+callradiostringeval('checkout'));
1.53      bisitz    756:            if (svalue=='checkout') { choicewrite(' checked="checked"'); }
                    757:            choicewrite(' /> Check out</label><br />');
1.25      www       758:        }
                    759:         if (pscat=='questiontype') {
                    760:            tablestart('Question Type');
1.52      bisitz    761: 	   choicewrite('<tr><td>Value:</td><td colspan="2">');
1.32      albertel  762:            choicewrite('<label><input name="stringval" value="problem"'+
1.29      www       763:                ' type="radio" '+callradiostringeval('problem'));
1.53      bisitz    764:            if (svalue=='problem') { choicewrite(' checked="checked"'); }
                    765:            choicewrite(' /> Standard Problem</label><br />');
1.36      albertel  766: //	   choicewrite('<label><input name="stringval" value="quiz"'+
                    767: //                ' type="radio" '+callradiostringeval('quiz'));
1.53      bisitz    768: //         if (svalue=='quiz') { choicewrite(' checked="checked"'); }
                    769: //         choicewrite(' /> Quiz</label><br />');
1.35      albertel  770:            choicewrite('<label><input name="stringval" value="practice"'+
                    771:                   ' type="radio" '+callradiostringeval('practice'));
1.53      bisitz    772:            if (svalue=='practice') { choicewrite(' checked="checked"'); }
                    773:            choicewrite(' /> Practice</label><br />');
1.32      albertel  774:            choicewrite('<label><input name="stringval" value="exam"'+
1.29      www       775:                   ' type="radio" '+callradiostringeval('exam'));
1.53      bisitz    776:            if (svalue=='exam') { choicewrite(' checked="checked"'); }
1.71.4.1! raeburn   777:            choicewrite(' /> Exam</label><br />');
1.36      albertel  778: //         choicewrite('<label><input name="stringval" value="assess"'+
                    779: //              ' type="radio" '+callradiostringeval('assess'));
1.53      bisitz    780: //         if (svalue=='assess') { choicewrite(' checked="checked"'); }
                    781: //         choicewrite(' /> Assessment</label><br />');
1.32      albertel  782:            choicewrite('<label><input name="stringval" value="survey"'+
1.29      www       783:                 ' type="radio" '+callradiostringeval('survey'));
1.53      bisitz    784:            if (svalue=='survey') { choicewrite(' checked="checked"'); }
                    785:            choicewrite(' /> Survey</label><br />');
1.36      albertel  786: //         choicewrite('<label><input name="stringval" value="form"'+
                    787: //                ' type="radio" '+callradiostringeval('form'));
1.53      bisitz    788: //         if (svalue=='form') { choicewrite(' checked="checked"'); }
1.36      albertel  789: //         choicewrite('> Input Form</label><br />');
1.57      raeburn   790:            choicewrite('<label><input name="stringval" value="surveycred"'+
                    791:                 ' type="radio" '+callradiostringeval('surveycred'));
                    792:            if (svalue=='surveycred') { choicewrite(' checked="checked"'); }
                    793:            choicewrite('> Survey (credit for submission)</label><br />');
                    794:            choicewrite('<label><input name="stringval" value="anonsurvey"'+
                    795:                 ' type="radio" '+callradiostringeval('anonsurvey'));
                    796:            if (svalue=='anonsurvey') { choicewrite(' checked="checked"'); }
                    797:            choicewrite('> Anonymous Survey</label><br />');
                    798:            choicewrite('<label><input name="stringval" value="anonsurveycred"'+
                    799:                 ' type="radio" '+callradiostringeval('anonsurveycred'));
                    800:            if (svalue=='anonsurveycred') { choicewrite(' checked="checked"'); }
                    801:            choicewrite('> Anonymous Survey (credit for submission)</label><br />');
1.59      raeburn   802:            choicewrite('<label><input name="stringval" value="randomizetry"'+
                    803:                 ' type="radio" '+callradiostringeval('randomizetry'));
                    804:            if (svalue=='randomizetry') { choicewrite(' checked="checked"'); }
                    805:            choicewrite('> New Randomization Each N Tries (default N=1)</label><br />');
1.32      albertel  806:            choicewrite('<label><input name="stringval" value="library"'+
1.29      www       807:                ' type="radio" '+callradiostringeval('library'));
1.53      bisitz    808:            if (svalue=='library') { choicewrite(' checked="checked"'); }
                    809:            choicewrite(' /> Library</label><br />');
1.25      www       810:         }
1.60      raeburn   811:         if (pscat=='lenient') {
                    812:            tablestart('Lenient Grading (Partial Credit)');
                    813:            choicewrite('<tr><td>Value:</td><td colspan="2">');
                    814:            choicewrite('<label><input name="stringval" value="yes"'+
                    815:                   ' type="radio" '+callradiostringeval('yes'));
                    816:            if (svalue=='yes') { choicewrite(' checked="checked"'); }
                    817:            choicewrite(' /> Yes</label><br />');
                    818:            choicewrite('<label><input name="stringval" value="no"'+
                    819:                   ' type="radio" '+callradiostringeval('no'));
                    820:            if (svalue=='no') { choicewrite(' checked="checked"'); }
                    821:            choicewrite(' /> No</label><br />');
                    822:            choicewrite('<label><input name="stringval" value="default"'+
                    823:                ' type="radio" '+callradiostringeval('default'));
                    824:            if (svalue=='default') { choicewrite(' checked="checked"'); }
                    825:            choicewrite(' /> Default (only bubblesheet grading is lenient)</label><br />');
                    826:         }
1.64      raeburn   827:         if (pscat=='discussvote') {
                    828:            tablestart('Discussion Voting');
                    829:            choicewrite('<tr><td>Value:</td><td colspan="2">');
                    830:            choicewrite('<label><input name="stringval" value="yes"'+
                    831:                   ' type="radio" '+callradiostringeval('yes'));
                    832:            if (svalue=='yes') { choicewrite(' checked="checked"'); }
                    833:            choicewrite(' /> Yes</label><br />');
                    834:            choicewrite('<label><input name="stringval" value="notended"'+
                    835:                   ' type="radio" '+callradiostringeval('notended'));
                    836:            if (svalue=='notended') { choicewrite(' checked="checked"'); }
                    837:            choicewrite(' /> Yes, unless discussion ended</label><br />');
                    838:            choicewrite('<label><input name="stringval" value="no"'+
                    839:                   ' type="radio" '+callradiostringeval('no'));
                    840:            if (svalue=='no') { choicewrite(' checked="checked"'); }
                    841:            choicewrite(' /> No</label><br />');
                    842:         }
1.25      www       843:         if (pscat=='ip') {
                    844:            tablestart('IP Number/Name');
1.52      bisitz    845: 	   choicewrite('<tr><td>Value:</td><td colspan="2">');
1.46      albertel  846:            choicewrite('<input name="stringval" size="20" value="'+escapeHTML(svalue)+
1.53      bisitz    847:                     '" onchange="parent.stringeval()" />');
1.6       www       848:         }
1.26      www       849:         if (pscat=='fileext') {
                    850:             tablestart('Allowed File Extensions');
1.52      bisitz    851: 	   choicewrite('<tr><td>Value:</td><td colspan="2">');
1.32      albertel  852:            choicewrite('<label><input name="radstringval" value="txt"'+
1.29      www       853:                ' type="radio" '+callradiostringeval('txt'));
1.53      bisitz    854:            if (svalue=='txt') { choicewrite(' checked="checked"'); }
                    855:            choicewrite(' /> Plain Text</label><br />');
1.32      albertel  856:            choicewrite('<label><input name="radstringval" value="png,jpg,jpeg,gif"'+
1.29      www       857:                ' type="radio" '+callradiostringeval('png,jpg,jpeg,gif'));
1.53      bisitz    858:            if (svalue=='png,jpg,jpeg,gif') { choicewrite(' checked="checked"'); }
                    859:            choicewrite(' /> Picture File</label><br />');
1.58      raeburn   860:            choicewrite('<label><input name="radstringval" value="doc,docx,xls,xlsx,ppt,pptx"'+
                    861:                ' type="radio" '+callradiostringeval('doc,docx,xls,xlsx,ppt,pptx'));
                    862:            if (svalue=='doc,docx,xls,xlsx,ppt,pptx') { choicewrite(' checked="checked"'); }
1.53      bisitz    863:            if (svalue=='doc,xls,ppt') { choicewrite(' checked="checked"'); }
                    864:            choicewrite(' /> Office Document</label><br />');
1.46      albertel  865:            choicewrite('<input name="stringval" size="20" value="'+escapeHTML(svalue)+
1.53      bisitz    866:                     '" onchange="parent.stringeval()" />');
1.26      www       867:        }
1.37      albertel  868:        if (pscat=='useslots') {
                    869:            tablestart('Slots control access');
1.52      bisitz    870: 	   choicewrite('<tr><td>Value:</td><td colspan="2">');
1.37      albertel  871:            choicewrite('<label><input name="stringval" value="no"'+
                    872:                   ' type="radio" '+callradiostringeval('no'));
1.53      bisitz    873:            if (svalue=='no') { choicewrite(' checked="checked"'); }
                    874:            choicewrite(' /> No</label><br />');
1.37      albertel  875:            choicewrite('<label><input name="stringval" value="resource"'+
                    876:                   ' type="radio" '+callradiostringeval('resource'));
1.53      bisitz    877:            if (svalue=='resource') { choicewrite(' checked="checked"'); }
                    878:            choicewrite(' /> Yes, and the scope of student selected slot is a single resource.</label><br />');
1.38      albertel  879:            choicewrite('<label><input name="stringval" value="map"'+
                    880:                   ' type="radio" '+callradiostringeval('map'));
1.53      bisitz    881:            if (svalue=='map') { choicewrite(' checked="checked"'); }
                    882:            choicewrite(' /> Yes, and the scope of student selected slot is the enclosing map/folder. When checking in, it applies to only one resource.</label><br />');
1.39      albertel  883:            choicewrite('<label><input name="stringval" value="map_map"'+
1.40      albertel  884:                   ' type="radio" '+callradiostringeval('map_map'));
1.53      bisitz    885:            if (svalue=='map_map') { choicewrite(' checked="checked"'); }
1.55      bisitz    886:            choicewrite(' /> Yes, and the scope of student selected slot is the enclosing map/folder. When checking in, all resources in the map/folder are checked in.</label><br />');
1.54      bisitz    887:         choicewrite('</td></tr></table>');
1.6       www       888:       }
1.21      www       889:    }
                    890:    
                    891:    if (ptype=='color') {
                    892:       tablestart('Choose a Color');
                    893:       choicewrite('<table>');
                    894:       if (svalue) {
1.23      www       895:          choicewrite('<tr><td colspan="9">Current choice:</td><td bgcolor="'+
1.46      albertel  896:                      escapeHTML(svalue)+'" colspan="2">&nbsp;</td></tr>');
1.21      www       897:       }
1.23      www       898:       for (var ir=0; ir<=10; ir++) {
                    899:           for (var ig=0; ig<=10; ig++) {
1.21      www       900:               choicewrite('<tr>');
1.23      www       901:               for (var ib=0; ib<=10; ib++) {
1.21      www       902:                   colorfield(ir,ig,ib);
                    903: 	      }
                    904:               choicewrite('</tr>');
                    905: 	  }	      
                    906:       }
                    907:       choicewrite('</table></td></table>');
1.1       www       908:    }
                    909: 
1.40      albertel  910:    choicewrite('</form>');
1.1       www       911:    choiceend();
                    912: }
                    913: 
                    914: function sopt(va,text) {
                    915:    selwrite('<option value="'+va+'"');
1.2       www       916:    if (va==pscat) {
1.54      bisitz    917:      selwrite(' selected="selected"');
1.1       www       918:    }
                    919:    selwrite('>'+text+'</option>');
                    920: }
                    921: 
                    922: function catchange() {
                    923:    var sform=selector.document.forms.fsel.fcat;
1.2       www       924:    pscat=sform.options[sform.selectedIndex].value;
1.1       www       925:    draw();
                    926: }
                    927: 
                    928: function assemble() {
1.2       www       929:     if ((ptype=='date') && (pscat!='interval')) {
1.41      www       930:         svalue=Math.floor(cdate.getTime()/1000);
1.2       www       931:     }
1.12      www       932:     if (ptype=='tolerance') {
                    933:        if (pscat=='relative_sym') {
                    934:           svalue=choices.document.forms.sch.val2.value+'%';
                    935:           if (choices.document.forms.sch.val3.checked) {
                    936:              svalue+='+';
                    937:           }
                    938:        }
                    939:        if (pscat=='absolute_sym') {
                    940:           svalue=choices.document.forms.sch.val2.value;
                    941:           if (choices.document.forms.sch.val3.checked) {
                    942:              svalue+='+';
                    943:           }
                    944:        }
                    945:        if (pscat=='absolute') {
                    946:           svalue=choices.document.forms.sch.val2.value;
                    947:           if (choices.document.forms.sch.val3.checked) {
                    948:              svalue+='+';
                    949:           }
                    950:           svalue+=','+choices.document.forms.sch.val4.value;
                    951:           if (choices.document.forms.sch.val5.checked) {
                    952:              svalue+='+';
                    953:           }
                    954:        }
                    955:        if (pscat=='relative') {
                    956:           svalue=choices.document.forms.sch.val2.value+'%';
                    957:           if (choices.document.forms.sch.val3.checked) {
                    958:              svalue+='+';
                    959:           }
                    960:           svalue+=','+choices.document.forms.sch.val4.value+'%';
                    961:           if (choices.document.forms.sch.val5.checked) {
                    962:              svalue+='+';
                    963:           }
                    964:        }
1.14      www       965:     }
                    966:     if ((ptype=='int') && (pscat=='range')) {
                    967:           svalue=choices.document.forms.sch.val2.value+','+
                    968:                  choices.document.forms.sch.val4.value;
1.12      www       969:     }
1.6       www       970:     if (pscat=='default') { svalue=''; }
1.2       www       971:     stype=ptype+'_'+pscat;
1.1       www       972: }
                    973: 
                    974: 
                    975: function init() {
                    976:   var i;
1.2       www       977:   var subs=new Array();
1.71      raeburn   978:   var doneRegExp = /_done(|\:[^\:]+\:)/;
                    979:   var doneproctorRegExp = /_done(|\:[^\:]+\:)_proctor/;
1.70      raeburn   980:   var proctorkeyRegExp = /^(\d+)_(.+)$/;
1.71      raeburn   981:   var donetextRegExp = /\:([^\:]+)\:/;
1.1       www       982:   var namevalue=this.window.location.search.split('&');
                    983:   namevalue[0]=namevalue[0].substr(1,namevalue[0].length-1);
                    984: 
                    985:   for (i=0;i<namevalue.length;i++) {
                    986:      var pair=namevalue[i].split('=');
1.3       www       987:      pair[1]=unescape(pair[1]);
1.1       www       988:      if (pair[0]=='value') { pvalue=pair[1]; }
1.2       www       989:      if (pair[0]=='type') { subs=pair[1].split('_');
                    990:                             ptype=subs[0];
                    991:                             pscat=subs[1];
1.11      www       992:                             if (typeof(subs[2])!="undefined") { 
                    993:                                pscat+='_'+subs[2]; 
                    994:                             }
                    995:                             if ((pscat=='') || (typeof(pscat)=="undefined")) { 
1.6       www       996:                                pscat='default';
                    997:                             }
1.2       www       998:                            }
1.1       www       999:      if (pair[0]=='return') { preturn=pair[1]; }
                   1000:      if (pair[0]=='call') { pcode=pair[1]; }
1.2       www      1001:      if (pair[0]=='marker') { pmarker=pair[1]; }
1.1       www      1002:      if (pair[0]=='name') { pname=pair[1]; }
1.63      www      1003:      if (pair[0]=='modal') { pmodal=pair[1]; }
1.34      albertel 1004:      if (pair[0]=='defhour' && pair[1] >= 0 && pair[1] < 24 ) {
                   1005:          defhour=pair[1];
                   1006:      }
                   1007:      if (pair[0]=='defmin' && pair[1] >= 0 && pair[1] < 60) { defmin=pair[1]; }
                   1008:      if (pair[0]=='defsec' && pair[1] >= 0 && pair[1] < 60) { defsec=pair[1]; }
1.1       www      1009:   }
                   1010: 
1.68      raeburn  1011:   if (ptype=='date' && pscat == 'interval') {
1.70      raeburn  1012:       if (doneproctorRegExp.test(pvalue)) {
1.71      raeburn  1013:           var current = pvalue.match(doneproctorRegExp);
                   1014:           if (current.length == 2) {
                   1015:               var textstr = current[1];
                   1016:               if (textstr != '') {
                   1017:                   var textvals = textstr.match(donetextRegExp);
                   1018:                   if (textvals.length == 2) {
                   1019:                       pextravaltwo = textvals[1];
                   1020:                   }
                   1021:               }
                   1022:           }
1.70      raeburn  1023:           var intervalwithkey = pvalue.replace(doneproctorRegExp,'');
                   1024:           if (proctorkeyRegExp.test(intervalwithkey)) {
                   1025:               var currvals = intervalwithkey.match(proctorkeyRegExp);
                   1026:               if (currvals.length == 3) {
                   1027:                   pvalue = currvals[1];
                   1028:                   pextraval = currvals[2];
1.71      raeburn  1029:                   pmodval = '_done_proctor';
1.70      raeburn  1030:               } else {
                   1031:                   pmodval = '';
                   1032:               }
                   1033:           }
                   1034:       } else {
                   1035:           if (doneRegExp.test(pvalue)) {
1.71      raeburn  1036:               var current = pvalue.match(doneRegExp); 
                   1037:               if (current.length == 2) {
                   1038:                   var textstr = current[1];
                   1039:                   if (textstr != '') {
                   1040:                       var textvals = textstr.match(donetextRegExp);
                   1041:                       if (textvals.length == 2) {
                   1042:                           pextravaltwo = textvals[1];
                   1043:                       }
                   1044:                   }
                   1045:               }
1.70      raeburn  1046:               var pnumval = pvalue.replace(doneRegExp,'');
1.71      raeburn  1047:               pmodval = '_done';
1.70      raeburn  1048:               pvalue = pnumval;
                   1049:           }
1.68      raeburn  1050:       }
                   1051:   }
1.1       www      1052:   svalue=pvalue;
1.6       www      1053:   if (((ptype=='float') || (ptype=='string') || (ptype=='int')) &&
                   1054:       (pscat=='default') && 
1.11      www      1055:       (typeof(svalue)!="undefined") && 
                   1056:       (svalue!=0) && (svalue!='')) { pscat='any'; }
1.1       www      1057: 
1.13      www      1058:   if (ptype=='tolerance') {
                   1059:      var tperc=0;
                   1060:      var trange=0;
                   1061:      if (typeof(svalue)!='undefined') {
                   1062:         if (svalue.indexOf('%')!=-1) { tperc=1;  }
                   1063:         if (svalue.indexOf(',')!=-1) { trange=1; }
                   1064:         if (trange) {
                   1065:            if (tperc) { pscat='relative'; } else { pscat='absolute'; }
                   1066:         } else {
                   1067:            if (tperc) { pscat='relative_sym'; } else { pscat='absolute_sym'; }
                   1068:         }
                   1069:      }
                   1070:   }
                   1071: 
1.61      raeburn  1072:   this.window.selector.document.open();
1.62      raeburn  1073:   selwrite('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
                   1074:   selwrite('<html xmlns="http://www.w3.org/1999/xhtml">');
1.55      bisitz   1075:   selwrite('<head>');
1.62      raeburn  1076:   selwrite('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />');
                   1077:   selwrite('<title>LON-CAPA</title>');
1.55      bisitz   1078:   selwrite('<style type="text/css">');
                   1079:   selwrite('<!--');
                   1080:   selwrite('body {');
                   1081:   selwrite('font-family: Verdana,Arial,Helvetica,sans-serif;');
                   1082:   selwrite('line-height:130%;');
                   1083:   selwrite('font-size:0.83em;');
                   1084:   selwrite('background: #FFFFFF;');
                   1085:   selwrite('}');
                   1086:   selwrite('-->');
                   1087:   selwrite('</style>');
                   1088:   selwrite('</head>');
1.62      raeburn  1089:   selwrite('<body>');
                   1090:   selwrite('<form name="fsel" action=""><b>'+pname+'</b><br />');
1.66      bisitz   1091:   selwrite('Format of Value(s): <select name="fcat" onchange="parent.catchange();">');
1.12      www      1092: 
1.1       www      1093:   if (ptype=='tolerance') {
                   1094:      sopt('default','Default');
                   1095:      sopt('relative_sym','Relative Tolerance, Symmetric (percent)');
                   1096:      sopt('relative','Relative Tolerance (percentages)');
                   1097:      sopt('absolute_sym','Absolute Tolerance, Symmetric (value)');
                   1098:      sopt('absolute','Absolute Tolerance (values)');
                   1099:   }
                   1100: 
                   1101:   if (ptype=='date') {
1.48      albertel 1102:      if (pscat != 'interval') {
                   1103:          sopt('default','Default');
                   1104: 	 sopt('start','Starting Date');
                   1105: 	 sopt('end','Ending Date');
                   1106:      } else {
                   1107:          sopt('interval','Time Interval');
                   1108:      }
                   1109: 
1.11      www      1110:      if ((pvalue!='') && (typeof(pvalue)!="undefined")) {
1.2       www      1111:         cdate.setTime(pvalue*1000);
1.30      www      1112:      } else {        
1.31      www      1113:         cdate.setSeconds(defsec);
                   1114:         cdate.setMinutes(defmin);
                   1115:         cdate.setHours(defhour);
1.2       www      1116:      }
                   1117:  
                   1118:      months[0]='January';
                   1119:      months[1]='February';
                   1120:      months[2]='March';
                   1121:      months[3]='April';
                   1122:      months[4]='May';
                   1123:      months[5]='June';
                   1124:      months[6]='July';
                   1125:      months[7]='August';
                   1126:      months[8]='September';
                   1127:      months[9]='October';
                   1128:      months[10]='November';
                   1129:      months[11]='December';
1.1       www      1130:   }
1.2       www      1131:    
1.6       www      1132:   if (ptype=='int') {
                   1133:      sopt('default','Default');
                   1134:      sopt('pos','Positive Integer, Not Zero');
                   1135:      sopt('zeropos','Positive Integer or Zero');
1.13      www      1136:      sopt('inrange','Integer in Range');
                   1137:      sopt('range','Range of Integers');
1.6       www      1138:      sopt('any','Integer');
1.1       www      1139:   }
                   1140: 
1.6       www      1141:   if (ptype=='float') {
                   1142:      sopt('default','Default');
                   1143:      sopt('zeroone','Floating Point between 0 and 1');
                   1144:      sopt('pos','Positive Floating Point');
                   1145:      sopt('any','Floating Point');
1.1       www      1146: 
                   1147:   }
                   1148: 
1.6       www      1149:   if (ptype=='string') {
1.44      albertel 1150:      //sopt('default','Default');
                   1151:      if (pscat == 'yesno')        { sopt('yesno','Yes/No'); }
1.47      albertel 1152:      else if (pscat == 'problemstatus'){ sopt('problemstatus','Problem Status'); }
1.45      albertel 1153:      else if (pscat == 'examtype')     { sopt('examtype','Exam Type'); }
                   1154:      else if (pscat == 'questiontype') { sopt('questiontype','Question Type'); }
1.60      raeburn  1155:      else if (pscat == 'lenient')      { sopt('lenient','Lenient Grading (Partial Credit)'); }
1.64      raeburn  1156:      else if (pscat == 'discussvote')  { sopt('discussvote','Discussion Voting'); }
1.45      albertel 1157:      else if (pscat == 'ip')           { sopt('ip','IP Number/Name'); }
                   1158:      else if (pscat == 'fileext')      { sopt('fileext','File Extension'); }
                   1159:      else if (pscat == 'useslots')     { sopt('useslots','Slots control access'); }
                   1160:      else { pscat = 'any'; }
1.28      albertel 1161:      sopt('any','String Value');
1.22      www      1162:   }
                   1163: 
                   1164:   if (ptype=='color') {
                   1165:      sopt('default','Use Default Color');
                   1166:      sopt('custom','Use Custom Color');
1.1       www      1167:   }
                   1168: 
                   1169:   selwrite('</select></form>');
1.63      www      1170:   var targ='parent.opener';
                   1171:   if (pmodal==1) {
                   1172:      targ='parent.parent';
1.70      raeburn  1173:   }
                   1174:   if ((ptype=='date') && (pscat=='interval')) {
                   1175:       selwrite('<a href="javascript:parent.validateInterval();');
                   1176:   } else {
                   1177:       selwrite('<a href="javascript:parent.assemble();');
                   1178:   }
1.1       www      1179:   if (preturn!='') {
1.63      www      1180:      selwrite(targ+'.document.'+preturn+'_value.value=parent.window.svalue;');
                   1181:      selwrite(targ+'.document.'+preturn+'_type.value=parent.window.stype;');
1.2       www      1182:   }
                   1183:   if (pmarker!='') {
1.63      www      1184:      selwrite(targ+'.document.'+preturn+'_marker.value=parent.window.pmarker;');
1.1       www      1185:   }
                   1186:   if (pcode!='') {
1.63      www      1187:      selwrite(targ+'.'+pcode+'();');
1.1       www      1188:   }
1.43      albertel 1189:   selwrite('">Save</a>&nbsp;&nbsp;');
1.5       www      1190: 
                   1191:   selwrite('<a href="javascript:');
1.63      www      1192:   selwrite(targ+'.document.'+preturn+'_value.value='+"'';");
1.5       www      1193:   if (pmarker!='') {
                   1194:      selwrite(
1.63      www      1195:      targ+'.document.'+preturn+'_marker.value=parent.window.pmarker;');
1.5       www      1196:   }
                   1197:   if (pcode!='') {
1.63      www      1198:      selwrite(targ+'.'+pcode+'();');
1.5       www      1199:   }
                   1200:   selwrite('">Delete</a>&nbsp;&nbsp;');
1.4       www      1201:  
1.1       www      1202:   selwrite('</body></html>');
                   1203:   this.window.selector.document.close();
1.2       www      1204:   draw();
1.1       www      1205:   
                   1206: }
                   1207: 
1.56      raeburn  1208: // ]]>
1.1       www      1209: </script>
1.56      raeburn  1210: </head>
1.1       www      1211: 
1.56      raeburn  1212: <frameset rows="120,*" onload="init();">
                   1213: <frame name="selector" src="empty.html" />
                   1214: <frame name="choices" src="empty.html" />
1.1       www      1215: </frameset>
                   1216: 
                   1217: 
                   1218: 
1.16      albertel 1219: </html>

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