Annotation of loncom/interface/lonprintout.pm, revision 1.622

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

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