--- rat/client/parameter.html 2010/05/17 22:41:02 1.56.2.1 +++ rat/client/parameter.html 2013/01/29 16:46:32 1.66 @@ -5,7 +5,7 @@ The LearningOnline Network with CAPA Parameter Input Window // -// $Id: parameter.html,v 1.56.2.1 2010/05/17 22:41:02 raeburn Exp $ +// $Id: parameter.html,v 1.66 2013/01/29 16:46:32 bisitz Exp $ // // Copyright Michigan State University Board of Trustees // @@ -43,6 +43,7 @@ var preturn=''; var pcode=''; var pscat=''; var pmarker=''; +var pmodal=''; var pname=''; var defhour=0; @@ -70,9 +71,12 @@ function selwrite(text) { } function choicestart() { - this.window.choices.document.clear(); - choicewrite(''); + this.window.choices.document.open(); + choicewrite(''); + choicewrite(''); choicewrite(''); + choicewrite(''); + choicewrite('LON-CAPA'); choicewrite(''); choicewrite(''); + choicewrite(''); } function choiceend() { @@ -382,6 +387,9 @@ function draw() { if (ptype=='string') { choicewrite(' action="javascript:stringeval();"'); } + if (ptype != 'int' && ptype != 'float' && ptype != 'string') { + choicewrite(' action=""'); + } choicewrite('>'); if (ptype=='tolerance') { // 0: pscat @@ -623,7 +631,7 @@ function draw() { choicewrite('
'); + choicewrite(' /> Bubblesheet Exam
'); // choicewrite('
'); + choicewrite('
'); + choicewrite('
'); + choicewrite('
'); + choicewrite('
'); choicewrite('
'); } + if (pscat=='lenient') { + tablestart('Lenient Grading (Partial Credit)'); + choicewrite('Value:'); + choicewrite('
'); + choicewrite('
'); + choicewrite('
'); + } + if (pscat=='discussvote') { + tablestart('Discussion Voting'); + choicewrite('Value:'); + choicewrite('
'); + choicewrite('
'); + choicewrite('
'); + } if (pscat=='ip') { tablestart('IP Number/Name'); choicewrite('Value:'); @@ -797,6 +853,7 @@ function init() { if (pair[0]=='call') { pcode=pair[1]; } if (pair[0]=='marker') { pmarker=pair[1]; } if (pair[0]=='name') { pname=pair[1]; } + if (pair[0]=='modal') { pmodal=pair[1]; } if (pair[0]=='defhour' && pair[1] >= 0 && pair[1] < 24 ) { defhour=pair[1]; } @@ -824,9 +881,12 @@ function init() { } } - this.window.selector.document.clear(); - selwrite(''); + this.window.selector.document.open(); + selwrite(''); + selwrite(''); selwrite(''); + selwrite(''); + selwrite('LON-CAPA'); selwrite(''); selwrite(''); - selwrite('
'+pname+'
'); - selwrite(''); if (ptype=='tolerance') { sopt('default','Default'); @@ -903,6 +964,8 @@ function init() { else if (pscat == 'problemstatus'){ sopt('problemstatus','Problem Status'); } else if (pscat == 'examtype') { sopt('examtype','Exam Type'); } else if (pscat == 'questiontype') { sopt('questiontype','Question Type'); } + else if (pscat == 'lenient') { sopt('lenient','Lenient Grading (Partial Credit)'); } + else if (pscat == 'discussvote') { sopt('discussvote','Discussion Voting'); } else if (pscat == 'ip') { sopt('ip','IP Number/Name'); } else if (pscat == 'fileext') { sopt('fileext','File Extension'); } else if (pscat == 'useslots') { sopt('useslots','Slots control access'); } @@ -916,56 +979,34 @@ function init() { } selwrite('
'); - + var targ='parent.opener'; + if (pmodal==1) { + targ='parent.parent'; + } selwrite('Save  '); selwrite('Delete  '); - selwrite('Cancel'); - selwrite(''); this.window.selector.document.close(); draw();