--- loncom/interface/lonprintout.pm	2022/06/11 17:32:32	1.681
+++ loncom/interface/lonprintout.pm	2023/04/15 19:33:17	1.689
@@ -1,7 +1,7 @@
 # The LearningOnline Network
 # Printout
 #
-# $Id: lonprintout.pm,v 1.681 2022/06/11 17:32:32 raeburn Exp $
+# $Id: lonprintout.pm,v 1.689 2023/04/15 19:33:17 raeburn Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -453,7 +453,7 @@ sub generate_common_choosers {
         &get_randomly_ordered_warning($helper, $map);
 
     # code for a few states used for printout launched from both 
-    # /adm/navmpas and from a resource by a privileged user:
+    # /adm/navmaps and from a resource by a privileged user:
     #   - To allow resources to be selected for printing.
     #   - To determine pagination between assignments.
     #   - To determine how many assignments should be bundled into a single PDF.
@@ -755,7 +755,7 @@ sub get_print_dates {
 # get_print_dates but namvaps::course_print_dates are gotten...and not converted
 # to times either.
 #
-# @param $res - Reference to a resource has from lonnvampas::resource.
+# @param $res - Reference to a resource hash from lonnavmaps::resource.
 #
 # @return (opendate, closedate)
 #
@@ -769,7 +769,7 @@ sub course_print_dates {
     my @close_dates;
     my $navmap = $res->{NAV_MAP}; # Slightly OO dirty.
 
-    # Don't bother looping over undefined or empty parts arraY;
+    # Don't bother looping over undefined or empty parts array;
 
     if (@parts) {
 	foreach my $part (@parts) {
@@ -795,7 +795,7 @@ sub map_print_dates {
     my $navmap = $res->{NAV_MAP}; # slightly OO dirty.
 
 
-    # Don't bother looping over undefined or empty parts arraY;
+    # Don't bother looping over undefined or empty parts array;
 
     if (@parts) {
 	foreach my $part (@parts) {
@@ -896,8 +896,8 @@ sub master_seq_to_person_seq {
     my $iterator         = $navmap->getIterator($start,$finish,{},1);
 
     #  Iterate on the resource..select the items that are randomly selected
-    #  and that are in the seq_has.  Presumably the iterator will take care
-    # of the random ordering part of the deal.
+    #  and that are in the seq_hash.  Presumably the iterator will take care
+    #  of the random ordering part of the deal.
     #
     my $curres;
     while ($curres = $iterator->next()) {
@@ -973,7 +973,7 @@ sub set_font_size {
     my ($text) = @_;
 
     # There appear to be cases where the font directive is empty.. in which
-    # case the first substituion would  insert a spurious \ oh happy day.
+    # case the first substitution would insert a spurious \ oh happy day.
     # as this has been the cause of much mystery and hair pulling _sigh_
 
     if ($font_size ne '') {
@@ -992,7 +992,7 @@ sub set_font_size {
 #  - The PDF, if necessary, is replicated.
 #  - The PDF is added to the list of files to convert to postscript (along with the images).
 #  - The LaTeX is added to include the final converted postscript in the file as an included
-#    job.  The assumption is that the includedpsheader.ps header will be included.
+#    job.  The assumption is that the includepsheader.ps header will be included.
 #
 # Parameters:
 #   pdf_uri   - URI of the PDF file to include.
@@ -1016,9 +1016,9 @@ sub include_pdf {
 	$file = &Apache::lonnet::filelocation('',$pdf_uri);
     }
 
-    #  The file isn ow replicated locally.. or it did not exist in the first place
+    #  The file is now replicated locally ... or it did not exist in the first place
     # (unlikely).  If it did exist, add the pdf to the set of files/images that
-    # need tob e converted for this print job:
+    # need to be converted for this print job:
 
     my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
     $file =~ s{(.*)/res/}{$londocroot/res/};
@@ -1155,8 +1155,8 @@ sub printf_style_subst {
 	if ($size ne "") {
 	    $subst = substr($subst, 0, $size);
 	    
-	    #  Here's a nice edge case.. supose the end of the
-	    #  substring is a \.  In that case may have  just
+	    #  Here's a nice edge case ... suppose the end of the
+	    #  substring is a \.  In that case may have just
 	    #  chopped off a TeX escape... in that case, we append
 	    #   " " for the trailing character, and let the field 
 	    #  spill over a bit (sigh).
@@ -1440,7 +1440,7 @@ sub compare_names {
     }
 
     # Break the tie on the first name, but there are leading (possibly trailing
-    # whitespaces to get rid of first 
+    # whitespaces to get rid of first)
     #
     $f1 =~ s/^\s+//;		# Remove leading...
     $f1 =~ s/\s+$//;		# Trailing spaces from first 1...
@@ -2532,7 +2532,7 @@ sub load_skips {
 
     my ($helper)  = @_;
 
-    #  If this is the first time, unrap the resources and extra spaces:
+    # If this is the first time, unwrap the resources and extra spaces:
 
     if (!$skips_loaded) {
 	@extraspace = (split(/\|\|\|/, $helper->{'VARS'}->{'EXTRASPACE'}));
@@ -2839,8 +2839,8 @@ ENDPART
     my @student_names=();
 
      
-    #  Common settings for the %form has:
-    # In some cases these settings get overriddent by specific cases, but the
+    #  Common settings for the %form hash:
+    # In some cases these settings get overridden by specific cases, but the
     # settings are common enough to make it worthwhile factoring them out
     # here.
     #
@@ -3304,8 +3304,12 @@ ENDPART
 
          my $map;
          if ($helper->{VARS}->{'symb'}) {
-             ($map, my $id, my $resource) =
-                 &Apache::lonnet::decode_symb($helper->{VARS}->{'symb'});
+             unless ((($print_type eq 'all_problems_students') ||
+                      ($print_type eq 'incomplete_problems_selpeople_course')) &&
+                      $perm{'pfo'}) {
+                 ($map, my $id, my $resource) =
+                     &Apache::lonnet::decode_symb($helper->{VARS}->{'symb'});
+             }
          }
 
 	 #loop over students
@@ -3793,7 +3797,7 @@ sub print_resources {
     #   nice to put the special in as a postscript comment
     #   e.g. \special{ps:\ENDOFSTUDENTSTAMP}  unfortunately,
     #   The special gets passed the \ and dvips puts it in the output file
-    #   so we will just rely on prntout.pl to strip  ENDOFSTUDENTSTAMP from the
+    #   so we will just rely on printout.pl to strip ENDOFSTUDENTSTAMP from the
     #   postscript.  Each ENDOFSTUDENTSTAMP will go on a line by itself.
     #
 
@@ -4212,19 +4216,12 @@ sub printHelper {
             $helper->{VARS}->{'symb'} = $env{'form.symb'};
         }
         if ($env{'form.url'}) {
-            $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
+            unless ($env{'form.url'} eq '/adm/navmaps') {
+                $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
+            }
         }
-
     }
 
-    if ($env{'form.symb'}) {
-        $helper->{VARS}->{'symb'} = $env{'form.symb'};
-    }
-    if ($env{'form.url'}) {
-        unless ($env{'form.url'} eq '/adm/navmaps') {
-            $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
-        }
-    }
     if ($helper->{VARS}->{'symb'} ne '') {
         $helper->{VARS}->{'symb'}=
 	    &Apache::lonenc::check_encrypt($helper->{VARS}->{'symb'});
@@ -4500,7 +4497,7 @@ sub printHelper {
                 $optionText = &mt('Selected [_1]Incomplete Problems[_2] [_3]not in a folder[_4]' . $textSuffix,
                                   '<b>','</b>','<i>','</i>');
             } else {
-                $optionText = &mt('Selected  [_1]Incomplete Problems[_2] from folder [_3]' . $textSuffix,
+                $optionText = &mt('Selected [_1]Incomplete Problems[_2] from folder [_3]' . $textSuffix,
                                   '<b>','</b>','<b><i>'.$sequenceTitle.'</b></i>');
             }
 	    push(@{$printChoices},
@@ -4562,7 +4559,8 @@ sub printHelper {
 	# BZ 5209 - incomplete problems from entire course:
 
 	push(@{$printChoices},
-	     [&mtn('Selected <b>Incomplete Problems</b> from <b>entire course</b> for selected people'),
+	     [&mt('Selected [_1]Incomplete Problems[_2] from [_3]entire course[_4] for [_5]selected people[_6]',
+              '<b>','</b>','<b>','</b>','<b>','</b>'),
 	      'incomplete_problems_selpeople_course', 'INCOMPLETE_PROBLEMS_COURSE_RESOURCES']);
 	my $helperFragment = &create_incomplete_course_helper($helper); # Create needed states.
 
@@ -4570,9 +4568,9 @@ sub printHelper {
 
 	#  Selected problems/resources from entire course:
 
-        push @{$printChoices}, [&mtn('Selected <b>Problems</b> from <b>entire course</b>'), 'all_problems', 'ALL_PROBLEMS'];
-	push @{$printChoices}, [&mtn('Selected <b>Resources</b> from <b>entire course</b>'), 'all_resources', 'ALL_RESOURCES'];
-	push @{$printChoices}, [&mtn('Selected <b>Problems</b> from <b>entire course</b> for <b>selected people</b>'), 'all_problems_students', 'ALL_PROBLEMS_STUDENTS'];
+        push @{$printChoices}, [&mt('Selected [_1]Problems[_2] from [_3]entire course[_4]','<b>','</b>','<b>','</b>'), 'all_problems', 'ALL_PROBLEMS'];
+	push @{$printChoices}, [&mt('Selected [_1]Resources[_2] from [_3]entire course[_4]','<b>','</b>','<b>','</b>'), 'all_resources', 'ALL_RESOURCES'];
+	push @{$printChoices}, [&mt('Selected [_1]Problems[_2] from [_3]entire course[_4] for [_5]selected people[_6]','<b>','</b>','<b>','</b>','<b>','</b>'), 'all_problems_students', 'ALL_PROBLEMS_STUDENTS'];
 my $suffixXml = <<ALL_PROBLEMS;
   <state name="STUDENTS1" title="Select People">
       <message><b>Select sorting order of printout</b> </message>
@@ -4790,7 +4788,7 @@ CHOOSE_FROM_SUBDIR
         (!$is_published || (($subdir eq '') && ($url eq '/adm/navmaps')))) {
         push(@$printChoices,[&mt('Selected [_1]Resources[_2] from [_3]selected folder[_4] in course',
                                  '<b>','</b>','<b>','</b>'),
-                             'select_sequences','CHOOSE_SEQUENCE']); 
+                             'select_sequences','CHOOSE_SEQUENCE']);
         my $escapedSequenceName;
         if ($helper->{VARS}->{'SEQUENCE'} ne '') {
             $escapedSequenceName = $helper->{VARS}->{'SEQUENCE'};
@@ -4805,7 +4803,9 @@ CHOOSE_FROM_SUBDIR
         #Escape apostrophes and backslashes for Perl
         $escapedSequenceName =~ s/\\/\\\\/g;
         $escapedSequenceName =~ s/'/\\'/g;
+        my $nocurrloc;
         if (($subdir eq '') && ($url eq '/adm/navmaps')) {
+            $nocurrloc = 'nocurrloc="1"';
             if ($perm{'pfo'}) {
                 push(@{$printChoices},
                     [&mt('Selected [_1]Problems[_2] from [_3]selected folder[_4] in course for [_5]selected people[_6]',
@@ -4880,7 +4880,7 @@ CHOOSE_FROM_SUBDIR
   <state name="CHOOSE_FROM_ANY_SEQUENCE" title="Select Resources To Print">
     <message>(mark desired resources then click "next" button) <br /></message>
     <resource variable="RESOURCES" multichoice="1" toponly='1' addstatus="1"
-              closeallpages="1" modallink="1">
+              closeallpages="1" modallink="1" suppressNavmap="1" $nocurrloc>
       <nextstate>PAGESIZE</nextstate>
       <filterfunc>return $isNotMap</filterfunc>
       <mapurl evaluate='1'>return '$escapedSequenceName';</mapurl>
@@ -4904,7 +4904,7 @@ CHOOSE_FROM_ANY_SEQUENCE
   <state name="CHOOSE_FROM_ANY_SEQUENCE" title="Select Resources To Print">
     <message>(mark desired resources then click "next" button) <br /></message>
     <resource variable="RESOURCES" multichoice="1" toponly='1' addstatus="1"
-              closeallpages="1" modallink="1">
+              closeallpages="1" modallink="1" suppressNavmap="1" $nocurrloc>
       <nextstate>PAGESIZE</nextstate>
       <filterfunc>return $isNotMap</filterfunc>
       <mapurl evaluate='1'>return '$escapedSequenceName';</mapurl>