File:  [LON-CAPA] / loncom / homework / templates / examupload.problem
Revision 1.6: download - view: text, annotated - select for diffs
Mon May 30 20:02:11 2005 UTC (18 years, 11 months ago) by www
Branches: MAIN
CVS tags: version_2_0_X, version_2_0_99_1, version_2_0_2, version_2_0_1, version_2_0_0, version_1_99_3, version_1_99_2, version_1_99_1, version_1_99_0, HEAD
I have done this to myself twice already.

<problem>
<displaytitle />
<parameter name="scoreformat" description="Format for display of score" default="0f" type="string" />
<script type="loncapa/perl">
$weight=&EXT('resource.0.weight');
if ((!defined($weight)) || ($weight eq '')) { $weight=1; }
$awarded=&EXT('user.resource.resource.0.awarded');
if (!defined($awarded)) { $awarded=0; }
$scoreformat=&EXT('resource.0.scoreformat');
if (!defined($scoreformat) || $scoreformat eq '') { $scoreformat="2f"; }
</script>
<startouttext />
You have <display>&format($awarded*$weight,$scoreformat)</display> out of $weight possible points.
<instructorcomment>
<font color="red">
<br />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.
</font>
</instructorcomment>
<endouttext />
<block condition="0"><numericalresponse id='score' /></block>
</problem>

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