File:  [LON-CAPA] / loncom / homework / templates / custompartial.problem
Revision 1.3: download - view: text, annotated - select for diffs
Tue Nov 29 13:24:41 2011 UTC (12 years, 7 months ago) by raeburn
Branches: MAIN
CVS tags: language_hyphenation_merge, language_hyphenation, HEAD
- Bug 2802.
  - optionresponse::is_nonlenient() moved to inputtags::grading_is_nonlenient()
    to facilitate re-use.
  - where solved is "correct", awarded value < 1 permits new submission,
    only if lenient grading applies.
  - add lenient parameter to custompartial.problem template.

    1: <problem>
    2:  <parameter name="lenient" type="string_lenient" description="Lenient Grading (Partial Credit)" 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>