File:  [LON-CAPA] / loncom / interface / lonprintout.pm
Revision 1.71: download - view: text, annotated - select for diffs
Thu Sep 19 18:33:20 2002 UTC (21 years, 9 months ago) by sakharuk
Branches: MAIN
CVS tags: HEAD
1. Primary sequence now can be printed if it has pages inside. I included
   this possibility in the third item of the main menu "All problems
   plus any pages or html/xml files from "Title"". The reason of this -
   page can contain any html or xml documents inside. But I still do not
   understand - either I have to include printing pages in the second item
   of the main menu "All problems from "Title"", because page can be
   constructed from the problems only.
2. I removed any possibilities for infinite loop from the printing of primary
   sequences (second and third items of the main menu). The same I'll do for
   the printing of the assignments for the students and for the printing of the    whole course.

    1: # The LearningOnline Network
    2: # Printout
    3: #
    4: # $Id: lonprintout.pm,v 1.71 2002/09/19 18:33:20 sakharuk Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: # (Internal Server Error Handler
   29: #
   30: # (Login Screen
   31: # 5/21/99,5/22,5/25,5/26,5/31,6/2,6/10,7/12,7/14,
   32: # 1/14/00,5/29,5/30,6/1,6/29,7/1,11/9 Gerd Kortemeyer)
   33: #
   34: # 3/1/1 Gerd Kortemeyer)
   35: #
   36: # 3/1 Gerd Kortemeyer
   37: #
   38: # 9/17 Alex Sakharuk
   39: #
   40: package Apache::lonprintout;
   41: 
   42: use strict;
   43: use Apache::Constants qw(:common :http);
   44: use Apache::lonxml;
   45: use Apache::lonnet;
   46: use Apache::loncommon;
   47: use Apache::inputtags;
   48: use Apache::grades;
   49: use Apache::edit;
   50: use Apache::File();
   51: use Apache::lonnavmaps;
   52: use POSIX qw(strftime);
   53: use GDBM_File;
   54: 
   55: 
   56: my %hash;
   57: 
   58: 
   59: sub headerform {
   60:     my $r = shift;
   61:     $r->print(<<ENDHEADER);
   62: <html>
   63: <head>
   64: <title>LON-CAPA output for printing</title>
   65: </head>
   66: <body bgcolor="FFFFFF">
   67: <form method="post" enctype="multipart/form-data" action="/adm/printout" name="printform">
   68: ENDHEADER
   69:     if ($ENV{'request.role'}=~m/^cc\./ or $ENV{'request.role'}=~m/^in\./ or $ENV{'request.role'}=~m/^ta\./) { 
   70:     $r->print(<<ENDHEADER1);
   71: <b>Path to current document: </b><tt>$ENV{'form.postdata'}</tt><p>
   72: ENDHEADER1
   73: }
   74: }
   75: 
   76: 
   77: sub menu_for_output {
   78:     my $r = shift;
   79:     my ($title_for_single_resource,$title_for_sequence,$title_for_main_map) = &details_for_menu;
   80:     if ($title_for_single_resource ne '') {$title_for_single_resource = '"'.$title_for_single_resource.'"';}
   81:     if ($title_for_sequence ne '') {$title_for_sequence = '"'.$title_for_sequence.'"';}
   82:     if ($title_for_main_map ne '') {$title_for_main_map = '"'.$title_for_main_map.'"';}
   83:     my $subdir_to_print = $ENV{'form.postdata'};
   84:     $subdir_to_print =~ m/\/([^\/]+)$/;
   85:     $subdir_to_print =~ s/$1//;
   86:     $r->print(<<ENDMENUOUT1);
   87: <h1>What do you want to print? Make a choice.</h1><br />
   88: <input type="hidden" name="phase" value="two">
   89: <input type="hidden" name="url" value="$ENV{'form.postdata'}">
   90: <input type="radio" name="choice" value="Standard LaTeX output for current document" checked>  Current document <b>$title_for_single_resource</b>
   91: (prints what you just saw on the screen)<br />
   92: ENDMENUOUT1
   93:     if ((not $ENV{'request.role'}=~m/^au\./) and (not $ENV{'request.role'}=~m/^ca\./)) {
   94: 	$r->print(<<ENDMENUOUT2);
   95: <input type="radio" name="choice" value="Standard LaTeX output for the primary sequence">  All problems from <b>$title_for_sequence</b><br />
   96: <input type="radio" name="choice" value="Standard LaTeX output for whole primary sequence">  All problems plus any pages or html/xml files from <b>$title_for_sequence</b><br />
   97: ENDMENUOUT2
   98:     }
   99:     if ($ENV{'request.role'}=~m/^cc\./ or $ENV{'request.role'}=~m/^in\./ or $ENV{'request.role'}=~m/^ta\./) { 
  100: 	$r->print(<<ENDMENUOUT6);
  101: <input type="radio" name="choice" value="Standard LaTeX output for the top level sequence">  All problems in this course (<b>warning:</b> this may be time consuming) <br />
  102: <br />
  103: <input type="radio" name="choice" value="All class print">  All problems from <b>$title_for_sequence</b> for selected students<br /><br />
  104: ENDMENUOUT6
  105:     }
  106:       my $subdirtoprint = &Apache::lonnet::filelocation("",$ENV{'form.url'});
  107:       $subdirtoprint =~ s/\/[^\/]+$//;
  108:       if (&Apache::lonnet::allowed('bre',$subdirtoprint) eq 'F') {
  109: 	  $r->print(<<ENDMENUOUT4);
  110:   <input type="radio" name="choice" value="Subdirectory print">  Problems from current subdirectory <b>$subdir_to_print</b><br />
  111: ENDMENUOUT4
  112:       }
  113:     $r->print(<<ENDMENUOUT5);
  114: <br /><hr /><br />
  115: <h1>And what page format do you prefer?</h1>
  116: <table>
  117:  <tr>
  118:    <td>
  119:      <input type="radio" name="layout" value="CBI"> Landscape <br />
  120:      <input type="radio" name="layout" value="CAPA" checked>  Portrait <br />
  121:    </td>
  122:    <td>&nbsp;</td>
  123:    <td rawspan="2">
  124:      Number of columns: <select name="numberofcolumns">
  125:                          <option> 1 </option>
  126:                          <option selected> 2 </option>
  127:                         </select> 
  128:    </td>
  129:    <td rawspan="2">
  130:      Paper size (format [width x height]): <select name="papersize">
  131:                                             <option selected> Letter [8 1/2x11 in] </option>
  132:                                             <option> Legal [8 1/2x14 in] </option>
  133:                                             <option> Ledger/Tabloid [11x17 in] </option>
  134:                                             <option> Executive [7 1/2x10 in] </option>
  135:                                             <option> A2 [420x594 mm] </option>
  136:                                             <option> A3 [297x420 mm] </option>
  137:                                             <option> A4 [210x297 mm] </option>
  138:                                             <option> A5 [148x210 mm] </option>
  139:                                             <option> A6 [105x148 mm] </option>
  140:                                            </select> 
  141:    </td>
  142:  </tr>
  143: </table>
  144: </br> 
  145: <input type="submit" value="Submit your choice">
  146: ENDMENUOUT5
  147: }
  148: 
  149: 
  150: sub problem_choice_menu {
  151:     my $r = shift;
  152:     my $subdirtoprint = &Apache::lonnet::filelocation("",$ENV{'form.url'});
  153:     $subdirtoprint =~ s/\/[^\/]+$//;
  154:     my @list_of_files = ();
  155:     if ($ENV{'request.role'}=~m/^au\./ or $ENV{'request.role'}=~m/^ca\./) {
  156: 	$subdirtoprint =~ s/^[^~]*~(\w+)\//\/home\/$1\/public_html\//;
  157:     } else {
  158: 	$subdirtoprint =~ s/.*(\/res\/)/$1/;
  159:     }
  160:     my @content_directory = ();
  161:     if ($ENV{'request.role'}=~m/^au\./ or $ENV{'request.role'}=~m/^ca\./) {
  162: 	@content_directory = &Apache::lonnet::dirlist($subdirtoprint,$ENV{'user.domain'}, $ENV{'user.name'},'');
  163:     } else {
  164: 	@content_directory = &Apache::lonnet::dirlist($subdirtoprint);
  165:     }
  166:     for (my $iy=0;$iy<=$#content_directory;$iy++) {
  167: 	my @tempo_array = split(/&/,$content_directory[$iy]);
  168: 	if ($tempo_array[0] =~ m/^[^\.]+\.(problem|exam|quiz|assess|survey|form|library)$/) {
  169: 	    push(@list_of_files,$tempo_array[0]);
  170: 	}
  171:     }
  172:     $subdirtoprint =~ s/\/$//;
  173:     for (my $i=0;$i<=$#list_of_files;$i++) {
  174: 	$list_of_files[$i] = $subdirtoprint.'/'.$list_of_files[$i];
  175:     }
  176:     $r->print(<<ENDMENUOUT1);
  177: <input type="hidden" name="url" value="$ENV{'form.url'}">
  178: <input type="hidden" name="choice" value="$ENV{'form.choice'}">
  179: <input type="hidden" name="layout" value="$ENV{'form.layout'}">
  180: <input type="hidden" name="numberofcolumns" value="$ENV{'form.numberofcolumns'}">
  181: <h1>Mark problems which you want to print</h1>
  182: <script>
  183:     function checkall() {
  184: 	for (i=0; i<document.forms.printform.elements.length; i++) {
  185:             if 
  186:           (document.forms.printform.elements[i].name.indexOf('whattoprint')==0) {
  187: 	      document.forms.printform.elements[i].checked=true;
  188:             }
  189:         }
  190:     }
  191: 
  192: 
  193:     function uncheckall() {
  194: 	for (i=0; i<document.forms.printform.elements.length; i++) {
  195:             if 
  196:           (document.forms.printform.elements[i].name.indexOf('whattoprint')==0) {
  197: 	      document.forms.printform.elements[i].checked=false;
  198:             }
  199:         }
  200:     }
  201: </script>
  202: <input type=button onClick="checkall()" value="Check All">&nbsp;
  203: <input type=button onClick="uncheckall()" value="Uncheck">
  204: <p>
  205: ENDMENUOUT1
  206:     my $i;
  207:     foreach my $file (@list_of_files) {
  208: 	$r->print('<br /><input type=checkbox name="whattoprint'.$i.'" value="'.$file.'"> '.
  209:                   $file);
  210: 	$i++;
  211:     }
  212:     $r->print(<<ENDMENUOUT2);
  213: <br />
  214: <input type="hidden" name="numberofproblems" value="$i">
  215: <input type="hidden" name="phase" value="three">
  216: <input type="submit" value="Submit">
  217: ENDMENUOUT2
  218: }
  219: 
  220: 
  221: sub additional_class_menu {
  222:     my $r = shift;
  223:     $r->print(<<ENDMENUOUT1);
  224: <input type="hidden" name="url" value="$ENV{'form.url'}">
  225: <input type="hidden" name="choice" value="$ENV{'form.choice'}">
  226: <input type="hidden" name="layout" value="$ENV{'form.layout'}">
  227: <input type="hidden" name="numberofcolumns" value="$ENV{'form.numberofcolumns'}">
  228: <h1>Mark students which assignments you want to print</h1>
  229: ENDMENUOUT1
  230:     my %courselist=&Apache::lonnet::dump(
  231:                    'classlist',
  232: 		   $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
  233: 		   $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
  234:     my $now=time;
  235:     $r->print(<<ENDDISHEADER);
  236: <script>
  237:     function checkall() {
  238: 	for (i=0; i<document.forms.printform.elements.length; i++) {
  239:             if 
  240:           (document.forms.printform.elements[i].name.indexOf('whomtoprint')==0) {
  241: 	      document.forms.printform.elements[i].checked=true;
  242:             }
  243:         }
  244:     }
  245: 
  246:     function checksec() {
  247: 	for (i=0; i<document.forms.printform.elements.length; i++) {
  248:             if 
  249:           (document.forms.printform.elements[i].value.indexOf
  250:            (document.forms.printform.chksec.value)==0) {
  251: 	      document.forms.printform.elements[i].checked=true;
  252:             }
  253:         }
  254:     }
  255: 
  256:     function uncheckall() {
  257: 	for (i=0; i<document.forms.printform.elements.length; i++) {
  258:             if 
  259:           (document.forms.printform.elements[i].name.indexOf('whomtoprint')==0) {
  260: 	      document.forms.printform.elements[i].checked=false;
  261:             }
  262:         }
  263:     }
  264: </script>
  265: <input type=button onClick="checkall()" value="Check All">&nbsp;
  266: <input type=button onClick="checksec()" value="Check Section/Group">
  267: <input type=text size=5 name=chksec>&nbsp;
  268: <input type=button onClick="uncheckall()" value="Uncheck">
  269: <p>
  270: ENDDISHEADER
  271:     my $i = 0;
  272:     foreach (sort keys %courselist) {
  273:         my ($end,$start)=split(/\:/,$courselist{$_});
  274:         my $active=1;
  275:         if (($end) && ($now>$end)) { $active=0; }
  276:         if ($active) {
  277:            my ($sname,$sdom)=split(/\:/,$_);
  278:            my %reply=&Apache::lonnet::get('environment',
  279:               ['firstname','middlename','lastname','generation'],
  280:               $sdom,$sname);
  281:            my $section=&Apache::lonnet::usection
  282: 	       ($sdom,$sname,$ENV{'request.course.id'});
  283:            $r->print(
  284:         '<br /><input type=checkbox name="whomtoprint'.$i.'" value="'.$section.':'.$_.'"> '.
  285: 		      $reply{'firstname'}.' '. 
  286:                       $reply{'middlename'}.' '.
  287:                       $reply{'lastname'}.' '.
  288:                       $reply{'generation'}.
  289:                       ' ('.$_.') '.$section);
  290: 	   $i++;
  291:         } 
  292:     }
  293:     $r->print(<<ENDMENUOUT2);
  294: <br />
  295: <input type="hidden" name="numberofstudents" value="$i">
  296: <input type="hidden" name="phase" value="three">
  297: <input type="submit" value="Submit">
  298: ENDMENUOUT2
  299: }
  300: 
  301: 
  302: sub additional_print_menu { 
  303:     my $r = shift;
  304:     my $what_to_print = '';
  305:     for (my $i=0; $i<$ENV{'form.numberofstudents'};$i++) {
  306: 	$what_to_print .= '<input type="hidden" name="whomtoprint'.$i.'" value="'.$ENV{'form.whomtoprint'.$i}.'">';
  307:     }
  308:     for (my $i=0; $i<$ENV{'form.numberofproblems'};$i++) {
  309: 	$what_to_print .= '<input type="hidden" name="whattoprint'.$i.'" value="'.$ENV{'form.whattoprint'.$i}.'">';
  310:     }
  311:     $r->print(<<ENDMENUOUT);
  312:     $what_to_print
  313: <input type="hidden" name="url" value="$ENV{'form.url'}">
  314: <input type="hidden" name="choice" value="$ENV{'form.choice'}">
  315: <input type="hidden" name="layout" value="$ENV{'form.layout'}">
  316: <input type="hidden" name="numberofstudents" value="$ENV{'form.numberofstudents'}">
  317: <input type="hidden" name="numberofproblems" value="$ENV{'form.numberofproblems'}">
  318: <input type="hidden" name="numberofcolumns" value="$ENV{'form.numberofcolumns'}">
  319: Define page layout parameters: <br />
  320: <b>Width</b>: <input type="text" name="width" width="8" value="9cm"> <br />
  321: <b>Height</b>: <input type="text" name="height" width="8" value="25.9cm"> <br />
  322: <b>Left margin</b>: <input type="text" name="leftmargin" width="8" value="-0.57in"> <br />
  323: <input type="hidden" name="phase" value="four">
  324: <input type="submit" value="Submit">
  325: </form>
  326: </body>
  327: </html>
  328: ENDMENUOUT
  329: }
  330: 
  331: 
  332: sub output_data {
  333:     my $r = shift;
  334:     $r->print(<<ENDPART);
  335: <html>
  336: <head>
  337: <title>LON-CAPA output for printing</title>
  338: </head>
  339: <body bgcolor="FFFFFF">
  340: <hr>
  341: ENDPART
  342: 
  343:     my $choice = $ENV{'form.choice'};
  344:     my $layout = $ENV{'form.layout'};
  345:     my $numberofcolumns = $ENV{'form.numberofcolumns'};               
  346:     my $laystyle = 'book';
  347:     my $result = '';
  348:     my $number_of_columns = 1; #used only for pages to determine the width of the cell
  349:     my $selectionmade = '';
  350:  
  351:     if ($choice eq 'Standard LaTeX output for current document') {
  352:       #-- single document - problem, page, html, xml  
  353:       $selectionmade = 1;
  354:       my %moreenv;
  355:       $moreenv{'form.grade_target'}='tex';
  356:       if ($ENV{'request.role'}=~m/^au\./ or $ENV{'request.role'}=~m/^ca\./) {
  357: 	  $ENV{'form.url'}=~s/http:\/\/[^\/]+//;
  358:       }
  359:       $moreenv{'request.filename'}=$ENV{'form.url'};
  360:       &Apache::lonnet::appenv(%moreenv);
  361:       my $texversion=&Apache::lonnet::ssi($ENV{'form.url'});
  362:       &Apache::lonnet::delenv('form.grade_target');
  363:       $result .= $texversion;
  364:       if ($ENV{'form.url'}=~m/\.page\s*$/) {
  365: 	  ($result,$number_of_columns) = &page_cleanup($result);
  366:       }
  367:     } elsif ($choice eq 'Standard LaTeX output for the primary sequence' or 
  368:              $choice eq 'Standard LaTeX output for whole primary sequence') {
  369:       #-- minimal sequence to which the current document belongs
  370:         #-- where is the primary sequence containing file?
  371: 	my $symbolic = &Apache::lonnet::symbread($ENV{'form.url'});
  372: 	$symbolic =~ m/([^_]+)_/;
  373: 	my $primary_sequence = '/res/'.$1;    
  374: 	my @master_seq = &coming_from_hash($primary_sequence);
  375:         #-- produce an output string
  376: 	my $flag_latex_header_remove = 'NO';
  377: 	my $flag_page_in_sequence = 'NO';
  378: 	for (my $i=0;$i<=$#master_seq;$i++) {
  379:             my ($urlp,$symb) = split /&&/, $master_seq[$i];		
  380: 	    if ($choice eq 'Standard LaTeX output for the primary sequence') {
  381: 		$selectionmade = 2;
  382:  		if ($urlp =~ m/\.(problem|exam|quiz|assess|survey|form|library)/) {
  383: 		    my %moreenv;
  384: 		    $moreenv{'form.grade_target'}='tex';
  385: 		    &Apache::lonnet::appenv(%moreenv);
  386: 		    my $texversion=&Apache::lonnet::ssi($urlp,('symb'=>$symb));
  387: 		    &Apache::lonnet::delenv('form.grade_target');
  388: 		    if ($flag_latex_header_remove ne 'NO') {
  389: 			$texversion = &latex_header_footer_remove($texversion);
  390: 		    } else {
  391: 			$texversion =~ s/\\end{document}//;
  392: 		    }
  393: 		    $result .= $texversion;        
  394: 		    $flag_latex_header_remove = 'YES';
  395: 		}
  396: 	    } elsif ($urlp =~ /\S+/) {
  397: 		$selectionmade = 3;
  398: 		my %moreenv;
  399: 		$moreenv{'form.grade_target'}='tex';
  400: 		&Apache::lonnet::appenv(%moreenv);
  401: 		my $texversion=&Apache::lonnet::ssi($urlp,('symb'=>$symb));
  402: 		&Apache::lonnet::delenv('form.grade_target');
  403: 		if ($urlp =~ m/\.page/) {
  404: 		    ($texversion,my $number_of_columns_page) = &page_cleanup($texversion);
  405: 		    if ($number_of_columns_page > $number_of_columns) {$number_of_columns=$number_of_columns_page;} 
  406: 		    $texversion =~ s/\\end{document}\d*/\\end{document}/;
  407: 		    $flag_page_in_sequence = 'YES';
  408: 		} 
  409: 		if ($flag_latex_header_remove ne 'NO') {
  410: 		    $texversion = &latex_header_footer_remove($texversion);
  411: 		} else {
  412: 		    $texversion =~ s/\\end{document}//;
  413: 		}
  414: 		$result .= $texversion;         
  415: 		$flag_latex_header_remove = 'YES';   
  416: 	    }
  417: 	}		
  418: 	if ($flag_page_in_sequence eq 'YES') {$result =~ s/\\usepackage{calc}/\\usepackage{calc}\\usepackage{longtable}/;}	
  419: 	$result .= '\end{document}';
  420:     }  elsif ($choice eq 'Standard LaTeX output for the top level sequence') {
  421:         # where is the main sequence of the course?
  422: 	$selectionmade = 4;
  423: 	my $main_seq = '/res/'.$ENV{'request.course.uri'};
  424: 	my @file_seq = &coming_from_hash($main_seq); 
  425:         #-- produce an output string
  426: 	for (my $i=0;$i<=$#file_seq;$i++) {
  427:             my ($urlp,$symb) = split /&&/, $file_seq[$i];
  428: 	    $urlp=~s/\/home\/httpd\/html//;	    
  429:             if ($urlp=~m/\.(problem|exam|quiz|assess|survey|form|library)/) {
  430: 		my %moreenv;
  431: 		$moreenv{'form.grade_target'}='tex';
  432: 		&Apache::lonnet::appenv(%moreenv);
  433: 		my $texversion=&Apache::lonnet::ssi($urlp);
  434: 		&Apache::lonnet::delenv('form.grade_target');
  435: 		$result .= $texversion;        
  436: 	    }
  437: 	}	    
  438: 	$result = &additional_cleanup($result);
  439:     } elsif ($choice eq 'All class print') { 
  440:     #-- prints assignments for whole class or for selected students  
  441: 	$selectionmade = 5;
  442:         my (@students,@st_output) = ((),());
  443: 	for (my $i=0; $i<$ENV{'form.numberofstudents'};$i++) {
  444: 	    if ($ENV{'form.whomtoprint'.$i}=~/:/) {
  445: 		push @students,$ENV{'form.whomtoprint'.$i};
  446: 	    }
  447: 	}
  448: 	#where is the primary sequence containing current resource (the same for all students)?
  449: 	my $symbolic = &Apache::lonnet::symbread($ENV{'form.url'});
  450: 	$symbolic =~ m/([^_]+)_/;
  451: 	my $primary_sequence = '/res/'.$1;
  452: 	my @master_seq = &coming_from_hash($primary_sequence); 
  453:        #loop over students
  454: 	foreach my $person (@students) {
  455: 	    my $current_output = ''; 
  456: 	    my ($usersection,$username,$userdomain) = split /:/,$person;
  457: 	    my $fullname = &Apache::grades::get_fullname($username,$userdomain);
  458:             #goes through all resources, checks if they are available for current student, and produces output 
  459: 	    foreach my $curresline (@master_seq)  {
  460: 		my ($curres,$symb) = split /&&/, $curresline;
  461: 		$curres =~ s/^"//;
  462: 		$curres =~ s/"$//;
  463:                 if ($curres=~/\w+/) {
  464: 		    my ($map,$id,$res_url) = split(/___/,$symb);
  465: 		    if (&Apache::lonnet::allowed('bre',$res_url)) {
  466: 			my $rendered = &Apache::loncommon::get_student_view($symb,$username,$userdomain,
  467:                                                                         $ENV{'request.course.id'},'tex');
  468: 			$current_output .= $rendered;
  469: 		    }
  470: 		}
  471: 	    }
  472: 	    $current_output =~ s/\\begin{document}/\\begin{document}\\noindent\\parbox{\\minipagewidth}{\\noindent\\fbox{\\textbf{$fullname}}\\hskip 1\.4in } \\vskip 5 mm /;
  473: 	    $result .= $current_output;
  474: 	}
  475: 	$result = &additional_cleanup($result);
  476:     } elsif ($choice eq 'Subdirectory print') {      
  477:     #prints selected problems from the subdirectory 
  478: 	$selectionmade = 6;
  479:         my @list_of_files = ();
  480: 	for (my $i=0; $i<$ENV{'form.numberofproblems'};$i++) {
  481: 	    if ($ENV{'form.whattoprint'.$i}=~/^\//) {
  482: 		push @list_of_files,$ENV{'form.whattoprint'.$i};
  483: 	    }
  484: 	}
  485: 	for (my $i=0;$i<=$#list_of_files;$i++) {
  486: 	    my $urlp = $list_of_files[$i];
  487: 	    if ($urlp=~/\//) {
  488: 		my %moreenv;
  489: 		$moreenv{'form.grade_target'}='tex';
  490: 		&Apache::lonnet::appenv(%moreenv);
  491: 		if ($ENV{'request.role'}=~m/^au\./ or $ENV{'request.role'}=~m/^ca\./) { 
  492: 		    $urlp =~ s/\/home\/([^\/]*)\/public_html/\/~$1/; 
  493: 		}
  494: 		my $texversion=&Apache::lonnet::ssi($urlp);
  495: 		&Apache::lonnet::delenv('form.grade_target');
  496: 		$texversion =~ s/(\\begin{document})/$1 {\\tiny\\begin{verbatim}$urlp\\end{verbatim}}/;
  497: 		$result .= $texversion;
  498: 	    }   
  499: 	}
  500: 	$result = &additional_cleanup($result);       	
  501:     }
  502: #-- corrections for the different page formats
  503:     if ($layout eq 'CBI' and $numberofcolumns eq '1') {
  504: 	$result =~ s/\\begin{document}/\\setlength{\\oddsidemargin}{-40pt}\\setlength{\\evensidemargin}{-60pt}\\setlength{\\topmargin}{200pt}\\setlength{\\textwidth}{4\.4in}\\setlength{\\textheight}{6\.8in}\\setlength{\\parindent}{20pt}\\setlength{\\marginparwidth}{90pt}\\setlength{\\textfloatsep}{8pt plus 2\.0pt minus 4\.0pt} \\begin{document}/;
  505: 	$result =~ s/\$number_of_columns/$number_of_columns/g;
  506:         $laystyle = 'album';
  507:     } elsif ($layout eq 'CBI' and $numberofcolumns eq '2') {
  508: 	$result =~ s/\\begin{document}/\\setlength{\\oddsidemargin}{-40pt}\\setlength{\\evensidemargin}{-60pt}\\setlength{\\topmargin}{200pt}\\setlength{\\textwidth}{4\.4in}\\setlength{\\textheight}{6\.8in}\\setlength{\\parindent}{20pt}\\setlength{\\marginparwidth}{90pt}\\setlength{\\textfloatsep}{8pt plus 2\.0pt minus 4\.0pt} \\begin{document}/;
  509: 	$result =~ s/\$number_of_columns/$number_of_columns/g;
  510:         $laystyle = 'album';
  511:     } elsif ($layout eq 'CAPA') {
  512:         my $courseidinfo = $ENV{'request.role'};
  513:         $_ = $courseidinfo;
  514:         m/.*\/(.*)/;
  515:         $courseidinfo = $ENV{'course.physnet_'.$1.'.description'};
  516: 	$result =~ s/\\documentclass\[letterpaper\]{article}/\\documentclass{article}/;
  517: 	if ($choice ne 'All class print') { 
  518: 	    $result =~ s/\\begin{document}/\\textheight 25\.9cm\\oddsidemargin = -0\.57in\\evensidemargin = -0\.57in\\textwidth= 9cm\\newlength{\\minipagewidth}\\setlength{\\minipagewidth}{\\textwidth\/$number_of_columns-0\.2cm}\\renewcommand{\\ref}{\\keephidden\}\\begin{document}\\voffset=-1\.8cm\\setcounter{page}{1}\\parbox{\\minipagewidth}{\\noindent\\fbox{\\textbf{$ENV{'environment.firstname'} $ENV{'environment.lastname'}}}\\hskip 1\.4in $courseidinfo} \\vskip 5 mm /;
  519:         } else {	
  520: 	    $result =~ s/\\begin{document}/\\textheight 25\.9cm\\oddsidemargin = -0\.57in\\evensidemargin = -0\.57in\\textwidth= 9cm\\newlength{\\minipagewidth}\\setlength{\\minipagewidth}{\\textwidth\/$number_of_columns-0\.2cm}\\renewcommand{\\ref}{\\keephidden\}\\begin{document}\\voffset=-1\.8cm\\setcounter{page}{1}  \\vskip 5 mm /;
  521: 	}
  522: 	$result =~ s/\\includegraphics{/\\includegraphics\[width=9\.0 cm\]{/g;
  523: #	$result =~ s/\\includegraphics{/\\includegraphics\[width=\\textwidth\]{/g;
  524: #	$result =~ s/(\\end{document})/\\newline\\noindent\\makebox\[9.0cm\]\[b\]{\\hrulefill}\\newline\\noindent\\tiny Dept\. of Physics and Astronomy, MSU\\makebox\[1.5cm\]\[b\]{\\hfill}LON-CAPA\\copyright MSU GNU\/GPL $1/;
  525: 	$result =~ s/(\\end{document})/\\newline\\noindent\\makebox\[\\textwidth\/$number_of_columns\]\[b\]{\\hrulefill}\\newline\\noindent\\tiny \\makebox\[1.5cm\]\[b\]{\\hfill}LON-CAPA\\copyright Michigan State University Board of Trustees $1/;
  526: #        $result =~ s/(\\end{longtable}\s*)(\\newline\\noindent\\makebox\[9\.0cm\]\[b\]{\\hrulefill})/$2$1/g;
  527:         $result =~ s/(\\end{longtable}\s*)(\\newline\\noindent\\makebox\[\\textwidth\/$number_of_columns\]\[b\]{\\hrulefill})/$2$1/g;
  528:         $result =~ s/(\\end{longtable}\s*)\\newline/$1/g;
  529: 	$result =~ s/\$number_of_columns/$number_of_columns/g;
  530:     }
  531:     #changes page's parameters for the one column output 
  532:     if ($ENV{'form.numberofcolumns'} == 1) {
  533: 	$result =~ s/\\textwidth= 9cm/\\textwidth= $ENV{'form.width'}/;
  534: 	$result =~ s/\\textheight 25\.9cm/\\textheight $ENV{'form.height'}/;
  535: 	$result =~ s/\\evensidemargin = -0\.57in/\\evensidemargin= $ENV{'form.leftmargin'}/;
  536: 	$result =~ s/\\oddsidemargin = -0\.57in/\\oddsidemargin= $ENV{'form.leftmargin'}/;
  537:     }
  538: #-- LaTeX corrections     
  539:     my $first_comment = index($result,'<!--',0);
  540:     while ($first_comment != -1) {
  541: 	my $end_comment = index($result,'-->',$first_comment);
  542: 	substr($result,$first_comment,$end_comment-$first_comment+3) = '';
  543: 	$first_comment = index($result,'<!--',$first_comment);
  544:     }
  545:     $result =~ s/^\s+$//gm; #remove empty lines
  546:     $result =~ s/(\s)+/$1/g; #removes more than one empty space
  547:     $result =~ s/\\\\\s*\\vskip/\\vskip/gm;
  548:     $result =~ s/\\\\\s*\\noindent\s*(\\\\)+/\\\\\\noindent /g;
  549:     $result =~ s/{\\par }\s*\\\\/\\\\/gm;
  550: 	$result =~ s/\\\\\s+\[/ \[/g;
  551:     $result =~ s/&#952;/\$\\theta\$/g; #converts theta from html into tex
  552:     $result =~ s/\b__+\b/\\makebox\[1 cm\]\[b\]{\\hrulefill}/g;
  553:     #conversion of html characters to LaTeX equivalents
  554:     if ($result =~ m/&(\w+|#\d+);/) {
  555: 	$result = &character_chart($result);
  556:     }
  557:     $result =~ s/(\\end{tabular})\s*\\vskip 0 mm/$1/g;
  558:     $result =~ s/(\\begin{enumerate})\s*\\noindent/$1/g;
  559: #-- writing .tex file in prtspool 
  560:     my $temp_file;
  561:     my $filename = "/home/httpd/prtspool/$ENV{'user.name'}_$ENV{'user.domain'}_printout_".time."_".rand(10000000).".tex";
  562:     unless ($temp_file = Apache::File->new('>'.$filename)) {
  563: 	$r->log_error("Couldn't open $filename for output $!");
  564: 	return SERVER_ERROR; 
  565:     } 
  566:     print $temp_file $result;
  567: $r->print(<<FINALEND);
  568: <meta http-equiv="Refresh" content="0; url=/cgi-bin/printout.pl?$filename&$laystyle&$numberofcolumns&$selectionmade">
  569: </body>
  570: </html>
  571: FINALEND
  572: }
  573: 
  574: 
  575: sub coming_from_hash {
  576: 
  577:     my $mainsequence = shift;
  578:     my @resourcelist = ();
  579:     my $mapid = $hash{'map_pc_'.$mainsequence};
  580:     my $mapstart = $hash{'map_start_'.$mainsequence};
  581:     my $mapfinish = $hash{'map_finish_'.$mainsequence};
  582:     my $symb = &Apache::lonnet::symbread($hash{'src_'.$mapstart});
  583:     my ($presymb) = split(/___/,$symb);
  584:     $presymb = $presymb.'___';
  585:     my $current_resource = $mapstart;
  586:     while ($current_resource ne $mapfinish) {
  587: 	if (not $hash{'src_'.$current_resource}=~/\.sequence$/) {
  588: 	    my $rid = $hash{'ids_'.$hash{'src_'.$current_resource}};
  589:             if ($rid=~/,/) {
  590: 		my @rid = split /,/, $rid;
  591: 		foreach my $rid_element (@rid) {
  592: 		    if ($rid_element =~ m/^$mapid\.(\d*)/) {
  593: 			$rid = $1; 
  594: 			last;
  595: 		    }
  596: 		}
  597: 	    } else {
  598: 		$rid =~ m/^$mapid\.(\d*)/;
  599:                 $rid = $1;  
  600: 	    }
  601: 	    $hash{'src_'.$current_resource} =~ m/\/res\/(.*)$/;
  602: 	    $symb = $presymb.$rid.'___'.$1;
  603: 	    push @resourcelist,$hash{'src_'.$current_resource}.'&&'.$symb;
  604: 	} else {
  605: 	    push @resourcelist,&coming_from_hash($hash{'src_'.$current_resource});
  606: 	}
  607: 	$current_resource = $hash{'goesto_'.$hash{'to_'.$current_resource}};
  608:     }
  609:     #needs if final resource in the map (type="finish") contains something
  610:     if (not $hash{'src_'.$current_resource}=~/\.sequence$/) {
  611: 		    my $rid = $hash{'ids_'.$hash{'src_'.$current_resource}};
  612:             if ($rid=~/,/) {
  613: 		my @rid = split /,/, $rid;
  614: 		foreach my $rid_element (@rid) {
  615: 		    if ($rid_element =~ m/^$mapid\.(\d*)/) {
  616: 			$rid = $1; 
  617: 			last;
  618: 		    }
  619: 		}
  620: 	    } else {
  621: 		$rid =~ m/^$mapid\.(\d*)/;
  622:                 $rid = $1;  
  623: 	    }
  624: 	    $hash{'src_'.$current_resource} =~ m/\/res\/(.*)$/;
  625: 	    $symb = $presymb.$rid.'___'.$1;
  626: 	push @resourcelist,$hash{'src_'.$current_resource}.'&&'.$symb;
  627:     } else {
  628: 	push @resourcelist,&coming_from_hash($hash{'src_'.$current_resource});
  629:     }
  630:     return @resourcelist;
  631: }
  632: 
  633: 
  634: sub latex_header_footer_remove {
  635:     my $text = shift;
  636:     $text =~ s/\\end{document}//;
  637:     $text =~ s/\\documentclass([^&]*)\\begin{document}//;
  638:     return $text;
  639: }
  640: 
  641: 
  642: sub character_chart {
  643:     my $result = shift;	
  644:     $result =~ s/&#0?0?7;//g;
  645:     $result =~ s/&#0?0?9;//g;
  646:     $result =~ s/&#0?10;//g;
  647:     $result =~ s/&#0?13;//g;
  648:     $result =~ s/&#0?32;/ /g;
  649:     $result =~ s/&#0?33;/!/g;
  650:     $result =~ s/&#0?34;/"/g;
  651:     $result =~ s/&quot;/"/g; 
  652:     $result =~ s/&#0?35;/\\#/g;
  653: #    $result =~ s/&#0?36;/\\\$/g;
  654:     $result =~ s/&#0?37;/\\%/g; 
  655:     $result =~ s/&#0?38;/\\&/g; 
  656:     $result =~ s/&amp;/\\&/g;
  657:     $result =~ s/&#0?39;/'/g;
  658:     $result =~ s/&#0?40;/(/g;
  659:     $result =~ s/&#0?41;/)/g;
  660:     $result =~ s/&#0?42;/\*/g;
  661:     $result =~ s/&#0?43;/\+/g;
  662:     $result =~ s/&#0?44;/,/g;
  663:     $result =~ s/&#0?45;/-/g;
  664:     $result =~ s/&#0?46;/\./g;
  665:     $result =~ s/&#0?47;/\//g;
  666:     $result =~ s/&#0?48;/0/g;
  667:     $result =~ s/&#0?49;/1/g;
  668:     $result =~ s/&#0?50;/2/g;
  669:     $result =~ s/&#0?51;/3/g;
  670:     $result =~ s/&#0?52;/4/g;
  671:     $result =~ s/&#0?53;/5/g;
  672:     $result =~ s/&#0?54;/6/g;
  673:     $result =~ s/&#0?55;/7/g;
  674:     $result =~ s/&#0?56;/8/g;
  675:     $result =~ s/&#0?57;/9/g;
  676:     $result =~ s/&#0?58;/:/g;
  677:     $result =~ s/&#0?59;/;/g;
  678:     $result =~ s/&#0?60;/\$<\$/g;
  679:     $result =~ s/&lt;/\$<\$/g;
  680:     $result =~ s/&#0?61;/\$=\$/g;
  681:     $result =~ s/&#0?62;/\$>\$/g;
  682:     $result =~ s/&gt;/\$>\$/g;
  683:     $result =~ s/&#0?63;/?/g;
  684: #    $result =~ s/&#0?64;//g;
  685:     $result =~ s/&#0?65;/A/g;
  686:     $result =~ s/&#0?66;/B/g;
  687:     $result =~ s/&#0?67;/C/g;
  688:     $result =~ s/&#0?68;/D/g;
  689:     $result =~ s/&#0?69;/E/g;
  690:     $result =~ s/&#0?70;/F/g;
  691:     $result =~ s/&#0?71;/G/g;
  692:     $result =~ s/&#0?72;/H/g;
  693:     $result =~ s/&#0?73;/I/g;
  694:     $result =~ s/&#0?74;/J/g;
  695:     $result =~ s/&#0?75;/K/g;
  696:     $result =~ s/&#0?76;/L/g;
  697:     $result =~ s/&#0?77;/M/g;
  698:     $result =~ s/&#0?78;/N/g;
  699:     $result =~ s/&#0?79;/O/g;
  700:     $result =~ s/&#0?80;/P/g;
  701:     $result =~ s/&#0?81;/Q/g;
  702:     $result =~ s/&#0?82;/R/g;
  703:     $result =~ s/&#0?83;/S/g;
  704:     $result =~ s/&#0?84;/T/g;
  705:     $result =~ s/&#0?85;/U/g;
  706:     $result =~ s/&#0?86;/V/g;
  707:     $result =~ s/&#0?87;/W/g;
  708:     $result =~ s/&#0?88;/X/g;
  709:     $result =~ s/&#0?89;/Y/g;
  710:     $result =~ s/&#0?90;/Z/g;
  711:     $result =~ s/&#0?91;/[/g;
  712:     $result =~ s/&#0?92;/\\/g;
  713:     $result =~ s/&#0?93;/]/g;
  714: #    $result =~ s/&#0?94;//g;
  715: #    $result =~ s/&#0?95;//g;
  716:     $result =~ s/&#0?96;/`/g;
  717:     $result =~ s/&#0?97;/a/g;
  718:     $result =~ s/&#0?98;/b/g;
  719:     $result =~ s/&#0?99;/c/g;
  720:     $result =~ s/&#100;/d/g;
  721:     $result =~ s/&#101;/e/g;
  722:     $result =~ s/&#102;/f/g;
  723:     $result =~ s/&#103;/g/g;
  724:     $result =~ s/&#104;/h/g;
  725:     $result =~ s/&#105;/i/g;
  726:     $result =~ s/&#106;/j/g;
  727:     $result =~ s/&#107;/k/g;
  728:     $result =~ s/&#108;/l/g;
  729:     $result =~ s/&#109;/m/g;
  730:     $result =~ s/&#110;/n/g;
  731:     $result =~ s/&#111;/o/g;
  732:     $result =~ s/&#112;/p/g;
  733:     $result =~ s/&#113;/q/g;
  734:     $result =~ s/&#114;/r/g;
  735:     $result =~ s/&#115;/s/g;
  736:     $result =~ s/&#116;/t/g;
  737:     $result =~ s/&#117;/u/g;
  738:     $result =~ s/&#118;/v/g;
  739:     $result =~ s/&#119;/w/g;
  740:     $result =~ s/&#120;/x/g;
  741:     $result =~ s/&#121;/y/g;
  742:     $result =~ s/&#122;/z/g;
  743:     $result =~ s/&#123;/\\{/g;
  744:     $result =~ s/&#124;/\|/g;
  745:     $result =~ s/&#125;/\\}/g;
  746:     $result =~ s/&#126;/\~/g;
  747:     $result =~ s/&#130;/,/g;
  748: #    $result =~ s/&#131;//g;
  749:     $result =~ s/&#132;/''/g;
  750:     $result =~ s/&#133;/\$\\ldots\$/g;
  751:     $result =~ s/&#134;/\$\\dagger\$/g;
  752:     $result =~ s/&#135;/\$\\ddagger\$/g;
  753: #    $result =~ s/&#136;//g;
  754: #    $result =~ s/&#137;//g;
  755: #    $result =~ s/&#138;//g;
  756:     $result =~ s/&#139;/\$<\$/g;
  757: #    $result =~ s/&#140;//g;
  758:     $result =~ s/&#145;/`/g;
  759:     $result =~ s/&#146;/'/g;
  760:     $result =~ s/&#147;/``/g;
  761:     $result =~ s/&#148;/''/g;
  762:     $result =~ s/&#149;/\$\\bullet\$/g;
  763: #    $result =~ s/&#150;//g;
  764: #    $result =~ s/&#151;//g;
  765:     $result =~ s/&#152;/~/g;
  766: #    $result =~ s/&#153;//g;
  767: #    $result =~ s/&#154;//g;
  768:     $result =~ s/&#155;/\$>\$/g;
  769:     $result =~ s/&#156;/\\{\\oe\\}/g;
  770:     $result =~ s/&#159;/\\"\\{Y\\}/g;
  771:     $result =~ s/&#160;//g;
  772:     $result =~ s/&nbsp;//g;
  773:     $result =~ s/&#161;/!`/g;
  774:     $result =~ s/&iexcl;/!`/g; #`
  775: #    $result =~ s/&#162;//g;
  776: #    $result =~ s/&cent;//g;
  777:     $result =~ s/&#163;/\\pounds/g; 
  778:     $result =~ s/&pound;/\\pounds/g;
  779: #    $result =~ s/&#164;//g;
  780: #    $result =~ s/&curren;//g;
  781: #    $result =~ s/&#165;//g;
  782: #    $result =~ s/&yen;//g;
  783: #    $result =~ s/&#166;//g;
  784: #    $result =~ s/&brvbar;//g;
  785: #    $result =~ s/&#167;//g;
  786: #    $result =~ s/&sect;//g;
  787: #    $result =~ s/&#168;//g;
  788: #    $result =~ s/&uml;//g;
  789:     $result =~ s/&#169;/\\copyright/g;
  790:     $result =~ s/&copy;/\\copyright/g;
  791: #    $result =~ s/&#170;//g;
  792: #    $result =~ s/&ordf;//g;
  793: #    $result =~ s/&#171;//g;
  794: #    $result =~ s/&laquo;//g;
  795:     $result =~ s/&#172;/\$\\neg\$/g;
  796:     $result =~ s/&not;/\$\\neg\$/g;
  797: #    $result =~ s/&#173;//g;
  798: #    $result =~ s/&shy;//g;
  799: #    $result =~ s/&#174;//g;
  800: #    $result =~ s/&reg;//g;
  801: #    $result =~ s/&#175;//g;
  802: #    $result =~ s/&macr;//g;
  803:     $result =~ s/&#176;/\$^{\\circ}\$/g;
  804:     $result =~ s/&deg;/\$^{\\circ}\$/g;
  805:     $result =~ s/&#177;/\$\\pm\$/g;
  806:     $result =~ s/&plusmn;/\$\\pm\$/g;
  807:     $result =~ s/&#178;/\$^2\$/g;
  808:     $result =~ s/&sup2;/\$^2\$/g;
  809:     $result =~ s/&#179;/\$^3\$/g;
  810:     $result =~ s/&sup3;/\$^3\$/g;
  811: #    $result =~ s/&#180;//g;
  812: #    $result =~ s/&acute;//g;
  813:     $result =~ s/&#181;/\$\\mu\$/g;
  814:     $result =~ s/&micro;/\$\\mu\$/g;
  815:     $result =~ s/&#182;/\\P/g;
  816:     $result =~ s/&para;/\\P/g;
  817:     $result =~ s/&#183;/\$\\cdot\$/g;
  818:     $result =~ s/&middot;/\$\\cdot\$/g;
  819: #    $result =~ s/&#184;//g;
  820: #    $result =~ s/&cedil;//g;
  821:     $result =~ s/&#185;/\$^1\$/g;
  822:     $result =~ s/&sup1;/\$^1\$/g;
  823: #    $result =~ s/&#186;//g;
  824: #    $result =~ s/&ordm;//g;
  825: #    $result =~ s/&#187;//g;
  826: #    $result =~ s/&raquo;//g;
  827: #    $result =~ s/&#188;//g;
  828: #    $result =~ s/&frac14;//g;
  829: #    $result =~ s/&#189;//g;
  830: #    $result =~ s/&frac12;//g;
  831: #    $result =~ s/&#190;//g;
  832: #    $result =~ s/&frac34;//g;
  833:     $result =~ s/&#191;/?`/g;
  834:     $result =~ s/&iquest;/?`/g; 
  835:     $result =~ s/&#192;/\\`{A}/g;
  836:     $result =~ s/&Agrave;/\\`{A}/g; 
  837:     $result =~ s/&#193;/\\'{A}/g; 
  838:     $result =~ s/&Aacute;/\\'{A}/g; 
  839:     $result =~ s/&#194;/\\^{A}/g;
  840:     $result =~ s/&Acirc;/\\^{A}/g;
  841:     $result =~ s/&#195;/\\~{A}/g;
  842:     $result =~ s/&Atilde;/\\~{A}/g;
  843:     $result =~ s/&#196;/\\"{A}/g; 
  844:     $result =~ s/&Auml;/\\"{A}/g; 
  845:     $result =~ s/&#197;/{\\AA}/g;
  846:     $result =~ s/&Aring;/{\\AA}/g;
  847:     $result =~ s/&#198;/{\\AE}/g;
  848:     $result =~ s/&AElig;/{\\AE}/g;
  849: #    $result =~ s/&#199;//g;
  850: #    $result =~ s/&Ccedil;//g;
  851:     $result =~ s/&#200;/\\`{E}/g;
  852:     $result =~ s/&Egrave;/\\`{E}/g;
  853:     $result =~ s/&#201;/\\'{E}/g;
  854:     $result =~ s/&Eacute;/\\'{E}/g;
  855:     $result =~ s/&#202;/\\^{E}/g;
  856:     $result =~ s/&Ecirc;/\\^{E}/g;
  857:     $result =~ s/&#203;/\\`{E}/g;
  858:     $result =~ s/&Euml;/\\`{E}/g;
  859:     $result =~ s/&#204;/\\`{I}/g;
  860:     $result =~ s/&Igrave;/\\`{I}/g; 
  861:     $result =~ s/&#205;/\\'{I}/g; 
  862:     $result =~ s/&Iacute;/\\'{I}/g; 
  863:     $result =~ s/&#206;/\\^{I}/g;
  864:     $result =~ s/&Icirc;/\\^{I}/g;
  865:     $result =~ s/&#207;/\\"{I}/g; 
  866:     $result =~ s/&Iuml;/\\"{I}/g; 
  867: #    $result =~ s/&#208;//g;
  868: #    $result =~ s/&ETH;//g;
  869:     $result =~ s/&#209;/\\~{N}/g;
  870:     $result =~ s/&Ntilde;/\\~{N}/g;
  871:     $result =~ s/&#210;/\\`{O}/g;
  872:     $result =~ s/&Ograve;/\\`{O}/g; 
  873:     $result =~ s/&#211;/\\'{O}/g;
  874:     $result =~ s/&Oacute;/\\'{O}/g; 
  875:     $result =~ s/&#212;/\\^{O}/g;
  876:     $result =~ s/&Ocirc;/\\^{O}/g;
  877:     $result =~ s/&#213;/\\~{O}/g;
  878:     $result =~ s/&Otilde;/\\~{O}/g;
  879:     $result =~ s/&#214;/\\"{O}/g;
  880:     $result =~ s/&Ouml;/\\"{O}/g; 
  881:     $result =~ s/&#215;/\$\\times\$/g;
  882:     $result =~ s/&times;/\$\\times\$/g;
  883:     $result =~ s/&#216;/{\\O}/g;
  884:     $result =~ s/&Oslash;/{\\O}/g;
  885:     $result =~ s/&#217;/\\`{U}/g;
  886:     $result =~ s/&Ugrave;/\\`{U}/g;
  887:     $result =~ s/&#218;/\\'{U}/g;
  888:     $result =~ s/&Uacute;/\\'{U}/g;
  889:     $result =~ s/&#219;/\\^{U}/g;
  890:     $result =~ s/&Ucirc;/\\^{U}/g;
  891:     $result =~ s/&#220;/\\"{U}/g;
  892:     $result =~ s/&Uuml;/\\"{U}/g;
  893:     $result =~ s/&#221;/\\'{Y}/g;
  894:     $result =~ s/&Yacute;/\\'{Y}/g;
  895: #    $result =~ s/&#222;//g;
  896: #    $result =~ s/&THORN;//g;
  897: #    $result =~ s/&#223;//g;
  898: #    $result =~ s/&szlig;//g;
  899:     $result =~ s/&#224;/\\`{a}/g;
  900:     $result =~ s/&agrave;/\\`{a}/g;
  901:     $result =~ s/&#225;/\\'{a}/g;
  902:     $result =~ s/&aacute;/\\'{a}/g;
  903:     $result =~ s/&#226;/\\^{a}/g;
  904:     $result =~ s/&acirc;/\\^{a}/g;
  905:     $result =~ s/&#227;/\\~{a}/g;
  906:     $result =~ s/&atilde;/\\~{a}/g;
  907:     $result =~ s/&#228;/\\"{a}/g;
  908:     $result =~ s/&auml;/\\"{a}/g;
  909:     $result =~ s/&#229;/{\\aa}/g;
  910:     $result =~ s/&aring;/{\\aa}/g;
  911:     $result =~ s/&#230;/{\\ae}/g;
  912:     $result =~ s/&aelig;/{\\ae}/g;
  913: #    $result =~ s/&#231;//g;
  914: #    $result =~ s/&ccedil;//g;
  915:     $result =~ s/&#232;/\\`{e}/g;
  916:     $result =~ s/&egrave;/\\`{e}/g;
  917:     $result =~ s/&#233;/\\'{e}/g;
  918:     $result =~ s/&eacute;/\\'{e}/g;
  919:     $result =~ s/&#234;/\\^{e}/g;
  920:     $result =~ s/&ecirc;/\\^{e}/g;
  921:     $result =~ s/&#235;/\\"{e}/g;
  922:     $result =~ s/&euml;/\\"{e}/g;
  923:     $result =~ s/&#236;/\\`{i}/g;
  924:     $result =~ s/&igrave;/\\`{i}/g;
  925:     $result =~ s/&#237;/\\'{i}/g;
  926:     $result =~ s/&iacute;/\\'{i}/g;
  927:     $result =~ s/&#238;/\\^{i}/g;
  928:     $result =~ s/&icirc;/\\^{i}/g;
  929:     $result =~ s/&#239;/\\"{i}/g;
  930:     $result =~ s/&iuml;/\\"{i}/g;
  931: #    $result =~ s/&#240;//g;
  932: #    $result =~ s/&eth;//g;
  933:     $result =~ s/&#241;/\\~{n}/g;
  934:     $result =~ s/&ntilde;/\\~{n}/g;
  935:     $result =~ s/&#242;/\\`{o}/g;
  936:     $result =~ s/&ograve;/\\`{o}/g;
  937:     $result =~ s/&#243;/\\'{o}/g;
  938:     $result =~ s/&oacute;/\\'{o}/g;
  939:     $result =~ s/&#244;/\\^{o}/g;
  940:     $result =~ s/&ocirc;/\\^{o}/g;
  941:     $result =~ s/&#245;/\\~{o}/g;
  942:     $result =~ s/&otilde;/\\~{o}/g;
  943:     $result =~ s/&#246;/\\"{o}/g;
  944:     $result =~ s/&ouml;/\\"{o}/g;
  945:     $result =~ s/&#247;/\$\\div\$/g;
  946:     $result =~ s/&divide;/\$\\div\$/g;
  947:     $result =~ s/&#248;/{\\o}/g;
  948:     $result =~ s/&oslash;/{\\o}/g;
  949:     $result =~ s/&#249;/\\`{u}/g; 
  950:     $result =~ s/&ugrave;/\\`{u}/g;
  951:     $result =~ s/&#250;/\\'{u}/g;
  952:     $result =~ s/&uacute;/\\'{u}/g;
  953:     $result =~ s/&#251;/\\^{u}/g;
  954:     $result =~ s/&ucirc;/\\^{u}/g;
  955:     $result =~ s/&#252;/\\"{u}/g;
  956:     $result =~ s/&uuml;/\\"{u}/g;
  957:     $result =~ s/&#253;/\\'{y}/g;
  958:     $result =~ s/&yacute;/\\'{y}/g;
  959: #    $result =~ s/&#254;//g;
  960: #    $result =~ s/&thorn;//g;
  961:     $result =~ s/&#255;/\\"{y}/g;
  962:     $result =~ s/&yuml;/\\"{y}/g;
  963:     return $result;
  964: }
  965: 
  966: 
  967: #'"`
  968: 
  969: sub additional_cleanup {
  970:     my $result = shift;	
  971:     my $first_app = index($result,'\documentclass',0);
  972:     $first_app = index($result,'\documentclass',$first_app+5);
  973:     while ($first_app != -1) {
  974: 	my $second_app = index($result,'begin{document}',$first_app);
  975: 	$first_app = rindex($result,'\end{document}',$first_app);
  976: 	if ($first_app == -1) {last;}
  977: 	substr($result,$first_app,$second_app-$first_app+15) = '\vskip 3 mm';
  978: 	$first_app = index($result,'\documentclass',$first_app+5);
  979:     }
  980:     return $result;
  981: }
  982: 
  983: 
  984: sub page_cleanup {
  985:     my $result = shift;	
  986:  
  987:     $result =~ m/\\end{document}(\d*)$/;
  988:     my $number_of_columns = $1;
  989:     my $insert = '{';
  990:     for (my $id=1;$id<=$number_of_columns;$id++) { $insert .='l'; }
  991:     $insert .= '}';
  992:     $result =~ s/(\\begin{longtable})INSERTTHEHEADOFLONGTABLE\\endfirsthead\\endhead/$1$insert/g;
  993:     $result =~ s/&\s*REMOVETHEHEADOFLONGTABLE\\\\/\\\\/g;
  994:     return $result,$number_of_columns;
  995: }
  996: 
  997: 
  998: sub details_for_menu {
  999: 
 1000:     my $name_of_resourse = $hash{'title_'.$hash{'ids_'.$ENV{'form.postdata'}}};
 1001:     my $symbolic = &Apache::lonnet::symbread($ENV{'form.postdata'});
 1002:     my ($map,$id,$resource)=split(/___/,$symbolic);
 1003:     my $name_of_sequence = $hash{'title_'.$hash{'ids_/res/'.$map}};
 1004:     if ($name_of_sequence =~ /^\s*$/) {
 1005:       $map =~ m|([^/]+)$|;
 1006:       $name_of_sequence = $1;
 1007:     }
 1008:     my $name_of_map = $hash{'title_'.$hash{'ids_/res/'.$ENV{'request.course.uri'}}};
 1009:     if ($name_of_map =~ /^\s*$/) {
 1010:       $ENV{'request.course.uri'} =~ m|([^/]+)$|;
 1011:       $name_of_map = $1;
 1012:     }
 1013:     return ($name_of_resourse,$name_of_sequence,$name_of_map);
 1014: 
 1015: }
 1016: 
 1017: 
 1018: sub handler {
 1019: 
 1020:     my $r = shift;
 1021: 
 1022:     my $loaderror=&Apache::lonnet::overloaderror($r);
 1023:     if ($loaderror) { return $loaderror; }
 1024:     $loaderror=
 1025:        &Apache::lonnet::overloaderror($r,
 1026:          $ENV{'course.'.$ENV{'request.course.id'}.'.home'});
 1027:     if ($loaderror) { return $loaderror; }
 1028: 
 1029:     $r->content_type('text/html');
 1030:     $r->send_http_header;
 1031:     $r->print(&Apache::loncommon::bodytag("Printing"));
 1032: 
 1033:     if ($ENV{'request.course.id'}) {
 1034: 	my $fn=$ENV{'request.course.fn'};
 1035: 	tie(%hash,'GDBM_File',"$fn.db",&GDBM_READER(),0640);
 1036:     }
 1037: 
 1038: #-- start form
 1039:     &headerform($r);
 1040: #-- menu for output
 1041:     unless  ($ENV{'form.phase'}) {
 1042: 	&menu_for_output($r);
 1043:     }
 1044: #-- additional menu for class printing
 1045:      if ($ENV{'form.phase'} eq 'two') {
 1046: 	 if($ENV{'form.choice'} eq 'All class print') {
 1047: 	     &additional_class_menu($r);
 1048: 	 } elsif($ENV{'form.choice'} eq 'Subdirectory print') {
 1049: 	     &problem_choice_menu($r);
 1050: 	 } else {
 1051: 	     $ENV{'form.phase'} = 'three';
 1052: 	 }
 1053:      }
 1054: #-- additional menu for page layout (one column case)
 1055:     if ($ENV{'form.phase'} eq 'three') {
 1056: 	if($ENV{'form.numberofcolumns'} == 1) {
 1057: 	    &additional_print_menu($r);
 1058: 	} else {
 1059: 	    $ENV{'form.phase'} = 'four';
 1060: 	}
 1061:     }
 1062: #-- core part 
 1063:     if ($ENV{'form.phase'} eq 'four') {
 1064: 	&output_data($r);
 1065:     }	
 1066:     untie %hash;
 1067:     return OK;
 1068:    
 1069: } 
 1070: 
 1071: 
 1072: 1;
 1073: __END__
 1074: 
 1075: 
 1076: 
 1077: 
 1078: #### Test block
 1079: #    my $ere;
 1080: #    foreach $ere (%ENV) {
 1081: #	$result .= ' SS '.$ere.' => '.$ENV{$ere}.' FF '."\n\n";
 1082: #    }
 1083: ####

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