Log Message:
-----------
give the style used for the attempt results summary a structural name
(attemptResultsSummary) rather than a sort-of-stylistic name (emphasis).
Modified Files:
--------------
webwork2/lib/WeBWorK/ContentGenerator:
Problem.pm
GatewayQuiz.pm
Revision Data
-------------
Index: GatewayQuiz.pm
===================================================================
RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/GatewayQuiz.pm,v
retrieving revision 1.14
retrieving revision 1.15
diff -Llib/WeBWorK/ContentGenerator/GatewayQuiz.pm -Llib/WeBWorK/ContentGenerator/GatewayQuiz.pm -u -r1.14 -r1.15
--- lib/WeBWorK/ContentGenerator/GatewayQuiz.pm
+++ lib/WeBWorK/ContentGenerator/GatewayQuiz.pm
@@ -330,7 +330,7 @@
CGI::table({-class=>"gwAttemptResults"}, $resultsRows{'Entered'},
$resultsRows{'Preview'}, $resultsRows{'Correct'},
$resultsRows{'Results'}, $resultsRows{'Messages'}) .
- ($showSummary ? CGI::p({class=>'emphasis'},$summary) : "");
+ ($showSummary ? CGI::p({class=>'attemptResultsSummary'},$summary) : "");
# CGI::table({-class=>"attemptResults"}, CGI::Tr(\@tableRows))
# . ($showSummary ? CGI::p({class=>'emphasis'},$summary) : "");
}
Index: Problem.pm
===================================================================
RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/Problem.pm,v
retrieving revision 1.186
retrieving revision 1.187
diff -Llib/WeBWorK/ContentGenerator/Problem.pm -Llib/WeBWorK/ContentGenerator/Problem.pm -u -r1.186 -r1.187
--- lib/WeBWorK/ContentGenerator/Problem.pm
+++ lib/WeBWorK/ContentGenerator/Problem.pm
@@ -303,7 +303,7 @@
}
return
CGI::table({-class=>"attemptResults"}, CGI::Tr(\@tableRows))
- . ($showSummary ? CGI::p({class=>'emphasis'},$summary) : "");
+ . ($showSummary ? CGI::p({class=>'attemptResultsSummary'},$summary) : "");
}
|