[Logicampus-cvs] logicampus/src/logicreate/services/lobrepo/templates exam_main.html, 1.1, 1.2 exa
Brought to you by:
trilexcom
From: Mark K <har...@us...> - 2007-10-05 22:38:01
|
Update of /cvsroot/logicampus/logicampus/src/logicreate/services/lobrepo/templates In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv9236/services/lobrepo/templates Modified Files: exam_main.html exam_question_mchoice.html Log Message: Fixes to copy a test down to your classroom and see it in the classroom viewer. Index: exam_question_mchoice.html =================================================================== RCS file: /cvsroot/logicampus/logicampus/src/logicreate/services/lobrepo/templates/exam_question_mchoice.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** exam_question_mchoice.html 5 Oct 2007 21:35:48 -0000 1.1 --- exam_question_mchoice.html 5 Oct 2007 22:37:38 -0000 1.2 *************** *** 22,27 **** <td NOWRAP> <? $x <= 1 ? '*' : ''; ?> ! <input name="labels[<?=$x;?>]" type="text" value="<?=$qc->label;?>" size="50" <?= $t['disableFlag'];?>> ! <input name="correct" value="<?=$x;?>" type="radio" <?= $qc->correct ? 'CHECKED':'';?>> </td> </tr> --- 22,27 ---- <td NOWRAP> <? $x <= 1 ? '*' : ''; ?> ! <input name="labels[<?=$x;?>]" type="text" value="<?=$qc['label'];?>" size="50" <?= $t['disableFlag'];?>> ! <input name="correct" value="<?=$x;?>" type="radio" <?= $qc['correct'] ? 'CHECKED':'';?>> </td> </tr> Index: exam_main.html =================================================================== RCS file: /cvsroot/logicampus/logicampus/src/logicreate/services/lobrepo/templates/exam_main.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** exam_main.html 5 Oct 2007 21:35:48 -0000 1.1 --- exam_main.html 5 Oct 2007 22:37:38 -0000 1.2 *************** *** 36,40 **** <p> </p> ! <form method="POST"> <table width="100%" border="0"> <tr> --- 36,40 ---- <p> </p> ! <form method="POST" action=<?=modurl('exam/');?>"> <table width="100%" border="0"> <tr> *************** *** 216,222 **** <p align="right"> ! <input type="hidden" name="event" value="updatePoints"> ! <input type="submit" name="submit" value="Update Points" onClick="return checkPoints();"> ! <input type="hidden" name="assessmentId" value="<?=$t['assessment']->assessmentId?>"> </p> --- 216,221 ---- <p align="right"> ! <input type="hidden" name="event" value="saveTest"> ! <input type="submit" name="submit" value="Save Test"/> </p> |