File:  [LON-CAPA] / loncom / homework / templates / custompartial.problem
Revision 1.4: download - view: text, annotated - select for diffs
Thu Dec 15 01:21:45 2011 UTC (12 years, 6 months ago) by raeburn
Branches: MAIN
CVS tags: version_2_11_2_uiuc, version_2_11_2_msu, version_2_11_2_educog, version_2_11_2, version_2_11_1, version_2_11_0_RC3, version_2_11_0_RC2, version_2_11_0_RC1, version_2_11_0, HEAD, BZ4492-merge, BZ4492-feature_horizontal_radioresponse, BZ4492-feature_Support_horizontal_radioresponse, BZ4492-Support_horizontal_radioresponse
- Bug 2802.
  - Separate decision on leniency in grading from logic on whether additional
    new submission is possible for partially correct problem parts.
  - new parameter: retrypartial set to "yes" if part is to be answerable
    when partially correct.
  - custompartial.problem template incorporates retrypartial parameter in
    place of lenient parameter.
  - points awarded > 1 no longer considered 'partially correct'.
  - &grading_is_nonlenient() moved from inputtags.pm back to optionresponse.pm

    1: <problem>
    2:  <parameter name="lenient" type="string_yesno" description="Partially correct is answerable" default="yes" />
    3: 
    4: <startouttext />
    5: Complete the sentence:
    6: <endouttext />
    7: 
    8: <customresponse id="11">
    9:     <notsolved>
   10:         <startouttext />
   11: The q<textline readonly="no" size="5" /> brown fox jum<textline readonly="no" size="3" /> over the <textline readonly="no" size="3" />zy d<textline readonly="no" size="3" />.
   12:         <endouttext />
   13:     </notsolved>
   14:     <solved>
   15:         <startouttext />
   16: The q<b>uick</b> brown fox jum<b>ps</b> over the <b>la</b>zy d<b>og</b>.
   17:         <endouttext />
   18:     </solved>
   19:     <answer type="loncapa/perl">
   20: @answer=('uick','ps','la','og');
   21: $correct=0;
   22: for ($i=0;$i<=$#$submission;$i++) {
   23:     $$submission[$i]=~s/\s//gs;
   24:     if ($$submission[$i] eq $answer[$i]) { $correct++; }
   25: }
   26: if ($correct==$#answer+1) { return 'EXACT_ANS'; }
   27: if ($correct==0) { return 'INCORRECT'; }
   28: return('ASSIGNED_SCORE',$correct/($#answer+1));
   29:     </answer>
   30: </customresponse>
   31: 
   32: </problem>

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