File:  [LON-CAPA] / loncom / homework / templates / DropBox.problem
Revision 1.13: download - view: text, annotated - select for diffs
Mon Jul 6 17:12:47 2009 UTC (14 years, 11 months ago) by bisitz
Branches: MAIN
CVS tags: bz6209-base, bz6209, bz2851, HEAD, GCI_3
Consistent problem templates:
- New line after each tag (not for texts in foils)
- One empty row after each end tag and before new start tag for second level tags
- No indentation for second level tags, e.g. <script>
- Four white spaces as indentation for each further sub level
    Exceptions:
        -Content (mostly text) in separate line(s): no indentation
        - Concept groups: same indentation as foilgroup
          (allows to insert code from problems without concept groups without changing the indentation and vice versa)
- No new line at end of template
- Removed new lines from within the middle of default texts
- Added one blank each after "<m>$" and before "$</m>" to ensure no misinterpretation neither by human nor by machine (e.g. "<m>$x" is not "<m>$ $x")
- Replaced deprecated font tag in <instructorcomment> by CSS
- Removed dos line endings
- dos2unix conversion
  (ClickImageExample.problem, RandomLabelExample.problem, SimpleMatching.problem)

    1: <problem>
    2: 
    3: <parameter name="scoreformat" description="Format for display of score" type="string" />
    4: <parameter name="uploadedfiletypes" id="11" default="doc,docx,xls,xlsx,ppt,pptx,png,jpg,jpeg,gif,txt,pdf,htm,html" type="string_fileext" description="Allowed File Extensions for Uploaded Files" />
    5: <parameter name="maxfilesize" id="13" default="10.0" type="float_pos" description="Max. cumulative size (MB) for submitted file(s)" /> 
    6: 
    7: <script type="loncapa/perl">
    8: $weight=&EXT('resource.0.weight');
    9: if ((!defined($weight)) || ($weight eq '')) { $weight=1; }
   10: $awarded=&EXT('user.resource.resource.0.awarded');
   11: $scoreformat=&EXT('resource.0.scoreformat');
   12: if (!defined($scoreformat) || $scoreformat eq '') { $scoreformat="0f"; }
   13: if (!defined($awarded)) {
   14:    $display='$weight possible points.';
   15: } else {
   16:    $display='You have '.&format($awarded*$weight,$scoreformat).' out of '.
   17:             $weight.' possible points.';
   18: }
   19: </script>
   20: 
   21: <startouttext />
   22: <displaytitle />
   23: $display
   24: <instructorcomment><span style="color:red">
   25: <ul><li>If non-integer points are used (e.g., 3.5), make sure to change the display format in PPRM, or the result will be displayed in rounded form.</li>
   26: <li>To change the allowed file types for submissions, change the "uploadedfiletypes" parameter in PPRM.</li>
   27: <li>To change the maximum cumulative size for submitted files for this item, modify the "maxfilesize" parameter in PPRM (The default is 10 MB).</li>
   28: </ul></span>
   29: </instructorcomment>
   30: <endouttext />
   31: 
   32: <essayresponse id="upload">
   33: </essayresponse>
   34: 
   35: </problem>

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