Annotation of loncom/interface/lonprintout.pm, revision 1.81
1.1 www 1: # The LearningOnline Network
2: # Printout
3: #
1.81 ! sakharuk 4: # $Id: lonprintout.pm,v 1.80 2002/10/17 14:49:37 sakharuk 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: #
26: # http://www.lon-capa.org/
27: #
1.1 www 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: #
1.3 sakharuk 38: # 9/17 Alex Sakharuk
39: #
1.1 www 40: package Apache::lonprintout;
41:
42: use strict;
1.10 albertel 43: use Apache::Constants qw(:common :http);
1.2 sakharuk 44: use Apache::lonxml;
45: use Apache::lonnet;
1.54 sakharuk 46: use Apache::loncommon;
1.13 sakharuk 47: use Apache::inputtags;
1.54 sakharuk 48: use Apache::grades;
1.13 sakharuk 49: use Apache::edit;
1.5 sakharuk 50: use Apache::File();
1.68 sakharuk 51: use Apache::lonnavmaps;
1.34 sakharuk 52: use POSIX qw(strftime);
1.60 sakharuk 53: use GDBM_File;
54:
55:
56: my %hash;
1.76 sakharuk 57: my $LaTeXwidth = 0;
1.3 sakharuk 58:
59: sub headerform {
1.1 www 60: my $r = shift;
1.3 sakharuk 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
1.62 sakharuk 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: }
1.3 sakharuk 74: }
75:
1.1 www 76:
1.3 sakharuk 77: sub menu_for_output {
78: my $r = shift;
1.62 sakharuk 79: my ($title_for_single_resource,$title_for_sequence,$title_for_main_map) = &details_for_menu;
1.60 sakharuk 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.'"';}
1.62 sakharuk 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//;
1.28 sakharuk 86: $r->print(<<ENDMENUOUT1);
1.57 sakharuk 87: <h1>What do you want to print? Make a choice.</h1><br />
1.3 sakharuk 88: <input type="hidden" name="phase" value="two">
1.10 albertel 89: <input type="hidden" name="url" value="$ENV{'form.postdata'}">
1.60 sakharuk 90: <input type="radio" name="choice" value="Standard LaTeX output for current document" checked> Current document <b>$title_for_single_resource</b>
1.65 sakharuk 91: (prints what you just saw on the screen)<br />
1.39 sakharuk 92: ENDMENUOUT1
1.48 sakharuk 93: if ((not $ENV{'request.role'}=~m/^au\./) and (not $ENV{'request.role'}=~m/^ca\./)) {
1.52 sakharuk 94: $r->print(<<ENDMENUOUT2);
1.63 albertel 95: <input type="radio" name="choice" value="Standard LaTeX output for the primary sequence"> All problems from <b>$title_for_sequence</b><br />
1.71 sakharuk 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 />
1.28 sakharuk 97: ENDMENUOUT2
1.44 sakharuk 98: }
1.52 sakharuk 99: if ($ENV{'request.role'}=~m/^cc\./ or $ENV{'request.role'}=~m/^in\./ or $ENV{'request.role'}=~m/^ta\./) {
100: $r->print(<<ENDMENUOUT6);
1.62 sakharuk 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 />
1.59 sakharuk 102: <br />
1.63 albertel 103: <input type="radio" name="choice" value="All class print"> All problems from <b>$title_for_sequence</b> for selected students<br /><br />
1.52 sakharuk 104: ENDMENUOUT6
105: }
1.39 sakharuk 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);
1.62 sakharuk 110: <input type="radio" name="choice" value="Subdirectory print"> Problems from current subdirectory <b>$subdir_to_print</b><br />
1.39 sakharuk 111: ENDMENUOUT4
112: }
113: $r->print(<<ENDMENUOUT5);
1.16 sakharuk 114: <br /><hr /><br />
115: <h1>And what page format do you prefer?</h1>
1.36 sakharuk 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> </td>
123: <td rawspan="2">
1.44 sakharuk 124: Number of columns: <select name="numberofcolumns">
1.59 sakharuk 125: <option> 1 </option>
126: <option selected> 2 </option>
1.44 sakharuk 127: </select>
1.36 sakharuk 128: </td>
1.59 sakharuk 129: <td rawspan="2">
130: Paper size (format [width x height]): <select name="papersize">
1.62 sakharuk 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>
1.59 sakharuk 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>
1.36 sakharuk 142: </tr>
143: </table>
144: </br>
1.16 sakharuk 145: <input type="submit" value="Submit your choice">
1.52 sakharuk 146: ENDMENUOUT5
147: }
148:
149:
1.58 sakharuk 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>
1.60 sakharuk 202: <input type=button onClick="checkall()" value="Check All">
203: <input type=button onClick="uncheckall()" value="Uncheck">
1.58 sakharuk 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:
1.52 sakharuk 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'}">
1.78 sakharuk 228: <h1>Select student(s) whose assignment you want to print</h1>
1.52 sakharuk 229: ENDMENUOUT1
1.57 sakharuk 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: }
1.52 sakharuk 263: }
1.57 sakharuk 264: </script>
1.60 sakharuk 265: <input type=button onClick="checkall()" value="Check All">
266: <input type=button onClick="checksec()" value="Check Section/Group">
1.57 sakharuk 267: <input type=text size=5 name=chksec>
1.60 sakharuk 268: <input type=button onClick="uncheckall()" value="Uncheck">
1.57 sakharuk 269: <p>
270: ENDDISHEADER
1.54 sakharuk 271: my $i = 0;
1.57 sakharuk 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: }
1.52 sakharuk 292: }
293: $r->print(<<ENDMENUOUT2);
1.57 sakharuk 294: <br />
1.76 sakharuk 295: <input type="hidden" name="papersize" value="$ENV{'form.papersize'}">
1.54 sakharuk 296: <input type="hidden" name="numberofstudents" value="$i">
1.52 sakharuk 297: <input type="hidden" name="phase" value="three">
298: <input type="submit" value="Submit">
299: ENDMENUOUT2
300: }
301:
302:
303: sub additional_print_menu {
304: my $r = shift;
1.54 sakharuk 305: my $what_to_print = '';
306: for (my $i=0; $i<$ENV{'form.numberofstudents'};$i++) {
307: $what_to_print .= '<input type="hidden" name="whomtoprint'.$i.'" value="'.$ENV{'form.whomtoprint'.$i}.'">';
308: }
1.58 sakharuk 309: for (my $i=0; $i<$ENV{'form.numberofproblems'};$i++) {
310: $what_to_print .= '<input type="hidden" name="whattoprint'.$i.'" value="'.$ENV{'form.whattoprint'.$i}.'">';
311: }
1.52 sakharuk 312: $r->print(<<ENDMENUOUT);
1.54 sakharuk 313: $what_to_print
1.52 sakharuk 314: <input type="hidden" name="url" value="$ENV{'form.url'}">
315: <input type="hidden" name="choice" value="$ENV{'form.choice'}">
316: <input type="hidden" name="layout" value="$ENV{'form.layout'}">
1.76 sakharuk 317: <input type="hidden" name="papersize" value="$ENV{'form.papersize'}">
1.54 sakharuk 318: <input type="hidden" name="numberofstudents" value="$ENV{'form.numberofstudents'}">
1.58 sakharuk 319: <input type="hidden" name="numberofproblems" value="$ENV{'form.numberofproblems'}">
1.52 sakharuk 320: <input type="hidden" name="numberofcolumns" value="$ENV{'form.numberofcolumns'}">
1.73 sakharuk 321: Define one column layout parameters: <br />
1.57 sakharuk 322: <b>Width</b>: <input type="text" name="width" width="8" value="9cm"> <br />
323: <b>Height</b>: <input type="text" name="height" width="8" value="25.9cm"> <br />
324: <b>Left margin</b>: <input type="text" name="leftmargin" width="8" value="-0.57in"> <br />
1.52 sakharuk 325: <input type="hidden" name="phase" value="four">
326: <input type="submit" value="Submit">
1.3 sakharuk 327: </form>
328: </body>
329: </html>
1.52 sakharuk 330: ENDMENUOUT
1.3 sakharuk 331: }
1.2 sakharuk 332:
333:
1.3 sakharuk 334: sub output_data {
335: my $r = shift;
336: $r->print(<<ENDPART);
337: <html>
338: <head>
339: <title>LON-CAPA output for printing</title>
340: </head>
341: <body bgcolor="FFFFFF">
342: <hr>
343: ENDPART
1.2 sakharuk 344:
1.3 sakharuk 345: my $choice = $ENV{'form.choice'};
1.16 sakharuk 346: my $layout = $ENV{'form.layout'};
1.74 sakharuk 347: my $numberofcolumns = $ENV{'form.numberofcolumns'};
348: my $papersize = $ENV{'form.papersize'};
1.16 sakharuk 349: my $laystyle = 'book';
1.2 sakharuk 350: my $result = '';
1.71 sakharuk 351: my $number_of_columns = 1; #used only for pages to determine the width of the cell
1.59 sakharuk 352: my $selectionmade = '';
1.76 sakharuk 353: my ($textwidth,$textheight,$oddoffset,$evenoffset) = &page_format($papersize,$layout,$numberofcolumns);
354: my $LaTeXwidth;
1.36 sakharuk 355:
1.76 sakharuk 356: if ($textwidth=~/(\d+\s*cm)/) {
357: $LaTeXwidth = $1*10;
358: } elsif ($textwidth=~/(\d+\s*mm)/) {
359: $LaTeXwidth = $1;
360: }
1.3 sakharuk 361: if ($choice eq 'Standard LaTeX output for current document') {
1.36 sakharuk 362: #-- single document - problem, page, html, xml
1.59 sakharuk 363: $selectionmade = 1;
1.14 albertel 364: my %moreenv;
365: $moreenv{'form.grade_target'}='tex';
1.48 sakharuk 366: if ($ENV{'request.role'}=~m/^au\./ or $ENV{'request.role'}=~m/^ca\./) {
367: $ENV{'form.url'}=~s/http:\/\/[^\/]+//;
368: }
1.14 albertel 369: $moreenv{'request.filename'}=$ENV{'form.url'};
1.76 sakharuk 370: $moreenv{'form.textwidth'}=$LaTeXwidth;
1.14 albertel 371: &Apache::lonnet::appenv(%moreenv);
372: my $texversion=&Apache::lonnet::ssi($ENV{'form.url'});
1.79 sakharuk 373: &Apache::lonnet::delenv('form.grade_target','form.textwidth','form.counter');
1.14 albertel 374: $result .= $texversion;
1.40 sakharuk 375: if ($ENV{'form.url'}=~m/\.page\s*$/) {
376: ($result,$number_of_columns) = &page_cleanup($result);
377: }
378: } elsif ($choice eq 'Standard LaTeX output for the primary sequence' or
379: $choice eq 'Standard LaTeX output for whole primary sequence') {
1.36 sakharuk 380: #-- minimal sequence to which the current document belongs
381: #-- where is the primary sequence containing file?
1.18 sakharuk 382: my $symbolic = &Apache::lonnet::symbread($ENV{'form.url'});
1.74 sakharuk 383: my @sequence = split('___',$symbolic);
384: my $primary_sequence = '/res/'.$sequence[0];
385: my @master_seq = &coming_from_hash($primary_sequence,$sequence[0]);
1.36 sakharuk 386: #-- produce an output string
1.71 sakharuk 387: my $flag_latex_header_remove = 'NO';
388: my $flag_page_in_sequence = 'NO';
1.18 sakharuk 389: for (my $i=0;$i<=$#master_seq;$i++) {
1.68 sakharuk 390: my ($urlp,$symb) = split /&&/, $master_seq[$i];
1.20 sakharuk 391: if ($choice eq 'Standard LaTeX output for the primary sequence') {
1.72 sakharuk 392: #prints only problems
1.59 sakharuk 393: $selectionmade = 2;
1.61 sakharuk 394: if ($urlp =~ m/\.(problem|exam|quiz|assess|survey|form|library)/) {
1.20 sakharuk 395: my %moreenv;
396: $moreenv{'form.grade_target'}='tex';
1.76 sakharuk 397: $moreenv{'form.textwidth'}=$LaTeXwidth;
1.20 sakharuk 398: &Apache::lonnet::appenv(%moreenv);
1.74 sakharuk 399: &Apache::lonnet::logthis("Trying to get $urlp with symb $symb");
1.68 sakharuk 400: my $texversion=&Apache::lonnet::ssi($urlp,('symb'=>$symb));
1.76 sakharuk 401: &Apache::lonnet::delenv('form.grade_target','form.textwidth');
1.71 sakharuk 402: if ($flag_latex_header_remove ne 'NO') {
403: $texversion = &latex_header_footer_remove($texversion);
404: } else {
405: $texversion =~ s/\\end{document}//;
406: }
1.20 sakharuk 407: $result .= $texversion;
1.71 sakharuk 408: $flag_latex_header_remove = 'YES';
1.20 sakharuk 409: }
1.53 albertel 410: } elsif ($urlp =~ /\S+/) {
1.72 sakharuk 411: #prints problems, pages and any html/xml files
1.59 sakharuk 412: $selectionmade = 3;
1.36 sakharuk 413: my %moreenv;
1.18 sakharuk 414: $moreenv{'form.grade_target'}='tex';
415: &Apache::lonnet::appenv(%moreenv);
1.69 sakharuk 416: my $texversion=&Apache::lonnet::ssi($urlp,('symb'=>$symb));
1.18 sakharuk 417: &Apache::lonnet::delenv('form.grade_target');
1.71 sakharuk 418: if ($urlp =~ m/\.page/) {
419: ($texversion,my $number_of_columns_page) = &page_cleanup($texversion);
420: if ($number_of_columns_page > $number_of_columns) {$number_of_columns=$number_of_columns_page;}
421: $texversion =~ s/\\end{document}\d*/\\end{document}/;
422: $flag_page_in_sequence = 'YES';
423: }
424: if ($flag_latex_header_remove ne 'NO') {
425: $texversion = &latex_header_footer_remove($texversion);
426: } else {
427: $texversion =~ s/\\end{document}//;
428: }
429: $result .= $texversion;
430: $flag_latex_header_remove = 'YES';
1.16 sakharuk 431: }
1.77 sakharuk 432: }
433: &Apache::lonnet::delenv('form.counter');
1.71 sakharuk 434: if ($flag_page_in_sequence eq 'YES') {$result =~ s/\\usepackage{calc}/\\usepackage{calc}\\usepackage{longtable}/;}
435: $result .= '\end{document}';
1.13 sakharuk 436: } elsif ($choice eq 'Standard LaTeX output for the top level sequence') {
1.47 sakharuk 437: # where is the main sequence of the course?
1.59 sakharuk 438: $selectionmade = 4;
1.13 sakharuk 439: my $main_seq = '/res/'.$ENV{'request.course.uri'};
1.74 sakharuk 440: my @file_seq = &coming_from_hash_whole($main_seq);
1.72 sakharuk 441: my $flag_latex_header_remove = 'NO';
1.52 sakharuk 442: #-- produce an output string
1.49 sakharuk 443: for (my $i=0;$i<=$#file_seq;$i++) {
1.69 sakharuk 444: my ($urlp,$symb) = split /&&/, $file_seq[$i];
1.49 sakharuk 445: $urlp=~s/\/home\/httpd\/html//;
446: if ($urlp=~m/\.(problem|exam|quiz|assess|survey|form|library)/) {
447: my %moreenv;
448: $moreenv{'form.grade_target'}='tex';
1.76 sakharuk 449: $moreenv{'form.textwidth'}=$LaTeXwidth;
1.49 sakharuk 450: &Apache::lonnet::appenv(%moreenv);
1.74 sakharuk 451: my $texversion=&Apache::lonnet::ssi($urlp,('symb'=>$symb));
1.76 sakharuk 452: &Apache::lonnet::delenv('form.grade_target','form.textwidth');
1.72 sakharuk 453: if ($flag_latex_header_remove ne 'NO') {
454: $texversion = &latex_header_footer_remove($texversion);
455: } else {
456: $texversion =~ s/\\end{document}//;
457: }
1.74 sakharuk 458: $result .= $texversion;
459: $flag_latex_header_remove = 'YES';
1.72 sakharuk 460: }
1.49 sakharuk 461: }
1.72 sakharuk 462: $result .= '\end{document}';
1.52 sakharuk 463: } elsif ($choice eq 'All class print') {
1.54 sakharuk 464: #-- prints assignments for whole class or for selected students
1.59 sakharuk 465: $selectionmade = 5;
1.73 sakharuk 466: my @students = ();
1.54 sakharuk 467: for (my $i=0; $i<$ENV{'form.numberofstudents'};$i++) {
468: if ($ENV{'form.whomtoprint'.$i}=~/:/) {
469: push @students,$ENV{'form.whomtoprint'.$i};
470: }
471: }
472: #where is the primary sequence containing current resource (the same for all students)?
473: my $symbolic = &Apache::lonnet::symbread($ENV{'form.url'});
1.74 sakharuk 474: my @sequence = split('___',$symbolic);
475: my $primary_sequence = '/res/'.$sequence[0];
1.75 sakharuk 476: my @master_seq = &coming_from_hash($primary_sequence,$sequence[0]);
1.72 sakharuk 477: #loop over students
1.80 sakharuk 478: my $flag_latex_header_remove = 'NO';
479: my %moreenv;
480: $moreenv{'form.textwidth'}=$LaTeXwidth;
481: &Apache::lonnet::appenv(%moreenv);
1.54 sakharuk 482: foreach my $person (@students) {
483: my $current_output = '';
1.57 sakharuk 484: my ($usersection,$username,$userdomain) = split /:/,$person;
1.54 sakharuk 485: my $fullname = &Apache::grades::get_fullname($username,$userdomain);
1.72 sakharuk 486: #goes through all resources, checks if they are available for current student, and produces output
1.69 sakharuk 487: foreach my $curresline (@master_seq) {
488: my ($curres,$symb) = split /&&/, $curresline;
1.73 sakharuk 489: if ($curres=~ m/\.(problem|exam|quiz|assess|survey|form|library)/) {
1.54 sakharuk 490: my ($map,$id,$res_url) = split(/___/,$symb);
491: if (&Apache::lonnet::allowed('bre',$res_url)) {
492: my $rendered = &Apache::loncommon::get_student_view($symb,$username,$userdomain,
493: $ENV{'request.course.id'},'tex');
1.73 sakharuk 494: if ($flag_latex_header_remove eq 'YES') {
1.72 sakharuk 495: $rendered = &latex_header_footer_remove($rendered);
496: } else {
497: $rendered =~ s/\\end{document}//;
498: }
1.54 sakharuk 499: $current_output .= $rendered;
500: }
1.73 sakharuk 501: $flag_latex_header_remove = 'YES';
1.54 sakharuk 502: }
1.72 sakharuk 503: }
504: if ($current_output=~/\\documentclass/) {
505: $current_output =~ s/\\begin{document}/\\begin{document}\\noindent\\parbox{\\minipagewidth}{\\noindent\\fbox{\\textbf{$fullname}}\\hskip 1\.4in } \\vskip 5 mm /;
506: } else {
507: $current_output = '\\vskip 3mm\noindent\parbox{\minipagewidth}{\noindent\fbox{\textbf{'.$fullname.'}}\hskip 1.4in } \vskip 5 mm '.$current_output;
1.54 sakharuk 508: }
509: $result .= $current_output;
1.80 sakharuk 510: &Apache::lonnet::delenv('form.counter');
1.54 sakharuk 511: }
1.80 sakharuk 512: $result .= '\end{document}';
513: &Apache::lonnet::delenv('form.textwidth');
1.31 sakharuk 514: } elsif ($choice eq 'Subdirectory print') {
1.58 sakharuk 515: #prints selected problems from the subdirectory
1.59 sakharuk 516: $selectionmade = 6;
1.58 sakharuk 517: my @list_of_files = ();
518: for (my $i=0; $i<$ENV{'form.numberofproblems'};$i++) {
519: if ($ENV{'form.whattoprint'.$i}=~/^\//) {
520: push @list_of_files,$ENV{'form.whattoprint'.$i};
1.28 sakharuk 521: }
1.72 sakharuk 522: }
523: my $flag_latex_header_remove = 'NO';
1.31 sakharuk 524: for (my $i=0;$i<=$#list_of_files;$i++) {
1.58 sakharuk 525: my $urlp = $list_of_files[$i];
526: if ($urlp=~/\//) {
527: my %moreenv;
528: $moreenv{'form.grade_target'}='tex';
1.76 sakharuk 529: $moreenv{'form.textwidth'}=$LaTeXwidth;
1.58 sakharuk 530: &Apache::lonnet::appenv(%moreenv);
531: if ($ENV{'request.role'}=~m/^au\./ or $ENV{'request.role'}=~m/^ca\./) {
532: $urlp =~ s/\/home\/([^\/]*)\/public_html/\/~$1/;
533: }
534: my $texversion=&Apache::lonnet::ssi($urlp);
1.76 sakharuk 535: &Apache::lonnet::delenv('form.grade_target','form.textwidth');
1.58 sakharuk 536: $texversion =~ s/(\\begin{document})/$1 {\\tiny\\begin{verbatim}$urlp\\end{verbatim}}/;
1.72 sakharuk 537: if ($flag_latex_header_remove ne 'NO') {
538: $texversion = &latex_header_footer_remove($texversion);
539: } else {
540: $texversion =~ s/\\end{document}//;
541: }
1.58 sakharuk 542: $result .= $texversion;
1.72 sakharuk 543: }
544: $flag_latex_header_remove = 'YES';
1.31 sakharuk 545: }
1.72 sakharuk 546: $result .= '\end{document}';
1.7 sakharuk 547: }
1.74 sakharuk 548: #-------------------------------------------------------- corrections for the different page formats
1.76 sakharuk 549: $result = &page_format_transformation($papersize,$layout,$numberofcolumns,$choice,$result);
550: if ($layout eq 'CBI') {
1.16 sakharuk 551: $laystyle = 'album';
552: }
1.76 sakharuk 553: $result = &latex_corrections($number_of_columns,$result);
1.52 sakharuk 554: #changes page's parameters for the one column output
555: if ($ENV{'form.numberofcolumns'} == 1) {
556: $result =~ s/\\textwidth= 9cm/\\textwidth= $ENV{'form.width'}/;
1.59 sakharuk 557: $result =~ s/\\textheight 25\.9cm/\\textheight $ENV{'form.height'}/;
558: $result =~ s/\\evensidemargin = -0\.57in/\\evensidemargin= $ENV{'form.leftmargin'}/;
559: $result =~ s/\\oddsidemargin = -0\.57in/\\oddsidemargin= $ENV{'form.leftmargin'}/;
1.52 sakharuk 560: }
1.7 sakharuk 561: #-- writing .tex file in prtspool
1.16 sakharuk 562: my $temp_file;
1.33 sakharuk 563: my $filename = "/home/httpd/prtspool/$ENV{'user.name'}_$ENV{'user.domain'}_printout_".time."_".rand(10000000).".tex";
1.16 sakharuk 564: unless ($temp_file = Apache::File->new('>'.$filename)) {
565: $r->log_error("Couldn't open $filename for output $!");
566: return SERVER_ERROR;
567: }
568: print $temp_file $result;
1.3 sakharuk 569: $r->print(<<FINALEND);
1.59 sakharuk 570: <meta http-equiv="Refresh" content="0; url=/cgi-bin/printout.pl?$filename&$laystyle&$numberofcolumns&$selectionmade">
1.3 sakharuk 571: </body>
572: </html>
573: FINALEND
574: }
1.61 sakharuk 575:
576:
1.73 sakharuk 577: sub coming_from_hash_whole {
578:
579: my $mainsequence = shift;
580: my @resourcelist = ();
581: my $mapid = $hash{'map_pc_'.$mainsequence};
582: my $mapstart = $hash{'map_start_'.$mainsequence};
583: my $mapfinish = $hash{'map_finish_'.$mainsequence};
584: my $current_resource = $mapstart;
585: while ($current_resource ne $mapfinish) {
586: if ($hash{'src_'.$current_resource}=~/\.sequence$/) {
1.74 sakharuk 587: push @resourcelist,&coming_from_hash_whole($hash{'src_'.$current_resource});
1.73 sakharuk 588: } else {
1.74 sakharuk 589: $mainsequence =~ /\/res\/(.*)$/;
590: my $presymb = $1;
591: my $rid = $hash{'ids_'.$hash{'src_'.$current_resource}};
592: if ($rid=~/,/) {
593: my @rid = split /,/, $rid;
594: foreach my $rid_element (@rid) {
595: if ($rid_element =~ m/^$mapid\.(\d*)/) {
596: $rid = $1;
597: last;
598: }
599: }
600: } else {
601: $rid =~ m/^$mapid\.(\d*)/;
602: $rid = $1;
603: }
604: $hash{'src_'.$current_resource} =~ m/\/res\/(.*)$/;
605: my $symb = $presymb.'___'.$rid.'___'.$1;
606: push @resourcelist,$hash{'src_'.$current_resource}.'&&'.$symb;
1.73 sakharuk 607: }
1.74 sakharuk 608: $current_resource = $hash{'goesto_'.$hash{'to_'.$current_resource}};
1.73 sakharuk 609: }
610: return @resourcelist;
611: }
612:
613:
1.61 sakharuk 614: sub coming_from_hash {
615:
1.73 sakharuk 616: my ($mainsequence,$symb) = @_;
1.61 sakharuk 617: my @resourcelist = ();
1.68 sakharuk 618: my $mapid = $hash{'map_pc_'.$mainsequence};
1.61 sakharuk 619: my $mapstart = $hash{'map_start_'.$mainsequence};
620: my $mapfinish = $hash{'map_finish_'.$mainsequence};
1.70 albertel 621: my ($presymb) = split(/___/,$symb);
622: $presymb = $presymb.'___';
1.61 sakharuk 623: my $current_resource = $mapstart;
624: while ($current_resource ne $mapfinish) {
625: if (not $hash{'src_'.$current_resource}=~/\.sequence$/) {
1.68 sakharuk 626: my $rid = $hash{'ids_'.$hash{'src_'.$current_resource}};
627: if ($rid=~/,/) {
628: my @rid = split /,/, $rid;
629: foreach my $rid_element (@rid) {
630: if ($rid_element =~ m/^$mapid\.(\d*)/) {
631: $rid = $1;
632: last;
633: }
634: }
635: } else {
636: $rid =~ m/^$mapid\.(\d*)/;
637: $rid = $1;
638: }
639: $hash{'src_'.$current_resource} =~ m/\/res\/(.*)$/;
640: $symb = $presymb.$rid.'___'.$1;
641: push @resourcelist,$hash{'src_'.$current_resource}.'&&'.$symb;
1.61 sakharuk 642: } else {
643: push @resourcelist,&coming_from_hash($hash{'src_'.$current_resource});
644: }
645: $current_resource = $hash{'goesto_'.$hash{'to_'.$current_resource}};
646: }
1.68 sakharuk 647: #needs if final resource in the map (type="finish") contains something
1.65 sakharuk 648: if (not $hash{'src_'.$current_resource}=~/\.sequence$/) {
1.68 sakharuk 649: my $rid = $hash{'ids_'.$hash{'src_'.$current_resource}};
650: if ($rid=~/,/) {
651: my @rid = split /,/, $rid;
652: foreach my $rid_element (@rid) {
653: if ($rid_element =~ m/^$mapid\.(\d*)/) {
654: $rid = $1;
655: last;
656: }
657: }
658: } else {
659: $rid =~ m/^$mapid\.(\d*)/;
660: $rid = $1;
661: }
662: $hash{'src_'.$current_resource} =~ m/\/res\/(.*)$/;
663: $symb = $presymb.$rid.'___'.$1;
664: push @resourcelist,$hash{'src_'.$current_resource}.'&&'.$symb;
1.65 sakharuk 665: } else {
666: push @resourcelist,&coming_from_hash($hash{'src_'.$current_resource});
667: }
1.61 sakharuk 668: return @resourcelist;
669: }
670:
1.2 sakharuk 671:
1.71 sakharuk 672: sub latex_header_footer_remove {
673: my $text = shift;
674: $text =~ s/\\end{document}//;
675: $text =~ s/\\documentclass([^&]*)\\begin{document}//;
676: return $text;
677: }
678:
679:
1.37 sakharuk 680: sub character_chart {
681: my $result = shift;
1.41 sakharuk 682: $result =~ s/�?0?7;//g;
1.40 sakharuk 683: $result =~ s/�?0?9;//g;
684: $result =~ s/�?10;//g;
685: $result =~ s/�?13;//g;
686: $result =~ s/�?32;/ /g;
687: $result =~ s/�?33;/!/g;
688: $result =~ s/�?34;/"/g;
1.76 sakharuk 689: $result =~ s/"/"/g; #"
1.40 sakharuk 690: $result =~ s/�?35;/\\#/g;
691: # $result =~ s/�?36;/\\\$/g;
692: $result =~ s/�?37;/\\%/g;
693: $result =~ s/�?38;/\\&/g;
1.37 sakharuk 694: $result =~ s/&/\\&/g;
1.40 sakharuk 695: $result =~ s/�?39;/'/g;
696: $result =~ s/�?40;/(/g;
697: $result =~ s/�?41;/)/g;
698: $result =~ s/�?42;/\*/g;
699: $result =~ s/�?43;/\+/g;
700: $result =~ s/�?44;/,/g;
701: $result =~ s/�?45;/-/g;
702: $result =~ s/�?46;/\./g;
703: $result =~ s/�?47;/\//g;
704: $result =~ s/�?48;/0/g;
705: $result =~ s/�?49;/1/g;
706: $result =~ s/�?50;/2/g;
707: $result =~ s/�?51;/3/g;
708: $result =~ s/�?52;/4/g;
709: $result =~ s/�?53;/5/g;
710: $result =~ s/�?54;/6/g;
711: $result =~ s/�?55;/7/g;
712: $result =~ s/�?56;/8/g;
713: $result =~ s/�?57;/9/g;
714: $result =~ s/�?58;/:/g;
715: $result =~ s/�?59;/;/g;
716: $result =~ s/�?60;/\$<\$/g;
1.37 sakharuk 717: $result =~ s/</\$<\$/g;
1.40 sakharuk 718: $result =~ s/�?61;/\$=\$/g;
719: $result =~ s/�?62;/\$>\$/g;
1.37 sakharuk 720: $result =~ s/>/\$>\$/g;
1.40 sakharuk 721: $result =~ s/�?63;/?/g;
722: # $result =~ s/�?64;//g;
723: $result =~ s/�?65;/A/g;
724: $result =~ s/�?66;/B/g;
725: $result =~ s/�?67;/C/g;
726: $result =~ s/�?68;/D/g;
727: $result =~ s/�?69;/E/g;
728: $result =~ s/�?70;/F/g;
729: $result =~ s/�?71;/G/g;
730: $result =~ s/�?72;/H/g;
731: $result =~ s/�?73;/I/g;
732: $result =~ s/�?74;/J/g;
733: $result =~ s/�?75;/K/g;
734: $result =~ s/�?76;/L/g;
735: $result =~ s/�?77;/M/g;
736: $result =~ s/�?78;/N/g;
737: $result =~ s/�?79;/O/g;
738: $result =~ s/�?80;/P/g;
739: $result =~ s/�?81;/Q/g;
740: $result =~ s/�?82;/R/g;
741: $result =~ s/�?83;/S/g;
742: $result =~ s/�?84;/T/g;
743: $result =~ s/�?85;/U/g;
744: $result =~ s/�?86;/V/g;
745: $result =~ s/�?87;/W/g;
746: $result =~ s/�?88;/X/g;
747: $result =~ s/�?89;/Y/g;
748: $result =~ s/�?90;/Z/g;
749: $result =~ s/�?91;/[/g;
750: $result =~ s/�?92;/\\/g;
751: $result =~ s/�?93;/]/g;
752: # $result =~ s/�?94;//g;
753: # $result =~ s/�?95;//g;
754: $result =~ s/�?96;/`/g;
755: $result =~ s/�?97;/a/g;
756: $result =~ s/�?98;/b/g;
757: $result =~ s/�?99;/c/g;
1.37 sakharuk 758: $result =~ s/d/d/g;
759: $result =~ s/e/e/g;
760: $result =~ s/f/f/g;
761: $result =~ s/g/g/g;
762: $result =~ s/h/h/g;
763: $result =~ s/i/i/g;
764: $result =~ s/j/j/g;
765: $result =~ s/k/k/g;
766: $result =~ s/l/l/g;
767: $result =~ s/m/m/g;
768: $result =~ s/n/n/g;
769: $result =~ s/o/o/g;
770: $result =~ s/p/p/g;
771: $result =~ s/q/q/g;
772: $result =~ s/r/r/g;
773: $result =~ s/s/s/g;
774: $result =~ s/t/t/g;
775: $result =~ s/u/u/g;
776: $result =~ s/v/v/g;
777: $result =~ s/w/w/g;
778: $result =~ s/x/x/g;
779: $result =~ s/y/y/g;
780: $result =~ s/z/z/g;
781: $result =~ s/{/\\{/g;
782: $result =~ s/|/\|/g;
783: $result =~ s/}/\\}/g;
784: $result =~ s/~/\~/g;
785: $result =~ s/‚/,/g;
786: # $result =~ s/ƒ//g;
787: $result =~ s/„/''/g;
788: $result =~ s/…/\$\\ldots\$/g;
789: $result =~ s/†/\$\\dagger\$/g;
790: $result =~ s/‡/\$\\ddagger\$/g;
791: # $result =~ s/ˆ//g;
792: # $result =~ s/‰//g;
793: # $result =~ s/Š//g;
794: $result =~ s/‹/\$<\$/g;
795: # $result =~ s/Œ//g;
796: $result =~ s/‘/`/g;
797: $result =~ s/’/'/g;
798: $result =~ s/“/``/g;
799: $result =~ s/”/''/g;
800: $result =~ s/•/\$\\bullet\$/g;
801: # $result =~ s/–//g;
802: # $result =~ s/—//g;
803: $result =~ s/˜/~/g;
804: # $result =~ s/™//g;
805: # $result =~ s/š//g;
806: $result =~ s/›/\$>\$/g;
807: $result =~ s/œ/\\{\\oe\\}/g;
808: $result =~ s/Ÿ/\\"\\{Y\\}/g;
809: $result =~ s/ //g;
810: $result =~ s/ //g;
811: $result =~ s/¡/!`/g;
812: $result =~ s/¡/!`/g; #`
813: # $result =~ s/¢//g;
814: # $result =~ s/¢//g;
815: $result =~ s/£/\\pounds/g;
816: $result =~ s/£/\\pounds/g;
817: # $result =~ s/¤//g;
818: # $result =~ s/¤//g;
819: # $result =~ s/¥//g;
820: # $result =~ s/¥//g;
821: # $result =~ s/¦//g;
822: # $result =~ s/¦//g;
823: # $result =~ s/§//g;
824: # $result =~ s/§//g;
825: # $result =~ s/¨//g;
826: # $result =~ s/¨//g;
827: $result =~ s/©/\\copyright/g;
828: $result =~ s/©/\\copyright/g;
829: # $result =~ s/ª//g;
830: # $result =~ s/ª//g;
831: # $result =~ s/«//g;
832: # $result =~ s/«//g;
833: $result =~ s/¬/\$\\neg\$/g;
834: $result =~ s/¬/\$\\neg\$/g;
835: # $result =~ s/­//g;
836: # $result =~ s/­//g;
837: # $result =~ s/®//g;
838: # $result =~ s/®//g;
839: # $result =~ s/¯//g;
840: # $result =~ s/¯//g;
1.42 sakharuk 841: $result =~ s/°/\$^{\\circ}\$/g;
842: $result =~ s/°/\$^{\\circ}\$/g;
1.37 sakharuk 843: $result =~ s/±/\$\\pm\$/g;
844: $result =~ s/±/\$\\pm\$/g;
845: $result =~ s/²/\$^2\$/g;
846: $result =~ s/²/\$^2\$/g;
847: $result =~ s/³/\$^3\$/g;
848: $result =~ s/³/\$^3\$/g;
849: # $result =~ s/´//g;
850: # $result =~ s/´//g;
851: $result =~ s/µ/\$\\mu\$/g;
852: $result =~ s/µ/\$\\mu\$/g;
853: $result =~ s/¶/\\P/g;
854: $result =~ s/¶/\\P/g;
855: $result =~ s/·/\$\\cdot\$/g;
856: $result =~ s/·/\$\\cdot\$/g;
857: # $result =~ s/¸//g;
858: # $result =~ s/¸//g;
859: $result =~ s/¹/\$^1\$/g;
860: $result =~ s/¹/\$^1\$/g;
861: # $result =~ s/º//g;
862: # $result =~ s/º//g;
863: # $result =~ s/»//g;
864: # $result =~ s/»//g;
865: # $result =~ s/¼//g;
866: # $result =~ s/¼//g;
867: # $result =~ s/½//g;
868: # $result =~ s/½//g;
869: # $result =~ s/¾//g;
870: # $result =~ s/¾//g;
1.76 sakharuk 871: $result =~ s/¿/?`/g;
872: $result =~ s/¿/?`/g; #`
873: $result =~ s/À/\\`{A}/g;
874: $result =~ s/À/\\`{A}/g; #`
1.37 sakharuk 875: $result =~ s/Á/\\'{A}/g;
1.76 sakharuk 876: $result =~ s/Á/\\'{A}/g; #'
1.37 sakharuk 877: $result =~ s/Â/\\^{A}/g;
878: $result =~ s/Â/\\^{A}/g;
879: $result =~ s/Ã/\\~{A}/g;
880: $result =~ s/Ã/\\~{A}/g;
881: $result =~ s/Ä/\\"{A}/g;
1.76 sakharuk 882: $result =~ s/Ä/\\"{A}/g; #"
1.37 sakharuk 883: $result =~ s/Å/{\\AA}/g;
884: $result =~ s/Å/{\\AA}/g;
885: $result =~ s/Æ/{\\AE}/g;
886: $result =~ s/Æ/{\\AE}/g;
887: # $result =~ s/Ç//g;
888: # $result =~ s/Ç//g;
1.76 sakharuk 889: $result =~ s/È/\\`{E}/g;
890: $result =~ s/È/\\`{E}/g; #`
891: $result =~ s/É/\\'{E}/g; #'
892: $result =~ s/É/\\'{E}/g; #'
1.37 sakharuk 893: $result =~ s/Ê/\\^{E}/g;
894: $result =~ s/Ê/\\^{E}/g;
895: $result =~ s/Ë/\\`{E}/g;
1.76 sakharuk 896: $result =~ s/Ë/\\`{E}/g; #`
1.37 sakharuk 897: $result =~ s/Ì/\\`{I}/g;
1.76 sakharuk 898: $result =~ s/Ì/\\`{I}/g; #`
899: $result =~ s/Í/\\'{I}/g;
900: $result =~ s/Í/\\'{I}/g; #'
1.37 sakharuk 901: $result =~ s/Î/\\^{I}/g;
902: $result =~ s/Î/\\^{I}/g;
1.76 sakharuk 903: $result =~ s/Ï/\\"{I}/g;
904: $result =~ s/Ï/\\"{I}/g; #"
1.37 sakharuk 905: # $result =~ s/Ð//g;
906: # $result =~ s/Ð//g;
907: $result =~ s/Ñ/\\~{N}/g;
908: $result =~ s/Ñ/\\~{N}/g;
909: $result =~ s/Ò/\\`{O}/g;
1.76 sakharuk 910: $result =~ s/Ò/\\`{O}/g; #`
1.37 sakharuk 911: $result =~ s/Ó/\\'{O}/g;
1.76 sakharuk 912: $result =~ s/Ó/\\'{O}/g; #'
1.37 sakharuk 913: $result =~ s/Ô/\\^{O}/g;
914: $result =~ s/Ô/\\^{O}/g;
915: $result =~ s/Õ/\\~{O}/g;
916: $result =~ s/Õ/\\~{O}/g;
1.76 sakharuk 917: $result =~ s/Ö/\\"{O}/g;
918: $result =~ s/Ö/\\"{O}/g; #"
1.37 sakharuk 919: $result =~ s/×/\$\\times\$/g;
920: $result =~ s/×/\$\\times\$/g;
921: $result =~ s/Ø/{\\O}/g;
922: $result =~ s/Ø/{\\O}/g;
1.76 sakharuk 923: $result =~ s/Ù/\\`{U}/g;
924: $result =~ s/Ù/\\`{U}/g; #`
925: $result =~ s/Ú/\\'{U}/g; #'
926: $result =~ s/Ú/\\'{U}/g; #'
1.37 sakharuk 927: $result =~ s/Û/\\^{U}/g;
928: $result =~ s/Û/\\^{U}/g;
1.76 sakharuk 929: $result =~ s/Ü/\\"{U}/g; #"
930: $result =~ s/Ü/\\"{U}/g; #"
1.37 sakharuk 931: $result =~ s/Ý/\\'{Y}/g;
1.76 sakharuk 932: $result =~ s/Ý/\\'{Y}/g; #'
1.37 sakharuk 933: # $result =~ s/Þ//g;
934: # $result =~ s/Þ//g;
935: # $result =~ s/ß//g;
936: # $result =~ s/ß//g;
937: $result =~ s/à/\\`{a}/g;
1.76 sakharuk 938: $result =~ s/à/\\`{a}/g; #`
1.37 sakharuk 939: $result =~ s/á/\\'{a}/g;
1.76 sakharuk 940: $result =~ s/á/\\'{a}/g; #'
1.37 sakharuk 941: $result =~ s/â/\\^{a}/g;
942: $result =~ s/â/\\^{a}/g;
943: $result =~ s/ã/\\~{a}/g;
944: $result =~ s/ã/\\~{a}/g;
945: $result =~ s/ä/\\"{a}/g;
1.76 sakharuk 946: $result =~ s/ä/\\"{a}/g; #"
1.37 sakharuk 947: $result =~ s/å/{\\aa}/g;
948: $result =~ s/å/{\\aa}/g;
949: $result =~ s/æ/{\\ae}/g;
950: $result =~ s/æ/{\\ae}/g;
951: # $result =~ s/ç//g;
952: # $result =~ s/ç//g;
953: $result =~ s/è/\\`{e}/g;
1.76 sakharuk 954: $result =~ s/è/\\`{e}/g; #`
1.37 sakharuk 955: $result =~ s/é/\\'{e}/g;
1.76 sakharuk 956: $result =~ s/é/\\'{e}/g; #'
1.37 sakharuk 957: $result =~ s/ê/\\^{e}/g;
958: $result =~ s/ê/\\^{e}/g;
959: $result =~ s/ë/\\"{e}/g;
1.76 sakharuk 960: $result =~ s/ë/\\"{e}/g; #"
1.37 sakharuk 961: $result =~ s/ì/\\`{i}/g;
1.76 sakharuk 962: $result =~ s/ì/\\`{i}/g; #`
1.37 sakharuk 963: $result =~ s/í/\\'{i}/g;
1.76 sakharuk 964: $result =~ s/í/\\'{i}/g; #'
1.37 sakharuk 965: $result =~ s/î/\\^{i}/g;
966: $result =~ s/î/\\^{i}/g;
967: $result =~ s/ï/\\"{i}/g;
1.76 sakharuk 968: $result =~ s/ï/\\"{i}/g; #"
1.37 sakharuk 969: # $result =~ s/ð//g;
970: # $result =~ s/ð//g;
971: $result =~ s/ñ/\\~{n}/g;
972: $result =~ s/ñ/\\~{n}/g;
973: $result =~ s/ò/\\`{o}/g;
1.76 sakharuk 974: $result =~ s/ò/\\`{o}/g; #`
1.37 sakharuk 975: $result =~ s/ó/\\'{o}/g;
1.76 sakharuk 976: $result =~ s/ó/\\'{o}/g; #'
1.37 sakharuk 977: $result =~ s/ô/\\^{o}/g;
978: $result =~ s/ô/\\^{o}/g;
979: $result =~ s/õ/\\~{o}/g;
980: $result =~ s/õ/\\~{o}/g;
981: $result =~ s/ö/\\"{o}/g;
1.76 sakharuk 982: $result =~ s/ö/\\"{o}/g; #"
1.37 sakharuk 983: $result =~ s/÷/\$\\div\$/g;
984: $result =~ s/÷/\$\\div\$/g;
985: $result =~ s/ø/{\\o}/g;
986: $result =~ s/ø/{\\o}/g;
987: $result =~ s/ù/\\`{u}/g;
1.76 sakharuk 988: $result =~ s/ù/\\`{u}/g; #`
1.37 sakharuk 989: $result =~ s/ú/\\'{u}/g;
1.76 sakharuk 990: $result =~ s/ú/\\'{u}/g; #'
1.37 sakharuk 991: $result =~ s/û/\\^{u}/g;
992: $result =~ s/û/\\^{u}/g;
993: $result =~ s/ü/\\"{u}/g;
1.76 sakharuk 994: $result =~ s/ü/\\"{u}/g; #"
1.37 sakharuk 995: $result =~ s/ý/\\'{y}/g;
1.76 sakharuk 996: $result =~ s/ý/\\'{y}/g; #'
1.37 sakharuk 997: # $result =~ s/þ//g;
998: # $result =~ s/þ//g;
999: $result =~ s/ÿ/\\"{y}/g;
1.76 sakharuk 1000: $result =~ s/ÿ/\\"{y}/g; #"
1.75 sakharuk 1001: $result =~ s/θ/\$\\theta\$/g; #converts theta from html into tex
1.37 sakharuk 1002: return $result;
1003: }
1.41 sakharuk 1004:
1005:
1.76 sakharuk 1006: sub page_format {
1007: my ($papersize,$layout,$numberofcolumns) = @_;
1008: my ($textwidth,$textheight,$oddoffset,$evenoffset) = (0,0,0,0);
1009: if ($papersize=~/Letter/) {
1010: if ($layout eq 'CAPA') {
1011: if ($numberofcolumns == 1) {
1012: $textwidth = '18 cm';
1013: $textheight = '25.9 cm';
1014: $oddoffset = '-0.57 in';
1015: $evenoffset = '-0.57 in';
1016: } elsif ($numberofcolumns == 2) {
1.81 ! sakharuk 1017: $textwidth = '93 mm';
1.76 sakharuk 1018: $textheight = '25.9 cm';
1019: $oddoffset = '-0.57 in';
1020: $evenoffset = '-0.57 in';
1021: }
1022: } elsif ($layout eq 'CBI') {
1023: if ($numberofcolumns eq '1') {
1024: $textwidth = '8.8 in';
1025: $textheight = '6.8 in';
1026: $oddoffset = '-40 pt';
1027: $evenoffset = '-60 pt';
1028: } elsif ($numberofcolumns == 2) {
1029: $textwidth = '4.2 in';
1030: $textheight = '6.8 in';
1031: $oddoffset = '-40 pt';
1032: $evenoffset = '-60 pt';
1033: }
1034: }
1035: # } elsif($papersize=~/Legal/) {
1036: # } elsif($papersize=~/Ledger/) {
1037: # } elsif($papersize=~/Executive/) {
1038: } elsif($papersize=~/A4/) {
1039: if ($layout eq 'CAPA') {
1040: if ($numberofcolumns == 1) {
1041: $textwidth = '18 cm';
1042: $textheight = '28 cm';
1043: $oddoffset = '-0.57 in';
1044: $evenoffset = '-0.57 in';
1045: } elsif ($numberofcolumns == 2) {
1.81 ! sakharuk 1046: $textwidth = '96 mm';
1.76 sakharuk 1047: $textheight = '2 cm';
1048: $oddoffset = '-0.57 in';
1049: $evenoffset = '-0.57 in';
1050: }
1051: } elsif ($layout eq 'CBI') {
1052: if ($numberofcolumns eq '1') {
1053: $textwidth = '8.5 in';
1054: $textheight = '7.7 in';
1055: $oddoffset = '-40 pt';
1056: $evenoffset = '-60 pt';
1057: } elsif ($numberofcolumns == 2) {
1058: $textwidth = '3.9 in';
1059: $textheight = '7.7 in';
1060: $oddoffset = '-40 pt';
1061: $evenoffset = '-60 pt';
1062: }
1063: }
1064: # } elsif($papersize=~/A3/) {
1065: # } elsif($papersize=~/A2/) {
1066: # } elsif($papersize=~/A5/) {
1067: # } elsif($papersize=~/A6/) {
1068: }
1069: return $textwidth,$textheight,$oddoffset,$evenoffset;
1070: }
1071:
1072:
1073: sub page_format_transformation {
1074: my ($papersize,$layout,$numberofcolumns,$choice,$text) = @_;
1075: my ($textwidth,$textheight,$oddoffset,$evenoffset) = &page_format($papersize,$layout,$numberofcolumns);
1076: my $courseidinfo = $ENV{'course.'.$ENV{'request.course.id'}.'.description'};
1077: if ($layout eq 'CBI') {
1078: $text =~ s/\\begin{document}/\\setlength{\\oddsidemargin}{$oddoffset}\\setlength{\\evensidemargin}{$evenoffset}\\setlength{\\topmargin}{200pt}\\setlength{\\textwidth}{$textwidth}\\setlength{\\textheight}{$textheight}\\setlength{\\parindent}{20pt}\\setlength{\\marginparwidth}{90pt}\\setlength{\\textfloatsep}{8pt plus 2\.0pt minus 4\.0pt}\\newlength{\\minipagewidth}\\setlength{\\minipagewidth}{\\textwidth\/\$number_of_columns-0\.2cm} \\begin{document}\\setcounter{page}{1}\\noindent\\parbox{\\minipagewidth}{\\noindent\\fbox{\\textbf{$ENV{'environment.firstname'} $ENV{'environment.lastname'}}} \\hfill $courseidinfo} \\vskip 5 mm /;
1079: } elsif ($layout eq 'CAPA') {
1080: if ($choice ne 'All class print') {
1.81 ! sakharuk 1081: $text =~ s/\\begin{document}/\\textheight $textheight\\oddsidemargin = $evenoffset\\evensidemargin = $evenoffset\\textwidth= $textwidth\\newlength{\\minipagewidth}\\setlength{\\minipagewidth}{\\textwidth\/\$number_of_columns-0\.2cm}\\renewcommand{\\ref}{\\keephidden\}\\begin{document}\\voffset=-1\.8cm\\setcounter{page}{1}\\noindent\\parbox{\\minipagewidth}{\\noindent\\fbox{\\textbf{$ENV{'environment.firstname'} $ENV{'environment.lastname'}}} \\hfill $courseidinfo} \\vskip 5 mm /;
1.76 sakharuk 1082: } else {
1.78 sakharuk 1083: $text =~ s/\\begin{document}/\\setlength{\\textheight}{$textheight}\\setlength{\\oddsidemargin}{$oddoffset}\\setlength{\\evensidemargin}{$evenoffset}\\setlength{\\textwidth}{$textwidth}\\newlength{\\minipagewidth}\\setlength{\\minipagewidth}{\\textwidth\/\$number_of_columns-0\.2cm}\\renewcommand{\\ref}{\\keephidden\}\\begin{document}\\voffset=-1\.8cm\\setcounter{page}{1} \\vskip 5 mm /;
1.76 sakharuk 1084: }
1085: }
1086: return $text;
1087: }
1.68 sakharuk 1088:
1089:
1.33 sakharuk 1090: sub page_cleanup {
1091: my $result = shift;
1.65 sakharuk 1092:
1093: $result =~ m/\\end{document}(\d*)$/;
1.34 sakharuk 1094: my $number_of_columns = $1;
1.33 sakharuk 1095: my $insert = '{';
1.34 sakharuk 1096: for (my $id=1;$id<=$number_of_columns;$id++) { $insert .='l'; }
1.33 sakharuk 1097: $insert .= '}';
1.65 sakharuk 1098: $result =~ s/(\\begin{longtable})INSERTTHEHEADOFLONGTABLE\\endfirsthead\\endhead/$1$insert/g;
1.34 sakharuk 1099: $result =~ s/&\s*REMOVETHEHEADOFLONGTABLE\\\\/\\\\/g;
1100: return $result,$number_of_columns;
1.7 sakharuk 1101: }
1.5 sakharuk 1102:
1.3 sakharuk 1103:
1.60 sakharuk 1104: sub details_for_menu {
1105:
1106: my $name_of_resourse = $hash{'title_'.$hash{'ids_'.$ENV{'form.postdata'}}};
1107: my $symbolic = &Apache::lonnet::symbread($ENV{'form.postdata'});
1.63 albertel 1108: my ($map,$id,$resource)=split(/___/,$symbolic);
1109: my $name_of_sequence = $hash{'title_'.$hash{'ids_/res/'.$map}};
1110: if ($name_of_sequence =~ /^\s*$/) {
1111: $map =~ m|([^/]+)$|;
1112: $name_of_sequence = $1;
1113: }
1.62 sakharuk 1114: my $name_of_map = $hash{'title_'.$hash{'ids_/res/'.$ENV{'request.course.uri'}}};
1.63 albertel 1115: if ($name_of_map =~ /^\s*$/) {
1116: $ENV{'request.course.uri'} =~ m|([^/]+)$|;
1117: $name_of_map = $1;
1118: }
1119: return ($name_of_resourse,$name_of_sequence,$name_of_map);
1.60 sakharuk 1120:
1.76 sakharuk 1121: }
1122:
1123:
1124: sub latex_corrections {
1125:
1126: my ($number_of_columns,$result) = @_;
1127:
1.77 sakharuk 1128: $result =~ s/\\includegraphics{/\\includegraphics\[width=\\minipagewidth\]{/g;
1.76 sakharuk 1129: $result =~ s/\$number_of_columns/$number_of_columns/g;
1.81 ! sakharuk 1130: $result =~ s/(\\end{document})/\\newline\\noindent\\makebox\[\\textwidth\/$number_of_columns\]\[b\]{\\hrulefill}\\newline\\noindent\\tiny Printed from LON-CAPA\\copyright MSU{\\hfill} Licensed under GNU General Public License $1/;
1.76 sakharuk 1131: $result =~ s/(\\end{longtable}\s*)(\\newline\\noindent\\makebox\[\\textwidth\/$number_of_columns\]\[b\]{\\hrulefill})/$2$1/g;
1132: $result =~ s/(\\end{longtable}\s*)\\newline/$1/g;
1133: #-- LaTeX corrections
1134: my $first_comment = index($result,'<!--',0);
1135: while ($first_comment != -1) {
1136: my $end_comment = index($result,'-->',$first_comment);
1137: substr($result,$first_comment,$end_comment-$first_comment+3) = '';
1138: $first_comment = index($result,'<!--',$first_comment);
1139: }
1140: $result =~ s/^\s+$//gm; #remove empty lines
1141: $result =~ s/(\s)+/$1/g; #removes more than one empty space
1142: $result =~ s/\\\\\s*\\vskip/\\vskip/gm;
1143: $result =~ s/\\\\\s*\\noindent\s*(\\\\)+/\\\\\\noindent /g;
1144: $result =~ s/{\\par }\s*\\\\/\\\\/gm;
1145: $result =~ s/\\\\\s+\[/ \[/g;
1146: $result =~ s/\b__+\b/\\makebox\[1 cm\]\[b\]{\\hrulefill}/g;
1147: #conversion of html characters to LaTeX equivalents
1148: if ($result =~ m/&(\w+|#\d+);/) {
1149: $result = &character_chart($result);
1150: }
1151: $result =~ s/(\\end{tabular})\s*\\vskip 0 mm/$1/g;
1152: $result =~ s/(\\begin{enumerate})\s*\\noindent/$1/g;
1153:
1154: return $result;
1.60 sakharuk 1155: }
1156:
1.3 sakharuk 1157:
1158: sub handler {
1159:
1160: my $r = shift;
1.67 www 1161:
1162: my $loaderror=&Apache::lonnet::overloaderror($r);
1163: if ($loaderror) { return $loaderror; }
1164: $loaderror=
1165: &Apache::lonnet::overloaderror($r,
1166: $ENV{'course.'.$ENV{'request.course.id'}.'.home'});
1167: if ($loaderror) { return $loaderror; }
1168:
1.3 sakharuk 1169: $r->content_type('text/html');
1170: $r->send_http_header;
1.59 sakharuk 1171: $r->print(&Apache::loncommon::bodytag("Printing"));
1.3 sakharuk 1172:
1.60 sakharuk 1173: if ($ENV{'request.course.id'}) {
1174: my $fn=$ENV{'request.course.fn'};
1175: tie(%hash,'GDBM_File',"$fn.db",&GDBM_READER(),0640);
1176: }
1177:
1.3 sakharuk 1178: #-- start form
1179: &headerform($r);
1180: #-- menu for output
1.16 sakharuk 1181: unless ($ENV{'form.phase'}) {
1.3 sakharuk 1182: &menu_for_output($r);
1183: }
1.52 sakharuk 1184: #-- additional menu for class printing
1185: if ($ENV{'form.phase'} eq 'two') {
1186: if($ENV{'form.choice'} eq 'All class print') {
1187: &additional_class_menu($r);
1.58 sakharuk 1188: } elsif($ENV{'form.choice'} eq 'Subdirectory print') {
1189: &problem_choice_menu($r);
1.52 sakharuk 1190: } else {
1191: $ENV{'form.phase'} = 'three';
1192: }
1193: }
1194: #-- additional menu for page layout (one column case)
1195: if ($ENV{'form.phase'} eq 'three') {
1196: if($ENV{'form.numberofcolumns'} == 1) {
1197: &additional_print_menu($r);
1198: } else {
1199: $ENV{'form.phase'} = 'four';
1200: }
1201: }
1.3 sakharuk 1202: #-- core part
1.52 sakharuk 1203: if ($ENV{'form.phase'} eq 'four') {
1.3 sakharuk 1204: &output_data($r);
1.60 sakharuk 1205: }
1206: untie %hash;
1.2 sakharuk 1207: return OK;
1.60 sakharuk 1208:
1209: }
1.2 sakharuk 1210:
1.1 www 1211:
1212: 1;
1213: __END__
1.6 sakharuk 1214:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>