--- loncom/interface/lonprintout.pm 2003/05/02 15:48:26 1.143
+++ loncom/interface/lonprintout.pm 2003/05/05 14:30:23 1.146
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Printout
#
-# $Id: lonprintout.pm,v 1.143 2003/05/02 15:48:26 sakharuk Exp $
+# $Id: lonprintout.pm,v 1.146 2003/05/05 14:30:23 bowersj2 Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1774,22 +1774,30 @@ sub printHelper {
Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING});
my $helper = Apache::lonhelper::helper->new("Printing Wizard");
+ $helper->declareVar('symb');
+ $helper->declareVar('postdata');
# This will persistently load in the data we want from the
# very first screen.
- if (defined($ENV{'form.postdata'})) {
- $helper->{VARS}->{'postdata'} = $ENV{'form.postdata'};
+ if ($ENV{'form.postdata'}) {
+ $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($ENV{'form.postdata'});
}
- if (defined($ENV{'form.symb'})) {
- $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
+ if ($ENV{'form.symb'}) {
+ $helper->{VARS}->{'symb'} = $ENV{'form.symb'};
}
- if (defined($ENV{'form.url'})) {
- $helper->{VARS}->{'url'} = $helper->{VARS}->{'postdata'};
+ if ($ENV{'form.url'}) {
+ $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
}
+
my ($resourceTitle,$sequenceTitle,$mapTitle) = &details_for_menu;
$helper->{VARS}->{'assignment'} = $sequenceTitle;
+ # Extract map
+ my $symb = $helper->{VARS}->{'symb'};
+ my ($map, $id, $url) = split(/___/, $symb);
+ $helper->{VARS}->{'postdata'} = Apache::lonnet::clutter($url);
+
if (!$resourceTitle) { # if the resource doesn't have a title, use the filename
my $url = $helper->{VARS}->{'postdata'};
$resourceTitle = substr($url, rindex($url, '/') + 1);
@@ -1797,11 +1805,7 @@ sub printHelper {
Apache::lonhelper::registerHelperTags();
- # Extract map
- my $symb = $helper->{VARS}->{'symb'};
- my ($map, $id, $url) = split(/__/, $symb);
-
- my $subdir = &Apache::lonnet::filelocation("", $helper->{VARS}->{'postdata'});
+ my $subdir = &Apache::lonnet::filelocation("", $url);
# "Delete everything after the last slash."
$subdir =~ s|/[^/]+$||;
@@ -1821,7 +1825,7 @@ sub printHelper {
my $paramHash;
# We can always print the current screen.
- push @{$printChoices}, ["$resourceTitle (exactly what was on the screen)", 'current_document', 'FINAL'];
+ push @{$printChoices}, ["$resourceTitle (exactly what was on the screen)", 'current_document', 'PAGESIZE'];
# If we're in a sequence...
if ($helper->{VARS}->{'postdata'} =~ /\/res\//) {
@@ -1837,10 +1841,9 @@ sub printHelper {
my $helperFragment = <
' . $self->{ERROR_MSG} . '
';
+ }
+
+ $result .= <
Width: | ++ | + + | +
Height: | ++ | + + | +
Left margin: | ++ | + + | +
Hint: Some instructors like to leave scratch space for the student by +making the width much smaller then the width of the page.
+ +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.