version 1.141, 2003/05/02 13:39:04
|
version 1.164, 2003/05/13 15:28:32
|
Line 1349 ENDPART
|
Line 1349 ENDPART
|
$laystyle='book'; |
$laystyle='book'; |
} |
} |
my ($textwidth,$textheight,$oddoffset,$evenoffset) = &page_format_new($papersize,$laystyle,$numberofcolumns); |
my ($textwidth,$textheight,$oddoffset,$evenoffset) = &page_format_new($papersize,$laystyle,$numberofcolumns); |
|
|
|
|
|
|
|
|
# my $choice = $ENV{'form.choice'}; |
|
# my $layout = $ENV{'form.layout'}; |
|
# my $numberofcolumns = $ENV{'form.numberofcolumns'}; |
|
# my $papersize = $ENV{'form.papersize'}; |
|
# my $laystyle = 'book'; |
|
my $assignment = $ENV{'form.assignment'}; |
my $assignment = $ENV{'form.assignment'}; |
# if ($choice eq 'Subdirectory print') { |
|
# if ($ENV{'form.layout'} eq '') {$layout = 'CAPA';} |
|
# if ($ENV{'form.papersize'} eq '') {$papersize = 'Letter [8 1/2x11 in]';} |
|
# if ($ENV{'form.numberofcolumns'} eq '') {$numberofcolumns = 2;} |
|
# } |
|
# if (($choice eq 'Standard LaTeX output for current document') && |
|
# ($ENV{'form.url'}=~m|^/~|)) { |
|
# if ($ENV{'form.layout'} eq '') {$layout = 'CAPA';} |
|
# if ($ENV{'form.papersize'} eq '') {$papersize = 'Letter [8 1/2x11 in]';} |
|
# if ($ENV{'form.numberofcolumns'} eq '') {$numberofcolumns = 2;} |
|
# } |
|
|
|
|
|
# my ($textwidth,$textheight,$oddoffset,$evenoffset) = &page_format($papersize,$layout,$numberofcolumns); |
|
# if ($numberofcolumns == 1) { |
|
# $textwidth=$ENV{'form.width'}; |
|
# $textheight=$ENV{'form.height'}; |
|
# } |
|
my $LaTeXwidth; |
my $LaTeXwidth; |
if ($textwidth=~/(\d+)\s*cm/) { |
if ($textwidth=~/(\d+)\s*cm/) { |
$LaTeXwidth = $1*10; |
$LaTeXwidth = $1*10; |
Line 1386 ENDPART
|
Line 1359 ENDPART
|
$LaTeXwidth = $1*25.4; |
$LaTeXwidth = $1*25.4; |
} |
} |
$LaTeXwidth.=' mm'; |
$LaTeXwidth.=' mm'; |
|
|
|
|
if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'current_document') { |
if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'current_document') { |
#-- single document - problem, page, html, xml, ... |
#-- single document - problem, page, html, xml, ... |
|
my $currentURL; |
|
if ($helper->{'VARS'}->{'construction'} ne '1') { |
|
#prins published resource |
|
$currentURL=$helper->{'VARS'}->{'postdata'}; |
|
} else { |
|
#prins resource from the construction space |
|
$currentURL=$helper->{'VARS'}->{'filename'}; |
|
$currentURL=~s/\/home\//\/~/; |
|
$currentURL=~s/public_html\///; |
|
} |
$selectionmade = 1; |
$selectionmade = 1; |
if ($helper->{'VARS'}->{'url'}=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)$/) { |
if ($currentURL=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)$/) { |
my %moreenv; |
my %moreenv; |
$moreenv{'form.grade_target'}='tex'; |
$moreenv{'form.grade_target'}='tex'; |
if (&Apache::lonnet::allowed('bre',$helper->{'VARS'}->{'url'})) { |
$moreenv{'request.filename'}=$currentURL; |
$helper->{'VARS'}->{'url'}=~s/http:\/\/[^\/]+//; |
$moreenv{'form.textwidth'}=$LaTeXwidth; |
} |
&Apache::lonnet::appenv(%moreenv); |
$moreenv{'request.filename'}=$helper->{'VARS'}->{'url'}; |
my $texversion=&Apache::lonnet::ssi($currentURL); |
$moreenv{'form.textwidth'}=$LaTeXwidth; |
&Apache::lonnet::delenv('form.grade_target','form.textwidth','form.counter'); |
&Apache::lonnet::appenv(%moreenv); |
if($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') { |
my $texversion=&Apache::lonnet::ssi($helper->{'VARS'}->{'url'}); |
$moreenv{'form.grade_target'}='answer'; |
&Apache::lonnet::delenv('form.grade_target','form.textwidth','form.counter'); |
$moreenv{'form.print_answer'}='yes'; |
$result .= $texversion; |
&Apache::lonnet::appenv(%moreenv); |
if ($helper->{'VARS'}->{'url'}=~m/\.page\s*$/) { |
my $answer=&Apache::lonnet::ssi($currentURL); |
($result,$number_of_columns) = &page_cleanup($result); |
&Apache::lonnet::delenv('form.grade_target','form.print_answer'); |
} |
my $start=index($answer,'\vskip 0 mm',0); |
} else { |
my $finish=rindex $answer,'\vskip 0 mm' ; |
|
if ($start!=-1 && $finish!=-1) {$answer=substr($answer,$start,$finish-$start+12);} |
|
# $r->print('<pre>'.$answer.'</pre>'); return OK; |
|
$texversion=~s/(\\end{document})/$answer$1/; |
|
} |
|
$result .= $texversion; |
|
if ($currentURL=~m/\.page\s*$/) { |
|
($result,$number_of_columns) = &page_cleanup($result); |
|
} |
|
} else { |
# $result='\documentclass[letterpaper]{article}\usepackage{calc}\begin{document}Printout of this type of document is currently not supported: '; |
# $result='\documentclass[letterpaper]{article}\usepackage{calc}\begin{document}Printout of this type of document is currently not supported: '; |
# if ($ENV{'form.url'}=~/\/(aboutme|syllabus|bulletinboard|smppg)$/) { |
# if ($ENV{'form.url'}=~/\/(aboutme|syllabus|bulletinboard|smppg)$/) { |
# $result.=$1; |
# $result.=$1; |
Line 1414 ENDPART
|
Line 1405 ENDPART
|
# $result.=$ENV{'form.url'}; |
# $result.=$ENV{'form.url'}; |
# } |
# } |
# $result.=' \end{document}' |
# $result.=' \end{document}' |
} |
} |
|
} elsif (($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems') or |
|
($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems_pages') or |
} elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems') { |
($helper->{'VARS'}->{'PRINT_TYPE'} eq 'all_problems')) { |
#-- produce an output string |
#-- produce an output string |
my $flag_latex_header_remove = 'NO'; |
my $flag_latex_header_remove = 'NO'; |
my $flag_page_in_sequence = 'NO'; |
my $flag_page_in_sequence = 'NO'; |
my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'}; |
my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'}; |
|
|
# foreach my $key (@master_seq) { |
|
# $r->print(' '.$key.'<br />'); |
|
# } |
|
# return OK; |
|
|
|
for (my $i=0;$i<=$#master_seq;$i++) { |
for (my $i=0;$i<=$#master_seq;$i++) { |
$master_seq[$i]=~/___\d+___(.*)$/; |
$master_seq[$i]=~/___\d+___(.*)$/; |
my $urlp='/res/'.$1; |
my $urlp='/res/'.$1; |
if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems') { |
if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems') { |
$selectionmade = 2; |
$selectionmade = 2; |
# } elsif ($choice eq 'Standard LaTeX output for whole primary sequence') { |
} elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems_pages') { |
# $selectionmade = 3; |
$selectionmade = 3; |
|
} elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'all_problems') { |
|
$selectionmade = 4; |
} |
} |
my %moreenv; |
my %moreenv; |
$moreenv{'form.grade_target'}='tex'; |
$moreenv{'form.grade_target'}='tex'; |
Line 1460 ENDPART
|
Line 1447 ENDPART
|
&Apache::lonnet::delenv('form.counter'); |
&Apache::lonnet::delenv('form.counter'); |
if ($flag_page_in_sequence eq 'YES') {$result =~ s/\\usepackage{calc}/\\usepackage{calc}\\usepackage{longtable}/;} |
if ($flag_page_in_sequence eq 'YES') {$result =~ s/\\usepackage{calc}/\\usepackage{calc}\\usepackage{longtable}/;} |
$result .= '\end{document}'; |
$result .= '\end{document}'; |
# } elsif ($choice eq 'Standard LaTeX output for the top level sequence') { |
} elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_students') { |
# # where is the main sequence of the course? |
#-- prints assignments for whole class or for selected students |
# $selectionmade = 4; |
$selectionmade=5; |
# my $main_seq=&Apache::lonnet::clutter($ENV{'request.course.uri'}); |
my @students=split /\|\|\|/, $helper->{'VARS'}->{'STUDENTS'}; |
# my @file_seq = &coming_from_hash($main_seq); |
my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'}; |
# for (my $i=0;$i<=$#file_seq;$i++) { |
#loop over students |
# my ($path,$title,$symb) = split /&&/,$file_seq[$i]; |
my $flag_latex_header_remove = 'NO'; |
# $file_seq[$i] = $path.'&&'.$symb; |
my %moreenv; |
# } |
$moreenv{'form.textwidth'}=$LaTeXwidth; |
# my $flag_latex_header_remove = 'NO'; |
&Apache::lonnet::appenv(%moreenv); |
# #-- produce an output string |
my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Print Status','Class Print Status',$#students+1); |
# for (my $i=0;$i<=$#file_seq;$i++) { |
foreach my $person (@students) { |
# if (not $file_seq[$i]=~/^&&/) { |
my $current_output = ''; |
# my ($urlp,$symb) = split /&&/, $file_seq[$i]; |
|
# $urlp=~s/\/home\/httpd\/html//; |
|
# if ($urlp=~m/\.(problem|exam|quiz|assess|survey|form|library)/) { |
|
# my %moreenv; |
|
# $moreenv{'form.grade_target'}='tex'; |
|
# $moreenv{'form.textwidth'}=$LaTeXwidth; |
|
# &Apache::lonnet::appenv(%moreenv); |
|
# my $texversion=&Apache::lonnet::ssi($urlp,('symb'=>$symb)); |
|
# &Apache::lonnet::delenv('form.grade_target','form.textwidth'); |
|
# if ($flag_latex_header_remove ne 'NO') { |
|
# $texversion = &latex_header_footer_remove($texversion); |
|
# } else { |
|
# $texversion =~ s/\\end{document}//; |
|
# } |
|
# $result .= $texversion; |
|
# $flag_latex_header_remove = 'YES'; |
|
# } |
|
# } |
|
# } |
|
# $result .= '\end{document}'; |
|
# } elsif ($choice eq 'All class print') { |
|
# #-- prints assignments for whole class or for selected students |
|
# $selectionmade = 5; |
|
# my @students = (); |
|
# for (my $i=0; $i<$ENV{'form.numberofstudents'};$i++) { |
|
# if ($ENV{'form.whomtoprint'.$i}=~/:/) { |
|
# push @students,$ENV{'form.whomtoprint'.$i}; |
|
# } |
|
# } |
|
# #where is the primary sequence containing current resource (the same for all students)? |
|
# my $symbolic = &Apache::lonnet::symbread($ENV{'form.url'}); |
|
# my @sequence = split('___',$symbolic); |
|
# my $primary_sequence; |
|
# |
|
# $primary_sequence=&Apache::lonnet::clutter($sequence[0]); |
|
# my @master_seq = &coming_from_hash($primary_sequence); |
|
# for (my $i=0;$i<=$#master_seq;$i++) { |
|
# my ($path,$title,$symb) = split /&&/,$master_seq[$i]; |
|
# $master_seq[$i] = $path.'&&'.$symb; |
|
# } |
|
# #loop over students |
|
# my $flag_latex_header_remove = 'NO'; |
|
# my %moreenv; |
|
# $moreenv{'form.textwidth'}=$LaTeXwidth; |
|
# &Apache::lonnet::appenv(%moreenv); |
|
# my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Print Status','Class Print Status',$#students+1); |
|
# foreach my $person (@students) { |
|
# my $current_output = ''; |
|
# my ($usersection,$username,$userdomain) = split /:/,$person; |
# my ($usersection,$username,$userdomain) = split /:/,$person; |
# my $fullname = &get_name($username,$userdomain); |
my ($username,$userdomain) = split /:/,$person; |
# #goes through all resources, checks if they are available for current student, and produces output |
my $fullname = &get_name($username,$userdomain); |
# foreach my $curresline (@master_seq) { |
#goes through all resources, checks if they are available for current student, and produces output |
# my ($curres,$symb) = split /&&/, $curresline; |
foreach my $curresline (@master_seq) { |
# if ($curres=~ m/\.(problem|exam|quiz|assess|survey|form|library)/) { |
if ($curresline=~ m/\.(problem|exam|quiz|assess|survey|form|library)$/) { |
# my ($map,$id,$res_url) = split(/___/,$symb); |
my ($map,$id,$res_url) = split(/___/,$curresline); |
# if (&Apache::lonnet::allowed('bre',$res_url)) { |
if (&Apache::lonnet::allowed('bre',$res_url)) { |
# my $rendered = &Apache::loncommon::get_student_view($symb,$username,$userdomain, |
my $rendered = &Apache::loncommon::get_student_view($curresline,$username,$userdomain, |
# $ENV{'request.course.id'},'tex'); |
$ENV{'request.course.id'},'tex'); |
# if ($flag_latex_header_remove eq 'YES') { |
if ($flag_latex_header_remove eq 'YES') { |
# $rendered = &latex_header_footer_remove($rendered); |
$rendered = &latex_header_footer_remove($rendered); |
# } else { |
} else { |
# $rendered =~ s/\\end{document}//; |
$rendered =~ s/\\end{document}//; |
# } |
} |
# $current_output .= $rendered; |
$current_output .= $rendered; |
# } |
} |
# $flag_latex_header_remove = 'YES'; |
$flag_latex_header_remove = 'YES'; |
# } |
} |
# } |
} |
# my $courseidinfo = $ENV{'course.'.$ENV{'request.course.id'}.'.description'}; |
my $courseidinfo = $ENV{'course.'.$ENV{'request.course.id'}.'.description'}; |
# if ($current_output=~/\\documentclass/) { |
if ($current_output=~/\\documentclass/) { |
# $current_output =~ s/\\begin{document}/\\setlength{\\topmargin}{1cm}\\usepackage{fancyhdr}\\pagestyle{fancy}\\rhead{}\\chead{} \\begin{document}\\noindent\\lhead{\\textit{\\textbf{$fullname}} - $courseidinfo \\hfill \\thepage \\\\ \\textit{$assignment}}\\vskip 3 mm /; |
$current_output =~ s/\\begin{document}/\\setlength{\\topmargin}{1cm}\\usepackage{fancyhdr}\\pagestyle{fancy}\\rhead{}\\chead{} \\begin{document}\\noindent\\lhead{\\textit{\\textbf{$fullname}} - $courseidinfo \\hfill \\thepage \\\\ \\textit{$assignment}}\\vskip 3 mm /; |
# } else { |
} else { |
# my $blanspages = ''; |
my $blanspages = ''; |
# for (my $j=0;$j<$ENV{'form.addedpages'};$j++) {$blanspages.='\clearpage\strut\clearpage';} |
for (my $j=0;$j<$helper->{'VARS'}->{'EMPTY_PAGES'};$j++) {$blanspages.='\clearpage\strut\clearpage';} |
# $current_output = '\strut\\newline\\noindent\\makebox[\\textwidth/$number_of_columns][b]{\\hrulefill}\\newline\\noindent{\\tiny Printed from LON-CAPA\\copyright MSU{\\hfill} Licensed under GNU General Public License }\\newpage \\vskip 3mm'.$blanspages.'\setcounter{page}{1}\noindent\parbox{\minipagewidth}{\noindent\\lhead{\\textit{\\textbf{'.$fullname.'}} - '.$courseidinfo.' \\hfill \\thepage \\\\ \\textit{'.$assignment.'}}\hskip 1.4in } \vskip 5 mm '.$current_output; |
$current_output = '\strut\\newline\\noindent\\makebox[\\textwidth/$number_of_columns][b]{\\hrulefill}\\newline\\noindent{\\tiny Printed from LON-CAPA\\copyright MSU{\\hfill} Licensed under GNU General Public License }\\newpage \\vskip 3mm'.$blanspages.'\setcounter{page}{1}\noindent\parbox{\minipagewidth}{\noindent\\lhead{\\textit{\\textbf{'.$fullname.'}} - '.$courseidinfo.' \\hfill \\thepage \\\\ \\textit{'.$assignment.'}}\hskip 1.4in } \vskip 5 mm '.$current_output; |
# } |
} |
# $result .= $current_output; |
$result .= $current_output; |
# &Apache::lonnet::delenv('form.counter'); |
&Apache::lonnet::delenv('form.counter'); |
# &Apache::lonxml::init_counter(); |
&Apache::lonxml::init_counter(); |
# &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state, |
&Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state, |
# 'last student '.$fullname); |
'last student '.$fullname); |
# } |
} |
# &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); |
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); |
# $result .= '\end{document}'; |
$result .= '\end{document}'; |
# &Apache::lonnet::delenv('form.textwidth'); |
&Apache::lonnet::delenv('form.textwidth'); |
# } elsif ($choice eq 'Subdirectory print') { |
} elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_from_directory') { |
# #prints selected problems from the subdirectory |
#prints selected problems from the subdirectory |
# $selectionmade = 6; |
$selectionmade = 6; |
# my @list_of_files = (); |
my @list_of_files=split /\|\|\|/, $helper->{'VARS'}->{'FILES'}; |
# for (my $i=0; $i<$ENV{'form.numberofproblems'};$i++) { |
@list_of_files=sort @list_of_files; |
# if ($ENV{'form.whattoprint'.$i}=~/^\//) { |
my $flag_latex_header_remove = 'NO'; |
# push @list_of_files,$ENV{'form.whattoprint'.$i}; |
for (my $i=0;$i<=$#list_of_files;$i++) { |
# } |
my $urlp = $list_of_files[$i]; |
# } |
if ($urlp=~/\//) { |
# my $flag_latex_header_remove = 'NO'; |
my %moreenv; |
# for (my $i=0;$i<=$#list_of_files;$i++) { |
$moreenv{'form.grade_target'}='tex'; |
# my $urlp = $list_of_files[$i]; |
$moreenv{'form.textwidth'}=$LaTeXwidth; |
# if ($urlp=~/\//) { |
&Apache::lonnet::appenv(%moreenv); |
# my %moreenv; |
if ($urlp =~ m|/home/([^/]+)/public_html|) { |
# $moreenv{'form.grade_target'}='tex'; |
$urlp =~ s|/home/([^/]*)/public_html|/~$1|; |
# $moreenv{'form.textwidth'}=$LaTeXwidth; |
} else { |
# &Apache::lonnet::appenv(%moreenv); |
$urlp =~ s|^/home/httpd/html||; |
# if ($urlp =~ m|/home/([^/]+)/public_html|) { |
} |
# $urlp =~ s|/home/([^/]*)/public_html|/~$1|; |
my $texversion=&Apache::lonnet::ssi($urlp); |
# } else { |
&Apache::lonnet::delenv('form.grade_target','form.textwidth'); |
# $urlp =~ s|^/home/httpd/html||; |
#this chunck is responsible for printing the path to problem |
# } |
my $newurlp = ''; |
# my $texversion=&Apache::lonnet::ssi($urlp); |
my $HowMany = length($urlp)*2; |
# &Apache::lonnet::delenv('form.grade_target','form.textwidth'); |
if ($HowMany > $LaTeXwidth) { |
# #this chunck is responsible for printing the path to problem |
my @temporrary = split '/',$urlp; |
# my $newurlp = ''; |
my $HowManyNew = 0; |
# my $HowMany = length($urlp)*2; |
for (my $ii=0;$ii<=$#temporrary;$ii++) { |
# if ($HowMany > $LaTeXwidth) { |
if ($temporrary[$ii] ne '') { |
# my @temporrary = split '/',$urlp; |
$HowManyNew += length($temporrary[$ii])*2; |
# my $HowManyNew = 0; |
if ($HowManyNew < $LaTeXwidth ) { |
# for (my $ii=0;$ii<=$#temporrary;$ii++) { |
$newurlp .= '/'.$temporrary[$ii]; |
# if ($temporrary[$ii] ne '') { |
} else { |
# $HowManyNew += length($temporrary[$ii])*2; |
$HowManyNew = 0; |
# if ($HowManyNew < $LaTeXwidth ) { |
$newurlp .= '|\vskip -1 mm \noindent \verb|'; |
# $newurlp .= '/'.$temporrary[$ii]; |
$ii--; |
# } else { |
} |
# $HowManyNew = 0; |
} |
# $newurlp .= '|\vskip -1 mm \noindent \verb|'; |
} |
# $ii--; |
} |
# } |
$texversion =~ s/(\\begin{minipage}{\\textwidth})/$1 {\\small\\noindent\\verb|$newurlp\|\\vskip 0 mm}/; |
# } |
if ($flag_latex_header_remove ne 'NO') { |
# } |
$texversion = &latex_header_footer_remove($texversion); |
# } |
} else { |
# $texversion =~ s/(\\begin{minipage}{\\textwidth})/$1 {\\small\\noindent\\verb|$newurlp\|\\vskip 0 mm}/; |
$texversion =~ s/\\end{document}//; |
# if ($flag_latex_header_remove ne 'NO') { |
} |
# $texversion = &latex_header_footer_remove($texversion); |
$result .= $texversion; |
# } else { |
} |
# $texversion =~ s/\\end{document}//; |
$flag_latex_header_remove = 'YES'; |
# } |
} |
# $result .= $texversion; |
$result .= '\end{document}'; |
# } |
|
# $flag_latex_header_remove = 'YES'; |
|
# } |
|
# $result .= '\end{document}'; |
|
} |
} |
#-------------------------------------------------------- corrections for the different page formats |
#-------------------------------------------------------- corrections for the different page formats |
$result = &page_format_transformation_new($papersize,$laystyle,$numberofcolumns,$helper->{'VARS'}->{'PRINT_TYPE'},$result,$helper->{VARS}->{'assignment'}); |
$result = &page_format_transformation_new($papersize,$laystyle,$numberofcolumns,$helper->{'VARS'}->{'PRINT_TYPE'},$result,$helper->{VARS}->{'assignment'}); |
Line 1635 ENDPART
|
Line 1570 ENDPART
|
} |
} |
print $temp_file $result; |
print $temp_file $result; |
|
|
|
#<meta http-equiv="Refresh" content="0; url=/cgi-bin/printout.pl?$filename&$laystyle&$numberofcolumns&$selectionmade"> |
$r->print(<<FINALEND); |
$r->print(<<FINALEND); |
<meta http-equiv="Refresh" content="0; url=/cgi-bin/printout.pl?$filename&$laystyle&$numberofcolumns&$selectionmade"> |
<meta http-equiv="Refresh" content="0; url=/cgi-bin/printout.pl?$filename&$laystyle&$numberofcolumns&$selectionmade"> |
</body> |
</body> |
Line 1657 sub handler {
|
Line 1592 sub handler {
|
return $result; |
return $result; |
} |
} |
$helper = $result; |
$helper = $result; |
|
|
|
|
|
|
my $key; |
my $key; |
# foreach $key (keys %{$helper->{'VARS'}}) { |
foreach $key (keys %{$helper->{'VARS'}}) { |
# $r->print(' '.$key.'->'.$helper->{'VARS'}->{$key}.'<br />'); |
$r->print(' '.$key.'->'.$helper->{'VARS'}->{$key}.'<-<br />'); |
# } |
} |
# return OK; |
# return OK; |
|
|
|
|
Line 1675 sub handler {
|
Line 1611 sub handler {
|
|
|
return OK; |
return OK; |
} |
} |
my $loaderror=&Apache::lonnet::overloaderror($r); |
# my $loaderror=&Apache::lonnet::overloaderror($r); |
if ($loaderror) { return $loaderror; } |
# if ($loaderror) { return $loaderror; } |
$loaderror= |
# $loaderror= |
&Apache::lonnet::overloaderror($r, |
# &Apache::lonnet::overloaderror($r, |
$ENV{'course.'.$ENV{'request.course.id'}.'.home'}); |
# $ENV{'course.'.$ENV{'request.course.id'}.'.home'}); |
if ($loaderror) { return $loaderror; } |
# if ($loaderror) { return $loaderror; } |
|
|
$r->content_type('text/html'); |
$r->content_type('text/html'); |
$r->send_http_header; |
$r->send_http_header; |
Line 1764 sub printHelper {
|
Line 1700 sub printHelper {
|
Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING}); |
Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING}); |
|
|
my $helper = Apache::lonhelper::helper->new("Printing Wizard"); |
my $helper = Apache::lonhelper::helper->new("Printing Wizard"); |
|
$helper->declareVar('symb'); |
|
$helper->declareVar('postdata'); |
|
$helper->declareVar('filename'); |
|
$helper->declareVar('construction'); |
|
|
# This will persistently load in the data we want from the |
# This will persistently load in the data we want from the |
# very first screen. |
# very first screen. |
if (defined($ENV{'form.postdata'})) { |
# Detect whether we're coming from construction space |
$helper->{VARS}->{'postdata'} = $ENV{'form.postdata'}; |
if ($ENV{'form.postdata'} =~ /http:\/\// ) { |
} |
$ENV{'form.postdata'} =~ /http:\/\/[a-zA-Z.]+\/~([a-zA-Z0-9]+)\/(.*)/; |
if (defined($ENV{'form.symb'})) { |
$helper->{VARS}->{'filename'} = "/home/$1/public_html/$2"; |
$helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'}); |
$helper->{VARS}->{'construction'} = 1; |
|
} else { |
|
if ($ENV{'form.postdata'}) { |
|
$helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($ENV{'form.postdata'}); |
|
} |
|
if ($ENV{'form.symb'}) { |
|
$helper->{VARS}->{'symb'} = $ENV{'form.symb'}; |
|
} |
|
if ($ENV{'form.url'}) { |
|
$helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'}); |
|
} |
} |
} |
if (defined($ENV{'form.url'})) { |
|
$helper->{VARS}->{'url'} = $helper->{VARS}->{'postdata'}; |
if ($ENV{'form.symb'}) { |
|
$helper->{VARS}->{'symb'} = $ENV{'form.symb'}; |
} |
} |
|
if ($ENV{'form.url'}) { |
|
$helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'}); |
|
|
|
} |
|
|
my ($resourceTitle,$sequenceTitle,$mapTitle) = &details_for_menu; |
my ($resourceTitle,$sequenceTitle,$mapTitle) = &details_for_menu; |
$helper->{VARS}->{'assignment'} = $sequenceTitle; |
$helper->{VARS}->{'assignment'} = $sequenceTitle; |
|
|
if (!$resourceTitle) { # if the resource doesn't have a title, use the filename |
|
my $url = $helper->{VARS}->{'postdata'}; |
|
$resourceTitle = substr($url, rindex($url, '/') + 1); |
|
} |
|
|
|
Apache::lonhelper::registerHelperTags(); |
|
|
|
# Extract map |
# Extract map |
my $symb = $helper->{VARS}->{'symb'}; |
my $symb = $helper->{VARS}->{'symb'}; |
my ($map, $id, $url) = split(/__/, $symb); |
my ($map, $id, $url); |
|
my $subdir; |
|
|
|
# Get the resource name from construction space |
|
if ($helper->{VARS}->{'construction'}) { |
|
$resourceTitle = substr($helper->{VARS}->{'filename'}, |
|
rindex($helper->{VARS}->{'filename'}, '/')+1); |
|
$subdir = substr($helper->{VARS}->{'filename'}, |
|
0, rindex($helper->{VARS}->{'filename'}, '/') + 1); |
|
} else { |
|
($map, $id, $url) = split(/___/, $symb); |
|
$helper->{VARS}->{'postdata'} = Apache::lonnet::clutter($url); |
|
|
my $subdir = &Apache::lonnet::filelocation("", $helper->{VARS}->{'postdata'}); |
if (!$resourceTitle) { # if the resource doesn't have a title, use the filename |
|
my $url = $helper->{VARS}->{'postdata'}; |
|
$resourceTitle = substr($url, rindex($url, '/') + 1); |
|
} |
|
$subdir = &Apache::lonnet::filelocation("", $url); |
|
} |
|
|
|
Apache::lonhelper::registerHelperTags(); |
|
|
# "Delete everything after the last slash." |
# "Delete everything after the last slash." |
$subdir =~ s|/[^/]+$||; |
$subdir =~ s|/[^/]+$||; |
|
if (not $helper->{VARS}->{'construction'}) { |
|
$subdir='/home/httpd/html/res/'.$subdir; |
|
} |
|
|
|
|
# What can be printed is a very dynamic decision based on |
# What can be printed is a very dynamic decision based on |
# lots of factors. So we need to dynamically build this list. |
# lots of factors. So we need to dynamically build this list. |
Line 1809 sub printHelper {
|
Line 1780 sub printHelper {
|
# the helper by hand. |
# the helper by hand. |
my $printChoices = []; |
my $printChoices = []; |
my $paramHash; |
my $paramHash; |
# We can always print the current screen. |
|
|
|
push @{$printChoices}, ["<b>$resourceTitle</b> (exactly what was on the screen)", 'current_document', 'FINAL']; |
if ($resourceTitle) { |
|
push @{$printChoices}, ["<b>$resourceTitle</b> (prints what you just saw on the screen)", 'current_document', 'PAGESIZE']; |
|
} |
|
|
|
$r->print($helper->{VARS}->{'postdata'}); |
|
|
# If we're in a sequence... |
# If we're in a sequence... |
if ($helper->{VARS}->{'postdata'} =~ /\/res\//) { |
if ($helper->{'VARS'}->{'construction'} ne '1') { |
# Allow problems from sequence |
# Allow problems from sequence |
push @{$printChoices}, ["Problems from <b>$sequenceTitle</b>", 'map_problems', 'CHOOSE_PROBLEMS']; |
push @{$printChoices}, ["Problem(s) from <b>$sequenceTitle</b>", 'map_problems', 'CHOOSE_PROBLEMS']; |
# Allow all resources from sequence |
# Allow all resources from sequence |
push @{$printChoices}, ["Problems and pages from <b>$sequenceTitle</b>", 'map_problems_pages', 'CHOOSE_PROBLEMS_HTML']; |
push @{$printChoices}, ["Everything (problem(s), page(s), html/xml file(s)) from <b>$sequenceTitle</b>", 'map_problems_pages', 'CHOOSE_PROBLEMS_HTML']; |
|
|
my $isProblem = '$res->is_problem();'; |
my $isProblem = '$res->is_problem();'; |
my $isProblemOrMap = '$res->is_problem() || $res->is_map()'; |
my $isProblemOrMap = '$res->is_problem() || $res->is_map()'; |
my $isNotMap = '!$res->is_map();'; |
my $isNotMap = '!$res->is_map();'; |
my $symb = '$res->symb();'; |
my $symb = '$res->symb();'; |
my $helperFragment = <<HELPERFRAGMENT; |
my $helperFragment = <<HELPERFRAGMENT; |
<state name="CHOOSE_PROBLEMS" title="Select Problems"> |
<state name="CHOOSE_PROBLEMS" title="Select Problem(s) to print"> |
<message>Select problems to print:</message> |
<message>(mark them then click "next" button) <br /></message> |
<resource variable="RESOURCES" multichoice="1"> |
<resource variable="RESOURCES" multichoice="1" toponly='1'> |
<nextstate>FINAL</nextstate> |
<nextstate>PAGESIZE</nextstate> |
<filterfunc>return $isProblemOrMap</filterfunc> |
<filterfunc>return $isProblem</filterfunc> |
<choicefunc>return $isProblem</choicefunc> |
|
<mapurl>$map</mapurl> |
<mapurl>$map</mapurl> |
<valuefunc>return $symb</valuefunc> |
<valuefunc>return $symb</valuefunc> |
</resource> |
</resource> |
</state> |
</state> |
|
|
<state name="CHOOSE_PROBLEMS_HTML" title="Select Resources"> |
<state name="CHOOSE_PROBLEMS_HTML" title="Select Resource(s) to print"> |
<message>Select resources to print:</message> |
<message>(mark them then click "next" button) <br /></message> |
<resource variable="RESOURCES" multichoice="1"> |
<resource variable="RESOURCES" multichoice="1" toponly='1'> |
<nextstate>FINAL</nextstate> |
<nextstate>PAGESIZE</nextstate> |
<choicefunc>return $isNotMap;</choicefunc> |
<filterfunc>return $isNotMap;</filterfunc> |
<mapurl>$map</mapurl> |
<mapurl>$map</mapurl> |
<valuefunc>return $symb</valuefunc> |
<valuefunc>return $symb</valuefunc> |
</resource> |
</resource> |
Line 1853 HELPERFRAGMENT
|
Line 1826 HELPERFRAGMENT
|
# If the user is priviledged, allow them to print all |
# If the user is priviledged, allow them to print all |
# problems in the course, optionally for selected students |
# problems in the course, optionally for selected students |
if (($ENV{'request.role'}=~m/^cc\./ or $ENV{'request.role'}=~m/^in\./ or $ENV{'request.role'}=~m/^ta\./) and ($helper->{VARS}->{'postdata'}=~/\/res\//)) { |
if (($ENV{'request.role'}=~m/^cc\./ or $ENV{'request.role'}=~m/^in\./ or $ENV{'request.role'}=~m/^ta\./) and ($helper->{VARS}->{'postdata'}=~/\/res\//)) { |
push @{$printChoices}, ['<b>All problems</b> in course (may take a lot of time)', 'all_problems', 'ALL_PROBLEMS']; |
push @{$printChoices}, ['<b>Problems</b> in this course', 'all_problems', 'ALL_PROBLEMS']; |
push @{$printChoices}, ["Problems from <b>$sequenceTitle</b> for selected students", 'problems_for_students', 'CHOOSE_STUDENTS']; |
push @{$printChoices}, ["Problems from <b>$sequenceTitle</b> for selected students", 'problems_for_students', 'CHOOSE_STUDENTS']; |
|
|
my $isProblem = '$res->is_problem();'; |
my $isProblem = '$res->is_problem();'; |
my $isProblemOrMap = '$res->is_problem() || $res->is_map()'; |
my $isProblemOrMap = '$res->is_problem() || $res->is_map()'; |
my $symb = '$res->symb();'; |
my $symb = '$res->symb();'; |
&Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_STUDENTS); |
&Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_STUDENTS); |
<state name="ALL_PROBLEMS" title="Select Problems"> |
<state name="ALL_PROBLEMS" title="Select Problem(s) to print"> |
<message>Select problems to print:</message> |
<message>(mark them then click "next" button) <br /></message> |
<resource variable="RESOURCES" multichoice="1"> |
<resource variable="RESOURCES" multichoice="1"> |
<nextstate>FINAL</nextstate> |
<nextstate>PAGESIZE</nextstate> |
<filterfunc>return $isProblemOrMap</filterfunc> |
<filterfunc>return $isProblemOrMap</filterfunc> |
<choicefunc>return $isProblem</choicefunc> |
<choicefunc>return $isProblem</choicefunc> |
<valuefunc>return $symb</valuefunc> |
<valuefunc>return $symb</valuefunc> |
</resource> |
</resource> |
</state> |
</state> |
|
|
<state name="CHOOSE_STUDENTS" title="Choose Students"> |
<state name="CHOOSE_STUDENTS" title="Choose Students whose assignments you want to print"> |
<message>Select the students you wish to print the problems for:</message> |
<message>(do not forget to select assignment itself - make another selection below) <br /></message> |
<student multichoice='1' variable="STUDENTS" nextstate="FINAL" /> |
<student multichoice='1' variable="STUDENTS" nextstate="PAGESIZE" /> |
|
<message><br /><big><i><b>Select resources for the assignment</b></i></big><br /></message> |
|
<resource variable="RESOURCES" multichoice="1"> |
|
<filterfunc>return $isProblem</filterfunc> |
|
<mapurl>$map</mapurl> |
|
<valuefunc>return $symb</valuefunc> |
|
</resource> |
|
<message><br /><big><i><b>How should the results be printed?</b></i></big><br /></message> |
|
<choices variable="EMPTY_PAGES"> |
|
<choice computer='0'>Print students assignments without separations (as uniform flow)</choice> |
|
<choice computer='1'>Start student assignment from new page (add pagefeed after each student)</choice> |
|
<choice computer='2'>Add one emty page after each student assignment</choice> |
|
<choice computer='3'>Add two emty page after each student assignment</choice> |
|
</choices> |
</state> |
</state> |
CHOOSE_STUDENTS |
CHOOSE_STUDENTS |
} |
} |
|
|
# FIXME: That RE should come from a library somewhere. |
# FIXME: That RE should come from a library somewhere. |
if ((&Apache::lonnet::allowed('bre',$subdir) eq 'F') and ($helper->{VARS}->{'postdata'}=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)/)) { |
if (((&Apache::lonnet::allowed('bre',$subdir) eq 'F') and ($helper->{VARS}->{'postdata'}=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)/)) or defined $helper->{'VARS'}->{'construction'}) { |
push @{$printChoices}, ["Problems from <b>$subdir</b>", 'problems_from_directory', 'CHOOSE_FROM_SUBDIR']; |
push @{$printChoices}, ["Problems from current subdirectory <b>$subdir</b>", 'problems_from_directory', 'CHOOSE_FROM_SUBDIR']; |
|
|
my $f = '$filename'; |
my $f = '$filename'; |
my $xmlfrag = <<CHOOSE_FROM_SUBDIR; |
my $xmlfrag = <<CHOOSE_FROM_SUBDIR; |
<state name="CHOOSE_FROM_SUBDIR" title="Select Files"> |
<state name="CHOOSE_FROM_SUBDIR" title="Select File(s) from <b><small>$subdir</small></b> to print"> |
<message>Select problems you wish to print from <b>$subdir</b></message> |
<message>(mark them then click "next" button) <br /></message> |
<files variable="FILES" multichoice='1'> |
<files variable="FILES" multichoice='1'> |
<nextstate>FINAL</nextstate> |
<nextstate>PAGESIZE</nextstate> |
<filechoice>return '$subdir';</filechoice> |
<filechoice>return '$subdir';</filechoice> |
CHOOSE_FROM_SUBDIR |
CHOOSE_FROM_SUBDIR |
|
|
Line 1901 CHOOSE_FROM_SUBDIR
|
Line 1887 CHOOSE_FROM_SUBDIR
|
} |
} |
|
|
# Generate the first state, to select which resources get printed. |
# Generate the first state, to select which resources get printed. |
Apache::lonhelper::state->new("START", "Selecting Resources to Print"); |
Apache::lonhelper::state->new("START", "What do you want to print? Make a choice."); |
$paramHash = Apache::lonhelper::getParamHash(); |
$paramHash = Apache::lonhelper::getParamHash(); |
$paramHash->{MESSAGE_TEXT} = "What do you want to print?"; |
$paramHash->{MESSAGE_TEXT} = ""; |
Apache::lonhelper::message->new(); |
Apache::lonhelper::message->new(); |
$paramHash = Apache::lonhelper::getParamHash(); |
$paramHash = Apache::lonhelper::getParamHash(); |
$paramHash->{'variable'} = 'PRINT_TYPE'; |
$paramHash->{'variable'} = 'PRINT_TYPE'; |
$helper->declareVar('PRINT_TYPE'); |
$helper->declareVar('PRINT_TYPE'); |
$paramHash->{CHOICES} = $printChoices; |
$paramHash->{CHOICES} = $printChoices; |
Apache::lonhelper::choices->new(); |
Apache::lonhelper::choices->new(); |
|
|
|
if ($ENV{'request.role.adv'}) { |
|
$paramHash = Apache::lonhelper::getParamHash(); |
|
$paramHash->{MESSAGE_TEXT} = "<br /><big><b><i>Next option is available only for advanced users:</i></b></big><br />"; |
|
Apache::lonhelper::message->new(); |
|
$paramHash = Apache::lonhelper::getParamHash(); |
|
$paramHash->{'variable'} = 'ANSWER_TYPE'; |
|
$helper->declareVar('ANSWER_TYPE'); |
|
$paramHash->{CHOICES} = [ |
|
['Print without answer', 'yes'], |
|
['Print with answers', 'no'] ]; |
|
Apache::lonhelper::choices->new(); |
|
} |
|
|
Apache::lonprintout::page_format_state->new("FORMAT"); |
Apache::lonprintout::page_format_state->new("FORMAT"); |
|
|
|
# Generate the PAGESIZE state which will offer the user the margin |
|
# choices if they select one column |
|
Apache::lonhelper::state->new("PAGESIZE", "Set Margins"); |
|
Apache::lonprintout::page_size_state->new('pagesize', 'FORMAT', 'FINAL'); |
|
|
|
|
$helper->process(); |
$helper->process(); |
|
|
# MANUAL BAILOUT CONDITION: |
# MANUAL BAILOUT CONDITION: |
Line 1989 sub render {
|
Line 1995 sub render {
|
my $helper = Apache::lonhelper::getHelper(); |
my $helper = Apache::lonhelper::getHelper(); |
my $result = ''; |
my $result = ''; |
my $var = $self->{'variable'}; |
my $var = $self->{'variable'}; |
my $curVal = $helper->{VARS}->{$var}; |
|
|
|
my ($layout, $cols, $paper) = split(/\|/, $curVal); |
|
|
|
$result .= <<STATEHTML; |
$result .= <<STATEHTML; |
|
|
<p>How should the printing be formatted?</p> |
<p><big><i><b>What page format do you prefer?</b></i></big></p> |
<table cellpadding="3"> |
<table cellpadding="3"> |
<tr> |
<tr> |
<td align="center"><b>Layout</b></td> |
<td align="center"><b>Page layout</b></td> |
<td align="center"><b>Columns</b></td> |
<td align="center"><b>Number of columns</b></td> |
<td align="center"><b>Paper type</b></td> |
<td align="center"><b>Paper type</b></td> |
</tr> |
</tr> |
<tr> |
<tr> |
<td> |
<td> |
<input type="radio" name="${var}.layout" value="L" checked='1' /> Landscape<br /> |
<input type="radio" name="${var}.layout" value="L" /> Landscape<br /> |
<input type="radio" name="${var}.layout" value="P" /> Portrait |
<input type="radio" name="${var}.layout" value="P" checked='1' /> Portrait |
</td> |
</td> |
<td> |
<td align="center"> |
<select name="${var}.cols"> |
<select name="${var}.cols"> |
STATEHTML |
STATEHTML |
|
|
my $i; |
my $i; |
for ($i = 1; $i <= $maxColumns; $i++) { |
for ($i = 1; $i <= $maxColumns; $i++) { |
if ($i == $cols) { |
if ($i == 2) { |
$result .= "<option value='$i' selected>$i</option>\n"; |
$result .= "<option value='$i' selected>$i</option>\n"; |
} else { |
} else { |
$result .= "<option value='$i'>$i</option>\n"; |
$result .= "<option value='$i'>$i</option>\n"; |
Line 2025 STATEHTML
|
Line 2028 STATEHTML
|
|
|
$i = 0; |
$i = 0; |
foreach (@paperSize) { |
foreach (@paperSize) { |
if ($paper == $i) { |
if ($i == 0) { |
$result .= "<option selected value='$i'>" . $paperSize[$i] . "</option>\n"; |
$result .= "<option selected value='$i'>" . $paperSize[$i] . "</option>\n"; |
} else { |
} else { |
$result .= "<option value='$i'>" . $paperSize[$i] . "</option>\n"; |
$result .= "<option value='$i'>" . $paperSize[$i] . "</option>\n"; |
Line 2050 sub postprocess {
|
Line 2053 sub postprocess {
|
|
|
1; |
1; |
|
|
|
package Apache::lonprintout::page_size_state; |
|
|
|
=pod |
|
|
|
=head1 Helper element: page_size_state |
|
|
|
See lonhelper.pm documentation for discussion of the helper framework. |
|
|
|
Apache::lonprintout::page_size_state is an element that gives the |
|
user the opportunity to further refine the page settings if they |
|
select a single-column page. |
|
|
|
page_size_state is always directly invoked in lonprintout.pm, so there |
|
is no tag interface. You actually pass parameters to the constructor. |
|
|
|
=over 4 |
|
|
|
=item * B<new>(varName): varName is where the print information will be stored in the format FIXME. |
|
|
|
=back |
|
|
|
=cut |
|
|
|
use Apache::lonhelper; |
|
|
|
no strict; |
|
@ISA = ("Apache::lonhelper::element"); |
|
use strict; |
|
|
|
|
|
|
|
sub new { |
|
my $self = Apache::lonhelper::element->new(); |
|
|
|
shift; # disturbs me (probably prevents subclassing) but works (drops |
|
# package descriptor)... - Jeremy |
|
|
|
$self->{'variable'} = shift; |
|
my $helper = Apache::lonhelper::getHelper(); |
|
$helper->declareVar($self->{'variable'}); |
|
|
|
# The variable name of the format element, so we can look into |
|
# $helper->{VARS} to figure out whether the columns are one or two |
|
$self->{'formatvar'} = shift; |
|
|
|
# The state to transition to after selection, or after discovering |
|
# the cols are not set to 1 |
|
$self->{NEXTSTATE} = shift; |
|
bless($self); |
|
return $self; |
|
} |
|
|
|
sub render { |
|
my $self = shift; |
|
my $helper = Apache::lonhelper::getHelper(); |
|
my $result = ''; |
|
my $var = $self->{'variable'}; |
|
|
|
if (defined $self->{ERROR_MSG}) { |
|
$result .= '<br /><font color="#FF0000">' . $self->{ERROR_MSG} . '</font><br />'; |
|
} |
|
|
|
$result .= <<ELEMENTHTML; |
|
|
|
<p>How should the column be formatted?</p> |
|
|
|
<table cellpadding='3'> |
|
<tr> |
|
<td align='right'><b>Width</b>:</td> |
|
<td align='left'><input type='text' name='$var.width' value='18' size='4'></td> |
|
<td align='left'> |
|
<select name='$var.widthunit'> |
|
<option>cm</option><option>in</option> |
|
</select> |
|
</td> |
|
</tr> |
|
<tr> |
|
<td align='right'><b>Height</b>:</td> |
|
<td align='left'><input type='text' name="$var.height" value="25.9" size='4'></td> |
|
<td align='left'> |
|
<select name='$var.heightunit'> |
|
<option>cm</option><option>in</option> |
|
</select> |
|
</td> |
|
</tr> |
|
<tr> |
|
<td align='right'><b>Left margin</b>:</td> |
|
<td align='left'><input type='text' name='$var.lmargin' value='-1.5' size='4'></td> |
|
<td align='left'> |
|
<select name='$var.heightunit'> |
|
<option>cm</option><option>in</option> |
|
</select> |
|
</td> |
|
</tr> |
|
</table> |
|
|
|
<p>Hint: Some instructors like to leave scratch space for the student by |
|
making the width much smaller then the width of the page.</p> |
|
|
|
ELEMENTHTML |
|
|
|
return $result; |
|
} |
|
|
|
# If the user didn't select 1 column, skip this state. |
|
sub preprocess { |
|
my $self = shift; |
|
my $helper = Apache::lonhelper::getHelper(); |
|
|
|
my $format = $helper->{VARS}->{$self->{'formatvar'}}; |
|
if (substr($format, 2, 1) ne '1') { |
|
$helper->changeState($self->{NEXTSTATE}); |
|
} |
|
|
|
return 1; |
|
} |
|
|
|
sub postprocess { |
|
my $self = shift; |
|
|
|
my $var = $self->{'variable'}; |
|
my $helper = Apache::lonhelper->getHelper(); |
|
my $width = $helper->{VARS}->{$var .'.width'} = $ENV{"form.${var}.width"}; |
|
my $height = $helper->{VARS}->{$var .'.height'} = $ENV{"form.${var}.height"}; |
|
my $lmargin = $helper->{VARS}->{$var .'.lmargin'} = $ENV{"form.${var}.lmargin"}; |
|
$helper->{VARS}->{$var .'.widthunit'} = $ENV{"form.${var}.widthunit"}; |
|
$helper->{VARS}->{$var .'.heightunit'} = $ENV{"form.${var}.heightunit"}; |
|
$helper->{VARS}->{$var .'.lmarginunit'} = $ENV{"form.${var}.lmarginunit"}; |
|
|
|
my $error = ''; |
|
|
|
# /^-?[0-9]+(\.[0-9]*)?$/ -> optional minus, at least on digit, followed |
|
# by an optional period, followed by digits, ending the string |
|
|
|
if ($width !~ /^-?[0-9]+(\.[0-9]*)?$/) { |
|
$error .= "Invalid width; please type only a number.<br />\n"; |
|
} |
|
if ($height !~ /^-?[0-9]+(\.[0-9]*)?$/) { |
|
$error .= "Invalid height; please type only a number.<br />\n"; |
|
} |
|
if ($lmargin !~ /^-?[0-9]+(\.[0-9]*)?$/) { |
|
$error .= "Invalid left margin; please type only a number.<br />\n"; |
|
} |
|
|
|
if (!$error) { |
|
Apache::lonhelper::getHelper()->changeState($self->{NEXTSTATE}); |
|
return 1; |
|
} else { |
|
$self->{ERROR_MSG} = $error; |
|
return 0; |
|
} |
|
} |
|
|
|
|
|
|
__END__ |
__END__ |
|
|