Annotation of loncom/homework/templates/examupload.problem, revision 1.12
1.1 www 1: <problem>
1.10 bisitz 2:
1.1 www 3: <displaytitle />
1.10 bisitz 4:
1.8 albertel 5: <parameter name="scoreformat" description="Format for display of score" type="string" />
1.7 albertel 6: <parameter name="handgrade" description="Hand Grade" default="yes" type="string_yesno" />
1.10 bisitz 7:
1.1 www 8: <script type="loncapa/perl">
9: $weight=&EXT('resource.0.weight');
1.3 albertel 10: if ((!defined($weight)) || ($weight eq '')) { $weight=1; }
1.1 www 11: $awarded=&EXT('user.resource.resource.0.awarded');
12: if (!defined($awarded)) { $awarded=0; }
1.4 albertel 13: $scoreformat=&EXT('resource.0.scoreformat');
1.8 albertel 14: if (!defined($scoreformat) || $scoreformat eq '') { $scoreformat="0f"; }
1.11 www 15: $comment=&EXT('user.resource.resource.0.comment');
16: if (!defined($comment) || $comment!~/\w/) {
17: $comment='';
18: } else {
19: $comment='<br /><table><tr><td bgcolor="#FFFFDD">'.$comment.'</td></tr></table>';
20: }
21: $gradeinfo=&EXT('user.resource.resource.0.gradeinfo');
22: if (!defined($gradeinfo) || $gradeinfo!~/\w/) {
23: $gradeinfo='';
24: } else {
1.12 ! www 25: $gradeinfo='<br /><table><tr><td bgcolor="#DDDDFF"><font size="+2">'.$gradeinfo.'</font></td></tr></table>';
1.11 www 26: }
27:
28:
1.1 www 29: </script>
1.10 bisitz 30:
1.1 www 31: <startouttext />
1.4 albertel 32: You have <display>&format($awarded*$weight,$scoreformat)</display> out of $weight possible points.
1.10 bisitz 33: <instructorcomment><span style="color:red">
1.6 www 34: <br />If non-integer points are used (e.g., 3.5), make sure to change the
1.11 www 35: display format in "Modify parameter settings for this resource" (clock symbol), or the result will be displayed in rounded form.
1.12 ! www 36: You can upload comments and grade information with this resource when uploading CSV files.
1.10 bisitz 37: </span></instructorcomment>
1.11 www 38: $gradeinfo
39: $comment
1.1 www 40: <endouttext />
1.10 bisitz 41:
42: <block condition="0"><numericalresponse id="score" /></block>
43:
1.1 www 44: </problem>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>