Annotation of loncom/interface/lonprintout.pm, revision 1.268
1.1 www 1: # The LearningOnline Network
2: # Printout
3: #
1.268 ! sakharuk 4: # $Id: lonprintout.pm,v 1.267 2004/01/12 21:53:27 sakharuk Exp $
1.11 albertel 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
1.3 sakharuk 28: #
1.1 www 29: package Apache::lonprintout;
30:
31: use strict;
1.10 albertel 32: use Apache::Constants qw(:common :http);
1.2 sakharuk 33: use Apache::lonxml;
34: use Apache::lonnet;
1.54 sakharuk 35: use Apache::loncommon;
1.13 sakharuk 36: use Apache::inputtags;
1.54 sakharuk 37: use Apache::grades;
1.13 sakharuk 38: use Apache::edit;
1.5 sakharuk 39: use Apache::File();
1.68 sakharuk 40: use Apache::lonnavmaps;
1.227 sakharuk 41: use Apache::lonratedt;
1.34 sakharuk 42: use POSIX qw(strftime);
1.255 www 43: use Apache::lonlocal;
1.60 sakharuk 44: use GDBM_File;
45:
46:
47: my %hash;
1.76 sakharuk 48: my $LaTeXwidth = 0;
1.3 sakharuk 49:
1.2 sakharuk 50:
1.71 sakharuk 51: sub latex_header_footer_remove {
52: my $text = shift;
53: $text =~ s/\\end{document}//;
54: $text =~ s/\\documentclass([^&]*)\\begin{document}//;
55: return $text;
56: }
57:
58:
1.37 sakharuk 59: sub character_chart {
60: my $result = shift;
1.116 sakharuk 61: $result =~ s/&\#0?0?(7|9);//g;
62: $result =~ s/&\#0?(10|13);//g;
63: $result =~ s/&\#0?32;/ /g;
64: $result =~ s/&\#0?33;/!/g;
65: $result =~ s/&(\#0?34|quot);/\"/g;
66: $result =~ s/&\#0?35;/\\\#/g;
67: $result =~ s/&\#0?36;/\\\$/g;
68: $result =~ s/&\#0?37;/\\%/g;
69: $result =~ s/&(\#0?38|amp);/\\&/g;
70: $result =~ s/&\#(0?39|146);/\'/g;
71: $result =~ s/&\#0?40;/(/g;
72: $result =~ s/&\#0?41;/)/g;
73: $result =~ s/&\#0?42;/\*/g;
74: $result =~ s/&\#0?43;/\+/g;
75: $result =~ s/&\#(0?44|130);/,/g;
76: $result =~ s/&\#0?45;/-/g;
77: $result =~ s/&\#0?46;/\./g;
78: $result =~ s/&\#0?47;/\//g;
79: $result =~ s/&\#0?48;/0/g;
80: $result =~ s/&\#0?49;/1/g;
81: $result =~ s/&\#0?50;/2/g;
82: $result =~ s/&\#0?51;/3/g;
83: $result =~ s/&\#0?52;/4/g;
84: $result =~ s/&\#0?53;/5/g;
85: $result =~ s/&\#0?54;/6/g;
86: $result =~ s/&\#0?55;/7/g;
87: $result =~ s/&\#0?56;/8/g;
88: $result =~ s/&\#0?57;/9/g;
1.268 ! sakharuk 89: $result =~ s/&(\#0?58|colon);/:/g;
1.116 sakharuk 90: $result =~ s/&\#0?59;/;/g;
91: $result =~ s/&(\#0?60|lt|\#139);/\$<\$/g;
92: $result =~ s/&\#0?61;/\$=\$/g;
93: $result =~ s/&(\#0?62|gt|\#155);/\$>\$/g;
94: $result =~ s/&\#0?63;/\?/g;
95: $result =~ s/&\#0?65;/A/g;
96: $result =~ s/&\#0?66;/B/g;
97: $result =~ s/&\#0?67;/C/g;
98: $result =~ s/&\#0?68;/D/g;
99: $result =~ s/&\#0?69;/E/g;
100: $result =~ s/&\#0?70;/F/g;
101: $result =~ s/&\#0?71;/G/g;
102: $result =~ s/&\#0?72;/H/g;
103: $result =~ s/&\#0?73;/I/g;
104: $result =~ s/&\#0?74;/J/g;
105: $result =~ s/&\#0?75;/K/g;
106: $result =~ s/&\#0?76;/L/g;
107: $result =~ s/&\#0?77;/M/g;
108: $result =~ s/&\#0?78;/N/g;
109: $result =~ s/&\#0?79;/O/g;
110: $result =~ s/&\#0?80;/P/g;
111: $result =~ s/&\#0?81;/Q/g;
112: $result =~ s/&\#0?82;/R/g;
113: $result =~ s/&\#0?83;/S/g;
114: $result =~ s/&\#0?84;/T/g;
115: $result =~ s/&\#0?85;/U/g;
116: $result =~ s/&\#0?86;/V/g;
117: $result =~ s/&\#0?87;/W/g;
118: $result =~ s/&\#0?88;/X/g;
119: $result =~ s/&\#0?89;/Y/g;
120: $result =~ s/&\#0?90;/Z/g;
121: $result =~ s/&\#0?91;/[/g;
122: $result =~ s/&\#0?92;/\$\\setminus\$/g;
123: $result =~ s/&\#0?93;/]/g;
124: $result =~ s/&\#(0?94|136);/\$\\wedge\$/g;
125: $result =~ s/&\#(0?95|138|154);/\\underline{\\makebox[2mm]{\\strut}}/g;
126: $result =~ s/&\#(0?96|145);/\`/g;
127: $result =~ s/&\#0?97;/a/g;
128: $result =~ s/&\#0?98;/b/g;
129: $result =~ s/&\#0?99;/c/g;
130: $result =~ s/&\#100;/d/g;
131: $result =~ s/&\#101;/e/g;
132: $result =~ s/&\#102;/f/g;
133: $result =~ s/&\#103;/g/g;
134: $result =~ s/&\#104;/h/g;
135: $result =~ s/&\#105;/i/g;
136: $result =~ s/&\#106;/j/g;
137: $result =~ s/&\#107;/k/g;
138: $result =~ s/&\#108;/l/g;
139: $result =~ s/&\#109;/m/g;
140: $result =~ s/&\#110;/n/g;
141: $result =~ s/&\#111;/o/g;
142: $result =~ s/&\#112;/p/g;
143: $result =~ s/&\#113;/q/g;
144: $result =~ s/&\#114;/r/g;
145: $result =~ s/&\#115;/s/g;
146: $result =~ s/&\#116;/t/g;
147: $result =~ s/&\#117;/u/g;
148: $result =~ s/&\#118;/v/g;
149: $result =~ s/&\#119;/w/g;
150: $result =~ s/&\#120;/x/g;
151: $result =~ s/&\#121;/y/g;
152: $result =~ s/&\#122;/z/g;
153: $result =~ s/&\#123;/\\{/g;
154: $result =~ s/&\#124;/\|/g;
155: $result =~ s/&\#125;/\\}/g;
156: $result =~ s/&\#126;/\~/g;
157: $result =~ s/&\#131;/\\textflorin /g;
158: $result =~ s/&\#132;/\"/g;
159: $result =~ s/&\#133;/\$\\ldots\$/g;
160: $result =~ s/&\#134;/\$\\dagger\$/g;
161: $result =~ s/&\#135;/\$\\ddagger\$/g;
162: $result =~ s/&\#137;/\\textperthousand /g;
163: $result =~ s/&\#140;/{\\OE}/g;
164: $result =~ s/&\#147;/\`\`/g;
165: $result =~ s/&\#148;/\'\'/g;
166: $result =~ s/&\#149;/\$\\bullet\$/g;
167: $result =~ s/&\#150;/--/g;
168: $result =~ s/&\#151;/---/g;
169: $result =~ s/&\#152;/\$\\sim\$/g;
170: $result =~ s/&\#153;/\\texttrademark /g;
171: $result =~ s/&\#156;/\\oe/g;
172: $result =~ s/&\#159;/\\\"Y/g;
1.131 bowersj2 173: $result =~ s/&(\#160|nbsp);//g;
1.116 sakharuk 174: $result =~ s/&(\#161|iexcl);/!\`/g;
175: $result =~ s/&(\#162|cent);/\\textcent /g;
176: $result =~ s/&(\#163|pound);/\\pounds /g;
177: $result =~ s/&(\#164|curren);/\\textcurrency /g;
178: $result =~ s/&(\#165|yen);/\\textyen /g;
179: $result =~ s/&(\#166|brvbar);/\\textbrokenbar /g;
180: $result =~ s/&(\#167|sect);/\\textsection /g;
181: $result =~ s/&(\#168|uml);/\\texthighdieresis /g;
182: $result =~ s/&(\#169|copy);/\\copyright /g;
183: $result =~ s/&(\#170|ordf);/\\textordfeminine /g;
184: $result =~ s/&(\#172|not);/\$\\neg\$/g;
185: $result =~ s/&(\#173|shy);/ - /g;
186: $result =~ s/&(\#174|reg);/\\textregistered /g;
187: $result =~ s/&(\#175|macr);/\$^{-}\$/g;
188: $result =~ s/&(\#176|deg);/\$^{\\circ}\$/g;
189: $result =~ s/&(\#177|plusmn);/\$\\pm\$/g;
190: $result =~ s/&(\#178|sup2);/\$^2\$/g;
191: $result =~ s/&(\#179|sup3);/\$^3\$/g;
192: $result =~ s/&(\#180|acute);/\\textacute /g;
193: $result =~ s/&(\#181|micro);/\$\\mu\$/g;
194: $result =~ s/&(\#182|para);/\\P/g;
195: $result =~ s/&(\#183|middot);/\$\\cdot\$/g;
196: $result =~ s/&(\#184|cedil);/\\c{\\strut}/g;
197: $result =~ s/&(\#185|sup1);/\$^1\$/g;
198: $result =~ s/&(\#186|ordm);/\\textordmasculine /g;
199: $result =~ s/&(\#188|frac14);/\\textonequarter /g;
200: $result =~ s/&(\#189|frac12);/\\textonehalf /g;
201: $result =~ s/&(\#190|frac34);/\\textthreequarters /g;
202: $result =~ s/&(\#191|iquest);/?\`/g;
203: $result =~ s/&(\#192|Agrave);/\\\`{A}/g;
204: $result =~ s/&(\#193|Aacute);/\\\'{A}/g;
205: $result =~ s/&(\#194|Acirc);/\\^{A}/g;
206: $result =~ s/&(\#195|Atilde);/\\~{A}/g;
207: $result =~ s/&(\#196|Auml);/\\\"{A}/g;
208: $result =~ s/&(\#197|Aring);/{\\AA}/g;
209: $result =~ s/&(\#198|AElig);/{\\AE}/g;
210: $result =~ s/&(\#199|Ccedil);/\\c{c}/g;
211: $result =~ s/&(\#200|Egrave);/\\\`{E}/g;
212: $result =~ s/&(\#201|Eacute);/\\\'{E}/g;
213: $result =~ s/&(\#202|Ecirc);/\\^{E}/g;
214: $result =~ s/&(\#203|Euml);/\\\"{E}/g;
215: $result =~ s/&(\#204|Igrave);/\\\`{I}/g;
216: $result =~ s/&(\#205|Iacute);/\\\'{I}/g;
217: $result =~ s/&(\#206|Icirc);/\\^{I}/g;
218: $result =~ s/&(\#207|Iuml);/\\\"{I}/g;
219: $result =~ s/&(\#209|Ntilde);/\\~{N}/g;
220: $result =~ s/&(\#210|Ograve);/\\\`{O}/g;
221: $result =~ s/&(\#211|Oacute);/\\\'{O}/g;
222: $result =~ s/&(\#212|Ocirc);/\\^{O}/g;
223: $result =~ s/&(\#213|Otilde);/\\~{O}/g;
224: $result =~ s/&(\#214|Ouml);/\\\"{O}/g;
225: $result =~ s/&(\#215|times);/\$\\times\$/g;
226: $result =~ s/&(\#216|Oslash);/{\\O}/g;
227: $result =~ s/&(\#217|Ugrave);/\\\`{U}/g;
228: $result =~ s/&(\#218|Uacute);/\\\'{U}/g;
229: $result =~ s/&(\#219|Ucirc);/\\^{U}/g;
230: $result =~ s/&(\#220|Uuml);/\\\"{U}/g;
231: $result =~ s/&(\#221|Yacute);/\\\'{Y}/g;
232: $result =~ s/&(\#223|szlig);/\\ss/g;
233: $result =~ s/&(\#224|agrave);/\\\`{a}/g;
234: $result =~ s/&(\#225|aacute);/\\\'{a}/g;
235: $result =~ s/&(\#226|acirc);/\\^{a}/g;
236: $result =~ s/&(\#227|atilde);/\\~{a}/g;
237: $result =~ s/&(\#228|auml);/\\\"{a}/g;
238: $result =~ s/&(\#229|aring);/{\\aa}/g;
239: $result =~ s/&(\#230|aelig);/{\\ae}/g;
240: $result =~ s/&(\#231|ccedil);/\\c{c}/g;
241: $result =~ s/&(\#232|egrave);/\\\`{e}/g;
242: $result =~ s/&(\#233|eacute);/\\\'{e}/g;
243: $result =~ s/&(\#234|ecirc);/\\^{e}/g;
244: $result =~ s/&(\#235|euml);/\\\"{e}/g;
245: $result =~ s/&(\#236|igrave);/\\\`{i}/g;
246: $result =~ s/&(\#237|iacute);/\\\'{i}/g;
247: $result =~ s/&(\#238|icirc);/\\^{i}/g;
248: $result =~ s/&(\#239|iuml);/\\\"{i}/g;
249: $result =~ s/&(\#240|eth);/\$\\partial\$/g;
250: $result =~ s/&(\#241|ntilde);/\\~{n}/g;
251: $result =~ s/&(\#242|ograve);/\\\`{o}/g;
252: $result =~ s/&(\#243|oacute);/\\\'{o}/g;
253: $result =~ s/&(\#244|ocirc);/\\^{o}/g;
254: $result =~ s/&(\#245|otilde);/\\~{o}/g;
255: $result =~ s/&(\#246|ouml);/\\\"{o}/g;
256: $result =~ s/&(\#247|divide);/\$\\div\$/g;
257: $result =~ s/&(\#248|oslash);/{\\o}/g;
258: $result =~ s/&(\#249|ugrave);/\\\`{u}/g;
259: $result =~ s/&(\#250|uacute);/\\\'{u}/g;
260: $result =~ s/&(\#251|ucirc);/\\^{u}/g;
261: $result =~ s/&(\#252|uuml);/\\\"{u}/g;
262: $result =~ s/&(\#253|yacute);/\\\'{y}/g;
263: $result =~ s/&(\#255|yuml);/\\\"{y}/g;
264: $result =~ s/&\#952;/\$\\theta\$/g;
1.117 sakharuk 265: #Greek Alphabet
266: $result =~ s/&(alpha|\#945);/\$\\alpha \$/g;
267: $result =~ s/&(beta|\#946);/\$\\beta \$/g;
268: $result =~ s/&(gamma|\#947);/\$\\gamma \$/g;
269: $result =~ s/&(delta|\#948);/\$\\delta \$/g;
270: $result =~ s/&(epsilon|\#949);/\$\\epsilon \$/g;
271: $result =~ s/&(zeta|\#950);/\$\\zeta \$/g;
272: $result =~ s/&(eta|\#951);/\$\\eta \$/g;
273: $result =~ s/&(theta|\#952);/\$\\theta \$/g;
274: $result =~ s/&(iota|\#953);/\$\\iota \$/g;
275: $result =~ s/&(kappa|\#954);/\$\\kappa \$/g;
276: $result =~ s/&(lambda|\#955);/\$\\lambda \$/g;
277: $result =~ s/&(mu|\#956);/\$\\mu \$/g;
278: $result =~ s/&(nu|\#957);/\$\\nu \$/g;
279: $result =~ s/&(xi|\#958);/\$\\xi \$/g;
1.199 sakharuk 280: $result =~ s/&(omicron|\#959);/o/g;
1.117 sakharuk 281: $result =~ s/&(pi|\#960);/\$\\pi \$/g;
282: $result =~ s/&(rho|\#961);/\$\\rho \$/g;
283: $result =~ s/&(sigma|\#963);/\$\\sigma \$/g;
284: $result =~ s/&(tau|\#964);/\$\\tau \$/g;
285: $result =~ s/&(upsilon|\#965);/\$\\upsilon \$/g;
286: $result =~ s/&(phi|\#966);/\$\\phi \$/g;
287: $result =~ s/&(chi|\#967);/\$\\chi \$/g;
288: $result =~ s/&(psi|\#968);/\$\\psi \$/g;
289: $result =~ s/&(omega|\#969);/\$\\omega \$/g;
1.199 sakharuk 290: $result =~ s/&(thetasym|\#977);/\$\\vartheta \$/g;
291: $result =~ s/&(piv|\#982);/\$\\varpi \$/g;
292: $result =~ s/&(Alpha|\#913);/A/g;
293: $result =~ s/&(Beta|\#914);/B/g;
1.117 sakharuk 294: $result =~ s/&(Gamma|\#915);/\$\\Gamma \$/g;
295: $result =~ s/&(Delta|\#916);/\$\\Delta \$/g;
1.199 sakharuk 296: $result =~ s/&(Epsilon|\#917);/E/g;
297: $result =~ s/&(Zeta|\#918);/Z/g;
298: $result =~ s/&(Eta|\#919);/H/g;
1.117 sakharuk 299: $result =~ s/&(Theta|\#920);/\$\\Theta \$/g;
1.199 sakharuk 300: $result =~ s/&(Iota|\#921);/I/g;
301: $result =~ s/&(Kappa|\#922);/K/g;
1.117 sakharuk 302: $result =~ s/&(Lambda|\#923);/\$\\Lambda \$/g;
1.199 sakharuk 303: $result =~ s/&(Mu|\#924);/M/g;
304: $result =~ s/&(Nu|\#925);/N/g;
1.117 sakharuk 305: $result =~ s/&(Xi|\#926);/\$\\Xi \$/g;
1.199 sakharuk 306: $result =~ s/&(Omicron|\#927);/O/g;
1.117 sakharuk 307: $result =~ s/&(Pi|\#928);/\$\\Pi \$/g;
1.199 sakharuk 308: $result =~ s/&(Rho|\#929);/P/g;
1.117 sakharuk 309: $result =~ s/&(Sigma|\#931);/\$\\Sigma \$/g;
1.199 sakharuk 310: $result =~ s/&(Tau|\#932);/T/g;
1.117 sakharuk 311: $result =~ s/&(Upsilon|\#933);/\$\\Upsilon \$/g;
312: $result =~ s/&(Phi|\#934);/\$\\Phi \$/g;
1.199 sakharuk 313: $result =~ s/&(Chi|\#935);/X/g;
1.117 sakharuk 314: $result =~ s/&(Psi|\#936);/\$\\Psi \$/g;
315: $result =~ s/&(Omega|\#937);/\$\\Omega \$/g;
1.199 sakharuk 316: #Arrows (extended HTML 4.01)
317: $result =~ s/&(larr|\#8592);/\$\\leftarrow \$/g;
318: $result =~ s/&(uarr|\#8593);/\$\\uparrow \$/g;
319: $result =~ s/&(rarr|\#8594);/\$\\rightarrow \$/g;
320: $result =~ s/&(darr|\#8595);/\$\\downarrow \$/g;
321: $result =~ s/&(harr|\#8596);/\$\\leftrightarrow \$/g;
322: $result =~ s/&(lArr|\#8656);/\$\\Leftarrow \$/g;
323: $result =~ s/&(uArr|\#8657);/\$\\Uparrow \$/g;
324: $result =~ s/&(rArr|\#8658);/\$\\Rightarrow \$/g;
325: $result =~ s/&(dArr|\#8659);/\$\\Downarrow \$/g;
326: $result =~ s/&(hArr|\#8660);/\$\\Leftrightarrow \$/g;
327: #Mathematical Operators (extended HTML 4.01)
328: $result =~ s/&(forall|\#8704);/\$\\forall \$/g;
329: $result =~ s/&(part|\#8706);/\$\\partial \$/g;
330: $result =~ s/&(exist|\#8707);/\$\\exists \$/g;
331: $result =~ s/&(empty|\#8709);/\$\\emptyset \$/g;
332: $result =~ s/&(nabla|\#8711);/\$\\nabla \$/g;
333: $result =~ s/&(isin|\#8712);/\$\\in \$/g;
334: $result =~ s/&(notin|\#8713);/\$\\notin \$/g;
335: $result =~ s/&(ni|\#8715);/\$\\ni \$/g;
336: $result =~ s/&(prod|\#8719);/\$\\prod \$/g;
337: $result =~ s/&(sum|\#8721);/\$\\sum \$/g;
338: $result =~ s/&(minus|\#8722);/\$-\$/g;
339: $result =~ s/&(lowast|\#8727);/\$*\$/g;
340: $result =~ s/&(radic|\#8730);/\$\\surd \$/g;
341: $result =~ s/&(prop|\#8733);/\$\\propto \$/g;
342: $result =~ s/&(infin|\#8734);/\$\\infty \$/g;
343: $result =~ s/&(ang|\#8736);/\$\\angle \$/g;
344: $result =~ s/&(and|\#8743);/\$\\wedge \$/g;
345: $result =~ s/&(or|\#8744);/\$\\vee \$/g;
346: $result =~ s/&(cap|\#8745);/\$\\cap \$/g;
347: $result =~ s/&(cup|\#8746);/\$\\cup \$/g;
348: $result =~ s/&(int|\#8747);/\$\\int \$/g;
349: $result =~ s/&(sim|\#8764);/\$\\sim \$/g;
350: $result =~ s/&(cong|\#8773);/\$\\cong \$/g;
351: $result =~ s/&(asymp|\#8776);/\$\\approx \$/g;
352: $result =~ s/&(ne|\#8800);/\$\\not= \$/g;
353: $result =~ s/&(equiv|\#8801);/\$\\equiv \$/g;
354: $result =~ s/&(le|\#8804);/\$\\leq \$/g;
355: $result =~ s/&(ge|\#8805);/\$\\geq \$/g;
356: $result =~ s/&(sub|\#8834);/\$\\subset \$/g;
357: $result =~ s/&(sup|\#8835);/\$\\supset \$/g;
358: $result =~ s/&(nsub|\#8836);/\$\\not\\subset \$/g;
359: $result =~ s/&(sube|\#8838);/\$\\subseteq \$/g;
360: $result =~ s/&(supe|\#8839);/\$\\supseteq \$/g;
361: $result =~ s/&(oplus|\#8853);/\$\\oplus \$/g;
362: $result =~ s/&(otimes|\#8855);/\$\\otimes \$/g;
363: $result =~ s/&(perp|\#8869);/\$\\perp \$/g;
364: $result =~ s/&(sdot|\#8901);/\$\\cdot \$/g;
365: #Geometric Shapes (extended HTML 4.01)
366: $result =~ s/&(loz|\#9674);/\$\\Diamond \$/g;
367: #Miscellaneous Symbols (extended HTML 4.01)
368: $result =~ s/&(spades|\#9824);/\$\\spadesuit \$/g;
369: $result =~ s/&(clubs|\#9827);/\$\\clubsuit \$/g;
370: $result =~ s/&(hearts|\#9829);/\$\\heartsuit \$/g;
371: $result =~ s/&(diams|\#9830);/\$\\diamondsuit \$/g;
1.37 sakharuk 372: return $result;
373: }
1.41 sakharuk 374:
375:
1.177 sakharuk 376: sub page_format {
1.140 sakharuk 377: #
378: #Correspondence between $papersize variable and real paper format:
379: # 0 - "Letter [8 1/2x11 in]"
380: # 1 - "Legal [8 1/2x14 in]"
381: # 2 - "Ledger/Tabloid [11x17 in]"
382: # 3 - "Executive [7 1/2x10 in]"
383: # 4 - "A2 [420x594 mm]"
384: # 5 - "A3 [297x420 mm]"
385: # 6 - "A4 [210x297 mm]"
386: # 7 - "A5 [148x210 mm]"
387: # 8 - "A6 [105x148 mm]"
388: #
389: my ($papersize,$layout,$numberofcolumns) = @_;
1.202 sakharuk 390: my ($textwidth,$textheight,$oddoffset,$evenoffset,$topmargin) = (0,0,0,0,0);
1.140 sakharuk 391: if ($papersize eq '0') {
392: if ($layout eq 'book') {
393: if ($numberofcolumns == 1) {
1.190 sakharuk 394: $textwidth = '7.1 in'; #'18 cm';
395: $textheight = '10.2 in'; #'25.9 cm';
1.140 sakharuk 396: $oddoffset = '-0.57 in';
397: $evenoffset = '-0.57 in';
398: } elsif ($numberofcolumns == 2) {
1.190 sakharuk 399: $textwidth = '3.66 in'; #'93 mm';
400: $textheight = '10.2 in'; #'25.9 cm';
1.140 sakharuk 401: $oddoffset = '-0.57 in';
402: $evenoffset = '-0.57 in';
403: }
404: } elsif ($layout eq 'album') {
405: if ($numberofcolumns eq '1') {
406: $textwidth = '8.8 in';
407: $textheight = '6.8 in';
408: $oddoffset = '-40 pt';
409: $evenoffset = '-60 pt';
410: } elsif ($numberofcolumns == 2) {
1.202 sakharuk 411: $textwidth = '4.4 in';
1.140 sakharuk 412: $textheight = '6.8 in';
1.202 sakharuk 413: $oddoffset = '-0.5 in';
414: $evenoffset = '-1.5 in';
415: $topmargin = '3.5 in';
1.140 sakharuk 416: }
417: }
418: # } elsif($papersize eq '1') {
419: # } elsif($papersize eq '2') {
420: # } elsif($papersize eq '3'/) {
421: } elsif($papersize eq '6') {
422: if ($layout eq 'book') {
423: if ($numberofcolumns == 1) {
424: $textwidth = '18 cm';
425: $textheight = '28 cm';
426: $oddoffset = '-0.57 in';
427: $evenoffset = '-0.57 in';
428: } elsif ($numberofcolumns == 2) {
429: $textwidth = '96 mm';
430: $textheight = '2 cm';
431: $oddoffset = '-0.57 in';
432: $evenoffset = '-0.57 in';
433: }
434: } elsif ($layout eq 'album') {
435: if ($numberofcolumns eq '1') {
436: $textwidth = '8.5 in';
437: $textheight = '7.7 in';
438: $oddoffset = '-40 pt';
439: $evenoffset = '-60 pt';
440: } elsif ($numberofcolumns == 2) {
441: $textwidth = '3.9 in';
442: $textheight = '7.7 in';
443: $oddoffset = '-40 pt';
444: $evenoffset = '-60 pt';
445: }
446: }
447: # } elsif($papersize eq '5') {
448: # } elsif($papersize eq '4') {
449: # } elsif($papersize eq '7') {
450: # } elsif($papersize eq '8') {
1.76 sakharuk 451: }
1.202 sakharuk 452: return $textwidth,$textheight,$oddoffset,$evenoffset,$topmargin;
1.140 sakharuk 453: }
1.76 sakharuk 454:
455:
1.126 albertel 456: sub get_name {
457: my ($uname,$udom)=@_;
458: if (!defined($uname)) { $uname=$ENV{'user.name'}; }
1.212 albertel 459: if (!defined($udom)) { $udom=$ENV{'user.domain'}; }
1.126 albertel 460: my $plainname=&Apache::loncommon::plainname($uname,$udom);
1.213 albertel 461: if ($plainname=~/^\s*$/) { $plainname=$uname.'@'.$udom; }
462: $plainname=&Apache::lonxml::latex_special_symbols($plainname,'header');
463: return $plainname;
1.126 albertel 464: }
465:
1.213 albertel 466: sub get_course {
467: my $courseidinfo;
468: if (defined($ENV{'request.course.id'})) {
469: $courseidinfo = &Apache::lonxml::latex_special_symbols(&Apache::lonnet::unescape($ENV{'course.'.$ENV{'request.course.id'}.'.description'}),'header');
470: }
471: return $courseidinfo;
472: }
1.177 sakharuk 473:
1.76 sakharuk 474: sub page_format_transformation {
1.214 sakharuk 475: my ($papersize,$layout,$numberofcolumns,$choice,$text,$assignment,$tableofcontents,$indexlist) = @_;
1.202 sakharuk 476: my ($textwidth,$textheight,$oddoffset,$evenoffset,$topmargin);
1.268 ! sakharuk 477: $assignment=&character_chart($assignment);
1.222 sakharuk 478: $assignment=&Apache::lonxml::latex_special_symbols($assignment,'header');
1.261 sakharuk 479: ($textwidth,$textheight,$oddoffset,$evenoffset,$topmargin) = &page_format($papersize,$layout,$numberofcolumns,$topmargin);
1.126 albertel 480: my $name = &get_name();
1.213 albertel 481: my $courseidinfo = &get_course();
482: if (defined($courseidinfo)) { $courseidinfo=' - '.$courseidinfo }
1.140 sakharuk 483: if ($layout eq 'album') {
1.202 sakharuk 484: my $topmargintoinsert = '';
485: if ($topmargin ne '0') {$topmargintoinsert='\setlength{\topmargin}{'.$topmargin.'}';}
1.213 albertel 486: $text =~ s/\\begin{document}/\\setlength{\\oddsidemargin}{$oddoffset}\\setlength{\\evensidemargin}{$evenoffset}$topmargintoinsert\\setlength{\\textwidth}{$textwidth}\\setlength{\\textheight}{$textheight}\\setlength{\\textfloatsep}{8pt plus 2\.0pt minus 4\.0pt}\\newlength{\\minipagewidth}\\setlength{\\minipagewidth}{\\textwidth\/\$number_of_columns-0\.2cm}\\usepackage{fancyhdr}\\pagestyle{fancy}\\rhead{}\\chead{}\\lhead{\\textbf{$name} $courseidinfo \\hfill \\thepage \\\\ \\textit{$assignment}} \\begin{document}\\voffset=-0\.8 cm\\setcounter{page}{1} /;
1.140 sakharuk 487: } elsif ($layout eq 'book') {
488: if ($choice ne 'All class print') {
1.213 albertel 489: $text =~ s/\\begin{document}/\\textheight $textheight\\oddsidemargin = $evenoffset\\evensidemargin = $evenoffset\\textwidth= $textwidth\\newlength{\\minipagewidth}\\setlength{\\minipagewidth}{\\textwidth\/\$number_of_columns-0\.2cm}\\renewcommand{\\ref}{\\keephidden\}\\usepackage{fancyhdr}\\pagestyle{fancy}\\rhead{}\\chead{}\\lhead{\\textbf{$name} $courseidinfo \\hfill \\thepage \\\\ \\textit{$assignment}}\\begin{document}\\voffset=-0\.8 cm\\setcounter{page}{1}/;
1.140 sakharuk 490: } else {
1.190 sakharuk 491: $text =~ s/\\pagestyle{fancy}\\rhead{}\\chead{}\s*\\begin{document}/\\textheight = $textheight\\oddsidemargin = $evenoffset\\evensidemargin = $evenoffset\\textwidth= $textwidth\\newlength{\\minipagewidth}\\setlength{\\minipagewidth}{\\textwidth\/\$number_of_columns-0\.2cm}\\renewcommand{\\ref}{\\keephidden\}\\pagestyle{fancy}\\rhead{}\\chead{}\\begin{document}\\voffset=-0\.8cm\\setcounter{page}{1} \\vskip 5 mm /;
1.140 sakharuk 492: }
493: }
1.214 sakharuk 494: if ($tableofcontents eq 'yes') {$text=~s/(\\setcounter\{page\}\{1\})/$1 \\tableofcontents\\newpage /;}
495: if ($indexlist eq 'yes') {
496: $text=~s/(\\begin{document})/\\makeindex $1/;
497: $text=~s/(\\end{document})/\\strut\\\\\\strut\\printindex $1/;
498: }
1.140 sakharuk 499: return $text;
500: }
501:
502:
1.33 sakharuk 503: sub page_cleanup {
504: my $result = shift;
1.65 sakharuk 505:
506: $result =~ m/\\end{document}(\d*)$/;
1.34 sakharuk 507: my $number_of_columns = $1;
1.33 sakharuk 508: my $insert = '{';
1.34 sakharuk 509: for (my $id=1;$id<=$number_of_columns;$id++) { $insert .='l'; }
1.33 sakharuk 510: $insert .= '}';
1.65 sakharuk 511: $result =~ s/(\\begin{longtable})INSERTTHEHEADOFLONGTABLE\\endfirsthead\\endhead/$1$insert/g;
1.34 sakharuk 512: $result =~ s/&\s*REMOVETHEHEADOFLONGTABLE\\\\/\\\\/g;
513: return $result,$number_of_columns;
1.7 sakharuk 514: }
1.5 sakharuk 515:
1.3 sakharuk 516:
1.60 sakharuk 517: sub details_for_menu {
518:
519: my $name_of_resourse = $hash{'title_'.$hash{'ids_'.$ENV{'form.postdata'}}};
1.268 ! sakharuk 520: $name_of_resourse=&character_chart($name_of_resourse);
1.60 sakharuk 521: my $symbolic = &Apache::lonnet::symbread($ENV{'form.postdata'});
1.233 www 522: my ($map,$id,$resource)=&Apache::lonnet::decode_symb($symbolic);
1.123 albertel 523: $map=&Apache::lonnet::clutter($map);
1.102 sakharuk 524: my $name_of_sequence;
1.123 albertel 525: $name_of_sequence = $hash{'title_'.$hash{'ids_'.$map}};
1.268 ! sakharuk 526: $name_of_sequence=&character_chart($name_of_sequence);
1.63 albertel 527: if ($name_of_sequence =~ /^\s*$/) {
1.123 albertel 528: $map =~ m|([^/]+)$|;
529: $name_of_sequence = $1;
1.63 albertel 530: }
1.123 albertel 531: my $name_of_map = $hash{'title_'.$hash{'ids_'.&Apache::lonnet::clutter($ENV{'request.course.uri'})}};
1.268 ! sakharuk 532: $name_of_map=&character_chart($name_of_map);
1.63 albertel 533: if ($name_of_map =~ /^\s*$/) {
1.123 albertel 534: $ENV{'request.course.uri'} =~ m|([^/]+)$|;
535: $name_of_map = $1;
536: }
1.63 albertel 537: return ($name_of_resourse,$name_of_sequence,$name_of_map);
1.60 sakharuk 538:
1.76 sakharuk 539: }
540:
541:
542: sub latex_corrections {
543:
544: my ($number_of_columns,$result) = @_;
545:
1.185 sakharuk 546: # $result =~ s/\\includegraphics{/\\includegraphics\[width=\\minipagewidth\]{/g;
1.76 sakharuk 547: $result =~ s/\$number_of_columns/$number_of_columns/g;
1.91 sakharuk 548: $result =~ s/(\\end{document})/\\strut\\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/;
549: $result =~ s/(\\end{longtable}\s*)(\\strut\\newline\\noindent\\makebox\[\\textwidth\/$number_of_columns\]\[b\]{\\hrulefill})/$2$1/g;
550: $result =~ s/(\\end{longtable}\s*)\\strut\\newline/$1/g;
1.76 sakharuk 551: #-- LaTeX corrections
552: my $first_comment = index($result,'<!--',0);
553: while ($first_comment != -1) {
554: my $end_comment = index($result,'-->',$first_comment);
555: substr($result,$first_comment,$end_comment-$first_comment+3) = '';
556: $first_comment = index($result,'<!--',$first_comment);
557: }
558: $result =~ s/^\s+$//gm; #remove empty lines
1.94 sakharuk 559: $result =~ s/(\s)(\s+)/$1/g; #removes more than one empty space
1.76 sakharuk 560: $result =~ s/\\\\\s*\\vskip/\\vskip/gm;
561: $result =~ s/\\\\\s*\\noindent\s*(\\\\)+/\\\\\\noindent /g;
562: $result =~ s/{\\par }\s*\\\\/\\\\/gm;
563: $result =~ s/\\\\\s+\[/ \[/g;
564: $result =~ s/\b__+\b/\\makebox\[1 cm\]\[b\]{\\hrulefill}/g;
565: #conversion of html characters to LaTeX equivalents
566: if ($result =~ m/&(\w+|#\d+);/) {
567: $result = &character_chart($result);
568: }
569: $result =~ s/(\\end{tabular})\s*\\vskip 0 mm/$1/g;
570: $result =~ s/(\\begin{enumerate})\s*\\noindent/$1/g;
571:
572: return $result;
1.60 sakharuk 573: }
574:
1.3 sakharuk 575:
1.214 sakharuk 576: sub index_table {
577: my $currentURL = shift;
578: my $insex_string='';
579: $currentURL=~s/\.([^\/+])$/\.$1\.meta/;
580: $insex_string=&Apache::lonnet::metadata($currentURL,'keywords');
581: return $insex_string;
582: }
583:
584:
1.215 sakharuk 585: sub IndexCreation {
586: my ($texversion,$currentURL)=@_;
587: my @key_words=split(/,/,&index_table($currentURL));
588: my $chunk='';
589: my $st=index $texversion,'\addcontentsline{toc}{subsection}{';
590: if ($st>0) {
591: for (my $i=0;$i<3;$i++) {$st=(index $texversion,'}',$st+1);}
592: $chunk=substr($texversion,0,$st+1);
593: substr($texversion,0,$st+1)=' ';
594: }
595: foreach my $key_word (@key_words) {
596: if ($key_word=~/\S+/) {
597: $texversion=~s/\b($key_word)\b/$1 \\index{$key_word} /i;
598: }
599: }
600: if ($st>0) {substr($texversion,0,1)=$chunk;}
601: return $texversion;
602: }
603:
1.242 sakharuk 604: sub print_latex_header {
605: my $mode=shift;
606: my $output='\documentclass[letterpaper]{article}';
607: if ($mode eq 'batchmode') {
608: $output.='\batchmode';
609: }
610: $output.='\newcommand{\keephidden}[1]{}\renewcommand{\deg}{$^{\circ}$}'.
611: '\usepackage{longtable}\usepackage{textcomp}\usepackage{makeidx}'.
612: '\usepackage[dvips]{graphicx}\usepackage{epsfig}\usepackage{calc}'.
613: '\newenvironment{choicelist}{\begin{list}{}{\setlength{\rightmargin}{0in}'.
614: '\setlength{\leftmargin}{0.13in}\setlength{\topsep}{0.05in}'.
615: '\setlength{\itemsep}{0.022in}\setlength{\parsep}{0in}'.
616: '\setlength{\belowdisplayskip}{0.04in}\setlength{\abovedisplayskip}{0.05in}'.
617: '\setlength{\abovedisplayshortskip}{-0.04in}'.
618: '\setlength{\belowdisplayshortskip}{0.04in}}}{\end{list}}'.
619: '\renewenvironment{theindex}{\begin{list}{}{{\vskip 1mm \noindent \large'.
620: '\textbf{Index}} \newline \setlength{\rightmargin}{0in}'.
621: '\setlength{\leftmargin}{0.13in}\setlength{\topsep}{0.01in}'.
622: '\setlength{\itemsep}{0.1in}\setlength{\parsep}{-0.02in}'.
623: '\setlength{\belowdisplayskip}{0.01in}\setlength{\abovedisplayskip}{0.01in}'.
624: '\setlength{\abovedisplayshortskip}{-0.04in}'.
625: '\setlength{\belowdisplayshortskip}{0.01in}}}{\end{list}}\begin{document}';
626: return $output;
627: }
628:
629: sub path_to_problem {
630: my ($urlp,$LaTeXwidth)=@_;
631: my $newurlp = '';
632: $LaTeXwidth=~s/\s*mm\s*$//;
633: my $HowMany = length($urlp)*2;
634: if ($HowMany > $LaTeXwidth) {
635: my @temporrary = split '/',$urlp;
636: my $HowManyNew = 0;
637: for (my $ii=0;$ii<=$#temporrary;$ii++) {
638: if ($temporrary[$ii] ne '') {
639: $HowManyNew += length($temporrary[$ii])*2;
640: if ($HowManyNew < $LaTeXwidth ) {
641: $newurlp .= '/'.$temporrary[$ii];
642: } else {
643: $HowManyNew = 0;
644: $newurlp .= '|\vskip -1 mm \noindent \verb|';
645: $ii--;
646: }
647: }
648: }
1.253 sakharuk 649: } else {
650: $newurlp=$urlp;
1.242 sakharuk 651: }
652: return '{\small\noindent\verb|'.$newurlp.'|\vskip 0 mm}';
653: }
1.215 sakharuk 654:
1.177 sakharuk 655: sub output_data {
1.184 sakharuk 656: my ($r,$helper,$rparmhash) = @_;
657: my %parmhash = %$rparmhash;
1.187 www 658: my $bodytag=&Apache::loncommon::bodytag('Preparing Printout');
1.140 sakharuk 659: $r->print(<<ENDPART);
660: <html>
1.264 sakharuk 661: <script type="text/javascript" language="Javascript" >
662: var editbrowser;
663: function openbrowser(formname,elementname,only,omit) {
664: var url = '/res/?';
665: if (editbrowser == null) {
666: url += 'launch=1&';
667: }
668: url += 'catalogmode=interactive&';
669: url += 'mode=parmset&';
670: url += 'form=' + formname + '&';
671: if (only != null) {
672: url += 'only=' + only + '&';
673: }
674: if (omit != null) {
675: url += 'omit=' + omit + '&';
676: }
677: url += 'element=' + elementname + '';
678: var title = 'Browser';
679: var options = 'scrollbars=1,resizable=1,menubar=0';
680: options += ',width=700,height=600';
681: editbrowser = open(url,title,options,'1');
682: editbrowser.focus();
683: }
684: </script>
1.140 sakharuk 685: <head>
686: <title>LON-CAPA output for printing</title>
687: </head>
1.187 www 688: $bodytag
689: Please stand by while processing your print request, this may take some time ...
1.140 sakharuk 690: ENDPART
691:
692: my $format_from_helper = $helper->{'VARS'}->{'FORMAT'};
693: my ($result,$selectionmade) = ('','');
694: my $number_of_columns = 1; #used only for pages to determine the width of the cell
695: my @temporary_array=split /\|/,$format_from_helper;
696: my ($laystyle,$numberofcolumns,$papersize)=@temporary_array;
697: if ($laystyle eq 'L') {
698: $laystyle='album';
699: } else {
700: $laystyle='book';
701: }
1.177 sakharuk 702: my ($textwidth,$textheight,$oddoffset,$evenoffset) = &page_format($papersize,$laystyle,$numberofcolumns);
1.140 sakharuk 703: my $assignment = $ENV{'form.assignment'};
704: my $LaTeXwidth;
1.190 sakharuk 705: if ($textwidth=~/(\d+\.?\d*)\s*cm/) {
1.140 sakharuk 706: $LaTeXwidth = $1*10;
1.190 sakharuk 707: } elsif ($textwidth=~/(\d+\.?\d*)\s*mm/) {
1.140 sakharuk 708: $LaTeXwidth = $1;
1.190 sakharuk 709: } elsif ($textwidth=~/(\d+\.?\d*)\s*in/) {
1.140 sakharuk 710: $LaTeXwidth = $1*25.4;
711: }
712: $LaTeXwidth.=' mm';
1.153 sakharuk 713:
1.140 sakharuk 714: if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'current_document') {
1.143 sakharuk 715: #-- single document - problem, page, html, xml, ...
716: my $currentURL;
1.162 sakharuk 717: if ($helper->{'VARS'}->{'construction'} ne '1') {
1.185 sakharuk 718: #prints published resource
1.153 sakharuk 719: $currentURL=$helper->{'VARS'}->{'postdata'};
1.143 sakharuk 720: } else {
1.185 sakharuk 721: #prints resource from the construction space
1.240 albertel 722: $currentURL='/'.$helper->{'VARS'}->{'filename'};
1.206 sakharuk 723: if ($currentURL=~/([^?]+)/) {$currentURL=$1;}
1.143 sakharuk 724: }
1.140 sakharuk 725: $selectionmade = 1;
1.143 sakharuk 726: if ($currentURL=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)$/) {
1.169 albertel 727: my $rndseed=time;
1.242 sakharuk 728: my $texversion='';
729: if ($helper->{'VARS'}->{'ANSWER_TYPE'} ne 'only') {
730: my %moreenv;
731: $moreenv{'request.filename'}=$currentURL;
1.265 sakharuk 732: if ($helper->{'VARS'}->{'style_file'}=~/\w/) {
733: $moreenv{'construct.style'}=$helper->{'VARS'}->{'style_file'};
734: my $dom = $ENV{'user.domain'};
735: my $user = $ENV{'user.name'};
736: my $put_result = &Apache::lonnet::put('environment',{'construct.style'=>$helper->{'VARS'}->{'style_file'}},$dom,$user);
737: }
1.242 sakharuk 738: my %form;
739: $form{'grade_target'}='tex';
740: $form{'textwidth'}=$LaTeXwidth;
741: $form{'problem_split'}=$parmhash{'problem_stream_switch'};
742: $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
743: if ($helper->{'VARS'}->{'curseed'}) {
744: $rndseed=$helper->{'VARS'}->{'curseed'};
745: }
746: $form{'rndseed'}=$rndseed;
747: &Apache::lonnet::appenv(%moreenv);
748: &Apache::lonnet::delenv('form.counter');
749: &Apache::lonxml::init_counter();
750: $texversion=&Apache::lonnet::ssi($currentURL,%form);
751: &Apache::lonnet::delenv('form.counter');
752: &Apache::lonnet::delenv('request.filename');
1.230 albertel 753: }
1.242 sakharuk 754: if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
755: ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
1.166 albertel 756: my %form;
757: $form{'grade_target'}='answer';
1.167 albertel 758: $form{'answer_output_mode'}='tex';
1.169 albertel 759: $form{'rndseed'}=$rndseed;
1.166 albertel 760: my $answer=&Apache::lonnet::ssi($currentURL,%form);
1.242 sakharuk 761: if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
762: $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
763: } else {
764: $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
1.245 sakharuk 765: if ($helper->{'VARS'}->{'construction'} ne '1') {
766: $texversion.='\vskip 0 mm \noindent\textbf{'.&Apache::lonnet::gettitle($helper->{'VARS'}->{'symb'}).'}\vskip 0 mm ';
767: $texversion.=&path_to_problem ($currentURL,$LaTeXwidth);
768: } else {
769: $texversion.='\vskip 0 mm \noindent\textbf{Prints from construction space - there is no title.}\vskip 0 mm ';
770: my $URLpath=$currentURL;
771: $URLpath=~s/~([^\/]+)/public_html\/$1\/$1/;
772: $texversion.=&path_to_problem ($URLpath,$LaTeXwidth);
773: }
1.242 sakharuk 774: $texversion.='\vskip 1 mm '.$answer.'\end{document}';
775: }
1.163 sakharuk 776: }
1.214 sakharuk 777: if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
1.215 sakharuk 778: $texversion=&IndexCreation($texversion,$currentURL);
1.214 sakharuk 779: }
1.219 sakharuk 780: if ($helper->{'VARS'}->{'CONSTR_RESOURSE_URL'} eq 'yes') {
781: $texversion=~s/(\\addcontentsline\{toc\}\{subsection\}\{[^\}]*\})/$1 URL: \\verb|$currentURL| \\strut\\\\\\strut /;
782:
783: }
1.162 sakharuk 784: $result .= $texversion;
785: if ($currentURL=~m/\.page\s*$/) {
786: ($result,$number_of_columns) = &page_cleanup($result);
787: }
1.227 sakharuk 788: } elsif ($currentURL=~/\.sequence$/ && $helper->{'VARS'}->{'construction'} eq '1') {
789: #printing content of sequence from the construction space
790: my $flag_latex_header_remove = 'NO';
791: my $rndseed=time;
1.231 albertel 792: if ($helper->{'VARS'}->{'curseed'}) {
793: $rndseed=$helper->{'VARS'}->{'curseed'};
794: }
1.227 sakharuk 795: $currentURL=~s|\/~([^\/]+)\/|\/home\/$1\/public_html\/|;
796: my $errtext=&Apache::lonratedt::mapread($currentURL);
797: for (my $member=0;$member<=$#Apache::lonratedt::order;$member++) {
798: $Apache::lonratedt::resources[$Apache::lonratedt::order[$member]]=~/^([^:]*):([^:]*):/;
799: my $urlp=$2;
800: if ($urlp=~/\.(problem|exam|quiz|assess|survey|form|library|xml|html|htm|xhtml|xhtm)$/) {
1.245 sakharuk 801: my $texversion='';
802: if ($helper->{'VARS'}->{'ANSWER_TYPE'} ne 'only') {
803: my %form;
804: $form{'grade_target'}='tex';
805: $form{'textwidth'}=$LaTeXwidth;
806: $form{'problem_split'}=$parmhash{'problem_stream_switch'};
807: $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
808: $form{'rndseed'}=$rndseed;
809: $texversion=&Apache::lonnet::ssi($urlp,%form);
810: }
1.249 sakharuk 811: if((($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
812: ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) &&
813: ($urlp=~/\.(problem|exam|quiz|assess|survey|form|library|page)$/)) {
1.227 sakharuk 814: my %form;
815: $form{'grade_target'}='answer';
816: $form{'answer_output_mode'}='tex';
817: $form{'rndseed'}=$rndseed;
1.232 sakharuk 818: if ($urlp=~/\/res\//) {$ENV{'request.state'}='published';}
1.227 sakharuk 819: my $answer=&Apache::lonnet::ssi($urlp,%form);
1.245 sakharuk 820: if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
821: $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
822: } else {
823: $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
824: $texversion.='\vskip 0 mm \noindent\textbf{'.&Apache::lonnet::gettitle($helper->{'VARS'}->{'symb'}).'}\vskip 0 mm ';
825: $texversion.=&path_to_problem ($currentURL,$LaTeXwidth);
826: $texversion.='\vskip 1 mm '.$answer.'\end{document}';
827: }
1.227 sakharuk 828: }
829: if ($flag_latex_header_remove ne 'NO') {
830: $texversion = &latex_header_footer_remove($texversion);
831: } else {
832: $texversion =~ s/\\end{document}//;
833: }
834: if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
835: $texversion=&IndexCreation($texversion,$urlp);
836: }
1.232 sakharuk 837: if ($helper->{'VARS'}->{'CONSTR_RESOURSE_URpL'} eq 'yes') {
1.227 sakharuk 838: $texversion=~s/(\\addcontentsline\{toc\}\{subsection\}\{[^\}]*\})/$1 URL: \\verb|$urlp| \\strut\\\\\\strut /;
839: }
840: $result.=$texversion;
841: $flag_latex_header_remove = 'YES';
842: } elsif ($urlp=~/\.(sequence|page)$/) {
1.229 sakharuk 843: $result.='\strut\newline\noindent Sequence/page '.$urlp.'\strut\newline\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill}\newline\noindent ';
1.227 sakharuk 844: }
845: }
1.228 sakharuk 846: if ($helper->{VARS}->{'construction'} eq '1') {$result=~s/(\\begin{document})/$1 \\fbox\{RANDOM SEED IS $rndseed\} /;}
1.227 sakharuk 847: $result .= '\end{document}';
1.258 sakharuk 848: } elsif ($currentURL=~/\/smppg$/) {
849: my %form;
850: $form{'grade_target'}='tex';
851: $form{'textwidth'}=$LaTeXwidth;
852: $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
853: my $texversion=&Apache::lonnet::ssi($currentURL,%form);
854: $result .= $texversion;
1.162 sakharuk 855: } else {
1.227 sakharuk 856: $result.='\documentclass[letterpaper]{article}\usepackage{calc}\begin{document}Printout of this type of document is currently not supported: ';
1.207 sakharuk 857: if ($currentURL=~/\/(aboutme|syllabus|bulletinboard|smppg)$/) {
858: $result.=$1;
859: } elsif ($currentURL=~/\/ext\//) {
860: $result.=' \strut \\\\ THIS IS EXTERNAL RESOURCE WITH URL \strut \\\\ '.$currentURL.' ';
861: } else {
862: $result.=$currentURL;
863: }
864: $result.=' \end{document}'
1.162 sakharuk 865: }
1.142 sakharuk 866: } elsif (($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems') or
867: ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems_pages') or
1.252 sakharuk 868: ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'all_problems') or
869: ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'select_sequences')) {
1.141 sakharuk 870: #-- produce an output string
1.193 sakharuk 871: my %form=();
872: $form{'grade_target'}='tex';
873: $form{'textwidth'}=$LaTeXwidth;
874: $form{'problem_split'}=$parmhash{'problem_stream_switch'};
1.203 sakharuk 875: $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
1.141 sakharuk 876: my $flag_latex_header_remove = 'NO';
877: my $flag_page_in_sequence = 'NO';
878: my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'};
1.193 sakharuk 879: my $prevassignment='';
1.201 sakharuk 880: &Apache::lonxml::init_counter();
1.141 sakharuk 881: for (my $i=0;$i<=$#master_seq;$i++) {
1.236 albertel 882: my (undef,undef,$urlp)=&Apache::lonnet::decode_symb($master_seq[$i]);
1.237 albertel 883: $urlp=&Apache::lonnet::clutter($urlp);
1.141 sakharuk 884: if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems') {
1.142 sakharuk 885: $selectionmade = 2;
886: } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems_pages') {
887: $selectionmade = 3;
888: } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'all_problems') {
889: $selectionmade = 4;
1.254 sakharuk 890: } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'select_sequences') {
891: $selectionmade = 7;
1.141 sakharuk 892: }
1.166 albertel 893: $form{'symb'}=$master_seq[$i];
1.236 albertel 894: my ($sequence)=&Apache::lonnet::decode_symb($master_seq[$i]);
1.268 ! sakharuk 895: $assignment=&character_chart($assignment);
1.236 albertel 896: my $assignment=&Apache::lonxml::latex_special_symbols(&Apache::lonnet::gettitle($sequence),'header'); #tittle of the assignment which contains this problem
1.267 sakharuk 897: if ($selectionmade==7) {$helper->{VARS}->{'assignment'}=$assignment;}
1.247 sakharuk 898: if ($i==0) {$prevassignment=$assignment;}
1.141 sakharuk 899: #&Apache::lonnet::logthis("Trying to get $urlp with symb $master_seq[$i]");
1.259 sakharuk 900: my $texversion.=&Apache::lonnet::ssi($urlp,%form);
1.141 sakharuk 901: if ($urlp=~/\.page$/) {
902: ($texversion,my $number_of_columns_page) = &page_cleanup($texversion);
903: if ($number_of_columns_page > $number_of_columns) {$number_of_columns=$number_of_columns_page;}
904: $texversion =~ s/\\end{document}\d*/\\end{document}/;
905: $flag_page_in_sequence = 'YES';
906: }
1.260 sakharuk 907: my $lonidsdir=$r->dir_config('lonIDsDir');
908: my $envfile=$ENV{'user.environment'};
909: $envfile=~/\/([^\/]+)\.id$/;
910: $envfile=$1;
911: &Apache::lonnet::transfer_profile_to_env($lonidsdir,$envfile);
912: my $current_counter=$ENV{'form.counter'};
1.246 sakharuk 913: if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
914: ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
915: my %form;
916: $form{'grade_target'}='answer';
917: $form{'answer_output_mode'}='tex';
918: my $answer=&Apache::lonnet::ssi($urlp,%form);
1.260 sakharuk 919: &Apache::lonnet::appenv(('form.counter' => $current_counter));
1.246 sakharuk 920: if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
921: $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
922: } else {
1.249 sakharuk 923: if ($urlp=~/\.(problem|exam|quiz|library)$/) {
924: $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
925: $texversion.='\vskip 0 mm \noindent\textbf{'.&Apache::lonnet::gettitle($urlp).'}\vskip 0 mm ';
926: $texversion.=&path_to_problem ($urlp,$LaTeXwidth);
927: $texversion.='\vskip 1 mm '.$answer;
928: } else {
929: $texversion='';
930: }
1.246 sakharuk 931: }
932: }
1.141 sakharuk 933: if ($flag_latex_header_remove ne 'NO') {
934: $texversion = &latex_header_footer_remove($texversion);
935: } else {
936: $texversion =~ s/\\end{document}//;
937: }
1.215 sakharuk 938: if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
939: $texversion=&IndexCreation($texversion,$urlp);
940: }
1.247 sakharuk 941: if (($selectionmade == 4) and ($assignment ne $prevassignment)) {
942: my $name = &get_name();
943: my $courseidinfo = &get_course();
1.213 albertel 944: if (defined($courseidinfo)) { $courseidinfo=' - '.$courseidinfo }
1.193 sakharuk 945: $prevassignment=$assignment;
1.213 albertel 946: $result .='\newpage \noindent\parbox{\minipagewidth}{\noindent\\lhead{\\textit{\\textbf{'.$name.'}}'.$courseidinfo.' \\hfill \\thepage \\\\ \\textit{'.$assignment.'}}} \vskip -5 mm ';
1.193 sakharuk 947: }
948: $result .= $texversion;
1.141 sakharuk 949: $flag_latex_header_remove = 'YES';
950: }
951: &Apache::lonnet::delenv('form.counter');
952: if ($flag_page_in_sequence eq 'YES') {$result =~ s/\\usepackage{calc}/\\usepackage{calc}\\usepackage{longtable}/;}
953: $result .= '\end{document}';
1.254 sakharuk 954: } elsif (($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_students') || ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'resources_for_students')) {
1.150 sakharuk 955: #-- prints assignments for whole class or for selected students
1.254 sakharuk 956: if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_students') {
957: $selectionmade=5;
958: } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'resources_for_students') {
959: $selectionmade=8;
960: }
1.150 sakharuk 961: my @students=split /\|\|\|/, $helper->{'VARS'}->{'STUDENTS'};
962: my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'};
963: #loop over students
964: my $flag_latex_header_remove = 'NO';
965: my %moreenv;
966: $moreenv{'form.textwidth'}=$LaTeXwidth;
967: &Apache::lonnet::appenv(%moreenv);
968: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Print Status','Class Print Status',$#students+1);
969: foreach my $person (@students) {
970: my $current_output = '';
1.140 sakharuk 971: # my ($usersection,$username,$userdomain) = split /:/,$person;
1.150 sakharuk 972: my ($username,$userdomain) = split /:/,$person;
973: my $fullname = &get_name($username,$userdomain);
1.196 sakharuk 974:
1.197 sakharuk 975: if ($parmhash{'anonymous_quiz'}=~/yes/) {$fullname=' ';} #put here something reasonable for anonymous exams or quiz
1.150 sakharuk 976: #goes through all resources, checks if they are available for current student, and produces output
1.201 sakharuk 977: &Apache::lonnet::delenv('form.counter');
978: &Apache::lonxml::init_counter();
1.150 sakharuk 979: foreach my $curresline (@master_seq) {
1.254 sakharuk 980: if ((($curresline=~ m/\.(problem|exam|quiz|assess|survey|form|library)$/) && ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_students')) || ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'resources_for_students')) {
1.233 www 981: my ($map,$id,$res_url) = &Apache::lonnet::decode_symb($curresline);
1.150 sakharuk 982: if (&Apache::lonnet::allowed('bre',$res_url)) {
983: my $rendered = &Apache::loncommon::get_student_view($curresline,$username,$userdomain,
984: $ENV{'request.course.id'},'tex');
1.260 sakharuk 985: my $lonidsdir=$r->dir_config('lonIDsDir');
986: my $envfile=$ENV{'user.environment'};
987: $envfile=~/\/([^\/]+)\.id$/;
988: $envfile=$1;
989: &Apache::lonnet::transfer_profile_to_env($lonidsdir,$envfile);
990: my $current_counter=$ENV{'form.counter'};
1.250 sakharuk 991: if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
992: ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
993: my %form;
994: $form{'answer_output_mode'}='tex';
995: $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
996: my $ansrendered = &Apache::loncommon::get_student_answers($curresline,$username,$userdomain,$ENV{'request.course.id'},%form);
1.260 sakharuk 997: &Apache::lonnet::appenv(('form.counter' => $current_counter));
1.250 sakharuk 998: if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
999: $rendered=~s/(\\keephidden{ENDOFPROBLEM})/$ansrendered$1/;
1000: } else {
1001: $rendered=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
1002: $rendered.='\vskip 0 mm \noindent\textbf{'.&Apache::lonnet::gettitle($curresline).'}\vskip 0 mm ';
1003: $rendered.=&path_to_problem ($curresline,$LaTeXwidth);
1004: $rendered.='\vskip 1 mm '.$ansrendered;
1005: }
1006: }
1.150 sakharuk 1007: if ($flag_latex_header_remove eq 'YES') {
1008: $rendered = &latex_header_footer_remove($rendered);
1009: } else {
1010: $rendered =~ s/\\end{document}//;
1011: }
1012: $current_output .= $rendered;
1013: }
1014: $flag_latex_header_remove = 'YES';
1015: }
1016: }
1.213 albertel 1017: my $courseidinfo = &get_course();
1018: if (defined($courseidinfo)) { $courseidinfo=' - '.$courseidinfo }
1.268 ! sakharuk 1019: $assignment=&character_chart($assignment);
1.221 sakharuk 1020: my $currentassignment=&Apache::lonxml::latex_special_symbols($helper->{VARS}->{'assignment'},'header');
1.150 sakharuk 1021: if ($current_output=~/\\documentclass/) {
1.221 sakharuk 1022: $current_output =~ s/\\begin{document}/\\setlength{\\topmargin}{1cm} \\begin{document}\\noindent\\lhead{\\textit{\\textbf{$fullname}}$courseidinfo \\hfill \\thepage \\\\ \\textit{$currentassignment}}\\vskip 3 mm /;
1.150 sakharuk 1023: } else {
1024: my $blanspages = '';
1025: for (my $j=0;$j<$helper->{'VARS'}->{'EMPTY_PAGES'};$j++) {$blanspages.='\clearpage\strut\clearpage';}
1.221 sakharuk 1026: $current_output = '\strut\\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 }\\newpage '.$blanspages.'\setcounter{page}{1}\noindent\parbox{\minipagewidth}{\noindent\\lhead{\\textit{\\textbf{'.$fullname.'}}'.$courseidinfo.' \\hfill \\thepage \\\\ \\textit{'.$currentassignment.'}}} \vskip -5 mm '.$current_output;
1.150 sakharuk 1027: }
1028: $result .= $current_output;
1029: &Apache::lonnet::delenv('form.counter');
1030: &Apache::lonxml::init_counter();
1031: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
1.255 www 1032: &mt('last student').' '.$fullname);
1.150 sakharuk 1033: }
1034: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1035: $result .= '\end{document}';
1036: &Apache::lonnet::delenv('form.textwidth');
1.151 sakharuk 1037: } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_from_directory') {
1038: #prints selected problems from the subdirectory
1039: $selectionmade = 6;
1040: my @list_of_files=split /\|\|\|/, $helper->{'VARS'}->{'FILES'};
1.154 sakharuk 1041: @list_of_files=sort @list_of_files;
1.175 sakharuk 1042: my $flag_latex_header_remove = 'NO';
1043: my $rndseed=time;
1.230 albertel 1044: if ($helper->{'VARS'}->{'curseed'}) {
1045: $rndseed=$helper->{'VARS'}->{'curseed'};
1046: }
1.151 sakharuk 1047: for (my $i=0;$i<=$#list_of_files;$i++) {
1.152 sakharuk 1048: my $urlp = $list_of_files[$i];
1.253 sakharuk 1049: $urlp=~s|//|/|;
1.152 sakharuk 1050: if ($urlp=~/\//) {
1.166 albertel 1051: my %form;
1052: $form{'grade_target'}='tex';
1053: $form{'textwidth'}=$LaTeXwidth;
1.175 sakharuk 1054: $form{'rndseed'}=$rndseed;
1.152 sakharuk 1055: if ($urlp =~ m|/home/([^/]+)/public_html|) {
1056: $urlp =~ s|/home/([^/]*)/public_html|/~$1|;
1057: } else {
1058: $urlp =~ s|^/home/httpd/html||;
1059: }
1.166 albertel 1060: my $texversion=&Apache::lonnet::ssi($urlp,%form);
1.251 sakharuk 1061: if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
1.253 sakharuk 1062: ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
1.174 sakharuk 1063: my %form;
1064: $form{'grade_target'}='answer';
1065: $form{'answer_output_mode'}='tex';
1.203 sakharuk 1066: $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
1.174 sakharuk 1067: $form{'rndseed'}=$rndseed;
1068: my $answer=&Apache::lonnet::ssi($urlp,%form);
1.251 sakharuk 1069: if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
1070: $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
1071: } else {
1.253 sakharuk 1072: $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
1073: if ($helper->{'VARS'}->{'construction'} ne '1') {
1074: $texversion.='\vskip 0 mm \noindent ';
1075: $texversion.=&path_to_problem ($urlp,$LaTeXwidth);
1076: } else {
1077: $texversion.='\vskip 0 mm \noindent\textbf{Prints from construction space - there is no title.}\vskip 0 mm ';
1078: my $URLpath=$urlp;
1079: $URLpath=~s/~([^\/]+)/public_html\/$1\/$1/;
1080: $texversion.=&path_to_problem ($URLpath,$LaTeXwidth);
1081: }
1082: $texversion.='\vskip 1 mm '.$answer.'\end{document}';
1.251 sakharuk 1083: }
1.174 sakharuk 1084: }
1.151 sakharuk 1085: #this chunck is responsible for printing the path to problem
1.253 sakharuk 1086: my $newurlp=$urlp;
1087: if ($newurlp=~/~/) {$newurlp=~s|\/~([^\/]+)\/|\/home\/$1\/public_html\/|;}
1088: $newurlp=&path_to_problem($newurlp,$LaTeXwidth);
1.242 sakharuk 1089: $texversion =~ s/(\\begin{minipage}{\\textwidth})/$1 $newurlp/;
1.152 sakharuk 1090: if ($flag_latex_header_remove ne 'NO') {
1091: $texversion = &latex_header_footer_remove($texversion);
1092: } else {
1093: $texversion =~ s/\\end{document}//;
1.216 sakharuk 1094: }
1095: if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
1096: $texversion=&IndexCreation($texversion,$urlp);
1.152 sakharuk 1097: }
1.219 sakharuk 1098: if ($helper->{'VARS'}->{'CONSTR_RESOURSE_URL'} eq 'yes') {
1099: $texversion=~s/(\\addcontentsline\{toc\}\{subsection\}\{[^\}]*\})/$1 URL: \\verb|$urlp| \\strut\\\\\\strut /;
1100:
1101: }
1.152 sakharuk 1102: $result .= $texversion;
1103: }
1104: $flag_latex_header_remove = 'YES';
1.151 sakharuk 1105: }
1.175 sakharuk 1106: if ($helper->{VARS}->{'construction'} eq '1') {$result=~s/(\\typeout)/ RANDOM SEED IS $rndseed $1/;}
1.152 sakharuk 1107: $result .= '\end{document}';
1.140 sakharuk 1108: }
1109: #-------------------------------------------------------- corrections for the different page formats
1.214 sakharuk 1110: $result = &page_format_transformation($papersize,$laystyle,$numberofcolumns,$helper->{'VARS'}->{'PRINT_TYPE'},$result,$helper->{VARS}->{'assignment'},$helper->{'VARS'}->{'TABLE_CONTENTS'},$helper->{'VARS'}->{'TABLE_INDEX'});
1.140 sakharuk 1111: $result = &latex_corrections($number_of_columns,$result);
1.190 sakharuk 1112: #changes page's parameters for the one column output
1.195 sakharuk 1113: if ($numberofcolumns == 1) {
1.261 sakharuk 1114: $result =~ s/\\textwidth\s*=\s*\d*\.?\d*\s*(cm|mm|in)/\\textwidth= $helper->{'VARS'}->{'pagesize.width'} $helper->{'VARS'}->{'pagesize.widthunit'} /;
1115: $result =~ s/\\textheight\s*=\s*\d*\.?\d*\s*(cm|mm|in)/\\textheight $helper->{'VARS'}->{'pagesize.height'} $helper->{'VARS'}->{'pagesize.heightunit'} /;
1116: $result =~ s/\\evensidemargin\s*=\s*\d*\.?\d*\s*(cm|mm|in)/\\evensidemargin= $helper->{'VARS'}->{'pagesize.lmargin'} $helper->{'VARS'}->{'pagesize.lmarginunit'} /;
1117: $result =~ s/\\oddsidemargin\s*=\s*\d*\.?\d*\s*(cm|mm|in)/\\oddsidemargin= $helper->{'VARS'}->{'pagesize.lmargin'} $helper->{'VARS'}->{'pagesize.lmarginunit'} /;
1.195 sakharuk 1118: }
1.140 sakharuk 1119: #-- writing .tex file in prtspool
1120: my $temp_file;
1121: my $filename = "/home/httpd/prtspool/$ENV{'user.name'}_$ENV{'user.domain'}_printout_".time."_".rand(10000000).".tex";
1122: unless ($temp_file = Apache::File->new('>'.$filename)) {
1123: $r->log_error("Couldn't open $filename for output $!");
1124: return SERVER_ERROR;
1.256 sakharuk 1125: }
1126:
1.264 sakharuk 1127: my $identifier = time.'_'.int(rand(1000));
1.257 sakharuk 1128: &Apache::lonnet::appenv('cgi.'.$identifier.'.file' => $filename,
1129: 'cgi.'.$identifier.'.layout' => $laystyle,
1130: 'cgi.'.$identifier.'.numcol' => $numberofcolumns,
1131: 'cgi.'.$identifier.'.selection' => $selectionmade,
1132: 'cgi.'.$identifier.'tableofcontents' => $helper->{'VARS'}->{'TABLE_CONTENTS'},
1133: 'cgi.'.$identifier.'tableofindex' => $helper->{'VARS'}->{'TABLE_INDEX'},
1134: 'cgi.'.$identifier.'role' => $ENV{'request.role.adv'});
1.256 sakharuk 1135:
1.140 sakharuk 1136: print $temp_file $result;
1137:
1138: $r->print(<<FINALEND);
1.256 sakharuk 1139: <meta http-equiv="Refresh" content="0; url=/cgi-bin/printout.pl?$identifier">
1.140 sakharuk 1140: </body>
1141: </html>
1142: FINALEND
1143: }
1144:
1145:
1146:
1.3 sakharuk 1147: sub handler {
1148:
1149: my $r = shift;
1.131 bowersj2 1150: my $helper;
1.114 bowersj2 1151:
1.150 sakharuk 1152: # my $loaderror=&Apache::lonnet::overloaderror($r);
1153: # if ($loaderror) { return $loaderror; }
1154: # $loaderror=
1155: # &Apache::lonnet::overloaderror($r,
1156: # $ENV{'course.'.$ENV{'request.course.id'}.'.home'});
1157: # if ($loaderror) { return $loaderror; }
1.67 www 1158:
1.177 sakharuk 1159: my $result = printHelper($r);
1160: if (!ref($result)) {
1161: return $result;
1.60 sakharuk 1162: }
1.177 sakharuk 1163: $helper = $result;
1164:
1165: # my $key;
1166: # foreach $key (keys %{$helper->{'VARS'}}) {
1167: # $r->print(' '.$key.'->'.$helper->{'VARS'}->{$key}.'<-<br />');
1168: # }
1.264 sakharuk 1169: # foreach $key (keys %ENV) {
1170: # $r->print(' '.$key.'->'.$ENV{$key}.'<-<br />');
1171: # }
1.177 sakharuk 1172: # return OK;
1.184 sakharuk 1173:
1174: my %parmhash=&Apache::lonnet::coursedescription($ENV{'request.course.id'});
1175:
1.207 sakharuk 1176: # my $key;
1.200 sakharuk 1177: # foreach $key (keys %parmhash) {
1178: # $r->print(' '.$key.'->'.$parmhash{$key}.'<-<br />');
1179: # }
1180: # return OK;
1.184 sakharuk 1181:
1182: &output_data($r,$helper,\%parmhash);
1.2 sakharuk 1183: return OK;
1.60 sakharuk 1184: }
1.2 sakharuk 1185:
1.131 bowersj2 1186: use Apache::lonhelper;
1.130 sakharuk 1187:
1.223 bowersj2 1188: sub addMessage {
1189: my $text = shift;
1190: my $paramHash = Apache::lonhelper::getParamHash();
1191: $paramHash->{MESSAGE_TEXT} = $text;
1192: Apache::lonhelper::message->new();
1193: }
1194:
1.238 bowersj2 1195: use Data::Dumper;
1196:
1.131 bowersj2 1197: sub printHelper {
1.115 bowersj2 1198: my $r = shift;
1199:
1200: if ($ENV{'request.course.id'}) {
1.131 bowersj2 1201: my $fn=$ENV{'request.course.fn'};
1202: tie(%hash,'GDBM_File',"$fn.db",&GDBM_READER(),0640);
1.115 bowersj2 1203: }
1204:
1205: if ($r->header_only) {
1.131 bowersj2 1206: if ($ENV{'browser.mathml'}) {
1.241 www 1207: &Apache::loncommon::content_type($r,'text/xml');
1.131 bowersj2 1208: } else {
1.241 www 1209: &Apache::loncommon::content_type($r,'text/html');
1.131 bowersj2 1210: }
1211: $r->send_http_header;
1212: return OK;
1.115 bowersj2 1213: }
1214:
1.131 bowersj2 1215: # Send header, nocache
1.115 bowersj2 1216: if ($ENV{'browser.mathml'}) {
1.241 www 1217: &Apache::loncommon::content_type($r,'text/xml');
1.115 bowersj2 1218: } else {
1.241 www 1219: &Apache::loncommon::content_type($r,'text/html');
1.115 bowersj2 1220: }
1221: &Apache::loncommon::no_cache($r);
1222: $r->send_http_header;
1223: $r->rflush();
1224:
1.131 bowersj2 1225: # Unfortunately, this helper is so complicated we have to
1226: # write it by hand
1227:
1228: Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING});
1229:
1.176 bowersj2 1230: my $helper = Apache::lonhelper::helper->new("Printing Helper");
1.146 bowersj2 1231: $helper->declareVar('symb');
1.156 bowersj2 1232: $helper->declareVar('postdata');
1.230 albertel 1233: $helper->declareVar('curseed');
1.156 bowersj2 1234: $helper->declareVar('filename');
1235: $helper->declareVar('construction');
1.178 sakharuk 1236: $helper->declareVar('assignment');
1.262 sakharuk 1237: $helper->declareVar('style_file');
1.131 bowersj2 1238:
1239: # This will persistently load in the data we want from the
1240: # very first screen.
1.156 bowersj2 1241: # Detect whether we're coming from construction space
1.208 www 1242: if ($ENV{'form.postdata'}=~/^(?:http:\/\/[^\/]+\/|\/|)\~([^\/]+)\/(.*)$/) {
1.235 bowersj2 1243: $helper->{VARS}->{'filename'} = "~$1/$2";
1.156 bowersj2 1244: $helper->{VARS}->{'construction'} = 1;
1245: } else {
1246: if ($ENV{'form.postdata'}) {
1247: $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($ENV{'form.postdata'});
1248: }
1249: if ($ENV{'form.symb'}) {
1250: $helper->{VARS}->{'symb'} = $ENV{'form.symb'};
1251: }
1252: if ($ENV{'form.url'}) {
1253: $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
1254: }
1.157 bowersj2 1255: }
1.156 bowersj2 1256:
1.146 bowersj2 1257: if ($ENV{'form.symb'}) {
1258: $helper->{VARS}->{'symb'} = $ENV{'form.symb'};
1259: }
1260: if ($ENV{'form.url'}) {
1.140 sakharuk 1261: $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
1.153 sakharuk 1262:
1.140 sakharuk 1263: }
1.146 bowersj2 1264:
1.115 bowersj2 1265: my ($resourceTitle,$sequenceTitle,$mapTitle) = &details_for_menu;
1.178 sakharuk 1266: if ($sequenceTitle ne '') {$helper->{VARS}->{'assignment'}=$sequenceTitle;}
1.140 sakharuk 1267:
1.156 bowersj2 1268:
1.146 bowersj2 1269: # Extract map
1270: my $symb = $helper->{VARS}->{'symb'};
1.156 bowersj2 1271: my ($map, $id, $url);
1272: my $subdir;
1273:
1274: # Get the resource name from construction space
1275: if ($helper->{VARS}->{'construction'}) {
1276: $resourceTitle = substr($helper->{VARS}->{'filename'},
1277: rindex($helper->{VARS}->{'filename'}, '/')+1);
1278: $subdir = substr($helper->{VARS}->{'filename'},
1279: 0, rindex($helper->{VARS}->{'filename'}, '/') + 1);
1280: } else {
1.233 www 1281: ($map, $id, $url) = &Apache::lonnet::decode_symb($symb);
1.156 bowersj2 1282: $helper->{VARS}->{'postdata'} = Apache::lonnet::clutter($url);
1.146 bowersj2 1283:
1.156 bowersj2 1284: if (!$resourceTitle) { # if the resource doesn't have a title, use the filename
1.238 bowersj2 1285: my $postdata = $helper->{VARS}->{'postdata'};
1286: $resourceTitle = substr($postdata, rindex($postdata, '/') + 1);
1.156 bowersj2 1287: }
1288: $subdir = &Apache::lonnet::filelocation("", $url);
1.128 bowersj2 1289: }
1.230 albertel 1290: if (!$helper->{VARS}->{'curseed'} && $ENV{'form.curseed'}) {
1291: $helper->{VARS}->{'curseed'}=$ENV{'form.curseed'};
1292: }
1.115 bowersj2 1293:
1.192 bowersj2 1294: my $userCanSeeHidden = Apache::lonnavmaps::advancedUser();
1.235 bowersj2 1295: my $userPriviledged = ($ENV{'request.role'}=~m/^cc\./ or
1296: $ENV{'request.role'}=~m/^in\./ or
1297: $ENV{'request.role'}=~m/^ta\./);
1.192 bowersj2 1298:
1.131 bowersj2 1299: Apache::lonhelper::registerHelperTags();
1.119 bowersj2 1300:
1.131 bowersj2 1301: # "Delete everything after the last slash."
1.119 bowersj2 1302: $subdir =~ s|/[^/]+$||;
1.162 sakharuk 1303: if (not $helper->{VARS}->{'construction'}) {
1304: $subdir='/home/httpd/html/res/'.$subdir;
1.153 sakharuk 1305: }
1.189 bowersj2 1306: # "Remove all duplicate slashes."
1307: $subdir =~ s|/+|/|g;
1.119 bowersj2 1308:
1.131 bowersj2 1309: # What can be printed is a very dynamic decision based on
1310: # lots of factors. So we need to dynamically build this list.
1311: # To prevent security leaks, states are only added to the wizard
1312: # if they can be reached, which ensures manipulating the form input
1313: # won't allow anyone to reach states they shouldn't have permission
1314: # to reach.
1315:
1316: # printChoices is tracking the kind of printing the user can
1317: # do, and will be used in a choices construction later.
1318: # In the meantime we will be adding states and elements to
1319: # the helper by hand.
1320: my $printChoices = [];
1321: my $paramHash;
1.130 sakharuk 1322:
1.240 albertel 1323: if ($resourceTitle) {
1.254 sakharuk 1324: push @{$printChoices}, ["<b><i>$resourceTitle</i></b> (what you just saw on the screen)", 'current_document', 'PAGESIZE'];
1.156 bowersj2 1325: }
1326:
1.187 www 1327: # $r->print($helper->{VARS}->{'postdata'});
1.130 sakharuk 1328:
1.238 bowersj2 1329: # Useful filter strings
1330: my $isProblem = '$res->is_problem()';
1331: $isProblem .= ' && !$res->randomout()' if !$userCanSeeHidden;
1332: my $isProblemOrMap = '$res->is_problem() || $res->is_map()';
1333: my $isNotMap = '!$res->is_map()';
1334: $isNotMap .= ' && !$res->randomout()' if !$userCanSeeHidden;
1335: my $isMap = '$res->is_map()';
1336: my $symbFilter = '$res->symb()';
1337: my $urlValue = '$res->src()';
1338:
1339: $helper->declareVar('SEQUENCE');
1340:
1341: # Useful for debugging: Dump the help vars
1342: #$r->print(Dumper($helper->{VARS}));
1343: #$r->print($map);
1344:
1.131 bowersj2 1345: # If we're in a sequence...
1.235 bowersj2 1346: if (($helper->{'VARS'}->{'construction'} ne '1') &&
1.243 bowersj2 1347: $helper->{VARS}->{'postdata'} &&
1348: $helper->{VARS}->{'assignment'}) {
1.131 bowersj2 1349: # Allow problems from sequence
1.254 sakharuk 1350: push @{$printChoices}, ["<b>Problems</b> in <b><i>$sequenceTitle</i></b>", 'map_problems', 'CHOOSE_PROBLEMS'];
1.131 bowersj2 1351: # Allow all resources from sequence
1.254 sakharuk 1352: push @{$printChoices}, ["<b>Resources</b> in <b><i>$sequenceTitle</i></b>", 'map_problems_pages', 'CHOOSE_PROBLEMS_HTML'];
1.130 sakharuk 1353:
1.131 bowersj2 1354: my $helperFragment = <<HELPERFRAGMENT;
1.155 sakharuk 1355: <state name="CHOOSE_PROBLEMS" title="Select Problem(s) to print">
1356: <message>(mark them then click "next" button) <br /></message>
1.234 bowersj2 1357: <resource variable="RESOURCES" multichoice="1" toponly='1' addstatus="1">
1.144 bowersj2 1358: <nextstate>PAGESIZE</nextstate>
1.192 bowersj2 1359: <filterfunc>return $isProblem;</filterfunc>
1.131 bowersj2 1360: <mapurl>$map</mapurl>
1.238 bowersj2 1361: <valuefunc>return $symbFilter;</valuefunc>
1.131 bowersj2 1362: </resource>
1363: </state>
1364:
1.155 sakharuk 1365: <state name="CHOOSE_PROBLEMS_HTML" title="Select Resource(s) to print">
1366: <message>(mark them then click "next" button) <br /></message>
1.234 bowersj2 1367: <resource variable="RESOURCES" multichoice="1" toponly='1' addstatus="1">
1.144 bowersj2 1368: <nextstate>PAGESIZE</nextstate>
1.145 bowersj2 1369: <filterfunc>return $isNotMap;</filterfunc>
1.131 bowersj2 1370: <mapurl>$map</mapurl>
1.238 bowersj2 1371: <valuefunc>return $symbFilter;</valuefunc>
1.131 bowersj2 1372: </resource>
1373: </state>
1374: HELPERFRAGMENT
1.121 bowersj2 1375:
1.131 bowersj2 1376: &Apache::lonxml::xmlparse($r, 'helper', $helperFragment);
1.121 bowersj2 1377: }
1378:
1379: # If the user is priviledged, allow them to print all
1380: # problems in the course, optionally for selected students
1.235 bowersj2 1381: if ($userPriviledged && ($helper->{VARS}->{'postdata'}=~/\/res\//)) {
1.254 sakharuk 1382: push @{$printChoices}, ['<b>Problems</b> from <b>entire course</b>', 'all_problems', 'ALL_PROBLEMS'];
1.243 bowersj2 1383: if ($helper->{VARS}->{'assignment'}) {
1.254 sakharuk 1384: push @{$printChoices}, ["<b>Problems</b> from <b><i>$sequenceTitle</i></b> for <b>selected students</b>", 'problems_for_students', 'CHOOSE_STUDENTS'];
1.238 bowersj2 1385: }
1.131 bowersj2 1386:
1387: &Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_STUDENTS);
1.155 sakharuk 1388: <state name="ALL_PROBLEMS" title="Select Problem(s) to print">
1389: <message>(mark them then click "next" button) <br /></message>
1.234 bowersj2 1390: <resource variable="RESOURCES" multichoice="1"
1391: suppressEmptySequences='1' addstatus="1">
1.144 bowersj2 1392: <nextstate>PAGESIZE</nextstate>
1.192 bowersj2 1393: <filterfunc>return $isProblemOrMap;</filterfunc>
1394: <choicefunc>return $isProblem;</choicefunc>
1.238 bowersj2 1395: <valuefunc>return $symbFilter;</valuefunc>
1.132 bowersj2 1396: </resource>
1397: </state>
1398:
1.223 bowersj2 1399: <state name="CHOOSE_STUDENTS" title="Select Students and Resources">
1.144 bowersj2 1400: <student multichoice='1' variable="STUDENTS" nextstate="PAGESIZE" />
1.155 sakharuk 1401: <message><br /><big><i><b>Select resources for the assignment</b></i></big><br /></message>
1.234 bowersj2 1402: <resource variable="RESOURCES" multichoice="1" addstatus="1">
1.254 sakharuk 1403: <filterfunc>return $isProblem;</filterfunc>
1.148 bowersj2 1404: <mapurl>$map</mapurl>
1.254 sakharuk 1405: <valuefunc>return $symbFilter;</valuefunc>
1.147 bowersj2 1406: </resource>
1.155 sakharuk 1407: <message><br /><big><i><b>How should the results be printed?</b></i></big><br /></message>
1.149 bowersj2 1408: <choices variable="EMPTY_PAGES">
1.204 sakharuk 1409: <choice computer='0'>Start each student\'s assignment on a new page/column (add a pagefeed after each assignment)</choice>
1410: <choice computer='1'>Add one empty page/column after each student\'s assignment</choice>
1411: <choice computer='2'>Add two empty pages/column after each student\'s assignment</choice>
1412: <choice computer='3'>Add three empty pages/column after each student\'s assignment</choice>
1.149 bowersj2 1413: </choices>
1.131 bowersj2 1414: </state>
1415: CHOOSE_STUDENTS
1.254 sakharuk 1416:
1417: if ($helper->{VARS}->{'assignment'}) {
1418: push @{$printChoices}, ["<b>Resources</b> from <b><i>$sequenceTitle</i></b> for <b>selected students</b>", 'resources_for_students', 'CHOOSE_STUDENTS1'];
1419: }
1420: &Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_STUDENTS1);
1421: <state name="CHOOSE_STUDENTS1" title="Select Students and Resources">
1422: <student multichoice='1' variable="STUDENTS" nextstate="PAGESIZE" />
1423: <message><br /><big><i><b>Select resources for the assignment</b></i></big><br /></message>
1424: <resource variable="RESOURCES" multichoice="1" addstatus="1">
1425: <filterfunc>return $isNotMap;</filterfunc>
1426: <mapurl>$map</mapurl>
1427: <valuefunc>return $symbFilter;</valuefunc>
1428: </resource>
1429: <message><br /><big><i><b>How should the results be printed?</b></i></big><br /></message>
1430: <choices variable="EMPTY_PAGES">
1431: <choice computer='0'>Start each student\'s assignment on a new page/column (add a pagefeed after each assignment)</choice>
1432: <choice computer='1'>Add one empty page/column after each student\'s assignment</choice>
1433: <choice computer='2'>Add two empty pages/column after each student\'s assignment</choice>
1434: <choice computer='3'>Add three empty pages/column after each student\'s assignment</choice>
1435: </choices>
1436: </state>
1437: CHOOSE_STUDENTS1
1438:
1.121 bowersj2 1439: }
1440:
1441: # FIXME: That RE should come from a library somewhere.
1.238 bowersj2 1442: 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 $ENV{'request.role.adv'} and $subdir ne '/home/httpd/html/res/') {
1.254 sakharuk 1443: push @{$printChoices}, ["<b>Problems</b> from current subdirectory <b><i>$subdir</i></b>", 'problems_from_directory', 'CHOOSE_FROM_SUBDIR'];
1.238 bowersj2 1444:
1.131 bowersj2 1445: my $f = '$filename';
1.139 bowersj2 1446: my $xmlfrag = <<CHOOSE_FROM_SUBDIR;
1.155 sakharuk 1447: <state name="CHOOSE_FROM_SUBDIR" title="Select File(s) from <b><small>$subdir</small></b> to print">
1448: <message>(mark them then click "next" button) <br /></message>
1.138 bowersj2 1449: <files variable="FILES" multichoice='1'>
1.144 bowersj2 1450: <nextstate>PAGESIZE</nextstate>
1.138 bowersj2 1451: <filechoice>return '$subdir';</filechoice>
1.139 bowersj2 1452: CHOOSE_FROM_SUBDIR
1453:
1.238 bowersj2 1454: # this is broken up because I really want interpolation above,
1455: # and I really DON'T want it below
1.139 bowersj2 1456: $xmlfrag .= <<'CHOOSE_FROM_SUBDIR';
1.225 bowersj2 1457: <filefilter>return Apache::lonhelper::files::not_old_version($filename) &&
1458: $filename =~ m/\.(problem|exam|quiz|assess|survey|form|library)$/;
1.131 bowersj2 1459: </filefilter>
1.138 bowersj2 1460: </files>
1.131 bowersj2 1461: </state>
1462: CHOOSE_FROM_SUBDIR
1.139 bowersj2 1463: &Apache::lonxml::xmlparse($r, 'helper', $xmlfrag);
1.131 bowersj2 1464: }
1.238 bowersj2 1465:
1466: # Allow the user to select any sequence in the course, feed it to
1467: # another resource selector for that sequence
1.239 bowersj2 1468: if (!$helper->{VARS}->{'construction'}) {
1.254 sakharuk 1469: push @$printChoices, ["<b>Resources</b> from <b>selected sequence</b> in course",
1.249 sakharuk 1470: 'select_sequences', 'CHOOSE_SEQUENCE'];
1.244 bowersj2 1471: my $escapedSequenceName = $helper->{VARS}->{'SEQUENCE'};
1472: #Escape apostrophes and backslashes for Perl
1473: $escapedSequenceName =~ s/\\/\\\\/g;
1474: $escapedSequenceName =~ s/'/\\'/g;
1.239 bowersj2 1475: &Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_FROM_ANY_SEQUENCE);
1.238 bowersj2 1476: <state name="CHOOSE_SEQUENCE" title="Select Sequence To Print From">
1477: <message>Select the sequence to print resources from:</message>
1478: <resource variable="SEQUENCE">
1479: <nextstate>CHOOSE_FROM_ANY_SEQUENCE</nextstate>
1480: <filterfunc>return \$res->is_sequence;</filterfunc>
1481: <valuefunc>return $urlValue;</valuefunc>
1482: </resource>
1483: </state>
1484: <state name="CHOOSE_FROM_ANY_SEQUENCE" title="Select Resources To Print">
1485: <message>(mark desired resources then click "next" button) <br /></message>
1486: <resource variable="RESOURCES" multichoice="1" toponly='1' addstatus="1">
1487: <nextstate>PAGESIZE</nextstate>
1488: <filterfunc>return $isProblem</filterfunc>
1.244 bowersj2 1489: <mapurl evaluate='1'>return '$escapedSequenceName';</mapurl>
1.238 bowersj2 1490: <valuefunc>return $symbFilter;</valuefunc>
1491: </resource>
1492: </state>
1493: CHOOSE_FROM_ANY_SEQUENCE
1.239 bowersj2 1494: }
1.131 bowersj2 1495:
1496: # Generate the first state, to select which resources get printed.
1.223 bowersj2 1497: Apache::lonhelper::state->new("START", "Select Printing Options:");
1.131 bowersj2 1498: $paramHash = Apache::lonhelper::getParamHash();
1.155 sakharuk 1499: $paramHash->{MESSAGE_TEXT} = "";
1.131 bowersj2 1500: Apache::lonhelper::message->new();
1501: $paramHash = Apache::lonhelper::getParamHash();
1502: $paramHash->{'variable'} = 'PRINT_TYPE';
1.137 bowersj2 1503: $helper->declareVar('PRINT_TYPE');
1.131 bowersj2 1504: $paramHash->{CHOICES} = $printChoices;
1505: Apache::lonhelper::choices->new();
1.161 bowersj2 1506:
1.223 bowersj2 1507: my $startedTable = 0; # have we started an HTML table yet? (need
1508: # to close it later)
1509:
1.170 sakharuk 1510: if (($ENV{'request.role.adv'} and &Apache::lonnet::allowed('vgr',$ENV{'request.course.id'})) or
1511: ($helper->{VARS}->{'construction'} eq '1')) {
1.242 sakharuk 1512: addMessage("<hr width='33%' /><table><tr><td align='right'>Print: </td><td>");
1.161 bowersj2 1513: $paramHash = Apache::lonhelper::getParamHash();
1.162 sakharuk 1514: $paramHash->{'variable'} = 'ANSWER_TYPE';
1515: $helper->declareVar('ANSWER_TYPE');
1.161 bowersj2 1516: $paramHash->{CHOICES} = [
1.242 sakharuk 1517: ['Without Answers', 'yes'],
1518: ['With Answers', 'no'],
1519: ['Only Answers', 'only'] ];
1.210 sakharuk 1520: Apache::lonhelper::dropdown->new();
1.223 bowersj2 1521: addMessage("</td></tr>");
1522: $startedTable = 1;
1.161 bowersj2 1523: }
1.209 sakharuk 1524:
1.203 sakharuk 1525: if ($ENV{'request.role.adv'}) {
1.223 bowersj2 1526: if (!$startedTable) {
1527: addMessage("<hr width='33%' /><table><tr><td align='right'>LaTeX mode: </td><td>");
1528: $startedTable = 1;
1529: } else {
1530: addMessage("<tr><td align='right'>LaTeX mode: </td><td>");
1531: }
1.203 sakharuk 1532: $paramHash = Apache::lonhelper::getParamHash();
1533: $paramHash->{'variable'} = 'LATEX_TYPE';
1534: $helper->declareVar('LATEX_TYPE');
1535: if ($helper->{VARS}->{'construction'} eq '1') {
1536: $paramHash->{CHOICES} = [
1.223 bowersj2 1537: ['standard LaTeX mode', 'standard'],
1538: ['LaTeX batchmode', 'batchmode'], ];
1.203 sakharuk 1539: } else {
1540: $paramHash->{CHOICES} = [
1.223 bowersj2 1541: ['LaTeX batchmode', 'batchmode'],
1542: ['standard LaTeX mode', 'standard'] ];
1.203 sakharuk 1543: }
1.210 sakharuk 1544: Apache::lonhelper::dropdown->new();
1.218 sakharuk 1545:
1.223 bowersj2 1546: addMessage("</td></tr><tr><td align='right'>Print Table of Contents: </td><td>");
1.209 sakharuk 1547: $paramHash = Apache::lonhelper::getParamHash();
1548: $paramHash->{'variable'} = 'TABLE_CONTENTS';
1549: $helper->declareVar('TABLE_CONTENTS');
1550: $paramHash->{CHOICES} = [
1.223 bowersj2 1551: ['No', 'no'],
1552: ['Yes', 'yes'] ];
1.210 sakharuk 1553: Apache::lonhelper::dropdown->new();
1.223 bowersj2 1554: addMessage("</td></tr>");
1.214 sakharuk 1555:
1.220 sakharuk 1556: if (not $helper->{VARS}->{'construction'}) {
1.223 bowersj2 1557: addMessage("<tr><td align='right'>Print Index: </td><td>");
1.220 sakharuk 1558: $paramHash = Apache::lonhelper::getParamHash();
1559: $paramHash->{'variable'} = 'TABLE_INDEX';
1560: $helper->declareVar('TABLE_INDEX');
1561: $paramHash->{CHOICES} = [
1.223 bowersj2 1562: ['No', 'no'],
1563: ['Yes', 'yes'] ];
1.220 sakharuk 1564: Apache::lonhelper::dropdown->new();
1.223 bowersj2 1565: addMessage("</td></tr>");
1.220 sakharuk 1566: }
1.219 sakharuk 1567:
1.230 albertel 1568: if ($helper->{'VARS'}->{'construction'}) {
1.265 sakharuk 1569: my $stylevalue=$ENV{'construct.style'};
1570: my $xmlfrag .= <<"RNDSEED";
1.230 albertel 1571: <message><tr><td align='right'>Use random seed: </td><td></message>
1572: <string variable="curseed" size="15" maxlength="15">
1573: <defaultvalue>
1574: return $helper->{VARS}->{'curseed'};
1575: </defaultvalue>
1.262 sakharuk 1576: </string>
1.264 sakharuk 1577: <message></td></tr><tr><td align="right">Use style file:</td><td></message>
1.265 sakharuk 1578: <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><td></message>
1.230 albertel 1579: <message></td></tr></message>
1580: RNDSEED
1581: &Apache::lonxml::xmlparse($r, 'helper', $xmlfrag);
1.264 sakharuk 1582: $helper->{'VARS'}->{'style_file'}=$ENV{'form.style_file_value'};
1.219 sakharuk 1583: }
1.223 bowersj2 1584: }
1.264 sakharuk 1585:
1586:
1587:
1.218 sakharuk 1588:
1.223 bowersj2 1589: if ($startedTable) {
1590: addMessage("</table>");
1.215 sakharuk 1591: }
1.161 bowersj2 1592:
1.131 bowersj2 1593: Apache::lonprintout::page_format_state->new("FORMAT");
1594:
1.144 bowersj2 1595: # Generate the PAGESIZE state which will offer the user the margin
1596: # choices if they select one column
1597: Apache::lonhelper::state->new("PAGESIZE", "Set Margins");
1598: Apache::lonprintout::page_size_state->new('pagesize', 'FORMAT', 'FINAL');
1599:
1600:
1.131 bowersj2 1601: $helper->process();
1602:
1603: # MANUAL BAILOUT CONDITION:
1604: # If we're in the "final" state, bailout and return to handler
1605: if ($helper->{STATE} eq 'FINAL') {
1606: return $helper;
1607: }
1.130 sakharuk 1608:
1.131 bowersj2 1609: $r->print($helper->display());
1.130 sakharuk 1610:
1.131 bowersj2 1611: Apache::lonhelper::unregisterHelperTags();
1.115 bowersj2 1612:
1613: untie %hash;
1614:
1615: return OK;
1616: }
1617:
1.1 www 1618:
1619: 1;
1.119 bowersj2 1620:
1621: package Apache::lonprintout::page_format_state;
1622:
1623: =pod
1624:
1.131 bowersj2 1625: =head1 Helper element: page_format_state
1626:
1627: See lonhelper.pm documentation for discussion of the helper framework.
1.119 bowersj2 1628:
1.131 bowersj2 1629: Apache::lonprintout::page_format_state is an element that gives the
1630: user an opportunity to select the page layout they wish to print
1631: with: Number of columns, portrait/landscape, and paper size. If you
1632: want to change the paper size choices, change the @paperSize array
1633: contents in this package.
1.119 bowersj2 1634:
1.131 bowersj2 1635: page_format_state is always directly invoked in lonprintout.pm, so there
1636: is no tag interface. You actually pass parameters to the constructor.
1.119 bowersj2 1637:
1638: =over 4
1639:
1.131 bowersj2 1640: =item * B<new>(varName): varName is where the print information will be stored in the format FIXME.
1.119 bowersj2 1641:
1642: =back
1643:
1644: =cut
1645:
1.131 bowersj2 1646: use Apache::lonhelper;
1.119 bowersj2 1647:
1648: no strict;
1.131 bowersj2 1649: @ISA = ("Apache::lonhelper::element");
1.119 bowersj2 1650: use strict;
1.266 sakharuk 1651: use Apache::lonlocal;
1.119 bowersj2 1652:
1653: my $maxColumns = 2;
1654: my @paperSize = ("Letter [8 1/2x11 in]", "Legal [8 1/2x14 in]",
1655: "Ledger/Tabloid [11x17 in]", "Executive [7 1/2x10 in]",
1656: "A2 [420x594 mm]", "A3 [297x420 mm]", "A4 [210x297 mm]",
1657: "A5 [148x210 mm]", "A6 [105x148 mm]" );
1658:
1659: # Tentative format: Orientation (L = Landscape, P = portrait) | Colnum |
1660: # Paper type
1661:
1662: sub new {
1.131 bowersj2 1663: my $self = Apache::lonhelper::element->new();
1.119 bowersj2 1664:
1.135 bowersj2 1665: shift;
1666:
1.131 bowersj2 1667: $self->{'variable'} = shift;
1.134 bowersj2 1668: my $helper = Apache::lonhelper::getHelper();
1.135 bowersj2 1669: $helper->declareVar($self->{'variable'});
1.131 bowersj2 1670: bless($self);
1.119 bowersj2 1671: return $self;
1672: }
1673:
1674: sub render {
1675: my $self = shift;
1.131 bowersj2 1676: my $helper = Apache::lonhelper::getHelper();
1.119 bowersj2 1677: my $result = '';
1.131 bowersj2 1678: my $var = $self->{'variable'};
1.266 sakharuk 1679: my $PageLayout=&mt('Page layout');
1680: my $NumberOfColumns=&mt('Number of columns');
1681: my $PaperType=&mt('Paper type');
1.119 bowersj2 1682: $result .= <<STATEHTML;
1683:
1.223 bowersj2 1684: <hr width="33%" />
1.119 bowersj2 1685: <table cellpadding="3">
1686: <tr>
1.266 sakharuk 1687: <td align="center"><b>$PageLayout</b></td>
1688: <td align="center"><b>$NumberOfColumns</b></td>
1689: <td align="center"><b>$PaperType</b></td>
1.119 bowersj2 1690: </tr>
1691: <tr>
1692: <td>
1.155 sakharuk 1693: <input type="radio" name="${var}.layout" value="L" /> Landscape<br />
1694: <input type="radio" name="${var}.layout" value="P" checked='1' /> Portrait
1.119 bowersj2 1695: </td>
1.155 sakharuk 1696: <td align="center">
1.119 bowersj2 1697: <select name="${var}.cols">
1698: STATEHTML
1699:
1700: my $i;
1701: for ($i = 1; $i <= $maxColumns; $i++) {
1.144 bowersj2 1702: if ($i == 2) {
1.119 bowersj2 1703: $result .= "<option value='$i' selected>$i</option>\n";
1704: } else {
1705: $result .= "<option value='$i'>$i</option>\n";
1706: }
1707: }
1708:
1709: $result .= "</select></td><td>\n";
1710: $result .= "<select name='${var}.paper'>\n";
1711:
1712: $i = 0;
1713: foreach (@paperSize) {
1.144 bowersj2 1714: if ($i == 0) {
1.131 bowersj2 1715: $result .= "<option selected value='$i'>" . $paperSize[$i] . "</option>\n";
1.119 bowersj2 1716: } else {
1.131 bowersj2 1717: $result .= "<option value='$i'>" . $paperSize[$i] . "</option>\n";
1.119 bowersj2 1718: }
1719: $i++;
1720: }
1721:
1722: $result .= "</select></td></tr></table>";
1723: return $result;
1.135 bowersj2 1724: }
1725:
1726: sub postprocess {
1727: my $self = shift;
1728:
1729: my $var = $self->{'variable'};
1.136 bowersj2 1730: my $helper = Apache::lonhelper->getHelper();
1.135 bowersj2 1731: $helper->{VARS}->{$var} =
1.136 bowersj2 1732: $ENV{"form.$var.layout"} . '|' . $ENV{"form.$var.cols"} . '|' .
1733: $ENV{"form.$var.paper"};
1.135 bowersj2 1734: return 1;
1.119 bowersj2 1735: }
1736:
1737: 1;
1.144 bowersj2 1738:
1739: package Apache::lonprintout::page_size_state;
1740:
1741: =pod
1742:
1743: =head1 Helper element: page_size_state
1744:
1745: See lonhelper.pm documentation for discussion of the helper framework.
1746:
1747: Apache::lonprintout::page_size_state is an element that gives the
1748: user the opportunity to further refine the page settings if they
1749: select a single-column page.
1750:
1751: page_size_state is always directly invoked in lonprintout.pm, so there
1752: is no tag interface. You actually pass parameters to the constructor.
1753:
1754: =over 4
1755:
1756: =item * B<new>(varName): varName is where the print information will be stored in the format FIXME.
1757:
1758: =back
1759:
1760: =cut
1761:
1762: use Apache::lonhelper;
1763:
1764: no strict;
1765: @ISA = ("Apache::lonhelper::element");
1766: use strict;
1767:
1768:
1769:
1770: sub new {
1771: my $self = Apache::lonhelper::element->new();
1772:
1773: shift; # disturbs me (probably prevents subclassing) but works (drops
1774: # package descriptor)... - Jeremy
1775:
1776: $self->{'variable'} = shift;
1777: my $helper = Apache::lonhelper::getHelper();
1778: $helper->declareVar($self->{'variable'});
1779:
1780: # The variable name of the format element, so we can look into
1781: # $helper->{VARS} to figure out whether the columns are one or two
1782: $self->{'formatvar'} = shift;
1783:
1784: # The state to transition to after selection, or after discovering
1785: # the cols are not set to 1
1786: $self->{NEXTSTATE} = shift;
1787: bless($self);
1788: return $self;
1789: }
1790:
1791: sub render {
1792: my $self = shift;
1793: my $helper = Apache::lonhelper::getHelper();
1794: my $result = '';
1795: my $var = $self->{'variable'};
1796:
1797: if (defined $self->{ERROR_MSG}) {
1798: $result .= '<br /><font color="#FF0000">' . $self->{ERROR_MSG} . '</font><br />';
1799: }
1800:
1801: $result .= <<ELEMENTHTML;
1802:
1803: <p>How should the column be formatted?</p>
1804:
1805: <table cellpadding='3'>
1806: <tr>
1807: <td align='right'><b>Width</b>:</td>
1808: <td align='left'><input type='text' name='$var.width' value='18' size='4'></td>
1809: <td align='left'>
1810: <select name='$var.widthunit'>
1811: <option>cm</option><option>in</option>
1812: </select>
1813: </td>
1814: </tr>
1815: <tr>
1816: <td align='right'><b>Height</b>:</td>
1817: <td align='left'><input type='text' name="$var.height" value="25.9" size='4'></td>
1818: <td align='left'>
1819: <select name='$var.heightunit'>
1820: <option>cm</option><option>in</option>
1821: </select>
1822: </td>
1823: </tr>
1824: <tr>
1825: <td align='right'><b>Left margin</b>:</td>
1826: <td align='left'><input type='text' name='$var.lmargin' value='-1.5' size='4'></td>
1827: <td align='left'>
1.186 bowersj2 1828: <select name='$var.lmarginunit'>
1.144 bowersj2 1829: <option>cm</option><option>in</option>
1830: </select>
1831: </td>
1832: </tr>
1833: </table>
1834:
1835: <p>Hint: Some instructors like to leave scratch space for the student by
1836: making the width much smaller then the width of the page.</p>
1837:
1838: ELEMENTHTML
1839:
1840: return $result;
1841: }
1842:
1843: # If the user didn't select 1 column, skip this state.
1844: sub preprocess {
1845: my $self = shift;
1846: my $helper = Apache::lonhelper::getHelper();
1847:
1848: my $format = $helper->{VARS}->{$self->{'formatvar'}};
1849: if (substr($format, 2, 1) ne '1') {
1850: $helper->changeState($self->{NEXTSTATE});
1851: }
1852:
1853: return 1;
1854: }
1855:
1856: sub postprocess {
1857: my $self = shift;
1858:
1859: my $var = $self->{'variable'};
1860: my $helper = Apache::lonhelper->getHelper();
1861: my $width = $helper->{VARS}->{$var .'.width'} = $ENV{"form.${var}.width"};
1862: my $height = $helper->{VARS}->{$var .'.height'} = $ENV{"form.${var}.height"};
1863: my $lmargin = $helper->{VARS}->{$var .'.lmargin'} = $ENV{"form.${var}.lmargin"};
1864: $helper->{VARS}->{$var .'.widthunit'} = $ENV{"form.${var}.widthunit"};
1865: $helper->{VARS}->{$var .'.heightunit'} = $ENV{"form.${var}.heightunit"};
1866: $helper->{VARS}->{$var .'.lmarginunit'} = $ENV{"form.${var}.lmarginunit"};
1867:
1868: my $error = '';
1869:
1870: # /^-?[0-9]+(\.[0-9]*)?$/ -> optional minus, at least on digit, followed
1871: # by an optional period, followed by digits, ending the string
1872:
1873: if ($width !~ /^-?[0-9]+(\.[0-9]*)?$/) {
1874: $error .= "Invalid width; please type only a number.<br />\n";
1875: }
1876: if ($height !~ /^-?[0-9]+(\.[0-9]*)?$/) {
1877: $error .= "Invalid height; please type only a number.<br />\n";
1878: }
1879: if ($lmargin !~ /^-?[0-9]+(\.[0-9]*)?$/) {
1880: $error .= "Invalid left margin; please type only a number.<br />\n";
1881: }
1882:
1883: if (!$error) {
1884: Apache::lonhelper::getHelper()->changeState($self->{NEXTSTATE});
1885: return 1;
1886: } else {
1887: $self->{ERROR_MSG} = $error;
1888: return 0;
1889: }
1890: }
1891:
1892:
1.119 bowersj2 1893:
1.1 www 1894: __END__
1.6 sakharuk 1895:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>