File:  [LON-CAPA] / loncom / interface / lonprintout.pm
Revision 1.627.2.12: download - view: text, annotated - select for diffs
Thu Apr 24 15:36:58 2014 UTC (10 years ago) by raeburn
Branches: version_2_11_X
CVS tags: version_2_11_0_RC3, version_2_11_0
- For 2.11
  - Backport 1.642

    1: # The LearningOnline Network
    2: # Printout
    3: #
    4: # $Id: lonprintout.pm,v 1.627.2.12 2014/04/24 15:36:58 raeburn Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: # http://www.lon-capa.org/
   26: #
   27: #
   28: package Apache::lonprintout;
   29: use strict;
   30: use Apache::Constants qw(:common :http);
   31: use Apache::lonxml;
   32: use Apache::lonnet;
   33: use Apache::loncommon;
   34: use Apache::inputtags;
   35: use Apache::grades;
   36: use Apache::edit;
   37: use Apache::File();
   38: use Apache::lonnavmaps;
   39: use Apache::admannotations;
   40: use Apache::lonenc;
   41: use Apache::entities;
   42: use Apache::londefdef;
   43: # use Apache::structurelags;	# for language management.
   44: 
   45: use File::Basename;
   46: 
   47: use HTTP::Response;
   48: use LONCAPA::map();
   49: use Apache::lonlocal;
   50: use Carp;
   51: use LONCAPA;
   52: 
   53: 
   54: my %perm;
   55: my %parmhash;
   56: my $resources_printed;
   57: 
   58: # Global variables that describe errors in ssi calls detected  by ssi_with_retries.
   59: #
   60: 
   61: my $ssi_error;			# True if there was an ssi error.
   62: my $ssi_last_error_resource;	# The resource URI that could not be fetched.
   63: my $ssi_last_error;		# The error text from the server. (e.g. 500 Server timed out).
   64: 
   65: #
   66: #  Our ssi max retry count.
   67: #
   68: 
   69: my $ssi_retry_count = 5;	# Some arbitrary value.
   70: 
   71: 
   72: #  Font size:
   73: 
   74: my $font_size = 'normalsize';	# Default is normalsize...
   75: 
   76: #----------------------------  Helper helpers. -------------------------
   77: 
   78: ## 
   79: # Filter function to determine if a resource is a printable sequence.
   80: #
   81: # @param $res -Resource to check.
   82: #
   83: # @return 1 - printable and a resource
   84: #         0 - either notm a sequence or not printable.
   85: #
   86: sub printable_sequence {
   87:     my $res = shift;
   88: 
   89:     # Non-sequences are not listed:
   90: 
   91:     if (!$res->is_sequence()) {
   92: 	return 0;
   93:     }
   94: 
   95:     # Person with pav or pfo can always print:
   96: 
   97:     if ($perm{'pav'} || $perm{'pfo'}) {
   98: 	return 1;
   99:     }
  100: 
  101:     if ($res->is_sequence()) {
  102: 	my $symb = $res->symb();
  103: 	my $navmap   = $res->{NAV_MAP};
  104: 
  105: 	# Find the first resource in the map:
  106: 
  107: 	my $iterator = $navmap->getIterator($res, undef, undef, 1, 1);
  108: 	my $first    = $iterator->next();
  109: 
  110: 	while (1) {
  111: 	    if ($first == $iterator->END_ITERATOR) { last; }
  112: 	    if (ref($first) && ! $first->is_sequence()) {last; }
  113: 	    $first = $iterator->next();
  114: 	}
  115: 
  116: 
  117: 	# Might be an empty map:
  118: 
  119: 	if (!ref($first)) {
  120: 	    return 0;
  121: 	}
  122: 	my $partsref = $first->parts();
  123: 	my @parts    = @$partsref;
  124: 	my ($open, $close) = $navmap->map_printdates($first, $parts[0]);
  125: 	return &printable($open, $close);
  126:     }
  127:     return 0;
  128: }
  129: 
  130: # BZ5209:
  131: #    Create the states needed to run the helper for incomplete problems from
  132: #    the current folder for selected students.
  133: #    This includes:
  134: #    -  A resource selector limited to problems (incompleteness must be
  135: #       calculated on a student per student basis.
  136: #    -  A student selector.
  137: #    -  Tie in to the FORMAT of the print job.
  138: #
  139: # States:
  140: #   CHOOSE_INCOMPLETE_PEOPLE_SEQ      - Resource selection.
  141: #   CHOOSE_STUDENTS_INCOMPLETE        - Student selection.
  142: #   CHOOSE_STUDENTS_INCOMPLETE_FORMAT - Format selection
  143: # Parameters:
  144: #    helper - the helper which already contains info about the current folder we can
  145: #             purloin.
  146: #    url    - Top url of the sequence
  147: # Return:
  148: #     XML that can be parsed by the helper to drive the state machine.
  149: #
  150: sub create_incomplete_folder_selstud_helper {
  151:     my ($helper, $map)  = @_;
  152: 
  153: 
  154:     my $symbFilter = '$res->shown_symb()';
  155:     my $selFilter   = '$res->is_problem()';
  156: 
  157: 
  158:     my $resource_chooser = &generate_resource_chooser('CHOOSE_INCOMPLETE_PEOPLE_SEQ',
  159: 						      'Select problem(s) to print',
  160: 						      'multichoice="1" toponly="1" addstatus="1" closeallpages="1"',
  161: 						      'RESOURCES',
  162: 						      'CHOOSE_STUDENTS_INCOMPLETE',
  163: 						      $map,
  164: 						      $selFilter,
  165: 						      '',
  166: 						      $symbFilter, 
  167: 						      '');
  168: 
  169:     my $student_chooser = &generate_student_chooser('CHOOSE_STUDENTS_INCOMPLETE',
  170: 						 'student_sort',
  171: 						 'STUDENTS',
  172: 						 'CHOOSE_STUDENTS_INCOMPLETE_FORMAT');
  173: 
  174:     my $format_chooser = &generate_format_selector($helper,
  175: 						'Format of the print job',
  176: 						'CHOOSE_STUDENTS_INCOMPLETE_FORMAT'); # end state.
  177: 
  178:     return $resource_chooser . $student_chooser . $format_chooser;
  179: }  
  180: 
  181: 
  182: # BZ 5209
  183: #     Create the states needed to run the helper for incomplete problems from
  184: #     the current folder for selected students.
  185: #     This includes:
  186: #     - A resource selector limited to problems.  (incompleteness must be calculated
  187: #       on a student per student basis.
  188: #     - A student selector.
  189: #     - Tie in to format for the print job.
  190: # States:
  191: #    INCOMPLETE_PROBLEMS_COURSE_RESOURCES - Resource selector.
  192: #    INCOMPLETE_PROBLEMS_COURSE_STUDENTS  - Student selector.
  193: #    INCOMPLETE_PROBLEMS_COURSE_FORMAT    - Format selection.
  194: #
  195: # Parameters:
  196: #   helper   - Helper we are creating states for.
  197: # Returns:
  198: #   Text that can be parsed by the helper.
  199: # 
  200: 
  201: sub create_incomplete_course_helper {
  202:     my $helper = shift;
  203: 
  204:     my $filter = '$res->is_problem() || $res->contains_problem() || $res->is_sequence() || $res->is_practice())';
  205:     my $symbfilter = '$res->shown_symb()';
  206:     
  207:     my $resource_chooser = &generate_resource_chooser('INCOMPLETE_PROBLEMS_COURSE_RESOURCES',
  208: 						      'Select problem(s) to print',
  209: 						      'multichoice = "1" suppressEmptySequences="0" addstatus="1" closeallpagtes="1"',
  210: 						      'RESOURCES',
  211: 						      'INCOMPLETE_PROBLEMS_COURSE_STUDENTS',
  212: 						      '',
  213: 						      $filter,
  214: 						      '',
  215: 						      $symbfilter,
  216: 						      '');
  217: 
  218:     my $people_chooser  = &generate_student_chooser('INCOMPLETE_PROBLEMS_COURSE_STUDENTS',
  219: 						    'student_sort',
  220: 						    'STUDENTS',
  221: 						    'INCOMPLETE_PROBLEMS_COURSE_FORMAT');
  222: 
  223:     my $format = &generate_format_selector($helper,
  224: 					   'Format of the print job',
  225: 					   'INCOMPLETE_PROBLEMS_COURSE_FORMAT'); # end state.
  226: 
  227:     return $resource_chooser . $people_chooser . $format;
  228: 
  229: 
  230: }
  231: 
  232: # BZ5209 
  233: #   Creates the states needed to run the print helper for a student
  234: #   that wants to print his incomplete problems from the current folder.
  235: # Parameters:
  236: #   $helper - helper we are generating states for.
  237: #   $map    - The map for which the student wants incomplete problems.
  238: # Returns:
  239: #   XML that defines the helper states being created.
  240: #
  241: # States:
  242: #   CHOOSE_INCOMPLETE_SEQ  - Resource selector.
  243: #
  244: sub create_incomplete_folder_helper {
  245:     my ($helper, $map) = @_;
  246: 
  247:     my $filter    = '$res->is_problem()';
  248:     $filter      .= ' && $res->resprintable() ';
  249:     $filter      .= ' && $res->is_incomplete() ';
  250: 
  251:     my $symfilter = '$res->shown_symb()';
  252: 
  253:     my $resource_chooser = &generate_resource_chooser('CHOOSE_INCOMPLETE_SEQ',
  254: 						      'Select problem(s) to print',
  255: 						      'multichoice="1", toponly ="1", addstatus="1", closeallpages="1"',
  256: 						      'RESOURCES',
  257: 						      'PAGESIZE',
  258: 						      $map,
  259: 						      $filter, '', 
  260: 						      $symfilter,
  261: 						      '');
  262: 
  263:     return $resource_chooser;
  264: }
  265: 
  266: 
  267: #  Returns the text neded for a student chooser.
  268: #  that text must still be parsed by the helper xml parser.
  269: # Parameters:
  270: #   this_state   - State name of the chooser.
  271: #   sort_choice  - variable to hold the sorting choice.
  272: #   variable     - Name of variable to hold students.
  273: #   next_state   - State after chooser.
  274: 
  275: 
  276: sub generate_student_chooser {
  277:     my ($this_state, 
  278: 	$sort_choice, 
  279: 	$variable, 
  280: 	$next_state) = @_;
  281:     my $result = <<CHOOSE_STUDENTS;
  282:   <state name="$this_state" title="Select Students and Resources">
  283:       <message><b>Select sorting order of printout</b> </message>
  284: 
  285:     <choices variable="$sort_choice">
  286:       <choice computer='0'>Sort by section then student</choice>
  287:       <choice computer='1'>Sort by students across sections.</choice>
  288:     </choices>
  289: 
  290:       <message><br /><hr /><br /> </message>
  291:       <student multichoice='1' 
  292:                variable="$variable" 
  293:                nextstate="$next_state" 
  294:                coursepersonnel="1" />
  295:   </state>
  296: 
  297: CHOOSE_STUDENTS
  298: 
  299:   return $result;
  300: }
  301: 
  302: # Generate the text needed for a resource chooser given the top level of
  303: # the sequence/page
  304: #
  305: # Parameters:
  306: #     this_state    - State name of the chooser.
  307: #     prompt_text   - Text to use to prompt user.
  308: #     resource_options - Resource tag options e.g.
  309: #                        "multichoice='1', toponly='1', addstatus='1'"
  310: #                     that control the selection and appearance of the
  311: #                     resource selector.
  312: #     variable      - Name of the variable to hold the choice
  313: #     next_state    - Name of the next state the helper should transition
  314: #                     to
  315: #     top_url       - Top level URL within which to make the selector.
  316: #                     If empty the top level sequence is shown.
  317: #     filter        - How to filter the resources.
  318: #     value_func    - <valuefunc> function.
  319: #     choice_func   - If not empty generates a <choicefunc> with this function.
  320: #     start_new_option 
  321: #                   - Fragment appended after valuefunc.
  322: #
  323: #
  324: sub generate_resource_chooser {
  325:     my ($this_state,
  326: 	$prompt_text,
  327: 	$resource_options,
  328: 	$variable,
  329: 	$next_state,
  330: 	$top_url,
  331: 	$filter,
  332: 	$choice_func,
  333: 	$value_func,
  334: 	$start_new_option)  = @_;
  335: 
  336:     my $result = <<CHOOSE_RESOURCES;
  337: <state name="$this_state" title="$prompt_text">
  338:     <resource variable="$variable" $resource_options
  339:               closeallpages="1">
  340:       <nextstate>$next_state</nextstate>
  341:       <filterfunc>return $filter;</filterfunc>
  342: CHOOSE_RESOURCES
  343:     if ($choice_func ne '') {
  344: 	$result .= "<choicefunc>return $choice_func;</choicefunc>";
  345:     }
  346:     if ($top_url ne '') {
  347: 	$result .=  "<mapurl>$top_url</mapurl>";
  348:     }
  349:     $result .= <<CHOOSE_RESOURCES;
  350:       <valuefunc>return $value_func;</valuefunc>
  351:       $start_new_option
  352:       </resource>
  353:     </state>
  354: CHOOSE_RESOURCES
  355:     return $result;
  356: }
  357: #
  358: #   Generate the helper XML for a code choice helper dialog:
  359: #
  360: # Paramters:
  361: #   $helper       - Reference to the helper.
  362: #   $state        - Name of the state for the chooser.
  363: #   $next_state   - Name fo the state to follow the chooser.
  364: #   $bubble_types - Populates the bubble sheet type dropt down.
  365: #   $code_selections - Provides set of code choices that have been used
  366: #   $saved_codes  - Provides the list of saved codes.
  367: #
  368: # Returns;
  369: #   The Xml of the code chooser.
  370: #
  371: sub generate_code_selector {
  372:     my ($helper,
  373: 	$state,
  374: 	$next_state,
  375: 	$bubble_types,
  376: 	$code_selections,
  377: 	$saved_codes) = @_;	# Unpack the parameters.
  378: 
  379:     my $result = <<CHOOSE_ANON1;
  380:   <state name="$state" title="Specify CODEd Assignments">
  381:     <nextstate>$next_state</nextstate>
  382:     <message><h4>Fill out one of the forms below</h4></message>
  383:     <message><br /><hr /> <br /></message>
  384:     <message><h3>Generate new CODEd Assignments</h3></message>
  385:     <message><table><tr><td><b>Number of CODEd assignments to print:</b></td><td></message>
  386:     <string variable="NUMBER_TO_PRINT_TOTAL" maxlength="5" size="5"  noproceed="1">
  387:        <validator>
  388: 	if (((\$helper->{'VARS'}{'NUMBER_TO_PRINT_TOTAL'}+0) < 1) &&
  389: 	    !\$helper->{'VARS'}{'REUSE_OLD_CODES'}                &&
  390:             !\$helper->{'VARS'}{'SINGLE_CODE'}                    &&
  391: 	    !\$helper->{'VARS'}{'CODE_SELECTED_FROM_LIST'} ) {
  392: 
  393: 	    return "You need to specify the number of assignments to print";
  394: 	}
  395:         if (((\$helper->{'VARS'}{'NUMBER_TO_PRINT_TOTAL'}+0) >= 1)  &&
  396:              (\$helper->{'VARS'}{'SINGLE_CODE'} ne '') ) {
  397:             return 'Specifying number of codes to print and a specific code is not compatible';
  398:         }
  399: 	return undef;
  400:        </validator>
  401:     </string>
  402:     <message></td></tr><tr><td></message>
  403:     <message><b>Names to save the CODEs under for later:</b></message>
  404:     <message></td><td></message>
  405:     <string variable="ANON_CODE_STORAGE_NAME" maxlength="50" size="20" />
  406:     <message></td></tr><tr><td></message>
  407:     <message><b>Bubblesheet type:</b></message>
  408:     <message></td><td></message>
  409:     <dropdown variable="CODE_OPTION" multichoice="0" allowempty="0">
  410:     $bubble_types
  411:     </dropdown>
  412:     <message></td></tr><tr><td colspan="2"></td></tr><tr><td></message>
  413:     <message></td></tr><tr><td></table></message>
  414:     <message><br /><hr /><h3>Print a Specific CODE </h3><br /><table></message>
  415:     <message><tr><td><b>Enter a CODE to print:</b></td><td></message>
  416:     <string variable="SINGLE_CODE" size="10">
  417:         <validator>
  418: 	   if(!\$helper->{'VARS'}{'NUMBER_TO_PRINT_TOTAL'}           &&
  419: 	      !\$helper->{'VARS'}{'REUSE_OLD_CODES'}                 &&
  420: 	      !\$helper->{'VARS'}{'CODE_SELECTED_FROM_LIST'}) {
  421: 	      return &Apache::lonprintout::is_code_valid(\$helper->{'VARS'}{'SINGLE_CODE'},
  422: 						      \$helper->{'VARS'}{'CODE_OPTION'});
  423: 	  } elsif (\$helper->{'VARS'}{'SINGLE_CODE'} ne ''){
  424: 	      return 'Specifying a code name is incompatible with specifying number of codes.';
  425: 	   } else {
  426: 	       return undef;	# Other forces control us.
  427: 	   }
  428:         </validator>
  429:     </string>
  430:     <message></td></tr><tr><td></message>
  431:         $code_selections
  432:     <message></td></tr></table></message>
  433:     <message><hr /><h3>Reprint a Set of Saved CODEs</h3><table><tr><td></message>
  434:     <message><b>Select saved CODEs:</b></message>
  435:     <message></td><td></message>
  436:     <dropdown variable="REUSE_OLD_CODES">
  437:         $saved_codes
  438:     </dropdown>
  439:     <message></td></tr></table></message>
  440:   </state>
  441: CHOOSE_ANON1
  442: 
  443:    return $result;
  444: }
  445: 
  446: #  Returns the XML for choosing how assignments are to be formatted 
  447: #  that text must still be parsed by the helper xml parser.
  448: # Parameters: 3 (required)
  449: 
  450: #   helper       - The helper; $helper->{'VARS'}->{'PRINT_TYPE'} used
  451: #                  to check if splitting PDFs by section can be offered.
  452: #   title        - Title for the current state. 
  453: #   this_state   - State name of the chooser.
  454: 
  455: sub generate_format_selector {
  456:     my ($helper,$title,$this_state) = @_;
  457:     my $secpdfoption;
  458:     unless (($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_anon')     ||
  459:             ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_anon_page') ||
  460:             ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'resources_for_anon')  ) {
  461:         $secpdfoption =  '<choice computer="sections">Each PDF contains exactly one section</choice>';
  462:     }
  463:     return <<RESOURCE_SELECTOR;
  464:     <state name="$this_state" title="$title">
  465:     <message><br /><big><i><b>How should the results be printed?</b></i></big><br /></message>
  466:     <choices variable="EMPTY_PAGES">
  467:       <choice computer='0'>Start each student\'s assignment on a new page/column (add a pagefeed after each assignment)</choice>
  468:       <choice computer='1'>Add one empty page/column after each student\'s assignment</choice>
  469:       <choice computer='2'>Add two empty pages/column after each student\'s assignment</choice>
  470:       <choice computer='3'>Add three empty pages/column after each student\'s assignment</choice>
  471:     </choices>
  472:     <nextstate>PAGESIZE</nextstate>
  473:     <message><hr width='33%' /><b>How do you want assignments split into PDF files? </b></message>
  474:     <choices variable="SPLIT_PDFS">
  475:        <choice computer="all">All assignments in a single PDF file</choice>
  476:        $secpdfoption
  477:        <choice computer="oneper">Each PDF contains exactly one assignment</choice>
  478:        <choice computer="usenumber" relatedvalue="NUMBER_TO_PRINT">
  479:             Specify the number of assignments per PDF:</choice>
  480:     </choices>
  481:     </state>
  482: RESOURCE_SELECTOR
  483: }
  484: 
  485: #-----------------------------------------------------------------------
  486: 
  487: # Computes an open and close date from a list of open/close dates for a resource's
  488: # parts.
  489: #
  490: # @param \@opens - reference to an array of open dates.
  491: # @param \@closes - reference to an array of close dates.
  492: #
  493: # @return ($open, $close) 
  494: #
  495: # @note If open/close dates are not defined they will be returned as undef
  496: # @note It is possible for there to be no overlap in which case -1,-1 
  497: #       will be returned.
  498: # @note The algorithm used is to take the latest open date and the earliest end date.
  499: #
  500: sub compute_open_window {
  501:     my ($opensref, $closesref) = @_;
  502: 
  503:     my @opens   = @$opensref;
  504:     my @closes  = @$closesref;
  505: 
  506:     # latest open date:
  507:     my $latest_open;
  508: 
  509:     foreach my $open (@opens) {
  510: 	if (!defined($latest_open) || ($open > $latest_open)) {
  511: 	    $latest_open = $open;
  512: 	}
  513:     }
  514:     # Earliest close:
  515: 
  516:     my $earliest_close;
  517:     foreach my $close (@closes) {
  518: 	if (!defined($earliest_close) || ($close < $earliest_close)) {
  519: 	    $earliest_close = $close;
  520: 	}
  521:     }
  522: 
  523:     # If no overlap...both are -1 as promised.
  524: 
  525:     if (($earliest_close ne '') && ($latest_open ne '')
  526: 	 && ($earliest_close < $latest_open)) {
  527: 	$latest_open  = -1;
  528: 	$earliest_close = -1;
  529:     }
  530:     
  531:     return ($latest_open, $earliest_close);
  532:   
  533: }
  534: 
  535: ##
  536: #  Determines if 'now' is within the set of printable dates.
  537: #
  538: #  @param $open_date - Starting date/timestamp.
  539: #  @param $close_date - Ending date/timestamp.
  540: #
  541: #  @return 0 - Not open.
  542: #  @return 1 - open.
  543: #
  544: sub printable {
  545:     my ($open_date, $close_date) = @_;
  546: 
  547: 
  548:     my $now = time();
  549: 
  550:     # Have to do a bit of fancy footwork around undefined open/close dates:
  551: 
  552:     if ($open_date && ($open_date > $now)) {
  553: 	return 0;
  554:     }
  555: 
  556:     if ($close_date && ($close_date < $now)) {
  557: 	return 0;
  558:     }
  559:     
  560:     return 1;
  561: 
  562: }
  563: 
  564: ##
  565: # Returns the innermost print start/print end dates for a resource.
  566: # This is done by looking at the start/end dates for its parts and choosing
  567: # the intersection of those dates.
  568: # 
  569: # @param res - lonnvamaps::resource object that represents the resource.
  570: #
  571: # @return (opendate, closedate)
  572: #
  573: # @note If open/close dates are not defined they will be returned as undef
  574: # @note It is possible for there to be no overlap in which case -1,-1 
  575: #       will be returned.
  576: # @note The algorithm used is to take the latest open date and the earliest end date.
  577: #       For consistency with &printable() in lonnavmaps.pm determination of start
  578: #       date for printing checks printstartdate param first, then, if not set,
  579: #       opendate param, then, if not set, contentopen param.
  580: 
  581: 
  582: sub get_print_dates {
  583:     my $res = shift;
  584:     my $partsref = $res->parts();
  585:     my @parts;
  586:     if (ref($partsref) eq 'ARRAY') {
  587:         @parts   = @{$partsref};
  588:     }
  589:     my $open_date;
  590:     my $close_date;
  591:     my @open_dates;
  592:     my @close_dates;
  593: 
  594: 
  595:     if (@parts) {
  596: 	foreach my $part (@parts) {
  597: 	    my $partopen  = $res->parmval('printstartdate', $part);
  598: 	    my $partclose = $res->parmval('printenddate',  $part);
  599:             if (!$partopen) {
  600:                 $partopen = $res->parmval('opendate',$part);
  601:             }
  602:             if (!$partopen) {
  603:                 $partopen = $res->parmval('contentopen',$part);
  604:             }
  605:             if ($partopen) {
  606:                 push(@open_dates, $partopen);
  607:             }
  608:             if ($partclose) {
  609:                 push(@close_dates, $partclose);
  610:             }
  611: 	    push(@open_dates, $partopen);
  612: 	    push(@close_dates, $partclose);
  613: 	}
  614:     }
  615: 
  616:     ($open_date, $close_date)  = &compute_open_window(\@open_dates, \@close_dates);
  617: 
  618:     return ($open_date, $close_date);
  619: }
  620: 
  621: ##
  622: # Get the dates for which a course says a resource can be printed.  This is like
  623: # get_print_dates but namvaps::course_print_dates are gotten...and not converted
  624: # to times either.
  625: #
  626: # @param $res - Reference to a resource has from lonnvampas::resource.
  627: #
  628: # @return (opendate, closedate)
  629: #
  630: sub course_print_dates {
  631:     my $res = shift;
  632:     my $partsref = $res->parts();
  633:     my @parts    = @$partsref;
  634:     my $open_date;
  635:     my $close_date;
  636:     my @open_dates;
  637:     my @close_dates;
  638:     my $navmap = $res->{NAV_MAP}; # Slightly OO dirty.
  639: 
  640:     # Don't bother looping over undefined or empty parts arraY;
  641: 
  642:     if (@parts) {
  643: 	foreach my $part (@parts) {
  644: 	    my ($partopen, $partclose) = $navmap->course_printdates($res, $part);
  645: 	    push(@open_dates, $partopen);
  646: 	    push(@close_dates, $partclose);
  647: 	}
  648: 	($open_date, $close_date) = &compute_open_window(\@open_dates, \@close_dates);
  649:     }
  650:     return ($open_date, $close_date);
  651: }
  652: ##
  653: # Same as above but for the enclosing map:
  654: #
  655: sub map_print_dates {
  656:     my $res = shift;
  657:     my $partsref = $res->parts();
  658:     my @parts    = @$partsref;
  659:     my $open_date;
  660:     my $close_date;
  661:     my @open_dates;
  662:     my @close_dates;
  663:     my $navmap = $res->{NAV_MAP}; # slightly OO dirty.
  664: 
  665: 
  666:     # Don't bother looping over undefined or empty parts arraY;
  667: 
  668:     if (@parts) {
  669: 	foreach my $part (@parts) {
  670: 	    my ($partopen, $partclose) = $navmap->map_printdates($res, $part);
  671: 	    push(@open_dates, $partopen);
  672: 	    push(@close_dates, $partclose);
  673: 	}
  674: 	($open_date, $close_date) = &compute_open_window(\@open_dates, \@close_dates);
  675:     }
  676:     return ($open_date, $close_date);
  677: }
  678: 
  679: # Determine if a resource is incomplete given the map:
  680: # Parameters:
  681: #   $username - Name of user for whom we are checking.
  682: #   $domain   - Domain of user we are checking.
  683: #   $map - map name.
  684: # Returns:
  685: #     0 - map is not incomplete.
  686: #     1 - map is incomplete.
  687: #
  688: sub incomplete {
  689:     my ($username, $domain, $map) = @_;
  690: 
  691: 
  692:     my $navmap = Apache::lonnavmaps::navmap->new($username, $domain);
  693:     
  694: 
  695:     if (defined($navmap)) {
  696: 	my $res = $navmap->getResourceByUrl($map);
  697: 	my $result = $res->is_incomplete();
  698: 	return $result;
  699:     } else {
  700: 	return 1;
  701:     }
  702: }
  703: #
  704: #  When printing for students, the resoures and order of the
  705: #  resources may need to be altered if there are folders with
  706: #  random selectiopn or random ordering (or both) enabled.
  707: #  This sub computes the set of resources to print for a student
  708: #  modified both by random ordering and selection and filtered
  709: #  to only those that are in the original set selcted to be printed.
  710: #
  711: # Parameters:
  712: #   $map - The URL of the folder being printed.
  713: #          Used to determine which startResource and finishResource
  714: #          to use when using the navmap's getIterator method.
  715: #   $seq   - The original set of resources to print.
  716: #            (really an array of resource names (array of symb's).
  717: #   $who   - Student/domain for whome the sequence will be generated.
  718: #   $code  - CODE being printed when printing Problems/Resources
  719: #            from folder for CODEd assignments
  720: #
  721: # Implicit inputs:
  722: #   $
  723: # Returns:
  724: #   reference to an array of resources that can be passed to
  725: #   print_resources.
  726: # 
  727: sub master_seq_to_person_seq {
  728:     my ($map, $seq, $who, $code, $nohidemap) = @_;
  729: 
  730: 
  731:     my ($username, $userdomain, $usersection) = split(/:/, $who);
  732: 
  733:     # Toss the sequence up into a hash so that we have O(1) lookup time.
  734:     # on the items that come out of the user's list of resources.
  735:     #
  736: 
  737:     my %seq_hash = map {$_  => 1} @$seq;
  738:     my @output_seq;
  739: 
  740:     my $unhidden;
  741:     if ($perm{'pav'} && $perm{'vgr'} && $nohidemap) {
  742:         $unhidden = &Apache::lonnet::clutter($map);
  743:     }
  744:     
  745:     my $navmap           = Apache::lonnavmaps::navmap->new($username, $userdomain,
  746:                                                            $code,$unhidden);
  747:     my ($start,$finish);
  748: 
  749:     if ($map) {
  750:         my $mapres = $navmap->getResourceByUrl($map);
  751:         if ($mapres->is_map()) {
  752:             $start = $mapres->map_start();
  753:             $finish = $mapres->map_finish();
  754:         }
  755:     }
  756:     unless ($start && $finish) {
  757:         $start = $navmap->firstResource();
  758:         $finish = $navmap->finishResource();
  759:     }
  760: 
  761:     my $iterator         = $navmap->getIterator($start,$finish,{},1);
  762: 
  763:     #  Iterate on the resource..select the items that are randomly selected
  764:     #  and that are in the seq_has.  Presumably the iterator will take care
  765:     # of the random ordering part of the deal.
  766:     my $curres;
  767:     while ($curres = $iterator->next()) {
  768: 	#
  769: 	#  Only process resources..that are not removed by randomout...
  770: 	#  and are selected for printint as well.
  771: 	#
  772: 
  773:         if (ref($curres) && ! $curres->randomout()) {
  774:             my $currsymb = $curres->symb();
  775:             if (exists($seq_hash{$currsymb})) {
  776:                 push(@output_seq, $currsymb);
  777: 	    }
  778: 	}
  779:     }
  780: 
  781:     return \@output_seq;		# for now.
  782:     
  783: }
  784: 
  785: 
  786: # Fetch the contents of a resource, uninterpreted.
  787: # This is used here to fetch a latex file to be included
  788: # verbatim into the printout<
  789: # NOTE: Ask Guy if there is a lonnet function similar to this?
  790: #
  791: # Parameters:
  792: #   URL of the file
  793: #
  794: sub fetch_raw_resource {
  795:     my ($url) = @_;
  796: 
  797:     my $filename  = &Apache::lonnet::filelocation("", $url);
  798:     my $contents  = &Apache::lonnet::getfile($filename);
  799: 
  800:     if ($contents == -1) {
  801: 	return "File open failed for $filename";      # This will bomb the print.
  802:     }
  803:     return $contents;
  804: 
  805:     
  806: }
  807: 
  808: #  Fetch the annotations associated with a URL and 
  809: #  put a centered 'annotations:' title.
  810: #  This is all suppressed if the annotations are empty.
  811: #
  812: sub annotate {
  813:     my ($symb) = @_;
  814: 
  815:     my $annotation_text = &Apache::loncommon::get_annotation($symb, 1);
  816: 
  817: 
  818:     my $result = "";
  819: 
  820:     if (length($annotation_text) > 0) {
  821: 	$result .= '\\hspace*{\\fill} \\\\[\\baselineskip] \textbf{Annotations:} \\\\ ';
  822: 	$result .= "\n";
  823: 	$result .= &Apache::lonxml::latex_special_symbols($annotation_text,"");	# Escape latex.
  824: 	$result .= "\n\n";
  825:     }
  826:     return $result;
  827: }
  828: 
  829: #
  830: #   Set a global document font size:
  831: #   This is done by replacing \begin{document}
  832: #   with \begin{document}{\some-font-directive
  833: #   and \end{document} with
  834: #   }\end{document
  835: #
  836: sub set_font_size {
  837: 
  838:     my ($text) = @_;
  839: 
  840:     # There appear to be cases where the font directive is empty.. in which
  841:     # case the first substituion would  insert a spurious \ oh happy day.
  842:     # as this has been the cause of much mystery and hair pulling _sigh_
  843: 
  844:     if ($font_size ne '') {
  845: 
  846: 	$text =~ s/\\begin{document}/\\begin{document}{\\$font_size/;
  847:     }
  848:     $text =~ s/\\end{document}/}\\end{document}/;
  849:     return $text;
  850: 
  851: 
  852: }
  853: 
  854: # include_pdf - PDF files are included into the 
  855: # output as follows:
  856: #  - The PDF, if necessary, is replicated.
  857: #  - The PDF is added to the list of files to convert to postscript (along with the images).
  858: #  - The LaTeX is added to include the final converted postscript in the file as an included
  859: #    job.  The assumption is that the includedpsheader.ps header will be included.
  860: #
  861: # Parameters:
  862: #   pdf_uri   - URI of the PDF file to include.
  863: #   
  864: # Returns:
  865: #  The LaTeX to include.
  866: #
  867: # Assumptions:
  868: #    The uri is actually a PDF file
  869: #    The postscript will have the includepsheader.ps included.
  870: #
  871: #
  872: sub include_pdf {
  873:     my ($pdf_uri) = @_;
  874: 
  875:     # Where is the file? If not local we'll need to repcopy it:'
  876: 
  877:     my $file = &Apache::lonnet::filelocation('', $pdf_uri);
  878:     if (! -e $file) {
  879: 	&Apache::lonnet::repcopy($file);
  880: 	$file = &Apache::lonnet::filelocation('',$pdf_uri);
  881:     }
  882: 
  883:     #  The file isn ow replicated locally.. or it did not exist in the first place
  884:     # (unlikely).  If it did exist, add the pdf to the set of files/images that
  885:     # need tob e converted for this print job:
  886: 
  887:     my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
  888:     $file =~ s{(.*)/res/}{$londocroot/res/};
  889: 
  890:     open(FILE,">>$Apache::lonnet::perlvar{'lonPrtDir'}/$env{'user.name'}_$env{'user.domain'}_printout.dat");
  891:     print FILE ("$file\n");
  892:     close (FILE);
  893: 
  894:     # Construct the special to put out.  To do this we need to get the
  895:     # resulting filename after conversion.  The file will have the same name
  896:     # but will be in the user's spool directory with converted images.
  897: 
  898:     my $dirname = "/home/httpd/prtspool/$env{'user.name'}/";
  899:     my ( $base, $path,  $ext) = &fileparse($file, '.pdf');
  900: #    my $destname = $dirname.'/'.$base.'.eps'; # Not really an eps but easier in printout.pl
  901:     $base =~ s/ /\_/g;
  902: 
  903: 
  904:     my $output = &print_latex_header();
  905:     $output    .= '\special{ps: _begin_job_ ('
  906: 	.$base.'.pdf.eps'.
  907: 	')run _end_job_}';
  908: 
  909:     return $output;
  910: 
  911: 
  912: }
  913: ##
  914: #  Collect the various \select_language{language_name}
  915: #  latex tags to build a \usepackage[lang-list]{babel} which will
  916: #  appear just prior to the \begin{document} at the front of the concatenated
  917: #  set of resources:
  918: # @param doc - The string of latex to search/replace.
  919: # @return string
  920: # @retval - the modified document stringt.
  921: #
  922: sub collect_languages {
  923:     my $doc = shift;
  924:     my %languages;
  925:     while ($doc =~ /\\selectlanguage{(\w+)}/mg) {
  926: 	$languages{$1} = 1;	# allows us to request each language exactly once.
  927:     }
  928:     my @lang_list = (keys(%languages)); # List of unique languages
  929:     if (scalar @lang_list) {
  930: 	my $babel_header = '\usepackage[' . join(',', @lang_list) .']{babel}'. "\n";
  931: 	$doc =~ s/\\begin{document}/$babel_header\\begin{document}/;
  932:     }
  933:     return $doc;
  934: }
  935: #-------------------------------------------------------------------
  936: 
  937: #
  938: #   ssi_with_retries- Does the server side include of a resource.
  939: #                      if the ssi call returns an error we'll retry it up to
  940: #                      the number of times requested by the caller.
  941: #                      If we still have a proble, no text is appended to the
  942: #                      output and we set some global variables.
  943: #                      to indicate to the caller an SSI error occurred.  
  944: #                      All of this is supposed to deal with the issues described
  945: #                      in LonCAPA BZ 5631 see:
  946: #                      http://bugs.lon-capa.org/show_bug.cgi?id=5631
  947: #                      by informing the user that this happened.
  948: #
  949: # Parameters:
  950: #   resource   - The resource to include.  This is passed directly, without
  951: #                interpretation to lonnet::ssi.
  952: #   form       - The form hash parameters that guide the interpretation of the resource
  953: #                
  954: #   retries    - Number of retries allowed before giving up completely.
  955: # Returns:
  956: #   On success, returns the rendered resource identified by the resource parameter.
  957: # Side Effects:
  958: #   The following global variables can be set:
  959: #    ssi_error                - If an unrecoverable error occurred this becomes true.
  960: #                               It is up to the caller to initialize this to false
  961: #                               if desired.
  962: #    ssi_last_error_resource  - If an unrecoverable error occurred, this is the value
  963: #                               of the resource that could not be rendered by the ssi
  964: #                               call.
  965: #    ssi_last_error           - The error string fetched from the ssi response
  966: #                               in the event of an error.
  967: #
  968: sub ssi_with_retries {
  969:     my ($resource, $retries, %form) = @_;
  970: 
  971:     my $target = $form{'grade_target'};
  972:     my $aom    = $form{'answer_output_mode'};
  973: 
  974: 
  975: 
  976:     my ($content, $response) = &Apache::loncommon::ssi_with_retries($resource, $retries, %form);
  977:     if (!$response->is_success) {
  978: 	$ssi_error               = 1;
  979: 	$ssi_last_error_resource = $resource;
  980: 	$ssi_last_error          = $response->code . " " . $response->message;
  981:         $content='\section*{!!! An error occurred !!!}';	
  982:     }
  983: 
  984:     return $content;
  985: 
  986: }
  987: 
  988: sub get_student_view_with_retries {
  989:     my ($curresline,$retries,$username,$userdomain,$courseid,$target,$moreenv)=@_;
  990: 
  991:     my ($content, $response) = &Apache::loncommon::get_student_view_with_retries($curresline,$retries,$username,$userdomain,$courseid,$target,$moreenv);
  992:     if (!$response->is_success) {
  993:         $ssi_error               = 1;
  994:         $ssi_last_error_resource = $curresline.' for user '.$username.':'.$userdomain;
  995:         $ssi_last_error          = $response->code . " " . $response->message;
  996:         $content='\section*{!!! An error occurred !!!}';
  997:     }
  998:     return $content;
  999: 
 1000: }
 1001: 
 1002: #
 1003: #   printf_style_subst  item format_string repl
 1004: #  
 1005: # Does printf style substitution for a format string that
 1006: # can have %[n]item in it.. wherever, %[n]item occurs,
 1007: # rep is substituted in format_string.  Note that
 1008: # [n] is an optional integer length.  If provided,
 1009: # repl is truncated to at most [n] characters prior to 
 1010: # substitution.
 1011: #
 1012: sub printf_style_subst {
 1013:     my ($item, $format_string, $repl) = @_;
 1014:     my $result = "";
 1015:     while ($format_string =~ /(%)(\d*)\Q$item\E/g ) {
 1016: 	my $fmt = $1;
 1017: 	my $size = $2;
 1018: 	my $subst = $repl;
 1019: 	if ($size ne "") {
 1020: 	    $subst = substr($subst, 0, $size);
 1021: 	    
 1022: 	    #  Here's a nice edge case.. supose the end of the
 1023: 	    #  substring is a \.  In that case may have  just
 1024: 	    #  chopped off a TeX escape... in that case, we append
 1025: 	    #   " " for the trailing character, and let the field 
 1026: 	    #  spill over a bit (sigh).
 1027: 	    #  We don't just chop off the last character in order to deal
 1028: 	    #  with one last pathology, and that would be if substr had
 1029: 	    #  trimmed us to e.g. \\\  
 1030: 
 1031: 
 1032: 	    if ($subst =~ /\\$/) {
 1033: 		$subst .= " ";
 1034: 	    }
 1035: 	}
 1036: 	my $item_pos = pos($format_string);
 1037: 	$result .= substr($format_string, 0, $item_pos - length($size) -2) . $subst;
 1038:         $format_string = substr($format_string, pos($format_string));
 1039:     }
 1040: 
 1041:     # Put the residual format string into the result:
 1042: 
 1043:     $result .= $format_string;
 1044: 
 1045:     return $result;
 1046: }
 1047: 
 1048: 
 1049: # Format a header according to a format.  
 1050: # 
 1051: 
 1052: # Substitutions:
 1053: #     %a    - Assignment name.
 1054: #     %c    - Course name.
 1055: #     %n    - Student name.
 1056: #     %s    - The section if it is supplied.
 1057: #
 1058: sub format_page_header {
 1059:     my ($width, $format, $assignment, $course, $student) = @_;
 1060: 
 1061: 
 1062: 
 1063:     $width = &recalcto_mm($width); # Get width in mm.
 1064:     my $chars_per_line = int($width/2);   # Character/textline.
 1065: 
 1066:     #  Default format?
 1067: 
 1068:     if ($format eq '') {
 1069: 	# For the default format, we may need to truncate
 1070: 	# elements..  To do this we need to get the page width.
 1071: 	# we assume that each character is about 2mm in width.
 1072: 	# (correct for the header text size??).  We ignore
 1073: 	# any formatting (e.g. boldfacing in this).
 1074: 	# 
 1075: 	# - Allow the student/course to be one line.
 1076: 	#   but only truncate the course.
 1077: 	# - Allow the assignment to be 2 lines (wrapped).
 1078: 	#
 1079: 
 1080:         my $firstline = "$student $course";
 1081:         if (length($firstline) > $chars_per_line) {
 1082:             my $lastchar = $chars_per_line - length($student) - 1;
 1083:             if ($lastchar > 0) {
 1084:                 $course = substr($course, 0, $lastchar);
 1085:             } else {            # Nothing left of course:
 1086:                 $course = '';
 1087:             }
 1088:         }
 1089:         if (length($assignment) > $chars_per_line) {
 1090:             $assignment = substr($assignment, 0, $chars_per_line);
 1091:         }
 1092: 
 1093:         $format =  "\\textbf{$student} $course \\hfill \\thepage \\\\ \\textit{$assignment}";
 1094: 
 1095:     } else {
 1096:         # An open question is how to handle long user formatted page headers...
 1097:         # A possible future is to support e.g. %na so that the user can control
 1098:         # the truncation of the elements that can appear in the header.
 1099:         #
 1100:         $format =  &printf_style_subst("a", $format, $assignment);
 1101:         $format =  &printf_style_subst("c", $format, $course);
 1102:         $format =  &printf_style_subst("n", $format, $student);
 1103: 
 1104:         # If the user put %'s in the format string, they must be escaped
 1105:         # to \% else LaTeX will think they are comments and terminate
 1106:         # the line.. which is bad!!!
 1107: 
 1108:     }
 1109: 
 1110:     return $format;
 1111: 
 1112:     
 1113:     # If the user has role author, $course and $assignment are empty so
 1114:     # there is '\\ \\ ' in the page header. That's cause a error in LaTeX
 1115:     if($format =~ /\\\\\s\\\\\s/) {
 1116:         #TODO find sensible caption for page header
 1117:         my $testPrintout = '\\\\'.&mt('Authoring Space').' \\\\'.&mt('Test-Printout ');
 1118:         $format =~ s/\\\\\s\\\\\s/$testPrintout/;
 1119:     }
 1120:     #
 1121:     #  We're going to trust LaTeX to break lines appropriately, but
 1122:     #  we'll truncate anything that's more than 3 lines worth of
 1123:     # text.  This is also assuming (which will probably end badly)
 1124:     # nobody's going to embed LaTeX control sequences in the title
 1125:     # header or rather that those control sequences won't get broken
 1126:     # by the stuff below.
 1127:     #
 1128:     my $total_length = 3*$chars_per_line;
 1129:     if (length($format) > $total_length) {
 1130: 	$format = substr($format, 0, $total_length);
 1131:     }
 1132: 
 1133: 
 1134:     return $format;
 1135:     
 1136: }
 1137: 
 1138: #
 1139: #   Convert a numeric code to letters
 1140: #
 1141: sub num_to_letters {
 1142:     my ($num) = @_;
 1143:     my @nums= split('',$num);
 1144:     my @num_to_let=('A'..'Z');
 1145:     my $word;
 1146:     foreach my $digit (@nums) { $word.=$num_to_let[$digit]; }
 1147:     return $word;
 1148: }
 1149: #   Convert a letter code to numeric.
 1150: #
 1151: sub letters_to_num {
 1152:     my ($letters) = @_;
 1153:     my @letters = split('', uc($letters));
 1154:    my %substitution;
 1155:     my $digit = 0;
 1156:     foreach my $letter ('A'..'J') {
 1157: 	$substitution{$letter} = $digit;
 1158: 	$digit++;
 1159:     }
 1160:     #  The substitution is done as below to preserve leading
 1161:     #  zeroes which are needed to keep the code size exact
 1162:     #
 1163:     my $result ="";
 1164:     foreach my $letter (@letters) {
 1165: 	$result.=$substitution{$letter};
 1166:     }
 1167:     return $result;
 1168: }
 1169: 
 1170: #  Determine if a code is a valid numeric code.  Valid
 1171: #  numeric codes must be comprised entirely of digits and
 1172: #  have a correct number of digits.
 1173: #
 1174: #  Parameters:
 1175: #     value      - proposed code value.
 1176: #     num_digits - Number of digits required.
 1177: #
 1178: sub is_valid_numeric_code {
 1179:     my ($value, $num_digits) = @_;
 1180:     #   Remove leading/trailing whitespace;
 1181:     $value =~ s/^\s*//g;
 1182:     $value =~ s/\s*$//g;
 1183:     
 1184:     #  All digits?
 1185:     if ($value !~ /^[0-9]+$/) {
 1186: 	return "Numeric code $value has invalid characters - must only be digits";
 1187:     }
 1188:     if (length($value) != $num_digits) {
 1189: 	return "Numeric code $value incorrect number of digits (correct = $num_digits)";
 1190:     }
 1191:     return undef;
 1192: }
 1193: #   Determines if a code is a valid alhpa code.  Alpha codes
 1194: #   are ciphers that map  [A-J,a-j] -> 0..9 0..9.
 1195: #   They also have a correct digit count.
 1196: # Parameters:
 1197: #     value          - Proposed code value.
 1198: #     num_letters    - correct number of letters.
 1199: # Note:
 1200: #    leading and trailing whitespace are ignored.
 1201: #
 1202: sub is_valid_alpha_code {
 1203:     my ($value, $num_letters) = @_;
 1204:     
 1205:      # strip leading and trailing spaces.
 1206: 
 1207:     $value =~ s/^\s*//g;
 1208:     $value =~ s/\s*$//g;
 1209: 
 1210:     #  All alphas in the right range?
 1211:     if ($value !~ /^[A-J,a-j]+$/) {
 1212: 	return "Invalid letter code $value must only contain A-J";
 1213:     }
 1214:     if (length($value) != $num_letters) {
 1215: 	return "Letter code $value has incorrect number of letters (correct = $num_letters)";
 1216:     }
 1217:     return undef;
 1218: }
 1219: 
 1220: #   Determine if a code entered by the user in a helper is valid.
 1221: #   valid depends on the code type and the type of code selected.
 1222: #   The type of code selected can either be numeric or 
 1223: #   Alphabetic.  If alphabetic, the code, in fact is a simple
 1224: #   substitution cipher for the actual numeric code: 0->A, 1->B ...
 1225: #   We'll be nice and be case insensitive for alpha codes.
 1226: # Parameters:
 1227: #    code_value    - the value of the code the user typed in.
 1228: #    code_option   - The code type selected from the set in the scantron format
 1229: #                    table.
 1230: # Returns:
 1231: #    undef         - The code is valid.
 1232: #    other         - An error message indicating what's wrong.
 1233: #
 1234: sub is_code_valid {
 1235:     my ($code_value, $code_option) = @_;
 1236:     my ($code_type, $code_length) = ('letter', 6);	# defaults.
 1237:     my @lines = &Apache::grades::get_scantronformat_file();
 1238:     foreach my $line (@lines) {
 1239:         next if (($line =~ /^\#/) || ($line eq ''));
 1240: 	my ($name, $type, $length) = (split(/:/, $line))[0,2,4];
 1241: 	if($name eq $code_option) {
 1242: 	    $code_length = $length;
 1243: 	    if($type eq 'number') {
 1244: 		$code_type = 'number';
 1245: 	    }
 1246: 	}
 1247:     }
 1248:     my $valid;
 1249:     if ($code_type eq 'number') {
 1250: 	return &is_valid_numeric_code($code_value, $code_length);
 1251:     } else {
 1252: 	return &is_valid_alpha_code($code_value, $code_length);
 1253:     }
 1254: 
 1255: }
 1256: #
 1257: # Compare two students by section (Used to sort by section).
 1258: #
 1259: #  Implicit inputs, 
 1260: #    $a - The first one
 1261: #    $b - The second one.
 1262: #
 1263: #  Returns:
 1264: #     a-section cmp b-section
 1265: #
 1266: sub compare_sections {
 1267:     my ($u1, $d1, $s1, $n1, $stat1) = split(/:/, $a);
 1268:     my ($u2, $d2, $s2, $n2, $stat2) = split(/:/, $b);
 1269: 
 1270:     return $s1 cmp $s2;
 1271: }
 1272: 
 1273: #   Compare two students by name.  The students are in the form
 1274: #   returned by the helper:
 1275: #      user:domain:section:last,   first:status
 1276: #   This is a helper function for the perl sort built-in  therefore:
 1277: # Implicit Inputs:
 1278: #    $a     - The first element to compare (global)
 1279: #    $b     - The second element to compare (global)
 1280: # Returns:
 1281: #   -1   - $a < $b
 1282: #    0   - $a == $b
 1283: #   +1   - $a > $b
 1284: #   Note that the initial comparison is done on the last names with the
 1285: #   first names only used to break the tie.
 1286: #
 1287: #
 1288: sub compare_names {
 1289:     #  First split the names up into the primary fields.
 1290: 
 1291:     my ($u1, $d1, $s1, $n1, $stat1) = split(/:/, $a);
 1292:     my ($u2, $d2, $s2, $n2, $stat2) = split(/:/, $b);
 1293: 
 1294:     # Now split the last name and first name of each n:
 1295:     #
 1296: 
 1297:     my ($l1,$f1) = split(/,/, $n1);
 1298:     my ($l2,$f2) = split(/,/, $n2);
 1299: 
 1300:     # We don't bother to remove the leading/trailing whitespace from the
 1301:     # firstname, unless the last names compare identical.
 1302: 
 1303:     if($l1 lt $l2) {
 1304: 	return -1;
 1305:     }
 1306:     if($l1 gt $l2) {
 1307: 	return  1;
 1308:     }
 1309: 
 1310:     # Break the tie on the first name, but there are leading (possibly trailing
 1311:     # whitespaces to get rid of first 
 1312:     #
 1313:     $f1 =~ s/^\s+//;		# Remove leading...
 1314:     $f1 =~ s/\s+$//;		# Trailing spaces from first 1...
 1315:     
 1316:     $f2 =~ s/^\s+//;
 1317:     $f2 =~ s/\s+$//;		# And the same for first 2...
 1318: 
 1319:     if($f1 lt $f2) {
 1320: 	return -1;
 1321:     }
 1322:     if($f1 gt $f2) {
 1323: 	return 1;
 1324:     }
 1325:     
 1326:     #  Must be the same name.
 1327: 
 1328:     return 0;
 1329: }
 1330: 
 1331: sub latex_header_footer_remove {
 1332:     my $text = shift;
 1333:     $text =~ s/\\end{document}//;
 1334:     $text =~ s/\\documentclass([^&]*)\\begin{document}//;
 1335:     return $text;
 1336: }
 1337: #
 1338: #  If necessary, encapsulate text inside 
 1339: #  a minipage env.
 1340: #  necessity is determined by the problem_split param.
 1341: #
 1342: sub encapsulate_minipage {
 1343:     my ($text) = @_;
 1344:     if (!($env{'form.problem.split'} =~ /yes/i)) {
 1345: 	$text = '\begin{minipage}{\textwidth}'.$text.'\end{minipage}';
 1346:     }
 1347:     return $text;
 1348: }
 1349: #
 1350: #  The NUMBER_TO_PRINT and SPLIT_PDFS
 1351: #  variables interact, this sub looks at these two parameters
 1352: #  and comes up with a final value for NUMBER_TO_PRINT which can be:
 1353: #     all     - if SPLIT_PDFS eq 'all'.
 1354: #     1       - if SPLIT_PDFS eq 'oneper'
 1355: #     section - if SPLIT_PDFS eq 'sections'
 1356: #     <unchanged> - if SPLIT_PDFS eq 'usenumber'
 1357: #
 1358: sub adjust_number_to_print {
 1359:     my $helper = shift;
 1360: 
 1361:     my $split_pdf = $helper->{'VARS'}->{'SPLIT_PDFS'};
 1362:     
 1363:     if ($split_pdf eq 'all') {
 1364: 	$helper->{'VARS'}->{'NUMBER_TO_PRINT'} = 'all';
 1365:     } elsif ($split_pdf eq 'oneper') {
 1366: 	$helper->{'VARS'}->{'NUMBER_TO_PRINT'} = 1;
 1367:     } elsif ($split_pdf eq 'sections') {
 1368: 	$helper->{'VARS'}->{'NUMBER_TO_PRINT'} = 'section';
 1369:     } elsif ($split_pdf eq 'usenumber') {
 1370: 	#  Unmodified.
 1371:     } else {
 1372: 	# Error!!!!
 1373: 	
 1374: 	croak "bad SPLIT_PDFS: $split_pdf in lonprintout::adjust_number_to_print";
 1375: 
 1376:     }
 1377: }
 1378: 
 1379: 
 1380: sub character_chart {
 1381:     my $result = shift;
 1382:     return  &Apache::entities::replace_entities($result);
 1383: }
 1384: 
 1385: sub old_character_chart {
 1386:     my $result = shift;	
 1387:     $result =~ s/&\#0?0?(7|9);//g;
 1388:     $result =~ s/&\#0?(10|13);//g;
 1389:     $result =~ s/&\#0?32;/ /g;
 1390:     $result =~ s/&\#0?33;/!/g;
 1391:     $result =~ s/&(\#0?34|quot);/\"/g;
 1392:     $result =~ s/&\#0?35;/\\\#/g;
 1393:     $result =~ s/&\#0?36;/\\\$/g;
 1394:     $result =~ s/&\#0?37;/\\%/g; 
 1395:     $result =~ s/&(\#0?38|amp);/\\&/g; 
 1396:     $result =~ s/&\#(0?39|146);/\'/g;
 1397:     $result =~ s/&\#0?40;/(/g;
 1398:     $result =~ s/&\#0?41;/)/g;
 1399:     $result =~ s/&\#0?42;/\*/g;
 1400:     $result =~ s/&\#0?43;/\+/g;
 1401:     $result =~ s/&\#(0?44|130);/,/g;
 1402:     $result =~ s/&\#0?45;/-/g;
 1403:     $result =~ s/&\#0?46;/\./g;
 1404:     $result =~ s/&\#0?47;/\//g;
 1405:     $result =~ s/&\#0?48;/0/g;
 1406:     $result =~ s/&\#0?49;/1/g;
 1407:     $result =~ s/&\#0?50;/2/g;
 1408:     $result =~ s/&\#0?51;/3/g;
 1409:     $result =~ s/&\#0?52;/4/g;
 1410:     $result =~ s/&\#0?53;/5/g;
 1411:     $result =~ s/&\#0?54;/6/g;
 1412:     $result =~ s/&\#0?55;/7/g;
 1413:     $result =~ s/&\#0?56;/8/g;
 1414:     $result =~ s/&\#0?57;/9/g;
 1415:     $result =~ s/&\#0?58;/:/g;
 1416:     $result =~ s/&\#0?59;/;/g;
 1417:     $result =~ s/&(\#0?60|lt|\#139);/\$<\$/g;
 1418:     $result =~ s/&\#0?61;/\\ensuremath\{=\}/g;
 1419:     $result =~ s/&(\#0?62|gt|\#155);/\\ensuremath\{>\}/g;
 1420:     $result =~ s/&\#0?63;/\?/g;
 1421:     $result =~ s/&\#0?65;/A/g;
 1422:     $result =~ s/&\#0?66;/B/g;
 1423:     $result =~ s/&\#0?67;/C/g;
 1424:     $result =~ s/&\#0?68;/D/g;
 1425:     $result =~ s/&\#0?69;/E/g;
 1426:     $result =~ s/&\#0?70;/F/g;
 1427:     $result =~ s/&\#0?71;/G/g;
 1428:     $result =~ s/&\#0?72;/H/g;
 1429:     $result =~ s/&\#0?73;/I/g;
 1430:     $result =~ s/&\#0?74;/J/g;
 1431:     $result =~ s/&\#0?75;/K/g;
 1432:     $result =~ s/&\#0?76;/L/g;
 1433:     $result =~ s/&\#0?77;/M/g;
 1434:     $result =~ s/&\#0?78;/N/g;
 1435:     $result =~ s/&\#0?79;/O/g;
 1436:     $result =~ s/&\#0?80;/P/g;
 1437:     $result =~ s/&\#0?81;/Q/g;
 1438:     $result =~ s/&\#0?82;/R/g;
 1439:     $result =~ s/&\#0?83;/S/g;
 1440:     $result =~ s/&\#0?84;/T/g;
 1441:     $result =~ s/&\#0?85;/U/g;
 1442:     $result =~ s/&\#0?86;/V/g;
 1443:     $result =~ s/&\#0?87;/W/g;
 1444:     $result =~ s/&\#0?88;/X/g;
 1445:     $result =~ s/&\#0?89;/Y/g;
 1446:     $result =~ s/&\#0?90;/Z/g;
 1447:     $result =~ s/&\#0?91;/[/g;
 1448:     $result =~ s/&\#0?92;/\\ensuremath\{\\setminus\}/g;
 1449:     $result =~ s/&\#0?93;/]/g;
 1450:     $result =~ s/&\#(0?94|136);/\\ensuremath\{\\wedge\}/g;
 1451:     $result =~ s/&\#(0?95|138|154);/\\underline{\\makebox[2mm]{\\strut}}/g;
 1452:     $result =~ s/&\#(0?96|145);/\`/g;
 1453:     $result =~ s/&\#0?97;/a/g;
 1454:     $result =~ s/&\#0?98;/b/g;
 1455:     $result =~ s/&\#0?99;/c/g;
 1456:     $result =~ s/&\#100;/d/g;
 1457:     $result =~ s/&\#101;/e/g;
 1458:     $result =~ s/&\#102;/f/g;
 1459:     $result =~ s/&\#103;/g/g;
 1460:     $result =~ s/&\#104;/h/g;
 1461:     $result =~ s/&\#105;/i/g;
 1462:     $result =~ s/&\#106;/j/g;
 1463:     $result =~ s/&\#107;/k/g;
 1464:     $result =~ s/&\#108;/l/g;
 1465:     $result =~ s/&\#109;/m/g;
 1466:     $result =~ s/&\#110;/n/g;
 1467:     $result =~ s/&\#111;/o/g;
 1468:     $result =~ s/&\#112;/p/g;
 1469:     $result =~ s/&\#113;/q/g;
 1470:     $result =~ s/&\#114;/r/g;
 1471:     $result =~ s/&\#115;/s/g;
 1472:     $result =~ s/&\#116;/t/g;
 1473:     $result =~ s/&\#117;/u/g;
 1474:     $result =~ s/&\#118;/v/g;
 1475:     $result =~ s/&\#119;/w/g;
 1476:     $result =~ s/&\#120;/x/g;
 1477:     $result =~ s/&\#121;/y/g;
 1478:     $result =~ s/&\#122;/z/g;
 1479:     $result =~ s/&\#123;/\\{/g;
 1480:     $result =~ s/&\#124;/\|/g;
 1481:     $result =~ s/&\#125;/\\}/g;
 1482:     $result =~ s/&\#126;/\~/g;
 1483:     $result =~ s/&\#131;/\\textflorin /g;
 1484:     $result =~ s/&\#132;/\"/g;
 1485:     $result =~ s/&\#133;/\\ensuremath\{\\ldots\}/g;
 1486:     $result =~ s/&\#134;/\\ensuremath\{\\dagger\}/g;
 1487:     $result =~ s/&\#135;/\\ensuremath\{\\ddagger\}/g;
 1488:     $result =~ s/&\#137;/\\textperthousand /g;
 1489:     $result =~ s/&\#140;/{\\OE}/g;
 1490:     $result =~ s/&\#147;/\`\`/g;
 1491:     $result =~ s/&\#148;/\'\'/g;
 1492:     $result =~ s/&\#149;/\\ensuremath\{\\bullet\}/g;
 1493:     $result =~ s/&(\#150|\#8211);/--/g;
 1494:     $result =~ s/&\#151;/---/g;
 1495:     $result =~ s/&\#152;/\\ensuremath\{\\sim\}/g;
 1496:     $result =~ s/&\#153;/\\texttrademark /g;
 1497:     $result =~ s/&\#156;/\\oe/g;
 1498:     $result =~ s/&\#159;/\\\"Y/g;
 1499:     $result =~ s/&(\#160|nbsp);/~/g;
 1500:     $result =~ s/&(\#161|iexcl);/!\`/g;
 1501:     $result =~ s/&(\#162|cent);/\\textcent /g;
 1502:     $result =~ s/&(\#163|pound);/\\pounds /g; 
 1503:     $result =~ s/&(\#164|curren);/\\textcurrency /g;
 1504:     $result =~ s/&(\#165|yen);/\\textyen /g;
 1505:     $result =~ s/&(\#166|brvbar);/\\textbrokenbar /g;
 1506:     $result =~ s/&(\#167|sect);/\\textsection /g;
 1507:     $result =~ s/&(\#168|uml);/\\"\{\} /g;
 1508:     $result =~ s/&(\#169|copy);/\\copyright /g;
 1509:     $result =~ s/&(\#170|ordf);/\\textordfeminine /g;
 1510:     $result =~ s/&(\#172|not);/\\ensuremath\{\\neg\}/g;
 1511:     $result =~ s/&(\#173|shy);/ - /g;
 1512:     $result =~ s/&(\#174|reg);/\\textregistered /g;
 1513:     $result =~ s/&(\#175|macr);/\\ensuremath\{^{-}\}/g;
 1514:     $result =~ s/&(\#176|deg);/\\ensuremath\{^{\\circ}\}/g;
 1515:     $result =~ s/&(\#177|plusmn);/\\ensuremath\{\\pm\}/g;
 1516:     $result =~ s/&(\#178|sup2);/\\ensuremath\{^2\}/g;
 1517:     $result =~ s/&(\#179|sup3);/\\ensuremath\{^3\}/g;
 1518:     $result =~ s/&(\#180|acute);/\\'\{\} /g;
 1519:     $result =~ s/&(\#181|micro);/\\ensuremath\{\\mu\}/g;
 1520:     $result =~ s/&(\#182|para);/\\P/g;
 1521:     $result =~ s/&(\#183|middot);/\\ensuremath\{\\cdot\}/g;
 1522:     $result =~ s/&(\#184|cedil);/\\c{\\strut}/g;
 1523:     $result =~ s/&(\#185|sup1);/\\ensuremath\{^1\}/g;
 1524:     $result =~ s/&(\#186|ordm);/\\textordmasculine /g;
 1525:     $result =~ s/&(\#188|frac14);/\\textonequarter /g;
 1526:     $result =~ s/&(\#189|frac12);/\\textonehalf /g;
 1527:     $result =~ s/&(\#190|frac34);/\\textthreequarters /g;
 1528:     $result =~ s/&(\#191|iquest);/?\`/g;   
 1529:     $result =~ s/&(\#192|Agrave);/\\\`{A}/g;  
 1530:     $result =~ s/&(\#193|Aacute);/\\\'{A}/g; 
 1531:     $result =~ s/&(\#194|Acirc);/\\^{A}/g;
 1532:     $result =~ s/&(\#195|Atilde);/\\~{A}/g;
 1533:     $result =~ s/&(\#196|Auml);/\\\"{A}/g; 
 1534:     $result =~ s/&(\#197|Aring);/{\\AA}/g;
 1535:     $result =~ s/&(\#198|AElig);/{\\AE}/g;
 1536:     $result =~ s/&(\#199|Ccedil);/\\c{c}/g;
 1537:     $result =~ s/&(\#200|Egrave);/\\\`{E}/g;  
 1538:     $result =~ s/&(\#201|Eacute);/\\\'{E}/g;    
 1539:     $result =~ s/&(\#202|Ecirc);/\\^{E}/g;
 1540:     $result =~ s/&(\#203|Euml);/\\\"{E}/g;
 1541:     $result =~ s/&(\#204|Igrave);/\\\`{I}/g;
 1542:     $result =~ s/&(\#205|Iacute);/\\\'{I}/g;    
 1543:     $result =~ s/&(\#206|Icirc);/\\^{I}/g;
 1544:     $result =~ s/&(\#207|Iuml);/\\\"{I}/g;    
 1545:     $result =~ s/&(\#209|Ntilde);/\\~{N}/g;
 1546:     $result =~ s/&(\#210|Ograve);/\\\`{O}/g;
 1547:     $result =~ s/&(\#211|Oacute);/\\\'{O}/g;
 1548:     $result =~ s/&(\#212|Ocirc);/\\^{O}/g;
 1549:     $result =~ s/&(\#213|Otilde);/\\~{O}/g;
 1550:     $result =~ s/&(\#214|Ouml);/\\\"{O}/g;    
 1551:     $result =~ s/&(\#215|times);/\\ensuremath\{\\times\}/g;
 1552:     $result =~ s/&(\#216|Oslash);/{\\O}/g;
 1553:     $result =~ s/&(\#217|Ugrave);/\\\`{U}/g;    
 1554:     $result =~ s/&(\#218|Uacute);/\\\'{U}/g;
 1555:     $result =~ s/&(\#219|Ucirc);/\\^{U}/g;
 1556:     $result =~ s/&(\#220|Uuml);/\\\"{U}/g;
 1557:     $result =~ s/&(\#221|Yacute);/\\\'{Y}/g;
 1558:     $result =~ s/&(\#223|szlig);/{\\ss}/g;
 1559:     $result =~ s/&(\#224|agrave);/\\\`{a}/g;
 1560:     $result =~ s/&(\#225|aacute);/\\\'{a}/g;
 1561:     $result =~ s/&(\#226|acirc);/\\^{a}/g;
 1562:     $result =~ s/&(\#227|atilde);/\\~{a}/g;
 1563:     $result =~ s/&(\#228|auml);/\\\"{a}/g;
 1564:     $result =~ s/&(\#229|aring);/{\\aa}/g;
 1565:     $result =~ s/&(\#230|aelig);/{\\ae}/g;
 1566:     $result =~ s/&(\#231|ccedil);/\\c{c}/g;
 1567:     $result =~ s/&(\#232|egrave);/\\\`{e}/g;
 1568:     $result =~ s/&(\#233|eacute);/\\\'{e}/g;
 1569:     $result =~ s/&(\#234|ecirc);/\\^{e}/g;
 1570:     $result =~ s/&(\#235|euml);/\\\"{e}/g;
 1571:     $result =~ s/&(\#236|igrave);/\\\`{i}/g;
 1572:     $result =~ s/&(\#237|iacute);/\\\'{i}/g;
 1573:     $result =~ s/&(\#238|icirc);/\\^{i}/g;
 1574:     $result =~ s/&(\#239|iuml);/\\\"{i}/g;
 1575:     $result =~ s/&(\#240|eth);/\\ensuremath\{\\partial\}/g;
 1576:     $result =~ s/&(\#241|ntilde);/\\~{n}/g;
 1577:     $result =~ s/&(\#242|ograve);/\\\`{o}/g;
 1578:     $result =~ s/&(\#243|oacute);/\\\'{o}/g;
 1579:     $result =~ s/&(\#244|ocirc);/\\^{o}/g;
 1580:     $result =~ s/&(\#245|otilde);/\\~{o}/g;
 1581:     $result =~ s/&(\#246|ouml);/\\\"{o}/g;
 1582:     $result =~ s/&(\#247|divide);/\\ensuremath\{\\div\}/g;
 1583:     $result =~ s/&(\#248|oslash);/{\\o}/g;
 1584:     $result =~ s/&(\#249|ugrave);/\\\`{u}/g; 
 1585:     $result =~ s/&(\#250|uacute);/\\\'{u}/g;
 1586:     $result =~ s/&(\#251|ucirc);/\\^{u}/g;
 1587:     $result =~ s/&(\#252|uuml);/\\\"{u}/g;
 1588:     $result =~ s/&(\#253|yacute);/\\\'{y}/g;
 1589:     $result =~ s/&(\#255|yuml);/\\\"{y}/g;
 1590:     $result =~ s/&\#295;/\\ensuremath\{\\hbar\}/g;
 1591:     $result =~ s/&\#952;/\\ensuremath\{\\theta\}/g;
 1592: #Greek Alphabet
 1593:     $result =~ s/&(alpha|\#945);/\\ensuremath\{\\alpha\}/g;
 1594:     $result =~ s/&(beta|\#946);/\\ensuremath\{\\beta\}/g;
 1595:     $result =~ s/&(gamma|\#947);/\\ensuremath\{\\gamma\}/g;
 1596:     $result =~ s/&(delta|\#948);/\\ensuremath\{\\delta\}/g;
 1597:     $result =~ s/&(epsilon|\#949);/\\ensuremath\{\\epsilon\}/g;
 1598:     $result =~ s/&(zeta|\#950);/\\ensuremath\{\\zeta\}/g;
 1599:     $result =~ s/&(eta|\#951);/\\ensuremath\{\\eta\}/g;
 1600:     $result =~ s/&(theta|\#952);/\\ensuremath\{\\theta\}/g;
 1601:     $result =~ s/&(iota|\#953);/\\ensuremath\{\\iota\}/g;
 1602:     $result =~ s/&(kappa|\#954);/\\ensuremath\{\\kappa\}/g;
 1603:     $result =~ s/&(lambda|\#955);/\\ensuremath\{\\lambda\}/g;
 1604:     $result =~ s/&(mu|\#956);/\\ensuremath\{\\mu\}/g;
 1605:     $result =~ s/&(nu|\#957);/\\ensuremath\{\\nu\}/g;
 1606:     $result =~ s/&(xi|\#958);/\\ensuremath\{\\xi\}/g;
 1607:     $result =~ s/&(omicron|\#959);/o/g;
 1608:     $result =~ s/&(pi|\#960);/\\ensuremath\{\\pi\}/g;
 1609:     $result =~ s/&(rho|\#961);/\\ensuremath\{\\rho\}/g;
 1610:     $result =~ s/&(sigma|\#963);/\\ensuremath\{\\sigma\}/g;
 1611:     $result =~ s/&(tau|\#964);/\\ensuremath\{\\tau\}/g;
 1612:     $result =~ s/&(upsilon|\#965);/\\ensuremath\{\\upsilon\}/g;
 1613:     $result =~ s/&(phi|\#966);/\\ensuremath\{\\phi\}/g;
 1614:     $result =~ s/&(chi|\#967);/\\ensuremath\{\\chi\}/g;
 1615:     $result =~ s/&(psi|\#968);/\\ensuremath\{\\psi\}/g;
 1616:     $result =~ s/&(omega|\#969);/\\ensuremath\{\\omega\}/g;
 1617:     $result =~ s/&(thetasym|\#977);/\\ensuremath\{\\vartheta\}/g;
 1618:     $result =~ s/&(piv|\#982);/\\ensuremath\{\\varpi\}/g;
 1619:     $result =~ s/&(Alpha|\#913);/A/g;
 1620:     $result =~ s/&(Beta|\#914);/B/g;
 1621:     $result =~ s/&(Gamma|\#915);/\\ensuremath\{\\Gamma\}/g;
 1622:     $result =~ s/&(Delta|\#916);/\\ensuremath\{\\Delta\}/g;
 1623:     $result =~ s/&(Epsilon|\#917);/E/g;
 1624:     $result =~ s/&(Zeta|\#918);/Z/g;
 1625:     $result =~ s/&(Eta|\#919);/H/g;
 1626:     $result =~ s/&(Theta|\#920);/\\ensuremath\{\\Theta\}/g;
 1627:     $result =~ s/&(Iota|\#921);/I/g;
 1628:     $result =~ s/&(Kappa|\#922);/K/g;
 1629:     $result =~ s/&(Lambda|\#923);/\\ensuremath\{\\Lambda\}/g;
 1630:     $result =~ s/&(Mu|\#924);/M/g;
 1631:     $result =~ s/&(Nu|\#925);/N/g;
 1632:     $result =~ s/&(Xi|\#926);/\\ensuremath\{\\Xi\}/g;
 1633:     $result =~ s/&(Omicron|\#927);/O/g;
 1634:     $result =~ s/&(Pi|\#928);/\\ensuremath\{\\Pi\}/g;
 1635:     $result =~ s/&(Rho|\#929);/P/g;
 1636:     $result =~ s/&(Sigma|\#931);/\\ensuremath\{\\Sigma\}/g;
 1637:     $result =~ s/&(Tau|\#932);/T/g;
 1638:     $result =~ s/&(Upsilon|\#933);/\\ensuremath\{\\Upsilon\}/g;
 1639:     $result =~ s/&(Phi|\#934);/\\ensuremath\{\\Phi\}/g;
 1640:     $result =~ s/&(Chi|\#935);/X/g;
 1641:     $result =~ s/&(Psi|\#936);/\\ensuremath\{\\Psi\}/g;
 1642:     $result =~ s/&(Omega|\#937);/\\ensuremath\{\\Omega\}/g;
 1643: #Arrows (extended HTML 4.01)
 1644:     $result =~ s/&(larr|\#8592);/\\ensuremath\{\\leftarrow\}/g;
 1645:     $result =~ s/&(uarr|\#8593);/\\ensuremath\{\\uparrow\}/g;
 1646:     $result =~ s/&(rarr|\#8594);/\\ensuremath\{\\rightarrow\}/g;
 1647:     $result =~ s/&(darr|\#8595);/\\ensuremath\{\\downarrow\}/g;
 1648:     $result =~ s/&(harr|\#8596);/\\ensuremath\{\\leftrightarrow\}/g;
 1649:     $result =~ s/&(lArr|\#8656);/\\ensuremath\{\\Leftarrow\}/g;
 1650:     $result =~ s/&(uArr|\#8657);/\\ensuremath\{\\Uparrow\}/g;
 1651:     $result =~ s/&(rArr|\#8658);/\\ensuremath\{\\Rightarrow\}/g;
 1652:     $result =~ s/&(dArr|\#8659);/\\ensuremath\{\\Downarrow\}/g;
 1653:     $result =~ s/&(hArr|\#8660);/\\ensuremath\{\\Leftrightarrow\}/g;
 1654: #Mathematical Operators (extended HTML 4.01)
 1655:     $result =~ s/&(forall|\#8704);/\\ensuremath\{\\forall\}/g;
 1656:     $result =~ s/&(part|\#8706);/\\ensuremath\{\\partial\}/g;
 1657:     $result =~ s/&(exist|\#8707);/\\ensuremath\{\\exists\}/g;
 1658:     $result =~ s/&(empty|\#8709);/\\ensuremath\{\\emptyset\}/g;
 1659:     $result =~ s/&(nabla|\#8711);/\\ensuremath\{\\nabla\}/g;
 1660:     $result =~ s/&(isin|\#8712);/\\ensuremath\{\\in\}/g;
 1661:     $result =~ s/&(notin|\#8713);/\\ensuremath\{\\notin\}/g;
 1662:     $result =~ s/&(ni|\#8715);/\\ensuremath\{\\ni\}/g;
 1663:     $result =~ s/&(prod|\#8719);/\\ensuremath\{\\prod\}/g;
 1664:     $result =~ s/&(sum|\#8721);/\\ensuremath\{\\sum\}/g;
 1665:     $result =~ s/&(minus|\#8722);/\\ensuremath\{-\}/g;
 1666:     $result =~ s/–/\\ensuremath\{-\}/g;
 1667:     $result =~ s/&(lowast|\#8727);/\\ensuremath\{*\}/g;
 1668:     $result =~ s/&(radic|\#8730);/\\ensuremath\{\\surd\}/g;
 1669:     $result =~ s/&(prop|\#8733);/\\ensuremath\{\\propto\}/g;
 1670:     $result =~ s/&(infin|\#8734);/\\ensuremath\{\\infty\}/g;
 1671:     $result =~ s/&(ang|\#8736);/\\ensuremath\{\\angle\}/g;
 1672:     $result =~ s/&(and|\#8743);/\\ensuremath\{\\wedge\}/g;
 1673:     $result =~ s/&(or|\#8744);/\\ensuremath\{\\vee\}/g;
 1674:     $result =~ s/&(cap|\#8745);/\\ensuremath\{\\cap\}/g;
 1675:     $result =~ s/&(cup|\#8746);/\\ensuremath\{\\cup\}/g;
 1676:     $result =~ s/&(int|\#8747);/\\ensuremath\{\\int\}/g;
 1677:     $result =~ s/&(sim|\#8764);/\\ensuremath\{\\sim\}/g;
 1678:     $result =~ s/&(cong|\#8773);/\\ensuremath\{\\cong\}/g;
 1679:     $result =~ s/&(asymp|\#8776);/\\ensuremath\{\\approx\}/g;
 1680:     $result =~ s/&(ne|\#8800);/\\ensuremath\{\\not=\}/g;
 1681:     $result =~ s/&(equiv|\#8801);/\\ensuremath\{\\equiv\}/g;
 1682:     $result =~ s/&(le|\#8804);/\\ensuremath\{\\leq\}/g;
 1683:     $result =~ s/&(ge|\#8805);/\\ensuremath\{\\geq\}/g;
 1684:     $result =~ s/&(sub|\#8834);/\\ensuremath\{\\subset\}/g;
 1685:     $result =~ s/&(sup|\#8835);/\\ensuremath\{\\supset\}/g;
 1686:     $result =~ s/&(nsub|\#8836);/\\ensuremath\{\\not\\subset\}/g;
 1687:     $result =~ s/&(sube|\#8838);/\\ensuremath\{\\subseteq\}/g;
 1688:     $result =~ s/&(supe|\#8839);/\\ensuremath\{\\supseteq\}/g;
 1689:     $result =~ s/&(oplus|\#8853);/\\ensuremath\{\\oplus\}/g;
 1690:     $result =~ s/&(otimes|\#8855);/\\ensuremath\{\\otimes\}/g;
 1691:     $result =~ s/&(perp|\#8869);/\\ensuremath\{\\perp\}/g;
 1692:     $result =~ s/&(sdot|\#8901);/\\ensuremath\{\\cdot\}/g;
 1693: #Geometric Shapes (extended HTML 4.01)
 1694:     $result =~ s/&(loz|\#9674);/\\ensuremath\{\\Diamond\}/g;
 1695: #Miscellaneous Symbols (extended HTML 4.01)
 1696:     $result =~ s/&(spades|\#9824);/\\ensuremath\{\\spadesuit\}/g;
 1697:     $result =~ s/&(clubs|\#9827);/\\ensuremath\{\\clubsuit\}/g;
 1698:     $result =~ s/&(hearts|\#9829);/\\ensuremath\{\\heartsuit\}/g;
 1699:     $result =~ s/&(diams|\#9830);/\\ensuremath\{\\diamondsuit\}/g;
 1700: #   Chemically useful 'things' contributed by Hon Kie (bug 4652).
 1701: 
 1702:     $result =~ s/&\#8636;/\\ensuremath\{\\leftharpoonup\}/g;
 1703:     $result =~ s/&\#8637;/\\ensuremath\{\\leftharpoondown\}/g;
 1704:     $result =~ s/&\#8640;/\\ensuremath\{\\rightharpoonup\}/g;
 1705:     $result =~ s/&\#8641;/\\ensuremath\{\\rightharpoondown\}/g;
 1706:     $result =~ s/&\#8652;/\\ensuremath\{\\rightleftharpoons\}/g;
 1707:     $result =~ s/&\#8605;/\\ensuremath\{\\leadsto\}/g;
 1708:     $result =~ s/&\#8617;/\\ensuremath\{\\hookleftarrow\}/g;
 1709:     $result =~ s/&\#8618;/\\ensuremath\{\\hookrightarrow\}/g;
 1710:     $result =~ s/&\#8614;/\\ensuremath\{\\mapsto\}/g;
 1711:     $result =~ s/&\#8599;/\\ensuremath\{\\nearrow\}/g;
 1712:     $result =~ s/&\#8600;/\\ensuremath\{\\searrow\}/g;
 1713:     $result =~ s/&\#8601;/\\ensuremath\{\\swarrow\}/g;
 1714:     $result =~ s/&\#8598;/\\ensuremath\{\\nwarrow\}/g;
 1715: 
 1716:     # Left/right quotations:
 1717: 
 1718:     $result =~ s/&(ldquo|#8220);/\`\`/g;
 1719:     $result =~ s/&(rdquo|#8221);/\'\'/g;
 1720: 
 1721: 
 1722: 
 1723:     return $result;
 1724: }
 1725: 
 1726: 
 1727:                   #width, height, oddsidemargin, evensidemargin, topmargin
 1728: my %page_formats=
 1729:     ('letter' => {
 1730: 	 'book' => {
 1731: 	     '1' => [ '7.1 in','9.8 in', '-0.57 in','-0.57 in','0.275 in'],
 1732: 	     '2' => ['3.66 in','9.8 in', '-0.57 in','-0.57 in','0.275 in']
 1733: 	 },
 1734: 	 'album' => {
 1735: 	     '1' => [ '8.8 in', '6.8 in','-0.55 in',  '-0.55 in','0.394 in'],
 1736: 	     '2' => [ '4.8 in', '6.8 in','-0.5 in', '-1.0 in','3.5 in']
 1737: 	 },
 1738:      },
 1739:      'legal' => {
 1740: 	 'book' => {
 1741: 	     '1' => ['7.1 in','13 in',,'-0.57 in','-0.57 in','-0.5 in'],
 1742: 	     '2' => ['3.66 in','13 in','-0.57 in','-0.57 in','-0.5 in']
 1743: 	 },
 1744: 	 'album' => {
 1745: 	     '1' => ['12 in','7.1 in',,'-0.57 in','-0.57 in','-0.5 in'],
 1746:              '2' => ['6.0 in','7.1 in','-1 in','-1 in','5 in']
 1747:           },
 1748:      },
 1749:      'tabloid' => {
 1750: 	 'book' => {
 1751: 	     '1' => ['9.8 in','16 in','-0.57 in','-0.57 in','-0.5 in'],
 1752: 	     '2' => ['4.9 in','16 in','-0.57 in','-0.57 in','-0.5 in']
 1753: 	 },
 1754: 	 'album' => {
 1755: 	     '1' => ['16 in','9.8 in','-0.57 in','-0.57 in','-0.5 in'],
 1756: 	     '2' => ['16 in','4.9 in','-0.57 in','-0.57 in','-0.5 in']
 1757:           },
 1758:      },
 1759:      'executive' => {
 1760: 	 'book' => {
 1761: 	     '1' => ['6.8 in','9 in','-0.57 in','-0.57 in','1.2 in'],
 1762: 	     '2' => ['3.1 in','9 in','-0.57 in','-0.57 in','1.2 in']
 1763: 	 },
 1764: 	 'album' => {
 1765: 	     '1' => [],
 1766: 	     '2' => []
 1767:           },
 1768:      },
 1769:      'a2' => {
 1770: 	 'book' => {
 1771: 	     '1' => [],
 1772: 	     '2' => []
 1773: 	 },
 1774: 	 'album' => {
 1775: 	     '1' => [],
 1776: 	     '2' => []
 1777:           },
 1778:      },
 1779:      'a3' => {
 1780: 	 'book' => {
 1781: 	     '1' => [],
 1782: 	     '2' => []
 1783: 	 },
 1784: 	 'album' => {
 1785: 	     '1' => [],
 1786: 	     '2' => []
 1787:           },
 1788:      },
 1789:      'a4' => {
 1790: 	 'book' => {
 1791: 	     '1' => ['17.6 cm','27.2 cm','-1.397 cm','-2.11 cm','-1.27 cm'],
 1792: 	     '2' => [ '9.1 cm','27.2 cm','-1.397 cm','-2.11 cm','-1.27 cm']
 1793: 	 },
 1794: 	 'album' => {
 1795: 	     '1' => ['21.59 cm','19.558 cm','-1.397cm','-2.11 cm','0 cm'],
 1796: 	     '2' => ['9.91 cm','19.558 cm','-1.397 cm','-2.11 cm','0 cm']
 1797: 	 },
 1798:      },
 1799:      'a5' => {
 1800: 	 'book' => {
 1801: 	     '1' => [],
 1802: 	     '2' => []
 1803: 	 },
 1804: 	 'album' => {
 1805: 	     '1' => [],
 1806: 	     '2' => []
 1807:           },
 1808:      },
 1809:      'a6' => {
 1810: 	 'book' => {
 1811: 	     '1' => [],
 1812: 	     '2' => []
 1813: 	 },
 1814: 	 'album' => {
 1815: 	     '1' => [],
 1816: 	     '2' => []
 1817:           },
 1818:      },
 1819:      );
 1820: 
 1821: sub page_format {
 1822: #
 1823: #Supported paper format: "Letter [8 1/2x11 in]",      "Legal [8 1/2x14 in]",
 1824: #                        "Ledger/Tabloid [11x17 in]", "Executive [7 1/2x10 in]",
 1825: #                        "A2 [420x594 mm]",           "A3 [297x420 mm]",
 1826: #                        "A4 [210x297 mm]",           "A5 [148x210 mm]",
 1827: #                        "A6 [105x148 mm]"
 1828: # 
 1829:     my ($papersize,$layout,$numberofcolumns) = @_; 
 1830:     return @{$page_formats{$papersize}->{$layout}->{$numberofcolumns}};
 1831: }
 1832: 
 1833: 
 1834: sub get_name {
 1835:     my ($uname,$udom)=@_;
 1836:     if (!defined($uname)) { $uname=$env{'user.name'}; }
 1837:     if (!defined($udom)) { $udom=$env{'user.domain'}; }
 1838:     my $plainname=&Apache::loncommon::plainname($uname,$udom);
 1839:     if ($plainname=~/^\s*$/) { $plainname=$uname.'@'.$udom; }
 1840:    $plainname=&Apache::lonxml::latex_special_symbols($plainname,'header');
 1841:     return $plainname;
 1842: }
 1843: 
 1844: sub get_course {
 1845:     my $courseidinfo;
 1846:     if (defined($env{'request.course.id'})) {
 1847: 	$courseidinfo = &Apache::lonxml::latex_special_symbols(&unescape($env{'course.'.$env{'request.course.id'}.'.description'}),'header');
 1848:     }
 1849:     return $courseidinfo;
 1850: }
 1851: 
 1852: sub page_format_transformation {
 1853:     my ($papersize,$layout,$numberofcolumns,$choice,$text,$assignment,$tableofcontents,$indexlist,$selectionmade) = @_; 
 1854:     my ($textwidth,$textheight,$oddoffset,$evenoffset,$topmargin);
 1855: 
 1856:     if ($selectionmade eq '4') {
 1857: 	if ($choice eq 'all_problems') {
 1858:             $assignment=&mt('Problems from the Whole Course');
 1859: 	} else {
 1860:             $assignment=&mt('Resources from the Whole Course');
 1861: 	}
 1862:     } else {
 1863: 	$assignment=&Apache::lonxml::latex_special_symbols($assignment,'header');
 1864:     }
 1865:     ($textwidth,$textheight,$oddoffset,$evenoffset,$topmargin) = &page_format($papersize,$layout,$numberofcolumns,$topmargin);
 1866: 
 1867: 
 1868:     my $name = &get_name();
 1869:     my $courseidinfo = &get_course();
 1870:     if (defined($courseidinfo)) { $courseidinfo=' - '.$courseidinfo }
 1871:     my $header_text  = $parmhash{'print_header_format'};
 1872:     $header_text     = &format_page_header($textwidth, $header_text, $assignment,
 1873: 					   $courseidinfo, $name);
 1874:     my $topmargintoinsert = '';
 1875:     if ($topmargin ne '0') {$topmargintoinsert='\setlength{\topmargin}{'.$topmargin.'}';}
 1876:     my $fancypagestatement='';
 1877:     if ($numberofcolumns eq '2') {
 1878: 	$fancypagestatement="\\fancyhead{}\\fancyhead[LO]{$header_text}";
 1879:     } else {
 1880: 	$fancypagestatement="\\rhead{}\\chead{}\\lhead{$header_text}";
 1881:     }
 1882:     if ($layout eq 'album') {
 1883: 	    $text =~ s/\\begin{document}/\\setlength{\\oddsidemargin}{$oddoffset}\\setlength{\\evensidemargin}{$evenoffset}$topmargintoinsert\n\\setlength{\\textwidth}{$textwidth}\\setlength{\\textheight}{$textheight}\\setlength{\\textfloatsep}{8pt plus 2\.0pt minus 4\.0pt}\n\\newlength{\\minipagewidth}\\setlength{\\minipagewidth}{\\textwidth\/\$number_of_columns-0\.2cm}\\usepackage{fancyhdr}\\addtolength{\\headheight}{\\baselineskip}\n\\pagestyle{fancy}$fancypagestatement\\usepackage{booktabs}\\begin{document}\\voffset=-0\.8 cm\\setcounter{page}{1}\n /;
 1884:     } elsif ($layout eq 'book') {
 1885: 	if ($choice ne 'All class print') { 
 1886: 	    $text =~ s/\\begin{document}/\\textheight $textheight\\oddsidemargin = $evenoffset\\evensidemargin = $evenoffset $topmargintoinsert\n\\textwidth= $textwidth\\newlength{\\minipagewidth}\\setlength{\\minipagewidth}{\\textwidth\/\$number_of_columns-0\.2cm}\n\\renewcommand{\\ref}{\\keephidden\}\\usepackage{fancyhdr}\\addtolength{\\headheight}{\\baselineskip}\\pagestyle{fancy}$fancypagestatement\\usepackage{booktabs}\\begin{document}\n\\voffset=-0\.8 cm\\setcounter{page}{1}\n/;
 1887: 	} else {
 1888: 	    $text =~ s/\\pagestyle{fancy}\\rhead{}\\chead{}\s*\\begin{document}/\\textheight = $textheight\\oddsidemargin = $evenoffset\n\\evensidemargin = $evenoffset $topmargintoinsert\\textwidth= $textwidth\\newlength{\\minipagewidth}\n\\setlength{\\minipagewidth}{\\textwidth\/\$number_of_columns-0\.2cm}\\renewcommand{\\ref}{\\keephidden\}\\pagestyle{fancy}\\rhead{}\\chead{}\\usepackage{booktabs}\\begin{document}\\voffset=-0\.8cm\n\\setcounter{page}{1}  \\vskip 5 mm\n /;
 1889: 	}
 1890: 	if ($papersize eq 'a4') {
 1891: 	    my $papersize_text;
 1892: 	    if ($perm{'pav'}) {
 1893: 		$papersize_text = '\\special{papersize=210mm,297mm}';
 1894: 	    } else {
 1895: 		$papersize_text = '\special{papersize=210mm,297mm}';
 1896: 	    }
 1897: 	    $text =~ s/(\\begin{document})/$1$papersize_text/;
 1898: 	}
 1899:     }
 1900:     if ($tableofcontents eq 'yes') {$text=~s/(\\setcounter\{page\}\{1\})/$1 \\tableofcontents\\newpage /;}
 1901:     if ($indexlist eq 'yes') {
 1902: 	$text=~s/(\\begin{document})/\\makeindex $1/;
 1903: 	$text=~s/(\\end{document})/\\strut\\\\\\strut\\printindex $1/;
 1904:     }
 1905:     return $text;
 1906: }
 1907: 
 1908: 
 1909: sub page_cleanup {
 1910:     my $result = shift;	
 1911:  
 1912:     $result =~ m/\\end{document}(\d*)$/;
 1913:     my $number_of_columns = $1;
 1914:     my $insert = '{';
 1915:     for (my $id=1;$id<=$number_of_columns;$id++) { $insert .='l'; }
 1916:     $insert .= '}';
 1917:     $result =~ s/(\\begin{longtable})INSERTTHEHEADOFLONGTABLE\\endfirsthead\\endhead/$1$insert/g;
 1918:     $result =~ s/&\s*REMOVETHEHEADOFLONGTABLE\\\\/\\\\/g;
 1919:     return $result,$number_of_columns;
 1920: }
 1921: 
 1922: 
 1923: sub details_for_menu {
 1924:     my ($helper)=@_;
 1925:     my $postdata=$env{'form.postdata'};
 1926:     if (!$postdata) { $postdata=$helper->{VARS}{'postdata'}; }
 1927:     my $name_of_resource = &Apache::lonnet::gettitle($postdata);
 1928:     my $symbolic = &Apache::lonnet::symbread($postdata);
 1929:     return if ( $symbolic eq '');
 1930: 
 1931:     my ($map,$id,$resource)=&Apache::lonnet::decode_symb($symbolic);
 1932:     $map=&Apache::lonnet::clutter($map);
 1933:     my $name_of_sequence = &Apache::lonnet::gettitle($map);
 1934:     if ($name_of_sequence =~ /^\s*$/) {
 1935: 	$map =~ m|([^/]+)$|;
 1936: 	$name_of_sequence = $1;
 1937:     }
 1938:     my $name_of_map = &Apache::lonnet::gettitle($env{'request.course.uri'});
 1939:     if ($name_of_map =~ /^\s*$/) {
 1940: 	$env{'request.course.uri'} =~ m|([^/]+)$|;
 1941: 	$name_of_map = $1;
 1942:     }
 1943:     return ($name_of_resource,$name_of_sequence,$name_of_map);
 1944: }
 1945: 
 1946: sub copyright_line {
 1947:     return '\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill}\vspace*{-2 mm}\newline\noindent{\tiny Printed from LON-CAPA\copyright MSU{\hfill} Licensed under GNU General Public License } ';
 1948: }
 1949: my $end_of_student = "\n".'\special{ps:ENDOFSTUDENTSTAMP}'."\n";
 1950: 
 1951: sub latex_corrections {
 1952:     my ($number_of_columns,$result,$selectionmade,$answer_mode) = @_;
 1953: #    $result =~ s/\\includegraphics{/\\includegraphics\[width=\\minipagewidth\]{/g;
 1954:     my $copyright = &copyright_line();
 1955:     if ($selectionmade eq '1' || $answer_mode eq 'only') {
 1956: 	$result =~ s/(\\end{document})/\\strut\\vskip 0 mm $copyright $end_of_student $1/;
 1957:     } else {
 1958: 	$result =~ s/(\\end{document})/\\strut\\vspace\*{-4 mm}\\newline $copyright $end_of_student $1/;
 1959:     }
 1960:     $result =~ s/\$number_of_columns/$number_of_columns/g;
 1961:     $result =~ s/(\\end{longtable}\s*)(\\strut\\newline\\noindent\\makebox\[\\textwidth\/$number_of_columns\]\[b\]{\\hrulefill})/$2$1/g;
 1962:     $result =~ s/(\\end{longtable}\s*)\\strut\\newline/$1/g;
 1963: #-- LaTeX corrections     
 1964:     my $first_comment = index($result,'<!--',0);
 1965:     while ($first_comment != -1) {
 1966: 	my $end_comment = index($result,'-->',$first_comment);
 1967: 	substr($result,$first_comment,$end_comment-$first_comment+3) = '';
 1968: 	$first_comment = index($result,'<!--',$first_comment);
 1969:     }
 1970:     $result =~ s/^\s+$//gm; #remove empty lines
 1971:     #removes more than one empty space
 1972:     $result =~ s|(\s\s+)|($1=~/[\n\r]/)?"\n":" "|ge;
 1973:     $result =~ s/\\\\\s*\\vskip/\\vskip/gm;
 1974:     $result =~ s/\\\\\s*\\noindent\s*(\\\\)+/\\\\\\noindent /g;
 1975:     $result =~ s/{\\par }\s*\\\\/\\\\/gm;
 1976:     $result =~ s/\\\\\s+\[/ \[/g;
 1977:     #conversion of html characters to LaTeX equivalents
 1978:     if ($result =~ m/&(\w+|#\d+);/) {
 1979: 	$result = &character_chart($result);
 1980:     }
 1981:     $result =~ s/(\\end{tabular})\s*\\vskip 0 mm/$1/g;
 1982:     $result =~ s/(\\begin{enumerate})\s*\\noindent/$1/g;
 1983:     return $result;
 1984: }
 1985: 
 1986: 
 1987: sub index_table {
 1988:     my $currentURL = shift;
 1989:     my $insex_string='';
 1990:     $currentURL=~s/\.([^\/+])$/\.$1\.meta/;
 1991:     $insex_string=&Apache::lonnet::metadata($currentURL,'keywords');
 1992:     return $insex_string;
 1993: }
 1994: 
 1995: 
 1996: sub IndexCreation {
 1997:     my ($texversion,$currentURL)=@_;
 1998:     my @key_words=split(/,/,&index_table($currentURL));
 1999:     my $chunk='';
 2000:     my $st=index $texversion,'\addcontentsline{toc}{subsection}{';
 2001:     if ($st>0) {
 2002: 	for (my $i=0;$i<3;$i++) {$st=(index $texversion,'}',$st+1);}
 2003: 	$chunk=substr($texversion,0,$st+1);
 2004: 	substr($texversion,0,$st+1)=' ';
 2005:     }
 2006:     foreach my $key_word (@key_words) {
 2007: 	if ($key_word=~/\S+/) {
 2008: 	    $texversion=~s/\b($key_word)\b/$1 \\index{$key_word} /i;
 2009: 	}
 2010:     }			
 2011:     if ($st>0) {substr($texversion,0,1)=$chunk;}
 2012:     return $texversion;
 2013: }
 2014: 
 2015: sub print_latex_header {
 2016:     my $mode=shift;
 2017: 
 2018:     return &Apache::londefdef::latex_header($mode);
 2019: }
 2020: 
 2021: sub path_to_problem {
 2022:     my ($urlp,$colwidth)=@_;
 2023:     $urlp=&Apache::lonnet::clutter($urlp);
 2024: 
 2025:     my $newurlp = '';
 2026:     $colwidth=~s/\s*mm\s*$//;
 2027: #characters average about 2 mm in width
 2028:     if (length($urlp)*2 > $colwidth) {
 2029: 	my @elements = split('/',$urlp);
 2030: 	my $curlength=0;
 2031: 	foreach my $element (@elements) {
 2032: 	    if ($element eq '') { next; }
 2033: 	    if ($curlength+(length($element)*2) > $colwidth) {
 2034: 		$newurlp .=  '|\vskip -1 mm \verb|';
 2035: 		$curlength=length($element)*2;
 2036: 	    } else {
 2037: 		$curlength+=length($element)*2;
 2038: 	    }
 2039: 	    $newurlp.='/'.$element;
 2040: 	}
 2041:     } else {
 2042: 	$newurlp=$urlp;
 2043:     }
 2044:     return '{\small\noindent\verb|'.$newurlp.'|\vskip 0 mm}';
 2045: }
 2046: 
 2047: sub recalcto_mm {
 2048:     my $textwidth=shift;
 2049:     my $LaTeXwidth;
 2050:     if ($textwidth=~/(-?\d+\.?\d*)\s*cm/) {
 2051: 	$LaTeXwidth = $1*10;
 2052:     } elsif ($textwidth=~/(-?\d+\.?\d*)\s*mm/) {
 2053: 	$LaTeXwidth = $1;
 2054:     } elsif ($textwidth=~/(-?\d+\.?\d*)\s*in/) {
 2055: 	$LaTeXwidth = $1*25.4;
 2056:     }
 2057:     $LaTeXwidth.=' mm';
 2058:     return $LaTeXwidth;
 2059: }
 2060: 
 2061: sub get_textwidth {
 2062:     my ($helper,$LaTeXwidth)=@_;
 2063:     my $textwidth=$LaTeXwidth;
 2064:     if ($helper->{'VARS'}->{'pagesize.width'}=~/\d+/ &&
 2065: 	$helper->{'VARS'}->{'pagesize.widthunit'}=~/\w+/) {
 2066: 	$textwidth=&recalcto_mm($helper->{'VARS'}->{'pagesize.width'}.' '.
 2067: 				$helper->{'VARS'}->{'pagesize.widthunit'});
 2068:     }
 2069:     return $textwidth;
 2070: }
 2071: 
 2072: 
 2073: sub unsupported {
 2074:     my ($currentURL,$mode,$symb)=@_;
 2075:     if ($mode ne '') {$mode='\\'.$mode}
 2076:     my $result.= &print_latex_header($mode);
 2077:     if ($currentURL=~m|^(/adm/wrapper/)?ext/|) {
 2078: 	$currentURL=~s|^(/adm/wrapper/)?ext/|http://|;
 2079:         $currentURL=~s|^http://https://|https://|;
 2080: 	my $title=&Apache::lonnet::gettitle($symb);
 2081: 	$title = &Apache::lonxml::latex_special_symbols($title);
 2082: 	$result.=' \strut \\\\ '.$title.' \strut \\\\ '.$currentURL.' ';
 2083:     } else {
 2084: 	$result.=$currentURL;
 2085:     }
 2086:     $result.= '\vskip 0.5mm\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill} \end{document}';
 2087:     return $result;
 2088: }
 2089: 
 2090: #
 2091: #  Map from helper layout style to the book/album:
 2092: #
 2093: sub map_laystyle {
 2094:     my ($laystyle) = @_;
 2095:     if ($laystyle eq 'L') {
 2096: 	$laystyle='album';
 2097:     } else {
 2098: 	$laystyle='book';
 2099:     }
 2100:     return $laystyle;
 2101: }
 2102: 
 2103: sub print_page_in_course {
 2104:     my ($helper, $rparmhash, $currentURL, $resources) = @_;
 2105: 
 2106:     my %parmhash       = %$rparmhash;
 2107:     my @page_resources = @$resources;
 2108:     my $mode = $helper->{'VARS'}->{'LATEX_TYPE'};
 2109:     my $symb = $helper->{'VARS'}->{'symb'};
 2110: 
 2111: 
 2112:     my $format_from_helper = $helper->{'VARS'}->{'FORMAT'};
 2113: 
 2114: 
 2115:     my @temporary_array=split /\|/,$format_from_helper;
 2116:     my ($laystyle,$numberofcolumns,$papersize,$pdfFormFields)=@temporary_array;
 2117:     $laystyle = &map_laystyle($laystyle);
 2118:     my ($textwidth,$textheight,$oddoffset,$evenoffset) = &page_format($papersize,$laystyle,
 2119: 								      $numberofcolumns);
 2120:     my $LaTeXwidth=&recalcto_mm($textwidth); 
 2121: 
 2122: 
 2123:     if ($mode ne '') {$mode='\\'.$mode}
 2124:     my $result   =    &print_latex_header($mode);
 2125:     if ($currentURL=~m|^(/adm/wrapper/)?ext/|) {
 2126: 	$currentURL=~s|^(/adm/wrapper/)?ext/|http://|;
 2127: 	my $title=&Apache::lonnet::gettitle($symb);
 2128: 	$title = &Apache::lonxml::latex_special_symbols($title);
 2129:     } else {
 2130:         my $esc_currentURL= $currentURL;
 2131:         $esc_currentURL =~ s/_/\\_/g;
 2132: 	$result.=$esc_currentURL;
 2133:     }
 2134:     $result .= '\\\\';
 2135: 
 2136:     if ($helper->{'VARS'}->{'style_file'}=~/\w/) {
 2137: 	&Apache::lonnet::appenv({'construct.style' =>
 2138: 				$helper->{'VARS'}->{'style_file'}});
 2139:     } elsif ($env{'construct.style'}) {
 2140: 	&Apache::lonnet::delenv('construct.style');
 2141:     }
 2142: 
 2143:     # First is the overall page description.  This is then followed by the 
 2144:     # components of the page. Each of which must be printed independently.
 2145:     my $the_page = shift(@page_resources); 
 2146: 
 2147: 
 2148:     foreach my $resource (@page_resources) {
 2149: 	my $resource_src   = $resource->src(); # Essentially the URL of the resource.
 2150: 	$result           .= $resource->title() . '\\\\';
 2151: 
 2152: 	# Recurse if a .page:
 2153: 
 2154: 	if ($resource_src =~ /.page$/i) {
 2155: 	    my $navmap         = Apache::lonnavmaps::navmap->new();
 2156: 	    my @page_resources = $navmap->retrieveResources($resource_src);
 2157: 	    $result           .= &print_page_in_course($helper, $rparmhash, 
 2158: 						       $resource_src, \@page_resources);
 2159:         } elsif ($resource->ext()) {
 2160:             $result .= &unsupported($currentURL,$mode,$symb);
 2161: 	}
 2162: 	# these resources go through the XML transformer:
 2163: 
 2164: 	elsif ($resource_src =~ /\.(problem|exam|quiz|assess|survey|form|library|xml|html|htm|xhtml|xhtm)$/)  {
 2165: 
 2166: 	    my $urlp = &Apache::lonnet::clutter($resource_src);
 2167: 
 2168: 	    my %form;
 2169: 	    my %moreenv;
 2170: 
 2171: 	    &Apache::lonxml::remember_problem_counter();
 2172: 	    $moreenv{'request.filename'}=$urlp;
 2173: 	    if ($helper->{'VARS'}->{'probstatus'} eq 'exam') {$form{'problemtype'}='exam';}
 2174: 
 2175: 	    $form{'grade_target'}  = 'tex';
 2176: 	    $form{'textwidth'}    = &get_textwidth($helper, $LaTeXwidth);
 2177: 	    $form{'pdfFormFields'} = 'no'; # 
 2178: 	    $form{'showallfoils'} = $helper->{'VARS'}->{'showallfoils'};    
 2179: 	    
 2180: 	    $form{'problem_split'}=$parmhash{'problem_stream_switch'};
 2181: 	    $form{'suppress_tries'}=$parmhash{'suppress_tries'};
 2182: 	    $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
 2183: 	    $form{'print_discussions'}=$helper->{'VARS'}->{'PRINT_DISCUSSIONS'};
 2184: 	    $form{'print_annotations'}=$helper->{'VARS'}->{'PRINT_ANNOTATIONS'};
 2185: 	    if (($helper->{'VARS'}->{'PRINT_DISCUSSIONS'} eq 'yes') ||
 2186: 		($helper->{'VARS'}->{'PRINT_ANNOTATIONS'} eq 'yes')) {
 2187: 		$form{'problem_split'}='yes';
 2188: 	    }
 2189: 	    my $rndseed = time;
 2190: 	    if ($helper->{'VARS'}->{'curseed'}) {
 2191: 		$rndseed=$helper->{'VARS'}->{'curseed'};
 2192: 	    }
 2193: 	    $form{'rndseed'}=$rndseed;
 2194: 	    &Apache::lonnet::appenv(\%moreenv);
 2195: 	    
 2196: 	    &Apache::lonxml::clear_problem_counter();
 2197: 
 2198: 	    my $texversion = &ssi_with_retries($urlp, $ssi_retry_count, %form);
 2199: 
 2200: 
 2201: 	    # current document with answers.. no need to encap in minipage
 2202: 	    #  since there's only one answer.
 2203: 
 2204: 	    if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
 2205: 	       ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
 2206: 		my %answerform = %form;
 2207: 
 2208: 
 2209: 		$answerform{'problem_split'}=$parmhash{'problem_stream_switch'};
 2210: 		$answerform{'grade_target'}='answer';
 2211: 		$answerform{'answer_output_mode'}='tex';
 2212: 		$answerform{'rndseed'}=$rndseed;
 2213:                 if ($helper->{'VARS'}->{'probstatus'} eq 'exam') {
 2214: 		    $answerform{'problemtype'}='exam';
 2215: 		}
 2216: 		$resources_printed .= $urlp.':';
 2217: 		my $answer=&ssi_with_retries($urlp,$ssi_retry_count, %answerform);
 2218: 
 2219: 		if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
 2220: 		    $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
 2221: 		} else {
 2222: 		    $texversion= &print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
 2223: 		    if ($helper->{'VARS'}->{'construction'} ne '1') {
 2224: 			my $title = &Apache::lonnet::gettitle($helper->{'VARS'}->{'symb'});
 2225: 			$title = &Apache::lonxml::latex_special_symbols($title);
 2226: 			$texversion.='\vskip 0 mm \noindent\textbf{'.$title.'}\vskip 0 mm ';
 2227: 			$texversion.=&path_to_problem($urlp,$LaTeXwidth);
 2228: 		    } else {
 2229: 			$texversion.='\vskip 0 mm \noindent\textbf{'.
 2230:                         &mt("Printing from Authoring Space: No Title").'}\vskip 0 mm ';
 2231: 			$texversion.=&path_to_problem($urlp,$LaTeXwidth);
 2232: 		    }
 2233: 		    $texversion.='\vskip 1 mm '.$answer.'\end{document}';
 2234: 		}
 2235: 
 2236: 
 2237: 		
 2238: 
 2239: 	    
 2240: 	    }
 2241: 	    # Print annotations.
 2242: 
 2243: 
 2244: 	    if ($helper->{'VARS'}->{'PRINT_ANNOTATIONS'} eq 'yes') {
 2245: 		my $annotation .= &annotate($currentURL);
 2246: 		$texversion =~ s/(\\keephidden{ENDOFPROBLEM})/$annotation$1/;
 2247: 	    }
 2248: 	    
 2249: 	    if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
 2250: 		$texversion=&IndexCreation($texversion,$currentURL);
 2251: 	    }
 2252: 	    if ($helper->{'VARS'}->{'CONSTR_RESOURSE_URL'} eq 'yes') {
 2253: 		$texversion=~s/(\\addcontentsline\{toc\}\{subsection\}\{[^\}]*\})/$1 URL: \\verb|$currentURL| \\strut\\\\\\strut /;
 2254: 
 2255: 	    }
 2256: 	    $texversion = &latex_header_footer_remove($texversion);
 2257: 
 2258: 	    # the first remaining line is a comment from londefdef the second
 2259: 	    # line  seems to be an extraneous \vskip 1mm \\\\ :
 2260:             # (imperfect removal from header_footer_remove?
 2261: 
 2262: 	    $texversion =~ s/\\vskip 1mm \\\\\\\\//;
 2263: 
 2264: 	    $result .= $texversion;
 2265: 	    if ($currentURL=~m/\.page\s*$/) {
 2266: 		($result,$numberofcolumns) = &page_cleanup($result);
 2267: 	    }
 2268: 	}
 2269:     }
 2270: 
 2271:     $result.= '\vskip 0.5mm\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill} \end{document}';
 2272:     return $result;
 2273: }
 2274: 
 2275: 
 2276: #
 2277: # List of recently generated print files
 2278: #
 2279: sub recently_generated {
 2280:     my ($prtspool) = @_;
 2281:     my $output;
 2282:     my $zip_result;
 2283:     my $pdf_result;
 2284:     opendir(DIR,$prtspool);
 2285: 
 2286:     my @files = 
 2287: 	grep(/^$env{'user.name'}_$env{'user.domain'}_printout_(\d+)_.*\.(pdf|zip)$/,readdir(DIR));
 2288:     closedir(DIR);
 2289: 
 2290:     @files = sort {
 2291: 	my ($actime) = (stat($prtspool.'/'.$a))[10];
 2292: 	my ($bctime) = (stat($prtspool.'/'.$b))[10];
 2293: 	return $bctime <=> $actime;
 2294:     } (@files);
 2295: 
 2296:     foreach my $filename (@files) {
 2297: 	my ($ext) = ($filename =~ m/(pdf|zip)$/);
 2298: 	my ($cdev,$cino,$cmode,$cnlink,
 2299: 	    $cuid,$cgid,$crdev,$csize,
 2300: 	    $catime,$cmtime,$cctime,
 2301: 	    $cblksize,$cblocks)=stat($prtspool.'/'.$filename);
 2302:         my $ext_text = 'pdf' ? &mt('PDF File'):&mt('Zip File');
 2303: 	my $result=&Apache::loncommon::start_data_table_row()
 2304:                   .'<td>'
 2305:                   .'<a href="/prtspool/'.$filename.'">'.$ext_text.'</a>'
 2306:                   .'</td>'
 2307:                   .'<td>'.&Apache::lonlocal::locallocaltime($cctime).'</td>'
 2308:                   .'<td align="right">'.$csize.'</td>'
 2309:                   .&Apache::loncommon::end_data_table_row();
 2310: 	if ($ext eq 'pdf') { $pdf_result .= $result; }
 2311: 	if ($ext eq 'zip') { $zip_result .= $result; }
 2312:     }
 2313:     if ($zip_result || $pdf_result) {
 2314:         $output ='<hr />';
 2315:     }
 2316:     if ($zip_result) {
 2317: 	$output .='<h3>'.&mt('Recently generated printout zip files')."</h3>\n"
 2318:                   .&Apache::loncommon::start_data_table()
 2319:                   .&Apache::loncommon::start_data_table_header_row()
 2320:                   .'<th>'.&mt('Download').'</th>'
 2321:                   .'<th>'.&mt('Creation Date').'</th>'
 2322:                   .'<th>'.&mt('File Size (Bytes)').'</th>'
 2323:                   .&Apache::loncommon::end_data_table_header_row()
 2324:                   .$zip_result
 2325:                   .&Apache::loncommon::end_data_table();
 2326:     }
 2327:     if ($pdf_result) {
 2328: 	$output .='<h3>'.&mt('Recently generated printouts')."</h3>\n"
 2329:                   .&Apache::loncommon::start_data_table()
 2330:                   .&Apache::loncommon::start_data_table_header_row()
 2331:                   .'<th>'.&mt('Download').'</th>'
 2332:                   .'<th>'.&mt('Creation Date').'</th>'
 2333:                   .'<th>'.&mt('File Size (Bytes)').'</th>'
 2334:                   .&Apache::loncommon::end_data_table_header_row()
 2335:                   .$pdf_result
 2336:                   .&Apache::loncommon::end_data_table();
 2337:     }
 2338:     return $output;
 2339: }
 2340: 
 2341: #
 2342: #   Retrieve the hash of page breaks.
 2343: #
 2344: #  Inputs:
 2345: #    helper   - reference to helper object.
 2346: #  Outputs
 2347: #    A reference to a page break hash.
 2348: #
 2349: #
 2350: # use Data::Dumper;
 2351: # sub dump_helper_vars {
 2352: #    my ($helper) = @_;
 2353: #    my $helpervars = Dumper($helper->{'VARS'});
 2354: #    &Apache::lonnet::logthis("Dump of helper vars:\n $helpervars");
 2355: #}
 2356: 
 2357: sub get_page_breaks  {
 2358:     my ($helper) = @_;
 2359:     my %page_breaks;
 2360: 
 2361:     foreach my $break (split /\|\|\|/, $helper->{'VARS'}->{'FINISHPAGE'}) {
 2362: 	$page_breaks{$break} = 1;
 2363:     }
 2364:     return %page_breaks;
 2365: }
 2366: # 
 2367: #   Returns text to insert for any extra vskip prior to the resource.
 2368: #   Parameters:
 2369: #     helper   - Reference to the helper object driving the printout.
 2370: #     resource - Identifies the resource about to be printed.
 2371: #
 2372: #   This is done as follows:
 2373: #    POSSIBLE_RESOURCES has the list of possible resources.
 2374: #    EXTRASPACE         has the list of extra space values.
 2375: #    EXTRASPACE_UNITS   is the set of resources for which the units are
 2376: #                       mm. All others are 'in'.
 2377: #    
 2378: #    The resource is found in the POSSIBLE_RESOURCES to get the index
 2379: #    of the EXTRASPACE value.
 2380: #
 2381: #   In order to speed this up for lengthy printouts, the first time,
 2382: #   POSSIBLE_RESOURCES is turned into a look up hash and
 2383: #   EXTRASPACE is turned into an array.
 2384: #
 2385: 
 2386: 
 2387: my %possible_resources;
 2388: my %extraspace_mm;
 2389: my @extraspace;
 2390: my $skips_loaded       = 0;
 2391: 
 2392: #  Function to load the skips hash and array
 2393: 
 2394: sub load_skips {
 2395: 
 2396:     my ($helper)  = @_;
 2397: 
 2398:     #  If this is the first time, unrap the resources and extra spaces:
 2399: 
 2400:     if (!$skips_loaded) {
 2401: 	@extraspace = (split(/\|\|\|/, $helper->{'VARS'}->{'EXTRASPACE'}));
 2402: 	my @resource_list = (split(/\|\|\|/, $helper->{'VARS'}->{'POSSIBLE_RESOURCES'}));
 2403: 	my $i = 0;
 2404: 	foreach my $resource (@resource_list) {
 2405: 	    $possible_resources{$resource} = $i;
 2406: 	    $i++;
 2407: 	}
 2408: 	foreach my $mm_resource (split(/\|\|\|/, $helper->{'VARS'}->{'EXTRASPACE_UNITS'})) {
 2409: 	    $extraspace_mm{$mm_resource} = 1;
 2410: 	}
 2411: 	$skips_loaded = 1;
 2412:     }
 2413: }
 2414: 
 2415: sub get_extra_vspaces {
 2416:     my ($helper, $resource) = @_;
 2417: 
 2418:     &load_skips($helper);
 2419: 
 2420:     #  Lookup the resource in the possible resources hash.. that is the index
 2421:     # into the extraspace array that gives us either an empty string or
 2422:     # the number of mm to skip:
 2423: 
 2424:     my $index = $possible_resources{$resource};
 2425:     my $skip  = $extraspace[$index];
 2426: 
 2427:     my $result = '';
 2428:     if ($skip ne '') {
 2429: 	my $units = 'in';
 2430: 	if (defined($extraspace_mm{$resource})) {
 2431: 	    $units = 'mm';
 2432: 	}
 2433: 	$result = '\vskip '.$skip.' '.$units;
 2434:     }
 2435: 
 2436: 	
 2437:     return $result;
 2438: 
 2439: 
 2440: }
 2441: 
 2442: #
 2443: #  The resource chooser part of the helper needs more than just
 2444: #  the value of the extraspaces var to recover the value into a text
 2445: #  field option.  This sub produces the required format for the saved var:
 2446: #  specifically 
 2447: #    ||| separated fields of the form resourcename=value
 2448: #
 2449: #  Parameters:
 2450: #    $helper     - Refers to the helper we are configuring
 2451: #  Implicit input:
 2452: #     $helper->{'VARS'}->{'EXTRASPACE'}  - the spaces helper var has the text field
 2453: #                                          value.
 2454: #     $helper->{'VARS'}->{'EXTRASPACE_UNITS'} - units for the skips (checkboxes).
 2455: #     $helper->{'VARS'}->{'POSSIBLE_RESOURCES'}  - has the list of resources. |||
 2456: #                                          separated of course.
 2457: #  Implicit outputs:
 2458: #     $env{'form.extraspace'}
 2459: #     $env{'form.extraspace_units'}
 2460: #
 2461: sub set_form_extraspace {
 2462:     my ($helper) = @_;
 2463: 
 2464:     # the most convenient way to do this is to drive from the skips arrays/hash.
 2465:     # may not be the fastest, but this is once per print request so it's not so
 2466:     # speed critical:
 2467: 
 2468:     &load_skips($helper);
 2469: 
 2470:     my $result = '';
 2471: 
 2472:     foreach my $resource (keys(%possible_resources)) {
 2473: 	my $vskip = $extraspace[$possible_resources{$resource}];
 2474: 	$result  .= $resource .'=' . $vskip . '|||';
 2475:     }
 2476: 
 2477:     $env{'form.extraspace'}  = $result;
 2478:     $env{'form.extraspace_units'} = $helper->{'VARS'}->{'EXTRASPACE_UNITS'};
 2479:     return $result;
 2480:     
 2481: }
 2482: 
 2483: #  Output a sequence (recursively if neeed)
 2484: #  from construction space.
 2485: # Parameters:
 2486: #    url     = URL of the sequence to print.
 2487: #    helper  - Reference to the helper hash.
 2488: #    form    - Copy of the format hash.
 2489: #    LaTeXWidth
 2490: # Returns:
 2491: #   Text to add to the printout.
 2492: #   NOTE if the first element of the outermost sequence
 2493: #   is itself a sequence, the outermost caller may need to
 2494: #   prefix the latex with the page headers stuff.
 2495: #
 2496: sub print_construction_sequence {
 2497:     my ($currentURL, $helper, %form, $LaTeXwidth) = @_;
 2498: 
 2499:     my $result;
 2500:     my $rndseed=time;
 2501:     if ($helper->{'VARS'}->{'curseed'}) {
 2502: 	$rndseed=$helper->{'VARS'}->{'curseed'};
 2503:     }
 2504:     my $errtext=&LONCAPA::map::mapread(&Apache::lonnet::filelocation('',$currentURL));
 2505: 
 2506:     # 
 2507:     #  These make this all support recursing for subsequences.
 2508:     #
 2509:     my @order    = @LONCAPA::map::order;
 2510:     my @resources = @LONCAPA::map::resources; 
 2511: 
 2512:     for (my $member=0;$member<=$#order;$member++) {
 2513: 	$resources[$order[$member]]=~/^([^:]*):([^:]*):/;
 2514: 	my $urlp=$2;
 2515: 	if ($urlp=~/\.(problem|exam|quiz|assess|survey|form|library|xml|html|htm|xhtml|xhtm)$/) {
 2516: 	    my $texversion='';
 2517: 	    if ($helper->{'VARS'}->{'ANSWER_TYPE'} ne 'only') {
 2518: 		$form{'problem_split'}=$parmhash{'problem_stream_switch'};
 2519: 		$form{'suppress_tries'}=$parmhash{'suppress_tries'};
 2520: 		$form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
 2521: 		$form{'rndseed'}=$rndseed;
 2522: 		$resources_printed .=$urlp.':';
 2523: 		$texversion=&ssi_with_retries($urlp, $ssi_retry_count, %form);
 2524: 	    }
 2525: 	    if((($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
 2526: 		($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) && 
 2527: 	       ($urlp=~/$LONCAPA::assess_page_re/)) {
 2528: 		#  Don't permanently modify %$form...
 2529: 		my %answerform = %form;
 2530: 		$answerform{'grade_target'}='answer';
 2531: 		$answerform{'answer_output_mode'}='tex';
 2532: 		$answerform{'rndseed'}=$rndseed;
 2533: 		$answerform{'problem_split'}=$parmhash{'problem_stream_switch'};
 2534: 		if ($urlp=~/\/res\//) {$env{'request.state'}='published';}
 2535: 		$resources_printed .= $urlp.':';
 2536: 		my $answer=&ssi_with_retries($urlp, $ssi_retry_count, %answerform);
 2537: 		if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
 2538: 		    $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
 2539: 		} else {
 2540: 		    # If necessary, encapsulate answer in minipage:
 2541: 		    
 2542: 		    $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
 2543: 		    my $title = &Apache::lonnet::gettitle($helper->{'VARS'}->{'symb'});
 2544: 		    $title = &Apache::lonxml::latex_special_symbols($title);
 2545: 		    my $body ='\vskip 0 mm \noindent\textbf{'.$title.'}\vskip 0 mm ';
 2546: 		    $body.=&path_to_problem($urlp,$LaTeXwidth);
 2547: 		    $body.='\vskip 1 mm '.$answer.'\end{document}';
 2548: 		    $body = &encapsulate_minipage($body);
 2549: 		    $texversion.=$body;
 2550: 		}
 2551: 	    }
 2552: 	    $texversion = &latex_header_footer_remove($texversion);
 2553: 
 2554: 	    if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
 2555: 		$texversion=&IndexCreation($texversion,$urlp);
 2556: 	    }
 2557: 	    if ($helper->{'VARS'}->{'CONSTR_RESOURSE_URL'} eq 'yes') {
 2558: 		$texversion=~s/(\\addcontentsline\{toc\}\{subsection\}\{[^\}]*\})/$1 URL: \\verb|$urlp| \\strut\\\\\\strut /;
 2559: 	    }
 2560: 	    $result.=$texversion;
 2561: 
 2562: 	} elsif ($urlp=~/\.(sequence|page)$/) {
 2563:  
 2564: 	    # header:
 2565: 
 2566: 	    $result.='\strut\newline\noindent Sequence/page '.$urlp.'\strut\newline\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill}\newline\noindent ';
 2567: 
 2568: 	    # IF sequence, recurse:
 2569: 	    
 2570: 	    if ($urlp =~ /\.sequence$/) {
 2571: 		$result .= &print_construction_sequence($urlp, 
 2572: 							$helper, %form, 
 2573: 							$LaTeXwidth);
 2574: 	    }
 2575: 	}
 2576: 	elsif ($urlp =~ /\.pdf$/i) {
 2577: 	    my $texversion;
 2578: 	    if ($member != 0) {
 2579: 		$texversion .= '\cleardoublepage';
 2580: 	    }
 2581: 
 2582: 	    $texversion .= &include_pdf($urlp);
 2583: 	    $texversion = &latex_header_footer_remove($texversion);
 2584: 	    if ($member != $#order) {
 2585: 		$texversion .= '\\ \cleardoublepage';
 2586: 	    }
 2587: 	    
 2588: 	    $result .= $texversion;
 2589: 	}
 2590:     }
 2591:     if ($helper->{VARS}->{'construction'} eq '1') {$result=~s/(\\begin{document})/$1 \\fbox\{RANDOM SEED IS $rndseed\} /;}
 2592:     return $result;
 2593: }
 2594: 
 2595: #
 2596: #  Top level for generating print output.
 2597: #
 2598: #  May call print_resources if multiple resources will be printed.
 2599: #
 2600: #  The main driver is $selectionmade which reflects the type of print out
 2601: #  requested:
 2602: #   Value    Print type:
 2603: #   1        Print resource that's being looked at.
 2604: #   2        Print problems in a map or in a page.
 2605: #   3        Print pages in a map or resources in a page.
 2606: #   4        Print all problems  or all resources.
 2607: #   5        Print problems for seleted students.
 2608: #   6        Print selected problems from a folder.
 2609: #   7        Print print selected resources from some scope.
 2610: #   8        Print resources for selected students.
 2611: #
 2612: #BZ 5209
 2613: #   2        map_incomplete_problems_seq Print incomplete problems from the current
 2614: #            folder in student context.
 2615: #   5      map_incomplete_problems_people_seq Print incomplete problems from the
 2616: #            current folder in privileged context.
 2617: #    5      incomplete_problems_selpeople_course Print incomplete problems for
 2618: #            selected people from the entire course.
 2619: #
 2620: #   Item 101 has much the same processing as 8,
 2621: #
 2622: #  Differences:  Item 101, 102 require per-student filtering of the resource
 2623: #  set so that only the incomplete resources are printed.
 2624: #  For item 100, filtering was done at the helper level.
 2625: 
 2626: sub output_data {
 2627: 
 2628:     my ($r,$helper,$rparmhash) = @_;
 2629:     my %parmhash = %$rparmhash;
 2630:     $ssi_error = 0;		# This will be set nonzero by failing ssi's.
 2631:     $resources_printed = '';
 2632:     $font_size = $helper->{'VARS'}->{'fontsize'};
 2633:     my $print_type = $helper->{'VARS'}->{'PRINT_TYPE'}; # Allows textual simplification.
 2634:     my $do_postprocessing = 1;
 2635:     my $js = <<ENDPART;
 2636: <script type="text/javascript">
 2637:     var editbrowser;
 2638:     function openbrowser(formname,elementname,only,omit) {
 2639:         var url = '/res/?';
 2640:         if (editbrowser == null) {
 2641:             url += 'launch=1&';
 2642:         }
 2643:         url += 'catalogmode=interactive&';
 2644:         url += 'mode=parmset&';
 2645:         url += 'form=' + formname + '&';
 2646:         if (only != null) {
 2647:             url += 'only=' + only + '&';
 2648:         } 
 2649:         if (omit != null) {
 2650:             url += 'omit=' + omit + '&';
 2651:         }
 2652:         url += 'element=' + elementname + '';
 2653:         var title = 'Browser';
 2654:         var options = 'scrollbars=1,resizable=1,menubar=0';
 2655:         options += ',width=700,height=600';
 2656:         editbrowser = open(url,title,options,'1');
 2657:         editbrowser.focus();
 2658:     }
 2659: </script>
 2660: ENDPART
 2661: 
 2662: 
 2663:     # Breadcrumbs
 2664:     #FIXME: Choose better/different breadcrumbs?!? Links?
 2665:     my $brcrum = [{'href' => '',
 2666:                    'text' => 'Helper'}, #FIXME: Different origin possible than print out helper?
 2667:                   {'href' => '',
 2668:                    'text' => 'Preparing Printout'}];
 2669: 
 2670:     my $start_page  = &Apache::loncommon::start_page('Preparing Printout',
 2671:                                                      $js,
 2672:                                                      {'bread_crumbs' => $brcrum,});
 2673:     my $msg = &mt('Please stand by while processing your print request, this may take some time ...');
 2674: 
 2675:     $r->print($start_page."\n<p>\n$msg\n</p>\n");
 2676: 
 2677:     # fetch the pagebreaks and store them in the course environment
 2678:     # The page breaks will be pulled into the hash %page_breaks which is
 2679:     # indexed by symb and contains 1's for each break.
 2680: 
 2681:     $env{'form.pagebreaks'}  = $helper->{'VARS'}->{'FINISHPAGE'};
 2682:     &set_form_extraspace($helper);
 2683:     $env{'form.lastprinttype'} = $print_type; 
 2684:     &Apache::loncommon::store_course_settings('print',
 2685: 					      {'pagebreaks'    => 'scalar',
 2686: 					       'extraspace'    => 'scalar',
 2687: 					       'extraspace_units' => 'scalar',
 2688: 					       'lastprinttype' => 'scalar'});
 2689:     my %page_breaks  = &get_page_breaks($helper);
 2690: 
 2691:     my $format_from_helper = $helper->{'VARS'}->{'FORMAT'};
 2692:     my ($result,$selectionmade) = ('','');
 2693:     my $number_of_columns = 1; #used only for pages to determine the width of the cell
 2694:     my @temporary_array=split /\|/,$format_from_helper;
 2695:     my ($laystyle,$numberofcolumns,$papersize,$pdfFormFields)=@temporary_array;
 2696: 
 2697:     $laystyle = &map_laystyle($laystyle);
 2698:     my ($textwidth,$textheight,$oddoffset,$evenoffset) = &page_format($papersize,$laystyle,$numberofcolumns);
 2699:     my $assignment =  $env{'form.assignment'};
 2700:     my $LaTeXwidth=&recalcto_mm($textwidth); 
 2701:     my @print_array=();
 2702:     my @student_names=();
 2703: 
 2704:      
 2705:     #  Common settings for the %form has:
 2706:     # In some cases these settings get overriddent by specific cases, but the
 2707:     # settings are common enough to make it worthwhile factoring them out
 2708:     # here.
 2709:     #
 2710:     my %form;
 2711:     $form{'grade_target'} = 'tex';
 2712:     $form{'textwidth'}    = &get_textwidth($helper, $LaTeXwidth);
 2713:     $form{'pdfFormFields'} = 'no';
 2714: 
 2715:     # If form.showallfoils is set, then request all foils be shown:
 2716:     # privilege will be enforced both by not allowing the 
 2717:     # check box selecting this option to be presnt unless it's ok,
 2718:     # and by lonresponse's priv. check.
 2719:     # The if is here because lonresponse.pm only cares that
 2720:     # showallfoils is defined, not what the value is.
 2721: 
 2722:     if ($helper->{'VARS'}->{'showallfoils'} eq "1") { 
 2723: 	$form{'showallfoils'} = $helper->{'VARS'}->{'showallfoils'};
 2724:     }
 2725:     
 2726:     if ($helper->{'VARS'}->{'style_file'}=~/\w/) {
 2727: 	&Apache::lonnet::appenv({'construct.style' =>
 2728: 				$helper->{'VARS'}->{'style_file'}});
 2729:     } elsif ($env{'construct.style'}) {
 2730: 	&Apache::lonnet::delenv('construct.style');
 2731:     }
 2732: 
 2733:     if ($print_type eq 'current_document') {
 2734:       #-- single document - problem, page, html, xml, ...
 2735: 	my ($currentURL,$cleanURL);
 2736: 
 2737: 	if ($helper->{'VARS'}->{'construction'} ne '1') {
 2738:             #prints published resource
 2739: 	    $currentURL=$helper->{'VARS'}->{'postdata'};
 2740: 	    $cleanURL=&Apache::lonenc::check_decrypt($currentURL);
 2741: 	} else {
 2742: 
 2743:             #prints resource from the construction space
 2744: 	    $currentURL=$helper->{'VARS'}->{'filename'};
 2745: 	    $cleanURL=$currentURL;
 2746: 	}
 2747: 	$selectionmade = 1;
 2748:       
 2749: 	if ($cleanURL!~m|^/adm/|
 2750: 	    && $cleanURL=~/\.(problem|exam|quiz|assess|survey|form|library|xml|html|htm|xhtml|xhtm)$/) {
 2751: 	    my $rndseed=time;
 2752: 	    my $texversion='';
 2753: 	    if ($helper->{'VARS'}->{'ANSWER_TYPE'} ne 'only') {
 2754: 		my %moreenv;
 2755: 		$moreenv{'request.filename'}=$cleanURL;
 2756:                 if ($helper->{'VARS'}->{'probstatus'} eq 'exam') {$form{'problemtype'}='exam';}
 2757: 		$form{'problem_split'}=$parmhash{'problem_stream_switch'};
 2758: 		$form{'suppress_tries'}=$parmhash{'suppress_tries'};
 2759: 		$form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
 2760: 		$form{'print_discussions'}=$helper->{'VARS'}->{'PRINT_DISCUSSIONS'};
 2761: 		$form{'print_annotations'}=$helper->{'VARS'}->{'PRINT_ANNOTATIONS'};
 2762: 		if (($helper->{'VARS'}->{'PRINT_DISCUSSIONS'} eq 'yes') ||
 2763: 		    ($helper->{'VARS'}->{'PRINT_ANNOTATIONS'} eq 'yes')) {
 2764: 		    $form{'problem_split'}='yes';
 2765: 		}
 2766: 		if ($helper->{'VARS'}->{'curseed'}) {
 2767: 		    $rndseed=$helper->{'VARS'}->{'curseed'};
 2768: 		}
 2769: 		$form{'rndseed'}=$rndseed;
 2770: 		&Apache::lonnet::appenv(\%moreenv);
 2771: 
 2772: 		&Apache::lonxml::clear_problem_counter();
 2773: 
 2774: 		$resources_printed .= $currentURL.':';
 2775: 		$texversion.=&ssi_with_retries($currentURL,$ssi_retry_count, %form);
 2776: 
 2777: 		#  Add annotations if required:
 2778: 	    
 2779: 		&Apache::lonxml::clear_problem_counter();
 2780: 
 2781: 		&Apache::lonnet::delenv('request.filename');
 2782: 	    }
 2783: 	    # current document with answers.. no need to encap in minipage
 2784: 	    #  since there's only one answer.
 2785: 
 2786: 	    if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
 2787: 	       ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
 2788: 
 2789: 		$form{'problem_split'}=$parmhash{'problem_stream_switch'};
 2790: 		$form{'grade_target'}='answer';
 2791: 		$form{'answer_output_mode'}='tex';
 2792: 		$form{'rndseed'}=$rndseed;
 2793:                 if ($helper->{'VARS'}->{'probstatus'} eq 'exam') {
 2794: 		    $form{'problemtype'}='exam';
 2795: 		}
 2796: 		$resources_printed .= $currentURL.':';
 2797: 		my $answer=&ssi_with_retries($currentURL,$ssi_retry_count, %form);
 2798: 		
 2799: 
 2800: 		if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
 2801: 		    $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
 2802: 		} else {
 2803: 		    $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
 2804: 		    if ($helper->{'VARS'}->{'construction'} ne '1') {
 2805: 			my $title = &Apache::lonnet::gettitle($helper->{'VARS'}->{'symb'});
 2806: 			$title = &Apache::lonxml::latex_special_symbols($title);
 2807: 			$texversion.='\vskip 0 mm \noindent\textbf{'.$title.'}\vskip 0 mm ';
 2808: 			$texversion.=&path_to_problem($cleanURL,$LaTeXwidth);
 2809: 		    } else {
 2810: 			$texversion.='\vskip 0 mm \noindent\textbf{'.
 2811:                         &mt("Printing from Authoring Space: No Title").'}\vskip 0 mm ';
 2812: 
 2813: 			$texversion.=&path_to_problem($cleanURL,$LaTeXwidth);
 2814: 		    }
 2815: 		    $texversion.='\vskip 1 mm '.$answer.'\end{document}';
 2816: 		}
 2817: 
 2818: 
 2819: 		
 2820: 
 2821: 	    
 2822: 	    }
 2823: 	    # Print annotations.
 2824: 
 2825: 
 2826: 	    if ($helper->{'VARS'}->{'PRINT_ANNOTATIONS'} eq 'yes') {
 2827: 		my $annotation .= &annotate($currentURL);
 2828: 		$texversion =~ s/(\\keephidden{ENDOFPROBLEM})/$annotation$1/;
 2829: 	    }
 2830: 
 2831: 
 2832: 	    if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
 2833: 		$texversion=&IndexCreation($texversion,$currentURL);
 2834: 	    }
 2835: 	    if ($helper->{'VARS'}->{'CONSTR_RESOURSE_URL'} eq 'yes') {
 2836: 		$texversion=~s/(\\addcontentsline\{toc\}\{subsection\}\{[^\}]*\})/$1 URL: \\verb|$currentURL| \\strut\\\\\\strut /;
 2837: 
 2838: 	    }
 2839: 	    $result .= $texversion;
 2840: 	    if ($currentURL=~m/\.page\s*$/) {
 2841: 		($result,$number_of_columns) = &page_cleanup($result);
 2842: 	    }
 2843:         } elsif ($cleanURL!~m|^/adm/|
 2844: 		 && $currentURL=~/\.(sequence|page)$/ && $helper->{'VARS'}->{'construction'} eq '1') {
 2845: 	    $result .= &print_construction_sequence($currentURL, $helper, %form,
 2846: 						    $LaTeXwidth);
 2847: 	    $result .= '\end{document}';  
 2848: 	    if (!($result =~ /\\begin\{document\}/)) {
 2849: 		$result = &print_latex_header() . $result;
 2850: 	    }
 2851: 	    # End construction space sequence.
 2852: 	} elsif ($cleanURL=~/\/(smppg|syllabus|aboutme|bulletinboard)$/) { 
 2853: 		$form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
 2854: 		if ($currentURL=~/\/syllabus$/) {$currentURL=~s/\/res//;}
 2855: 		$resources_printed .= $currentURL.':';
 2856: 		my $texversion = &ssi_with_retries($currentURL, $ssi_retry_count, %form);
 2857: 		if ($helper->{'VARS'}->{'PRINT_ANNOTATIONS'} eq 'yes') {
 2858: 		    my $annotation = &annotate($currentURL);
 2859: 		    $texversion    =~ s/(\\end{document})/$annotation$1/;
 2860: 		}
 2861: 		$result .= $texversion;
 2862: 	} elsif ($cleanURL =~/\.tex$/) {
 2863: 	    # For this sort of print of a single LaTeX file,
 2864: 	    # We can just print the LaTeX file as it is uninterpreted in any way:
 2865: 	    #
 2866: 
 2867: 	    $result = &fetch_raw_resource($currentURL);
 2868: 	    if ($helper->{'VARS'}->{'PRINT_ANNOTATIONS'} eq 'yes') {
 2869: 		my $annotation = &annotate($currentURL);
 2870: 		$result =~ s/(\\end{document})/$annotation$1/;
 2871: 	    }
 2872: 
 2873: 	    $do_postprocessing = 0; # Don't massage the result.
 2874: 
 2875: 	} elsif ($cleanURL =~ /\.pdf$/i) {
 2876: 	    $result .= &include_pdf($cleanURL);
 2877: 	    $result .= '\end{document}';
 2878: 	} elsif ($cleanURL =~ /\.page$/i) { #  Print page in non construction space contexts.
 2879: 
 2880: 	    # Determine the set of resources in the map of the page:
 2881: 
 2882: 	    my $navmap         =  Apache::lonnavmaps::navmap->new();
 2883: 	    my @page_resources =  $navmap->retrieveResources($cleanURL);
 2884: 	    $result           .=  &print_page_in_course($helper, $rparmhash,
 2885: 							$cleanURL, \@page_resources);
 2886: 
 2887:        
 2888: 	} else {
 2889: 	    $result.=&unsupported($currentURL,$helper->{'VARS'}->{'LATEX_TYPE'},
 2890: 				  $helper->{'VARS'}->{'symb'});
 2891: 	}
 2892:     } elsif (($print_type eq 'map_problems')          or
 2893: 	     ($print_type eq 'map_problems_in_page')  or
 2894: 	     ($print_type eq 'map_resources_in_page') or
 2895:              ($print_type eq 'map_problems_pages')    or
 2896:              ($print_type eq 'all_problems')          or
 2897: 	     ($print_type eq 'all_resources')         or # BUGBUG
 2898: 	     ($print_type eq 'select_sequences')      or
 2899: 	     ($print_type eq 'map_incomplete_problems_seq')
 2900: 	     ) {
 2901:  
 2902:         #-- produce an output string
 2903: 	if (($print_type eq 'map_problems')                or
 2904: 	    ($print_type eq 'map_incomplete_problems_seq') or
 2905: 	    ($print_type eq 'map_problems_in_page') ) {
 2906: 	    $selectionmade = 2;
 2907: 	} elsif (($print_type eq 'map_problems_pages') or
 2908: 		 ($print_type eq 'map_resources_in_page'))
 2909: 	{
 2910: 	    $selectionmade = 3;
 2911: 	} elsif (($print_type eq 'all_problems') 
 2912: 		 ) {
 2913: 	    $selectionmade = 4;
 2914: 	} elsif ($print_type eq 'all_resources') {  #BUGBUG
 2915: 	    $selectionmade = 4;
 2916: 	} elsif ($print_type eq 'select_sequences') {
 2917: 	    $selectionmade = 7;
 2918: 	}
 2919: 
 2920: 	$form{'problem_split'}=$parmhash{'problem_stream_switch'};
 2921: 	$form{'suppress_tries'}=$parmhash{'suppress_tries'};
 2922: 	$form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
 2923: 	$form{'print_discussions'}=$helper->{'VARS'}->{'PRINT_DISCUSSIONS'};
 2924: 	$form{'print_annotations'} = $helper->{'VARS'}->{'PRINT_ANNOTATIONS'};
 2925: 	if (($helper->{'VARS'}->{'PRINT_DISCUSSIONS'} eq 'yes')   ||
 2926: 	    ($helper->{'VARS'}->{'PRINT_ANNOTATIONS'} eq 'yes') ) {
 2927: 	    $form{'problem_split'}='yes';
 2928: 	}
 2929: 	my $flag_latex_header_remove = 'NO';
 2930: 	my $flag_page_in_sequence = 'NO';
 2931: 	my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'};
 2932: 	my $prevassignment='';
 2933: 
 2934: 	&Apache::lonxml::clear_problem_counter();
 2935: 
 2936: 	my $pbreakresources = keys %page_breaks;
 2937: 	for (my $i=0;$i<=$#master_seq;$i++) {
 2938: 
 2939: 	    &Apache::lonenc::reset_enc();
 2940: 
 2941: 
 2942: 	    # Note due to document structure, not allowed to put \newpage
 2943: 	    # prior to the first resource
 2944: 
 2945: 	    if (defined $page_breaks{$master_seq[$i]}) {
 2946: 		if($i != 0) {
 2947: 		    $result.="\\newpage\n";
 2948: 		}
 2949: 	    }
 2950: 	    $result .= &get_extra_vspaces($helper, $master_seq[$i]);
 2951: 	    my ($sequence,$middle_thingy,$urlp)=&Apache::lonnet::decode_symb($master_seq[$i]);
 2952: 	    $urlp=&Apache::lonnet::clutter($urlp);
 2953: 	    $form{'symb'}=$master_seq[$i];
 2954: 
 2955: 	    my $assignment=&Apache::lonxml::latex_special_symbols(&Apache::lonnet::gettitle($sequence),'header'); #title of the assignment which contains this problem
 2956: 
 2957: 	    if ($selectionmade==7) {$helper->{VARS}->{'assignment'}=$assignment;}
 2958: 	    if ($i==0) {$prevassignment=$assignment;}
 2959: 	    my $texversion='';
 2960: 	    if ($urlp!~m|^/adm/|
 2961: 		&& $urlp=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)$/) {
 2962: 		$resources_printed .= $urlp.':';
 2963: 		&Apache::lonxml::remember_problem_counter();
 2964: 		if ($flag_latex_header_remove eq 'NO') {
 2965: 		    $texversion.=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});  # RF
 2966:                     unless (($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only') ||
 2967:                             (($i==0) &&
 2968:                              (($urlp=~/\.page$/) ||
 2969:                               ($print_type eq 'map_problems_in_page') ||
 2970:                               ($print_type eq 'map_resources_in_page')))) {
 2971:                         $flag_latex_header_remove = 'YES';
 2972:                     }
 2973: 		}
 2974: 		$texversion.=&ssi_with_retries($urlp, $ssi_retry_count, %form);
 2975: 		if ($urlp=~/\.page$/) {
 2976: 		    ($texversion,my $number_of_columns_page) = &page_cleanup($texversion);
 2977: 		    if ($number_of_columns_page > $number_of_columns) {$number_of_columns=$number_of_columns_page;} 
 2978: 		    $texversion =~ s/\\end{document}\d*/\\end{document}/;
 2979: 		    $flag_page_in_sequence = 'YES';
 2980: 		}
 2981: 
 2982: 		if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
 2983: 		   ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
 2984: 		    #  Don't permanently pervert the %form hash
 2985: 		    my %answerform = %form;
 2986: 		    $answerform{'grade_target'}='answer';
 2987: 		    $answerform{'answer_output_mode'}='tex';
 2988: 		    $resources_printed .= $urlp.':';
 2989: 
 2990: 		    &Apache::lonxml::restore_problem_counter();
 2991: 		    my $answer=&ssi_with_retries($urlp, $ssi_retry_count, %answerform);
 2992:                     if ($urlp =~ /\.page$/) {
 2993:                         $answer =~ s/\\end{document}(\d*)$//;
 2994:                     }
 2995: 		    if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
 2996:                         if ($urlp =~ /\.page$/) {
 2997:                             my @probs = split(/\\keephidden{ENDOFPROBLEM}/,$texversion);
 2998:                             my $lastprob = pop(@probs);
 2999:                             $texversion = join('\keephidden{ENDOFPROBLEM}',@probs).
 3000:                             $answer.'\keephidden{ENDOFPROBLEM}'.$lastprob;
 3001:                         } else {
 3002:                             $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
 3003:                         }
 3004: 		    } else {
 3005: 			if ($urlp=~/$LONCAPA::assess_page_re/) {
 3006: 			    $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
 3007: #			    $texversion =~ s/\\begin{document}//; # FIXME
 3008: 			    my $title = &Apache::lonnet::gettitle($master_seq[$i]);
 3009: 			    $title = &Apache::lonxml::latex_special_symbols($title);
 3010: 			    my $body ='\vskip 0 mm \noindent\textbf{'.$title.'}\vskip 0 mm ';
 3011: 			    $body   .= &path_to_problem ($urlp,$LaTeXwidth);
 3012: 			    $body   .='\vskip 1 mm '.$answer;
 3013: 			    $body    = &encapsulate_minipage($body);
 3014: 			    $texversion .= $body;
 3015: 			} else {
 3016: 			    $texversion='';
 3017: 			}
 3018: 		    }
 3019: 
 3020: 		}
 3021: 		if ($helper->{'VARS'}->{'PRINT_ANNOTATIONS'} eq 'yes') {
 3022: 		    my $annotation .= &annotate($urlp);
 3023: 		    $texversion =~ s/(\\keephidden{ENDOFPROBLEM})/$annotation$1/;
 3024: 		}
 3025: 
 3026: 		if ($flag_latex_header_remove ne 'NO') {
 3027: 		    $texversion = &latex_header_footer_remove($texversion);
 3028: 		} else {
 3029: 		    $texversion =~ s/\\end{document}//;
 3030: 		}
 3031: 		if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
 3032: 		    $texversion=&IndexCreation($texversion,$urlp);
 3033: 		}
 3034: 		if (($selectionmade == 4) and ($assignment ne $prevassignment)) {
 3035: 		    my $name = &get_name();
 3036: 		    my $courseidinfo = &get_course();
 3037:                     if (defined($courseidinfo)) { $courseidinfo=' - '.$courseidinfo }
 3038: 		    $prevassignment=$assignment;
 3039: 		    my $header_text = $parmhash{'print_header_format'};
 3040: 		    $header_text    = &format_page_header($textwidth, $header_text,
 3041: 							  $assignment, 
 3042: 							  $courseidinfo, 
 3043: 							  $name);
 3044: 		    if ($numberofcolumns eq '1') {
 3045: 			$result .='\newpage \noindent\parbox{\minipagewidth}{\noindent\\lhead{'.$header_text.'}} \vskip 5 mm ';
 3046: 		    } else {
 3047: 			$result .='\newpage \noindent\parbox{\minipagewidth}{\noindent\\fancyhead[LO]{'.$header_text.'}} \vskip 5 mm ';
 3048: 		    }			
 3049: 		}
 3050: 		$result .= $texversion;
 3051: 		$flag_latex_header_remove = 'YES';   
 3052: 	    } elsif ($urlp=~/\/(smppg|syllabus|aboutme|bulletinboard)$/) { 
 3053: 		$form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
 3054: 		if ($urlp=~/\/syllabus$/) {$urlp=~s/\/res//;}
 3055: 		$resources_printed .= $urlp.':';
 3056: 		my $texversion = &ssi_with_retries($urlp, $ssi_retry_count, %form);
 3057: 		if ($helper->{'VARS'}->{'PRINT_ANNOTATIONS'} eq 'yes') {
 3058: 		    my $annotation = &annotate($urlp);
 3059: 		    $texversion =~ s/(\\end{document)/$annotation$1/;
 3060: 		}
 3061: 
 3062: 		if ($flag_latex_header_remove ne 'NO') {
 3063: 		    $texversion = &latex_header_footer_remove($texversion);
 3064: 		} else {	
 3065: 		    $texversion =~ s/\\end{document}/\\vskip 0\.5mm\\noindent\\makebox\[\\textwidth\/\$number_of_columns\]\[b\]\{\\hrulefill\}/;
 3066: 		}
 3067: 		$result .= $texversion;
 3068: 		$flag_latex_header_remove = 'YES'; 
 3069: 	    } elsif ($urlp=~ /\.pdf$/i) {
 3070: 		if ($i > 0) {
 3071: 		    $result .= '\cleardoublepage';
 3072: 		}
 3073:                 my $texfrompdf = &include_pdf($urlp);
 3074:                 if ($flag_latex_header_remove ne 'NO') {
 3075:                     $texfrompdf = &latex_header_footer_remove($texfrompdf);
 3076:                 }
 3077:                 $result .= $texfrompdf;
 3078: 		if ($i != $#master_seq) {
 3079: 		    if ($numberofcolumns eq '1') {
 3080: 			$result .= '\newpage';
 3081: 		    } else {
 3082: 			# the \\'s seem to be needed to let LaTeX know there's something
 3083: 			# on the page since LaTeX seems to not like to clear an empty page.
 3084: 			#
 3085: 			$result .= '\\ \cleardoublepage';
 3086: 		    }
 3087: 		}
 3088: 		$flag_latex_header_remove = 'YES';
 3089: 
 3090: 	    } else {
 3091: 		$texversion=&unsupported($urlp,$helper->{'VARS'}->{'LATEX_TYPE'},
 3092: 					 $master_seq[$i]);
 3093: 		if ($flag_latex_header_remove ne 'NO') {
 3094: 		    $texversion = &latex_header_footer_remove($texversion);
 3095: 		} else {
 3096: 		    $texversion =~ s/\\end{document}//;
 3097: 		}
 3098: 		$result .= $texversion;
 3099: 		$flag_latex_header_remove = 'YES';   
 3100: 	    }
 3101: 	    if (&Apache::loncommon::connection_aborted($r)) { 
 3102: 		last; 
 3103: 	    }
 3104: 	}
 3105: 	&Apache::lonxml::clear_problem_counter();
 3106: 	if ($flag_page_in_sequence eq 'YES') {
 3107: 	    $result =~ s/\\usepackage{calc}/\\usepackage{calc}\\usepackage{longtable}/;
 3108: 	}	
 3109: 	$result .= '\end{document}';
 3110:      } elsif (($print_type eq 'problems_for_students')           ||
 3111: 	      ($print_type eq 'problems_for_students_from_page') ||
 3112: 	      ($print_type eq 'all_problems_students')           ||
 3113: 	      ($print_type eq 'resources_for_students')          ||
 3114: 	      ($print_type eq 'incomplete_problems_selpeople_course') ||
 3115: 	      ($print_type eq 'map_incomplete_problems_people_seq')){
 3116: 
 3117: 
 3118:      #-- prints assignments for whole class or for selected students  
 3119: 	 my $type;
 3120: 	 if (($print_type eq 'problems_for_students')           ||
 3121: 	     ($print_type eq 'problems_for_students_from_page') ||
 3122: 	     ($print_type eq 'all_problems_students')           ||
 3123: 	     ($print_type eq 'incomplete_problems_selpeople_course') ||
 3124: 	     ($print_type eq 'map_incomplete_problems_people_seq')) {
 3125: 	     $selectionmade=5;
 3126: 	     $type='problems';
 3127: 	 } elsif ($print_type eq 'resources_for_students') {
 3128: 	     $selectionmade=8;
 3129: 	     $type='resources';
 3130: 	 }
 3131: 	 my @students=split /\|\|\|/, $helper->{'VARS'}->{'STUDENTS'};
 3132: 	 #   The normal sort order is by section then by students within the
 3133: 	 #   section. If the helper var student_sort is 1, then the user has elected
 3134: 	 #   to override this and output the students by name.
 3135: 	 #    Each element of the students array is of the form:
 3136: 	 #       username:domain:section:last, first:status
 3137: 	 #    
 3138: 	 #  Note that student sort is not compatible with printing 
 3139: 	 #  1 section per pdf...so that setting overrides.
 3140: 	 #   
 3141: 	 if (($helper->{'VARS'}->{'student_sort'}    eq 1)  && 
 3142: 	     ($helper->{'VARS'}->{'SPLIT_PDFS'} ne "sections")) {
 3143: 	     @students = sort compare_names  @students;
 3144: 	 } else {
 3145: 	     @students = sort compare_sections @students; 
 3146: 	 }
 3147: 	 &adjust_number_to_print($helper);
 3148: 
 3149:          if ($helper->{'VARS'}->{'NUMBER_TO_PRINT'} eq '0' ||
 3150: 	     $helper->{'VARS'}->{'NUMBER_TO_PRINT'} eq 'all' ) {
 3151: 	     $helper->{'VARS'}->{'NUMBER_TO_PRINT'}=$#students+1;
 3152: 	 }
 3153: 	 # If we are splitting on section boundaries, we need 
 3154: 	 # to remember that in split_on_sections and 
 3155: 	 # print all of the students in the list.
 3156: 	 #
 3157: 	 my $split_on_sections = 0;
 3158: 	 if ($helper->{'VARS'}->{'NUMBER_TO_PRINT'} eq 'section') {
 3159: 	     $split_on_sections = 1;
 3160: 	     $helper->{'VARS'}->{'NUMBER_TO_PRINT'} = $#students+1;
 3161: 	 }
 3162: 	 my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'};
 3163: 
 3164:          my $map;
 3165:          if ($helper->{VARS}->{'symb'}) {
 3166:              ($map, my $id, my $resource) =
 3167:                  &Apache::lonnet::decode_symb($helper->{VARS}->{'symb'});
 3168:          }
 3169: 
 3170: 	 #loop over students
 3171: 
 3172:  	 my $flag_latex_header_remove = 'NO';
 3173: 	 my %moreenv;
 3174:          $moreenv{'instructor_comments'}='hide';
 3175: 	 $moreenv{'textwidth'}=&get_textwidth($helper,$LaTeXwidth);
 3176: 	 $moreenv{'print_discussions'}=$helper->{'VARS'}->{'PRINT_DISCUSSIONS'};
 3177: 	 $moreenv{'print_annotations'} = $helper->{'VARS'}->{'PRINT_ANNOTATIONS'};
 3178: 	 $moreenv{'problem_split'}    = $parmhash{'problem_stream_switch'};
 3179: 	 $moreenv{'suppress_tries'}   = $parmhash{'suppress_tries'};
 3180: 	 if (($helper->{'VARS'}->{'PRINT_DISCUSSIONS'} eq 'yes')  ||
 3181: 	     ($helper->{'VARS'}->{'PRINT_ANNOTATIONS'} eq 'yes')) {
 3182: 	     $moreenv{'problem_split'}='yes';
 3183: 	 }
 3184: 	 my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$#students+1);
 3185: 	 my $student_counter=-1;
 3186: 	 my $i = 0;
 3187: 	 my $last_section = (split(/:/,$students[0]))[2];
 3188: 	 foreach my $person (@students) {
 3189:              my $duefile="/home/httpd/prtspool/$env{'user.name'}_$env{'user.domain'}_printout.due";
 3190: 	     if (-e $duefile) {
 3191: 		 my $temp_file = Apache::File->new('>>'.$duefile);
 3192: 		 print $temp_file "1969\n";
 3193: 	     }
 3194: 	     $student_counter++;
 3195: 	     if ($split_on_sections) {
 3196: 		 my $this_section = (split(/:/,$person))[2];
 3197: 		 if ($this_section ne $last_section) {
 3198: 		     $i++;
 3199: 		     $last_section = $this_section;
 3200: 		 }
 3201: 	     } else {
 3202: 		 $i=int($student_counter/$helper->{'VARS'}{'NUMBER_TO_PRINT'});
 3203: 	     }
 3204: 	     my $actual_seq = master_seq_to_person_seq($map, \@master_seq,
 3205:                                                        $person, undef, 1);
 3206: 	     my ($output,$fullname, $printed)=&print_resources($r,$helper,
 3207: 						     $person,$type,
 3208: 						     \%moreenv,  $actual_seq,
 3209: 						     $flag_latex_header_remove,
 3210: 						     $LaTeXwidth);
 3211: 	     $resources_printed .= ":";
 3212: 	     $print_array[$i].=$output;
 3213: 	     $student_names[$i].=$person.':'.$fullname.'_END_';
 3214: #	     &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,&mt('last student').' '.$fullname);
 3215: 	     &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
 3216: 	     $flag_latex_header_remove = 'YES';
 3217: 	     if (&Apache::loncommon::connection_aborted($r)) { last; }
 3218: 	 }
 3219: 	 &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
 3220: 	 $result .= $print_array[0].'  \end{document}';
 3221:      } elsif (($print_type eq 'problems_for_anon')      ||
 3222: 	      ($print_type eq 'problems_for_anon_page') ||
 3223: 	      ($print_type eq 'resources_for_anon')  ) { 
 3224: 	 my $cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
 3225: 	 my $cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
 3226: 	 my $num_todo=$helper->{'VARS'}->{'NUMBER_TO_PRINT_TOTAL'};
 3227: 	 my $code_name=$helper->{'VARS'}->{'ANON_CODE_STORAGE_NAME'};
 3228: 	 my $old_name=$helper->{'VARS'}->{'REUSE_OLD_CODES'};
 3229: 	 my $single_code = $helper->{'VARS'}->{'SINGLE_CODE'};
 3230: 	 my $selected_code = $helper->{'VARS'}->{'CODE_SELECTED_FROM_LIST'};
 3231: 	 my $code_option=$helper->{'VARS'}->{'CODE_OPTION'};
 3232:          my @lines = &Apache::grades::get_scantronformat_file();
 3233: 	 my ($code_type,$code_length,$bubbles_per_row)=('letter',6,10);
 3234: 	 foreach my $line (@lines) {
 3235:              chomp($line);
 3236: 	     my ($name,$type,$length,$bubbles_per_item) = 
 3237:                  (split(/:/,$line))[0,2,4,17];
 3238: 	     if ($name eq $code_option) {
 3239: 		 $code_length=$length;
 3240: 		 if ($type eq 'number') { $code_type = 'number'; }
 3241:                  chomp($bubbles_per_item); 
 3242:                  if (($bubbles_per_item ne '') && ($bubbles_per_item > 0)) {
 3243:                      $bubbles_per_row = $bubbles_per_item; 
 3244:                  }
 3245: 	     }
 3246: 	 }
 3247:          my ($randomorder,$randompick,$map);
 3248:          if ($helper->{VARS}{'symb'}) {
 3249:              ($map, my $id, my $resource) =
 3250:                  &Apache::lonnet::decode_symb($helper->{VARS}{'symb'});
 3251:              my $navmap = Apache::lonnavmaps::navmap->new();
 3252:              if (defined($navmap)) {
 3253:                  if ($map) {
 3254:                      my $mapres = $navmap->getResourceByUrl($map);
 3255:                      $randomorder = $mapres->randomorder();
 3256:                      $randompick = $mapres->randompick();
 3257:                  }
 3258:              }
 3259:          }
 3260: 	 my %moreenv = ('textwidth' => &get_textwidth($helper,$LaTeXwidth));
 3261: 	 $moreenv{'problem_split'}    = $parmhash{'problem_stream_switch'};
 3262:          $moreenv{'instructor_comments'}='hide';
 3263:          $moreenv{'bubbles_per_row'} = $bubbles_per_row;
 3264: 	 my $seed=time+($$<<16)+($$);
 3265: 	 my @allcodes;
 3266: 	 if ($old_name) {
 3267: 	     my %result=&Apache::lonnet::get('CODEs',
 3268: 					     [$old_name,"type\0$old_name"],
 3269: 					     $cdom,$cnum);
 3270: 	     $code_type=$result{"type\0$old_name"};
 3271: 	     @allcodes=split(',',$result{$old_name});
 3272: 	     $num_todo=scalar(@allcodes);
 3273: 	 } elsif ($selected_code) { # Selection value is always numeric.
 3274: 	     $num_todo = 1;
 3275: 	     @allcodes = ($selected_code);
 3276: 	 } elsif ($single_code) {
 3277: 
 3278: 	     $num_todo    = 1;	# Unconditionally one code to do.
 3279: 	     # If an alpha code have to convert to numbers so it can be
 3280: 	     # converted back to letters again :-)
 3281: 	     #
 3282: 	     if ($code_type ne 'number') {
 3283: 		 $single_code = &letters_to_num($single_code);
 3284: 	     }
 3285: 	     @allcodes = ($single_code);
 3286: 	 } else {
 3287: 	     my %allcodes;
 3288: 	     srand($seed);
 3289: 	     for (my $i=0;$i<$num_todo;$i++) {
 3290: 		 $moreenv{'CODE'}=&get_CODE(\%allcodes,$i,$seed,$code_length,
 3291: 					    $code_type);
 3292: 	     }
 3293: 	     if ($code_name) {
 3294: 		 &Apache::lonnet::put('CODEs',
 3295: 				      {
 3296: 					$code_name =>join(',',keys(%allcodes)),
 3297: 					"type\0$code_name" => $code_type
 3298: 				      },
 3299: 				      $cdom,$cnum);
 3300: 	     }
 3301: 	     @allcodes=keys(%allcodes);
 3302: 	 }
 3303: 	 my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'};
 3304: 	 my ($type) = split(/_/,$print_type);
 3305: 	 &adjust_number_to_print($helper);
 3306: 	 my $number_per_page=$helper->{'VARS'}->{'NUMBER_TO_PRINT'};
 3307: 	 if ($number_per_page eq '0' || $number_per_page eq 'all'
 3308: 	     || $number_per_page eq 'section') {
 3309: 	     $number_per_page=$num_todo > 0 ? $num_todo : 1;
 3310: 	 }
 3311: 	 my $flag_latex_header_remove = 'NO'; 
 3312: 	 my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$num_todo);
 3313: 	 my $count=0;
 3314: 	 foreach my $code (sort(@allcodes)) {
 3315: 	     my $file_num=int($count/$number_per_page);
 3316: 	     if ($code_type eq 'number') { 
 3317: 		 $moreenv{'CODE'}=$code;
 3318: 	     } else {
 3319: 		 $moreenv{'CODE'}=&num_to_letters($code);
 3320: 	     }
 3321:              my $actual_seq = \@master_seq;
 3322:              if ($randomorder || $randompick) {
 3323:                  $env{'form.CODE'} = $moreenv{'CODE'};
 3324:                  $actual_seq = master_seq_to_person_seq($map, \@master_seq,
 3325:                                                         undef,
 3326:                                                         $moreenv{'CODE'}, 1);
 3327:                  delete($env{'form.CODE'});
 3328:              }
 3329: 	     my ($output,$fullname, $printed)=
 3330: 		 &print_resources($r,$helper,'anonymous',$type,\%moreenv,
 3331: 				  $actual_seq,$flag_latex_header_remove,
 3332: 				  $LaTeXwidth);
 3333: 	     $resources_printed .= ":";
 3334: 	     $print_array[$file_num].=$output;
 3335: 	     &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
 3336: 				       &mt('last assignment').' '.$fullname);
 3337: 	     $flag_latex_header_remove = 'YES';
 3338: 	     $count++;
 3339: 	     if (&Apache::loncommon::connection_aborted($r)) { last; }
 3340: 	 }
 3341: 	 &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
 3342: 	 $result .= $print_array[0].'  \end{document}';
 3343:      } elsif ($print_type eq 'problems_from_directory') {      
 3344:     #prints selected problems from the subdirectory 
 3345: 	$selectionmade = 6;
 3346:         my @list_of_files=split /\|\|\|/, $helper->{'VARS'}->{'FILES'};
 3347: 	@list_of_files=sort @list_of_files;
 3348: 	my $flag_latex_header_remove = 'NO'; 
 3349: 	my $rndseed=time;
 3350: 	if ($helper->{'VARS'}->{'curseed'}) {
 3351: 	    $rndseed=$helper->{'VARS'}->{'curseed'};
 3352: 	}
 3353: 	for (my $i=0;$i<=$#list_of_files;$i++) {
 3354: 
 3355: 	    &Apache::lonenc::reset_enc();
 3356: 
 3357: 	    my $urlp = $list_of_files[$i];
 3358: 	    $urlp=~s|//|/|;
 3359: 	    if ($urlp=~/\//) {
 3360: 		$form{'problem_split'}=$parmhash{'problem_stream_switch'};
 3361: 		$form{'rndseed'}=$rndseed;
 3362: 		$urlp =~ s|^$Apache::lonnet::perlvar{'lonDocRoot'}||;
 3363: 		$resources_printed .= $urlp.':';
 3364: 		my $texversion=&ssi_with_retries($urlp, $ssi_retry_count, %form);
 3365: 		if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
 3366: 		   ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
 3367: 		    #  Don't permanently pervert %form:
 3368: 		    my %answerform = %form;
 3369: 		    $answerform{'grade_target'}='answer';
 3370: 		    $answerform{'answer_output_mode'}='tex';
 3371: 		    $answerform{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
 3372: 		    $answerform{'rndseed'}=$rndseed;
 3373: 		    $resources_printed .= $urlp.':';
 3374: 		    my $answer=&ssi_with_retries($urlp, $ssi_retry_count, %answerform);
 3375: 		    if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
 3376: 			$texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
 3377: 		    } else {
 3378: 			$texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
 3379: 			if ($helper->{'VARS'}->{'construction'} ne '1') {
 3380: 			    $texversion.='\vskip 0 mm \noindent ';
 3381: 			    $texversion.=&path_to_problem ($urlp,$LaTeXwidth);
 3382: 			} else {
 3383: 			    $texversion.='\vskip 0 mm \noindent\textbf{'.
 3384:                                          &mt("Printing from Authoring Space: No Title").'}\vskip 0 mm ';
 3385: 			    $texversion.=&path_to_problem ($urlp,$LaTeXwidth);
 3386: 			}
 3387: 			$texversion.='\vskip 1 mm '.$answer.'\end{document}';
 3388: 		    }
 3389: 		}
 3390:                 #this chunk is responsible for printing the path to problem
 3391: 
 3392: 		my $newurlp=&path_to_problem($urlp,$LaTeXwidth);
 3393: 		$texversion =~ s/(\\begin{minipage}{\\textwidth})/$1 $newurlp/;
 3394: 		if ($flag_latex_header_remove ne 'NO') {
 3395: 		    $texversion = &latex_header_footer_remove($texversion);
 3396: 		} else {
 3397: 		    $texversion =~ s/\\end{document}//;
 3398: 		}
 3399: 		if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
 3400: 		    $texversion=&IndexCreation($texversion,$urlp);
 3401: 		}
 3402: 		if ($helper->{'VARS'}->{'CONSTR_RESOURSE_URL'} eq 'yes') {
 3403: 		    $texversion=~s/(\\addcontentsline\{toc\}\{subsection\}\{[^\}]*\})/$1 URL: \\verb|$urlp| \\strut\\\\\\strut /;
 3404: 		    
 3405: 		}
 3406: 		$result .= $texversion;
 3407: 	    }
 3408: 	    $flag_latex_header_remove = 'YES';  
 3409: 	}
 3410: 	if ($helper->{VARS}->{'construction'} eq '1') {$result=~s/(\\typeout)/ RANDOM SEED IS $rndseed $1/;}
 3411: 	$result .= '\end{document}';      	
 3412:     }
 3413: #-------------------------------------------------------- corrections for the different page formats
 3414: 
 3415:     # Only post process if that has not been turned off e.g. by a raw latex resource.
 3416: 
 3417:     if ($do_postprocessing) {
 3418: 	$result = &page_format_transformation($papersize,
 3419: 					      $laystyle,$numberofcolumns,
 3420: 					      $print_type,$result,
 3421: 					      $helper->{VARS}->{'assignment'},
 3422: 					      $helper->{'VARS'}->{'TABLE_CONTENTS'},
 3423: 					      $helper->{'VARS'}->{'TABLE_INDEX'},
 3424: 					      $selectionmade);
 3425: 	$result = &latex_corrections($number_of_columns,$result,$selectionmade,
 3426: 				     $helper->{'VARS'}->{'ANSWER_TYPE'});
 3427: 	#if ($numberofcolumns == 1) {
 3428: 	$result =~ s/\\textwidth\s*=\s*-?\d*\.?\d*\s*(cm|mm|in)/\\textwidth= $helper->{'VARS'}->{'pagesize.width'} $helper->{'VARS'}->{'pagesize.widthunit'} /;
 3429: 	$result =~ s/\\textheight\s*=?\s*-?\d*\.?\d*\s*(cm|mm|in)/\\textheight $helper->{'VARS'}->{'pagesize.height'} $helper->{'VARS'}->{'pagesize.heightunit'} /;
 3430: 	$result =~ s/\\evensidemargin\s*=\s*-?\d*\.?\d*\s*(cm|mm|in)/\\evensidemargin= $helper->{'VARS'}->{'pagesize.lmargin'} $helper->{'VARS'}->{'pagesize.lmarginunit'} /;
 3431: 	$result =~ s/\\oddsidemargin\s*=\s*-?\d*\.?\d*\s*(cm|mm|in)/\\oddsidemargin= $helper->{'VARS'}->{'pagesize.lmargin'} $helper->{'VARS'}->{'pagesize.lmarginunit'} /;
 3432: 	#}
 3433:     }
 3434: 
 3435:     # Set URLback if this is a construction space print so we can provide
 3436:     # a link to the resource being edited.
 3437:     #
 3438: 
 3439:     my $URLback=''; #link to original document
 3440:     if ($helper->{'VARS'}->{'construction'} eq '1') {
 3441: 	$URLback=$helper->{'VARS'}->{'filename'};
 3442:     }
 3443:     #
 3444:     # Final adjustment of the font size:
 3445:     #
 3446: 
 3447:     $result = set_font_size($result);
 3448: 
 3449:     # Insert any babel headers required.
 3450: 
 3451:     $result       = &collect_languages($result);
 3452: 
 3453: 
 3454: #-- writing .tex file in prtspool 
 3455:     my $temp_file;
 3456:     my $identifier = &Apache::loncommon::get_cgi_id();
 3457:     my $filename = "/home/httpd/prtspool/$env{'user.name'}_$env{'user.domain'}_printout_$identifier.tex";
 3458:     if (!($#print_array>0)) { 
 3459:        unless ($temp_file = Apache::File->new('>'.$filename)) {
 3460: 	  $r->log_error("Couldn't open $filename for output $!");
 3461: 	  return SERVER_ERROR; 
 3462:        }
 3463:        print $temp_file $result;
 3464:        my $begin=index($result,'\begin{document}',0);
 3465:        my $inc=substr($result,0,$begin+16); 
 3466:     } else {
 3467:        my $begin=index($result,'\begin{document}',0);
 3468:        my $inc=substr($result,0,$begin+16);
 3469:        for (my $i=0;$i<=$#print_array;$i++) {
 3470: 	  if ($i==0) {
 3471: 	      $print_array[$i]=$result;
 3472: 	  } else {
 3473: 	      $print_array[$i].='\end{document}';
 3474: 	      $print_array[$i] = 
 3475: 		&latex_corrections($number_of_columns,$print_array[$i],
 3476: 				   $selectionmade, 
 3477: 				   $helper->{'VARS'}->{'ANSWER_TYPE'});
 3478: 	    
 3479: 	      my $anobegin=index($print_array[$i],'\setcounter{page}',0);
 3480: 	      substr($print_array[$i],0,$anobegin)='';
 3481: 	      $print_array[$i]=$inc.$print_array[$i];
 3482: 	  }
 3483: 	  my $temp_file;
 3484: 	  my $newfilename=$filename;
 3485: 	  my $num=$i+1;
 3486: 	  $newfilename =~s/\.tex$//; 
 3487: 	  $newfilename=sprintf("%s_%03d.tex",$newfilename, $num);
 3488: 	  unless ($temp_file = Apache::File->new('>'.$newfilename)) {
 3489: 	      $r->log_error("Couldn't open $newfilename for output $!");
 3490: 	      return SERVER_ERROR; 
 3491: 	  }
 3492: 	  print $temp_file $print_array[$i];
 3493:        }
 3494:     }
 3495:     my $student_names='';
 3496:     if ($#print_array>0) {
 3497:         for (my $i=0;$i<=$#print_array;$i++) {
 3498:   	  $student_names.=$student_names[$i].'_ENDPERSON_';
 3499: 	}
 3500:     } else {
 3501: 	if ($#student_names>-1) {
 3502: 	   $student_names=$student_names[0].'_ENDPERSON_';
 3503: 	} else {
 3504:            my $fullname = &get_name($env{'user.name'},$env{'user.domain'});
 3505: 	   $student_names=join(':',$env{'user.name'},$env{'user.domain'},
 3506: 				    $env{'request.course.sec'},$fullname).
 3507: 					'_ENDPERSON_'.'_END_';
 3508: 	}
 3509:      }
 3510: 	
 3511:      # logic for now is too complex to trace if this has been defined
 3512:      #  yet.
 3513:      my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 3514:      my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 3515:      &Apache::lonnet::appenv({'cgi.'.$identifier.'.file'   => $filename,
 3516: 				'cgi.'.$identifier.'.layout'  => $laystyle,
 3517: 				'cgi.'.$identifier.'.numcol'  => $numberofcolumns,
 3518: 				'cgi.'.$identifier.'.paper'  => $papersize,
 3519: 				'cgi.'.$identifier.'.selection' => $selectionmade,
 3520: 				'cgi.'.$identifier.'.tableofcontents' => $helper->{'VARS'}->{'TABLE_CONTENTS'},
 3521: 				'cgi.'.$identifier.'.tableofindex' => $helper->{'VARS'}->{'TABLE_INDEX'},
 3522: 				'cgi.'.$identifier.'.role' => $perm{'pav'},
 3523: 				'cgi.'.$identifier.'.numberoffiles' => $#print_array,
 3524: 				'cgi.'.$identifier.'.studentnames' => $student_names,
 3525: 				'cgi.'.$identifier.'.backref' => $URLback,});
 3526:     &Apache::lonnet::appenv({"cgi.$identifier.user"    => $env{'user.name'},
 3527: 				"cgi.$identifier.domain"  => $env{'user.domain'},
 3528: 				"cgi.$identifier.courseid" => $cnum, 
 3529: 				"cgi.$identifier.coursedom" => $cdom, 
 3530: 				"cgi.$identifier.resources" => $resources_printed});
 3531: 	
 3532:     my $end_page = &Apache::loncommon::end_page();
 3533:     my $continue_text = &mt('Continue');
 3534:     # If there's been an unrecoverable SSI error, report it to the user
 3535:     if ($ssi_error) {
 3536:         my $helpurl = &Apache::loncommon::top_nav_help('Helpdesk');
 3537:         $r->print('<br /><p class="LC_error">'.&mt('An unrecoverable network error occurred:').'</p><p>'.
 3538:                   &mt('At least one of the resources you chose to print could not be rendered due to an unrecoverable error when communicating with a server:').
 3539:                   '<br />'.$ssi_last_error_resource.'<br />'.$ssi_last_error.
 3540:                   '</p><p>'.&mt('You can continue using the link provided below, but make sure to carefully inspect your output file! The errors will be marked in the file.').'<br />'.
 3541:                   &mt('You may be able to reprint the individual resources for which this error occurred, as the issue may be temporary.').
 3542:                   '<br />'.&mt('If the error persists, please contact the [_1] for assistance.',$helpurl).'</p><p>'.
 3543:                   &mt('We apologize for the inconvenience.').'</p>'.
 3544:                   '<a href="/cgi-bin/printout.pl?'.$identifier.'">'.$continue_text.'</a>'.$end_page);
 3545:     } else {
 3546: 	$r->print(<<FINALEND);
 3547: <br />
 3548: <meta http-equiv="Refresh" content="0; url=/cgi-bin/printout.pl?$identifier" />
 3549: <a href="/cgi-bin/printout.pl?$identifier">$continue_text</a>
 3550: $end_page
 3551: FINALEND
 3552:     }                                     # endif ssi errors.
 3553: }
 3554: 
 3555: 
 3556: sub get_CODE {
 3557:     my ($all_codes,$num,$seed,$size,$type)=@_;
 3558:     my $max='1'.'0'x$size;
 3559:     my $newcode;
 3560:     while(1) {
 3561: 	$newcode=sprintf("%0".$size."d",int(rand($max)));
 3562: 	if (!exists($$all_codes{$newcode})) {
 3563: 	    $$all_codes{$newcode}=1;
 3564: 	    if ($type eq 'number' ) {
 3565: 		return $newcode;
 3566: 	    } else {
 3567: 		return &num_to_letters($newcode);
 3568: 	    }
 3569: 	}
 3570:     }
 3571: }
 3572: 
 3573: sub print_resources {
 3574:     my ($r,$helper,$person,$type,$moreenv,$master_seq,$remove_latex_header,
 3575: 	$LaTeXwidth)=@_;
 3576:     my $current_output = ''; 
 3577:     my $printed = '';
 3578:     my ($username,$userdomain,$usersection) = split /:/,$person;
 3579:     my $fullname = &get_name($username,$userdomain);
 3580:     my $namepostfix = "\\\\";	# Both anon and not anon should get the same vspace.
 3581: 
 3582: 
 3583:     #
 3584:     # Figure out if we need to filter the output by
 3585:     # the incomplete problems for that person
 3586:     #
 3587:     my $print_type = $helper->{'VARS'}->{'PRINT_TYPE'};
 3588:     my $print_incomplete = 0;
 3589:     if (($print_type eq 'map_incomplete_problems_people_seq')   ||
 3590: 	($print_type eq 'incomplete_problems_selpeople_course')) {
 3591: 	$print_incomplete = 1;
 3592:     }
 3593:     if ($person eq 'anonymous') {
 3594: 	$namepostfix .=&mt('Name:')." ";
 3595: 	$fullname = "CODE - ".$moreenv->{'CODE'};
 3596:     }
 3597: 
 3598:     #  Fullname may have special latex characters that need \ prefixing:
 3599:     #
 3600: 
 3601:     my $i           = 0;
 3602:     my $actually_printed = 0;	# Count of resources printed.
 3603:     #goes through all resources, checks if they are available for 
 3604:     #current student, and produces output   
 3605: 
 3606:     &Apache::lonxml::clear_problem_counter();
 3607:     my %page_breaks  = &get_page_breaks($helper);
 3608:     my $columns_in_format = (split(/\|/,$helper->{'VARS'}->{'FORMAT'}))[1];
 3609:     #
 3610:     #   end each student with a 
 3611:     #   Special that allows the post processor to even out the page
 3612:     #   counts later.  Nasty problem this... it would be really
 3613:     #   nice to put the special in as a postscript comment
 3614:     #   e.g. \special{ps:\ENDOFSTUDENTSTAMP}  unfortunately,
 3615:     #   The special gets passed the \ and dvips puts it in the output file
 3616:     #   so we will just rely on prntout.pl to strip  ENDOFSTUDENTSTAMP from the
 3617:     #   postscript.  Each ENDOFSTUDENTSTAMP will go on a line by itself.
 3618:     #
 3619: 
 3620:     my $syllabus_first = 0;
 3621:     my $current_assignment = "";
 3622:     my $assignment;
 3623:     my $courseidinfo = &get_course();
 3624:     if (defined($courseidinfo)) { $courseidinfo=' - '.$courseidinfo }
 3625:     if ($usersection ne '') {$courseidinfo.=' - Sec. '.$usersection}
 3626: 
 3627:     foreach my $curresline (@{$master_seq})  {
 3628: 	if (defined $page_breaks{$curresline}) {
 3629: 	    if($i != 0) {
 3630: 		$current_output.= "\\newpage\n";
 3631: 	    }
 3632: 	}
 3633: 	$current_output .= &get_extra_vspaces($helper, $curresline);
 3634: 	$i++;
 3635: 	my ($map,$id,$res_url) = &Apache::lonnet::decode_symb($curresline);
 3636: 
 3637: 	# See if we need to emit a new header:
 3638: 
 3639: 	if ( !($type eq 'problems' && 
 3640: 	       ($curresline!~ m/$LONCAPA::assess_page_re/)) ) {
 3641: 	    if ($print_incomplete && !&incomplete($username, $userdomain, $res_url)) {
 3642: 		next;
 3643: 	    }
 3644: 	    $actually_printed++; # we're going to print one.
 3645: 
 3646: 	    if (&Apache::lonnet::allowed('bre',$res_url)) {
 3647: 		if ($res_url!~m|^ext/|
 3648: 		    && $res_url=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)$/) {
 3649: 		    $printed .= $curresline.':';
 3650: 		    &Apache::lonxml::remember_problem_counter();    
 3651: 
 3652: 		    my $rendered = &get_student_view_with_retries($curresline,$ssi_retry_count,$username,$userdomain,$env{'request.course.id'},'tex',$moreenv);
 3653:                     if ($res_url =~ /\.page$/) {
 3654:                         if ($remove_latex_header eq 'NO') {
 3655:                             if (!($rendered =~ /\\begin\{document\}/)) {
 3656:                                 $rendered = &print_latex_header().$rendered;
 3657:                             }
 3658:                         }
 3659: ;
 3660:                         if ($remove_latex_header eq 'YES') {
 3661:                             $rendered = &latex_header_footer_remove($rendered);
 3662:                         } else {
 3663:                             $rendered =~ s/\\end{document}\d*//;
 3664:                         }
 3665:                     }
 3666: 		    if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
 3667: 		       ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
 3668: 			#   Use a copy of the hash so we don't pervert it on future loop passes.
 3669: 			my %answerenv = %{$moreenv};
 3670: 			$answerenv{'answer_output_mode'}='tex';
 3671: 
 3672: 
 3673: 			$answerenv{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
 3674: 			
 3675: 			&Apache::lonxml::restore_problem_counter();
 3676: 
 3677: 			my $ansrendered = &Apache::loncommon::get_student_answers($curresline,$username,$userdomain,$env{'request.course.id'},%answerenv);
 3678: 
 3679: 			if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
 3680: 			    $rendered=~s/(\\keephidden{ENDOFPROBLEM})/$ansrendered$1/;
 3681: 			} else {
 3682: 
 3683: 			    
 3684: 			    my $header =&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
 3685:                             unless ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only') {
 3686:                                 $header =~ s/\\begin{document}//;     #<<<<<
 3687:                             }
 3688: 			    my $title = &Apache::lonnet::gettitle($curresline);
 3689: 			    $title = &Apache::lonxml::latex_special_symbols($title);
 3690: 			    my $body   ='\vskip 0 mm \noindent\textbf{'.$title.'}\vskip 0 mm ';
 3691: 			    $body     .=&path_to_problem($res_url,$LaTeXwidth);
 3692: 			    $body     .='\vskip 1 mm '.$ansrendered;
 3693: 			    $body     = &encapsulate_minipage($body);
 3694: 			    $rendered = $header.$body;
 3695: 			}
 3696: 		    }
 3697: 		    if ($helper->{'VARS'}->{'PRINT_ANNOTATIONS'} eq 'yes') {
 3698: 			my $url = &Apache::lonnet::clutter($res_url);
 3699: 			my $annotation = &annotate($url);
 3700: 			$rendered =~  s/(\\keephidden{ENDOFPROBLEM})/$annotation$1/;
 3701: 		    }
 3702: 		    my $junk;
 3703: 		    if ($remove_latex_header eq 'YES') {
 3704: 			$rendered = &latex_header_footer_remove($rendered);
 3705: 		    } else {
 3706: 			$rendered =~ s/\\end{document}//;
 3707: 		    }
 3708: 		    $current_output .= $rendered;		    
 3709: 		} elsif ($res_url=~/\/(smppg|syllabus|aboutme|bulletinboard)$/) {
 3710: 		    if ($i == 1) {
 3711: 			$syllabus_first = 1;
 3712: 		    }
 3713: 		    $printed .= $curresline.':';
 3714: 		    my $rendered = &get_student_view_with_retries($curresline,$ssi_retry_count,$username,$userdomain,$env{'request.course.id'},'tex',$moreenv);
 3715: 		    if ($helper->{'VARS'}->{'PRINT_ANNOTATIONS'} eq 'yes') {
 3716: 			my $url = &Apache::lonnet::clutter($res_url);
 3717: 			my $annotation = &annotate($url);
 3718: 			$annotation    =~ s/(\\end{document})/$annotation$1/;
 3719: 		    }
 3720: 		    if ($remove_latex_header eq 'YES') {
 3721: 			$rendered = &latex_header_footer_remove($rendered);
 3722: 		    } else {
 3723: 			$rendered =~ s/\\end{document}//;
 3724: 		    }
 3725: 		    $current_output .= $rendered.'\vskip 0.5mm\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill}\strut \vskip 0 mm \strut ';
 3726: 		} elsif($res_url = ~/\.pdf$/) {
 3727: 		    my $url = &Apache::lonnet::clutter($res_url);
 3728: 		    my $rendered  = &include_pdf($url);
 3729: 		    if ($remove_latex_header ne 'NO') {
 3730: 			$rendered = &latex_header_footer_remove($rendered);
 3731: 		    }
 3732: 		    $current_output .= $rendered;
 3733: 		} else {
 3734: 		    my $rendered = &unsupported($res_url,$helper->{'VARS'}->{'LATEX_TYPE'},$curresline);
 3735: 		    if ($remove_latex_header ne 'NO') {
 3736: 			$rendered = &latex_header_footer_remove($rendered);
 3737: 		    } else {
 3738: 			$rendered =~ s/\\end{document}//;
 3739: 		    }
 3740: 		    $current_output .= $rendered;
 3741: 		}
 3742: 	    }
 3743: 	    $remove_latex_header = 'YES';
 3744: 	}
 3745: 	$assignment = &Apache::lonxml::latex_special_symbols(
 3746: 	    &Apache::lonnet::gettitle($map), 'header');
 3747: 	if (($assignment ne $current_assignment) && ($assignment ne "")) {
 3748: 	    my $header_line = &format_page_header($LaTeXwidth, $parmhash{'print_header_format'},
 3749: 						  $assignment, $courseidinfo, 
 3750: 						  $fullname);
 3751: 	    my $header_start = ($columns_in_format == 1) ? '\lhead'
 3752: 		: '\fancyhead[LO]';
 3753: 	    $header_line = $header_start.'{'.$header_line.'}';
 3754: 	    $current_output = $current_output . $header_line;
 3755: 	    $current_assignment = $assignment;
 3756: 	}
 3757: 
 3758: 	if (&Apache::loncommon::connection_aborted($r)) { last; }
 3759:     }
 3760:     # If we are printing incomplete it's possible we don't have
 3761:     # anything to print.  The print subsystem is not so good at handling
 3762:     # that so we're going to generate a stub that says there are no
 3763:     # incomplete resources for the person.
 3764:     #
 3765: 
 3766:     if ($actually_printed == 0) {
 3767: 	$current_output  = &encapsulate_minipage("\\vskip -10mm \nNo incomplete resources\n \\vskip 100 mm { }\n");
 3768: 	if ($remove_latex_header eq "NO") {
 3769: 	    $current_output = &print_latex_header() . $current_output;
 3770: 	} else {
 3771: 	    $current_output = &latex_header_footer_remove($current_output);
 3772: 	}
 3773:     }
 3774: 
 3775:     if ($syllabus_first) {
 3776:         $current_output =~ s/\\\\ Last updated:/Last updated:/
 3777:     }
 3778:     my $currentassignment=&Apache::lonxml::latex_special_symbols($helper->{VARS}->{'assignment'},'header');
 3779:     my $header_line =
 3780:         &format_page_header($LaTeXwidth, $parmhash{'print_header_format'},
 3781:                             $currentassignment, $courseidinfo, $fullname);
 3782:     my $header_start = ($columns_in_format == 1) ? '\lhead' : '\fancyhead[LO]';
 3783:     my $newheader = $header_start.'{'.$header_line.'}';
 3784: 
 3785:     if ($current_output=~/\\documentclass/) {
 3786: 	$current_output =~ s/\\begin{document}/\\setlength{\\topmargin}{1cm} \\begin{document}\\noindent\\parbox{\\minipagewidth}{\\noindent$newheader$namepostfix}\\vskip 5 mm /;
 3787:     } else {
 3788: 	my $blankpages = 
 3789: 	    '\clearpage\strut\clearpage'x$helper->{'VARS'}->{'EMPTY_PAGES'};
 3790: 	
 3791: 	$current_output = '\strut\vspace*{-6 mm}\\newline'.
 3792: 	    &copyright_line().' \newpage '.$blankpages.$end_of_student.
 3793: 	    '\setcounter{page}{1}\noindent\parbox{\minipagewidth}{\noindent'.
 3794: 	    $newheader.$namepostfix. '} \vskip 5 mm '.$current_output;
 3795:     }
 3796:     #
 3797:     #  Close the student bracketing.
 3798:     #
 3799:     return ($current_output,$fullname, $printed);
 3800: 
 3801: }
 3802: 
 3803: sub printing_blocked {
 3804:     my ($r,$blocktext) = @_;
 3805:     my $title = &mt('Preparing Printout');
 3806:     &Apache::lonhtmlcommon::clear_breadcrumbs();
 3807:     &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/printout',
 3808:                                             text=> $title});
 3809:     my $breadcrumbs = &Apache::lonhtmlcommon::breadcrumbs($title);
 3810:     &Apache::loncommon::content_type($r,'text/html');
 3811:     &Apache::loncommon::no_cache($r);
 3812:     $r->send_http_header;
 3813:     $r->print(&Apache::loncommon::start_page('Preparing Printout').
 3814:               $breadcrumbs.
 3815:               $blocktext.
 3816:               &Apache::loncommon::end_page());
 3817:     return;
 3818: }
 3819: 
 3820: sub handler {
 3821: 
 3822:     my $r = shift;
 3823: 
 3824:     if ($env{'request.course.id'}) {
 3825:         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 3826:         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 3827:         my ($blocked,$blocktext) = 
 3828:             &Apache::loncommon::blocking_status('printout',$cnum,$cdom);
 3829:         if ($blocked) {
 3830:             my $checkrole = "cm./$cdom/$cnum";
 3831:             if ($env{'request.course.sec'} ne '') {
 3832:                 $checkrole .= "/$env{'request.course.sec'}";
 3833:             }
 3834:             unless ((&Apache::lonnet::allowed('evb',undef,undef,$checkrole)) && 
 3835:                     ($env{'request.role'} !~ m{^st\./$cdom/$cnum})) {
 3836:                 &printing_blocked($r,$blocktext);
 3837:                 return OK;
 3838:             }
 3839:         }
 3840:     }
 3841:     
 3842:     &init_perm();
 3843:     my $helper = printHelper($r);
 3844:     if (!ref($helper)) {
 3845: 	return $helper;
 3846:     }
 3847:    
 3848: 
 3849:     %parmhash=&Apache::lonnet::coursedescription($env{'request.course.id'});
 3850:  
 3851: 
 3852: 
 3853: 
 3854:     #  If a figure conversion queue file exists for this user.domain
 3855:     # we delete it since it can only be bad (if it were good, printout.pl
 3856:     # would have deleted it the last time around.
 3857: 
 3858:     my $conversion_queuefile = "/home/httpd/prtspool/$env{'user.name'}_$env{'user.domain'}_printout.dat";
 3859:     if(-e $conversion_queuefile) {
 3860: 	unlink $conversion_queuefile;
 3861:     }
 3862:     
 3863: 
 3864:     &output_data($r,$helper,\%parmhash);
 3865:     return OK;
 3866: }
 3867: 
 3868: use Apache::lonhelper;
 3869: 
 3870: sub addMessage {
 3871:     my $text = shift;
 3872:     my $paramHash = Apache::lonhelper::getParamHash();
 3873:     $paramHash->{MESSAGE_TEXT} = $text;
 3874:     Apache::lonhelper::message->new();
 3875: }
 3876: 
 3877: 
 3878: 
 3879: sub init_perm {
 3880:     undef(%perm);
 3881:     $perm{'pav'}=&Apache::lonnet::allowed('pav',$env{'request.course.id'});
 3882:     if (!$perm{'pav'}) {
 3883: 	$perm{'pav'}=&Apache::lonnet::allowed('pav',
 3884: 		  $env{'request.course.id'}.'/'.$env{'request.course.sec'});
 3885:     }
 3886:     $perm{'pfo'}=&Apache::lonnet::allowed('pfo',$env{'request.course.id'});
 3887:     if (!$perm{'pfo'}) {
 3888: 	$perm{'pfo'}=&Apache::lonnet::allowed('pfo',
 3889: 		  $env{'request.course.id'}.'/'.$env{'request.course.sec'});
 3890:     }
 3891:     $perm{'vgr'}=&Apache::lonnet::allowed('vgr',$env{'request.course.id'});
 3892:     if (!$perm{'vgr'}) {
 3893:         $perm{'vgr'}=&Apache::lonnet::allowed('vgr',
 3894:                    $env{'request.course.id'}.'/'.$env{'request.course.sec'});
 3895:     }
 3896: }
 3897: 
 3898: sub get_randomly_ordered_warning {
 3899:     my ($helper,$map) = @_;
 3900: 
 3901:     my $message;
 3902: 
 3903:     my $postdata = $env{'form.postdata'} || $helper->{VARS}{'postdata'};
 3904:     my $navmap = Apache::lonnavmaps::navmap->new();
 3905:     if (defined($navmap)) {
 3906:         my $res = $navmap->getResourceByUrl($map);
 3907:         if ($res) {
 3908: 	    my $func = 
 3909: 	        sub { return ($_[0]->is_map() && $_[0]->randomorder); };
 3910: 	    my @matches = $navmap->retrieveResources($res, $func,1,1,1);
 3911: 
 3912:         }
 3913:     } else {
 3914:         $message = "Retrieval of information about ordering of resources failed."; 
 3915:         return '<message type="warning">'.$message.'</message>';
 3916:     }
 3917:     return;
 3918: }
 3919: 
 3920: sub printHelper {
 3921:     my $r = shift;
 3922: 
 3923:     if ($r->header_only) {
 3924:         if ($env{'browser.mathml'}) {
 3925:             &Apache::loncommon::content_type($r,'text/xml');
 3926:         } else {
 3927:             &Apache::loncommon::content_type($r,'text/html');
 3928:         }
 3929:         $r->send_http_header;
 3930:         return OK;
 3931:     }
 3932: 
 3933:     # Send header, nocache
 3934:     if ($env{'browser.mathml'}) {
 3935:         &Apache::loncommon::content_type($r,'text/xml');
 3936:     } else {
 3937:         &Apache::loncommon::content_type($r,'text/html');
 3938:     }
 3939:     &Apache::loncommon::no_cache($r);
 3940:     $r->send_http_header;
 3941:     $r->rflush();
 3942: 
 3943:     # Unfortunately, this helper is so complicated we have to
 3944:     # write it by hand
 3945: 
 3946:     Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING});
 3947:     
 3948:     my $helper = Apache::lonhelper::helper->new("Printing Helper");
 3949:     $helper->declareVar('symb');
 3950:     $helper->declareVar('postdata');    
 3951:     $helper->declareVar('curseed'); 
 3952:     $helper->declareVar('probstatus');   
 3953:     $helper->declareVar('filename');
 3954:     $helper->declareVar('construction');
 3955:     $helper->declareVar('assignment');
 3956:     $helper->declareVar('style_file');
 3957:     $helper->declareVar('student_sort');
 3958:     $helper->declareVar('FINISHPAGE');
 3959:     $helper->declareVar('PRINT_TYPE');
 3960:     $helper->declareVar("showallfoils");
 3961:     $helper->declareVar("STUDENTS");
 3962:     $helper->declareVar("EXTRASPACE");
 3963: 
 3964:    
 3965: 
 3966: 
 3967:     #  The page breaks and extra spaces
 3968:     #  can get loaded initially from the course environment:
 3969:     # But we only do this in the initial state so that they are allowed to change.
 3970:     #
 3971: 
 3972:     
 3973:     &Apache::loncommon::restore_course_settings('print',
 3974: 						{'pagebreaks'  => 'scalar',
 3975: 						 'extraspace'  => 'scalar',
 3976: 						 'extraspace_units' => 'scalar',
 3977: 					         'lastprinttype' => 'scalar'});
 3978:     
 3979:     # This will persistently load in the data we want from the
 3980:     # very first screen.
 3981:     
 3982:     if($helper->{VARS}->{PRINT_TYPE} eq $env{'form.lastprinttype'}) {
 3983: 	if (!defined ($env{"form.CURRENT_STATE"})) {
 3984: 	    
 3985: 	    $helper->{VARS}->{FINISHPAGE} = $env{'form.pagebreaks'};
 3986: 	    $helper->{VARS}->{EXTRASPACE} = $env{'form.extraspace'};
 3987: 	    $helper->{VARS}->{EXTRASPACE_UNITS} = $env{'form.extraspace_units'};
 3988: 	} else {
 3989: 	    my $state = $env{"form.CURRENT_STATE"};
 3990: 	    if ($state eq "START") {
 3991: 		$helper->{VARS}->{FINISHPAGE} = $env{'form.pagebreaks'};
 3992: 		$helper->{VARS}->{EXTRASPACE} = $env{'form.extraspace'};
 3993: 		$helper->{VARS}->{EXTRASPACE_UNITS} = $env{'form.extraspace_units'};
 3994: 		
 3995: 	    }
 3996: 	}
 3997: 	
 3998:     }
 3999: 
 4000:     # Detect whether we're coming from construction space
 4001:     if ($env{'form.postdata'}=~m{^/priv}) {
 4002:         $helper->{VARS}->{'filename'} = $env{'form.postdata'};
 4003:         $helper->{VARS}->{'construction'} = 1;
 4004:     } else {
 4005:         if ($env{'form.postdata'}) {
 4006:             $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($env{'form.postdata'});
 4007: 	    if ( $helper->{VARS}->{'symb'} eq '') {
 4008: 		$helper->{VARS}->{'postdata'} = $env{'form.postdata'};
 4009: 	    }
 4010:         }
 4011:         if ($env{'form.symb'}) {
 4012:             $helper->{VARS}->{'symb'} = $env{'form.symb'};
 4013:         }
 4014:         if ($env{'form.url'}) {
 4015:             $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
 4016:         }
 4017: 
 4018:     }
 4019: 
 4020:     if ($env{'form.symb'}) {
 4021:         $helper->{VARS}->{'symb'} = $env{'form.symb'};
 4022:     }
 4023:     if ($env{'form.url'}) {
 4024:         $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
 4025: 
 4026:     }
 4027:     $helper->{VARS}->{'symb'}=
 4028: 	&Apache::lonenc::check_encrypt($helper->{VARS}->{'symb'});
 4029:     my ($resourceTitle,$sequenceTitle,$mapTitle) = &details_for_menu($helper);
 4030:     if ($sequenceTitle ne '') {$helper->{VARS}->{'assignment'}=$sequenceTitle;}
 4031: 
 4032:     
 4033:     # Extract map
 4034:     my $symb = $helper->{VARS}->{'symb'};
 4035:     my ($map, $id, $url);
 4036:     my $subdir;
 4037:     my $is_published=0;		# True when printing from resource space.
 4038:     my $res_printable = 1;	# By default the current resource is printable.    
 4039:     my $userCanPrint = ($perm{'pav'} || $perm{'pfo'});
 4040:     my $res_printstartdate;
 4041:     my $res_printenddate;
 4042:     my $map_open = 0;
 4043:     my $map_close = 0xffffffff;
 4044:     my $course_open = 0;
 4045:     my $course_close = 0xffffffff;
 4046: 
 4047:     # Get the resource name from construction space
 4048:     if ($helper->{VARS}->{'construction'}) {
 4049:         $resourceTitle = substr($helper->{VARS}->{'filename'}, 
 4050:                                 rindex($helper->{VARS}->{'filename'}, '/')+1);
 4051:         $subdir = substr($helper->{VARS}->{'filename'},
 4052:                          0, rindex($helper->{VARS}->{'filename'}, '/') + 1);
 4053:     } else {
 4054: 	# From course space:
 4055: 
 4056: 	if ($symb ne '') {
 4057: 	    ($map, $id, $url) = &Apache::lonnet::decode_symb($symb);
 4058: 	    $helper->{VARS}->{'postdata'} = 
 4059: 		&Apache::lonenc::check_encrypt(&Apache::lonnet::clutter($url));
 4060: 	    my $navmap = Apache::lonnavmaps::navmap->new();
 4061: 	    my $res   = $navmap->getBySymb($symb);
 4062: 	    $res_printable  = $res->resprintable() || $userCanPrint; #printability in course context
 4063: 	    ($res_printstartdate, $res_printenddate) = 	&get_print_dates($res);
 4064: 	    ($course_open, $course_close) = &course_print_dates($res);
 4065: 	    ($map_open, $map_close)       = &map_print_dates($res);
 4066: 
 4067: 	} else {
 4068: 	    # Resource space.
 4069: 
 4070: 	    $url = $helper->{VARS}->{'postdata'};
 4071: 	    $is_published=1;	# From resource space.
 4072: 	}
 4073: 	$url = &Apache::lonnet::clutter($url);
 4074:         if (!$resourceTitle) { # if the resource doesn't have a title, use the filename
 4075:             my $postdata = $helper->{VARS}->{'postdata'};
 4076:             $resourceTitle = substr($postdata, rindex($postdata, '/') + 1);
 4077:         }
 4078:         $subdir = &Apache::lonnet::filelocation("", $url);
 4079: 
 4080: 
 4081:     }
 4082:     if (!$helper->{VARS}->{'curseed'} && $env{'form.curseed'}) {
 4083: 	$helper->{VARS}->{'curseed'}=$env{'form.curseed'};
 4084:     }
 4085: 
 4086:     if (!$helper->{VARS}->{'probstatus'} && $env{'form.problemtype'}) {
 4087: 	$helper->{VARS}->{'probstatus'}=$env{'form.problemstatus'};
 4088:     }
 4089: 
 4090:     my $userCanSeeHidden = Apache::lonnavmaps::advancedUser();
 4091: 
 4092:     Apache::lonhelper::registerHelperTags();
 4093: 
 4094:     # "Delete everything after the last slash."
 4095:     $subdir =~ s|/[^/]+$||;
 4096: 
 4097:     # What can be printed is a very dynamic decision based on
 4098:     # lots of factors. So we need to dynamically build this list.
 4099:     # To prevent security leaks, states are only added to the wizard
 4100:     # if they can be reached, which ensures manipulating the form input
 4101:     # won't allow anyone to reach states they shouldn't have permission
 4102:     # to reach.
 4103: 
 4104:     # printChoices is tracking the kind of printing the user can
 4105:     # do, and will be used in a choices construction later.
 4106:     # In the meantime we will be adding states and elements to
 4107:     # the helper by hand.
 4108:     my $printChoices = [];
 4109:     my $paramHash;
 4110: 
 4111:     # If there is a current resource and it is printable
 4112:     # Give that as a choice.
 4113: 
 4114:     if ($resourceTitle && $res_printable) {
 4115:         push @{$printChoices}, ["<b><i>$resourceTitle</i></b> (".&mt('the resource you just saw on the screen').")", 'current_document', 'PAGESIZE'];
 4116:     } 
 4117: 
 4118:     # Useful filter strings
 4119: 
 4120:     my $isPrintable = ' && $res->resprintable()';
 4121: 
 4122:     my $isProblem = '(($res->is_problem()||$res->contains_problem() ||$res->is_practice()))';
 4123:     $isProblem .= $isPrintable unless $userCanPrint;
 4124:     $isProblem .= ' && !$res->randomout()' if !$userCanSeeHidden;
 4125:     my $isProblemOrMap = '($res->is_problem() || $res->contains_problem() || $res->is_sequence() || $res->is_practice())';
 4126:     $isProblemOrMap .= $isPrintable unless $userCanPrint;
 4127:     my $isNotMap = '(!$res->is_sequence())';
 4128:     $isNotMap .= $isPrintable unless $userCanPrint;
 4129:     $isNotMap .= ' && !$res->randomout()' if !$userCanSeeHidden;
 4130:     my $isMap = '$res->is_map()';
 4131:     $isMap .= $isPrintable unless $userCanPrint;
 4132:     my $symbFilter = '$res->shown_symb() ';
 4133:     my $urlValue = '$res->link()';
 4134: 
 4135:     $helper->declareVar('SEQUENCE');
 4136: 
 4137:     # If we're in a sequence...
 4138: 
 4139:     my $start_new_option;
 4140:     if ($perm{'pav'}) {
 4141: 	$start_new_option = 
 4142: 	    "<option text='".&mt('Start new page[_1]before selected','<br />').
 4143: 	    "' variable='FINISHPAGE' />".
 4144: 	    "<option text='".&mt('Extra space[_1]before selected','<br />').
 4145: 	    "' variable='EXTRASPACE' type='text' />" .
 4146: 	    "<option " .
 4147: 	    "' variable='POSSIBLE_RESOURCES' type='hidden' />".
 4148: 	    "<option text='".&mt('Space units[_1]check for mm','<br />').
 4149: 	    "' variable='EXTRASPACE_UNITS' type='checkbox' />"
 4150: 	    ;
 4151: 	    
 4152: 
 4153:     }
 4154: 
 4155:     # If not construction space user can print the components of a page:
 4156: 
 4157:     my $page_ispage;
 4158:     my $page_title;
 4159:     if (!$helper->{VARS}->{'construction'}) {
 4160: 	my $varspostdata = $helper->{VARS}->{'postdata'};
 4161: 	my $varsassignment = $helper->{VARS}->{'assignment'};
 4162: 	my $page_navmap         = Apache::lonnavmaps::navmap->new();
 4163: 	if (defined($page_navmap)) {
 4164: 	    my @page_resources      = $page_navmap->retrieveResources($url);
 4165: 	    if(defined($page_resources[0])) {
 4166: 		$page_ispage       = $page_resources[0]->is_page();
 4167: 		$page_title     = $page_resources[0]->title();
 4168: 		my $resourcesymb   = $page_resources[0]->symb();
 4169: 		my ($pagemap, $pageid, $pageurl) = &Apache::lonnet::decode_symb($symb);
 4170: 		if ($page_ispage) {
 4171: 		    push @{$printChoices}, 
 4172: 		    [&mt('Selected [_1]Problems[_2] from page [_3]', '<b>', '</b>', '<b><i>'.$page_title.'</i></b>'), 
 4173: 		     'map_problems_in_page', 
 4174: 		     'CHOOSE_PROBLEMS_PAGE'];
 4175: 		    push @{$printChoices}, 
 4176: 		    [&mt('Selected [_1]Resources[_2] from page [_3]', '<b>', '</b>', '<b><i>'.$page_title.'</i></b>'), 
 4177: 		     'map_resources_in_page', 
 4178: 		     'CHOOSE_RESOURCES_PAGE'];
 4179: 		}
 4180:         my $helperFragment = &generate_resource_chooser('CHOOSE_PROBLEMS_PAGE',
 4181: 							'Select Problem(s) to print',
 4182: 							"multichoice='1' toponly='1' addstatus='1' closeallpages='1'",
 4183: 							'RESOURCES',
 4184: 							'PAGESIZE',
 4185: 							$url,
 4186: 							$isProblem, '',  $symbFilter,
 4187: 							$start_new_option);
 4188: 
 4189: 
 4190:       $helperFragment .= &generate_resource_chooser('CHOOSE_RESOURCES_PAGE',
 4191: 						    'Select Resource(s) to print',
 4192: 						    'multichoice="1" toponly="1" addstatus="1" closeallpages="1"',
 4193: 						    'RESOURCES',
 4194: 						    'PAGESIZE',
 4195: 						    $url,
 4196: 						    $isNotMap, '', $symbFilter,
 4197: 						    $start_new_option);
 4198: 
 4199: 						    
 4200: 
 4201: 
 4202: 
 4203: 	&Apache::lonxml::xmlparse($r, 'helper', $helperFragment);
 4204: 	
 4205: 	    }
 4206: 	}
 4207:     }
 4208: 
 4209:     if (($helper->{'VAR'}->{'construction'} ne '1' ) &&
 4210: 	$helper->{VARS}->{'postdata'} &&
 4211: 	$helper->{VARS}->{'assignment'}) {
 4212: 
 4213: 	# BZ 5209 - Print incomplete problems from sequence:
 4214: 	# the exact form of this depends on whether or not we are privileged or a mere
 4215: 	# plebe of s student:
 4216: 
 4217: 	my $printSelector = 'map_incomplete_problems_seq';
 4218: 	my $nextState     = 'CHOOSE_INCOMPLETE_SEQ';
 4219: 	my $textSuffix    = '';
 4220: 
 4221: 	if ($userCanPrint)  {
 4222: 	    $printSelector = 'map_incomplete_problems_people_seq';
 4223: 	    $nextState     = 'CHOOSE_INCOMPLETE_PEOPLE_SEQ';
 4224: 	    $textSuffix    = ' for selected students';
 4225: 	    my $helperStates =
 4226: 		&create_incomplete_folder_selstud_helper($helper, $map); 
 4227: 	    &Apache::lonxml::xmlparse($r, 'helper', $helperStates);
 4228: 	} else {
 4229: 	    if (&printable($map_open, $map_close)) {
 4230: 		my $helperStates = &create_incomplete_folder_helper($helper, $map); # Create needed states for student.
 4231: 		&Apache::lonxml::xmlparse($r, 'helper', $helperStates);
 4232: 	    } else {
 4233: 		# TODO: Figure out how to break the news...this folder is not printable.
 4234: 	    }
 4235: 	}
 4236: 
 4237: 	if ($userCanPrint || &printable($map_open, $map_close)) {
 4238: 	    push(@{$printChoices},
 4239: 		 [&mt('Selected  [_1]Incomplete Problems[_2] from folder [_3]' . $textSuffix,
 4240: 		      '<b>', '</b>',
 4241: 		      '<b><i>'. $sequenceTitle . '</b></i>'),
 4242: 		  $printSelector,
 4243: 		  $nextState]);
 4244: 	}
 4245:         # Allow problems from sequence
 4246: 	if ($userCanPrint || &printable($map_open, $map_close)) {
 4247: 	    push @{$printChoices}, 
 4248: 	    [&mt('Selected [_1]Problems[_2] from folder [_3]','<b>','</b>','<b><i>'.$sequenceTitle.'</i></b>'), 
 4249: 	     'map_problems', 
 4250: 	     'CHOOSE_PROBLEMS'];
 4251: 	    # Allow all resources from sequence
 4252: 	    push @{$printChoices}, [&mt('Selected [_1]Resources[_2] from folder [_3]','<b>','</b>','<b><i>'.$sequenceTitle.'</i></b>'), 
 4253: 				    'map_problems_pages', 
 4254: 				    'CHOOSE_PROBLEMS_HTML'];
 4255: 	    my $helperFragment = &generate_resource_chooser('CHOOSE_PROBLEMS',
 4256: 							    'Select Problem(s) to print',
 4257: 							    'multichoice="1" toponly="1" addstatus="1" closeallpages="1"',
 4258: 							    'RESOURCES',
 4259: 							    'PAGESIZE',
 4260: 							    $map,
 4261: 							    $isProblem, '',
 4262: 							    $symbFilter,
 4263: 							    $start_new_option);
 4264: 	    $helperFragment .= &generate_resource_chooser('CHOOSE_PROBLEMS_HTML',
 4265: 							  'Select Resource(s) to print',
 4266: 							  'multichoice="1" toponly="1" addstatus="1" closeallpages="1"',
 4267: 							  'RESOURCES',
 4268: 							  'PAGESIZE',
 4269: 							  $map,
 4270: 							  $isNotMap, '',
 4271: 							  $symbFilter,
 4272: 							  $start_new_option);
 4273: 	    
 4274: 	    &Apache::lonxml::xmlparse($r, 'helper', $helperFragment);
 4275: 	} else {
 4276: 	    # TODO: Figure out how to tell them the folder is not printable.
 4277: 	}
 4278:     }
 4279: 	# If the user has pfo (print for others) allow them to print all 
 4280: 	# problems and resources  in the entire course, optionally for selected students
 4281: 	my $post_data = $helper->{VARS}->{'postdata'};
 4282:     
 4283:     if ($perm{'pfo'} &&  !$is_published  &&
 4284:         ($post_data=~/\/res\// || $post_data =~/\/(syllabus|smppg|aboutme|bulletinboard)$/)) { 
 4285: 
 4286: 	# BZ 5209 - incomplete problems from entire course:
 4287: 
 4288: 	push(@{$printChoices},
 4289: 	     [&mtn('Selected <b>Incomplete Problems</b> from <b>entire course</b> for selected people'),
 4290: 	      'incomplete_problems_selpeople_course', 'INCOMPLETE_PROBLEMS_COURSE_RESOURCES']);
 4291: 	my $helperFragment = &create_incomplete_course_helper($helper); # Create needed states.
 4292: 
 4293: 	&Apache::lonxml::xmlparse($r, 'helper', $helperFragment);
 4294: 
 4295: 	#  Selected problems/resources from entire course:
 4296: 
 4297:         push @{$printChoices}, [&mtn('Selected <b>Problems</b> from <b>entire course</b>'), 'all_problems', 'ALL_PROBLEMS'];
 4298: 	push @{$printChoices}, [&mtn('Selected <b>Resources</b> from <b>entire course</b>'), 'all_resources', 'ALL_RESOURCES'];
 4299: 	push @{$printChoices}, [&mtn('Selected <b>Problems</b> from <b>entire course</b> for <b>selected people</b>'), 'all_problems_students', 'ALL_PROBLEMS_STUDENTS'];
 4300: my $suffixXml = <<ALL_PROBLEMS;
 4301:   <state name="STUDENTS1" title="Select People">
 4302:       <message><b>Select sorting order of printout</b> </message>
 4303:     <choices variable='student_sort'>
 4304:       <choice computer='0'>Sort by section then student</choice>
 4305:       <choice computer='1'>Sort by students across sections.</choice>
 4306:     </choices>
 4307:       <message><br /><hr /><br /> </message>
 4308:       <student multichoice='1' variable="STUDENTS" nextstate="PRINT_FORMATTING" coursepersonnel="1"/>
 4309:   </state>
 4310: ALL_PROBLEMS
 4311:          &Apache::lonxml::xmlparse($r, 'helper', 
 4312: 				   &generate_resource_chooser('ALL_PROBLEMS',
 4313: 							      'Select Problem(s) to print',
 4314: 							      'multichoice="1" suppressEmptySequences="0" addstatus="1" closeallpages="1"',
 4315: 							      'RESOURCES',
 4316: 							      'PAGESIZE',
 4317: 							      '',
 4318: 							      $isProblemOrMap, $isNotMap,
 4319: 							      $symbFilter,
 4320: 							      $start_new_option) .
 4321: 				   &generate_resource_chooser('ALL_RESOURCES',
 4322: 							      'Select Resource(s) to print',
 4323: 							      " toponly='0' multichoice='1' suppressEmptySequences='0' addstatus='1' closeallpages='1'",
 4324: 							      'RESOURCES',
 4325: 							      'PAGESIZE',
 4326: 							      '',
 4327: 							      $isNotMap,'',$symbFilter,
 4328: 							      $start_new_option) .
 4329: 				   &generate_resource_chooser('ALL_PROBLEMS_STUDENTS',
 4330: 							      'Select Problem(s) to print',
 4331: 							      'toponly="0" multichoice="1" suppressEmptySequences="0" addstatus="1" closeallpages="1"',
 4332: 							      'RESOURCES',
 4333: 							      'STUDENTS1',
 4334: 							      '',
 4335: 							      $isProblemOrMap,'' , $symbFilter,
 4336: 							      $start_new_option) .
 4337: 				     $suffixXml
 4338: 				   );
 4339: 
 4340: 	if ($helper->{VARS}->{'assignment'}) {
 4341: 
 4342: 	    # If we were looking at a page, allow a selection of problems from the page
 4343: 	    # either for selected students or for coded assignments.
 4344: 
 4345: 	    if ($page_ispage) {
 4346: 		push @{$printChoices}, [&mt('Selected [_1]Problems[_2] from page [_3] for [_4]selected people[_5]',
 4347: 					    '<b>', '</b>', '<b><i>'.$page_title.'</i></b>', '<b>', '</b>'),
 4348: 					'problems_for_students_from_page', 'CHOOSE_TGT_STUDENTS_PAGE'];
 4349: 		push @{$printChoices}, [&mt('Selected [_1]Problems[_2] from page [_3] for [_4]CODEd assignments[_5]',
 4350: 					    '<b>', '</b>', '<b><i>'.$page_title.'</i></b>', '<b>', '</b>'),
 4351: 					'problems_for_anon_page', 'CHOOSE_ANON1_PAGE'];
 4352: 	    }
 4353: 	    push @{$printChoices}, [&mt('Selected [_1]Problems[_2] from folder [_3] for [_4]selected people[_5]',
 4354: 					'<b>','</b>','<b><i>'.$sequenceTitle.'</i></b>','<b>','</b>'), 
 4355: 				    'problems_for_students', 'CHOOSE_STUDENTS'];
 4356: 	    push @{$printChoices}, [&mt('Selected [_1]Problems[_2] from folder [_3] for [_4]CODEd assignments[_5]',
 4357: 					'<b>','</b>','<b><i>'.$sequenceTitle.'</i></b>','<b>','</b>'), 
 4358: 				    'problems_for_anon', 'CHOOSE_ANON1'];
 4359: 	}
 4360: 
 4361: 	my $randomly_ordered_warning = 
 4362:             &get_randomly_ordered_warning($helper, $map);
 4363: 
 4364: 	# resource_selector will hold a few states that:
 4365: 	#   - Allow resources to be selected for printing.
 4366: 	#   - Determine pagination between assignments.
 4367: 	#   - Determine how many assignments should be bundled into a single PDF.
 4368:         # TODO:
 4369: 	#    Probably good to do things like separate this up into several vars, each
 4370: 	#    with one state, and use REGEXPs at inclusion time to set state names
 4371: 	#    and next states for better mix and match capability
 4372: 	#
 4373: 	my $resource_selector= &generate_resource_chooser('SELECT_PROBLEMS',
 4374: 							  'Select resources to print',
 4375: 							  'multichoice="1" addstatus="1" closeallpages="1"',
 4376: 							  'RESOURCES', 
 4377: 							  'PRINT_FORMATTING',
 4378: 							  $map,
 4379: 							  $isProblem, '', $symbFilter,
 4380: 							  $start_new_option);
 4381: 	$resource_selector .=  &generate_format_selector($helper,
 4382:                                                          'How should results be printed?',
 4383:                                                          'PRINT_FORMATTING').
 4384:                                &generate_resource_chooser('CHOOSE_STUDENTS_PAGE',
 4385: 							'Select Problem(s) to print',
 4386: 							"multichoice='1' addstatus='1' closeallpages ='1'",
 4387: 							'RESOURCES',
 4388: 							'PRINT_FORMATTING',
 4389: 							$url,
 4390: 							$isProblem, '',  $symbFilter,
 4391: 							$start_new_option);
 4392: 
 4393: 
 4394: # Generate student choosers.
 4395: 
 4396: 
 4397: 
 4398:         &Apache::lonxml::xmlparse($r, 'helper',
 4399: 				  &generate_student_chooser('CHOOSE_TGT_STUDENTS_PAGE',
 4400: 							    'student_sort',
 4401: 							    'STUDENTS',
 4402: 							    'CHOOSE_STUDENTS_PAGE'));
 4403: 	&Apache::lonxml::xmlparse($r, 'helper', 
 4404: 				  &generate_student_chooser('CHOOSE_STUDENTS',
 4405: 							    'student_sort',
 4406: 							    'STUDENTS',
 4407: 							    'SELECT_PROBLEMS'));
 4408: 	&Apache::lonxml::xmlparse($r, 'helper', $resource_selector);
 4409: 
 4410: 	my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 4411: 	my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 4412:         my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
 4413: 	my $namechoice='<choice></choice>';
 4414: 	foreach my $name (sort {uc($a) cmp uc($b)} @names) {
 4415: 	    if ($name =~ /^error: 2 /) { next; }
 4416: 	    if ($name =~ /^type\0/) { next; }
 4417: 	    $namechoice.='<choice computer="'.$name.'">'.$name.'</choice>';
 4418: 	}
 4419: 
 4420: 
 4421: 	my %code_values;
 4422: 	my %codes_to_print;
 4423: 	foreach my $key (@names) {
 4424: 	    %code_values = &Apache::grades::get_codes($key, $cdom, $cnum);
 4425: 	    foreach my $key (keys(%code_values)) {
 4426: 		$codes_to_print{$key} = 1;
 4427: 	    }
 4428: 	}
 4429: 
 4430: 	my $code_selection;
 4431: 	foreach my $code (sort {uc($a) cmp uc($b)} (keys(%codes_to_print))) {
 4432: 	    my $choice  = $code;
 4433: 	    if ($code =~ /^[A-Z]+$/) { # Alpha code
 4434: 		$choice = &letters_to_num($code);
 4435: 	    }
 4436: 	    push(@{$helper->{DATA}{ALL_CODE_CHOICES}},[$code,$choice]);
 4437: 	}
 4438: 	if (%codes_to_print) {
 4439: 	    $code_selection .='   
 4440: 	    <message><b>Choose single CODE from list:</b></message>
 4441: 		<message></td><td></message>
 4442: 		<dropdown variable="CODE_SELECTED_FROM_LIST" multichoice="0" allowempty="0">
 4443:                   <choice></choice>
 4444:                   <exec>
 4445:                      push(@{$state->{CHOICES}},@{$helper->{DATA}{ALL_CODE_CHOICES}});
 4446:                   </exec>
 4447: 		</dropdown>
 4448: 	    <message></td></tr><tr><td></message>
 4449:             '.$/;
 4450: 
 4451: 	}
 4452: 
 4453:         my @lines = &Apache::grades::get_scantronformat_file();
 4454: 	my $codechoice='';
 4455: 	foreach my $line (@lines) {
 4456: 	    my ($name,$description,$code_type,$code_length)=
 4457: 		(split(/:/,$line))[0,1,2,4];
 4458: 	    if ($code_length > 0 && 
 4459: 		$code_type =~/^(letter|number|-1)/) {
 4460: 		$codechoice.='<choice computer="'.$name.'">'.$description.'</choice>';
 4461: 	    }
 4462: 	}
 4463: 	if ($codechoice eq '') {
 4464: 	    $codechoice='<choice computer="default">Default</choice>';
 4465: 	}
 4466: 	my $anon1 = &generate_code_selector($helper, 
 4467: 					    'CHOOSE_ANON1',
 4468: 					    'SELECT_PROBLEMS',
 4469: 					    $codechoice,
 4470: 					    $code_selection,
 4471: 					    $namechoice) . $resource_selector;
 4472: 					    
 4473: 					    
 4474:         &Apache::lonxml::xmlparse($r, 'helper',$anon1);
 4475: 
 4476: 	my $anon_page = &generate_code_selector($helper,
 4477: 						'CHOOSE_ANON1_PAGE',
 4478: 						'SELECT_PROBLEMS_PAGE',
 4479: 						$codechoice,
 4480: 						$code_selection,
 4481: 						$namechoice) .
 4482: 			&generate_resource_chooser('SELECT_PROBLEMS_PAGE',
 4483: 						   'Select Problem(s) to print',
 4484: 						   "multichoice='1' addstatus='1' closeallpages ='1'",
 4485: 						   'RESOURCES',
 4486: 						   'PRINT_FORMATTING',
 4487: 						   $url,
 4488: 						   $isProblem, '',  $symbFilter,
 4489: 						   $start_new_option);
 4490: 	&Apache::lonxml::xmlparse($r, 'helper', $anon_page);
 4491: 
 4492: 
 4493: 	if ($helper->{VARS}->{'assignment'}) {
 4494: 
 4495: 	    # Assignment printing:
 4496: 
 4497: 	    push @{$printChoices}, [&mt('Selected [_1]Resources[_2] from folder [_3] for [_4]selected people[_5]','<b>','</b>','<b><i>'.$sequenceTitle.'</i></b>','<b>','</b>'), 'resources_for_students', 'CHOOSE_STUDENTS1'];
 4498: 	    push @{$printChoices}, [&mt('Selected [_1]Resources[_2] from folder [_3] for [_4]CODEd assignments[_5]','<b>','</b>','<b><i>'.$sequenceTitle.'</i></b>','<b>','</b>'), 'resources_for_anon', 'CHOOSE_ANON2'];
 4499: 	}
 4500: 	    
 4501: 
 4502: 	$resource_selector=<<RESOURCE_SELECTOR;
 4503:     <state name="SELECT_RESOURCES" title="Select Resources">
 4504:     $randomly_ordered_warning
 4505:     <nextstate>PRINT_FORMATTING</nextstate>
 4506:     <message><br /><big><i><b>Select resources for the assignment</b></i></big><br /></message>
 4507:     <resource variable="RESOURCES" multichoice="1" addstatus="1" 
 4508:               closeallpages="1">
 4509:       <filterfunc>return $isNotMap;</filterfunc>
 4510:       <mapurl>$map</mapurl>
 4511:       <valuefunc>return $symbFilter;</valuefunc>
 4512:       $start_new_option
 4513:       </resource>
 4514:     </state>
 4515: RESOURCE_SELECTOR
 4516: 
 4517:         $resource_selector .= &generate_format_selector($helper,
 4518:                                                         'Format of the print job',
 4519:                                                         'PRINT_FORMATTING');
 4520: 	&Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_STUDENTS1);
 4521:   <state name="CHOOSE_STUDENTS1" title="Select Students and Resources">
 4522:     <choices variable='student_sort'>
 4523:       <choice computer='0'>Sort by section then student</choice>
 4524:       <choice computer='1'>Sort by students across sections.</choice>
 4525:     </choices>
 4526:     <message><br /><hr /><br /></message>
 4527:     <student multichoice='1' variable="STUDENTS" nextstate="SELECT_RESOURCES" coursepersonnel="1" />
 4528: 
 4529:     </state>
 4530:     $resource_selector
 4531: CHOOSE_STUDENTS1
 4532: 
 4533: 	&Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_ANON2);
 4534:   <state name="CHOOSE_ANON2" title="Select CODEd Assignments">
 4535:     <nextstate>SELECT_RESOURCES</nextstate>
 4536:     <message><h4>Fill out one of the forms below</h4></message>
 4537:     <message><br /><hr /> <br /></message>
 4538:     <message><h3>Generate new CODEd Assignments</h3></message>
 4539:     <message><table><tr><td><b>Number of CODEd assignments to print:</b></td><td></message>
 4540:     <string variable="NUMBER_TO_PRINT_TOTAL" maxlength="5" size="5"  noproceed="1">
 4541:        <validator>
 4542: 	if (((\$helper->{'VARS'}{'NUMBER_TO_PRINT_TOTAL'}+0) < 1) &&
 4543: 	    !\$helper->{'VARS'}{'REUSE_OLD_CODES'}                &&
 4544: 	    !\$helper->{'VARS'}{'SINGLE_CODE'}                   &&
 4545: 	    !\$helper->{'VARS'}{'CODE_SELECTED_FROM_LIST'}) {
 4546: 	    return "You need to specify the number of assignments to print";
 4547: 	}
 4548:         if (((\$helper->{'VARS'}{'NUMBER_TO_PRINT_TOTAL'}+0) >= 1)  &&
 4549:              (\$helper->{'VARS'}{'SINGLE_CODE'} ne '') ) {
 4550:             return 'Specifying number of codes to print and a specific code is not compatible';
 4551:         }
 4552: 	return undef;
 4553:        </validator>
 4554:     </string>
 4555:     <message></td></tr><tr><td></message>
 4556:     <message><b>Names to save the CODEs under for later:</b></message>
 4557:     <message></td><td></message>
 4558:     <string variable="ANON_CODE_STORAGE_NAME" maxlength="50" size="20" />
 4559:     <message></td></tr><tr><td></message>
 4560:     <message><b>Bubblesheet type:</b></message>
 4561:     <message></td><td></message>
 4562:     <dropdown variable="CODE_OPTION" multichoice="0" allowempty="0">
 4563:     $codechoice
 4564:     </dropdown>
 4565:     <message></td></tr><tr><td></table></message>
 4566:     <message><br /><hr /><h3>Print a Specific CODE </h3><br /><table></message>
 4567:     <message><tr><td><b>Enter a CODE to print:</b></td><td></message>
 4568:     <string variable="SINGLE_CODE" size="10">
 4569:         <validator>
 4570: 	   if(!\$helper->{'VARS'}{'NUMBER_TO_PRINT_TOTAL'}           &&
 4571: 	      !\$helper->{'VARS'}{'REUSE_OLD_CODES'}                 &&
 4572: 	      !\$helper->{'VARS'}{'CODE_SELECTED_FROM_LIST'}) {
 4573: 	      return &Apache::lonprintout::is_code_valid(\$helper->{'VARS'}{'SINGLE_CODE'},
 4574: 						      \$helper->{'VARS'}{'CODE_OPTION'});
 4575: 	  } elsif (\$helper->{'VARS'}{'SINGLE_CODE'} ne ''){
 4576: 	      return 'Specifying a code name is incompatible specifying number of codes.';
 4577: 	   } else {
 4578: 	       return undef;	# Other forces control us.
 4579: 	   }
 4580:         </validator>
 4581:     </string>
 4582:     <message></td></tr><tr><td></message>
 4583:         $code_selection
 4584:     <message></td></tr></table></message>
 4585:     <message><hr /><h3>Reprint a Set of Saved CODEs</h3><table><tr><td></message>
 4586:     <message><b>Select saved CODEs:</b></message>
 4587:     <message></td><td></message>
 4588:     <dropdown variable="REUSE_OLD_CODES">
 4589:         $namechoice
 4590:     </dropdown>
 4591:     <message></td></tr></table></message>
 4592:   </state>
 4593:     $resource_selector
 4594: CHOOSE_ANON2
 4595:     }
 4596: 
 4597:     # FIXME: That RE should come from a library somewhere.
 4598:     if (($perm{'pav'} 
 4599: 	&& $subdir ne $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'
 4600: 	&& (defined($helper->{'VARS'}->{'construction'})
 4601: 	    ||
 4602: 	    (&Apache::lonnet::allowed('bre',$subdir) eq 'F'
 4603: 	     && 
 4604: 	     $helper->{VARS}->{'postdata'}=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)/)
 4605: 	    )) 
 4606: 	&& $helper->{VARS}->{'assignment'} eq ""
 4607: 	) {
 4608: 	my $pretty_dir = &Apache::lonnet::hreflocation($subdir);
 4609:         push @{$printChoices}, [&mt('Selected [_1]Problems[_2] from current subdirectory [_3]','<b>','</b>','<b><i>'.$pretty_dir.'</i></b>','<b>','</b>'), 'problems_from_directory', 'CHOOSE_FROM_SUBDIR'];
 4610:         my $xmlfrag = <<CHOOSE_FROM_SUBDIR;
 4611:   <state name="CHOOSE_FROM_SUBDIR" title="Select File(s) from <b><small>$pretty_dir</small></b> to print">
 4612: 
 4613:     <files variable="FILES" multichoice='1'>
 4614:       <nextstate>PAGESIZE</nextstate>
 4615:       <filechoice>return '$subdir';</filechoice>
 4616: CHOOSE_FROM_SUBDIR
 4617:         
 4618:         # this is broken up because I really want interpolation above,
 4619:         # and I really DON'T want it below
 4620:         $xmlfrag .= <<'CHOOSE_FROM_SUBDIR';
 4621:       <filefilter>return Apache::lonhelper::files::not_old_version($filename) &&
 4622: 	  $filename =~ m/\.(problem|exam|quiz|assess|survey|form|library)$/;
 4623:       </filefilter>
 4624:       </files>
 4625:     </state>
 4626: CHOOSE_FROM_SUBDIR
 4627:         &Apache::lonxml::xmlparse($r, 'helper', $xmlfrag);
 4628:     }
 4629: 
 4630:     # Allow the user to select any sequence in the course, feed it to
 4631:     # another resource selector for that sequence
 4632:     if (!$helper->{VARS}->{'construction'} && !$is_published) {
 4633: 	push @$printChoices, [&mtn("Selected <b>Resources</b> from <b>selected folder</b> in course"),
 4634: 			      'select_sequences', 'CHOOSE_SEQUENCE'];
 4635: 	my $escapedSequenceName = $helper->{VARS}->{'SEQUENCE'};
 4636: 	#Escape apostrophes and backslashes for Perl
 4637: 	$escapedSequenceName =~ s/\\/\\\\/g;
 4638: 	$escapedSequenceName =~ s/'/\\'/g;
 4639: 	&Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_FROM_ANY_SEQUENCE);
 4640:   <state name="CHOOSE_SEQUENCE" title="Select Sequence To Print From">
 4641:     <message>Select the sequence to print resources from:</message>
 4642:     <resource variable="SEQUENCE">
 4643:       <nextstate>CHOOSE_FROM_ANY_SEQUENCE</nextstate>
 4644:       <filterfunc>return &Apache::lonprintout::printable_sequence(\$res);</filterfunc>
 4645:       <valuefunc>return $urlValue;</valuefunc>
 4646:       <choicefunc>return \$res->hasResource(\$res,sub { return !\$_[0]->is_sequence() },0,0);
 4647: 	</choicefunc>
 4648:       </resource>
 4649:     </state>
 4650:   <state name="CHOOSE_FROM_ANY_SEQUENCE" title="Select Resources To Print">
 4651:     <message>(mark desired resources then click "next" button) <br /></message>
 4652:     <resource variable="RESOURCES" multichoice="1" toponly='1' addstatus="1"
 4653:               closeallpages="1">
 4654:       <nextstate>PAGESIZE</nextstate>
 4655:       <filterfunc>return $isNotMap</filterfunc>
 4656:       <mapurl evaluate='1'>return '$escapedSequenceName';</mapurl>
 4657:       <valuefunc>return $symbFilter;</valuefunc>
 4658:       $start_new_option
 4659:       </resource>
 4660:     </state>
 4661: CHOOSE_FROM_ANY_SEQUENCE
 4662: }
 4663: 
 4664:     # Generate the first state, to select which resources get printed.
 4665:     Apache::lonhelper::state->new("START", "Select Printing Options:");
 4666:     if (!$res_printable) {
 4667:         my $now = time;
 4668:         my $shownprintstart = &Apache::lonlocal::locallocaltime($res_printstartdate);
 4669:         my $shownprintend = &Apache::lonlocal::locallocaltime($res_printenddate);
 4670:         my $noprintmsg;
 4671:         if (($res_printenddate) && ($res_printenddate < $now)) {
 4672:                 $noprintmsg = &mt('Printing for current resource no longer available (ended: [_1])',
 4673:                                   $shownprintend);
 4674:         } else {
 4675:             if (($res_printstartdate) && ($res_printstartdate > $now)) {
 4676:                 if (($res_printenddate) && ($res_printenddate > $now) && ($res_printenddate > $res_printstartdate)) {
 4677:                     $noprintmsg = &mt('Printing for current resource is only possible between [_1] and [_2]',
 4678:                                   $shownprintstart,$shownprintend);
 4679:                 } elsif (!$res_printenddate) {
 4680:                     $noprintmsg = &mt('Printing for current resource will only be possible starting [_1]',
 4681:                                       $shownprintstart);
 4682:                 } else {
 4683:                     $noprintmsg = &mt('Printing for current resource is unavailable');
 4684:                 }
 4685:             }
 4686:         }
 4687: 
 4688:         if ($noprintmsg) {
 4689:             $paramHash = Apache::lonhelper::getParamHash();
 4690:             $paramHash->{MESSAGE_TEXT} =
 4691:                 '<p class="LC_info">'.$noprintmsg.'</p>';
 4692:             Apache::lonhelper::message->new();
 4693:         }
 4694:     }
 4695:     $paramHash = Apache::lonhelper::getParamHash();
 4696:     $paramHash = Apache::lonhelper::getParamHash();
 4697:     $paramHash->{MESSAGE_TEXT} = "";
 4698:     Apache::lonhelper::message->new();
 4699:     $paramHash = Apache::lonhelper::getParamHash();
 4700:     $paramHash->{'variable'} = 'PRINT_TYPE';
 4701:     $paramHash->{CHOICES} = $printChoices;
 4702:     Apache::lonhelper::choices->new();
 4703: 
 4704:     my $startedTable = 0; # have we started an HTML table yet? (need
 4705:                           # to close it later)
 4706: 
 4707:     if (($perm{'pav'} and $perm{'vgr'}) or 
 4708: 	($helper->{VARS}->{'construction'} eq '1')) {
 4709: 	&addMessage('<br />'
 4710:                    .'<h3>'.&mt('Print Options').'</h3>'
 4711:                    .&Apache::lonhtmlcommon::start_pick_box()
 4712:                    .&Apache::lonhtmlcommon::row_title(
 4713:                        '<label for="ANSWER_TYPE_forminput">'
 4714:                       .&mt('Print Answers')
 4715:                       .'</label>'
 4716:                     )
 4717:         );
 4718:         $paramHash = Apache::lonhelper::getParamHash();
 4719: 	$paramHash->{'variable'} = 'ANSWER_TYPE';   
 4720: 	$helper->declareVar('ANSWER_TYPE');         
 4721:         $paramHash->{CHOICES} = [
 4722:                                    ['Without Answers', 'yes'],
 4723:                                    ['With Answers', 'no'],
 4724:                                    ['Only Answers', 'only']
 4725:                                 ];
 4726:         Apache::lonhelper::dropdown->new();
 4727: 	&addMessage(&Apache::lonhtmlcommon::row_closure());
 4728: 	$startedTable = 1;
 4729: 
 4730: #
 4731: #  Select font size.
 4732: #
 4733: 
 4734:             $helper->declareVar('fontsize');
 4735:             &addMessage(&Apache::lonhtmlcommon::row_title(&mt('Font Size')));
 4736:             my $xmlfrag = << "FONT_SELECTION";
 4737: 
 4738:           
 4739:             <dropdown variable='fontsize' multichoice='0', allowempty='0'>
 4740:             <defaultvalue>
 4741: 		  return 'normalsize';
 4742:             </defaultvalue>
 4743:             <choice computer='tiny'>Tiny</choice>
 4744:             <choice computer='sub/superscriptsize'>Script Size</choice>
 4745:             <choice computer='footnotesize'>Footnote Size</choice>
 4746:             <choice computer='small'>Small</choice>
 4747:             <choice computer='normalsize'>Normal (default)</choice>
 4748:             <choice computer='large'>larger than normal</choice>
 4749:             <choice computer='Large'>Even larger than normal</choice>
 4750:             <choice computer='LARGE'>Still larger than normal</choice>
 4751:             <choice computer='huge'>huge font size</choice>
 4752:             <choice computer='Huge'>Largest possible size</choice>
 4753:             </dropdown>
 4754: FONT_SELECTION
 4755:             &Apache::lonxml::xmlparse($r, 'helper', $xmlfrag);
 4756:             &addMessage(&Apache::lonhtmlcommon::row_closure(1));
 4757:     }
 4758: 
 4759:     if ($perm{'pav'}) {
 4760: 	if (!$startedTable) {
 4761: 	    addMessage("<hr width='33%' /><table><tr><td align='right'>".
 4762:                        '<label for="LATEX_TYPE_forminput">'.
 4763:                        &mt('LaTeX mode').
 4764:                        "</label>: </td><td>");
 4765: 	    $startedTable = 1;
 4766: 	} else {
 4767: 	    &addMessage(&Apache::lonhtmlcommon::row_title(
 4768:                            '<label for="LATEX_TYPE_forminput">'
 4769:                            .&mt('LaTeX mode')
 4770:                            .'</label>'
 4771:                         )
 4772:             );
 4773: 	}
 4774:         $paramHash = Apache::lonhelper::getParamHash();
 4775: 	$paramHash->{'variable'} = 'LATEX_TYPE';   
 4776: 	$helper->declareVar('LATEX_TYPE');  
 4777: 	if ($helper->{VARS}->{'construction'} eq '1') {       
 4778: 	    $paramHash->{CHOICES} = [
 4779: 				     ['standard LaTeX mode', 'standard'], 
 4780: 				     ['LaTeX batchmode', 'batchmode'], ];
 4781: 	} else {
 4782: 	    $paramHash->{CHOICES} = [
 4783: 				     ['LaTeX batchmode', 'batchmode'],
 4784: 				     ['standard LaTeX mode', 'standard'] ];
 4785: 	}
 4786:         Apache::lonhelper::dropdown->new();
 4787:  
 4788: 	&addMessage(&Apache::lonhtmlcommon::row_closure()
 4789:                    .&Apache::lonhtmlcommon::row_title(
 4790:                         '<label for="TABLE_CONTENTS_forminput">'
 4791:                        .&mt('Print Table of Contents')
 4792:                        .'</label>'
 4793:                     )
 4794:         );
 4795:         $paramHash = Apache::lonhelper::getParamHash();
 4796: 	$paramHash->{'variable'} = 'TABLE_CONTENTS';   
 4797: 	$helper->declareVar('TABLE_CONTENTS');         
 4798:         $paramHash->{CHOICES} = [
 4799:                                    ['No', 'no'],
 4800:                                    ['Yes', 'yes'] ];
 4801:         Apache::lonhelper::dropdown->new();
 4802: 	&addMessage(&Apache::lonhtmlcommon::row_closure());
 4803:         
 4804: 	if (not $helper->{VARS}->{'construction'}) {
 4805: 	    &addMessage(&Apache::lonhtmlcommon::row_title(
 4806:                             '<label for="TABLE_INDEX_forminput">'
 4807:                            .&mt('Print Index')
 4808:                            .'</label>'
 4809:                         )
 4810:             );
 4811: 	    $paramHash = Apache::lonhelper::getParamHash();
 4812: 	    $paramHash->{'variable'} = 'TABLE_INDEX';   
 4813: 	    $helper->declareVar('TABLE_INDEX');         
 4814: 	    $paramHash->{CHOICES} = [
 4815: 				     ['No', 'no'],
 4816: 				     ['Yes', 'yes'] ];
 4817: 	    Apache::lonhelper::dropdown->new();
 4818:             &addMessage(&Apache::lonhtmlcommon::row_closure());
 4819:             &addMessage(&Apache::lonhtmlcommon::row_title(
 4820:                             '<label for="PRINT_DISCUSSIONS_forminput">'
 4821:                            .&mt('Print Discussions')
 4822:                            .'</label>'
 4823:                         )
 4824:             );
 4825: 	    $paramHash = Apache::lonhelper::getParamHash();
 4826: 	    $paramHash->{'variable'} = 'PRINT_DISCUSSIONS';   
 4827: 	    $helper->declareVar('PRINT_DISCUSSIONS');         
 4828: 	    $paramHash->{CHOICES} = [
 4829: 				     ['No', 'no'],
 4830: 				     ['Yes', 'yes'] ];
 4831: 	    Apache::lonhelper::dropdown->new();
 4832:             &addMessage(&Apache::lonhtmlcommon::row_closure());
 4833: 
 4834: 	    # Prompt for printing annotations too.
 4835: 		
 4836: 	    &addMessage(&Apache::lonhtmlcommon::row_title(
 4837:                             '<label for="PRINT_ANNOTATIONS_forminput">'
 4838:                            .&mt('Print Annotations')
 4839:                            .'</label>'
 4840:                         )
 4841:             );
 4842: 	    $paramHash = Apache::lonhelper::getParamHash();
 4843: 	    $paramHash->{'variable'} = "PRINT_ANNOTATIONS";
 4844: 	    $helper->declareVar("PRINT_ANNOTATIONS");
 4845: 	    $paramHash->{CHOICES} = [
 4846: 				     ['No', 'no'],
 4847: 				     ['Yes', 'yes']];
 4848: 	    Apache::lonhelper::dropdown->new();
 4849:             &addMessage(&Apache::lonhtmlcommon::row_closure());
 4850: 
 4851:             &addMessage(&Apache::lonhtmlcommon::row_title(&mt('Foils')));
 4852: 	    $paramHash = Apache::lonhelper::getParamHash();
 4853: 	    $paramHash->{'multichoice'} = "true";
 4854: 	    $paramHash->{'allowempty'}  = "true";
 4855: 	    $paramHash->{'variable'}   = "showallfoils";
 4856: 	    $paramHash->{'CHOICES'} = [ [&mt('Show All Foils'), "1"] ];
 4857: 	    Apache::lonhelper::choices->new();
 4858:             &addMessage(&Apache::lonhtmlcommon::row_closure(1));
 4859: 	}
 4860: 
 4861: 	if ($helper->{'VARS'}->{'construction'}) { 
 4862: 	    my $stylevalue='$Apache::lonnet::env{"construct.style"}';
 4863:             my $randseedtext=&mt("Use random seed");
 4864:             my $stylefiletext=&mt("Use style file");
 4865:             my $selectfiletext=&mt("Select style file");
 4866: 
 4867: 	    my $xmlfrag .= '<message>'
 4868:             .&Apache::lonhtmlcommon::row_title('<label for="curseed_forminput">'
 4869:                                               .$randseedtext
 4870:                                               .'</label>'
 4871:              )
 4872:             .'</message>
 4873:             <string variable="curseed" size="15" maxlength="15">
 4874:                 <defaultvalue>
 4875:                    return '.$helper->{VARS}->{'curseed'}.';
 4876:                 </defaultvalue>'
 4877:             .'</string>'
 4878:             .'<message>'
 4879:             .&Apache::lonhtmlcommon::row_closure()
 4880:             .&Apache::lonhtmlcommon::row_title('<label for="style_file">'
 4881:                                               .$stylefiletext
 4882:                                               .'</label>'
 4883:              )
 4884:             .'</message>
 4885:              <string variable="style_file" size="40">
 4886:                 <defaultvalue>
 4887:                     return '.$stylevalue.';
 4888:                 </defaultvalue>
 4889:              </string><message>&nbsp;'
 4890: .qq|<a href="javascript:openbrowser('helpform','style_file_forminput','sty')">|
 4891: .$selectfiletext.'</a>'
 4892:             .&Apache::lonhtmlcommon::row_closure()
 4893:             .&Apache::lonhtmlcommon::row_title(&mt('Show All Foils'))
 4894:             .'</message>
 4895: 	     <choices allowempty="1" multichoice="true" variable="showallfoils">
 4896:                 <choice computer="1">&nbsp;</choice>
 4897:              </choices>'
 4898: 	    .'<message>'
 4899:             .&Apache::lonhtmlcommon::row_closure()
 4900:             .'</message>';
 4901:             &Apache::lonxml::xmlparse($r, 'helper', $xmlfrag);
 4902: 
 4903: 
 4904:             &addMessage(&Apache::lonhtmlcommon::row_title(&mt('Problem Type')));
 4905: 	    #
 4906: 	    # Initial value from construction space:
 4907: 	    #
 4908: 	    if (!$helper->{VARS}->{'probstatus'} && $env{'form.problemtype'}) {
 4909: 		$helper->{VARS}->{'probstatus'} = $env{'form.problemtype'};	# initial value
 4910: 	    }
 4911: 	    $xmlfrag = << "PROBTYPE";
 4912: 		<dropdown variable="probstatus" multichoice="0" allowempty="0">
 4913: 		   <defaultvalue>
 4914: 		      return "$helper->{VARS}->{'probstatus'}";
 4915:                    </defaultvalue>
 4916: 		   <choice computer="problem">Homework Problem</choice>
 4917: 		   <choice computer="exam">Exam Problem</choice>
 4918: 		   <choice computer="survey">Survey question</choice>
 4919:                    ,choice computer="anonsurvey"Anonymous survey question</choice>
 4920: 		</dropdown>
 4921: PROBTYPE
 4922:             &Apache::lonxml::xmlparse($r, 'helper', $xmlfrag);
 4923:             &addMessage(&Apache::lonhtmlcommon::row_closure(1));
 4924: 
 4925: 
 4926: 
 4927:         }
 4928:     }
 4929: 
 4930: 
 4931: 
 4932: 
 4933:     if ($startedTable) {
 4934:         &addMessage(&Apache::lonhtmlcommon::end_pick_box());
 4935:     }
 4936: 
 4937:     Apache::lonprintout::page_format_state->new("FORMAT");
 4938: 
 4939:     # Generate the PAGESIZE state which will offer the user the margin
 4940:     # choices if they select one column
 4941:     Apache::lonhelper::state->new("PAGESIZE", "Set Margins");
 4942:     Apache::lonprintout::page_size_state->new('pagesize', 'FORMAT', 'FINAL');
 4943: 
 4944: 
 4945:     $helper->process();
 4946: 
 4947: 
 4948:     # MANUAL BAILOUT CONDITION:
 4949:     # If we're in the "final" state, bailout and return to handler
 4950:     if ($helper->{STATE} eq 'FINAL') {
 4951:         return $helper;
 4952:     }    
 4953: 
 4954:     my $footer;
 4955:     if ($helper->{STATE} eq 'START') {
 4956:         my $prtspool=$r->dir_config('lonPrtDir'); 
 4957: 	$footer = &recently_generated($prtspool);
 4958:     }
 4959:     $r->print($helper->display($footer));
 4960:     &Apache::lonhelper::unregisterHelperTags();
 4961: 
 4962:     return OK;
 4963: }
 4964: 
 4965: 
 4966: 1;
 4967: 
 4968: package Apache::lonprintout::page_format_state;
 4969: 
 4970: =pod
 4971: 
 4972: =head1 Helper element: page_format_state
 4973: 
 4974: See lonhelper.pm documentation for discussion of the helper framework.
 4975: 
 4976: Apache::lonprintout::page_format_state is an element that gives the 
 4977: user an opportunity to select the page layout they wish to print 
 4978: with: Number of columns, portrait/landscape, and paper size. If you 
 4979: want to change the paper size choices, change the @paperSize array 
 4980: contents in this package.
 4981: 
 4982: page_format_state is always directly invoked in lonprintout.pm, so there
 4983: is no tag interface. You actually pass parameters to the constructor.
 4984: 
 4985: =over 4
 4986: 
 4987: =item * B<new>(varName): varName is where the print information will be stored in the format FIXME.
 4988: 
 4989: =back
 4990: 
 4991: =cut
 4992: 
 4993: use Apache::lonhelper;
 4994: 
 4995: no strict;
 4996: @ISA = ("Apache::lonhelper::element");
 4997: use strict;
 4998: use Apache::lonlocal;
 4999: use Apache::lonnet;
 5000: 
 5001: my $maxColumns = 2;
 5002: # it'd be nice if these all worked
 5003: #my @paperSize = ("letter [8 1/2x11 in]", "legal [8 1/2x14 in]", 
 5004: #                 "tabloid (ledger) [11x17 in]", "executive [7 1/2x10 in]",
 5005: #                 "a2 [420x594 mm]", "a3 [297x420 mm]", "a4 [210x297 mm]", 
 5006: #                 "a5 [148x210 mm]", "a6 [105x148 mm]" );
 5007: my @paperSize = ("letter [8 1/2x11 in]", "legal [8 1/2x14 in]", 
 5008: 		 "a4 [210x297 mm]");
 5009: 
 5010: # Tentative format: Orientation (L = Landscape, P = portrait) | Colnum |
 5011: #                   Paper type
 5012: 
 5013: sub new { 
 5014:     my $self = Apache::lonhelper::element->new();
 5015: 
 5016:     shift;
 5017: 
 5018:     $self->{'variable'} = shift;
 5019:     my $helper = Apache::lonhelper::getHelper();
 5020:     $helper->declareVar($self->{'variable'});
 5021:     bless($self);
 5022:     return $self;
 5023: }
 5024: 
 5025: sub render {
 5026:     my $self = shift;
 5027:     my $helper = Apache::lonhelper::getHelper();
 5028:     my $result = '';
 5029:     my $var = $self->{'variable'};
 5030:     my $PageLayout=&mt('Page layout');
 5031:     my $NumberOfColumns=&mt('Number of columns');
 5032:     my $PaperType=&mt('Paper type');
 5033:     my $landscape=&mt('Landscape');
 5034:     my $portrait=&mt('Portrait');
 5035:     
 5036: 
 5037:     $result.='<h3>'.&mt('Layout Options').'</h3>'
 5038:             .&Apache::loncommon::start_data_table()
 5039:             .&Apache::loncommon::start_data_table_header_row()
 5040:             .'<th>'.$PageLayout.'</th>'
 5041:             .'<th>'.$NumberOfColumns.'</th>'
 5042:             .'<th>'.$PaperType.'</th>'
 5043:             .&Apache::loncommon::end_data_table_header_row()
 5044:             .&Apache::loncommon::start_data_table_row()
 5045:     .'<td>'
 5046:     .'<label><input type="radio" name="'.${var}.'.layout" value="L" />'.$landscape.'</label><br />'
 5047:     .'<label><input type="radio" name="'.${var}.'.layout" value="P" checked="checked" />'.$portrait.'</label>'
 5048:     .'</td>';
 5049: 
 5050:     $result.='<td align="center">'
 5051:             .'<select name="'.${var}.'.cols">';
 5052: 
 5053:     my $i;
 5054:     for ($i = 1; $i <= $maxColumns; $i++) {
 5055:         if ($i == 2) {
 5056:             $result .= '<option value="'.$i.'" selected="selected">'.$i.'</option>'."\n";
 5057:         } else {
 5058:             $result .= '<option value="'.$i.'">'.$i.'</option>'."\n";
 5059:         }
 5060:     }
 5061: 
 5062:     $result .= "</select></td><td>\n";
 5063:     $result .= "<select name='${var}.paper'>\n";
 5064: 
 5065:     my %parmhash=&Apache::lonnet::coursedescription($env{'request.course.id'});
 5066:     my $DefaultPaperSize=lc($parmhash{'default_paper_size'});
 5067:     $DefaultPaperSize=~s/\s//g;
 5068:     if ($DefaultPaperSize eq '') {$DefaultPaperSize='letter';}
 5069:     $i = 0;
 5070:     foreach (@paperSize) {
 5071: 	$_=~/(\w+)/;
 5072: 	my $papersize=$1;
 5073:         if ($paperSize[$i]=~/$DefaultPaperSize/) {
 5074:             $result .= '<option selected="selected" value="'.$papersize.'">'.$paperSize[$i].'</option>'."\n";
 5075:         } else {
 5076:             $result .= '<option value="'.$papersize.'">'.$paperSize[$i].'</option>'."\n";
 5077:         }
 5078:         $i++;
 5079:     }
 5080:     $result .= <<HTML;
 5081:         </select>
 5082:     </td>
 5083: HTML
 5084:     $result.=&Apache::loncommon::end_data_table_row()
 5085:             .&Apache::loncommon::end_data_table();
 5086: 
 5087:     return $result;
 5088: }
 5089: 
 5090: sub postprocess {
 5091:     my $self = shift;
 5092: 
 5093:     my $var = $self->{'variable'};
 5094:     my $helper = Apache::lonhelper->getHelper();
 5095:     $helper->{VARS}->{$var} = 
 5096:         $env{"form.$var.layout"} . '|' . $env{"form.$var.cols"} . '|' .
 5097:         $env{"form.$var.paper"} . '|' . $env{"form.$var.pdfFormFields"};
 5098:     return 1;
 5099: }
 5100: 
 5101: 1;
 5102: 
 5103: package Apache::lonprintout::page_size_state;
 5104: 
 5105: =pod
 5106: 
 5107: =head1 Helper element: page_size_state
 5108: 
 5109: See lonhelper.pm documentation for discussion of the helper framework.
 5110: 
 5111: Apache::lonprintout::page_size_state is an element that gives the 
 5112: user the opportunity to further refine the page settings if they
 5113: select a single-column page.
 5114: 
 5115: page_size_state is always directly invoked in lonprintout.pm, so there
 5116: is no tag interface. You actually pass parameters to the constructor.
 5117: 
 5118: =over 4
 5119: 
 5120: =item * B<new>(varName): varName is where the print information will be stored in the format FIXME.
 5121: 
 5122: =back
 5123: 
 5124: =cut
 5125: 
 5126: use Apache::lonhelper;
 5127: use Apache::lonnet;
 5128: no strict;
 5129: @ISA = ("Apache::lonhelper::element");
 5130: use strict;
 5131: 
 5132: 
 5133: 
 5134: sub new { 
 5135:     my $self = Apache::lonhelper::element->new();
 5136: 
 5137:     shift; # disturbs me (probably prevents subclassing) but works (drops
 5138:            # package descriptor)... - Jeremy
 5139: 
 5140:     $self->{'variable'} = shift;
 5141:     my $helper = Apache::lonhelper::getHelper();
 5142:     $helper->declareVar($self->{'variable'});
 5143: 
 5144:     # The variable name of the format element, so we can look into 
 5145:     # $helper->{VARS} to figure out whether the columns are one or two
 5146:     $self->{'formatvar'} = shift;
 5147: 
 5148: 
 5149:     $self->{NEXTSTATE} = shift;
 5150:     bless($self);
 5151: 
 5152:     return $self;
 5153: }
 5154: 
 5155: sub render {
 5156:     my $self = shift;
 5157:     my $helper = Apache::lonhelper::getHelper();
 5158:     my $result = '';
 5159:     my $var = $self->{'variable'};
 5160: 
 5161: 
 5162: 
 5163:     if (defined $self->{ERROR_MSG}) {
 5164:         $result .= '<br /><span class="LC_error">' . $self->{ERROR_MSG} . '</span><br />';
 5165:     }
 5166: 
 5167:     my $format = $helper->{VARS}->{$self->{'formatvar'}};
 5168: 
 5169:     # Use format to get sensible defaults for the margins:
 5170: 
 5171: 
 5172:     my ($laystyle, $cols, $papersize) = split(/\|/, $format);
 5173:     ($papersize)                      = split(/ /, $papersize);
 5174: 
 5175:     $laystyle = &Apache::lonprintout::map_laystyle($laystyle);
 5176: 
 5177: 
 5178: 
 5179:     my %size;
 5180:     ($size{'width_and_units'},
 5181:      $size{'height_and_units'},
 5182:      $size{'margin_and_units'})=
 5183: 	 &Apache::lonprintout::page_format($papersize, $laystyle, $cols);
 5184:     
 5185:     foreach my $dimension ('width','height','margin') {
 5186: 	($size{$dimension},$size{$dimension.'_unit'}) =
 5187: 	    split(/ +/, $size{$dimension.'_and_units'},2);
 5188:        	
 5189: 	foreach my $unit ('cm','in') {
 5190: 	    $size{$dimension.'_options'} .= '<option ';
 5191: 	    if ($size{$dimension.'_unit'} eq $unit) {
 5192: 		$size{$dimension.'_options'} .= 'selected="selected" ';
 5193: 	    }
 5194: 	    $size{$dimension.'_options'} .= '>'.$unit.'</option>';
 5195: 	}
 5196:     }
 5197: 
 5198:     # Adjust margin for LaTeX margin: .. requires units == cm or in.
 5199: 
 5200:     if ($size{'margin_unit'} eq 'in') {
 5201: 	$size{'margin'} += 1;
 5202:     }  else {
 5203: 	$size{'margin'} += 2.54;
 5204:     }
 5205:     my %lt = &Apache::lonlocal::texthash(
 5206:         'format' => 'How should each column be formatted?',
 5207:         'width'  => 'Width',
 5208:         'height' => 'Height',
 5209:         'margin' => 'Left Margin'
 5210:     );
 5211: 
 5212:     $result .= '<p>'.$lt{'format'}.'</p>'
 5213:               .&Apache::lonhtmlcommon::start_pick_box()
 5214:               .&Apache::lonhtmlcommon::row_title($lt{'width'})
 5215:               .'<input type="text" name="'.$var.'.width" value="'.$size{'width'}.'" size="4" />'
 5216:               .'<select name="'.$var.'.widthunit">'
 5217:               .$size{'width_options'}
 5218:               .'</select>'
 5219:               .&Apache::lonhtmlcommon::row_closure()
 5220:               .&Apache::lonhtmlcommon::row_title($lt{'height'})
 5221:               .'<input type="text" name="'.$var.'.height" value="'.$size{'height'}.'" size="4" />'
 5222:               .'<select name="'.$var.'.heightunit">'
 5223:               .$size{'height_options'}
 5224:               .'</select>'
 5225:               .&Apache::lonhtmlcommon::row_closure()
 5226:               .&Apache::lonhtmlcommon::row_title($lt{'margin'})
 5227:               .'<input type="text" name="'.$var.'.lmargin" value="'.$size{'margin'}.'" size="4" />'
 5228:               .'<select name="'.$var.'.lmarginunit">'
 5229:               .$size{'margin_options'}
 5230:               .'</select>'
 5231:               .&Apache::lonhtmlcommon::row_closure(1)
 5232:               .&Apache::lonhtmlcommon::end_pick_box();
 5233:     # <p>Hint: Some instructors like to leave scratch space for the student by
 5234:     # making the width much smaller than the width of the page.</p>
 5235: 
 5236:     return $result;
 5237: }
 5238: 
 5239: 
 5240: sub preprocess {
 5241:     my $self = shift;
 5242:     my $helper = Apache::lonhelper::getHelper();
 5243: 
 5244:     my $format = $helper->{VARS}->{$self->{'formatvar'}};
 5245: 
 5246:     #  If the user does not have 'pav' privilege, set default widths and
 5247:     #  on to the next state right away.
 5248:     #
 5249:     if (!$perm{'pav'}) {
 5250: 	my $var = $self->{'variable'};
 5251: 	my $format = $helper->{VARS}->{$self->{'formatvar'}};
 5252: 	
 5253: 	my ($laystyle, $cols, $papersize) = split(/\|/, $format);
 5254: 	($papersize)                      = split(/ /, $papersize);
 5255: 	
 5256: 	
 5257: 	$laystyle = &Apache::lonprintout::map_laystyle($laystyle);
 5258: 
 5259: 	#  Figure out some good defaults for the print out and set them:
 5260: 	
 5261: 	my %size;
 5262: 	($size{'width'},
 5263: 	 $size{'height'},
 5264: 	 $size{'lmargin'})=
 5265: 	     &Apache::lonprintout::page_format($papersize, $laystyle, $cols);
 5266: 	
 5267: 	foreach my $dim ('width', 'height', 'lmargin') {
 5268: 	    my ($value, $units) = split(/ /, $size{$dim});
 5269: 	    	    
 5270: 	    $helper->{VARS}->{"$var.".$dim}      = $value;
 5271: 	    $helper->{VARS}->{"$var.".$dim.'unit'} = $units;
 5272: 	    
 5273: 	}
 5274: 	
 5275: 
 5276: 	# Transition to the next state
 5277: 
 5278: 	$helper->changeState($self->{NEXTSTATE});
 5279:     }
 5280:    
 5281:     return 1;
 5282: }
 5283: 
 5284: sub postprocess {
 5285:     my $self = shift;
 5286: 
 5287:     my $var = $self->{'variable'};
 5288:     my $helper = Apache::lonhelper->getHelper();
 5289:     my $width = $helper->{VARS}->{$var .'.width'} = $env{"form.${var}.width"}; 
 5290:     my $height = $helper->{VARS}->{$var .'.height'} = $env{"form.${var}.height"}; 
 5291:     my $lmargin = $helper->{VARS}->{$var .'.lmargin'} = $env{"form.${var}.lmargin"}; 
 5292:     $helper->{VARS}->{$var .'.widthunit'} = $env{"form.${var}.widthunit"}; 
 5293:     $helper->{VARS}->{$var .'.heightunit'} = $env{"form.${var}.heightunit"}; 
 5294:     $helper->{VARS}->{$var .'.lmarginunit'} = $env{"form.${var}.lmarginunit"}; 
 5295: 
 5296:     my $error = '';
 5297: 
 5298:     # /^-?[0-9]+(\.[0-9]*)?$/ -> optional minus, at least on digit, followed 
 5299:     # by an optional period, followed by digits, ending the string
 5300: 
 5301:     if ($width !~  /^-?[0-9]*(\.[0-9]*)?$/) {
 5302:         $error .= "Invalid width; please type only a number.<br />\n";
 5303:     }
 5304:     if ($height !~  /^-?[0-9]*(\.[0-9]*)?$/) {
 5305:         $error .= "Invalid height; please type only a number.<br />\n";
 5306:     }
 5307:     if ($lmargin !~  /^-?[0-9]*(\.[0-9]*)?$/) {
 5308:         $error .= "Invalid left margin; please type only a number.<br />\n";
 5309:     } else {
 5310: 	# Adjust for LaTeX 1.0 inch margin:
 5311: 
 5312: 	if ($env{"form.${var}.lmarginunit"} eq "in") {
 5313: 	    $helper->{VARS}->{$var.'.lmargin'} = $lmargin - 1;
 5314: 	} else {
 5315: 	    $helper->{VARS}->{$var.'.lmargin'} = $lmargin - 2.54;
 5316: 	}
 5317:     }
 5318: 
 5319:     if (!$error) {
 5320:         Apache::lonhelper::getHelper()->changeState($self->{NEXTSTATE});
 5321:         return 1;
 5322:     } else {
 5323:         $self->{ERROR_MSG} = $error;
 5324:         return 0;
 5325:     }
 5326: }
 5327: 
 5328: __END__
 5329: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>