--- loncom/interface/lonprintout.pm 2011/06/22 11:00:47 1.595
+++ loncom/interface/lonprintout.pm 2011/09/15 16:02:18 1.598
@@ -2,7 +2,7 @@
# The LearningOnline Network
# Printout
#
-# $Id: lonprintout.pm,v 1.595 2011/06/22 11:00:47 foxr Exp $
+# $Id: lonprintout.pm,v 1.598 2011/09/15 16:02:18 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -123,7 +123,7 @@ sub create_incomplete_folder_selstud_hel
my $format_chooser = &generate_format_selector($helper,
'Format of the print job',
- '','CHOOSE_STUDENTS_INCOMPLETE_FORMAT'); # end state.
+ 'CHOOSE_STUDENTS_INCOMPLETE_FORMAT'); # end state.
return $resource_chooser . $student_chooser . $format_chooser;
}
@@ -172,7 +172,6 @@ sub create_incomplete_course_helper {
my $format = &generate_format_selector($helper,
'Format of the print job',
- '',
'INCOMPLETE_PROBLEMS_COURSE_FORMAT'); # end state.
return $resource_chooser . $people_chooser . $format;
@@ -395,21 +394,25 @@ CHOOSE_ANON1
return $result;
}
+# Returns the XML for choosing how assignments are to be formatted
+# that text must still be parsed by the helper xml parser.
+# Parameters: 3 (required)
+
+# helper - The helper; $helper->{'VARS'}->{'PRINT_TYPE'} used
+# to check if splitting PDFs by section can be offered.
+# title - Title for the current state.
+# this_state - State name of the chooser.
+
sub generate_format_selector {
- my ($helper,$title,$nextstate, $thisstate) = @_;
+ my ($helper,$title,$this_state) = @_;
my $secpdfoption;
- my $state = 'PRINT_FORMATTING';
- if ($thisstate) {
- $state = $thisstate;
- }
unless (($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_anon') ||
($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_anon_page') ||
($helper->{'VARS'}->{'PRINT_TYPE'} eq 'resources_for_anon') ) {
$secpdfoption = 'Each PDF contains exactly one section';
}
return <
- $nextstate
+
How should the results be printed?
Start each student\'s assignment on a new page/column (add a pagefeed after each assignment)
@@ -2928,17 +2931,24 @@ ENDPART
my $code_option=$helper->{'VARS'}->{'CODE_OPTION'};
my @lines = &Apache::grades::get_scantronformat_file();
- my ($code_type,$code_length)=('letter',6);
+ my ($code_type,$code_length,$bubbles_per_row)=('letter',6,10);
foreach my $line (@lines) {
- my ($name,$type,$length) = (split(/:/,$line))[0,2,4];
+ chomp($line);
+ my ($name,$type,$length,$bubbles_per_item) =
+ (split(/:/,$line))[0,2,4,17];
if ($name eq $code_option) {
$code_length=$length;
if ($type eq 'number') { $code_type = 'number'; }
+ chomp($bubbles_per_item);
+ if (($bubbles_per_item ne '') && ($bubbles_per_item > 0)) {
+ $bubbles_per_row = $bubbles_per_item;
+ }
}
}
my %moreenv = ('textwidth' => &get_textwidth($helper,$LaTeXwidth));
$moreenv{'problem_split'} = $parmhash{'problem_stream_switch'};
$moreenv{'instructor_comments'}='hide';
+ $moreenv{'bubbles_per_row'} = $bubbles_per_row;
my $seed=time+($$<<16)+($$);
my @allcodes;
if ($old_name) {
@@ -3265,7 +3275,7 @@ sub print_resources {
($print_type eq 'incomplete_problems_selpeople_course')) {
$print_incomplete = 1;
}
- if ($person =~ 'anon') {
+ if ($person eq 'anonymous') {
$namepostfix .="Name: ";
$fullname = "CODE - ".$moreenv->{'CODE'};
}
@@ -3986,14 +3996,9 @@ ALL_PROBLEMS
$map,
$isProblem, '', $symbFilter,
$start_new_option);
- my $secpdfoption;
- unless (($helper->{'VARS'} eq 'problems_for_anon') ||
- ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_anon_page') ||
- ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'resources_for_anon') ) {
- $secpdfoption = 'Each PDF contains exactly one section';
- }
$resource_selector .= &generate_format_selector($helper,
- 'How should results be printed?').
+ 'How should results be printed?',
+ 'PRINT_FORMATTING').
&generate_resource_chooser('CHOOSE_STUDENTS_PAGE',
'Select Problem(s) to print',
"multichoice='1' addstatus='1' closeallpages ='1'",
@@ -4127,10 +4132,9 @@ ALL_PROBLEMS
RESOURCE_SELECTOR
- my $nextstate = 'NUMBER_PER_PDF';
$resource_selector .= &generate_format_selector($helper,
'Format of the print job',
- $nextstate);
+ 'PRINT_FORMATTING');
&Apache::lonxml::xmlparse($r, 'helper', <