[LON-CAPA-cvs] cvs: loncom /homework structuretags.pm
sakharuk
lon-capa-cvs@mail.lon-capa.org
Wed, 02 Apr 2003 19:52:05 -0000
sakharuk Wed Apr 2 14:52:05 2003 EDT
Modified files:
/loncom/homework structuretags.pm
Log:
Some changes to implement on-line exam mode.
Index: loncom/homework/structuretags.pm
diff -u loncom/homework/structuretags.pm:1.156 loncom/homework/structuretags.pm:1.157
--- loncom/homework/structuretags.pm:1.156 Fri Mar 14 18:23:45 2003
+++ loncom/homework/structuretags.pm Wed Apr 2 14:52:05 2003
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# definition of tags that give a structure to a document
#
-# $Id: structuretags.pm,v 1.156 2003/03/14 23:23:45 albertel Exp $
+# $Id: structuretags.pm,v 1.157 2003/04/02 19:52:05 sakharuk Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -337,8 +337,13 @@
my $name= &get_resource_name($parstack,$safeeval);
if ($status eq 'CAN_ANSWER') {
# create a page header and exit
+ my $WeightOfProblem = '';
+ if ($Apache::lonhomework::type eq 'exam') {
+ my $weight = &Apache::lonnet::EXT("resource.$Apache::inputtags::part.weight");
+ $WeightOfProblem = "<table border=1><tr><td><i>$weight pt</i></td></tr></table>";
+ }
$result.="$head_tag_start<title>$name</title></head>
- $body_tag_start \n $form_tag_start".
+ $body_tag_start \n $form_tag_start $WeightOfProblem".
'<input type="hidden" name="submitted" value="yes" />';
if ($ENV{'request.state'} eq "construct") {
$result.= &problem_web_to_edit_header($rndseed);
@@ -435,7 +440,7 @@
# if part is zero, no <part>s existed, so we need show the current
# grading status
my $gradestatus = &Apache::inputtags::gradestatus($Apache::inputtags::part,$target);
- if ($Apache::lonhomework::type ne 'exam') {$result.= $gradestatus;}
+ $result.= $gradestatus;
}
if (
(($target eq 'web') && ($ENV{'request.state'} ne 'construct')) ||