1: # The LearningOnline Network
2: # Printout
3: #
4: # $Id: lonprintout.pm,v 1.414 2006/01/17 18:34:58 albertel 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: #
29: package Apache::lonprintout;
30:
31: use strict;
32: use Apache::Constants qw(:common :http);
33: use Apache::lonxml;
34: use Apache::lonnet;
35: use Apache::loncommon;
36: use Apache::inputtags;
37: use Apache::grades;
38: use Apache::edit;
39: use Apache::File();
40: use Apache::lonnavmaps;
41: use Apache::lonratedt;
42: use POSIX qw(strftime);
43: use Apache::lonlocal;
44:
45: my %perm;
46:
47: #
48: # Convert a numeric code to letters
49: #
50: sub num_to_letters {
51: my ($num) = @_;
52: my @nums= split('',$num);
53: my @num_to_let=('A'..'Z');
54: my $word;
55: foreach my $digit (@nums) { $word.=$num_to_let[$digit]; }
56: return $word;
57: }
58: # Convert a letter code to numeric.
59: #
60: sub letters_to_num {
61: my ($letters) = @_;
62: my @letters = split('', uc($letters));
63: my %substitution;
64: my $digit = 0;
65: foreach my $letter ('A'..'J') {
66: $substitution{$letter} = $digit;
67: $digit++;
68: }
69: # The substitution is done as below to preserve leading
70: # zeroes which are needed to keep the code size exact
71: #
72: my $result ="";
73: foreach my $letter (@letters) {
74: $result.=$substitution{$letter};
75: }
76: return $result;
77: }
78:
79: # Determine if a code is a valid numeric code. Valid
80: # numeric codes must be comprised entirely of digits and
81: # have a correct number of digits.
82: #
83: # Parameters:
84: # value - proposed code value.
85: # num_digits - Number of digits required.
86: #
87: sub is_valid_numeric_code {
88: my ($value, $num_digits) = @_;
89: # Remove leading/trailing whitespace;
90: $value =~ s/^\s*//g;
91: $value =~ s/\s*$//g;
92:
93: # All digits?
94: if ($value !~ /^[0-9]+$/) {
95: return "Numeric code $value has invalid characters - must only be digits";
96: }
97: if (length($value) != $num_digits) {
98: return "Numeric code $value incorrect number of digits (correct = $num_digits)";
99: }
100: return undef;
101: }
102: # Determines if a code is a valid alhpa code. Alpha codes
103: # are ciphers that map [A-J,a-j] -> 0..9 0..9.
104: # They also have a correct digit count.
105: # Parameters:
106: # value - Proposed code value.
107: # num_letters - correct number of letters.
108: # Note:
109: # leading and trailing whitespace are ignored.
110: #
111: sub is_valid_alpha_code {
112: my ($value, $num_letters) = @_;
113:
114: # strip leading and trailing spaces.
115:
116: $value =~ s/^\s*//g;
117: $value =~ s/\s*$//g;
118:
119: # All alphas in the right range?
120: if ($value !~ /^[A-J,a-j]+$/) {
121: return "Invalid letter code $value must only contain A-J";
122: }
123: if (length($value) != $num_letters) {
124: return "Letter code $value has incorrect number of letters (correct = $num_letters)";
125: }
126: return undef;
127: }
128:
129: # Determine if a code entered by the user in a helper is valid.
130: # valid depends on the code type and the type of code selected.
131: # The type of code selected can either be numeric or
132: # Alphabetic. If alphabetic, the code, in fact is a simple
133: # substitution cipher for the actual numeric code: 0->A, 1->B ...
134: # We'll be nice and be case insensitive for alpha codes.
135: # Parameters:
136: # code_value - the value of the code the user typed in.
137: # code_option - The code type selected from the set in the scantron format
138: # table.
139: # Returns:
140: # undef - The code is valid.
141: # other - An error message indicating what's wrong.
142: #
143: sub is_code_valid {
144: my ($code_value, $code_option) = @_;
145: my ($code_type, $code_length) = ('letter', 6); # defaults.
146: open(FG, $Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
147: foreach my $line (<FG>) {
148: my ($name, $type, $length) = (split(/:/, $line))[0,2,4];
149: if($name eq $code_option) {
150: $code_length = $length;
151: if($type eq 'number') {
152: $code_type = 'number';
153: }
154: }
155: }
156: my $valid;
157: if ($code_type eq 'number') {
158: return &is_valid_numeric_code($code_value, $code_length);
159: } else {
160: return &is_valid_alpha_code($code_value, $code_length);
161: }
162:
163: }
164:
165: # Compare two students by name. The students are in the form
166: # returned by the helper:
167: # user:domain:section:last, first:status
168: # This is a helper function for the perl sort built-in therefore:
169: # Implicit Inputs:
170: # $a - The first element to compare (global)
171: # $b - The second element to compare (global)
172: # Returns:
173: # -1 - $a < $b
174: # 0 - $a == $b
175: # +1 - $a > $b
176: # Note that the initial comparison is done on the last names with the
177: # first names only used to break the tie.
178: #
179: #
180: sub compare_names {
181: # First split the names up into the primary fields.
182:
183: my ($u1, $d1, $s1, $n1, $stat1) = split(/:/, $a);
184: my ($u2, $d2, $s2, $n2, $stat2) = split(/:/, $b);
185:
186: # Now split the last name and first name of each n:
187: #
188:
189: my ($l1,$f1) = split(/,/, $n1);
190: my ($l2,$f2) = split(/,/, $n2);
191:
192: # We don't bother to remove the leading/trailing whitespace from the
193: # firstname, unless the last names compare identical.
194:
195: if($l1 lt $l2) {
196: return -1;
197: }
198: if($l1 gt $l2) {
199: return 1;
200: }
201:
202: # Break the tie on the first name, but there are leading (possibly trailing
203: # whitespaces to get rid of first
204: #
205: $f1 =~ s/^\s+//; # Remove leading...
206: $f1 =~ s/\s+$//; # Trailing spaces from first 1...
207:
208: $f2 =~ s/^\s+//;
209: $f2 =~ s/\s+$//; # And the same for first 2...
210:
211: if($f1 lt $f2) {
212: return -1;
213: }
214: if($f1 gt $f2) {
215: return 1;
216: }
217:
218: # Must be the same name.
219:
220: return 0;
221: }
222:
223: sub latex_header_footer_remove {
224: my $text = shift;
225: $text =~ s/\\end{document}//;
226: $text =~ s/\\documentclass([^&]*)\\begin{document}//;
227: return $text;
228: }
229:
230:
231: sub character_chart {
232: my $result = shift;
233: $result =~ s/&\#0?0?(7|9);//g;
234: $result =~ s/&\#0?(10|13);//g;
235: $result =~ s/&\#0?32;/ /g;
236: $result =~ s/&\#0?33;/!/g;
237: $result =~ s/&(\#0?34|quot);/\"/g;
238: $result =~ s/&\#0?35;/\\\#/g;
239: $result =~ s/&\#0?36;/\\\$/g;
240: $result =~ s/&\#0?37;/\\%/g;
241: $result =~ s/&(\#0?38|amp);/\\&/g;
242: $result =~ s/&\#(0?39|146);/\'/g;
243: $result =~ s/&\#0?40;/(/g;
244: $result =~ s/&\#0?41;/)/g;
245: $result =~ s/&\#0?42;/\*/g;
246: $result =~ s/&\#0?43;/\+/g;
247: $result =~ s/&\#(0?44|130);/,/g;
248: $result =~ s/&\#0?45;/-/g;
249: $result =~ s/&\#0?46;/\./g;
250: $result =~ s/&\#0?47;/\//g;
251: $result =~ s/&\#0?48;/0/g;
252: $result =~ s/&\#0?49;/1/g;
253: $result =~ s/&\#0?50;/2/g;
254: $result =~ s/&\#0?51;/3/g;
255: $result =~ s/&\#0?52;/4/g;
256: $result =~ s/&\#0?53;/5/g;
257: $result =~ s/&\#0?54;/6/g;
258: $result =~ s/&\#0?55;/7/g;
259: $result =~ s/&\#0?56;/8/g;
260: $result =~ s/&\#0?57;/9/g;
261: $result =~ s/&\#0?58;/:/g;
262: $result =~ s/&\#0?59;/;/g;
263: $result =~ s/&(\#0?60|lt|\#139);/\$<\$/g;
264: $result =~ s/&\#0?61;/\\ensuremath\{=\}/g;
265: $result =~ s/&(\#0?62|gt|\#155);/\\ensuremath\{>\}/g;
266: $result =~ s/&\#0?63;/\?/g;
267: $result =~ s/&\#0?65;/A/g;
268: $result =~ s/&\#0?66;/B/g;
269: $result =~ s/&\#0?67;/C/g;
270: $result =~ s/&\#0?68;/D/g;
271: $result =~ s/&\#0?69;/E/g;
272: $result =~ s/&\#0?70;/F/g;
273: $result =~ s/&\#0?71;/G/g;
274: $result =~ s/&\#0?72;/H/g;
275: $result =~ s/&\#0?73;/I/g;
276: $result =~ s/&\#0?74;/J/g;
277: $result =~ s/&\#0?75;/K/g;
278: $result =~ s/&\#0?76;/L/g;
279: $result =~ s/&\#0?77;/M/g;
280: $result =~ s/&\#0?78;/N/g;
281: $result =~ s/&\#0?79;/O/g;
282: $result =~ s/&\#0?80;/P/g;
283: $result =~ s/&\#0?81;/Q/g;
284: $result =~ s/&\#0?82;/R/g;
285: $result =~ s/&\#0?83;/S/g;
286: $result =~ s/&\#0?84;/T/g;
287: $result =~ s/&\#0?85;/U/g;
288: $result =~ s/&\#0?86;/V/g;
289: $result =~ s/&\#0?87;/W/g;
290: $result =~ s/&\#0?88;/X/g;
291: $result =~ s/&\#0?89;/Y/g;
292: $result =~ s/&\#0?90;/Z/g;
293: $result =~ s/&\#0?91;/[/g;
294: $result =~ s/&\#0?92;/\\ensuremath\{\\setminus\}/g;
295: $result =~ s/&\#0?93;/]/g;
296: $result =~ s/&\#(0?94|136);/\\ensuremath\{\\wedge\}/g;
297: $result =~ s/&\#(0?95|138|154);/\\underline{\\makebox[2mm]{\\strut}}/g;
298: $result =~ s/&\#(0?96|145);/\`/g;
299: $result =~ s/&\#0?97;/a/g;
300: $result =~ s/&\#0?98;/b/g;
301: $result =~ s/&\#0?99;/c/g;
302: $result =~ s/&\#100;/d/g;
303: $result =~ s/&\#101;/e/g;
304: $result =~ s/&\#102;/f/g;
305: $result =~ s/&\#103;/g/g;
306: $result =~ s/&\#104;/h/g;
307: $result =~ s/&\#105;/i/g;
308: $result =~ s/&\#106;/j/g;
309: $result =~ s/&\#107;/k/g;
310: $result =~ s/&\#108;/l/g;
311: $result =~ s/&\#109;/m/g;
312: $result =~ s/&\#110;/n/g;
313: $result =~ s/&\#111;/o/g;
314: $result =~ s/&\#112;/p/g;
315: $result =~ s/&\#113;/q/g;
316: $result =~ s/&\#114;/r/g;
317: $result =~ s/&\#115;/s/g;
318: $result =~ s/&\#116;/t/g;
319: $result =~ s/&\#117;/u/g;
320: $result =~ s/&\#118;/v/g;
321: $result =~ s/&\#119;/w/g;
322: $result =~ s/&\#120;/x/g;
323: $result =~ s/&\#121;/y/g;
324: $result =~ s/&\#122;/z/g;
325: $result =~ s/&\#123;/\\{/g;
326: $result =~ s/&\#124;/\|/g;
327: $result =~ s/&\#125;/\\}/g;
328: $result =~ s/&\#126;/\~/g;
329: $result =~ s/&\#131;/\\textflorin /g;
330: $result =~ s/&\#132;/\"/g;
331: $result =~ s/&\#133;/\\ensuremath\{\\ldots\}/g;
332: $result =~ s/&\#134;/\\ensuremath\{\\dagger\}/g;
333: $result =~ s/&\#135;/\\ensuremath\{\\ddagger\}/g;
334: $result =~ s/&\#137;/\\textperthousand /g;
335: $result =~ s/&\#140;/{\\OE}/g;
336: $result =~ s/&\#147;/\`\`/g;
337: $result =~ s/&\#148;/\'\'/g;
338: $result =~ s/&\#149;/\\ensuremath\{\\bullet\}/g;
339: $result =~ s/&\#150;/--/g;
340: $result =~ s/&\#151;/---/g;
341: $result =~ s/&\#152;/\\ensuremath\{\\sim\}/g;
342: $result =~ s/&\#153;/\\texttrademark /g;
343: $result =~ s/&\#156;/\\oe/g;
344: $result =~ s/&\#159;/\\\"Y/g;
345: $result =~ s/&(\#160|nbsp);/~/g;
346: $result =~ s/&(\#161|iexcl);/!\`/g;
347: $result =~ s/&(\#162|cent);/\\textcent /g;
348: $result =~ s/&(\#163|pound);/\\pounds /g;
349: $result =~ s/&(\#164|curren);/\\textcurrency /g;
350: $result =~ s/&(\#165|yen);/\\textyen /g;
351: $result =~ s/&(\#166|brvbar);/\\textbrokenbar /g;
352: $result =~ s/&(\#167|sect);/\\textsection /g;
353: $result =~ s/&(\#168|uml);/\\texthighdieresis /g;
354: $result =~ s/&(\#169|copy);/\\copyright /g;
355: $result =~ s/&(\#170|ordf);/\\textordfeminine /g;
356: $result =~ s/&(\#172|not);/\\ensuremath\{\\neg\}/g;
357: $result =~ s/&(\#173|shy);/ - /g;
358: $result =~ s/&(\#174|reg);/\\textregistered /g;
359: $result =~ s/&(\#175|macr);/\\ensuremath\{^{-}\}/g;
360: $result =~ s/&(\#176|deg);/\\ensuremath\{^{\\circ}\}/g;
361: $result =~ s/&(\#177|plusmn);/\\ensuremath\{\\pm\}/g;
362: $result =~ s/&(\#178|sup2);/\\ensuremath\{^2\}/g;
363: $result =~ s/&(\#179|sup3);/\\ensuremath\{^3\}/g;
364: $result =~ s/&(\#180|acute);/\\textacute /g;
365: $result =~ s/&(\#181|micro);/\\ensuremath\{\\mu\}/g;
366: $result =~ s/&(\#182|para);/\\P/g;
367: $result =~ s/&(\#183|middot);/\\ensuremath\{\\cdot\}/g;
368: $result =~ s/&(\#184|cedil);/\\c{\\strut}/g;
369: $result =~ s/&(\#185|sup1);/\\ensuremath\{^1\}/g;
370: $result =~ s/&(\#186|ordm);/\\textordmasculine /g;
371: $result =~ s/&(\#188|frac14);/\\textonequarter /g;
372: $result =~ s/&(\#189|frac12);/\\textonehalf /g;
373: $result =~ s/&(\#190|frac34);/\\textthreequarters /g;
374: $result =~ s/&(\#191|iquest);/?\`/g;
375: $result =~ s/&(\#192|Agrave);/\\\`{A}/g;
376: $result =~ s/&(\#193|Aacute);/\\\'{A}/g;
377: $result =~ s/&(\#194|Acirc);/\\^{A}/g;
378: $result =~ s/&(\#195|Atilde);/\\~{A}/g;
379: $result =~ s/&(\#196|Auml);/\\\"{A}/g;
380: $result =~ s/&(\#197|Aring);/{\\AA}/g;
381: $result =~ s/&(\#198|AElig);/{\\AE}/g;
382: $result =~ s/&(\#199|Ccedil);/\\c{c}/g;
383: $result =~ s/&(\#200|Egrave);/\\\`{E}/g;
384: $result =~ s/&(\#201|Eacute);/\\\'{E}/g;
385: $result =~ s/&(\#202|Ecirc);/\\^{E}/g;
386: $result =~ s/&(\#203|Euml);/\\\"{E}/g;
387: $result =~ s/&(\#204|Igrave);/\\\`{I}/g;
388: $result =~ s/&(\#205|Iacute);/\\\'{I}/g;
389: $result =~ s/&(\#206|Icirc);/\\^{I}/g;
390: $result =~ s/&(\#207|Iuml);/\\\"{I}/g;
391: $result =~ s/&(\#209|Ntilde);/\\~{N}/g;
392: $result =~ s/&(\#210|Ograve);/\\\`{O}/g;
393: $result =~ s/&(\#211|Oacute);/\\\'{O}/g;
394: $result =~ s/&(\#212|Ocirc);/\\^{O}/g;
395: $result =~ s/&(\#213|Otilde);/\\~{O}/g;
396: $result =~ s/&(\#214|Ouml);/\\\"{O}/g;
397: $result =~ s/&(\#215|times);/\\ensuremath\{\\times\}/g;
398: $result =~ s/&(\#216|Oslash);/{\\O}/g;
399: $result =~ s/&(\#217|Ugrave);/\\\`{U}/g;
400: $result =~ s/&(\#218|Uacute);/\\\'{U}/g;
401: $result =~ s/&(\#219|Ucirc);/\\^{U}/g;
402: $result =~ s/&(\#220|Uuml);/\\\"{U}/g;
403: $result =~ s/&(\#221|Yacute);/\\\'{Y}/g;
404: $result =~ s/&(\#223|szlig);/{\\ss}/g;
405: $result =~ s/&(\#224|agrave);/\\\`{a}/g;
406: $result =~ s/&(\#225|aacute);/\\\'{a}/g;
407: $result =~ s/&(\#226|acirc);/\\^{a}/g;
408: $result =~ s/&(\#227|atilde);/\\~{a}/g;
409: $result =~ s/&(\#228|auml);/\\\"{a}/g;
410: $result =~ s/&(\#229|aring);/{\\aa}/g;
411: $result =~ s/&(\#230|aelig);/{\\ae}/g;
412: $result =~ s/&(\#231|ccedil);/\\c{c}/g;
413: $result =~ s/&(\#232|egrave);/\\\`{e}/g;
414: $result =~ s/&(\#233|eacute);/\\\'{e}/g;
415: $result =~ s/&(\#234|ecirc);/\\^{e}/g;
416: $result =~ s/&(\#235|euml);/\\\"{e}/g;
417: $result =~ s/&(\#236|igrave);/\\\`{i}/g;
418: $result =~ s/&(\#237|iacute);/\\\'{i}/g;
419: $result =~ s/&(\#238|icirc);/\\^{i}/g;
420: $result =~ s/&(\#239|iuml);/\\\"{i}/g;
421: $result =~ s/&(\#240|eth);/\\ensuremath\{\\partial\}/g;
422: $result =~ s/&(\#241|ntilde);/\\~{n}/g;
423: $result =~ s/&(\#242|ograve);/\\\`{o}/g;
424: $result =~ s/&(\#243|oacute);/\\\'{o}/g;
425: $result =~ s/&(\#244|ocirc);/\\^{o}/g;
426: $result =~ s/&(\#245|otilde);/\\~{o}/g;
427: $result =~ s/&(\#246|ouml);/\\\"{o}/g;
428: $result =~ s/&(\#247|divide);/\\ensuremath\{\\div\}/g;
429: $result =~ s/&(\#248|oslash);/{\\o}/g;
430: $result =~ s/&(\#249|ugrave);/\\\`{u}/g;
431: $result =~ s/&(\#250|uacute);/\\\'{u}/g;
432: $result =~ s/&(\#251|ucirc);/\\^{u}/g;
433: $result =~ s/&(\#252|uuml);/\\\"{u}/g;
434: $result =~ s/&(\#253|yacute);/\\\'{y}/g;
435: $result =~ s/&(\#255|yuml);/\\\"{y}/g;
436: $result =~ s/&\#295;/\\ensuremath\{\\hbar\}/g;
437: $result =~ s/&\#952;/\\ensuremath\{\\theta\}/g;
438: #Greek Alphabet
439: $result =~ s/&(alpha|\#945);/\\ensuremath\{\\alpha\}/g;
440: $result =~ s/&(beta|\#946);/\\ensuremath\{\\beta\}/g;
441: $result =~ s/&(gamma|\#947);/\\ensuremath\{\\gamma\}/g;
442: $result =~ s/&(delta|\#948);/\\ensuremath\{\\delta\}/g;
443: $result =~ s/&(epsilon|\#949);/\\ensuremath\{\\epsilon\}/g;
444: $result =~ s/&(zeta|\#950);/\\ensuremath\{\\zeta\}/g;
445: $result =~ s/&(eta|\#951);/\\ensuremath\{\\eta\}/g;
446: $result =~ s/&(theta|\#952);/\\ensuremath\{\\theta\}/g;
447: $result =~ s/&(iota|\#953);/\\ensuremath\{\\iota\}/g;
448: $result =~ s/&(kappa|\#954);/\\ensuremath\{\\kappa\}/g;
449: $result =~ s/&(lambda|\#955);/\\ensuremath\{\\lambda\}/g;
450: $result =~ s/&(mu|\#956);/\\ensuremath\{\\mu\}/g;
451: $result =~ s/&(nu|\#957);/\\ensuremath\{\\nu\}/g;
452: $result =~ s/&(xi|\#958);/\\ensuremath\{\\xi\}/g;
453: $result =~ s/&(omicron|\#959);/o/g;
454: $result =~ s/&(pi|\#960);/\\ensuremath\{\\pi\}/g;
455: $result =~ s/&(rho|\#961);/\\ensuremath\{\\rho\}/g;
456: $result =~ s/&(sigma|\#963);/\\ensuremath\{\\sigma\}/g;
457: $result =~ s/&(tau|\#964);/\\ensuremath\{\\tau\}/g;
458: $result =~ s/&(upsilon|\#965);/\\ensuremath\{\\upsilon\}/g;
459: $result =~ s/&(phi|\#966);/\\ensuremath\{\\phi\}/g;
460: $result =~ s/&(chi|\#967);/\\ensuremath\{\\chi\}/g;
461: $result =~ s/&(psi|\#968);/\\ensuremath\{\\psi\}/g;
462: $result =~ s/&(omega|\#969);/\\ensuremath\{\\omega\}/g;
463: $result =~ s/&(thetasym|\#977);/\\ensuremath\{\\vartheta\}/g;
464: $result =~ s/&(piv|\#982);/\\ensuremath\{\\varpi\}/g;
465: $result =~ s/&(Alpha|\#913);/A/g;
466: $result =~ s/&(Beta|\#914);/B/g;
467: $result =~ s/&(Gamma|\#915);/\\ensuremath\{\\Gamma\}/g;
468: $result =~ s/&(Delta|\#916);/\\ensuremath\{\\Delta\}/g;
469: $result =~ s/&(Epsilon|\#917);/E/g;
470: $result =~ s/&(Zeta|\#918);/Z/g;
471: $result =~ s/&(Eta|\#919);/H/g;
472: $result =~ s/&(Theta|\#920);/\\ensuremath\{\\Theta\}/g;
473: $result =~ s/&(Iota|\#921);/I/g;
474: $result =~ s/&(Kappa|\#922);/K/g;
475: $result =~ s/&(Lambda|\#923);/\\ensuremath\{\\Lambda\}/g;
476: $result =~ s/&(Mu|\#924);/M/g;
477: $result =~ s/&(Nu|\#925);/N/g;
478: $result =~ s/&(Xi|\#926);/\\ensuremath\{\\Xi\}/g;
479: $result =~ s/&(Omicron|\#927);/O/g;
480: $result =~ s/&(Pi|\#928);/\\ensuremath\{\\Pi\}/g;
481: $result =~ s/&(Rho|\#929);/P/g;
482: $result =~ s/&(Sigma|\#931);/\\ensuremath\{\\Sigma\}/g;
483: $result =~ s/&(Tau|\#932);/T/g;
484: $result =~ s/&(Upsilon|\#933);/\\ensuremath\{\\Upsilon\}/g;
485: $result =~ s/&(Phi|\#934);/\\ensuremath\{\\Phi\}/g;
486: $result =~ s/&(Chi|\#935);/X/g;
487: $result =~ s/&(Psi|\#936);/\\ensuremath\{\\Psi\}/g;
488: $result =~ s/&(Omega|\#937);/\\ensuremath\{\\Omega\}/g;
489: #Arrows (extended HTML 4.01)
490: $result =~ s/&(larr|\#8592);/\\ensuremath\{\\leftarrow\}/g;
491: $result =~ s/&(uarr|\#8593);/\\ensuremath\{\\uparrow\}/g;
492: $result =~ s/&(rarr|\#8594);/\\ensuremath\{\\rightarrow\}/g;
493: $result =~ s/&(darr|\#8595);/\\ensuremath\{\\downarrow\}/g;
494: $result =~ s/&(harr|\#8596);/\\ensuremath\{\\leftrightarrow\}/g;
495: $result =~ s/&(lArr|\#8656);/\\ensuremath\{\\Leftarrow\}/g;
496: $result =~ s/&(uArr|\#8657);/\\ensuremath\{\\Uparrow\}/g;
497: $result =~ s/&(rArr|\#8658);/\\ensuremath\{\\Rightarrow\}/g;
498: $result =~ s/&(dArr|\#8659);/\\ensuremath\{\\Downarrow\}/g;
499: $result =~ s/&(hArr|\#8660);/\\ensuremath\{\\Leftrightarrow\}/g;
500: #Mathematical Operators (extended HTML 4.01)
501: $result =~ s/&(forall|\#8704);/\\ensuremath\{\\forall\}/g;
502: $result =~ s/&(part|\#8706);/\\ensuremath\{\\partial\}/g;
503: $result =~ s/&(exist|\#8707);/\\ensuremath\{\\exists\}/g;
504: $result =~ s/&(empty|\#8709);/\\ensuremath\{\\emptyset\}/g;
505: $result =~ s/&(nabla|\#8711);/\\ensuremath\{\\nabla\}/g;
506: $result =~ s/&(isin|\#8712);/\\ensuremath\{\\in\}/g;
507: $result =~ s/&(notin|\#8713);/\\ensuremath\{\\notin\}/g;
508: $result =~ s/&(ni|\#8715);/\\ensuremath\{\\ni\}/g;
509: $result =~ s/&(prod|\#8719);/\\ensuremath\{\\prod\}/g;
510: $result =~ s/&(sum|\#8721);/\\ensuremath\{\\sum\}/g;
511: $result =~ s/&(minus|\#8722);/\\ensuremath\{-\}/g;
512: $result =~ s/–/\\ensuremath\{-\}/g;
513: $result =~ s/&(lowast|\#8727);/\\ensuremath\{*\}/g;
514: $result =~ s/&(radic|\#8730);/\\ensuremath\{\\surd\}/g;
515: $result =~ s/&(prop|\#8733);/\\ensuremath\{\\propto\}/g;
516: $result =~ s/&(infin|\#8734);/\\ensuremath\{\\infty\}/g;
517: $result =~ s/&(ang|\#8736);/\\ensuremath\{\\angle\}/g;
518: $result =~ s/&(and|\#8743);/\\ensuremath\{\\wedge\}/g;
519: $result =~ s/&(or|\#8744);/\\ensuremath\{\\vee\}/g;
520: $result =~ s/&(cap|\#8745);/\\ensuremath\{\\cap\}/g;
521: $result =~ s/&(cup|\#8746);/\\ensuremath\{\\cup\}/g;
522: $result =~ s/&(int|\#8747);/\\ensuremath\{\\int\}/g;
523: $result =~ s/&(sim|\#8764);/\\ensuremath\{\\sim\}/g;
524: $result =~ s/&(cong|\#8773);/\\ensuremath\{\\cong\}/g;
525: $result =~ s/&(asymp|\#8776);/\\ensuremath\{\\approx\}/g;
526: $result =~ s/&(ne|\#8800);/\\ensuremath\{\\not=\}/g;
527: $result =~ s/&(equiv|\#8801);/\\ensuremath\{\\equiv\}/g;
528: $result =~ s/&(le|\#8804);/\\ensuremath\{\\leq\}/g;
529: $result =~ s/&(ge|\#8805);/\\ensuremath\{\\geq\}/g;
530: $result =~ s/&(sub|\#8834);/\\ensuremath\{\\subset\}/g;
531: $result =~ s/&(sup|\#8835);/\\ensuremath\{\\supset\}/g;
532: $result =~ s/&(nsub|\#8836);/\\ensuremath\{\\not\\subset\}/g;
533: $result =~ s/&(sube|\#8838);/\\ensuremath\{\\subseteq\}/g;
534: $result =~ s/&(supe|\#8839);/\\ensuremath\{\\supseteq\}/g;
535: $result =~ s/&(oplus|\#8853);/\\ensuremath\{\\oplus\}/g;
536: $result =~ s/&(otimes|\#8855);/\\ensuremath\{\\otimes\}/g;
537: $result =~ s/&(perp|\#8869);/\\ensuremath\{\\perp\}/g;
538: $result =~ s/&(sdot|\#8901);/\\ensuremath\{\\cdot\}/g;
539: #Geometric Shapes (extended HTML 4.01)
540: $result =~ s/&(loz|\#9674);/\\ensuremath\{\\Diamond\}/g;
541: #Miscellaneous Symbols (extended HTML 4.01)
542: $result =~ s/&(spades|\#9824);/\\ensuremath\{\\spadesuit\}/g;
543: $result =~ s/&(clubs|\#9827);/\\ensuremath\{\\clubsuit\}/g;
544: $result =~ s/&(hearts|\#9829);/\\ensuremath\{\\heartsuit\}/g;
545: $result =~ s/&(diams|\#9830);/\\ensuremath\{\\diamondsuit\}/g;
546: return $result;
547: }
548:
549:
550: #width, height, oddsidemargin, evensidemargin, topmargin
551: my %page_formats=
552: ('letter' => {
553: 'book' => {
554: '1' => [ '7.1 in','9.8 in', '-0.57 in','-0.57 in','0.7 cm'],
555: '2' => ['3.66 in','9.8 in', '-0.57 in','-0.57 in','0.7 cm']
556: },
557: 'album' => {
558: '1' => [ '8.8 in', '6.8 in','-40 pt in', '-60 pt','1 cm'],
559: '2' => [ '4.4 in', '6.8 in','-0.5 in', '-1.5 in','3.5 in']
560: },
561: },
562: 'legal' => {
563: 'book' => {
564: '1' => ['7.1 in','13 in',,'-0.57 in','-0.57 in','-0.5 in'],
565: '2' => ['3.16 in','13 in','-0.57 in','-0.57 in','-0.5 in']
566: },
567: 'album' => {
568: '1' => ['12 in','7.1 in',,'-0.57 in','-0.57 in','-0.5 in'],
569: '2' => ['6.0 in','7.1 in','-1 in','-1 in','5 in']
570: },
571: },
572: 'tabloid' => {
573: 'book' => {
574: '1' => ['9.8 in','16 in','-0.57 in','-0.57 in','-0.5 in'],
575: '2' => ['4.9 in','16 in','-0.57 in','-0.57 in','-0.5 in']
576: },
577: 'album' => {
578: '1' => ['16 in','9.8 in','-0.57 in','-0.57 in','-0.5 in'],
579: '2' => ['16 in','4.9 in','-0.57 in','-0.57 in','-0.5 in']
580: },
581: },
582: 'executive' => {
583: 'book' => {
584: '1' => ['6.8 in','9 in','-0.57 in','-0.57 in','1.2 in'],
585: '2' => ['3.1 in','9 in','-0.57 in','-0.57 in','1.2 in']
586: },
587: 'album' => {
588: '1' => [],
589: '2' => []
590: },
591: },
592: 'a2' => {
593: 'book' => {
594: '1' => [],
595: '2' => []
596: },
597: 'album' => {
598: '1' => [],
599: '2' => []
600: },
601: },
602: 'a3' => {
603: 'book' => {
604: '1' => [],
605: '2' => []
606: },
607: 'album' => {
608: '1' => [],
609: '2' => []
610: },
611: },
612: 'a4' => {
613: 'book' => {
614: '1' => ['176 mm','272 mm','-40 pt in','-60 pt','-0.5 in'],
615: '2' => [ '91 mm','272 mm','-40 pt in','-60 pt','-0.5 in']
616: },
617: 'album' => {
618: '1' => ['8.5 in','7.7 in','-40 pt in','-60 pt','0 in'],
619: '2' => ['3.9 in','7.7 in','-40 pt in','-60 pt','0 in']
620: },
621: },
622: 'a5' => {
623: 'book' => {
624: '1' => [],
625: '2' => []
626: },
627: 'album' => {
628: '1' => [],
629: '2' => []
630: },
631: },
632: 'a6' => {
633: 'book' => {
634: '1' => [],
635: '2' => []
636: },
637: 'album' => {
638: '1' => [],
639: '2' => []
640: },
641: },
642: );
643:
644: sub page_format {
645: #
646: #Supported paper format: "Letter [8 1/2x11 in]", "Legal [8 1/2x14 in]",
647: # "Ledger/Tabloid [11x17 in]", "Executive [7 1/2x10 in]",
648: # "A2 [420x594 mm]", "A3 [297x420 mm]",
649: # "A4 [210x297 mm]", "A5 [148x210 mm]",
650: # "A6 [105x148 mm]"
651: #
652: my ($papersize,$layout,$numberofcolumns) = @_;
653: return @{$page_formats{$papersize}->{$layout}->{$numberofcolumns}};
654: }
655:
656:
657: sub get_name {
658: my ($uname,$udom)=@_;
659: if (!defined($uname)) { $uname=$env{'user.name'}; }
660: if (!defined($udom)) { $udom=$env{'user.domain'}; }
661: my $plainname=&Apache::loncommon::plainname($uname,$udom);
662: if ($plainname=~/^\s*$/) { $plainname=$uname.'@'.$udom; }
663: $plainname=&Apache::lonxml::latex_special_symbols($plainname,'header');
664: return $plainname;
665: }
666:
667: sub get_course {
668: my $courseidinfo;
669: if (defined($env{'request.course.id'})) {
670: $courseidinfo = &Apache::lonxml::latex_special_symbols(&Apache::lonnet::unescape($env{'course.'.$env{'request.course.id'}.'.description'}),'header');
671: }
672: return $courseidinfo;
673: }
674:
675: sub page_format_transformation {
676: my ($papersize,$layout,$numberofcolumns,$choice,$text,$assignment,$tableofcontents,$indexlist,$selectionmade) = @_;
677: my ($textwidth,$textheight,$oddoffset,$evenoffset,$topmargin);
678: if ($selectionmade eq '4') {
679: $assignment='Problems from the Whole Course';
680: } else {
681: $assignment=&Apache::lonxml::latex_special_symbols($assignment,'header');
682: }
683: ($textwidth,$textheight,$oddoffset,$evenoffset,$topmargin) = &page_format($papersize,$layout,$numberofcolumns,$topmargin);
684: my $name = &get_name();
685: my $courseidinfo = &get_course();
686: if (defined($courseidinfo)) { $courseidinfo=' - '.$courseidinfo }
687: my $topmargintoinsert = '';
688: if ($topmargin ne '0') {$topmargintoinsert='\setlength{\topmargin}{'.$topmargin.'}';}
689: my $fancypagestatement='';
690: if ($numberofcolumns eq '2') {
691: $fancypagestatement="\\fancyhead{}\\fancyhead[LO]{\\textbf{$name} $courseidinfo \\hfill \\thepage \\\\ \\textit{$assignment}}";
692: } else {
693: $fancypagestatement="\\rhead{}\\chead{}\\lhead{\\textbf{$name} $courseidinfo \\hfill \\thepage \\\\ \\textit{$assignment}}";
694: }
695: if ($layout eq 'album') {
696: $text =~ s/\\begin{document}/\\setlength{\\oddsidemargin}{$oddoffset}\\setlength{\\evensidemargin}{$evenoffset}$topmargintoinsert\n\\setlength{\\textwidth}{$textwidth}\\setlength{\\textheight}{$textheight}\\setlength{\\textfloatsep}{8pt plus 2\.0pt minus 4\.0pt}\n\\newlength{\\minipagewidth}\\setlength{\\minipagewidth}{\\textwidth\/\$number_of_columns-0\.2cm}\\usepackage{fancyhdr}\\addtolength{\\headheight}{\\baselineskip}\n\\pagestyle{fancy}$fancypagestatement\\begin{document}\\voffset=-0\.8 cm\\setcounter{page}{1}\n /;
697: } elsif ($layout eq 'book') {
698: if ($choice ne 'All class print') {
699: $text =~ s/\\begin{document}/\\textheight $textheight\\oddsidemargin = $evenoffset\\evensidemargin = $evenoffset $topmargintoinsert\n\\textwidth= $textwidth\\newlength{\\minipagewidth}\\setlength{\\minipagewidth}{\\textwidth\/\$number_of_columns-0\.2cm}\n\\renewcommand{\\ref}{\\keephidden\}\\usepackage{fancyhdr}\\addtolength{\\headheight}{\\baselineskip}\\pagestyle{fancy}$fancypagestatement\\begin{document}\n\\voffset=-0\.8 cm\\setcounter{page}{1}\n/;
700: } else {
701: $text =~ s/\\pagestyle{fancy}\\rhead{}\\chead{}\s*\\begin{document}/\\textheight = $textheight\\oddsidemargin = $evenoffset\n\\evensidemargin = $evenoffset $topmargintoinsert\\textwidth= $textwidth\\newlength{\\minipagewidth}\n\\setlength{\\minipagewidth}{\\textwidth\/\$number_of_columns-0\.2cm}\\renewcommand{\\ref}{\\keephidden\}\\pagestyle{fancy}\\rhead{}\\chead{}\\begin{document}\\voffset=-0\.8cm\n\\setcounter{page}{1} \\vskip 5 mm\n /;
702: }
703: if ($papersize eq 'a4') {
704: $text =~ s/(\\begin{document})/$1\\special{papersize=210mm,297mm}/;
705: }
706: }
707: if ($tableofcontents eq 'yes') {$text=~s/(\\setcounter\{page\}\{1\})/$1 \\tableofcontents\\newpage /;}
708: if ($indexlist eq 'yes') {
709: $text=~s/(\\begin{document})/\\makeindex $1/;
710: $text=~s/(\\end{document})/\\strut\\\\\\strut\\printindex $1/;
711: }
712: return $text;
713: }
714:
715:
716: sub page_cleanup {
717: my $result = shift;
718:
719: $result =~ m/\\end{document}(\d*)$/;
720: my $number_of_columns = $1;
721: my $insert = '{';
722: for (my $id=1;$id<=$number_of_columns;$id++) { $insert .='l'; }
723: $insert .= '}';
724: $result =~ s/(\\begin{longtable})INSERTTHEHEADOFLONGTABLE\\endfirsthead\\endhead/$1$insert/g;
725: $result =~ s/&\s*REMOVETHEHEADOFLONGTABLE\\\\/\\\\/g;
726: return $result,$number_of_columns;
727: }
728:
729:
730: sub details_for_menu {
731: my ($helper)=@_;
732: my $postdata=$env{'form.postdata'};
733: if (!$postdata) { $postdata=$helper->{VARS}{'postdata'}; }
734: my $name_of_resource = &Apache::lonnet::gettitle($postdata);
735: my $symbolic = &Apache::lonnet::symbread($postdata);
736: my ($map,$id,$resource)=&Apache::lonnet::decode_symb($symbolic);
737: $map=&Apache::lonnet::clutter($map);
738: my $name_of_sequence = &Apache::lonnet::gettitle($map);
739: if ($name_of_sequence =~ /^\s*$/) {
740: $map =~ m|([^/]+)$|;
741: $name_of_sequence = $1;
742: }
743: my $name_of_map = &Apache::lonnet::gettitle($env{'request.course.uri'});
744: if ($name_of_map =~ /^\s*$/) {
745: $env{'request.course.uri'} =~ m|([^/]+)$|;
746: $name_of_map = $1;
747: }
748: return ($name_of_resource,$name_of_sequence,$name_of_map);
749: }
750:
751:
752: sub latex_corrections {
753: my ($number_of_columns,$result,$selectionmade,$answer_mode) = @_;
754:
755: # $result =~ s/\\includegraphics{/\\includegraphics\[width=\\minipagewidth\]{/g;
756: $result =~ s/\$number_of_columns/$number_of_columns/g;
757: if ($selectionmade eq '1' || $answer_mode eq 'only') {
758: $result =~ s/(\\end{document})/\\strut\\vskip 0 mm\\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/;
759: } else {
760: $result =~ s/(\\end{document})/\\strut\\vspace\*{-4 mm}\\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/;
761: }
762: $result =~ s/(\\end{longtable}\s*)(\\strut\\newline\\noindent\\makebox\[\\textwidth\/$number_of_columns\]\[b\]{\\hrulefill})/$2$1/g;
763: $result =~ s/(\\end{longtable}\s*)\\strut\\newline/$1/g;
764: #-- LaTeX corrections
765: my $first_comment = index($result,'<!--',0);
766: while ($first_comment != -1) {
767: my $end_comment = index($result,'-->',$first_comment);
768: substr($result,$first_comment,$end_comment-$first_comment+3) = '';
769: $first_comment = index($result,'<!--',$first_comment);
770: }
771: $result =~ s/^\s+$//gm; #remove empty lines
772: #removes more than one empty space
773: $result =~ s|(\s\s+)|($1=~/[\n\r]/)?"\n":" "|ge;
774: $result =~ s/\\\\\s*\\vskip/\\vskip/gm;
775: $result =~ s/\\\\\s*\\noindent\s*(\\\\)+/\\\\\\noindent /g;
776: $result =~ s/{\\par }\s*\\\\/\\\\/gm;
777: $result =~ s/\\\\\s+\[/ \[/g;
778: #conversion of html characters to LaTeX equivalents
779: if ($result =~ m/&(\w+|#\d+);/) {
780: $result = &character_chart($result);
781: }
782: $result =~ s/(\\end{tabular})\s*\\vskip 0 mm/$1/g;
783: $result =~ s/(\\begin{enumerate})\s*\\noindent/$1/g;
784:
785: return $result;
786: }
787:
788:
789: sub index_table {
790: my $currentURL = shift;
791: my $insex_string='';
792: $currentURL=~s/\.([^\/+])$/\.$1\.meta/;
793: $insex_string=&Apache::lonnet::metadata($currentURL,'keywords');
794: return $insex_string;
795: }
796:
797:
798: sub IndexCreation {
799: my ($texversion,$currentURL)=@_;
800: my @key_words=split(/,/,&index_table($currentURL));
801: my $chunk='';
802: my $st=index $texversion,'\addcontentsline{toc}{subsection}{';
803: if ($st>0) {
804: for (my $i=0;$i<3;$i++) {$st=(index $texversion,'}',$st+1);}
805: $chunk=substr($texversion,0,$st+1);
806: substr($texversion,0,$st+1)=' ';
807: }
808: foreach my $key_word (@key_words) {
809: if ($key_word=~/\S+/) {
810: $texversion=~s/\b($key_word)\b/$1 \\index{$key_word} /i;
811: }
812: }
813: if ($st>0) {substr($texversion,0,1)=$chunk;}
814: return $texversion;
815: }
816:
817: sub print_latex_header {
818: my $mode=shift;
819: my $output='\documentclass[letterpaper,twoside]{article}';
820: if (($mode eq 'batchmode') || (!$perm{'pav'})) {
821: $output.='\batchmode';
822: }
823: $output.='\newcommand{\keephidden}[1]{}\renewcommand{\deg}{$^{\circ}$}'."\n".
824: '\usepackage{multirow}'."\n".
825: '\usepackage{longtable}\usepackage{textcomp}\usepackage{makeidx}'."\n".
826: '\usepackage[dvips]{graphicx}\usepackage{epsfig}'."\n".
827: '\usepackage{wrapfig}'.
828: '\usepackage{picins}\usepackage{calc}'."\n".
829: '\newenvironment{choicelist}{\begin{list}{}{\setlength{\rightmargin}{0in}'."\n".
830: '\setlength{\leftmargin}{0.13in}\setlength{\topsep}{0.05in}'."\n".
831: '\setlength{\itemsep}{0.022in}\setlength{\parsep}{0in}'."\n".
832: '\setlength{\belowdisplayskip}{0.04in}\setlength{\abovedisplayskip}{0.05in}'."\n".
833: '\setlength{\abovedisplayshortskip}{-0.04in}'."\n".
834: '\setlength{\belowdisplayshortskip}{0.04in}}}{\end{list}}'."\n".
835: '\renewenvironment{theindex}{\begin{list}{}{{\vskip 1mm \noindent \large'."\n".
836: '\textbf{Index}} \newline \setlength{\rightmargin}{0in}'."\n".
837: '\setlength{\leftmargin}{0.13in}\setlength{\topsep}{0.01in}'."\n".
838: '\setlength{\itemsep}{0.1in}\setlength{\parsep}{-0.02in}'."\n".
839: '\setlength{\belowdisplayskip}{0.01in}\setlength{\abovedisplayskip}{0.01in}'."\n".
840: '\setlength{\abovedisplayshortskip}{-0.04in}'."\n".
841: '\setlength{\belowdisplayshortskip}{0.01in}}}{\end{list}}\begin{document}'."\n";
842: return $output;
843: }
844:
845: sub path_to_problem {
846: my ($urlp,$colwidth)=@_;
847: $urlp=&Apache::lonnet::clutter($urlp);
848:
849: my $newurlp = '';
850: $colwidth=~s/\s*mm\s*$//;
851: #characters average about 2 mm in width
852: if (length($urlp)*2 > $colwidth) {
853: my @elements = split('/',$urlp);
854: my $curlength=0;
855: foreach my $element (@elements) {
856: if ($element eq '') { next; }
857: if ($curlength+(length($element)*2) > $colwidth) {
858: $newurlp .= '|\vskip -1 mm \verb|';
859: $curlength=length($element)*2;
860: } else {
861: $curlength+=length($element)*2;
862: }
863: $newurlp.='/'.$element;
864: }
865: } else {
866: $newurlp=$urlp;
867: }
868: return '{\small\noindent\verb|'.$newurlp.'|\vskip 0 mm}';
869: }
870:
871: sub recalcto_mm {
872: my $textwidth=shift;
873: my $LaTeXwidth;
874: if ($textwidth=~/(-?\d+\.?\d*)\s*cm/) {
875: $LaTeXwidth = $1*10;
876: } elsif ($textwidth=~/(-?\d+\.?\d*)\s*mm/) {
877: $LaTeXwidth = $1;
878: } elsif ($textwidth=~/(-?\d+\.?\d*)\s*in/) {
879: $LaTeXwidth = $1*25.4;
880: }
881: $LaTeXwidth.=' mm';
882: return $LaTeXwidth;
883: }
884:
885: sub get_textwidth {
886: my ($helper,$LaTeXwidth)=@_;
887: my $textwidth=$LaTeXwidth;
888: if ($helper->{'VARS'}->{'pagesize.width'}=~/\d+/ &&
889: $helper->{'VARS'}->{'pagesize.widthunit'}=~/\w+/) {
890: $textwidth=&recalcto_mm($helper->{'VARS'}->{'pagesize.width'}.' '.
891: $helper->{'VARS'}->{'pagesize.widthunit'});
892: }
893: return $textwidth;
894: }
895:
896:
897: sub unsupported {
898: my ($currentURL,$mode,$symb)=@_;
899: if ($mode ne '') {$mode='\\'.$mode}
900: my $result.= &print_latex_header($mode);
901: if ($currentURL=~m|^(/adm/wrapper/)?ext/|) {
902: $currentURL=~s|^(/adm/wrapper/)?ext/|http://|;
903: my $title=&Apache::lonnet::gettitle($symb);
904: $title = &Apache::lonxml::latex_special_symbols($title);
905: $result.=' \strut \\\\ '.$title.' \strut \\\\ '.$currentURL.' ';
906: } else {
907: $result.=$currentURL;
908: }
909: $result.= '\vskip 0.5mm\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill} \end{document}';
910: return $result;
911: }
912:
913:
914: #
915: # List of recently generated print files
916: #
917: sub recently_generated {
918: my $r=shift;
919: my $prtspool=$r->dir_config('lonPrtDir');
920: my $zip_result;
921: my $pdf_result;
922: opendir(DIR,$prtspool);
923:
924: my @files =
925: grep(/^$env{'user.name'}_$env{'user.domain'}_printout_(\d+)_.*\.(pdf|zip)$/,readdir(DIR));
926: closedir(DIR);
927:
928: @files = sort {
929: my ($actime) = (stat($prtspool.'/'.$a))[10];
930: my ($bctime) = (stat($prtspool.'/'.$b))[10];
931: return $bctime <=> $actime;
932: } (@files);
933:
934: foreach my $filename (@files) {
935: my ($ext) = ($filename =~ m/(pdf|zip)$/);
936: my ($cdev,$cino,$cmode,$cnlink,
937: $cuid,$cgid,$crdev,$csize,
938: $catime,$cmtime,$cctime,
939: $cblksize,$cblocks)=stat($prtspool.'/'.$filename);
940: my $result="<a href='/prtspool/$filename'>".
941: &mt('Generated [_1] ([_2] bytes)',
942: &Apache::lonlocal::locallocaltime($cctime),$csize).
943: '</a><br />';
944: if ($ext eq 'pdf') { $pdf_result .= $result; }
945: if ($ext eq 'zip') { $zip_result .= $result; }
946: }
947: if ($zip_result) {
948: $r->print('<h4>'.&mt('Recently generated printout zip files')."</h4>\n"
949: .$zip_result);
950: }
951: if ($pdf_result) {
952: $r->print('<h4>'.&mt('Recently generated printouts')."</h4>\n"
953: .$pdf_result);
954: }
955: }
956:
957: #
958: # Retrieve the hash of page breaks.
959: #
960: # Inputs:
961: # helper - reference to helper object.
962: # Outputs
963: # A reference to a page break hash.
964: #
965: #
966:
967: sub get_page_breaks {
968: my ($helper) = @_;
969: my %page_breaks;
970:
971: foreach my $break (split /\|\|\|/, $helper->{'VARS'}->{'FINISHPAGE'}) {
972: $page_breaks{$break} = 1;
973: }
974:
975: return %page_breaks;
976: }
977:
978: sub output_data {
979: my ($r,$helper,$rparmhash) = @_;
980: my %parmhash = %$rparmhash;
981: my $resources_printed = '';
982: my $html=&Apache::lonxml::xmlbegin();
983: my $bodytag=&Apache::loncommon::bodytag('Preparing Printout');
984: $r->print(<<ENDPART);
985: $html
986: <head>
987: <script type="text/javascript" language="Javascript">
988: var editbrowser;
989: function openbrowser(formname,elementname,only,omit) {
990: var url = '/res/?';
991: if (editbrowser == null) {
992: url += 'launch=1&';
993: }
994: url += 'catalogmode=interactive&';
995: url += 'mode=parmset&';
996: url += 'form=' + formname + '&';
997: if (only != null) {
998: url += 'only=' + only + '&';
999: }
1000: if (omit != null) {
1001: url += 'omit=' + omit + '&';
1002: }
1003: url += 'element=' + elementname + '';
1004: var title = 'Browser';
1005: var options = 'scrollbars=1,resizable=1,menubar=0';
1006: options += ',width=700,height=600';
1007: editbrowser = open(url,title,options,'1');
1008: editbrowser.focus();
1009: }
1010: </script>
1011: <title>LON-CAPA output for printing</title>
1012: </head>
1013: $bodytag
1014: <p>
1015: Please stand by while processing your print request, this may take some time ...
1016: </p>
1017: ENDPART
1018:
1019:
1020:
1021: # fetch the pagebreaks and store them in the course environment
1022: # The page breaks will be pulled into the hash %page_breaks which is
1023: # indexed by symb and contains 1's for each break.
1024:
1025: $env{'form.pagebreaks'} = $helper->{'VARS'}->{'FINISHPAGE'};
1026: $env{'form.lastprinttype'} = $helper->{'VARS'}->{'PRINT_TYPE'};
1027: &Apache::loncommon::store_course_settings('print',
1028: {'pagebreaks' => 'scalar',
1029: 'lastprinttype' => 'scalar'});
1030:
1031: my %page_breaks = &get_page_breaks($helper);
1032:
1033: my $format_from_helper = $helper->{'VARS'}->{'FORMAT'};
1034: my ($result,$selectionmade) = ('','');
1035: my $number_of_columns = 1; #used only for pages to determine the width of the cell
1036: my @temporary_array=split /\|/,$format_from_helper;
1037: my ($laystyle,$numberofcolumns,$papersize)=@temporary_array;
1038: if ($laystyle eq 'L') {
1039: $laystyle='album';
1040: } else {
1041: $laystyle='book';
1042: }
1043: my ($textwidth,$textheight,$oddoffset,$evenoffset) = &page_format($papersize,$laystyle,$numberofcolumns);
1044: my $assignment = $env{'form.assignment'};
1045: my $LaTeXwidth=&recalcto_mm($textwidth);
1046: my @print_array=();
1047: my @student_names=();
1048:
1049: # Common settings for the %form has:
1050: # In some cases these settings get overriddent by specific cases, but the
1051: # settings are common enough to make it worthwhile factoring them out
1052: # here.
1053: #
1054: my %form;
1055: $form{'grade_target'} = 'tex';
1056: $form{'textwidth'} = &get_textwidth($helper, $LaTeXwidth);
1057:
1058: # If form.showallfoils is set, then request all foils be shown:
1059: # privilege will be enforced both by not allowing the
1060: # check box selecting this option to be presnt unless it's ok,
1061: # and by lonresponse's priv. check.
1062: # The if is here because lonresponse.pm only cares that
1063: # showallfoils is defined, not what the value is.
1064:
1065: if ($helper->{'VARS'}->{'showallfoils'} eq "1") {
1066: $form{'showallfoils'} = $helper->{'VARS'}->{'showallfoils'};
1067: }
1068:
1069: if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'current_document') {
1070: #-- single document - problem, page, html, xml, ...
1071: my ($currentURL,$cleanURL);
1072:
1073: if ($helper->{'VARS'}->{'construction'} ne '1') {
1074: #prints published resource
1075: $currentURL=$helper->{'VARS'}->{'postdata'};
1076: $cleanURL=&Apache::lonenc::check_decrypt($currentURL);
1077: } else {
1078: #prints resource from the construction space
1079: $currentURL='/'.$helper->{'VARS'}->{'filename'};
1080: if ($currentURL=~/([^?]+)/) {$currentURL=$1;}
1081: $cleanURL=$currentURL;
1082: }
1083: $selectionmade = 1;
1084: if ($cleanURL!~m|^/adm/|
1085: && $cleanURL=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)$/) {
1086: my $rndseed=time;
1087: my $texversion='';
1088: if ($helper->{'VARS'}->{'ANSWER_TYPE'} ne 'only') {
1089: my %moreenv;
1090: $moreenv{'request.filename'}=$cleanURL;
1091: if ($helper->{'VARS'}->{'style_file'}=~/\w/) {
1092: $moreenv{'construct.style'}=$helper->{'VARS'}->{'style_file'};
1093: my $dom = $env{'user.domain'};
1094: my $user = $env{'user.name'};
1095: my $put_result = &Apache::lonnet::put('environment',{'construct.style'=>$helper->{'VARS'}->{'style_file'}},$dom,$user);
1096: }
1097: if ($helper->{'VARS'}->{'probstatus'} eq 'exam') {$form{'problemtype'}='exam';}
1098: $form{'problem_split'}=$parmhash{'problem_stream_switch'};
1099: $form{'suppress_tries'}=$parmhash{'suppress_tries'};
1100: $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
1101: $form{'print_discussions'}=$helper->{'VARS'}->{'PRINT_DISCUSSIONS'};
1102: if ($helper->{'VARS'}->{'PRINT_DISCUSSIONS'} eq 'yes') {$form{'problem_split'}='yes';}
1103: if ($helper->{'VARS'}->{'curseed'}) {
1104: $rndseed=$helper->{'VARS'}->{'curseed'};
1105: }
1106: $form{'rndseed'}=$rndseed;
1107: &Apache::lonnet::appenv(%moreenv);
1108: &Apache::lonnet::delenv('form.counter');
1109: &Apache::lonxml::init_counter();
1110: &Apache::lonxml::store_counter();
1111: $resources_printed .= $currentURL.':';
1112: $texversion.=&Apache::lonnet::ssi($currentURL,%form);
1113: &Apache::lonnet::delenv('form.counter');
1114: &Apache::lonnet::delenv('request.filename');
1115: }
1116: if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
1117: ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
1118: $form{'problem_split'}=$parmhash{'problem_stream_switch'};
1119: $form{'grade_target'}='answer';
1120: $form{'answer_output_mode'}='tex';
1121: $form{'rndseed'}=$rndseed;
1122: if ($helper->{'VARS'}->{'probstatus'} eq 'exam') {
1123: $form{'problemtype'}='exam';
1124: }
1125: $resources_printed .= $currentURL.':';
1126: my $answer=&Apache::lonnet::ssi($currentURL,%form);
1127: if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
1128: $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
1129: } else {
1130: $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
1131: if ($helper->{'VARS'}->{'construction'} ne '1') {
1132: $texversion.='\vskip 0 mm \noindent\textbf{'.&Apache::lonnet::gettitle($helper->{'VARS'}->{'symb'}).'}\vskip 0 mm ';
1133: $texversion.=&path_to_problem($cleanURL,$LaTeXwidth);
1134: } else {
1135: $texversion.='\vskip 0 mm \noindent\textbf{Prints from construction space - there is no title.}\vskip 0 mm ';
1136: my $URLpath=$cleanURL;
1137: $URLpath=~s/~([^\/]+)/public_html\/$1\/$1/;
1138: $texversion.=&path_to_problem ($URLpath,$LaTeXwidth);
1139: }
1140: $texversion.='\vskip 1 mm '.$answer.'\end{document}';
1141: }
1142: }
1143: if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
1144: $texversion=&IndexCreation($texversion,$currentURL);
1145: }
1146: if ($helper->{'VARS'}->{'CONSTR_RESOURSE_URL'} eq 'yes') {
1147: $texversion=~s/(\\addcontentsline\{toc\}\{subsection\}\{[^\}]*\})/$1 URL: \\verb|$currentURL| \\strut\\\\\\strut /;
1148:
1149: }
1150: $result .= $texversion;
1151: if ($currentURL=~m/\.page\s*$/) {
1152: ($result,$number_of_columns) = &page_cleanup($result);
1153: }
1154: } elsif ($cleanURL!~m|^/adm/|
1155: && $currentURL=~/\.sequence$/ && $helper->{'VARS'}->{'construction'} eq '1') {
1156: #printing content of sequence from the construction space
1157: my $flag_latex_header_remove = 'NO';
1158: my $rndseed=time;
1159: if ($helper->{'VARS'}->{'curseed'}) {
1160: $rndseed=$helper->{'VARS'}->{'curseed'};
1161: }
1162: $currentURL=~s|\/~([^\/]+)\/|\/home\/$1\/public_html\/|;
1163: my $errtext=&Apache::lonratedt::mapread($currentURL);
1164: for (my $member=0;$member<=$#Apache::lonratedt::order;$member++) {
1165: $Apache::lonratedt::resources[$Apache::lonratedt::order[$member]]=~/^([^:]*):([^:]*):/;
1166: my $urlp=$2;
1167: if ($urlp=~/\.(problem|exam|quiz|assess|survey|form|library|xml|html|htm|xhtml|xhtm)$/) {
1168: my $texversion='';
1169: if ($helper->{'VARS'}->{'ANSWER_TYPE'} ne 'only') {
1170: $form{'problem_split'}=$parmhash{'problem_stream_switch'};
1171: $form{'suppress_tries'}=$parmhash{'suppress_tries'};
1172: $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
1173: $form{'rndseed'}=$rndseed;
1174: $resources_printed .=$urlp.':';
1175: $texversion=&Apache::lonnet::ssi($urlp,%form);
1176: }
1177: if((($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
1178: ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) &&
1179: ($urlp=~/\.(problem|exam|quiz|assess|survey|form|library|page)$/)) {
1180: # Don't permanently modify %$form...
1181: my %answerform = %form;
1182: $answerform{'grade_target'}='answer';
1183: $answerform{'answer_output_mode'}='tex';
1184: $answerform{'rndseed'}=$rndseed;
1185: $answerform{'problem_split'}=$parmhash{'problem_stream_switch'};
1186: if ($urlp=~/\/res\//) {$env{'request.state'}='published';}
1187: $resources_printed .= $urlp.':';
1188: my $answer=&Apache::lonnet::ssi($urlp,%answerform);
1189: if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
1190: $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
1191: } else {
1192: $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
1193: $texversion.='\vskip 0 mm \noindent\textbf{'.&Apache::lonnet::gettitle($helper->{'VARS'}->{'symb'}).'}\vskip 0 mm ';
1194: $texversion.=&path_to_problem($urlp,$LaTeXwidth);
1195: $texversion.='\vskip 1 mm '.$answer.'\end{document}';
1196: }
1197: }
1198: if ($flag_latex_header_remove ne 'NO') {
1199: $texversion = &latex_header_footer_remove($texversion);
1200: } else {
1201: $texversion =~ s/\\end{document}//;
1202: }
1203: if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
1204: $texversion=&IndexCreation($texversion,$urlp);
1205: }
1206: if ($helper->{'VARS'}->{'CONSTR_RESOURSE_URpL'} eq 'yes') {
1207: $texversion=~s/(\\addcontentsline\{toc\}\{subsection\}\{[^\}]*\})/$1 URL: \\verb|$urlp| \\strut\\\\\\strut /;
1208: }
1209: $result.=$texversion;
1210: $flag_latex_header_remove = 'YES';
1211: } elsif ($urlp=~/\.(sequence|page)$/) {
1212: $result.='\strut\newline\noindent Sequence/page '.$urlp.'\strut\newline\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill}\newline\noindent ';
1213: }
1214: }
1215: if ($helper->{VARS}->{'construction'} eq '1') {$result=~s/(\\begin{document})/$1 \\fbox\{RANDOM SEED IS $rndseed\} /;}
1216: $result .= '\end{document}';
1217: } elsif ($cleanURL=~/\/(smppg|syllabus|aboutme|bulletinboard)$/) {
1218: $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
1219: if ($currentURL=~/\/syllabus$/) {$currentURL=~s/\/res//;}
1220: $resources_printed .= $currentURL.':';
1221: my $texversion=&Apache::lonnet::ssi($currentURL,%form);
1222: $result .= $texversion;
1223: } else {
1224: $result.=&unsupported($currentURL,$helper->{'VARS'}->{'LATEX_TYPE'},
1225: $helper->{'VARS'}->{'symb'});
1226: }
1227: } elsif (($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems') or
1228: ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems_pages') or
1229: ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'all_problems') or
1230: ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'all_resources') or # BUGBUG
1231: ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'select_sequences')) {
1232: #-- produce an output string
1233: if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems') {
1234: $selectionmade = 2;
1235: } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems_pages') {
1236: $selectionmade = 3;
1237: } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'all_problems') {
1238: $selectionmade = 4;
1239: } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'all_resources') { #BUGBUG
1240: $selectionmade = 4;
1241: } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'select_sequences') {
1242: $selectionmade = 7;
1243: }
1244: $form{'problem_split'}=$parmhash{'problem_stream_switch'};
1245: $form{'suppress_tries'}=$parmhash{'suppress_tries'};
1246: $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
1247: $form{'print_discussions'}=$helper->{'VARS'}->{'PRINT_DISCUSSIONS'};
1248: if ($helper->{'VARS'}->{'PRINT_DISCUSSIONS'} eq 'yes') {$form{'problem_split'}='yes';}
1249: my $flag_latex_header_remove = 'NO';
1250: my $flag_page_in_sequence = 'NO';
1251: my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'};
1252: my $prevassignment='';
1253: &Apache::lonnet::delenv('form.counter');
1254: &Apache::lonxml::init_counter();
1255: &Apache::lonxml::store_counter();
1256: for (my $i=0;$i<=$#master_seq;$i++) {
1257:
1258: # Note due to document structure, not allowed to put \newpage
1259: # prior to the first resource
1260:
1261: if (defined $page_breaks{$master_seq[$i]}) {
1262: if($i != 0) {
1263: $result.="\\newpage\n";
1264: }
1265: }
1266: my ($sequence,undef,$urlp)=&Apache::lonnet::decode_symb($master_seq[$i]);
1267: $urlp=&Apache::lonnet::clutter($urlp);
1268: $form{'symb'}=$master_seq[$i];
1269:
1270: my $assignment=&Apache::lonxml::latex_special_symbols(&Apache::lonnet::gettitle($sequence),'header'); #title of the assignment which contains this problem
1271: if ($selectionmade==7) {$helper->{VARS}->{'assignment'}=$assignment;}
1272: if ($i==0) {$prevassignment=$assignment;}
1273: my $texversion='';
1274: if ($urlp!~m|^/adm/|
1275: && $urlp=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)$/) {
1276: $resources_printed .= $urlp.':';
1277: my $pre_counter=$env{'form.counter'};
1278: $texversion.=&Apache::lonnet::ssi($urlp,%form);
1279: if ($urlp=~/\.page$/) {
1280: ($texversion,my $number_of_columns_page) = &page_cleanup($texversion);
1281: if ($number_of_columns_page > $number_of_columns) {$number_of_columns=$number_of_columns_page;}
1282: $texversion =~ s/\\end{document}\d*/\\end{document}/;
1283: $flag_page_in_sequence = 'YES';
1284: }
1285: my ($envfile) = ($env{'user.environment'} =~m|/([^/]+)\.id$| );
1286: &Apache::lonnet::transfer_profile_to_env($r->dir_config('lonIDsDir'),
1287: $envfile);
1288: my $current_counter=$env{'form.counter'};
1289: if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
1290: ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
1291: # Don't permanently pervert the %form hash
1292: my %answerform = %form;
1293: $answerform{'grade_target'}='answer';
1294: $answerform{'answer_output_mode'}='tex';
1295: $resources_printed .= $urlp.':';
1296: &Apache::lonnet::appenv(('form.counter' => $pre_counter));
1297: my $answer=&Apache::lonnet::ssi($urlp,%answerform);
1298: &Apache::lonnet::appenv(('form.counter' => $current_counter));
1299: if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
1300: $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
1301: } else {
1302: if ($urlp=~/\.(problem|exam|quiz|assess|survey|form|library)$/) {
1303: $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
1304: $texversion.='\vskip 0 mm \noindent\textbf{'.&Apache::lonnet::gettitle($master_seq[$i]).'}\vskip 0 mm ';
1305: $texversion.=&path_to_problem ($urlp,$LaTeXwidth);
1306: $texversion.='\vskip 1 mm '.$answer;
1307: } else {
1308: $texversion='';
1309: }
1310: }
1311: }
1312: if ($flag_latex_header_remove ne 'NO') {
1313: $texversion = &latex_header_footer_remove($texversion);
1314: } else {
1315: $texversion =~ s/\\end{document}//;
1316: }
1317: if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
1318: $texversion=&IndexCreation($texversion,$urlp);
1319: }
1320: if (($selectionmade == 4) and ($assignment ne $prevassignment)) {
1321: my $name = &get_name();
1322: my $courseidinfo = &get_course();
1323: if (defined($courseidinfo)) { $courseidinfo=' - '.$courseidinfo }
1324: $prevassignment=$assignment;
1325: $result .='\newpage \noindent\parbox{\minipagewidth}{\noindent\\lhead{\\textit{\\textbf{'.$name.'}}'.$courseidinfo.' \\hfill \\thepage \\\\ \\textit{'.$assignment.'}}} \vskip 5 mm ';
1326: }
1327: $result .= $texversion;
1328: $flag_latex_header_remove = 'YES';
1329: } elsif ($urlp=~/\/(smppg|syllabus|aboutme|bulletinboard)$/) {
1330: $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
1331: if ($urlp=~/\/syllabus$/) {$urlp=~s/\/res//;}
1332: $resources_printed .= $urlp.':';
1333: my $texversion=&Apache::lonnet::ssi($urlp,%form);
1334: if ($flag_latex_header_remove ne 'NO') {
1335: $texversion = &latex_header_footer_remove($texversion);
1336: } else {
1337: $texversion =~ s/\\end{document}/\\vskip 0\.5mm\\noindent\\makebox\[\\textwidth\/\$number_of_columns\]\[b\]\{\\hrulefill\}/;
1338: }
1339: $result .= $texversion;
1340: $flag_latex_header_remove = 'YES';
1341: } else {
1342: $texversion=&unsupported($urlp,$helper->{'VARS'}->{'LATEX_TYPE'},
1343: $master_seq[$i]);
1344: if ($flag_latex_header_remove ne 'NO') {
1345: $texversion = &latex_header_footer_remove($texversion);
1346: } else {
1347: $texversion =~ s/\\end{document}//;
1348: }
1349: $result .= $texversion;
1350: $flag_latex_header_remove = 'YES';
1351: }
1352: if (&Apache::loncommon::connection_aborted($r)) { last; }
1353: }
1354: &Apache::lonnet::delenv('form.counter');
1355: if ($flag_page_in_sequence eq 'YES') {
1356: $result =~ s/\\usepackage{calc}/\\usepackage{calc}\\usepackage{longtable}/;
1357: }
1358: $result .= '\end{document}';
1359: } elsif (($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_students') ||
1360: ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'resources_for_students')){
1361:
1362:
1363: #-- prints assignments for whole class or for selected students
1364: my $type;
1365: if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_students') {
1366: $selectionmade=5;
1367: $type='problems';
1368: } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'resources_for_students') {
1369: $selectionmade=8;
1370: $type='resources';
1371: }
1372: my @students=split /\|\|\|/, $helper->{'VARS'}->{'STUDENTS'};
1373: # The normal sort order is by section then by students within the
1374: # section. If the helper var student_sort is 1, then the user has elected
1375: # to override this and output the students by name.
1376: # Each element of the students array is of the form:
1377: # username:domain:section:last, first:status
1378: #
1379: #
1380: if ($helper->{'VARS'}->{'student_sort'} eq 1) {
1381: @students = sort compare_names @students;
1382: }
1383: if ($helper->{'VARS'}->{'NUMBER_TO_PRINT'} eq '0' ||
1384: $helper->{'VARS'}->{'NUMBER_TO_PRINT'} eq 'all' ) {
1385: $helper->{'VARS'}->{'NUMBER_TO_PRINT'}=$#students+1;
1386: }
1387: my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'};
1388:
1389: #loop over students
1390: my $flag_latex_header_remove = 'NO';
1391: my %moreenv;
1392: $moreenv{'instructor_comments'}='hide';
1393: $moreenv{'textwidth'}=&get_textwidth($helper,$LaTeXwidth);
1394: $moreenv{'print_discussions'}=$helper->{'VARS'}->{'PRINT_DISCUSSIONS'};
1395: $moreenv{'problem_split'} = $parmhash{'problem_stream_switch'};
1396: $moreenv{'suppress_tries'} = $parmhash{'suppress_tries'};
1397: if ($helper->{'VARS'}->{'PRINT_DISCUSSIONS'} eq 'yes') {$moreenv{'problem_split'}='yes';}
1398: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Print Status','Class Print Status',$#students+1,'inline','75');
1399: my $student_counter=-1;
1400: foreach my $person (@students) {
1401:
1402: my $duefile="/home/httpd/prtspool/$env{'user.name'}_$env{'user.domain'}_printout.due";
1403: if (-e $duefile) {
1404: my $temp_file = Apache::File->new('>>'.$duefile);
1405: print $temp_file "1969\n";
1406: }
1407: $student_counter++;
1408: my $i=int($student_counter/$helper->{'VARS'}{'NUMBER_TO_PRINT'});
1409: my ($output,$fullname, $printed)=&print_resources($r,$helper,
1410: $person,$type,
1411: \%moreenv,\@master_seq,
1412: $flag_latex_header_remove,
1413: $LaTeXwidth,
1414: $number_of_columns);
1415: $resources_printed .= ":";
1416: $print_array[$i].=$output;
1417: $student_names[$i].=$person.':'.$fullname.'_END_';
1418: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,&mt('last student').' '.$fullname);
1419: $flag_latex_header_remove = 'YES';
1420: if (&Apache::loncommon::connection_aborted($r)) { last; }
1421: }
1422: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1423: $result .= $print_array[0].' \end{document}';
1424: } elsif (($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_anon') ||
1425: ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'resources_for_anon') ) {
1426: my $cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
1427: my $cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
1428: my $num_todo=$helper->{'VARS'}->{'NUMBER_TO_PRINT_TOTAL'};
1429: my $code_name=$helper->{'VARS'}->{'ANON_CODE_STORAGE_NAME'};
1430: my $old_name=$helper->{'VARS'}->{'REUSE_OLD_CODES'};
1431: my $single_code = $helper->{'VARS'}->{'SINGLE_CODE'};
1432: my $selected_code = $helper->{'VARS'}->{'CODE_SELECTED_FROM_LIST'};
1433:
1434: my $code_option=$helper->{'VARS'}->{'CODE_OPTION'};
1435: open(FH,$Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
1436: my ($code_type,$code_length)=('letter',6);
1437: foreach my $line (<FH>) {
1438: my ($name,$type,$length) = (split(/:/,$line))[0,2,4];
1439: if ($name eq $code_option) {
1440: $code_length=$length;
1441: if ($type eq 'number') { $code_type = 'number'; }
1442: }
1443: }
1444: my %moreenv = ('textwidth' => &get_textwidth($helper,$LaTeXwidth));
1445: $moreenv{'problem_split'} = $parmhash{'problem_stream_switch'};
1446: my $seed=time+($$<<16)+($$);
1447: my @allcodes;
1448: if ($old_name) {
1449: my %result=&Apache::lonnet::get('CODEs',
1450: [$old_name,"type\0$old_name"],
1451: $cdom,$cnum);
1452: $code_type=$result{"type\0$old_name"};
1453: @allcodes=split(',',$result{$old_name});
1454: $num_todo=scalar(@allcodes);
1455: } elsif ($selected_code) { # Selection value is always numeric.
1456: $num_todo = 1;
1457: @allcodes = ($selected_code);
1458: } elsif ($single_code) {
1459:
1460: $num_todo = 1; # Unconditionally one code to do.
1461: # If an alpha code have to convert to numbers so it can be
1462: # converted back to letters again :-)
1463: #
1464: if ($code_type ne 'number') {
1465: $single_code = &letters_to_num($single_code);
1466: }
1467: @allcodes = ($single_code);
1468: } else {
1469: my %allcodes;
1470: srand($seed);
1471: for (my $i=0;$i<$num_todo;$i++) {
1472: $moreenv{'CODE'}=&get_CODE(\%allcodes,$i,$seed,$code_length,
1473: $code_type);
1474: }
1475: if ($code_name) {
1476: &Apache::lonnet::put('CODEs',
1477: {
1478: $code_name =>join(',',keys(%allcodes)),
1479: "type\0$code_name" => $code_type
1480: },
1481: $cdom,$cnum);
1482: }
1483: @allcodes=keys(%allcodes);
1484: }
1485: my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'};
1486: my ($type) = split(/_/,$helper->{'VARS'}->{'PRINT_TYPE'});
1487: my $number_per_page=$helper->{'VARS'}->{'NUMBER_TO_PRINT'};
1488: if ($number_per_page eq '0' || $number_per_page eq 'all') {
1489: $number_per_page=$num_todo;
1490: }
1491: my $flag_latex_header_remove = 'NO';
1492: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Print Status','Class Print Status',$num_todo,'inline','75');
1493: my $count=0;
1494: foreach my $code (sort(@allcodes)) {
1495: my $file_num=int($count/$number_per_page);
1496: if ($code_type eq 'number') {
1497: $moreenv{'CODE'}=$code;
1498: } else {
1499: $moreenv{'CODE'}=&num_to_letters($code);
1500: }
1501: my ($output,$fullname, $printed)=
1502: &print_resources($r,$helper,'anonymous',$type,\%moreenv,
1503: \@master_seq,$flag_latex_header_remove,
1504: $LaTeXwidth);
1505: $resources_printed .= ":";
1506: $print_array[$file_num].=$output;
1507: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
1508: &mt('last assignment').' '.$fullname);
1509: $flag_latex_header_remove = 'YES';
1510: $count++;
1511: if (&Apache::loncommon::connection_aborted($r)) { last; }
1512: }
1513: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1514: $result .= $print_array[0].' \end{document}';
1515: } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_from_directory') {
1516: #prints selected problems from the subdirectory
1517: $selectionmade = 6;
1518: my @list_of_files=split /\|\|\|/, $helper->{'VARS'}->{'FILES'};
1519: @list_of_files=sort @list_of_files;
1520: my $flag_latex_header_remove = 'NO';
1521: my $rndseed=time;
1522: if ($helper->{'VARS'}->{'curseed'}) {
1523: $rndseed=$helper->{'VARS'}->{'curseed'};
1524: }
1525: for (my $i=0;$i<=$#list_of_files;$i++) {
1526: my $urlp = $list_of_files[$i];
1527: $urlp=~s|//|/|;
1528: if ($urlp=~/\//) {
1529: $form{'problem_split'}=$parmhash{'problem_stream_switch'};
1530: $form{'rndseed'}=$rndseed;
1531: if ($urlp =~ m|/home/([^/]+)/public_html|) {
1532: $urlp =~ s|/home/([^/]*)/public_html|/~$1|;
1533: } else {
1534: $urlp =~ s|^$Apache::lonnet::perlvar{'lonDocRoot'}||;
1535: }
1536: $resources_printed .= $urlp.':';
1537: my $texversion=&Apache::lonnet::ssi($urlp,%form);
1538: if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
1539: ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
1540: # Don't permanently pervert %form:
1541: my %answerform = %form;
1542: $answerform{'grade_target'}='answer';
1543: $answerform{'answer_output_mode'}='tex';
1544: $answerform{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
1545: $answerform{'rndseed'}=$rndseed;
1546: $resources_printed .= $urlp.':';
1547: my $answer=&Apache::lonnet::ssi($urlp,%answerform);
1548: if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
1549: $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
1550: } else {
1551: $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
1552: if ($helper->{'VARS'}->{'construction'} ne '1') {
1553: $texversion.='\vskip 0 mm \noindent ';
1554: $texversion.=&path_to_problem ($urlp,$LaTeXwidth);
1555: } else {
1556: $texversion.='\vskip 0 mm \noindent\textbf{Prints from construction space - there is no title.}\vskip 0 mm ';
1557: my $URLpath=$urlp;
1558: $URLpath=~s/~([^\/]+)/public_html\/$1\/$1/;
1559: $texversion.=&path_to_problem ($URLpath,$LaTeXwidth);
1560: }
1561: $texversion.='\vskip 1 mm '.$answer.'\end{document}';
1562: }
1563: }
1564: #this chunck is responsible for printing the path to problem
1565: my $newurlp=$urlp;
1566: if ($newurlp=~/~/) {$newurlp=~s|\/~([^\/]+)\/|\/home\/$1\/public_html\/|;}
1567: $newurlp=&path_to_problem($newurlp,$LaTeXwidth);
1568: $texversion =~ s/(\\begin{minipage}{\\textwidth})/$1 $newurlp/;
1569: if ($flag_latex_header_remove ne 'NO') {
1570: $texversion = &latex_header_footer_remove($texversion);
1571: } else {
1572: $texversion =~ s/\\end{document}//;
1573: }
1574: if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
1575: $texversion=&IndexCreation($texversion,$urlp);
1576: }
1577: if ($helper->{'VARS'}->{'CONSTR_RESOURSE_URL'} eq 'yes') {
1578: $texversion=~s/(\\addcontentsline\{toc\}\{subsection\}\{[^\}]*\})/$1 URL: \\verb|$urlp| \\strut\\\\\\strut /;
1579:
1580: }
1581: $result .= $texversion;
1582: }
1583: $flag_latex_header_remove = 'YES';
1584: }
1585: if ($helper->{VARS}->{'construction'} eq '1') {$result=~s/(\\typeout)/ RANDOM SEED IS $rndseed $1/;}
1586: $result .= '\end{document}';
1587: }
1588: #-------------------------------------------------------- corrections for the different page formats
1589: $result = &page_format_transformation($papersize,$laystyle,$numberofcolumns,$helper->{'VARS'}->{'PRINT_TYPE'},$result,$helper->{VARS}->{'assignment'},$helper->{'VARS'}->{'TABLE_CONTENTS'},$helper->{'VARS'}->{'TABLE_INDEX'},$selectionmade);
1590: $result = &latex_corrections($number_of_columns,$result,$selectionmade,
1591: $helper->{'VARS'}->{'ANSWER_TYPE'});
1592: for (my $i=1;$i<=$#print_array;$i++) {
1593: $print_array[$i] =
1594: &latex_corrections($number_of_columns,$print_array[$i],
1595: $selectionmade,
1596: $helper->{'VARS'}->{'ANSWER_TYPE'});
1597: }
1598: #changes page's parameters for the one column output
1599: if ($numberofcolumns == 1) {
1600: $result =~ s/\\textwidth\s*=\s*-?\d*\.?\d*\s*(cm|mm|in)/\\textwidth= $helper->{'VARS'}->{'pagesize.width'} $helper->{'VARS'}->{'pagesize.widthunit'} /;
1601: $result =~ s/\\textheight\s*=\s*-?\d*\.?\d*\s*(cm|mm|in)/\\textheight $helper->{'VARS'}->{'pagesize.height'} $helper->{'VARS'}->{'pagesize.heightunit'} /;
1602: $result =~ s/\\evensidemargin\s*=\s*-?\d*\.?\d*\s*(cm|mm|in)/\\evensidemargin= $helper->{'VARS'}->{'pagesize.lmargin'} $helper->{'VARS'}->{'pagesize.lmarginunit'} /;
1603: $result =~ s/\\oddsidemargin\s*=\s*-?\d*\.?\d*\s*(cm|mm|in)/\\oddsidemargin= $helper->{'VARS'}->{'pagesize.lmargin'} $helper->{'VARS'}->{'pagesize.lmarginunit'} /;
1604: }
1605:
1606: #-- writing .tex file in prtspool
1607: my $temp_file;
1608: my $identifier = &Apache::loncommon::get_cgi_id();
1609: my $filename = "/home/httpd/prtspool/$env{'user.name'}_$env{'user.domain'}_printout_$identifier.tex";
1610: if (!($#print_array>0)) {
1611: unless ($temp_file = Apache::File->new('>'.$filename)) {
1612: $r->log_error("Couldn't open $filename for output $!");
1613: return SERVER_ERROR;
1614: }
1615: print $temp_file $result;
1616: my $begin=index($result,'\begin{document}',0);
1617: my $inc=substr($result,0,$begin+16);
1618: } else {
1619: my $begin=index($result,'\begin{document}',0);
1620: my $inc=substr($result,0,$begin+16);
1621: for (my $i=0;$i<=$#print_array;$i++) {
1622: if ($i==0) {
1623: $print_array[$i]=$result;
1624: } else {
1625: my $anobegin=index($print_array[$i],'\setcounter{page}',0);
1626: substr($print_array[$i],0,$anobegin)='';
1627: $print_array[$i]=$inc.$print_array[$i].'\end{document}';
1628: }
1629: my $temp_file;
1630: my $newfilename=$filename;
1631: my $num=$i+1;
1632: $newfilename =~s/\.tex$//;
1633: $newfilename=sprintf("%s_%03d.tex",$newfilename, $num);
1634: unless ($temp_file = Apache::File->new('>'.$newfilename)) {
1635: $r->log_error("Couldn't open $newfilename for output $!");
1636: return SERVER_ERROR;
1637: }
1638: print $temp_file $print_array[$i];
1639: }
1640: }
1641: my $student_names='';
1642: if ($#print_array>0) {
1643: for (my $i=0;$i<=$#print_array;$i++) {
1644: $student_names.=$student_names[$i].'_ENDPERSON_';
1645: }
1646: } else {
1647: if ($#student_names>-1) {
1648: $student_names=$student_names[0].'_ENDPERSON_';
1649: } else {
1650: my $fullname = &get_name($env{'user.name'},$env{'user.domain'});
1651: $student_names=join(':',$env{'user.name'},$env{'user.domain'},
1652: $env{'request.course.sec'},$fullname).
1653: '_ENDPERSON_'.'_END_';
1654: }
1655: }
1656:
1657: my $URLback=''; #link to original document
1658: if ($helper->{'VARS'}->{'construction'} ne '1') {
1659: #prints published resource
1660: $URLback=&Apache::lonnet::escape('/adm/flip?postdata=return:');
1661: } else {
1662: #prints resource from the construction space
1663: $URLback='/'.$helper->{'VARS'}->{'filename'};
1664: if ($URLback=~/([^?]+)/) {
1665: $URLback=$1;
1666: $URLback=~s|^/~|/priv/|;
1667: }
1668: }
1669: # logic for now is too complex to trace if this has been defined
1670: # yet.
1671: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1672: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
1673: &Apache::lonnet::appenv('cgi.'.$identifier.'.file' => $filename,
1674: 'cgi.'.$identifier.'.layout' => $laystyle,
1675: 'cgi.'.$identifier.'.numcol' => $numberofcolumns,
1676: 'cgi.'.$identifier.'.paper' => $papersize,
1677: 'cgi.'.$identifier.'.selection' => $selectionmade,
1678: 'cgi.'.$identifier.'.tableofcontents' => $helper->{'VARS'}->{'TABLE_CONTENTS'},
1679: 'cgi.'.$identifier.'.tableofindex' => $helper->{'VARS'}->{'TABLE_INDEX'},
1680: 'cgi.'.$identifier.'.role' => $perm{'pav'},
1681: 'cgi.'.$identifier.'.numberoffiles' => $#print_array,
1682: 'cgi.'.$identifier.'.studentnames' => $student_names,
1683: 'cgi.'.$identifier.'.backref' => $URLback,);
1684: &Apache::lonnet::appenv("cgi.$identifier.user" => $env{'user.name'},
1685: "cgi.$identifier.domain" => $env{'user.domain'},
1686: "cgi.$identifier.courseid" => $cnum,
1687: "cgi.$identifier.coursedom" => $cdom,
1688: "cgi.$identifier.resources" => $resources_printed);
1689:
1690: $r->print(<<FINALEND);
1691: <br />
1692: <meta http-equiv="Refresh" content="0; url=/cgi-bin/printout.pl?$identifier" />
1693: <a href="/cgi-bin/printout.pl?$identifier">Continue</a>
1694: </body>
1695: </html>
1696: FINALEND
1697: }
1698:
1699:
1700: sub get_CODE {
1701: my ($all_codes,$num,$seed,$size,$type)=@_;
1702: my $max='1'.'0'x$size;
1703: my $newcode;
1704: while(1) {
1705: $newcode=sprintf("%0".$size."d",int(rand($max)));
1706: if (!exists($$all_codes{$newcode})) {
1707: $$all_codes{$newcode}=1;
1708: if ($type eq 'number' ) {
1709: return $newcode;
1710: } else {
1711: return &num_to_letters($newcode);
1712: }
1713: }
1714: }
1715: }
1716:
1717: sub print_resources {
1718: my ($r,$helper,$person,$type,$moreenv,$master_seq,$remove_latex_header,
1719: $LaTeXwidth,$number_of_columns)=@_;
1720: my $current_output = '';
1721: my $printed = '';
1722: my ($username,$userdomain,$usersection) = split /:/,$person;
1723: my $fullname = &get_name($username,$userdomain);
1724: my $namepostfix;
1725: if ($person =~ 'anon') {
1726: $namepostfix="\\\\Name: ";
1727: $fullname = "CODE - ".$moreenv->{'CODE'};
1728: }
1729: my $i = 0;
1730: #goes through all resources, checks if they are available for
1731: #current student, and produces output
1732: &Apache::lonnet::delenv('form.counter');
1733: &Apache::lonxml::init_counter();
1734: &Apache::lonxml::store_counter();
1735: my %page_breaks = &get_page_breaks($helper);
1736:
1737: foreach my $curresline (@{$master_seq}) {
1738: if (defined $page_breaks{$curresline}) {
1739: if($i != 0) {
1740: $current_output.= "\\newpage\n";
1741: }
1742: }
1743: $i++;
1744: if ( !($type eq 'problems' &&
1745: ($curresline!~ m/\.(problem|exam|quiz|assess|survey|form|library)$/)) ) {
1746: my ($map,$id,$res_url) = &Apache::lonnet::decode_symb($curresline);
1747: if (&Apache::lonnet::allowed('bre',$res_url)) {
1748: if ($res_url!~m|^ext/|
1749: && $res_url=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)$/) {
1750: $printed .= $curresline.':';
1751: my $pre_counter=$env{'form.counter'};
1752: my $rendered = &Apache::loncommon::get_student_view($curresline,$username,$userdomain,$env{'request.course.id'},'tex',$moreenv);
1753: my ($envfile) =
1754: ( $env{'user.environment'} =~ m|/([^/]+)\.id$| );
1755: &Apache::lonnet::transfer_profile_to_env($r->dir_config('lonIDsDir'),
1756: $envfile);
1757: my $current_counter=$env{'form.counter'};
1758: if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
1759: ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
1760: # Use a copy of the hash so we don't pervert it on future loop passes.
1761: my %answerenv = %{$moreenv};
1762: $answerenv{'answer_output_mode'}='tex';
1763: $answerenv{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
1764: &Apache::lonnet::appenv(('form.counter' => $pre_counter));
1765: my $ansrendered = &Apache::loncommon::get_student_answers($curresline,$username,$userdomain,$env{'request.course.id'},%answerenv);
1766: &Apache::lonnet::appenv(('form.counter' => $current_counter));
1767: if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
1768: $rendered=~s/(\\keephidden{ENDOFPROBLEM})/$ansrendered$1/;
1769: } else {
1770: $rendered=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
1771: $rendered.='\vskip 0 mm \noindent\textbf{'.&Apache::lonnet::gettitle($curresline).'}\vskip 0 mm ';
1772: $rendered.=&path_to_problem($res_url,$LaTeXwidth);
1773: $rendered.='\vskip 1 mm '.$ansrendered;
1774: }
1775: }
1776: if ($remove_latex_header eq 'YES') {
1777: $rendered = &latex_header_footer_remove($rendered);
1778: } else {
1779: $rendered =~ s/\\end{document}//;
1780: }
1781: $current_output .= $rendered;
1782: } elsif ($res_url=~/\/(smppg|syllabus|aboutme|bulletinboard)$/) {
1783: $printed .= $curresline.':';
1784: my $rendered = &Apache::loncommon::get_student_view($curresline,$username,$userdomain,$env{'request.course.id'},'tex',$moreenv);
1785: my ($envfile) =
1786: ( $env{'user.environment'} =~ m|/([^/]+)\.id$| );
1787: &Apache::lonnet::transfer_profile_to_env($r->dir_config('lonIDsDir'),
1788: $envfile);
1789: my $current_counter=$env{'form.counter'};
1790: if ($remove_latex_header eq 'YES') {
1791: $rendered = &latex_header_footer_remove($rendered);
1792: } else {
1793: $rendered =~ s/\\end{document}//;
1794: }
1795: $current_output .= $rendered.'\vskip 0.5mm\noindent\makebox[\textwidth/'.$number_of_columns.'][b]{\hrulefill}\strut \vskip 0 mm \strut ';
1796: } else {
1797: my $rendered = &unsupported($res_url,$helper->{'VARS'}->{'LATEX_TYPE'},$curresline);
1798: if ($remove_latex_header ne 'NO') {
1799: $rendered = &latex_header_footer_remove($rendered);
1800: } else {
1801: $rendered =~ s/\\end{document}//;
1802: }
1803: $current_output .= $rendered;
1804: }
1805: }
1806: $remove_latex_header = 'YES';
1807: }
1808: if (&Apache::loncommon::connection_aborted($r)) { last; }
1809: }
1810: my $courseidinfo = &get_course();
1811: if (defined($courseidinfo)) { $courseidinfo=' - '.$courseidinfo }
1812: if ($usersection ne '') {$courseidinfo.=' - Sec. '.$usersection}
1813: my $currentassignment=&Apache::lonxml::latex_special_symbols($helper->{VARS}->{'assignment'},'header');
1814: if ($current_output=~/\\documentclass/) {
1815: $current_output =~ s/\\begin{document}/\\setlength{\\topmargin}{1cm} \\begin{document}\\noindent\\parbox{\\minipagewidth}{\\noindent\\lhead{\\textit{\\textbf{$fullname}}$courseidinfo \\hfill \\thepage \\\\ \\textit{$currentassignment}$namepostfix}}\\vskip 5 mm /;
1816: } else {
1817: my $blankpages = '';
1818: for (my $j=0;$j<$helper->{'VARS'}->{'EMPTY_PAGES'};$j++) {$blankpages.='\clearpage\strut\clearpage';}
1819: $current_output = '\strut\vspace*{-6 mm}\\newline\\noindent\\makebox[\\textwidth/$number_of_columns][b]{\\hrulefill}\vspace*{-2 mm}\\newline\\noindent{\\tiny Printed from LON-CAPA\\copyright MSU{\\hfill} Licensed under GNU General Public License }\\newpage '.$blankpages.'\setcounter{page}{1}\noindent\parbox{\minipagewidth}{\noindent\\lhead{\\textit{\\textbf{'.$fullname.'}}'.$courseidinfo.' \\hfill \\thepage \\\\ \\textit{'.$currentassignment.'}'.$namepostfix.'}} \vskip 5 mm '.$current_output;
1820: }
1821: return ($current_output,$fullname, $printed);
1822:
1823: }
1824:
1825: sub handler {
1826:
1827: my $r = shift;
1828:
1829: &init_perm();
1830:
1831: # my $loaderror=&Apache::lonnet::overloaderror($r);
1832: # if ($loaderror) { return $loaderror; }
1833: # $loaderror=
1834: # &Apache::lonnet::overloaderror($r,
1835: # $env{'course.'.$env{'request.course.id'}.'.home'});
1836: # if ($loaderror) { return $loaderror; }
1837:
1838: my $helper = printHelper($r);
1839: if (!ref($helper)) {
1840: return $helper;
1841: }
1842:
1843: # my $key;
1844: # foreach $key (keys %{$helper->{'VARS'}}) {
1845: # $r->print(' '.$key.'->'.$helper->{'VARS'}->{$key}.'<-<br />');
1846: # }
1847: # foreach $key (keys %env) {
1848: # $r->print(' '.$key.'->'.$env{$key}.'<-<br />');
1849: # }
1850: # return OK;
1851:
1852: my %parmhash=&Apache::lonnet::coursedescription($env{'request.course.id'});
1853:
1854: # my $key;
1855: # foreach $key (keys %parmhash) {
1856: # $r->print(' '.$key.'->'.$parmhash{$key}.'<-<br />');
1857: # }
1858: #
1859:
1860:
1861: # If a figure conversion queue file exists for this user.domain
1862: # we delete it since it can only be bad (if it were good, printout.pl
1863: # would have deleted it the last time around.
1864:
1865: my $conversion_queuefile = "/home/httpd/prtspool/$env{'user.name'}_$env{'user.domain'}_printout.dat";
1866: if(-e $conversion_queuefile) {
1867: unlink $conversion_queuefile;
1868: }
1869: &output_data($r,$helper,\%parmhash);
1870: return OK;
1871: }
1872:
1873: use Apache::lonhelper;
1874:
1875: sub addMessage {
1876: my $text = shift;
1877: my $paramHash = Apache::lonhelper::getParamHash();
1878: $paramHash->{MESSAGE_TEXT} = $text;
1879: Apache::lonhelper::message->new();
1880: }
1881:
1882: use Data::Dumper;
1883:
1884: sub init_perm {
1885: undef(%perm);
1886: $perm{'pav'}=&Apache::lonnet::allowed('pav',$env{'request.course.id'});
1887: if (!$perm{'pav'}) {
1888: $perm{'pav'}=&Apache::lonnet::allowed('pav',
1889: $env{'request.course.id'}.'/'.$env{'request.course.sec'});
1890: }
1891: $perm{'pfo'}=&Apache::lonnet::allowed('pav',$env{'request.course.id'});
1892: if (!$perm{'pfo'}) {
1893: $perm{'pfo'}=&Apache::lonnet::allowed('pfo',
1894: $env{'request.course.id'}.'/'.$env{'request.course.sec'});
1895: }
1896: }
1897:
1898: sub printHelper {
1899: my $r = shift;
1900:
1901: if ($r->header_only) {
1902: if ($env{'browser.mathml'}) {
1903: &Apache::loncommon::content_type($r,'text/xml');
1904: } else {
1905: &Apache::loncommon::content_type($r,'text/html');
1906: }
1907: $r->send_http_header;
1908: return OK;
1909: }
1910:
1911: # Send header, nocache
1912: if ($env{'browser.mathml'}) {
1913: &Apache::loncommon::content_type($r,'text/xml');
1914: } else {
1915: &Apache::loncommon::content_type($r,'text/html');
1916: }
1917: &Apache::loncommon::no_cache($r);
1918: $r->send_http_header;
1919: $r->rflush();
1920:
1921: # Unfortunately, this helper is so complicated we have to
1922: # write it by hand
1923:
1924: Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING});
1925:
1926: my $helper = Apache::lonhelper::helper->new("Printing Helper");
1927: $helper->declareVar('symb');
1928: $helper->declareVar('postdata');
1929: $helper->declareVar('curseed');
1930: $helper->declareVar('probstatus');
1931: $helper->declareVar('filename');
1932: $helper->declareVar('construction');
1933: $helper->declareVar('assignment');
1934: $helper->declareVar('style_file');
1935: $helper->declareVar('student_sort');
1936: $helper->declareVar('FINISHPAGE');
1937: $helper->declareVar('PRINT_TYPE');
1938: $helper->declareVar("showallfoils");
1939:
1940: # The page breaks can get loaded initially from the course environment:
1941: # But we only do this in the initial state so that they are allowed to change.
1942: #
1943:
1944: $helper->{VARS}->{FINISHPAGE} = '';
1945:
1946: &Apache::loncommon::restore_course_settings('print',
1947: {'pagebreaks' => 'scalar',
1948: 'lastprinttype' => 'scalar'});
1949:
1950:
1951: if($helper->{VARS}->{PRINT_TYPE} eq $env{'form.lastprinttype'}) {
1952: if (!defined ($env{"form.CURRENT_STATE"})) {
1953:
1954: $helper->{VARS}->{FINISHPAGE} = $env{'form.pagebreaks'};
1955: } else {
1956: my $state = $env{"form.CURRENT_STATE"};
1957: if ($state eq "START") {
1958: $helper->{VARS}->{FINISHPAGE} = $env{'form.pagebreaks'};
1959: }
1960: }
1961:
1962: }
1963:
1964:
1965: # This will persistently load in the data we want from the
1966: # very first screen.
1967: # Detect whether we're coming from construction space
1968: if ($env{'form.postdata'}=~/^(?:http:\/\/[^\/]+\/|\/|)\~([^\/]+)\/(.*)$/) {
1969: $helper->{VARS}->{'filename'} = "~$1/$2";
1970: $helper->{VARS}->{'construction'} = 1;
1971: } else {
1972: if ($env{'form.postdata'}) {
1973: $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($env{'form.postdata'});
1974: }
1975: if ($env{'form.symb'}) {
1976: $helper->{VARS}->{'symb'} = $env{'form.symb'};
1977: }
1978: if ($env{'form.url'}) {
1979: $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
1980: }
1981: }
1982:
1983: if ($env{'form.symb'}) {
1984: $helper->{VARS}->{'symb'} = $env{'form.symb'};
1985: }
1986: if ($env{'form.url'}) {
1987: $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
1988:
1989: }
1990: $helper->{VARS}->{'symb'}=
1991: &Apache::lonenc::check_encrypt($helper->{VARS}->{'symb'});
1992: my ($resourceTitle,$sequenceTitle,$mapTitle) = &details_for_menu($helper);
1993: if ($sequenceTitle ne '') {$helper->{VARS}->{'assignment'}=$sequenceTitle;}
1994:
1995:
1996: # Extract map
1997: my $symb = $helper->{VARS}->{'symb'};
1998: my ($map, $id, $url);
1999: my $subdir;
2000:
2001: # Get the resource name from construction space
2002: if ($helper->{VARS}->{'construction'}) {
2003: $resourceTitle = substr($helper->{VARS}->{'filename'},
2004: rindex($helper->{VARS}->{'filename'}, '/')+1);
2005: $subdir = substr($helper->{VARS}->{'filename'},
2006: 0, rindex($helper->{VARS}->{'filename'}, '/') + 1);
2007: } else {
2008: ($map, $id, $url) = &Apache::lonnet::decode_symb($symb);
2009: $helper->{VARS}->{'postdata'} =
2010: &Apache::lonenc::check_encrypt(&Apache::lonnet::clutter($url));
2011:
2012: if (!$resourceTitle) { # if the resource doesn't have a title, use the filename
2013: my $postdata = $helper->{VARS}->{'postdata'};
2014: $resourceTitle = substr($postdata, rindex($postdata, '/') + 1);
2015: }
2016: $subdir = &Apache::lonnet::filelocation("", $url);
2017: }
2018: if (!$helper->{VARS}->{'curseed'} && $env{'form.curseed'}) {
2019: $helper->{VARS}->{'curseed'}=$env{'form.curseed'};
2020: }
2021: if (!$helper->{VARS}->{'probstatus'} && $env{'form.problemtype'}) {
2022: $helper->{VARS}->{'probstatus'}=$env{'form.problemtype'};
2023: }
2024:
2025: my $userCanSeeHidden = Apache::lonnavmaps::advancedUser();
2026:
2027: Apache::lonhelper::registerHelperTags();
2028:
2029: # "Delete everything after the last slash."
2030: $subdir =~ s|/[^/]+$||;
2031: if (not $helper->{VARS}->{'construction'}) {
2032: $subdir=$Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$subdir;
2033: }
2034: # "Remove all duplicate slashes."
2035: $subdir =~ s|/+|/|g;
2036:
2037: # What can be printed is a very dynamic decision based on
2038: # lots of factors. So we need to dynamically build this list.
2039: # To prevent security leaks, states are only added to the wizard
2040: # if they can be reached, which ensures manipulating the form input
2041: # won't allow anyone to reach states they shouldn't have permission
2042: # to reach.
2043:
2044: # printChoices is tracking the kind of printing the user can
2045: # do, and will be used in a choices construction later.
2046: # In the meantime we will be adding states and elements to
2047: # the helper by hand.
2048: my $printChoices = [];
2049: my $paramHash;
2050:
2051: if ($resourceTitle) {
2052: push @{$printChoices}, ["<b><i>$resourceTitle</i></b> (".&mt('what you just saw on the screen').")", 'current_document', 'PAGESIZE'];
2053: }
2054:
2055: # Useful filter strings
2056: my $isProblem = '($res->is_problem()||$res->contains_problem) ';
2057: $isProblem .= ' && !$res->randomout()' if !$userCanSeeHidden;
2058: my $isProblemOrMap = '$res->is_problem() || $res->contains_problem() || $res->is_sequence()';
2059: my $isNotMap = '!$res->is_sequence()';
2060: $isNotMap .= ' && !$res->randomout()' if !$userCanSeeHidden;
2061: my $isMap = '$res->is_map()';
2062: my $symbFilter = '$res->shown_symb()';
2063: my $urlValue = '$res->link()';
2064:
2065: $helper->declareVar('SEQUENCE');
2066:
2067: # Useful for debugging: Dump the help vars
2068: # $r->print(Dumper($helper->{VARS}));
2069: # $r->print($map);
2070:
2071: # If we're in a sequence...
2072: if (($helper->{'VARS'}->{'construction'} ne '1') &&
2073:
2074: $helper->{VARS}->{'postdata'} &&
2075: $helper->{VARS}->{'assignment'}) {
2076: # Allow problems from sequence
2077: push @{$printChoices}, ["<b>".&mt('Problems')."</b> ".&mt('in')." <b><i>$sequenceTitle</i></b>", 'map_problems', 'CHOOSE_PROBLEMS'];
2078: # Allow all resources from sequence
2079: push @{$printChoices}, ["<b>".&mt('Resources')."</b> ".&mt('in')." <b><i>$sequenceTitle</i></b>", 'map_problems_pages', 'CHOOSE_PROBLEMS_HTML'];
2080:
2081: my $helperFragment = <<HELPERFRAGMENT;
2082: <state name="CHOOSE_PROBLEMS" title="Select Problem(s) to print">
2083: <message>(mark them then click "next" button) <br /></message>
2084: <resource variable="RESOURCES" multichoice="1" toponly='1' addstatus="1"
2085: closeallpages="1">
2086: <nextstate>PAGESIZE</nextstate>
2087: <filterfunc>return $isProblem;</filterfunc>
2088: <mapurl>$map</mapurl>
2089: <valuefunc>return $symbFilter;</valuefunc>
2090: <option text='Newpage' variable='FINISHPAGE' />
2091: </resource>
2092: </state>
2093:
2094: <state name="CHOOSE_PROBLEMS_HTML" title="Select Resource(s) to print">
2095: <message>(mark them then click "next" button) <br /></message>
2096: <resource variable="RESOURCES" multichoice="1" toponly='1' addstatus="1"
2097: closeallpages="1">
2098: <nextstate>PAGESIZE</nextstate>
2099: <filterfunc>return $isNotMap;</filterfunc>
2100: <mapurl>$map</mapurl>
2101: <valuefunc>return $symbFilter;</valuefunc>
2102: <option text='Newpage' variable='FINISHPAGE' />
2103: </resource>
2104: </state>
2105: HELPERFRAGMENT
2106:
2107: &Apache::lonxml::xmlparse($r, 'helper', $helperFragment);
2108: }
2109:
2110: # If the user has pfo (print for otheres) allow them to print all
2111: # problems and resources in the entier course, optionally for selected students
2112: if ($perm{'pfo'} &&
2113: ($helper->{VARS}->{'postdata'}=~/\/res\// || $helper->{VARS}->{'postdata'}=~/\/(syllabus|smppg|aboutme|bulletinboard)$/)) {
2114:
2115: push @{$printChoices}, ['<b>Problems</b> from <b>entire course</b>', 'all_problems', 'ALL_PROBLEMS'];
2116: push @{$printChoices}, ['<b>Resources</b> from <b>entire course</b>', 'all_resources', 'ALL_RESOURCES'];
2117: &Apache::lonxml::xmlparse($r, 'helper', <<ALL_PROBLEMS);
2118: <state name="ALL_PROBLEMS" title="Select Problem(s) to print">
2119: <message>(mark them then click "next" button) <br /></message>
2120: <resource variable="RESOURCES" toponly='0' multichoice="1"
2121: suppressEmptySequences='0' addstatus="1" closeallpages="1">
2122: <nextstate>PAGESIZE</nextstate>
2123: <filterfunc>return $isProblemOrMap;</filterfunc>
2124: <choicefunc>return $isNotMap;</choicefunc>
2125: <valuefunc>return $symbFilter;</valuefunc>
2126: <option text='Newpage' variable='FINISHPAGE' />
2127: </resource>
2128: </state>
2129: <state name="ALL_RESOURCES" title="Select Resource(s) to print">
2130: <message>(Mark them then click "next" button) <br /> </message>
2131: <resource variable="RESOURCES" toponly='0' multichoice='1'
2132: suppressEmptySequences='0' addstatus='1' closeallpages='1'>
2133: <nextstate>PAGESIZE</nextstate>
2134: <filterfunc>return $isNotMap; </filterfunc>
2135: <valuefunc>return $symbFilter;</valuefunc>
2136: <option text='NewPage' variable='FINISHPAGE' />
2137: </resource>
2138: </state>
2139: ALL_PROBLEMS
2140:
2141: if ($helper->{VARS}->{'assignment'}) {
2142: push @{$printChoices}, ["<b>".&mt('Problems')."</b> ".&mt('from')." <b><i>$sequenceTitle</i></b> ".&mt('for')." <b>".&mt('selected students')."</b>", 'problems_for_students', 'CHOOSE_STUDENTS'];
2143: push @{$printChoices}, ["<b>".&mt('Problems')."</b> ".&mt('from')." <b><i>$sequenceTitle</i></b> ".&mt('for')." <b>".&mt('anonymous students')."</b>", 'problems_for_anon', 'CHOOSE_ANON1'];
2144: }
2145: my $resource_selector=<<RESOURCE_SELECTOR;
2146: <message><br /><big><i><b>Select resources for the assignment</b></i></big><br /></message>
2147: <resource variable="RESOURCES" multichoice="1" addstatus="1"
2148: closeallpages="1">
2149: <filterfunc>return $isProblem;</filterfunc>
2150: <mapurl>$map</mapurl>
2151: <valuefunc>return $symbFilter;</valuefunc>
2152: <option text='New Page' variable='FINISHPAGE' />
2153: </resource>
2154: <message><br /><big><i><b>How should the results be printed?</b></i></big><br /></message>
2155: <choices variable="EMPTY_PAGES">
2156: <choice computer='0'>Start each student\'s assignment on a new page/column (add a pagefeed after each assignment)</choice>
2157: <choice computer='1'>Add one empty page/column after each student\'s assignment</choice>
2158: <choice computer='2'>Add two empty pages/column after each student\'s assignment</choice>
2159: <choice computer='3'>Add three empty pages/column after each student\'s assignment</choice>
2160: </choices>
2161: <message><hr width='33%' /><b>Number of assignments printed at the same time: </b></message>
2162: <string variable="NUMBER_TO_PRINT" maxlength="5" size="5"><defaultvalue>"all"</defaultvalue></string>
2163: RESOURCE_SELECTOR
2164:
2165: &Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_STUDENTS);
2166: <state name="CHOOSE_STUDENTS" title="Select Students and Resources">
2167: <student multichoice='1' variable="STUDENTS" nextstate="PAGESIZE" coursepersonnel="1"/>
2168: <message><b>Select sort order</b> </message>
2169: <choices variable='student_sort'>
2170: <choice computer='0'>Sort by section then student</choice>
2171: <choice computer='1'>Sort by students across sections.</choice>
2172: </choices>
2173: $resource_selector
2174: </state>
2175: CHOOSE_STUDENTS
2176:
2177: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2178: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2179: my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
2180: my $namechoice='<choice></choice>';
2181: foreach my $name (sort {uc($a) cmp uc($b)} @names) {
2182: if ($name =~ /^error: 2 /) { next; }
2183: if ($name =~ /^type\0/) { next; }
2184: $namechoice.='<choice computer="'.$name.'">'.$name.'</choice>';
2185: }
2186:
2187:
2188: my %code_values;
2189: my %codes_to_print;
2190: foreach my $key (@names) {
2191: %code_values = &Apache::grades::get_codes($key, $cdom, $cnum);
2192: foreach my $key (keys(%code_values)) {
2193: $codes_to_print{$key} = 1;
2194: }
2195: }
2196:
2197: my $code_selection = "<choice></choice>\n";
2198: foreach my $code (sort {uc($a) cmp uc($b)} (keys(%codes_to_print))) {
2199: my $choice = $code;
2200: if ($code =~ /^[A-Z]+$/) { # Alpha code
2201: $choice = &letters_to_num($code);
2202: }
2203: $code_selection .= ' <choice computer="'.$choice.'">'.$code."</choice>\n";
2204: }
2205: open(FH,$Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
2206: my $codechoice='';
2207: foreach my $line (<FH>) {
2208: my ($name,$description,$code_type,$code_length)=
2209: (split(/:/,$line))[0,1,2,4];
2210: if ($code_length > 0 &&
2211: $code_type =~/^(letter|number|-1)/) {
2212: $codechoice.='<choice computer="'.$name.'">'.$description.'</choice>';
2213: }
2214: }
2215: if ($codechoice eq '') {
2216: $codechoice='<choice computer="default">Default</choice>';
2217: }
2218: &Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_ANON1);
2219: <state name="CHOOSE_ANON1" title="Select Students and Resources">
2220: <nextstate>PAGESIZE</nextstate>
2221: <message><table><tr><td><b>Number of anonymous assignments to print:</b></td><td></message>
2222: <string variable="NUMBER_TO_PRINT_TOTAL" maxlength="5" size="5">
2223: <validator>
2224: if (((\$helper->{'VARS'}{'NUMBER_TO_PRINT_TOTAL'}+0) < 1) &&
2225: !\$helper->{'VARS'}{'REUSE_OLD_CODES'} &&
2226: !\$helper->{'VARS'}{'SINGLE_CODE'} &&
2227: !\$helper->{'VARS'}{'CODE_SELECTED_FROM_LIST'}) {
2228: return "You need to specify the number of assignments to print";
2229: }
2230: return undef;
2231: </validator>
2232: </string>
2233: <message></td></tr><tr><td></message>
2234: <message><b>Names to store the CODEs under for later:</b></message>
2235: <message></td><td></message>
2236: <string variable="ANON_CODE_STORAGE_NAME" maxlength="50" size="20" />
2237: <message></td></tr><tr><td></message>
2238: <message><b>Bubble sheet type:</b></message>
2239: <message></td><td></message>
2240: <dropdown variable="CODE_OPTION" multichoice="0" allowempty="0">
2241: $codechoice
2242: </dropdown>
2243: <message></td></tr><tr><td colspan="2"><hr width='33%' /></td></tr><tr><td></message>
2244: <message></td></tr><tr><td></message>
2245: <message><b>Enter a CODE to print:</b></td><td></message>
2246: <string variable="SINGLE_CODE" size="10">
2247: <validator>
2248: if(!\$helper->{'VARS'}{'NUMBER_TO_PRINT_TOTAL'} &&
2249: !\$helper->{'VARS'}{'REUSE_OLD_CODES'} &&
2250: !\$helper->{'VARS'}{'CODE_SELECTED_FROM_LIST'}) {
2251: return &Apache::lonprintout::is_code_valid(\$helper->{'VARS'}{'SINGLE_CODE'},
2252: \$helper->{'VARS'}{'CODE_OPTION'});
2253: } else {
2254: return undef; # Other forces control us.
2255: }
2256: </validator>
2257: </string>
2258: <message></td></tr><tr><td colspan="2"><hr width='33%' /></td></tr><tr><td></message>
2259: <message><b>Reprint a set of saved CODEs:</b></message>
2260: <message></td><td></message>
2261: <dropdown variable="REUSE_OLD_CODES">
2262: $namechoice
2263: </dropdown>
2264: <message></td></tr></table></message>
2265: <message><hr width='33%' /></message>
2266: $resource_selector
2267: </state>
2268: CHOOSE_ANON1
2269:
2270:
2271: if ($helper->{VARS}->{'assignment'}) {
2272: push @{$printChoices}, ["<b>".&mt('Resources')."</b> ".&mt('from')." <b><i>$sequenceTitle</i></b> ".&mt('for')." <b>".&mt('selected students')."</b>", 'resources_for_students', 'CHOOSE_STUDENTS1'];
2273: push @{$printChoices}, ["<b>".&mt('Resources')."</b> ".&mt('from')." <b><i>$sequenceTitle</i></b> ".&mt('for')." <b>".&mt('anonymous students')."</b>", 'resources_for_anon', 'CHOOSE_ANON2'];
2274: }
2275:
2276:
2277: $resource_selector=<<RESOURCE_SELECTOR;
2278: <message><br /><big><i><b>Select resources for the assignment</b></i></big><br /></message>
2279: <resource variable="RESOURCES" multichoice="1" addstatus="1"
2280: closeallpages="1">
2281: <filterfunc>return $isNotMap;</filterfunc>
2282: <mapurl>$map</mapurl>
2283: <valuefunc>return $symbFilter;</valuefunc>
2284: <option text='Newpage' variable='FINISHPAGE' />
2285: </resource>
2286: <message><br /><big><i><b>How should the results be printed?</b></i></big><br /></message>
2287: <choices variable="EMPTY_PAGES">
2288: <choice computer='0'>Start each student\'s assignment on a new page/column (add a pagefeed after each assignment)</choice>
2289: <choice computer='1'>Add one empty page/column after each student\'s assignment</choice>
2290: <choice computer='2'>Add two empty pages/column after each student\'s assignment</choice>
2291: <choice computer='3'>Add three empty pages/column after each student\'s assignment</choice>
2292: </choices>
2293: <message><hr width='33%' /><b>Number of assignments printed at the same time: </b></message>
2294: <string variable="NUMBER_TO_PRINT" maxlength="5" size="5"><defaultvalue>"all"</defaultvalue></string>
2295: RESOURCE_SELECTOR
2296:
2297: &Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_STUDENTS1);
2298: <state name="CHOOSE_STUDENTS1" title="Select Students and Resources">
2299: <student multichoice='1' variable="STUDENTS" nextstate="PAGESIZE" coursepersonnel="1" />
2300: <choices variable='student_sort'>
2301: <choice computer='0'>Sort by section then student</choice>
2302: <choice computer='1'>Sort by students across sections.</choice>
2303: </choices>
2304:
2305: $resource_selector
2306: </state>
2307: CHOOSE_STUDENTS1
2308:
2309: &Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_ANON2);
2310: <state name="CHOOSE_ANON2" title="Select Students and Resources">
2311: <nextstate>PAGESIZE</nextstate>
2312: <message><table><tr><td><b>Number of anonymous assignments to print:</b></td><td></message>
2313: <string variable="NUMBER_TO_PRINT_TOTAL" maxlength="5" size="5">
2314: <validator>
2315: if (((\$helper->{'VARS'}{'NUMBER_TO_PRINT_TOTAL'}+0) < 1) &&
2316: !\$helper->{'VARS'}{'REUSE_OLD_CODES'} &&
2317: !\$helper->{'VARS'}{'SINGLE_CODE'} &&
2318: !\$helper->{'VARS'}{'CODE_SELECTED_FROM_LIST'}) {
2319: return "You need to specify the number of assignments to print";
2320: }
2321: return undef;
2322: </validator>
2323: </string>
2324: <message></td></tr><tr><td></message>
2325: <message><b>Names to store the CODEs under for later:</b></message>
2326: <message></td><td></message>
2327: <string variable="ANON_CODE_STORAGE_NAME" maxlength="50" size="20" />
2328: <message></td></tr><tr><td></message>
2329: <message><b>Bubble sheet type:</b></message>
2330: <message></td><td></message>
2331: <dropdown variable="CODE_OPTION" multichoice="0" allowempty="0">
2332: $codechoice
2333: </dropdown>
2334: <message></td></tr><tr><td colspan="2"><hr width='33%' /></td></tr><tr><td></message>
2335: <message></td></tr><tr><td></message>
2336: <message><b>Enter a CODE to print:</b></td><td></message>
2337: <string variable="SINGLE_CODE" size="10">
2338: <validator>
2339: if(!\$helper->{'VARS'}{'NUMBER_TO_PRINT_TOTAL'} &&
2340: !\$helper->{'VARS'}{'REUSE_OLD_CODES'} &&
2341: !\$helper->{'VARS'}{'CODE_SELECTED_FROM_LIST'}) {
2342: return &Apache::lonprintout::is_code_valid(\$helper->{'VARS'}{'SINGLE_CODE'},
2343: \$helper->{'VARS'}{'CODE_OPTION'});
2344: } else {
2345: return undef; # Other forces control us.
2346: }
2347: </validator>
2348: </string>
2349: <message></td></tr><tr><td colspan="2"><hr width='33%' /></td></tr><tr><td></message>
2350: <message><b>Reprint a set of saved CODEs:</b></message>
2351: <message></td><td></message>
2352: <dropdown variable="REUSE_OLD_CODES">
2353: $namechoice
2354: </dropdown>
2355: <message></td></tr></table></message>
2356: <message><hr width='33%' /></message>
2357: $resource_selector
2358: </state>
2359: CHOOSE_ANON2
2360: }
2361:
2362: # FIXME: That RE should come from a library somewhere.
2363: if ((((&Apache::lonnet::allowed('bre',$subdir) eq 'F') and ($helper->{VARS}->{'postdata'}=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)/)) or defined $helper->{'VARS'}->{'construction'}) and $perm{'pav'} and $subdir ne $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/') {
2364: push @{$printChoices}, ["<b>".&mt('Problems')."</b> ".&mt('from current subdirectory')." <b><i>$subdir</i></b>", 'problems_from_directory', 'CHOOSE_FROM_SUBDIR'];
2365:
2366: my $f = '$filename';
2367: my $xmlfrag = <<CHOOSE_FROM_SUBDIR;
2368: <state name="CHOOSE_FROM_SUBDIR" title="Select File(s) from <b><small>$subdir</small></b> to print">
2369: <message>(mark them then click "next" button) <br /></message>
2370: <files variable="FILES" multichoice='1'>
2371: <nextstate>PAGESIZE</nextstate>
2372: <filechoice>return '$subdir';</filechoice>
2373: CHOOSE_FROM_SUBDIR
2374:
2375: # this is broken up because I really want interpolation above,
2376: # and I really DON'T want it below
2377: $xmlfrag .= <<'CHOOSE_FROM_SUBDIR';
2378: <filefilter>return Apache::lonhelper::files::not_old_version($filename) &&
2379: $filename =~ m/\.(problem|exam|quiz|assess|survey|form|library)$/;
2380: </filefilter>
2381: </files>
2382: </state>
2383: CHOOSE_FROM_SUBDIR
2384: &Apache::lonxml::xmlparse($r, 'helper', $xmlfrag);
2385: }
2386:
2387: # Allow the user to select any sequence in the course, feed it to
2388: # another resource selector for that sequence
2389: if (!$helper->{VARS}->{'construction'}) {
2390: push @$printChoices, ["<b>Resources</b> from <b>selected sequence</b> in course",
2391: 'select_sequences', 'CHOOSE_SEQUENCE'];
2392: my $escapedSequenceName = $helper->{VARS}->{'SEQUENCE'};
2393: #Escape apostrophes and backslashes for Perl
2394: $escapedSequenceName =~ s/\\/\\\\/g;
2395: $escapedSequenceName =~ s/'/\\'/g;
2396: &Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_FROM_ANY_SEQUENCE);
2397: <state name="CHOOSE_SEQUENCE" title="Select Sequence To Print From">
2398: <message>Select the sequence to print resources from:</message>
2399: <resource variable="SEQUENCE">
2400: <nextstate>CHOOSE_FROM_ANY_SEQUENCE</nextstate>
2401: <filterfunc>return \$res->is_sequence;</filterfunc>
2402: <valuefunc>return $urlValue;</valuefunc>
2403: <choicefunc>return \$res->hasResource(\$res,sub { return !\$_[0]->is_sequence() },0,0);
2404: </choicefunc>
2405: </resource>
2406: </state>
2407: <state name="CHOOSE_FROM_ANY_SEQUENCE" title="Select Resources To Print">
2408: <message>(mark desired resources then click "next" button) <br /></message>
2409: <resource variable="RESOURCES" multichoice="1" toponly='1' addstatus="1"
2410: closeallpages="1">
2411: <nextstate>PAGESIZE</nextstate>
2412: <filterfunc>return $isProblem</filterfunc>
2413: <mapurl evaluate='1'>return '$escapedSequenceName';</mapurl>
2414: <valuefunc>return $symbFilter;</valuefunc>
2415: <option text='Newpage' variable='FINISHPAGE' />
2416: </resource>
2417: </state>
2418: CHOOSE_FROM_ANY_SEQUENCE
2419: }
2420:
2421: # Generate the first state, to select which resources get printed.
2422: Apache::lonhelper::state->new("START", "Select Printing Options:");
2423: $paramHash = Apache::lonhelper::getParamHash();
2424: $paramHash->{MESSAGE_TEXT} = "";
2425: Apache::lonhelper::message->new();
2426: $paramHash = Apache::lonhelper::getParamHash();
2427: $paramHash->{'variable'} = 'PRINT_TYPE';
2428: $paramHash->{CHOICES} = $printChoices;
2429: Apache::lonhelper::choices->new();
2430:
2431: my $startedTable = 0; # have we started an HTML table yet? (need
2432: # to close it later)
2433:
2434: if (($perm{'pav'} and &Apache::lonnet::allowed('vgr',$env{'request.course.id'})) or
2435: ($helper->{VARS}->{'construction'} eq '1')) {
2436: addMessage("<hr width='33%' /><table><tr><td align='right'>Print: </td><td>");
2437: $paramHash = Apache::lonhelper::getParamHash();
2438: $paramHash->{'variable'} = 'ANSWER_TYPE';
2439: $helper->declareVar('ANSWER_TYPE');
2440: $paramHash->{CHOICES} = [
2441: ['Without Answers', 'yes'],
2442: ['With Answers', 'no'],
2443: ['Only Answers', 'only']
2444: ];
2445: Apache::lonhelper::dropdown->new();
2446: addMessage("</td></tr>");
2447: $startedTable = 1;
2448: }
2449:
2450: if ($perm{'pav'}) {
2451: if (!$startedTable) {
2452: addMessage("<hr width='33%' /><table><tr><td align='right'>LaTeX mode: </td><td>");
2453: $startedTable = 1;
2454: } else {
2455: addMessage("<tr><td align='right'>LaTeX mode: </td><td>");
2456: }
2457: $paramHash = Apache::lonhelper::getParamHash();
2458: $paramHash->{'variable'} = 'LATEX_TYPE';
2459: $helper->declareVar('LATEX_TYPE');
2460: if ($helper->{VARS}->{'construction'} eq '1') {
2461: $paramHash->{CHOICES} = [
2462: ['standard LaTeX mode', 'standard'],
2463: ['LaTeX batchmode', 'batchmode'], ];
2464: } else {
2465: $paramHash->{CHOICES} = [
2466: ['LaTeX batchmode', 'batchmode'],
2467: ['standard LaTeX mode', 'standard'] ];
2468: }
2469: Apache::lonhelper::dropdown->new();
2470:
2471: addMessage("</td></tr><tr><td align='right'>Print Table of Contents: </td><td>");
2472: $paramHash = Apache::lonhelper::getParamHash();
2473: $paramHash->{'variable'} = 'TABLE_CONTENTS';
2474: $helper->declareVar('TABLE_CONTENTS');
2475: $paramHash->{CHOICES} = [
2476: ['No', 'no'],
2477: ['Yes', 'yes'] ];
2478: Apache::lonhelper::dropdown->new();
2479: addMessage("</td></tr>");
2480:
2481: if (not $helper->{VARS}->{'construction'}) {
2482: addMessage("<tr><td align='right'>Print Index: </td><td>");
2483: $paramHash = Apache::lonhelper::getParamHash();
2484: $paramHash->{'variable'} = 'TABLE_INDEX';
2485: $helper->declareVar('TABLE_INDEX');
2486: $paramHash->{CHOICES} = [
2487: ['No', 'no'],
2488: ['Yes', 'yes'] ];
2489: Apache::lonhelper::dropdown->new();
2490: addMessage("</td></tr>");
2491: addMessage("<tr><td align='right'>Print Discussions: </td><td>");
2492: $paramHash = Apache::lonhelper::getParamHash();
2493: $paramHash->{'variable'} = 'PRINT_DISCUSSIONS';
2494: $helper->declareVar('PRINT_DISCUSSIONS');
2495: $paramHash->{CHOICES} = [
2496: ['No', 'no'],
2497: ['Yes', 'yes'] ];
2498: Apache::lonhelper::dropdown->new();
2499: addMessage("</td></tr>");
2500:
2501: addMessage("<tr><td align = 'right'> </td><td>");
2502: $paramHash = Apache::lonhelper::getParamHash();
2503: $paramHash->{'multichoice'} = "true";
2504: $paramHash->{'allowempty'} = "true";
2505: $paramHash->{'variable'} = "showallfoils";
2506: $paramHash->{'CHOICES'} = [ ["Show all foils", "1"] ];
2507: Apache::lonhelper::choices->new();
2508: addMessage("</td></tr>");
2509: }
2510:
2511: if ($helper->{'VARS'}->{'construction'}) {
2512: my $stylevalue=$env{'construct.style'};
2513: my $xmlfrag .= <<"RNDSEED";
2514: <message><tr><td align='right'>Use random seed: </td><td></message>
2515: <string variable="curseed" size="15" maxlength="15">
2516: <defaultvalue>
2517: return $helper->{VARS}->{'curseed'};
2518: </defaultvalue>
2519: </string>
2520: <message></td></tr><tr><td align="right">Use style file:</td><td></message>
2521: <message><input type="text" size="40" name="style_file_value" value="$stylevalue" /> <a href="javascript:openbrowser('helpform','style_file','sty')">Select style file</a> </td><tr><td></message>
2522: <choices allowempty="1" multichoice="true" variable="showallfoils">
2523: <choice computer="1">Show all foils?</choice>
2524: </choices>
2525: <message></td></tr></message>
2526: RNDSEED
2527: &Apache::lonxml::xmlparse($r, 'helper', $xmlfrag);
2528: $helper->{'VARS'}->{'style_file'}=$env{'form.style_file_value'};
2529:
2530: }
2531: }
2532:
2533:
2534:
2535:
2536: if ($startedTable) {
2537: addMessage("</table>");
2538: }
2539:
2540: Apache::lonprintout::page_format_state->new("FORMAT");
2541:
2542: # Generate the PAGESIZE state which will offer the user the margin
2543: # choices if they select one column
2544: Apache::lonhelper::state->new("PAGESIZE", "Set Margins");
2545: Apache::lonprintout::page_size_state->new('pagesize', 'FORMAT', 'FINAL');
2546:
2547:
2548: $helper->process();
2549:
2550: # MANUAL BAILOUT CONDITION:
2551: # If we're in the "final" state, bailout and return to handler
2552: if ($helper->{STATE} eq 'FINAL') {
2553: return $helper;
2554: }
2555:
2556: $r->print($helper->display());
2557: if ($helper->{STATE} eq 'START') {
2558: &recently_generated($r);
2559: }
2560: &Apache::lonhelper::unregisterHelperTags();
2561:
2562: return OK;
2563: }
2564:
2565:
2566: 1;
2567:
2568: package Apache::lonprintout::page_format_state;
2569:
2570: =pod
2571:
2572: =head1 Helper element: page_format_state
2573:
2574: See lonhelper.pm documentation for discussion of the helper framework.
2575:
2576: Apache::lonprintout::page_format_state is an element that gives the
2577: user an opportunity to select the page layout they wish to print
2578: with: Number of columns, portrait/landscape, and paper size. If you
2579: want to change the paper size choices, change the @paperSize array
2580: contents in this package.
2581:
2582: page_format_state is always directly invoked in lonprintout.pm, so there
2583: is no tag interface. You actually pass parameters to the constructor.
2584:
2585: =over 4
2586:
2587: =item * B<new>(varName): varName is where the print information will be stored in the format FIXME.
2588:
2589: =back
2590:
2591: =cut
2592:
2593: use Apache::lonhelper;
2594:
2595: no strict;
2596: @ISA = ("Apache::lonhelper::element");
2597: use strict;
2598: use Apache::lonlocal;
2599: use Apache::lonnet;
2600:
2601: my $maxColumns = 2;
2602: # it'd be nice if these all worked
2603: #my @paperSize = ("letter [8 1/2x11 in]", "legal [8 1/2x14 in]",
2604: # "tabloid (ledger) [11x17 in]", "executive [7 1/2x10 in]",
2605: # "a2 [420x594 mm]", "a3 [297x420 mm]", "a4 [210x297 mm]",
2606: # "a5 [148x210 mm]", "a6 [105x148 mm]" );
2607: my @paperSize = ("letter [8 1/2x11 in]", "legal [8 1/2x14 in]",
2608: "a4 [210x297 mm]");
2609:
2610: # Tentative format: Orientation (L = Landscape, P = portrait) | Colnum |
2611: # Paper type
2612:
2613: sub new {
2614: my $self = Apache::lonhelper::element->new();
2615:
2616: shift;
2617:
2618: $self->{'variable'} = shift;
2619: my $helper = Apache::lonhelper::getHelper();
2620: $helper->declareVar($self->{'variable'});
2621: bless($self);
2622: return $self;
2623: }
2624:
2625: sub render {
2626: my $self = shift;
2627: my $helper = Apache::lonhelper::getHelper();
2628: my $result = '';
2629: my $var = $self->{'variable'};
2630: my $PageLayout=&mt('Page layout');
2631: my $NumberOfColumns=&mt('Number of columns');
2632: my $PaperType=&mt('Paper type');
2633: $result .= <<STATEHTML;
2634:
2635: <hr width="33%" />
2636: <table cellpadding="3">
2637: <tr>
2638: <td align="center"><b>$PageLayout</b></td>
2639: <td align="center"><b>$NumberOfColumns</b></td>
2640: <td align="center"><b>$PaperType</b></td>
2641: </tr>
2642: <tr>
2643: <td>
2644: <label><input type="radio" name="${var}.layout" value="L" /> Landscape </label><br />
2645: <label><input type="radio" name="${var}.layout" value="P" checked='1' /> Portrait </label>
2646: </td>
2647: <td align="center">
2648: <select name="${var}.cols">
2649: STATEHTML
2650:
2651: my $i;
2652: for ($i = 1; $i <= $maxColumns; $i++) {
2653: if ($i == 2) {
2654: $result .= "<option value='$i' selected>$i</option>\n";
2655: } else {
2656: $result .= "<option value='$i'>$i</option>\n";
2657: }
2658: }
2659:
2660: $result .= "</select></td><td>\n";
2661: $result .= "<select name='${var}.paper'>\n";
2662:
2663: my %parmhash=&Apache::lonnet::coursedescription($env{'request.course.id'});
2664: my $DefaultPaperSize=lc($parmhash{'default_paper_size'});
2665: $DefaultPaperSize=~s/\s//g;
2666: if ($DefaultPaperSize eq '') {$DefaultPaperSize='letter';}
2667: $i = 0;
2668: foreach (@paperSize) {
2669: $_=~/(\w+)/;
2670: my $papersize=$1;
2671: if ($paperSize[$i]=~/$DefaultPaperSize/) {
2672: $result .= "<option selected value='$papersize'>" . $paperSize[$i] . "</option>\n";
2673: } else {
2674: $result .= "<option value='$papersize'>" . $paperSize[$i] . "</option>\n";
2675: }
2676: $i++;
2677: }
2678: $result .= "</select></td></tr></table>";
2679: return $result;
2680: }
2681:
2682: sub postprocess {
2683: my $self = shift;
2684:
2685: my $var = $self->{'variable'};
2686: my $helper = Apache::lonhelper->getHelper();
2687: $helper->{VARS}->{$var} =
2688: $env{"form.$var.layout"} . '|' . $env{"form.$var.cols"} . '|' .
2689: $env{"form.$var.paper"};
2690: return 1;
2691: }
2692:
2693: 1;
2694:
2695: package Apache::lonprintout::page_size_state;
2696:
2697: =pod
2698:
2699: =head1 Helper element: page_size_state
2700:
2701: See lonhelper.pm documentation for discussion of the helper framework.
2702:
2703: Apache::lonprintout::page_size_state is an element that gives the
2704: user the opportunity to further refine the page settings if they
2705: select a single-column page.
2706:
2707: page_size_state is always directly invoked in lonprintout.pm, so there
2708: is no tag interface. You actually pass parameters to the constructor.
2709:
2710: =over 4
2711:
2712: =item * B<new>(varName): varName is where the print information will be stored in the format FIXME.
2713:
2714: =back
2715:
2716: =cut
2717:
2718: use Apache::lonhelper;
2719: use Apache::lonnet;
2720: no strict;
2721: @ISA = ("Apache::lonhelper::element");
2722: use strict;
2723:
2724:
2725:
2726: sub new {
2727: my $self = Apache::lonhelper::element->new();
2728:
2729: shift; # disturbs me (probably prevents subclassing) but works (drops
2730: # package descriptor)... - Jeremy
2731:
2732: $self->{'variable'} = shift;
2733: my $helper = Apache::lonhelper::getHelper();
2734: $helper->declareVar($self->{'variable'});
2735:
2736: # The variable name of the format element, so we can look into
2737: # $helper->{VARS} to figure out whether the columns are one or two
2738: $self->{'formatvar'} = shift;
2739:
2740: # The state to transition to after selection, or after discovering
2741: # the cols are not set to 1
2742: $self->{NEXTSTATE} = shift;
2743: bless($self);
2744: return $self;
2745: }
2746:
2747: sub render {
2748: my $self = shift;
2749: my $helper = Apache::lonhelper::getHelper();
2750: my $result = '';
2751: my $var = $self->{'variable'};
2752:
2753: if (defined $self->{ERROR_MSG}) {
2754: $result .= '<br /><font color="#FF0000">' . $self->{ERROR_MSG} . '</font><br />';
2755: }
2756:
2757: $result .= <<ELEMENTHTML;
2758:
2759: <p>How should the column be formatted?</p>
2760:
2761: <table cellpadding='3'>
2762: <tr>
2763: <td align='right'><b>Width</b>:</td>
2764: <td align='left'><input type='text' name='$var.width' value='18' size='4'></td>
2765: <td align='left'>
2766: <select name='$var.widthunit'>
2767: <option>cm</option><option>in</option>
2768: </select>
2769: </td>
2770: </tr>
2771: <tr>
2772: <td align='right'><b>Height</b>:</td>
2773: <td align='left'><input type='text' name="$var.height" value="25.9" size='4'></td>
2774: <td align='left'>
2775: <select name='$var.heightunit'>
2776: <option>cm</option><option>in</option>
2777: </select>
2778: </td>
2779: </tr>
2780: <tr>
2781: <td align='right'><b>Left margin</b>:</td>
2782: <td align='left'><input type='text' name='$var.lmargin' value='-1.5' size='4'></td>
2783: <td align='left'>
2784: <select name='$var.lmarginunit'>
2785: <option>cm</option><option>in</option>
2786: </select>
2787: </td>
2788: </tr>
2789: </table>
2790:
2791: <p>Hint: Some instructors like to leave scratch space for the student by
2792: making the width much smaller than the width of the page.</p>
2793:
2794: ELEMENTHTML
2795:
2796: return $result;
2797: }
2798:
2799: # If the user didn't select 1 column, skip this state.
2800: sub preprocess {
2801: my $self = shift;
2802: my $helper = Apache::lonhelper::getHelper();
2803:
2804: my $format = $helper->{VARS}->{$self->{'formatvar'}};
2805: if (substr($format, 2, 1) ne '1') {
2806: $helper->changeState($self->{NEXTSTATE});
2807: }
2808:
2809: return 1;
2810: }
2811:
2812: sub postprocess {
2813: my $self = shift;
2814:
2815: my $var = $self->{'variable'};
2816: my $helper = Apache::lonhelper->getHelper();
2817: my $width = $helper->{VARS}->{$var .'.width'} = $env{"form.${var}.width"};
2818: my $height = $helper->{VARS}->{$var .'.height'} = $env{"form.${var}.height"};
2819: my $lmargin = $helper->{VARS}->{$var .'.lmargin'} = $env{"form.${var}.lmargin"};
2820: $helper->{VARS}->{$var .'.widthunit'} = $env{"form.${var}.widthunit"};
2821: $helper->{VARS}->{$var .'.heightunit'} = $env{"form.${var}.heightunit"};
2822: $helper->{VARS}->{$var .'.lmarginunit'} = $env{"form.${var}.lmarginunit"};
2823:
2824: my $error = '';
2825:
2826: # /^-?[0-9]+(\.[0-9]*)?$/ -> optional minus, at least on digit, followed
2827: # by an optional period, followed by digits, ending the string
2828:
2829: if ($width !~ /^-?[0-9]+(\.[0-9]*)?$/) {
2830: $error .= "Invalid width; please type only a number.<br />\n";
2831: }
2832: if ($height !~ /^-?[0-9]+(\.[0-9]*)?$/) {
2833: $error .= "Invalid height; please type only a number.<br />\n";
2834: }
2835: if ($lmargin !~ /^-?[0-9]+(\.[0-9]*)?$/) {
2836: $error .= "Invalid left margin; please type only a number.<br />\n";
2837: }
2838:
2839: if (!$error) {
2840: Apache::lonhelper::getHelper()->changeState($self->{NEXTSTATE});
2841: return 1;
2842: } else {
2843: $self->{ERROR_MSG} = $error;
2844: return 0;
2845: }
2846: }
2847:
2848:
2849:
2850: __END__
2851:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>