[LON-CAPA-cvs] cvs: loncom /interface lonprintout.pm
bisitz
lon-capa-cvs-allow@mail.lon-capa.org
Tue, 04 Nov 2008 14:13:17 -0000
bisitz Tue Nov 4 14:13:17 2008 EDT
Modified files:
/loncom/interface lonprintout.pm
Log:
Finshed changes to use pick_box style for print options (part 2, -> lonprintout.pm 1.544)
Index: loncom/interface/lonprintout.pm
diff -u loncom/interface/lonprintout.pm:1.544 loncom/interface/lonprintout.pm:1.545
--- loncom/interface/lonprintout.pm:1.544 Fri Oct 31 18:02:33 2008
+++ loncom/interface/lonprintout.pm Tue Nov 4 14:13:16 2008
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Printout
#
-# $Id: lonprintout.pm,v 1.544 2008/10/31 18:02:33 bisitz Exp $
+# $Id: lonprintout.pm,v 1.545 2008/11/04 14:13:16 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -3222,10 +3222,12 @@
&addMessage(&Apache::lonhtmlcommon::row_closure());
if (not $helper->{VARS}->{'construction'}) {
- addMessage("<tr><td align='right'>".
- '<label for="TABLE_INDEX_forminput">'.
- &mt('Print Index').
- "</label>: </td><td>");
+ &addMessage(&Apache::lonhtmlcommon::row_title(
+ '<label for="TABLE_INDEX_forminput">'
+ .&mt('Print Index')
+ .'</label>'
+ )
+ );
$paramHash = Apache::lonhelper::getParamHash();
$paramHash->{'variable'} = 'TABLE_INDEX';
$helper->declareVar('TABLE_INDEX');
@@ -3233,11 +3235,13 @@
['No', 'no'],
['Yes', 'yes'] ];
Apache::lonhelper::dropdown->new();
- addMessage("</td></tr>");
- addMessage("<tr><td align='right'>".
- '<label for="PRINT_DISCUSSIONS_forminput">'.
- &mt('Print Discussions').
- "</label>: </td><td>");
+ &addMessage(&Apache::lonhtmlcommon::row_closure());
+ &addMessage(&Apache::lonhtmlcommon::row_title(
+ '<label for="PRINT_DISCUSSIONS_forminput">'
+ .&mt('Print Discussions')
+ .'</label>'
+ )
+ );
$paramHash = Apache::lonhelper::getParamHash();
$paramHash->{'variable'} = 'PRINT_DISCUSSIONS';
$helper->declareVar('PRINT_DISCUSSIONS');
@@ -3245,14 +3249,16 @@
['No', 'no'],
['Yes', 'yes'] ];
Apache::lonhelper::dropdown->new();
- addMessage("</td></tr>");
+ &addMessage(&Apache::lonhtmlcommon::row_closure());
# Prompt for printing annotations too.
- addMessage("<tr><td align='right'>".
- '<label for="PRINT_ANNOTATIONS_forminput">'.
- &mt('Print Annotations').
- "</label>:</td><td>");
+ &addMessage(&Apache::lonhtmlcommon::row_title(
+ '<label for="PRINT_ANNOTATIONS_forminput">'
+ .&mt('Print Annotations')
+ .'</label>'
+ )
+ );
$paramHash = Apache::lonhelper::getParamHash();
$paramHash->{'variable'} = "PRINT_ANNOTATIONS";
$helper->declareVar("PRINT_ANNOTATIONS");
@@ -3260,16 +3266,16 @@
['No', 'no'],
['Yes', 'yes']];
Apache::lonhelper::dropdown->new();
- addMessage("</td></tr>");
+ &addMessage(&Apache::lonhtmlcommon::row_closure());
- addMessage("<tr><td align = 'right'> </td><td>");
+ &addMessage(&Apache::lonhtmlcommon::row_title(&mt('Foils')));
$paramHash = Apache::lonhelper::getParamHash();
$paramHash->{'multichoice'} = "true";
$paramHash->{'allowempty'} = "true";
$paramHash->{'variable'} = "showallfoils";
$paramHash->{'CHOICES'} = [ ["Show all foils", "1"] ];
Apache::lonhelper::choices->new();
- addMessage("</td></tr>");
+ &addMessage(&Apache::lonhtmlcommon::row_closure(1));
}
if ($helper->{'VARS'}->{'construction'}) {