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

1.1       www         1: # The LearningOnline Network
                      2: # Printout
                      3: #
1.300   ! albertel    4: # $Id: lonprintout.pm,v 1.299 2004/05/04 19:58:57 albertel 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.269     albertel   89:     $result =~ s/&\#0?58;/:/g;
1.116     sakharuk   90:     $result =~ s/&\#0?59;/;/g;
                     91:     $result =~ s/&(\#0?60|lt|\#139);/\$<\$/g;
1.281     sakharuk   92:     $result =~ s/&\#0?61;/\\ensuremath\{=\}/g;
                     93:     $result =~ s/&(\#0?62|gt|\#155);/\\ensuremath\{>\}/g;
1.116     sakharuk   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;
1.281     sakharuk  122:     $result =~ s/&\#0?92;/\\ensuremath\{\\setminus\}/g;
1.116     sakharuk  123:     $result =~ s/&\#0?93;/]/g;
1.281     sakharuk  124:     $result =~ s/&\#(0?94|136);/\\ensuremath\{\\wedge\}/g;
1.116     sakharuk  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;
1.281     sakharuk  159:     $result =~ s/&\#133;/\\ensuremath\{\\ldots\}/g;
                    160:     $result =~ s/&\#134;/\\ensuremath\{\\dagger\}/g;
                    161:     $result =~ s/&\#135;/\\ensuremath\{\\ddagger\}/g;
1.116     sakharuk  162:     $result =~ s/&\#137;/\\textperthousand /g;
                    163:     $result =~ s/&\#140;/{\\OE}/g;
                    164:     $result =~ s/&\#147;/\`\`/g;
                    165:     $result =~ s/&\#148;/\'\'/g;
1.281     sakharuk  166:     $result =~ s/&\#149;/\\ensuremath\{\\bullet\}/g;
1.116     sakharuk  167:     $result =~ s/&\#150;/--/g;
                    168:     $result =~ s/&\#151;/---/g;
1.281     sakharuk  169:     $result =~ s/&\#152;/\\ensuremath\{\\sim\}/g;
1.116     sakharuk  170:     $result =~ s/&\#153;/\\texttrademark /g;
                    171:     $result =~ s/&\#156;/\\oe/g;
                    172:     $result =~ s/&\#159;/\\\"Y/g;
1.283     albertel  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;
1.281     sakharuk  184:     $result =~ s/&(\#172|not);/\\ensuremath\{\\neg\}/g;
1.116     sakharuk  185:     $result =~ s/&(\#173|shy);/ - /g;
                    186:     $result =~ s/&(\#174|reg);/\\textregistered /g;
1.281     sakharuk  187:     $result =~ s/&(\#175|macr);/\\ensuremath\{^{-}\}/g;
                    188:     $result =~ s/&(\#176|deg);/\\ensuremath\{^{\\circ}\}/g;
                    189:     $result =~ s/&(\#177|plusmn);/\\ensuremath\{\\pm\}/g;
                    190:     $result =~ s/&(\#178|sup2);/\\ensuremath\{^2\}/g;
                    191:     $result =~ s/&(\#179|sup3);/\\ensuremath\{^3\}/g;
1.116     sakharuk  192:     $result =~ s/&(\#180|acute);/\\textacute /g;
1.281     sakharuk  193:     $result =~ s/&(\#181|micro);/\\ensuremath\{\\mu\}/g;
1.116     sakharuk  194:     $result =~ s/&(\#182|para);/\\P/g;
1.281     sakharuk  195:     $result =~ s/&(\#183|middot);/\\ensuremath\{\\cdot\}/g;
1.116     sakharuk  196:     $result =~ s/&(\#184|cedil);/\\c{\\strut}/g;
1.281     sakharuk  197:     $result =~ s/&(\#185|sup1);/\\ensuremath\{^1\}/g;
1.116     sakharuk  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;    
1.281     sakharuk  225:     $result =~ s/&(\#215|times);/\\ensuremath\{\\times\}/g;
1.116     sakharuk  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;
1.281     sakharuk  249:     $result =~ s/&(\#240|eth);/\\ensuremath\{\\partial\}/g;
1.116     sakharuk  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;
1.281     sakharuk  256:     $result =~ s/&(\#247|divide);/\\ensuremath\{\\div\}/g;
1.116     sakharuk  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;
1.281     sakharuk  264:     $result =~ s/&\#952;/\\ensuremath\{\\theta\}/g;
1.117     sakharuk  265: #Greek Alphabet
1.281     sakharuk  266:     $result =~ s/&(alpha|\#945);/\\ensuremath\{\\alpha\}/g;
                    267:     $result =~ s/&(beta|\#946);/\\ensuremath\{\\beta\}/g;
                    268:     $result =~ s/&(gamma|\#947);/\\ensuremath\{\\gamma\}/g;
                    269:     $result =~ s/&(delta|\#948);/\\ensuremath\{\\delta\}/g;
                    270:     $result =~ s/&(epsilon|\#949);/\\ensuremath\{\\epsilon\}/g;
                    271:     $result =~ s/&(zeta|\#950);/\\ensuremath\{\\zeta\}/g;
                    272:     $result =~ s/&(eta|\#951);/\\ensuremath\{\\eta\}/g;
                    273:     $result =~ s/&(theta|\#952);/\\ensuremath\{\\theta\}/g;
                    274:     $result =~ s/&(iota|\#953);/\\ensuremath\{\\iota\}/g;
                    275:     $result =~ s/&(kappa|\#954);/\\ensuremath\{\\kappa\}/g;
                    276:     $result =~ s/&(lambda|\#955);/\\ensuremath\{\\lambda\}/g;
                    277:     $result =~ s/&(mu|\#956);/\\ensuremath\{\\mu\}/g;
                    278:     $result =~ s/&(nu|\#957);/\\ensuremath\{\\nu\}/g;
                    279:     $result =~ s/&(xi|\#958);/\\ensuremath\{\\xi\}/g;
1.199     sakharuk  280:     $result =~ s/&(omicron|\#959);/o/g;
1.281     sakharuk  281:     $result =~ s/&(pi|\#960);/\\ensuremath\{\\pi\}/g;
                    282:     $result =~ s/&(rho|\#961);/\\ensuremath\{\\rho\}/g;
                    283:     $result =~ s/&(sigma|\#963);/\\ensuremath\{\\sigma\}/g;
                    284:     $result =~ s/&(tau|\#964);/\\ensuremath\{\\tau\}/g;
                    285:     $result =~ s/&(upsilon|\#965);/\\ensuremath\{\\upsilon\}/g;
                    286:     $result =~ s/&(phi|\#966);/\\ensuremath\{\\phi\}/g;
                    287:     $result =~ s/&(chi|\#967);/\\ensuremath\{\\chi\}/g;
                    288:     $result =~ s/&(psi|\#968);/\\ensuremath\{\\psi\}/g;
                    289:     $result =~ s/&(omega|\#969);/\\ensuremath\{\\omega\}/g;
                    290:     $result =~ s/&(thetasym|\#977);/\\ensuremath\{\\vartheta\}/g;
                    291:     $result =~ s/&(piv|\#982);/\\ensuremath\{\\varpi\}/g;
1.199     sakharuk  292:     $result =~ s/&(Alpha|\#913);/A/g;
                    293:     $result =~ s/&(Beta|\#914);/B/g;
1.281     sakharuk  294:     $result =~ s/&(Gamma|\#915);/\\ensuremath\{\\Gamma\}/g;
                    295:     $result =~ s/&(Delta|\#916);/\\ensuremath\{\\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.281     sakharuk  299:     $result =~ s/&(Theta|\#920);/\\ensuremath\{\\Theta\}/g;
1.199     sakharuk  300:     $result =~ s/&(Iota|\#921);/I/g;
                    301:     $result =~ s/&(Kappa|\#922);/K/g;
1.281     sakharuk  302:     $result =~ s/&(Lambda|\#923);/\\ensuremath\{\\Lambda\}/g;
1.199     sakharuk  303:     $result =~ s/&(Mu|\#924);/M/g;
                    304:     $result =~ s/&(Nu|\#925);/N/g;
1.281     sakharuk  305:     $result =~ s/&(Xi|\#926);/\\ensuremath\{\\Xi\}/g;
1.199     sakharuk  306:     $result =~ s/&(Omicron|\#927);/O/g;
1.281     sakharuk  307:     $result =~ s/&(Pi|\#928);/\\ensuremath\{\\Pi\}/g;
1.199     sakharuk  308:     $result =~ s/&(Rho|\#929);/P/g;
1.281     sakharuk  309:     $result =~ s/&(Sigma|\#931);/\\ensuremath\{\\Sigma\}/g;
1.199     sakharuk  310:     $result =~ s/&(Tau|\#932);/T/g;
1.281     sakharuk  311:     $result =~ s/&(Upsilon|\#933);/\\ensuremath\{\\Upsilon\}/g;
                    312:     $result =~ s/&(Phi|\#934);/\\ensuremath\{\\Phi\}/g;
1.199     sakharuk  313:     $result =~ s/&(Chi|\#935);/X/g;
1.281     sakharuk  314:     $result =~ s/&(Psi|\#936);/\\ensuremath\{\\Psi\}/g;
                    315:     $result =~ s/&(Omega|\#937);/\\ensuremath\{\\Omega\}/g;
1.199     sakharuk  316: #Arrows (extended HTML 4.01)
1.281     sakharuk  317:     $result =~ s/&(larr|\#8592);/\\ensuremath\{\\leftarrow\}/g;
                    318:     $result =~ s/&(uarr|\#8593);/\\ensuremath\{\\uparrow\}/g;
                    319:     $result =~ s/&(rarr|\#8594);/\\ensuremath\{\\rightarrow\}/g;
                    320:     $result =~ s/&(darr|\#8595);/\\ensuremath\{\\downarrow\}/g;
                    321:     $result =~ s/&(harr|\#8596);/\\ensuremath\{\\leftrightarrow\}/g;
                    322:     $result =~ s/&(lArr|\#8656);/\\ensuremath\{\\Leftarrow\}/g;
                    323:     $result =~ s/&(uArr|\#8657);/\\ensuremath\{\\Uparrow\}/g;
                    324:     $result =~ s/&(rArr|\#8658);/\\ensuremath\{\\Rightarrow\}/g;
                    325:     $result =~ s/&(dArr|\#8659);/\\ensuremath\{\\Downarrow\}/g;
                    326:     $result =~ s/&(hArr|\#8660);/\\ensuremath\{\\Leftrightarrow\}/g;
1.199     sakharuk  327: #Mathematical Operators (extended HTML 4.01)
1.281     sakharuk  328:     $result =~ s/&(forall|\#8704);/\\ensuremath\{\\forall\}/g;
                    329:     $result =~ s/&(part|\#8706);/\\ensuremath\{\\partial\}/g;
                    330:     $result =~ s/&(exist|\#8707);/\\ensuremath\{\\exists\}/g;
                    331:     $result =~ s/&(empty|\#8709);/\\ensuremath\{\\emptyset\}/g;
                    332:     $result =~ s/&(nabla|\#8711);/\\ensuremath\{\\nabla\}/g;
                    333:     $result =~ s/&(isin|\#8712);/\\ensuremath\{\\in\}/g;
                    334:     $result =~ s/&(notin|\#8713);/\\ensuremath\{\\notin\}/g;
                    335:     $result =~ s/&(ni|\#8715);/\\ensuremath\{\\ni\}/g;
                    336:     $result =~ s/&(prod|\#8719);/\\ensuremath\{\\prod\}/g;
                    337:     $result =~ s/&(sum|\#8721);/\\ensuremath\{\\sum\}/g;
                    338:     $result =~ s/&(minus|\#8722);/\\ensuremath\{-\}/g;
                    339:     $result =~ s/&(lowast|\#8727);/\\ensuremath\{*\}/g;
                    340:     $result =~ s/&(radic|\#8730);/\\ensuremath\{\\surd\}/g;
                    341:     $result =~ s/&(prop|\#8733);/\\ensuremath\{\\propto\}/g;
                    342:     $result =~ s/&(infin|\#8734);/\\ensuremath\{\\infty\}/g;
                    343:     $result =~ s/&(ang|\#8736);/\\ensuremath\{\\angle\}/g;
                    344:     $result =~ s/&(and|\#8743);/\\ensuremath\{\\wedge\}/g;
                    345:     $result =~ s/&(or|\#8744);/\\ensuremath\{\\vee\}/g;
                    346:     $result =~ s/&(cap|\#8745);/\\ensuremath\{\\cap\}/g;
                    347:     $result =~ s/&(cup|\#8746);/\\ensuremath\{\\cup\}/g;
                    348:     $result =~ s/&(int|\#8747);/\\ensuremath\{\\int\}/g;
                    349:     $result =~ s/&(sim|\#8764);/\\ensuremath\{\\sim\}/g;
                    350:     $result =~ s/&(cong|\#8773);/\\ensuremath\{\\cong\}/g;
                    351:     $result =~ s/&(asymp|\#8776);/\\ensuremath\{\\approx\}/g;
                    352:     $result =~ s/&(ne|\#8800);/\\ensuremath\{\\not=\}/g;
                    353:     $result =~ s/&(equiv|\#8801);/\\ensuremath\{\\equiv\}/g;
                    354:     $result =~ s/&(le|\#8804);/\\ensuremath\{\\leq\}/g;
                    355:     $result =~ s/&(ge|\#8805);/\\ensuremath\{\\geq\}/g;
                    356:     $result =~ s/&(sub|\#8834);/\\ensuremath\{\\subset\}/g;
                    357:     $result =~ s/&(sup|\#8835);/\\ensuremath\{\\supset\}/g;
                    358:     $result =~ s/&(nsub|\#8836);/\\ensuremath\{\\not\\subset\}/g;
                    359:     $result =~ s/&(sube|\#8838);/\\ensuremath\{\\subseteq\}/g;
                    360:     $result =~ s/&(supe|\#8839);/\\ensuremath\{\\supseteq\}/g;
                    361:     $result =~ s/&(oplus|\#8853);/\\ensuremath\{\\oplus\}/g;
                    362:     $result =~ s/&(otimes|\#8855);/\\ensuremath\{\\otimes\}/g;
                    363:     $result =~ s/&(perp|\#8869);/\\ensuremath\{\\perp\}/g;
                    364:     $result =~ s/&(sdot|\#8901);/\\ensuremath\{\\cdot\}/g;
1.199     sakharuk  365: #Geometric Shapes (extended HTML 4.01)
1.281     sakharuk  366:     $result =~ s/&(loz|\#9674);/\\ensuremath\{\\Diamond\}/g;
1.199     sakharuk  367: #Miscellaneous Symbols (extended HTML 4.01)
1.281     sakharuk  368:     $result =~ s/&(spades|\#9824);/\\ensuremath\{\\spadesuit\}/g;
                    369:     $result =~ s/&(clubs|\#9827);/\\ensuremath\{\\clubsuit\}/g;
                    370:     $result =~ s/&(hearts|\#9829);/\\ensuremath\{\\heartsuit\}/g;
                    371:     $result =~ s/&(diams|\#9830);/\\ensuremath\{\\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.222     sakharuk  477:     $assignment=&Apache::lonxml::latex_special_symbols($assignment,'header');
1.261     sakharuk  478:     ($textwidth,$textheight,$oddoffset,$evenoffset,$topmargin) = &page_format($papersize,$layout,$numberofcolumns,$topmargin);
1.126     albertel  479:     my $name = &get_name();
1.213     albertel  480:     my $courseidinfo = &get_course();
                    481:     if (defined($courseidinfo)) { $courseidinfo=' - '.$courseidinfo }
1.140     sakharuk  482:     if ($layout eq 'album') {
1.202     sakharuk  483: 	my $topmargintoinsert = '';
                    484: 	if ($topmargin ne '0') {$topmargintoinsert='\setlength{\topmargin}{'.$topmargin.'}';}
1.213     albertel  485: 	    $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  486:     } elsif ($layout eq 'book') {
                    487: 	if ($choice ne 'All class print') { 
1.213     albertel  488: 	    $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  489: 	} else {
1.190     sakharuk  490: 	    $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  491: 	}
                    492:     }
1.214     sakharuk  493:     if ($tableofcontents eq 'yes') {$text=~s/(\\setcounter\{page\}\{1\})/$1 \\tableofcontents\\newpage /;}
                    494:     if ($indexlist eq 'yes') {
                    495: 	$text=~s/(\\begin{document})/\\makeindex $1/;
                    496: 	$text=~s/(\\end{document})/\\strut\\\\\\strut\\printindex $1/;
                    497:     }
1.140     sakharuk  498:     return $text;
                    499: }
                    500: 
                    501: 
1.33      sakharuk  502: sub page_cleanup {
                    503:     my $result = shift;	
1.65      sakharuk  504:  
                    505:     $result =~ m/\\end{document}(\d*)$/;
1.34      sakharuk  506:     my $number_of_columns = $1;
1.33      sakharuk  507:     my $insert = '{';
1.34      sakharuk  508:     for (my $id=1;$id<=$number_of_columns;$id++) { $insert .='l'; }
1.33      sakharuk  509:     $insert .= '}';
1.65      sakharuk  510:     $result =~ s/(\\begin{longtable})INSERTTHEHEADOFLONGTABLE\\endfirsthead\\endhead/$1$insert/g;
1.34      sakharuk  511:     $result =~ s/&\s*REMOVETHEHEADOFLONGTABLE\\\\/\\\\/g;
                    512:     return $result,$number_of_columns;
1.7       sakharuk  513: }
1.5       sakharuk  514: 
1.3       sakharuk  515: 
1.60      sakharuk  516: sub details_for_menu {
                    517: 
1.269     albertel  518:     my $name_of_resourse = &Apache::lonnet::gettitle($ENV{'form.postdata'});
1.60      sakharuk  519:     my $symbolic = &Apache::lonnet::symbread($ENV{'form.postdata'});
1.233     www       520:     my ($map,$id,$resource)=&Apache::lonnet::decode_symb($symbolic);
1.123     albertel  521:     $map=&Apache::lonnet::clutter($map);
1.269     albertel  522:     my $name_of_sequence = &Apache::lonnet::gettitle($map);
1.63      albertel  523:     if ($name_of_sequence =~ /^\s*$/) {
1.123     albertel  524: 	$map =~ m|([^/]+)$|;
                    525: 	$name_of_sequence = $1;
1.63      albertel  526:     }
1.269     albertel  527:     my $name_of_map = &Apache::lonnet::gettitle($ENV{'request.course.uri'});
1.63      albertel  528:     if ($name_of_map =~ /^\s*$/) {
1.123     albertel  529: 	$ENV{'request.course.uri'} =~ m|([^/]+)$|;
                    530: 	$name_of_map = $1;
                    531:     }
1.63      albertel  532:     return ($name_of_resourse,$name_of_sequence,$name_of_map);
1.60      sakharuk  533: 
1.76      sakharuk  534: }
                    535: 
                    536: 
                    537: sub latex_corrections {
                    538: 
                    539:     my ($number_of_columns,$result) = @_;
                    540: 
1.185     sakharuk  541: #    $result =~ s/\\includegraphics{/\\includegraphics\[width=\\minipagewidth\]{/g;
1.76      sakharuk  542:     $result =~ s/\$number_of_columns/$number_of_columns/g;
1.91      sakharuk  543:     $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/;
                    544:     $result =~ s/(\\end{longtable}\s*)(\\strut\\newline\\noindent\\makebox\[\\textwidth\/$number_of_columns\]\[b\]{\\hrulefill})/$2$1/g;
                    545:     $result =~ s/(\\end{longtable}\s*)\\strut\\newline/$1/g;
1.76      sakharuk  546: #-- LaTeX corrections     
                    547:     my $first_comment = index($result,'<!--',0);
                    548:     while ($first_comment != -1) {
                    549: 	my $end_comment = index($result,'-->',$first_comment);
                    550: 	substr($result,$first_comment,$end_comment-$first_comment+3) = '';
                    551: 	$first_comment = index($result,'<!--',$first_comment);
                    552:     }
                    553:     $result =~ s/^\s+$//gm; #remove empty lines
1.94      sakharuk  554:     $result =~ s/(\s)(\s+)/$1/g; #removes more than one empty space
1.76      sakharuk  555:     $result =~ s/\\\\\s*\\vskip/\\vskip/gm;
                    556:     $result =~ s/\\\\\s*\\noindent\s*(\\\\)+/\\\\\\noindent /g;
                    557:     $result =~ s/{\\par }\s*\\\\/\\\\/gm;
                    558: 	$result =~ s/\\\\\s+\[/ \[/g;
                    559:     $result =~ s/\b__+\b/\\makebox\[1 cm\]\[b\]{\\hrulefill}/g;
                    560:     #conversion of html characters to LaTeX equivalents
                    561:     if ($result =~ m/&(\w+|#\d+);/) {
                    562: 	$result = &character_chart($result);
                    563:     }
                    564:     $result =~ s/(\\end{tabular})\s*\\vskip 0 mm/$1/g;
                    565:     $result =~ s/(\\begin{enumerate})\s*\\noindent/$1/g;
                    566: 
                    567:     return $result;
1.60      sakharuk  568: }
                    569: 
1.3       sakharuk  570: 
1.214     sakharuk  571: sub index_table {
                    572:     my $currentURL = shift;
                    573:     my $insex_string='';
                    574:     $currentURL=~s/\.([^\/+])$/\.$1\.meta/;
                    575:     $insex_string=&Apache::lonnet::metadata($currentURL,'keywords');
                    576:     return $insex_string;
                    577: }
                    578: 
                    579: 
1.215     sakharuk  580: sub IndexCreation {
                    581:     my ($texversion,$currentURL)=@_;
                    582:     my @key_words=split(/,/,&index_table($currentURL));
                    583:     my $chunk='';
                    584:     my $st=index $texversion,'\addcontentsline{toc}{subsection}{';
                    585:     if ($st>0) {
                    586: 	for (my $i=0;$i<3;$i++) {$st=(index $texversion,'}',$st+1);}
                    587: 	$chunk=substr($texversion,0,$st+1);
                    588: 	substr($texversion,0,$st+1)=' ';
                    589:     }
                    590:     foreach my $key_word (@key_words) {
                    591: 	if ($key_word=~/\S+/) {
                    592: 	    $texversion=~s/\b($key_word)\b/$1 \\index{$key_word} /i;
                    593: 	}
                    594:     }			
                    595:     if ($st>0) {substr($texversion,0,1)=$chunk;}
                    596:     return $texversion;
                    597: }
                    598: 
1.242     sakharuk  599: sub print_latex_header {
                    600:     my $mode=shift;
                    601:     my $output='\documentclass[letterpaper]{article}';
                    602:     if ($mode eq 'batchmode') {
                    603: 	$output.='\batchmode';
                    604:     }
                    605:     $output.='\newcommand{\keephidden}[1]{}\renewcommand{\deg}{$^{\circ}$}'.
                    606: 	     '\usepackage{longtable}\usepackage{textcomp}\usepackage{makeidx}'.
                    607: 	     '\usepackage[dvips]{graphicx}\usepackage{epsfig}\usepackage{calc}'.
                    608: 	     '\newenvironment{choicelist}{\begin{list}{}{\setlength{\rightmargin}{0in}'.
                    609: 	     '\setlength{\leftmargin}{0.13in}\setlength{\topsep}{0.05in}'.
                    610: 	     '\setlength{\itemsep}{0.022in}\setlength{\parsep}{0in}'.
                    611: 	     '\setlength{\belowdisplayskip}{0.04in}\setlength{\abovedisplayskip}{0.05in}'.
                    612: 	     '\setlength{\abovedisplayshortskip}{-0.04in}'.
                    613: 	     '\setlength{\belowdisplayshortskip}{0.04in}}}{\end{list}}'.
                    614: 	     '\renewenvironment{theindex}{\begin{list}{}{{\vskip 1mm \noindent \large'.
                    615: 	     '\textbf{Index}} \newline \setlength{\rightmargin}{0in}'.
                    616: 	     '\setlength{\leftmargin}{0.13in}\setlength{\topsep}{0.01in}'.
                    617: 	     '\setlength{\itemsep}{0.1in}\setlength{\parsep}{-0.02in}'.
                    618: 	     '\setlength{\belowdisplayskip}{0.01in}\setlength{\abovedisplayskip}{0.01in}'.
                    619: 	     '\setlength{\abovedisplayshortskip}{-0.04in}'.
                    620: 	     '\setlength{\belowdisplayshortskip}{0.01in}}}{\end{list}}\begin{document}';
                    621:     return $output;	     
                    622: }
                    623: 
                    624: sub path_to_problem {
                    625:     my ($urlp,$LaTeXwidth)=@_;
                    626:     my $newurlp = '';
                    627:     $LaTeXwidth=~s/\s*mm\s*$//;
                    628:     my $HowMany = length($urlp)*2;
                    629:     if ($HowMany > $LaTeXwidth) {
                    630: 	my @temporrary = split '/',$urlp;
                    631: 	my $HowManyNew = 0;
                    632: 	for (my $ii=0;$ii<=$#temporrary;$ii++) {
                    633: 	    if ($temporrary[$ii] ne '') {
                    634: 		$HowManyNew += length($temporrary[$ii])*2;
                    635: 		if ($HowManyNew < $LaTeXwidth ) {
                    636: 		    $newurlp .=  '/'.$temporrary[$ii];
                    637: 		} else {
                    638: 		    $HowManyNew = 0;
                    639: 		    $newurlp .=  '|\vskip -1 mm \noindent \verb|';
                    640: 		    $ii--;
                    641: 		}
                    642: 	    }
                    643: 	}
1.253     sakharuk  644:     } else {
                    645: 	$newurlp=$urlp;
1.242     sakharuk  646:     }
                    647:     return '{\small\noindent\verb|'.$newurlp.'|\vskip 0 mm}';
                    648: }
1.215     sakharuk  649: 
1.275     sakharuk  650: sub recalcto_mm {
                    651:     my $textwidth=shift;
                    652:     my $LaTeXwidth;
                    653:     if ($textwidth=~/(\d+\.?\d*)\s*cm/) {
                    654: 	$LaTeXwidth = $1*10;
                    655:     } elsif ($textwidth=~/(\d+\.?\d*)\s*mm/) {
                    656: 	$LaTeXwidth = $1;
                    657:     } elsif ($textwidth=~/(\d+\.?\d*)\s*in/) {
                    658: 	$LaTeXwidth = $1*25.4;
                    659:     }
                    660:     $LaTeXwidth.=' mm';
                    661:     return $LaTeXwidth;
                    662: }
                    663: 
1.285     albertel  664: sub get_textwidth {
                    665:     my ($helper,$LaTeXwidth)=@_;
1.286     albertel  666:     my $textwidth=$LaTeXwidth;
1.285     albertel  667:     if ($helper->{'VARS'}->{'pagesize.width'}=~/\d+/ &&
                    668: 	$helper->{'VARS'}->{'pagesize.widthunit'}=~/\w+/) {
1.286     albertel  669: 	$textwidth=&recalcto_mm($helper->{'VARS'}->{'pagesize.width'}.' '.
                    670: 				$helper->{'VARS'}->{'pagesize.widthunit'});
1.285     albertel  671:     }
1.286     albertel  672:     return $textwidth;
1.285     albertel  673: }
                    674: 
1.296     sakharuk  675: 
                    676: sub unsupported {
                    677:     my $currentURL=shift;
                    678:     my $result.='\documentclass[letterpaper]{article}\usepackage{calc}\begin{document}Printout of this type of document is currently not supported: ';
1.298     sakharuk  679:     if ($currentURL=~/\/(aboutme|syllabus|bulletinboard)$/) {
1.296     sakharuk  680: 	$result.='\textbf{'.$1.'}';
                    681:     } elsif ($currentURL=~/\/ext\//) {
                    682: 	$result.=' \strut \\\\ THIS IS EXTERNAL RESOURCE WITH URL \strut \\\\ '.$currentURL.' ';
                    683:     } else {
                    684: 	$result.=$currentURL;
                    685:     }
1.297     sakharuk  686:     $result.= '\vskip 0.5mm\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill} \end{document}';
1.296     sakharuk  687:     return $result;
                    688: }
                    689: 
                    690: 
1.177     sakharuk  691: sub output_data {
1.184     sakharuk  692:     my ($r,$helper,$rparmhash) = @_;
                    693:     my %parmhash = %$rparmhash;
1.187     www       694:     my $bodytag=&Apache::loncommon::bodytag('Preparing Printout');
1.140     sakharuk  695:     $r->print(<<ENDPART);
                    696: <html>
1.264     sakharuk  697: <script type="text/javascript" language="Javascript" >
                    698:     var editbrowser;
                    699:     function openbrowser(formname,elementname,only,omit) {
                    700:         var url = '/res/?';
                    701:         if (editbrowser == null) {
                    702:             url += 'launch=1&';
                    703:         }
                    704:         url += 'catalogmode=interactive&';
                    705:         url += 'mode=parmset&';
                    706:         url += 'form=' + formname + '&';
                    707:         if (only != null) {
                    708:             url += 'only=' + only + '&';
                    709:         } 
                    710:         if (omit != null) {
                    711:             url += 'omit=' + omit + '&';
                    712:         }
                    713:         url += 'element=' + elementname + '';
                    714:         var title = 'Browser';
                    715:         var options = 'scrollbars=1,resizable=1,menubar=0';
                    716:         options += ',width=700,height=600';
                    717:         editbrowser = open(url,title,options,'1');
                    718:         editbrowser.focus();
                    719:     }
                    720: </script>
1.140     sakharuk  721: <head>
                    722: <title>LON-CAPA output for printing</title>
                    723: </head>
1.187     www       724: $bodytag
                    725: Please stand by while processing your print request, this may take some time ...
1.140     sakharuk  726: ENDPART
                    727: 
                    728:     my $format_from_helper = $helper->{'VARS'}->{'FORMAT'};
                    729:     my ($result,$selectionmade) = ('','');
                    730:     my $number_of_columns = 1; #used only for pages to determine the width of the cell
                    731:     my @temporary_array=split /\|/,$format_from_helper;
                    732:     my ($laystyle,$numberofcolumns,$papersize)=@temporary_array;
                    733:     if ($laystyle eq 'L') {
                    734: 	$laystyle='album';
                    735:     } else {
                    736: 	$laystyle='book';
                    737:     }
1.177     sakharuk  738:     my ($textwidth,$textheight,$oddoffset,$evenoffset) = &page_format($papersize,$laystyle,$numberofcolumns);
1.140     sakharuk  739:     my $assignment =  $ENV{'form.assignment'};
1.275     sakharuk  740:     my $LaTeXwidth=&recalcto_mm($textwidth); 
1.272     sakharuk  741:     my @print_array=();
1.274     sakharuk  742:     my @student_names=();
1.153     sakharuk  743:     
1.140     sakharuk  744:     if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'current_document') {
1.143     sakharuk  745:       #-- single document - problem, page, html, xml, ...
                    746: 	my $currentURL;
1.162     sakharuk  747: 	if ($helper->{'VARS'}->{'construction'} ne '1') {
1.185     sakharuk  748:             #prints published resource
1.153     sakharuk  749: 	    $currentURL=$helper->{'VARS'}->{'postdata'};
1.143     sakharuk  750: 	} else {
1.185     sakharuk  751:             #prints resource from the construction space
1.240     albertel  752: 	    $currentURL='/'.$helper->{'VARS'}->{'filename'};
1.206     sakharuk  753: 	    if ($currentURL=~/([^?]+)/) {$currentURL=$1;}
1.143     sakharuk  754: 	}
1.140     sakharuk  755: 	$selectionmade = 1;
1.143     sakharuk  756: 	if ($currentURL=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)$/) {
1.298     sakharuk  757: 	    &Apache::lonnet::logthis("II AMAM IN A WRONG PLACE");
1.169     albertel  758: 	    my $rndseed=time;
1.242     sakharuk  759: 	    my $texversion='';
                    760: 	    if ($helper->{'VARS'}->{'ANSWER_TYPE'} ne 'only') {
                    761: 		my %moreenv;
                    762: 		$moreenv{'request.filename'}=$currentURL;
1.265     sakharuk  763: 		if ($helper->{'VARS'}->{'style_file'}=~/\w/) {
                    764: 		    $moreenv{'construct.style'}=$helper->{'VARS'}->{'style_file'};
                    765: 		    my $dom = $ENV{'user.domain'};
                    766: 		    my $user = $ENV{'user.name'};
                    767: 		    my $put_result = &Apache::lonnet::put('environment',{'construct.style'=>$helper->{'VARS'}->{'style_file'}},$dom,$user);
                    768: 		}
1.242     sakharuk  769: 		my %form;
1.290     sakharuk  770:                 if ($helper->{'VARS'}->{'probstatus'} eq 'exam') {$form{'problemtype'}='exam';}
1.242     sakharuk  771: 		$form{'grade_target'}='tex';
1.285     albertel  772: 		$form{'textwidth'}=&get_textwidth($helper,$LaTeXwidth);
1.242     sakharuk  773: 		$form{'problem_split'}=$parmhash{'problem_stream_switch'};
                    774: 		$form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
                    775: 		if ($helper->{'VARS'}->{'curseed'}) {
                    776: 		    $rndseed=$helper->{'VARS'}->{'curseed'};
                    777: 		}
                    778: 		$form{'rndseed'}=$rndseed;
                    779: 		&Apache::lonnet::appenv(%moreenv);
                    780: 		&Apache::lonnet::delenv('form.counter');
                    781: 		&Apache::lonxml::init_counter();
1.275     sakharuk  782: 		$texversion.=&Apache::lonnet::ssi($currentURL,%form);
1.242     sakharuk  783: 		&Apache::lonnet::delenv('form.counter');
                    784: 		&Apache::lonnet::delenv('request.filename');
1.230     albertel  785: 	    }
1.242     sakharuk  786: 	    if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
                    787: 	       ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
1.166     albertel  788: 		my %form;
                    789: 		$form{'grade_target'}='answer';
1.167     albertel  790: 		$form{'answer_output_mode'}='tex';
1.169     albertel  791: 		$form{'rndseed'}=$rndseed;
1.166     albertel  792: 		my $answer=&Apache::lonnet::ssi($currentURL,%form);
1.242     sakharuk  793: 		if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
                    794: 		    $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
                    795: 		} else {
                    796: 		    $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
1.245     sakharuk  797: 		    if ($helper->{'VARS'}->{'construction'} ne '1') {
                    798: 			$texversion.='\vskip 0 mm \noindent\textbf{'.&Apache::lonnet::gettitle($helper->{'VARS'}->{'symb'}).'}\vskip 0 mm ';
                    799: 			$texversion.=&path_to_problem ($currentURL,$LaTeXwidth);
                    800: 		    } else {
                    801: 			$texversion.='\vskip 0 mm \noindent\textbf{Prints from construction space - there is no title.}\vskip 0 mm ';
                    802: 			my $URLpath=$currentURL;
                    803: 			$URLpath=~s/~([^\/]+)/public_html\/$1\/$1/;
                    804: 			$texversion.=&path_to_problem ($URLpath,$LaTeXwidth);
                    805: 		    }
1.242     sakharuk  806: 		    $texversion.='\vskip 1 mm '.$answer.'\end{document}';
                    807: 		}
1.163     sakharuk  808: 	    }
1.214     sakharuk  809: 	    if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
1.215     sakharuk  810: 		$texversion=&IndexCreation($texversion,$currentURL);
1.214     sakharuk  811: 	    }
1.219     sakharuk  812: 	    if ($helper->{'VARS'}->{'CONSTR_RESOURSE_URL'} eq 'yes') {
                    813: 		$texversion=~s/(\\addcontentsline\{toc\}\{subsection\}\{[^\}]*\})/$1 URL: \\verb|$currentURL| \\strut\\\\\\strut /;
                    814: 
                    815: 	    }
1.162     sakharuk  816: 	    $result .= $texversion;
                    817: 	    if ($currentURL=~m/\.page\s*$/) {
                    818: 		($result,$number_of_columns) = &page_cleanup($result);
                    819: 	    }
1.227     sakharuk  820:         } elsif ($currentURL=~/\.sequence$/ && $helper->{'VARS'}->{'construction'} eq '1') {
                    821:             #printing content of sequence from the construction space	
                    822: 	    my $flag_latex_header_remove = 'NO'; 
                    823: 	    my $rndseed=time;
1.231     albertel  824: 	    if ($helper->{'VARS'}->{'curseed'}) {
                    825: 		$rndseed=$helper->{'VARS'}->{'curseed'};
                    826: 	    }
1.227     sakharuk  827: 	    $currentURL=~s|\/~([^\/]+)\/|\/home\/$1\/public_html\/|;
                    828: 	    my $errtext=&Apache::lonratedt::mapread($currentURL);
                    829: 	    for (my $member=0;$member<=$#Apache::lonratedt::order;$member++) {
                    830: 		$Apache::lonratedt::resources[$Apache::lonratedt::order[$member]]=~/^([^:]*):([^:]*):/;
                    831: 		my $urlp=$2;
                    832: 		if ($urlp=~/\.(problem|exam|quiz|assess|survey|form|library|xml|html|htm|xhtml|xhtm)$/) {
1.245     sakharuk  833: 		    my $texversion='';
                    834: 		    if ($helper->{'VARS'}->{'ANSWER_TYPE'} ne 'only') {
                    835: 			my %form;
                    836: 			$form{'grade_target'}='tex';
1.285     albertel  837: 			$form{'textwidth'}=&get_textwidth($helper,$LaTeXwidth);
1.245     sakharuk  838: 			$form{'problem_split'}=$parmhash{'problem_stream_switch'};
                    839: 			$form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
                    840: 			$form{'rndseed'}=$rndseed;
                    841: 			$texversion=&Apache::lonnet::ssi($urlp,%form);
                    842: 		    }
1.249     sakharuk  843: 		    if((($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
                    844: 		       ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) && 
                    845: 		       ($urlp=~/\.(problem|exam|quiz|assess|survey|form|library|page)$/)) {
1.227     sakharuk  846: 			my %form;
                    847: 			$form{'grade_target'}='answer';
                    848: 			$form{'answer_output_mode'}='tex';
                    849: 			$form{'rndseed'}=$rndseed;
1.232     sakharuk  850:                         if ($urlp=~/\/res\//) {$ENV{'request.state'}='published';}
1.227     sakharuk  851: 			my $answer=&Apache::lonnet::ssi($urlp,%form);
1.245     sakharuk  852: 			if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
                    853: 			    $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
                    854: 			} else {
                    855: 			    $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
                    856: 			    $texversion.='\vskip 0 mm \noindent\textbf{'.&Apache::lonnet::gettitle($helper->{'VARS'}->{'symb'}).'}\vskip 0 mm ';
                    857: 			    $texversion.=&path_to_problem ($currentURL,$LaTeXwidth);
                    858: 			    $texversion.='\vskip 1 mm '.$answer.'\end{document}';
                    859: 			}
1.227     sakharuk  860: 		    }
                    861: 		    if ($flag_latex_header_remove ne 'NO') {
                    862: 			$texversion = &latex_header_footer_remove($texversion);
                    863: 		    } else {
                    864: 			$texversion =~ s/\\end{document}//;
                    865: 		    }
                    866: 		    if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
                    867: 			$texversion=&IndexCreation($texversion,$urlp);
                    868: 		    }
1.232     sakharuk  869: 		    if ($helper->{'VARS'}->{'CONSTR_RESOURSE_URpL'} eq 'yes') {
1.227     sakharuk  870: 			$texversion=~s/(\\addcontentsline\{toc\}\{subsection\}\{[^\}]*\})/$1 URL: \\verb|$urlp| \\strut\\\\\\strut /;
                    871: 		    }
                    872: 		    $result.=$texversion;
                    873: 		    $flag_latex_header_remove = 'YES';
                    874: 		} elsif ($urlp=~/\.(sequence|page)$/) {
1.229     sakharuk  875: 		    $result.='\strut\newline\noindent Sequence/page '.$urlp.'\strut\newline\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill}\newline\noindent ';
1.227     sakharuk  876: 		}  
                    877: 	    }
1.228     sakharuk  878: 	    if ($helper->{VARS}->{'construction'} eq '1') {$result=~s/(\\begin{document})/$1 \\fbox\{RANDOM SEED IS $rndseed\} /;}
1.227     sakharuk  879: 	    $result .= '\end{document}';   
1.298     sakharuk  880: 	} elsif ($currentURL=~/\/(smppg|syllabus)$/) { 
1.258     sakharuk  881: 		my %form;
                    882: 		$form{'grade_target'}='tex';
1.285     albertel  883: 		$form{'textwidth'}=&get_textwidth($helper,$LaTeXwidth);
1.258     sakharuk  884: 		$form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
1.298     sakharuk  885: 		if ($currentURL=~/\/syllabus$/) {$currentURL=~s/\/res//;}
1.258     sakharuk  886: 		my $texversion=&Apache::lonnet::ssi($currentURL,%form);
                    887: 		$result .= $texversion;
1.162     sakharuk  888: 	} else {
1.298     sakharuk  889: 	    &Apache::lonnet::logthis("IIII AMAM IN A WRONG PLACE");
1.296     sakharuk  890: 	    $result.=&unsupported($currentURL);
1.162     sakharuk  891: 	}
1.142     sakharuk  892:     } elsif (($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems') or
                    893:              ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems_pages') or
1.252     sakharuk  894:              ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'all_problems') or
                    895: 	     ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'select_sequences')) { 
1.141     sakharuk  896:         #-- produce an output string
1.296     sakharuk  897: 	if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems') {
                    898: 	    $selectionmade = 2;
                    899: 	} elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems_pages') {
                    900: 	    $selectionmade = 3;
                    901: 	} elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'all_problems') {
                    902: 	    $selectionmade = 4;
                    903: 	} elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'select_sequences') {
                    904: 	    $selectionmade = 7;
                    905: 	}
1.193     sakharuk  906: 	my %form=();	   
                    907: 	$form{'grade_target'}='tex';
1.285     albertel  908: 	$form{'textwidth'}=&get_textwidth($helper,$LaTeXwidth);
1.193     sakharuk  909: 	$form{'problem_split'}=$parmhash{'problem_stream_switch'};
1.203     sakharuk  910: 	$form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
1.141     sakharuk  911: 	my $flag_latex_header_remove = 'NO';
                    912: 	my $flag_page_in_sequence = 'NO';
                    913: 	my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'};
1.193     sakharuk  914: 	my $prevassignment='';
1.270     sakharuk  915: 	&Apache::lonnet::delenv('form.counter');
1.201     sakharuk  916: 	&Apache::lonxml::init_counter();
1.141     sakharuk  917: 	for (my $i=0;$i<=$#master_seq;$i++) {
1.236     albertel  918: 	    my (undef,undef,$urlp)=&Apache::lonnet::decode_symb($master_seq[$i]);
1.237     albertel  919: 	    $urlp=&Apache::lonnet::clutter($urlp);
1.166     albertel  920: 	    $form{'symb'}=$master_seq[$i];
1.236     albertel  921: 	    my ($sequence)=&Apache::lonnet::decode_symb($master_seq[$i]);
                    922: 	    my $assignment=&Apache::lonxml::latex_special_symbols(&Apache::lonnet::gettitle($sequence),'header'); #tittle of the assignment which contains this problem
1.267     sakharuk  923: 	    if ($selectionmade==7) {$helper->{VARS}->{'assignment'}=$assignment;}
1.247     sakharuk  924: 	    if ($i==0) {$prevassignment=$assignment;}
1.141     sakharuk  925: 	    #&Apache::lonnet::logthis("Trying to get $urlp with symb $master_seq[$i]");
1.297     sakharuk  926: 	    my $texversion='';
1.296     sakharuk  927: 	    if ($urlp=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)$/) {
1.297     sakharuk  928: 		$texversion.=&Apache::lonnet::ssi($urlp,%form);
1.296     sakharuk  929: 		if ($urlp=~/\.page$/) {
                    930: 		    ($texversion,my $number_of_columns_page) = &page_cleanup($texversion);
                    931: 		    if ($number_of_columns_page > $number_of_columns) {$number_of_columns=$number_of_columns_page;} 
                    932: 		    $texversion =~ s/\\end{document}\d*/\\end{document}/;
                    933: 		    $flag_page_in_sequence = 'YES';
                    934: 		} 
                    935: 		my $lonidsdir=$r->dir_config('lonIDsDir');
                    936: 		my $envfile=$ENV{'user.environment'};
                    937: 		$envfile=~/\/([^\/]+)\.id$/;
                    938: 		$envfile=$1;
                    939: 		&Apache::lonnet::transfer_profile_to_env($lonidsdir,$envfile);
                    940: 		my $current_counter=$ENV{'form.counter'};
                    941: 		if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
                    942: 		   ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
                    943: 		    my %form;
                    944: 		    $form{'grade_target'}='answer';
                    945: 		    $form{'answer_output_mode'}='tex';
                    946: 		    my $answer=&Apache::lonnet::ssi($urlp,%form);
                    947: 		    &Apache::lonnet::appenv(('form.counter' => $current_counter));
                    948: 		    if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
                    949: 			$texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
1.249     sakharuk  950: 		    } else {
1.296     sakharuk  951: 			if ($urlp=~/\.(problem|exam|quiz|library)$/) {
                    952: 			    $texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
                    953: 			    $texversion.='\vskip 0 mm \noindent\textbf{'.&Apache::lonnet::gettitle($urlp).'}\vskip 0 mm ';
                    954: 			    $texversion.=&path_to_problem ($urlp,$LaTeXwidth);
                    955: 			    $texversion.='\vskip 1 mm '.$answer;
                    956: 			} else {
                    957: 			    $texversion='';
                    958: 			}
1.249     sakharuk  959: 		    }
1.246     sakharuk  960: 		}
1.296     sakharuk  961: 		if ($flag_latex_header_remove ne 'NO') {
                    962: 		    $texversion = &latex_header_footer_remove($texversion);
                    963: 		} else {
                    964: 		    $texversion =~ s/\\end{document}//;
                    965: 		}
                    966: 		if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
                    967: 		    $texversion=&IndexCreation($texversion,$urlp);
                    968: 		}
                    969: 		if (($selectionmade == 4) and ($assignment ne $prevassignment)) {
                    970: 		    my $name = &get_name();
                    971: 		    my $courseidinfo = &get_course();
                    972: 		    if (defined($courseidinfo)) { $courseidinfo=' - '.$courseidinfo }
                    973: 		    $prevassignment=$assignment;
                    974: 		    $result .='\newpage \noindent\parbox{\minipagewidth}{\noindent\\lhead{\\textit{\\textbf{'.$name.'}}'.$courseidinfo.' \\hfill \\thepage \\\\ \\textit{'.$assignment.'}}} \vskip -5 mm ';
                    975: 		}
                    976: 		$result .= $texversion;
                    977: 		$flag_latex_header_remove = 'YES';   
1.141     sakharuk  978: 	    } else {
1.297     sakharuk  979: 		$texversion=&unsupported($urlp);
                    980: 		if ($flag_latex_header_remove ne 'NO') {
                    981: 		    $texversion = &latex_header_footer_remove($texversion);
                    982: 		} else {
                    983: 		    $texversion =~ s/\\end{document}//;
                    984: 		}
                    985: 		$result .= $texversion;
                    986: 		$flag_latex_header_remove = 'YES';   
1.296     sakharuk  987: 	    }	    
1.141     sakharuk  988: 	}
                    989: 	&Apache::lonnet::delenv('form.counter');
                    990: 	if ($flag_page_in_sequence eq 'YES') {$result =~ s/\\usepackage{calc}/\\usepackage{calc}\\usepackage{longtable}/;}	
                    991: 	$result .= '\end{document}';
1.284     albertel  992:      } elsif (($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_students') ||
                    993: 	      ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'resources_for_students')){
1.150     sakharuk  994:      #-- prints assignments for whole class or for selected students  
1.284     albertel  995: 	 my $type;
1.254     sakharuk  996: 	 if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_students') {
                    997: 	     $selectionmade=5;
1.284     albertel  998: 	     $type='problems';
1.254     sakharuk  999: 	 } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'resources_for_students') {
                   1000: 	     $selectionmade=8;
1.284     albertel 1001: 	     $type='resources';
1.254     sakharuk 1002: 	 }
1.150     sakharuk 1003: 	 my @students=split /\|\|\|/, $helper->{'VARS'}->{'STUDENTS'};
1.278     albertel 1004:          if ($helper->{'VARS'}->{'NUMBER_TO_PRINT'} eq '0' ||
                   1005: 	     $helper->{'VARS'}->{'NUMBER_TO_PRINT'} eq 'all' ) {
                   1006: 	     $helper->{'VARS'}->{'NUMBER_TO_PRINT'}=$#students+1;
                   1007: 	 }
1.150     sakharuk 1008: 	 my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'};
                   1009: 	 #loop over students
                   1010: 	 my $flag_latex_header_remove = 'NO'; 
                   1011: 	 my %moreenv;
1.285     albertel 1012: 	 $moreenv{'textwidth'}=&get_textwidth($helper,$LaTeXwidth);
1.150     sakharuk 1013: 	 my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Print Status','Class Print Status',$#students+1);
1.272     sakharuk 1014: 	 my $student_counter=-1;
1.150     sakharuk 1015: 	 foreach my $person (@students) {
1.272     sakharuk 1016: 	     $student_counter++;
1.284     albertel 1017: 	     my $i=int($student_counter/$helper->{'VARS'}{'NUMBER_TO_PRINT'});
                   1018: 	     my ($output,$fullname)=&print_resources($r,$helper,$person,$type,\%moreenv,\@master_seq,$flag_latex_header_remove);
                   1019: 	     $print_array[$i].=$output;
                   1020: 	     $student_names[$i].=$person.':'.$fullname.'_END_';
                   1021: 	     &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,&mt('last student').' '.$fullname);
                   1022: 	     $flag_latex_header_remove = 'YES';
                   1023: 	 }
                   1024: 	 &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
                   1025: 	 $result .= $print_array[0].'  \end{document}';
                   1026:      } elsif (($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_anon')     ||
                   1027: 	      ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'resources_for_anon')  ) { 
1.292     albertel 1028: 	 my $cdom =$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
                   1029: 	 my $cnum =$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
1.288     albertel 1030: 	 my $num_todo=$helper->{'VARS'}->{'NUMBER_TO_PRINT_TOTAL'};
                   1031: 	 my $code_name=$helper->{'VARS'}->{'ANON_CODE_STORAGE_NAME'};
1.292     albertel 1032: 	 my $old_name=$helper->{'VARS'}->{'REUSE_OLD_CODES'};
1.284     albertel 1033: 	 my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'};
1.288     albertel 1034: 	 my ($type) = split(/_/,$helper->{'VARS'}->{'PRINT_TYPE'});
1.295     albertel 1035: 	 my $number_per_page=$helper->{'VARS'}->{'NUMBER_TO_PRINT'};
                   1036: 	 if ($number_per_page eq '0' || $number_per_page eq 'all') {
                   1037: 	     $number_per_page=$num_todo;
                   1038: 	 }
1.288     albertel 1039: 	 my $flag_latex_header_remove = 'NO'; 
                   1040: 	 my %moreenv = ('textwidth' => &get_textwidth($helper,$LaTeXwidth));
1.300   ! albertel 1041: 	 my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Print Status','Class Print Status',$num_todo,'inline','75');
1.288     albertel 1042: 	 my $seed=time+($$<<16)+($$);
1.292     albertel 1043: 	 my @allcodes;
                   1044: 	 if ($old_name) {
                   1045: 	     my %result=&Apache::lonnet::get('CODEs',[$old_name],$cdom,$cnum);
                   1046: 	     @allcodes=split(',',$result{$old_name});
                   1047: 	 } else {
                   1048: 	     my %allcodes;
1.299     albertel 1049: 	     srand($seed);
1.292     albertel 1050: 	     for (my $i=0;$i<$num_todo;$i++) {
                   1051: 		 $moreenv{'CODE'}=&get_CODE(\%allcodes,$i,$seed,'6');
                   1052: 	     }
                   1053: 	     if ($code_name) {
                   1054: 		 &Apache::lonnet::put('CODEs',
                   1055: 				      {$code_name =>join(',',keys(%allcodes))},
                   1056: 				      $cdom,$cnum);
                   1057: 	     }
                   1058: 	     @allcodes=keys(%allcodes);
                   1059: 	 }
1.295     albertel 1060: 	 my $count=0;
1.292     albertel 1061: 	 foreach my $code (sort(@allcodes)) {
1.295     albertel 1062: 	     my $file_num=int($count/$number_per_page);
1.292     albertel 1063: 	     $moreenv{'CODE'}=&num_to_letters($code);
1.288     albertel 1064: 	     my ($output,$fullname)=
                   1065: 		 &print_resources($r,$helper,'anonymous',$type,\%moreenv,
                   1066: 				  \@master_seq,$flag_latex_header_remove);
1.295     albertel 1067: 	     $print_array[$file_num].=$output;
1.288     albertel 1068: 	     &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
                   1069: 				       &mt('last assignment').' '.$fullname);
                   1070: 	     $flag_latex_header_remove = 'YES';
1.295     albertel 1071: 	     $count++;
1.288     albertel 1072: 	 }
                   1073: 	 &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
                   1074: 	 $result .= $print_array[0].'  \end{document}';
                   1075:      } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_from_directory') {      
1.151     sakharuk 1076:     #prints selected problems from the subdirectory 
                   1077: 	$selectionmade = 6;
                   1078:         my @list_of_files=split /\|\|\|/, $helper->{'VARS'}->{'FILES'};
1.154     sakharuk 1079: 	@list_of_files=sort @list_of_files;
1.175     sakharuk 1080: 	my $flag_latex_header_remove = 'NO'; 
                   1081: 	my $rndseed=time;
1.230     albertel 1082: 	if ($helper->{'VARS'}->{'curseed'}) {
                   1083: 	    $rndseed=$helper->{'VARS'}->{'curseed'};
                   1084: 	}
1.151     sakharuk 1085: 	for (my $i=0;$i<=$#list_of_files;$i++) {
1.152     sakharuk 1086: 	    my $urlp = $list_of_files[$i];
1.253     sakharuk 1087: 	    $urlp=~s|//|/|;
1.152     sakharuk 1088: 	    if ($urlp=~/\//) {
1.166     albertel 1089: 		my %form;
                   1090: 		$form{'grade_target'}='tex';
1.285     albertel 1091: 		$form{'textwidth'}=&get_textwidth($helper,$LaTeXwidth);
1.175     sakharuk 1092: 		$form{'rndseed'}=$rndseed;
1.152     sakharuk 1093: 		if ($urlp =~ m|/home/([^/]+)/public_html|) {
                   1094: 		    $urlp =~ s|/home/([^/]*)/public_html|/~$1|;
                   1095: 		} else {
                   1096: 		    $urlp =~ s|^/home/httpd/html||;
                   1097: 		}
1.166     albertel 1098: 		my $texversion=&Apache::lonnet::ssi($urlp,%form);
1.251     sakharuk 1099: 		if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
1.253     sakharuk 1100: 		   ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
1.174     sakharuk 1101: 		    my %form;
                   1102: 		    $form{'grade_target'}='answer';
                   1103: 		    $form{'answer_output_mode'}='tex';
1.203     sakharuk 1104: 		    $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
1.174     sakharuk 1105: 		    $form{'rndseed'}=$rndseed;
                   1106: 		    my $answer=&Apache::lonnet::ssi($urlp,%form);
1.251     sakharuk 1107: 		    if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
                   1108: 			$texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
                   1109: 		    } else {
1.253     sakharuk 1110: 			$texversion=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
                   1111: 			if ($helper->{'VARS'}->{'construction'} ne '1') {
                   1112: 			    $texversion.='\vskip 0 mm \noindent ';
                   1113: 			    $texversion.=&path_to_problem ($urlp,$LaTeXwidth);
                   1114: 			} else {
                   1115: 			    $texversion.='\vskip 0 mm \noindent\textbf{Prints from construction space - there is no title.}\vskip 0 mm ';
                   1116: 			    my $URLpath=$urlp;
                   1117: 			    $URLpath=~s/~([^\/]+)/public_html\/$1\/$1/;
                   1118: 			    $texversion.=&path_to_problem ($URLpath,$LaTeXwidth);
                   1119: 			}
                   1120: 			$texversion.='\vskip 1 mm '.$answer.'\end{document}';
1.251     sakharuk 1121: 		    }
1.174     sakharuk 1122: 		}
1.151     sakharuk 1123:                 #this chunck is responsible for printing the path to problem
1.253     sakharuk 1124: 		my $newurlp=$urlp;
                   1125: 		if ($newurlp=~/~/) {$newurlp=~s|\/~([^\/]+)\/|\/home\/$1\/public_html\/|;}
                   1126: 		$newurlp=&path_to_problem($newurlp,$LaTeXwidth);
1.242     sakharuk 1127: 		$texversion =~ s/(\\begin{minipage}{\\textwidth})/$1 $newurlp/;
1.152     sakharuk 1128: 		if ($flag_latex_header_remove ne 'NO') {
                   1129: 		    $texversion = &latex_header_footer_remove($texversion);
                   1130: 		} else {
                   1131: 		    $texversion =~ s/\\end{document}//;
1.216     sakharuk 1132: 		}
                   1133: 		if ($helper->{'VARS'}->{'TABLE_INDEX'} eq 'yes') {
                   1134: 		    $texversion=&IndexCreation($texversion,$urlp);
1.152     sakharuk 1135: 		}
1.219     sakharuk 1136: 		if ($helper->{'VARS'}->{'CONSTR_RESOURSE_URL'} eq 'yes') {
                   1137: 		    $texversion=~s/(\\addcontentsline\{toc\}\{subsection\}\{[^\}]*\})/$1 URL: \\verb|$urlp| \\strut\\\\\\strut /;
                   1138: 		    
                   1139: 		}
1.152     sakharuk 1140: 		$result .= $texversion;
                   1141: 	    }
                   1142: 	    $flag_latex_header_remove = 'YES';  
1.151     sakharuk 1143: 	}
1.175     sakharuk 1144: 	if ($helper->{VARS}->{'construction'} eq '1') {$result=~s/(\\typeout)/ RANDOM SEED IS $rndseed $1/;}
1.152     sakharuk 1145: 	$result .= '\end{document}';      	
1.140     sakharuk 1146:     }
                   1147: #-------------------------------------------------------- corrections for the different page formats
1.214     sakharuk 1148:     $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 1149:     $result = &latex_corrections($number_of_columns,$result);
1.272     sakharuk 1150:     for (my $i=1;$i<=$#print_array;$i++) {$print_array[$i] = &latex_corrections($number_of_columns,$print_array[$i]);}
1.190     sakharuk 1151:     #changes page's parameters for the one column output 
1.195     sakharuk 1152:     if ($numberofcolumns == 1) {
1.261     sakharuk 1153: 	$result =~ s/\\textwidth\s*=\s*\d*\.?\d*\s*(cm|mm|in)/\\textwidth= $helper->{'VARS'}->{'pagesize.width'} $helper->{'VARS'}->{'pagesize.widthunit'} /;
                   1154: 	$result =~ s/\\textheight\s*=\s*\d*\.?\d*\s*(cm|mm|in)/\\textheight $helper->{'VARS'}->{'pagesize.height'} $helper->{'VARS'}->{'pagesize.heightunit'} /;
                   1155: 	$result =~ s/\\evensidemargin\s*=\s*\d*\.?\d*\s*(cm|mm|in)/\\evensidemargin= $helper->{'VARS'}->{'pagesize.lmargin'} $helper->{'VARS'}->{'pagesize.lmarginunit'} /;
                   1156: 	$result =~ s/\\oddsidemargin\s*=\s*\d*\.?\d*\s*(cm|mm|in)/\\oddsidemargin= $helper->{'VARS'}->{'pagesize.lmargin'} $helper->{'VARS'}->{'pagesize.lmarginunit'} /;
1.195     sakharuk 1157:     }
1.140     sakharuk 1158: #-- writing .tex file in prtspool 
                   1159:     my $temp_file;
1.277     albertel 1160:     my $identifier = &Apache::loncommon::get_cgi_id();
                   1161:     my $filename = "/home/httpd/prtspool/$ENV{'user.name'}_$ENV{'user.domain'}_printout_".$identifier.".tex";
                   1162:     if (!($#print_array>0)) { 
                   1163: 	unless ($temp_file = Apache::File->new('>'.$filename)) {
                   1164: 	    $r->log_error("Couldn't open $filename for output $!");
                   1165: 	    return SERVER_ERROR; 
                   1166: 	}
                   1167: 	print $temp_file $result;
                   1168: 	my $begin=index($result,'\begin{document}',0);
                   1169: 	my $inc=substr($result,0,$begin+16);
                   1170:     } else {
                   1171: 	my $begin=index($result,'\begin{document}',0);
                   1172: 	my $inc=substr($result,0,$begin+16);
                   1173:         for (my $i=0;$i<=$#print_array;$i++) {
                   1174: 	    if ($i==0) {
                   1175: 		$print_array[$i]=$result;
                   1176: 	    } else {
                   1177: 		my $anobegin=index($print_array[$i],'\setcounter{page}',0);
                   1178: 		substr($print_array[$i],0,$anobegin)='';
                   1179: 		$print_array[$i]=$inc.$print_array[$i].'\end{document}';
                   1180: 	    }
1.272     sakharuk 1181: 	    my $temp_file;
1.273     sakharuk 1182: 	    my $newfilename=$filename;
1.277     albertel 1183: 	    my $num=$i+1;
                   1184: 	    $newfilename =~s/\.tex$/_$num\.tex/; 
1.272     sakharuk 1185: 	    unless ($temp_file = Apache::File->new('>'.$newfilename)) {
                   1186: 		$r->log_error("Couldn't open $newfilename for output $!");
                   1187: 		return SERVER_ERROR; 
                   1188: 	    }
                   1189: 	    print $temp_file $print_array[$i];
                   1190: 	}
                   1191:     }
1.274     sakharuk 1192:     my $student_names='';
                   1193:     if ($#print_array>0) {
                   1194: 	for (my $i=0;$i<=$#print_array;$i++) {
                   1195: 	    $student_names.=$student_names[$i].'_ENDPERSON_';
                   1196: 	}
1.277     albertel 1197:     } else {
1.278     albertel 1198: 	if ($#student_names>-1) {
                   1199: 	    $student_names=$student_names[0].'_ENDPERSON_';
                   1200: 	} else {
                   1201: 	    my $fullname = &get_name($ENV{'user.name'},$ENV{'user.domain'});
                   1202: 	    $student_names=join(':',$ENV{'user.name'},$ENV{'user.domain'},
                   1203: 				$ENV{'request.course.sec'},$fullname).
                   1204: 				    '_ENDPERSON_'.'_END_';
                   1205: 	}
1.274     sakharuk 1206:     }
                   1207: 
1.276     sakharuk 1208:     my $URLback=''; #link to original document
                   1209:     if ($helper->{'VARS'}->{'construction'} ne '1') {
                   1210: 	#prints published resource
                   1211: 	$URLback=$helper->{'VARS'}->{'postdata'};
                   1212:     } else {
                   1213: 	#prints resource from the construction space
                   1214: 	$URLback='/'.$helper->{'VARS'}->{'filename'};
1.279     albertel 1215: 	if ($URLback=~/([^?]+)/) {
                   1216: 	    $URLback=$1;
                   1217: 	    $URLback=~s|^/~|/priv/|;
                   1218: 	}
1.276     sakharuk 1219:     }
1.256     sakharuk 1220: 
1.257     sakharuk 1221:     &Apache::lonnet::appenv('cgi.'.$identifier.'.file'   => $filename,
                   1222:                             'cgi.'.$identifier.'.layout'  => $laystyle,
                   1223:                             'cgi.'.$identifier.'.numcol'  => $numberofcolumns,
                   1224:                             'cgi.'.$identifier.'.selection' => $selectionmade,
                   1225: 			    'cgi.'.$identifier.'tableofcontents' => $helper->{'VARS'}->{'TABLE_CONTENTS'},
                   1226: 			    'cgi.'.$identifier.'tableofindex' => $helper->{'VARS'}->{'TABLE_INDEX'},
1.272     sakharuk 1227: 			    'cgi.'.$identifier.'role' => $ENV{'request.role.adv'},
1.274     sakharuk 1228:                             'cgi.'.$identifier.'numberoffiles' => $#print_array,
1.276     sakharuk 1229:                             'cgi.'.$identifier.'studentnames' => $student_names,
                   1230:                             'cgi.'.$identifier.'backref' => $URLback,);
1.256     sakharuk 1231:  
1.140     sakharuk 1232: $r->print(<<FINALEND);
1.288     albertel 1233: <meta http-equiv="Refresh" content="0; url=/cgi-bin/printout.pl?$identifier" />
1.140     sakharuk 1234: </body>
                   1235: </html>
                   1236: FINALEND
                   1237: }
                   1238: 
1.288     albertel 1239: sub num_to_letters {
                   1240:     my ($num) = @_;
                   1241:     my @nums= split('',$num);
                   1242:     my @num_to_let=('A'..'Z');
                   1243:     my $word;
                   1244:     foreach my $digit (@nums) { $word.=$num_to_let[$digit]; }
                   1245:     return $word;
                   1246: }
                   1247: 
                   1248: sub get_CODE {
                   1249:     my ($all_codes,$num,$seed,$size)=@_;
                   1250:     my $max='1'.'0'x$size;
                   1251:     my $newcode;
                   1252:     while(1) {
1.293     albertel 1253: 	$newcode=sprintf("%06d",int(rand($max)));
1.288     albertel 1254: 	if (!exists($$all_codes{$newcode})) {
                   1255: 	    $$all_codes{$newcode}=1;
                   1256: 	    return &num_to_letters($newcode);
                   1257: 	}
                   1258:     }
                   1259: }
1.140     sakharuk 1260: 
1.284     albertel 1261: sub print_resources {
                   1262:     my ($r,$helper,$person,$type,$moreenv,$master_seq,$remove_latex_header)=@_;
                   1263:     my $current_output = ''; 
                   1264:     my ($username,$userdomain,$usersection) = split /:/,$person;
                   1265:     my $fullname = &get_name($username,$userdomain);
1.288     albertel 1266:     if ($person =~ 'anon') {
                   1267: 	$fullname = "CODE - ".$moreenv->{'CODE'};
                   1268:     }
1.284     albertel 1269:     #goes through all resources, checks if they are available for 
                   1270:     #current student, and produces output   
                   1271:     &Apache::lonnet::delenv('form.counter');
                   1272:     &Apache::lonxml::init_counter();
                   1273:     foreach my $curresline (@{$master_seq})  {
                   1274: 	if ( !($type eq 'problems' && 
                   1275: 	       ($curresline!~ m/\.(problem|exam|quiz|assess|survey|form|library)$/)) ) {
                   1276: 	    my ($map,$id,$res_url) = &Apache::lonnet::decode_symb($curresline);
                   1277: 	    if (&Apache::lonnet::allowed('bre',$res_url)) {
                   1278: 		my $rendered = &Apache::loncommon::get_student_view($curresline,$username,$userdomain,$ENV{'request.course.id'},'tex',$moreenv);
                   1279: 		my $lonidsdir=$r->dir_config('lonIDsDir');
                   1280: 		my $envfile=$ENV{'user.environment'};
                   1281: 		$envfile=~/\/([^\/]+)\.id$/;
                   1282: 		$envfile=$1;
                   1283: 		&Apache::lonnet::transfer_profile_to_env($lonidsdir,$envfile);
                   1284: 		my $current_counter=$ENV{'form.counter'};
                   1285: 		if(($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') ||
                   1286: 		   ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'only')) {
                   1287: 		    my %form;
                   1288: 		    $form{'answer_output_mode'}='tex';
                   1289: 		    $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
                   1290: 		    my $ansrendered = &Apache::loncommon::get_student_answers($curresline,$username,$userdomain,$ENV{'request.course.id'},%form);
                   1291: 		    &Apache::lonnet::appenv(('form.counter' => $current_counter));
                   1292: 		    if ($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
                   1293: 			$rendered=~s/(\\keephidden{ENDOFPROBLEM})/$ansrendered$1/;
                   1294: 		    } else {
                   1295: 			$rendered=&print_latex_header($helper->{'VARS'}->{'LATEX_TYPE'});
                   1296: 			$rendered.='\vskip 0 mm \noindent\textbf{'.&Apache::lonnet::gettitle($curresline).'}\vskip 0 mm ';
                   1297: 			$rendered.=&path_to_problem ($curresline,$LaTeXwidth);
                   1298: 			$rendered.='\vskip 1 mm '.$ansrendered;
                   1299: 		    }
                   1300: 		}
                   1301: 		if ($remove_latex_header eq 'YES') {
                   1302: 		    $rendered = &latex_header_footer_remove($rendered);
                   1303: 		} else {
                   1304: 		    $rendered =~ s/\\end{document}//;
                   1305: 		}
                   1306: 		$current_output .= $rendered;
                   1307: 	    }
                   1308: 	    $remove_latex_header = 'YES';
                   1309: 	}
                   1310:     }
                   1311:     my $courseidinfo = &get_course();
                   1312:     if (defined($courseidinfo)) { $courseidinfo=' - '.$courseidinfo }
                   1313:     if ($usersection ne '') {$courseidinfo.=' - Sec. '.$usersection}
                   1314:     my $currentassignment=&Apache::lonxml::latex_special_symbols($helper->{VARS}->{'assignment'},'header');
                   1315:     if ($current_output=~/\\documentclass/) {
                   1316: 	$current_output =~ s/\\begin{document}/\\setlength{\\topmargin}{1cm} \\begin{document}\\noindent\\lhead{\\textit{\\textbf{$fullname}}$courseidinfo \\hfill \\thepage \\\\ \\textit{$currentassignment}}\\vskip 3 mm /;
                   1317:     } else {
                   1318: 	my $blankpages = '';
                   1319: 	for (my $j=0;$j<$helper->{'VARS'}->{'EMPTY_PAGES'};$j++) {$blankpages.='\clearpage\strut\clearpage';}
                   1320: 	$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 '.$blankpages.'\setcounter{page}{1}\noindent\parbox{\minipagewidth}{\noindent\\lhead{\\textit{\\textbf{'.$fullname.'}}'.$courseidinfo.' \\hfill \\thepage \\\\ \\textit{'.$currentassignment.'}}} \vskip -5 mm '.$current_output;
                   1321:     }
                   1322:     return ($current_output,$fullname);
                   1323: 
                   1324: }
1.140     sakharuk 1325: 
1.3       sakharuk 1326: sub handler {
                   1327: 
                   1328:     my $r = shift;
1.131     bowersj2 1329:     my $helper;
1.114     bowersj2 1330: 
1.150     sakharuk 1331: #    my $loaderror=&Apache::lonnet::overloaderror($r);
                   1332: #    if ($loaderror) { return $loaderror; }
                   1333: #    $loaderror=
                   1334: #       &Apache::lonnet::overloaderror($r,
                   1335: #         $ENV{'course.'.$ENV{'request.course.id'}.'.home'});
                   1336: #    if ($loaderror) { return $loaderror; }
1.67      www      1337: 
1.177     sakharuk 1338:     my $result = printHelper($r);
                   1339:     if (!ref($result)) {
                   1340: 	return $result;
1.60      sakharuk 1341:     }
1.177     sakharuk 1342:     $helper = $result;
                   1343:    
                   1344: #	my $key; 
                   1345: #	foreach $key (keys %{$helper->{'VARS'}}) {
                   1346: #	    $r->print(' '.$key.'->'.$helper->{'VARS'}->{$key}.'<-<br />');
                   1347: #	}
1.264     sakharuk 1348: #	foreach $key (keys %ENV) {
                   1349: #	    $r->print(' '.$key.'->'.$ENV{$key}.'<-<br />');
                   1350: #	}
1.177     sakharuk 1351: #	return OK;
1.184     sakharuk 1352: 
                   1353:     my %parmhash=&Apache::lonnet::coursedescription($ENV{'request.course.id'});
                   1354:     
1.207     sakharuk 1355: #	my $key; 
1.200     sakharuk 1356: #	foreach $key (keys %parmhash) {
                   1357: #	    $r->print(' '.$key.'->'.$parmhash{$key}.'<-<br />');
                   1358: #	}
                   1359: #	return OK;
1.184     sakharuk 1360: 
                   1361:     &output_data($r,$helper,\%parmhash);
1.2       sakharuk 1362:     return OK;
1.60      sakharuk 1363: } 
1.2       sakharuk 1364: 
1.131     bowersj2 1365: use Apache::lonhelper;
1.130     sakharuk 1366: 
1.223     bowersj2 1367: sub addMessage {
                   1368:     my $text = shift;
                   1369:     my $paramHash = Apache::lonhelper::getParamHash();
                   1370:     $paramHash->{MESSAGE_TEXT} = $text;
                   1371:     Apache::lonhelper::message->new();
                   1372: }
                   1373: 
1.238     bowersj2 1374: use Data::Dumper;
                   1375: 
1.131     bowersj2 1376: sub printHelper {
1.115     bowersj2 1377:     my $r = shift;
                   1378: 
                   1379:     if ($ENV{'request.course.id'}) {
1.131     bowersj2 1380: 	my $fn=$ENV{'request.course.fn'};
                   1381: 	tie(%hash,'GDBM_File',"$fn.db",&GDBM_READER(),0640);
1.115     bowersj2 1382:     }
                   1383: 
                   1384:     if ($r->header_only) {
1.131     bowersj2 1385:         if ($ENV{'browser.mathml'}) {
1.241     www      1386:             &Apache::loncommon::content_type($r,'text/xml');
1.131     bowersj2 1387:         } else {
1.241     www      1388:             &Apache::loncommon::content_type($r,'text/html');
1.131     bowersj2 1389:         }
                   1390:         $r->send_http_header;
                   1391:         return OK;
1.115     bowersj2 1392:     }
                   1393: 
1.131     bowersj2 1394:     # Send header, nocache
1.115     bowersj2 1395:     if ($ENV{'browser.mathml'}) {
1.241     www      1396:         &Apache::loncommon::content_type($r,'text/xml');
1.115     bowersj2 1397:     } else {
1.241     www      1398:         &Apache::loncommon::content_type($r,'text/html');
1.115     bowersj2 1399:     }
                   1400:     &Apache::loncommon::no_cache($r);
                   1401:     $r->send_http_header;
                   1402:     $r->rflush();
                   1403: 
1.131     bowersj2 1404:     # Unfortunately, this helper is so complicated we have to
                   1405:     # write it by hand
                   1406: 
                   1407:     Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING});
                   1408:     
1.176     bowersj2 1409:     my $helper = Apache::lonhelper::helper->new("Printing Helper");
1.146     bowersj2 1410:     $helper->declareVar('symb');
1.156     bowersj2 1411:     $helper->declareVar('postdata');    
1.290     sakharuk 1412:     $helper->declareVar('curseed'); 
                   1413:     $helper->declareVar('probstatus');   
1.156     bowersj2 1414:     $helper->declareVar('filename');
                   1415:     $helper->declareVar('construction');
1.178     sakharuk 1416:     $helper->declareVar('assignment');
1.262     sakharuk 1417:     $helper->declareVar('style_file');
1.131     bowersj2 1418:     
                   1419:     # This will persistently load in the data we want from the
                   1420:     # very first screen.
1.156     bowersj2 1421:     # Detect whether we're coming from construction space
1.208     www      1422:     if ($ENV{'form.postdata'}=~/^(?:http:\/\/[^\/]+\/|\/|)\~([^\/]+)\/(.*)$/) {
1.235     bowersj2 1423:         $helper->{VARS}->{'filename'} = "~$1/$2";
1.156     bowersj2 1424:         $helper->{VARS}->{'construction'} = 1;
                   1425:     } else {
                   1426:         if ($ENV{'form.postdata'}) {
                   1427:             $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($ENV{'form.postdata'});
                   1428:         }
                   1429:         if ($ENV{'form.symb'}) {
                   1430:             $helper->{VARS}->{'symb'} = $ENV{'form.symb'};
                   1431:         }
                   1432:         if ($ENV{'form.url'}) {
                   1433:             $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
                   1434:         }
1.157     bowersj2 1435:     }
1.156     bowersj2 1436: 
1.146     bowersj2 1437:     if ($ENV{'form.symb'}) {
                   1438:         $helper->{VARS}->{'symb'} = $ENV{'form.symb'};
                   1439:     }
                   1440:     if ($ENV{'form.url'}) {
1.140     sakharuk 1441:         $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
1.153     sakharuk 1442: 
1.140     sakharuk 1443:     }
1.146     bowersj2 1444:     
1.115     bowersj2 1445:     my ($resourceTitle,$sequenceTitle,$mapTitle) = &details_for_menu;
1.178     sakharuk 1446:     if ($sequenceTitle ne '') {$helper->{VARS}->{'assignment'}=$sequenceTitle;}
1.140     sakharuk 1447: 
1.156     bowersj2 1448:     
1.146     bowersj2 1449:     # Extract map
                   1450:     my $symb = $helper->{VARS}->{'symb'};
1.156     bowersj2 1451:     my ($map, $id, $url);
                   1452:     my $subdir;
                   1453: 
                   1454:     # Get the resource name from construction space
                   1455:     if ($helper->{VARS}->{'construction'}) {
                   1456:         $resourceTitle = substr($helper->{VARS}->{'filename'}, 
                   1457:                                 rindex($helper->{VARS}->{'filename'}, '/')+1);
                   1458:         $subdir = substr($helper->{VARS}->{'filename'},
                   1459:                          0, rindex($helper->{VARS}->{'filename'}, '/') + 1);
                   1460:     } else {
1.233     www      1461:         ($map, $id, $url) = &Apache::lonnet::decode_symb($symb);
1.156     bowersj2 1462:         $helper->{VARS}->{'postdata'} = Apache::lonnet::clutter($url);
1.146     bowersj2 1463: 
1.156     bowersj2 1464:         if (!$resourceTitle) { # if the resource doesn't have a title, use the filename
1.238     bowersj2 1465:             my $postdata = $helper->{VARS}->{'postdata'};
                   1466:             $resourceTitle = substr($postdata, rindex($postdata, '/') + 1);
1.156     bowersj2 1467:         }
                   1468:         $subdir = &Apache::lonnet::filelocation("", $url);
1.128     bowersj2 1469:     }
1.230     albertel 1470:     if (!$helper->{VARS}->{'curseed'} && $ENV{'form.curseed'}) {
                   1471: 	$helper->{VARS}->{'curseed'}=$ENV{'form.curseed'};
                   1472:     }
1.290     sakharuk 1473:     if (!$helper->{VARS}->{'probstatus'} && $ENV{'form.problemtype'}) {
                   1474: 	$helper->{VARS}->{'probstatus'}=$ENV{'form.problemtype'};
                   1475:     }
1.115     bowersj2 1476: 
1.192     bowersj2 1477:     my $userCanSeeHidden = Apache::lonnavmaps::advancedUser();
1.235     bowersj2 1478:     my $userPriviledged = ($ENV{'request.role'}=~m/^cc\./ or
                   1479: 			   $ENV{'request.role'}=~m/^in\./ or
                   1480: 			   $ENV{'request.role'}=~m/^ta\./);
1.192     bowersj2 1481: 
1.131     bowersj2 1482:     Apache::lonhelper::registerHelperTags();
1.119     bowersj2 1483: 
1.131     bowersj2 1484:     # "Delete everything after the last slash."
1.119     bowersj2 1485:     $subdir =~ s|/[^/]+$||;
1.162     sakharuk 1486:     if (not $helper->{VARS}->{'construction'}) {
                   1487: 	$subdir='/home/httpd/html/res/'.$subdir;
1.153     sakharuk 1488:     }
1.189     bowersj2 1489:     # "Remove all duplicate slashes."
                   1490:     $subdir =~ s|/+|/|g;
1.119     bowersj2 1491: 
1.131     bowersj2 1492:     # What can be printed is a very dynamic decision based on
                   1493:     # lots of factors. So we need to dynamically build this list.
                   1494:     # To prevent security leaks, states are only added to the wizard
                   1495:     # if they can be reached, which ensures manipulating the form input
                   1496:     # won't allow anyone to reach states they shouldn't have permission
                   1497:     # to reach.
                   1498: 
                   1499:     # printChoices is tracking the kind of printing the user can
                   1500:     # do, and will be used in a choices construction later.
                   1501:     # In the meantime we will be adding states and elements to
                   1502:     # the helper by hand.
                   1503:     my $printChoices = [];
                   1504:     my $paramHash;
1.130     sakharuk 1505: 
1.240     albertel 1506:     if ($resourceTitle) {
1.291     sakharuk 1507:         push @{$printChoices}, ["<b><i>$resourceTitle</i></b> (".&mt('what you just saw on the screen').")", 'current_document', 'PAGESIZE'];
1.156     bowersj2 1508:     }
                   1509: 
1.238     bowersj2 1510:     # Useful filter strings
1.287     albertel 1511:     my $isProblem = '($res->is_problem()||$res->contains_problem) ';
1.238     bowersj2 1512:     $isProblem .= ' && !$res->randomout()' if !$userCanSeeHidden;
1.287     albertel 1513:     my $isProblemOrMap = '$res->is_problem() || $res->contains_problem() || $res->is_sequence()';
                   1514:     my $isNotMap = '!$res->is_sequence()';
1.238     bowersj2 1515:     $isNotMap .= ' && !$res->randomout()' if !$userCanSeeHidden;
                   1516:     my $isMap = '$res->is_map()';
                   1517:     my $symbFilter = '$res->symb()';
                   1518:     my $urlValue = '$res->src()';
                   1519: 
                   1520:     $helper->declareVar('SEQUENCE');
                   1521: 
                   1522:     # Useful for debugging: Dump the help vars
                   1523:     #$r->print(Dumper($helper->{VARS}));
                   1524:     #$r->print($map);
                   1525: 
1.131     bowersj2 1526:     # If we're in a sequence...
1.235     bowersj2 1527:     if (($helper->{'VARS'}->{'construction'} ne '1') &&
1.243     bowersj2 1528: 	$helper->{VARS}->{'postdata'} &&
                   1529: 	$helper->{VARS}->{'assignment'}) {
1.131     bowersj2 1530:         # Allow problems from sequence
1.291     sakharuk 1531:         push @{$printChoices}, ["<b>".&mt('Problems')."</b> ".&mt('in')." <b><i>$sequenceTitle</i></b>", 'map_problems', 'CHOOSE_PROBLEMS'];
1.131     bowersj2 1532:         # Allow all resources from sequence
1.291     sakharuk 1533:         push @{$printChoices}, ["<b>".&mt('Resources')."</b> ".&mt('in')." <b><i>$sequenceTitle</i></b>", 'map_problems_pages', 'CHOOSE_PROBLEMS_HTML'];
1.130     sakharuk 1534: 
1.131     bowersj2 1535:         my $helperFragment = <<HELPERFRAGMENT;
1.155     sakharuk 1536:   <state name="CHOOSE_PROBLEMS" title="Select Problem(s) to print">
                   1537:     <message>(mark them then click "next" button) <br /></message>
1.287     albertel 1538:     <resource variable="RESOURCES" multichoice="1" toponly='1' addstatus="1"
                   1539:               closeallpages="1">
1.144     bowersj2 1540:       <nextstate>PAGESIZE</nextstate>
1.192     bowersj2 1541:       <filterfunc>return $isProblem;</filterfunc>
1.131     bowersj2 1542:       <mapurl>$map</mapurl>
1.238     bowersj2 1543:       <valuefunc>return $symbFilter;</valuefunc>
1.131     bowersj2 1544:       </resource>
                   1545:     </state>
                   1546: 
1.155     sakharuk 1547:   <state name="CHOOSE_PROBLEMS_HTML" title="Select Resource(s) to print">
                   1548:     <message>(mark them then click "next" button) <br /></message>
1.287     albertel 1549:     <resource variable="RESOURCES" multichoice="1" toponly='1' addstatus="1"
                   1550:               closeallpages="1">
1.144     bowersj2 1551:       <nextstate>PAGESIZE</nextstate>
1.145     bowersj2 1552:       <filterfunc>return $isNotMap;</filterfunc>
1.131     bowersj2 1553:       <mapurl>$map</mapurl>
1.238     bowersj2 1554:       <valuefunc>return $symbFilter;</valuefunc>
1.131     bowersj2 1555:       </resource>
                   1556:     </state>
                   1557: HELPERFRAGMENT
1.121     bowersj2 1558: 
1.131     bowersj2 1559:         &Apache::lonxml::xmlparse($r, 'helper', $helperFragment); 
1.121     bowersj2 1560:     }
                   1561: 
                   1562:     # If the user is priviledged, allow them to print all 
                   1563:     # problems in the course, optionally for selected students
1.235     bowersj2 1564:     if ($userPriviledged && ($helper->{VARS}->{'postdata'}=~/\/res\//)) { 
1.254     sakharuk 1565:         push @{$printChoices}, ['<b>Problems</b> from <b>entire course</b>', 'all_problems', 'ALL_PROBLEMS'];
1.284     albertel 1566:          &Apache::lonxml::xmlparse($r, 'helper', <<ALL_PROBLEMS);
1.155     sakharuk 1567:   <state name="ALL_PROBLEMS" title="Select Problem(s) to print">
                   1568:     <message>(mark them then click "next" button) <br /></message>
1.287     albertel 1569:     <resource variable="RESOURCES" toponly='0' multichoice="1"
                   1570: 	suppressEmptySequences='0' addstatus="1" closeallpages="1">
1.144     bowersj2 1571:       <nextstate>PAGESIZE</nextstate>
1.192     bowersj2 1572:       <filterfunc>return $isProblemOrMap;</filterfunc>
1.287     albertel 1573:       <choicefunc>return $isNotMap;</choicefunc>
1.238     bowersj2 1574:       <valuefunc>return $symbFilter;</valuefunc>
1.284     albertel 1575:     </resource>
                   1576:   </state>
                   1577: ALL_PROBLEMS
1.132     bowersj2 1578: 
1.284     albertel 1579: 	if ($helper->{VARS}->{'assignment'}) {
1.291     sakharuk 1580: 	    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'];
                   1581: 	    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'];
1.284     albertel 1582: 	}
                   1583: 	my $resource_selector=<<RESOURCE_SELECTOR;
                   1584:    <message><br /><big><i><b>Select resources for the assignment</b></i></big><br /></message>
1.287     albertel 1585:     <resource variable="RESOURCES" multichoice="1" addstatus="1" 
                   1586:               closeallpages="1">
1.254     sakharuk 1587:       <filterfunc>return $isProblem;</filterfunc>
1.148     bowersj2 1588:       <mapurl>$map</mapurl>
1.254     sakharuk 1589:       <valuefunc>return $symbFilter;</valuefunc>
1.147     bowersj2 1590:       </resource>
1.155     sakharuk 1591:     <message><br /><big><i><b>How should the results be printed?</b></i></big><br /></message>
1.149     bowersj2 1592:     <choices variable="EMPTY_PAGES">
1.204     sakharuk 1593:       <choice computer='0'>Start each student\'s assignment on a new page/column (add a pagefeed after each assignment)</choice>
                   1594:       <choice computer='1'>Add one empty page/column after each student\'s assignment</choice>
                   1595:       <choice computer='2'>Add two empty pages/column after each student\'s assignment</choice>
                   1596:       <choice computer='3'>Add three empty pages/column after each student\'s assignment</choice>
1.284     albertel 1597:     </choices>
                   1598:     <message><hr width='33%' /><b>Number of assignments printed at the same time: </b></message>
                   1599:     <string variable="NUMBER_TO_PRINT" maxlength="5" size="5"><defaultvalue>"all"</defaultvalue></string>
                   1600: RESOURCE_SELECTOR
                   1601: 
                   1602:         &Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_STUDENTS);
                   1603:   <state name="CHOOSE_STUDENTS" title="Select Students and Resources">
                   1604:       <student multichoice='1' variable="STUDENTS" nextstate="PAGESIZE" />
                   1605:     $resource_selector
                   1606:   </state>
1.131     bowersj2 1607: CHOOSE_STUDENTS
1.292     albertel 1608: 
                   1609: 	my $cdom = $ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
                   1610: 	my $cnum = $ENV{'course.'.$ENV{'request.course.id'}.'.num'};
                   1611:         my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
                   1612: 	my $namechoice='<choice></choice>';
                   1613: 	foreach my $name (@names) {
1.294     albertel 1614: 	    if ($name =~ /^error: 2 /) { next; }
1.292     albertel 1615: 	    $namechoice.='<choice computer="'.$name.'">'.$name.'</choice>';
                   1616: 	}
1.284     albertel 1617:         &Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_ANON1);
                   1618:   <state name="CHOOSE_ANON1" title="Select Students and Resources">
1.288     albertel 1619:     <nextstate>PAGESIZE</nextstate>
1.287     albertel 1620:     <message><hr width='33%' /><b>Number of anonymous assignments to print?</b></message>
1.284     albertel 1621:     <string variable="NUMBER_TO_PRINT_TOTAL" maxlength="5" size="5"></string>
1.292     albertel 1622:     <message><br /><b>Names to store the CODEs under for later:</b></message>
1.288     albertel 1623:     <string variable="ANON_CODE_STORAGE_NAME" maxlength="50" size="20" />
1.292     albertel 1624:     <message><hr width='33%' /></message>
                   1625:     <message><b>Reprint a set of saved CODEs:</b></message>
                   1626:     <dropdown variable="REUSE_OLD_CODES">
                   1627:         $namechoice
                   1628:     </dropdown>
1.284     albertel 1629:     <message><hr width='33%' /></message>
                   1630:     $resource_selector
                   1631:   </state>
                   1632: CHOOSE_ANON1
1.254     sakharuk 1633: 
1.272     sakharuk 1634: 
1.254     sakharuk 1635: 	if ($helper->{VARS}->{'assignment'}) {
1.291     sakharuk 1636: 	    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'];
                   1637: 	    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'];
1.254     sakharuk 1638: 	}
1.284     albertel 1639: 	    
                   1640: 
                   1641: 	$resource_selector=<<RESOURCE_SELECTOR;
1.254     sakharuk 1642:     <message><br /><big><i><b>Select resources for the assignment</b></i></big><br /></message>
1.287     albertel 1643:     <resource variable="RESOURCES" multichoice="1" addstatus="1" 
                   1644:               closeallpages="1">
1.254     sakharuk 1645:       <filterfunc>return $isNotMap;</filterfunc>
                   1646:       <mapurl>$map</mapurl>
                   1647:       <valuefunc>return $symbFilter;</valuefunc>
                   1648:       </resource>
                   1649:     <message><br /><big><i><b>How should the results be printed?</b></i></big><br /></message>
                   1650:     <choices variable="EMPTY_PAGES">
                   1651:       <choice computer='0'>Start each student\'s assignment on a new page/column (add a pagefeed after each assignment)</choice>
                   1652:       <choice computer='1'>Add one empty page/column after each student\'s assignment</choice>
                   1653:       <choice computer='2'>Add two empty pages/column after each student\'s assignment</choice>
                   1654:       <choice computer='3'>Add three empty pages/column after each student\'s assignment</choice>
1.284     albertel 1655:     </choices>
                   1656:     <message><hr width='33%' /><b>Number of assignments printed at the same time: </b></message>
                   1657:     <string variable="NUMBER_TO_PRINT" maxlength="5" size="5"><defaultvalue>"all"</defaultvalue></string>
                   1658: RESOURCE_SELECTOR
                   1659: 
                   1660: 	&Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_STUDENTS1);
                   1661:   <state name="CHOOSE_STUDENTS1" title="Select Students and Resources">
                   1662:     <student multichoice='1' variable="STUDENTS" nextstate="PAGESIZE" />
                   1663:     $resource_selector
1.254     sakharuk 1664:     </state>
                   1665: CHOOSE_STUDENTS1
                   1666: 
1.284     albertel 1667: 	&Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_ANON2);
                   1668:   <state name="CHOOSE_ANON2" title="Select Students and Resources">
1.294     albertel 1669:     <nextstate>PAGESIZE</nextstate>
                   1670:     <message><hr width='33%' /><b>Number of anonymous assignments to print?</b></message>
1.284     albertel 1671:     <string variable="NUMBER_TO_PRINT_TOTAL" maxlength="5" size="5"></string>
1.294     albertel 1672:     <message><br /><b>Names to store the CODEs under for later:</b></message>
                   1673:     <string variable="ANON_CODE_STORAGE_NAME" maxlength="50" size="20" />
                   1674:     <message><hr width='33%' /></message>
                   1675:     <message><b>Reprint a set of saved CODEs:</b></message>
                   1676:     <dropdown variable="REUSE_OLD_CODES">
                   1677:         $namechoice
                   1678:     </dropdown>
1.284     albertel 1679:     <message><hr width='33%' /></message>
                   1680:     $resource_selector
                   1681:   </state>
                   1682: CHOOSE_ANON2
1.121     bowersj2 1683:     }
                   1684: 
                   1685:     # FIXME: That RE should come from a library somewhere.
1.238     bowersj2 1686:     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.291     sakharuk 1687:         push @{$printChoices}, ["<b>".&mt('Problems')."</b> ".&mt('from current subdirectory')." <b><i>$subdir</i></b>", 'problems_from_directory', 'CHOOSE_FROM_SUBDIR'];
1.238     bowersj2 1688: 
1.131     bowersj2 1689:         my $f = '$filename';
1.139     bowersj2 1690:         my $xmlfrag = <<CHOOSE_FROM_SUBDIR;
1.155     sakharuk 1691:   <state name="CHOOSE_FROM_SUBDIR" title="Select File(s) from <b><small>$subdir</small></b> to print">
                   1692:     <message>(mark them then click "next" button) <br /></message>
1.138     bowersj2 1693:     <files variable="FILES" multichoice='1'>
1.144     bowersj2 1694:       <nextstate>PAGESIZE</nextstate>
1.138     bowersj2 1695:       <filechoice>return '$subdir';</filechoice>
1.139     bowersj2 1696: CHOOSE_FROM_SUBDIR
                   1697:         
1.238     bowersj2 1698:         # this is broken up because I really want interpolation above,
                   1699:         # and I really DON'T want it below
1.139     bowersj2 1700:         $xmlfrag .= <<'CHOOSE_FROM_SUBDIR';
1.225     bowersj2 1701:       <filefilter>return Apache::lonhelper::files::not_old_version($filename) &&
                   1702: 	  $filename =~ m/\.(problem|exam|quiz|assess|survey|form|library)$/;
1.131     bowersj2 1703:       </filefilter>
1.138     bowersj2 1704:       </files>
1.131     bowersj2 1705:     </state>
                   1706: CHOOSE_FROM_SUBDIR
1.139     bowersj2 1707:         &Apache::lonxml::xmlparse($r, 'helper', $xmlfrag);
1.131     bowersj2 1708:     }
1.238     bowersj2 1709: 
                   1710:     # Allow the user to select any sequence in the course, feed it to
                   1711:     # another resource selector for that sequence
1.239     bowersj2 1712:     if (!$helper->{VARS}->{'construction'}) {
1.254     sakharuk 1713: 	push @$printChoices, ["<b>Resources</b> from <b>selected sequence</b> in course",
1.249     sakharuk 1714: 			      'select_sequences', 'CHOOSE_SEQUENCE'];
1.244     bowersj2 1715: 	my $escapedSequenceName = $helper->{VARS}->{'SEQUENCE'};
                   1716: 	#Escape apostrophes and backslashes for Perl
                   1717: 	$escapedSequenceName =~ s/\\/\\\\/g;
                   1718: 	$escapedSequenceName =~ s/'/\\'/g;
1.239     bowersj2 1719: 	&Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_FROM_ANY_SEQUENCE);
1.238     bowersj2 1720:   <state name="CHOOSE_SEQUENCE" title="Select Sequence To Print From">
                   1721:     <message>Select the sequence to print resources from:</message>
                   1722:     <resource variable="SEQUENCE">
                   1723:       <nextstate>CHOOSE_FROM_ANY_SEQUENCE</nextstate>
                   1724:       <filterfunc>return \$res->is_sequence;</filterfunc>
                   1725:       <valuefunc>return $urlValue;</valuefunc>
                   1726:       </resource>
                   1727:     </state>
                   1728:   <state name="CHOOSE_FROM_ANY_SEQUENCE" title="Select Resources To Print">
                   1729:     <message>(mark desired resources then click "next" button) <br /></message>
1.287     albertel 1730:     <resource variable="RESOURCES" multichoice="1" toponly='1' addstatus="1"
                   1731:               closeallpages="1">
1.238     bowersj2 1732:       <nextstate>PAGESIZE</nextstate>
                   1733:       <filterfunc>return $isProblem</filterfunc>
1.244     bowersj2 1734:       <mapurl evaluate='1'>return '$escapedSequenceName';</mapurl>
1.238     bowersj2 1735:       <valuefunc>return $symbFilter;</valuefunc>
                   1736:       </resource>
                   1737:     </state>
                   1738: CHOOSE_FROM_ANY_SEQUENCE
1.239     bowersj2 1739: }
1.131     bowersj2 1740: 
                   1741:     # Generate the first state, to select which resources get printed.
1.223     bowersj2 1742:     Apache::lonhelper::state->new("START", "Select Printing Options:");
1.131     bowersj2 1743:     $paramHash = Apache::lonhelper::getParamHash();
1.155     sakharuk 1744:     $paramHash->{MESSAGE_TEXT} = "";
1.131     bowersj2 1745:     Apache::lonhelper::message->new();
                   1746:     $paramHash = Apache::lonhelper::getParamHash();
                   1747:     $paramHash->{'variable'} = 'PRINT_TYPE';
1.137     bowersj2 1748:     $helper->declareVar('PRINT_TYPE');
1.131     bowersj2 1749:     $paramHash->{CHOICES} = $printChoices;
                   1750:     Apache::lonhelper::choices->new();
1.161     bowersj2 1751: 
1.223     bowersj2 1752:     my $startedTable = 0; # have we started an HTML table yet? (need
                   1753:                           # to close it later)
                   1754: 
1.170     sakharuk 1755:     if (($ENV{'request.role.adv'} and &Apache::lonnet::allowed('vgr',$ENV{'request.course.id'})) or 
                   1756: 	($helper->{VARS}->{'construction'} eq '1')) {
1.242     sakharuk 1757: 	addMessage("<hr width='33%' /><table><tr><td align='right'>Print: </td><td>");
1.161     bowersj2 1758:         $paramHash = Apache::lonhelper::getParamHash();
1.162     sakharuk 1759: 	$paramHash->{'variable'} = 'ANSWER_TYPE';   
                   1760: 	$helper->declareVar('ANSWER_TYPE');         
1.161     bowersj2 1761:         $paramHash->{CHOICES} = [
1.242     sakharuk 1762:                                    ['Without Answers', 'yes'],
                   1763:                                    ['With Answers', 'no'],
1.289     sakharuk 1764:                                    ['Only Answers', 'only'],
                   1765:                                    ['As Exam Problem', 'exam']
                   1766:                                 ];
1.210     sakharuk 1767:         Apache::lonhelper::dropdown->new();
1.223     bowersj2 1768: 	addMessage("</td></tr>");
                   1769: 	$startedTable = 1;
1.161     bowersj2 1770:     }
1.209     sakharuk 1771: 
1.203     sakharuk 1772:     if ($ENV{'request.role.adv'}) {
1.223     bowersj2 1773: 	if (!$startedTable) {
                   1774: 	    addMessage("<hr width='33%' /><table><tr><td align='right'>LaTeX mode: </td><td>");
                   1775: 	    $startedTable = 1;
                   1776: 	} else {
                   1777: 	    addMessage("<tr><td align='right'>LaTeX mode: </td><td>");
                   1778: 	}
1.203     sakharuk 1779:         $paramHash = Apache::lonhelper::getParamHash();
                   1780: 	$paramHash->{'variable'} = 'LATEX_TYPE';   
                   1781: 	$helper->declareVar('LATEX_TYPE');  
                   1782: 	if ($helper->{VARS}->{'construction'} eq '1') {       
                   1783: 	    $paramHash->{CHOICES} = [
1.223     bowersj2 1784: 				     ['standard LaTeX mode', 'standard'], 
                   1785: 				     ['LaTeX batchmode', 'batchmode'], ];
1.203     sakharuk 1786: 	} else {
                   1787: 	    $paramHash->{CHOICES} = [
1.223     bowersj2 1788: 				     ['LaTeX batchmode', 'batchmode'],
                   1789: 				     ['standard LaTeX mode', 'standard'] ];
1.203     sakharuk 1790: 	}
1.210     sakharuk 1791:         Apache::lonhelper::dropdown->new();
1.218     sakharuk 1792:  
1.223     bowersj2 1793: 	addMessage("</td></tr><tr><td align='right'>Print Table of Contents: </td><td>");
1.209     sakharuk 1794:         $paramHash = Apache::lonhelper::getParamHash();
                   1795: 	$paramHash->{'variable'} = 'TABLE_CONTENTS';   
                   1796: 	$helper->declareVar('TABLE_CONTENTS');         
                   1797:         $paramHash->{CHOICES} = [
1.223     bowersj2 1798:                                    ['No', 'no'],
                   1799:                                    ['Yes', 'yes'] ];
1.210     sakharuk 1800:         Apache::lonhelper::dropdown->new();
1.223     bowersj2 1801: 	addMessage("</td></tr>");
1.214     sakharuk 1802:         
1.220     sakharuk 1803: 	if (not $helper->{VARS}->{'construction'}) {
1.223     bowersj2 1804: 	    addMessage("<tr><td align='right'>Print Index: </td><td>");
1.220     sakharuk 1805: 	    $paramHash = Apache::lonhelper::getParamHash();
                   1806: 	    $paramHash->{'variable'} = 'TABLE_INDEX';   
                   1807: 	    $helper->declareVar('TABLE_INDEX');         
                   1808: 	    $paramHash->{CHOICES} = [
1.223     bowersj2 1809: 				     ['No', 'no'],
                   1810: 				     ['Yes', 'yes'] ];
1.220     sakharuk 1811: 	    Apache::lonhelper::dropdown->new();
1.223     bowersj2 1812: 	    addMessage("</td></tr>");
1.220     sakharuk 1813: 	}
1.219     sakharuk 1814: 
1.230     albertel 1815: 	if ($helper->{'VARS'}->{'construction'}) { 
1.265     sakharuk 1816: 	    my $stylevalue=$ENV{'construct.style'};
                   1817: 	    my $xmlfrag .= <<"RNDSEED";
1.290     sakharuk 1818: 	    <message><tr><td align='right'>Use random seed:  </td><td></message>
1.230     albertel 1819: 	    <string variable="curseed" size="15" maxlength="15">
                   1820: 		<defaultvalue>
                   1821: 	            return $helper->{VARS}->{'curseed'};
                   1822: 	        </defaultvalue>
1.262     sakharuk 1823: 	    </string>
1.264     sakharuk 1824: 	     <message></td></tr><tr><td align="right">Use style file:</td><td></message>
1.265     sakharuk 1825:              <message><input type="text" size="40" name="style_file_value" value="$stylevalue"  />&nbsp; <a href="javascript:openbrowser('helpform','style_file','sty')">Select style file</a> </td><td></message>
1.230     albertel 1826:              <message></td></tr></message>
                   1827: RNDSEED
                   1828:             &Apache::lonxml::xmlparse($r, 'helper', $xmlfrag);
1.264     sakharuk 1829: 	    $helper->{'VARS'}->{'style_file'}=$ENV{'form.style_file_value'};
1.219     sakharuk 1830: 	}
1.223     bowersj2 1831:     }
1.264     sakharuk 1832: 
                   1833: 
                   1834: 
1.218     sakharuk 1835: 
1.223     bowersj2 1836:     if ($startedTable) {
                   1837: 	addMessage("</table>");
1.215     sakharuk 1838:     }
1.161     bowersj2 1839: 
1.131     bowersj2 1840:     Apache::lonprintout::page_format_state->new("FORMAT");
                   1841: 
1.144     bowersj2 1842:     # Generate the PAGESIZE state which will offer the user the margin
                   1843:     # choices if they select one column
                   1844:     Apache::lonhelper::state->new("PAGESIZE", "Set Margins");
                   1845:     Apache::lonprintout::page_size_state->new('pagesize', 'FORMAT', 'FINAL');
                   1846: 
                   1847: 
1.131     bowersj2 1848:     $helper->process();
                   1849: 
                   1850:     # MANUAL BAILOUT CONDITION:
                   1851:     # If we're in the "final" state, bailout and return to handler
                   1852:     if ($helper->{STATE} eq 'FINAL') {
                   1853:         return $helper;
                   1854:     }    
1.130     sakharuk 1855: 
1.131     bowersj2 1856:     $r->print($helper->display());
1.130     sakharuk 1857: 
1.131     bowersj2 1858:     Apache::lonhelper::unregisterHelperTags();
1.115     bowersj2 1859: 
                   1860:     untie %hash;
                   1861: 
                   1862:     return OK;
                   1863: }
                   1864: 
1.1       www      1865: 
                   1866: 1;
1.119     bowersj2 1867: 
                   1868: package Apache::lonprintout::page_format_state;
                   1869: 
                   1870: =pod
                   1871: 
1.131     bowersj2 1872: =head1 Helper element: page_format_state
                   1873: 
                   1874: See lonhelper.pm documentation for discussion of the helper framework.
1.119     bowersj2 1875: 
1.131     bowersj2 1876: Apache::lonprintout::page_format_state is an element that gives the 
                   1877: user an opportunity to select the page layout they wish to print 
                   1878: with: Number of columns, portrait/landscape, and paper size. If you 
                   1879: want to change the paper size choices, change the @paperSize array 
                   1880: contents in this package.
1.119     bowersj2 1881: 
1.131     bowersj2 1882: page_format_state is always directly invoked in lonprintout.pm, so there
                   1883: is no tag interface. You actually pass parameters to the constructor.
1.119     bowersj2 1884: 
                   1885: =over 4
                   1886: 
1.131     bowersj2 1887: =item * B<new>(varName): varName is where the print information will be stored in the format FIXME.
1.119     bowersj2 1888: 
                   1889: =back
                   1890: 
                   1891: =cut
                   1892: 
1.131     bowersj2 1893: use Apache::lonhelper;
1.119     bowersj2 1894: 
                   1895: no strict;
1.131     bowersj2 1896: @ISA = ("Apache::lonhelper::element");
1.119     bowersj2 1897: use strict;
1.266     sakharuk 1898: use Apache::lonlocal;
1.119     bowersj2 1899: 
                   1900: my $maxColumns = 2;
                   1901: my @paperSize = ("Letter [8 1/2x11 in]", "Legal [8 1/2x14 in]", 
                   1902:                  "Ledger/Tabloid [11x17 in]", "Executive [7 1/2x10 in]",
                   1903:                  "A2 [420x594 mm]", "A3 [297x420 mm]", "A4 [210x297 mm]", 
                   1904:                  "A5 [148x210 mm]", "A6 [105x148 mm]" );
                   1905: 
                   1906: # Tentative format: Orientation (L = Landscape, P = portrait) | Colnum |
                   1907: #                   Paper type
                   1908: 
                   1909: sub new { 
1.131     bowersj2 1910:     my $self = Apache::lonhelper::element->new();
1.119     bowersj2 1911: 
1.135     bowersj2 1912:     shift;
                   1913: 
1.131     bowersj2 1914:     $self->{'variable'} = shift;
1.134     bowersj2 1915:     my $helper = Apache::lonhelper::getHelper();
1.135     bowersj2 1916:     $helper->declareVar($self->{'variable'});
1.131     bowersj2 1917:     bless($self);
1.119     bowersj2 1918:     return $self;
                   1919: }
                   1920: 
                   1921: sub render {
                   1922:     my $self = shift;
1.131     bowersj2 1923:     my $helper = Apache::lonhelper::getHelper();
1.119     bowersj2 1924:     my $result = '';
1.131     bowersj2 1925:     my $var = $self->{'variable'};
1.266     sakharuk 1926:     my $PageLayout=&mt('Page layout');
                   1927:     my $NumberOfColumns=&mt('Number of columns');
                   1928:     my $PaperType=&mt('Paper type');
1.119     bowersj2 1929:     $result .= <<STATEHTML;
                   1930: 
1.223     bowersj2 1931: <hr width="33%" />
1.119     bowersj2 1932: <table cellpadding="3">
                   1933:   <tr>
1.266     sakharuk 1934:     <td align="center"><b>$PageLayout</b></td>
                   1935:     <td align="center"><b>$NumberOfColumns</b></td>
                   1936:     <td align="center"><b>$PaperType</b></td>
1.119     bowersj2 1937:   </tr>
                   1938:   <tr>
                   1939:     <td>
1.155     sakharuk 1940:       <input type="radio" name="${var}.layout" value="L" /> Landscape<br />
                   1941:       <input type="radio" name="${var}.layout" value="P" checked='1'  /> Portrait
1.119     bowersj2 1942:     </td>
1.155     sakharuk 1943:     <td align="center">
1.119     bowersj2 1944:       <select name="${var}.cols">
                   1945: STATEHTML
                   1946: 
                   1947:     my $i;
                   1948:     for ($i = 1; $i <= $maxColumns; $i++) {
1.144     bowersj2 1949:         if ($i == 2) {
1.119     bowersj2 1950:             $result .= "<option value='$i' selected>$i</option>\n";
                   1951:         } else {
                   1952:             $result .= "<option value='$i'>$i</option>\n";
                   1953:         }
                   1954:     }
                   1955: 
                   1956:     $result .= "</select></td><td>\n";
                   1957:     $result .= "<select name='${var}.paper'>\n";
                   1958: 
                   1959:     $i = 0;
                   1960:     foreach (@paperSize) {
1.144     bowersj2 1961:         if ($i == 0) {
1.131     bowersj2 1962:             $result .= "<option selected value='$i'>" . $paperSize[$i] . "</option>\n";
1.119     bowersj2 1963:         } else {
1.131     bowersj2 1964:             $result .= "<option value='$i'>" . $paperSize[$i] . "</option>\n";
1.119     bowersj2 1965:         }
                   1966:         $i++;
                   1967:     }
                   1968: 
                   1969:     $result .= "</select></td></tr></table>";
                   1970:     return $result;
1.135     bowersj2 1971: }
                   1972: 
                   1973: sub postprocess {
                   1974:     my $self = shift;
                   1975: 
                   1976:     my $var = $self->{'variable'};
1.136     bowersj2 1977:     my $helper = Apache::lonhelper->getHelper();
1.135     bowersj2 1978:     $helper->{VARS}->{$var} = 
1.136     bowersj2 1979:         $ENV{"form.$var.layout"} . '|' . $ENV{"form.$var.cols"} . '|' .
                   1980:         $ENV{"form.$var.paper"};
1.135     bowersj2 1981:     return 1;
1.119     bowersj2 1982: }
                   1983: 
                   1984: 1;
1.144     bowersj2 1985: 
                   1986: package Apache::lonprintout::page_size_state;
                   1987: 
                   1988: =pod
                   1989: 
                   1990: =head1 Helper element: page_size_state
                   1991: 
                   1992: See lonhelper.pm documentation for discussion of the helper framework.
                   1993: 
                   1994: Apache::lonprintout::page_size_state is an element that gives the 
                   1995: user the opportunity to further refine the page settings if they
                   1996: select a single-column page.
                   1997: 
                   1998: page_size_state is always directly invoked in lonprintout.pm, so there
                   1999: is no tag interface. You actually pass parameters to the constructor.
                   2000: 
                   2001: =over 4
                   2002: 
                   2003: =item * B<new>(varName): varName is where the print information will be stored in the format FIXME.
                   2004: 
                   2005: =back
                   2006: 
                   2007: =cut
                   2008: 
                   2009: use Apache::lonhelper;
                   2010: 
                   2011: no strict;
                   2012: @ISA = ("Apache::lonhelper::element");
                   2013: use strict;
                   2014: 
                   2015: 
                   2016: 
                   2017: sub new { 
                   2018:     my $self = Apache::lonhelper::element->new();
                   2019: 
                   2020:     shift; # disturbs me (probably prevents subclassing) but works (drops
                   2021:            # package descriptor)... - Jeremy
                   2022: 
                   2023:     $self->{'variable'} = shift;
                   2024:     my $helper = Apache::lonhelper::getHelper();
                   2025:     $helper->declareVar($self->{'variable'});
                   2026: 
                   2027:     # The variable name of the format element, so we can look into 
                   2028:     # $helper->{VARS} to figure out whether the columns are one or two
                   2029:     $self->{'formatvar'} = shift;
                   2030: 
                   2031:     # The state to transition to after selection, or after discovering
                   2032:     # the cols are not set to 1
                   2033:     $self->{NEXTSTATE} = shift;
                   2034:     bless($self);
                   2035:     return $self;
                   2036: }
                   2037: 
                   2038: sub render {
                   2039:     my $self = shift;
                   2040:     my $helper = Apache::lonhelper::getHelper();
                   2041:     my $result = '';
                   2042:     my $var = $self->{'variable'};
                   2043: 
                   2044:     if (defined $self->{ERROR_MSG}) {
                   2045:         $result .= '<br /><font color="#FF0000">' . $self->{ERROR_MSG} . '</font><br />';
                   2046:     }
                   2047: 
                   2048:     $result .= <<ELEMENTHTML;
                   2049: 
                   2050: <p>How should the column be formatted?</p>
                   2051: 
                   2052: <table cellpadding='3'>
                   2053:   <tr>
                   2054:     <td align='right'><b>Width</b>:</td>
                   2055:     <td align='left'><input type='text' name='$var.width' value='18' size='4'></td>
                   2056:     <td align='left'>
                   2057:       <select name='$var.widthunit'>
                   2058:         <option>cm</option><option>in</option>
                   2059:       </select>
                   2060:     </td>
                   2061:   </tr>
                   2062:   <tr>
                   2063:     <td align='right'><b>Height</b>:</td>
                   2064:     <td align='left'><input type='text' name="$var.height" value="25.9" size='4'></td>
                   2065:     <td align='left'>
                   2066:       <select name='$var.heightunit'>
                   2067:         <option>cm</option><option>in</option>
                   2068:       </select>
                   2069:     </td>
                   2070:   </tr>
                   2071:   <tr>
                   2072:     <td align='right'><b>Left margin</b>:</td>
                   2073:     <td align='left'><input type='text' name='$var.lmargin' value='-1.5' size='4'></td>
                   2074:     <td align='left'>
1.186     bowersj2 2075:       <select name='$var.lmarginunit'>
1.144     bowersj2 2076:         <option>cm</option><option>in</option>
                   2077:       </select>
                   2078:     </td>
                   2079:   </tr>
                   2080: </table>
                   2081: 
                   2082: <p>Hint: Some instructors like to leave scratch space for the student by
1.280     albertel 2083: making the width much smaller than the width of the page.</p>
1.144     bowersj2 2084: 
                   2085: ELEMENTHTML
                   2086: 
                   2087:     return $result;
                   2088: }
                   2089: 
                   2090: # If the user didn't select 1 column, skip this state.
                   2091: sub preprocess {
                   2092:     my $self = shift;
                   2093:     my $helper = Apache::lonhelper::getHelper();
                   2094: 
                   2095:     my $format = $helper->{VARS}->{$self->{'formatvar'}};
                   2096:     if (substr($format, 2, 1) ne '1') {
                   2097:         $helper->changeState($self->{NEXTSTATE});
                   2098:     }
                   2099:    
                   2100:     return 1;
                   2101: }
                   2102: 
                   2103: sub postprocess {
                   2104:     my $self = shift;
                   2105: 
                   2106:     my $var = $self->{'variable'};
                   2107:     my $helper = Apache::lonhelper->getHelper();
                   2108:     my $width = $helper->{VARS}->{$var .'.width'} = $ENV{"form.${var}.width"}; 
                   2109:     my $height = $helper->{VARS}->{$var .'.height'} = $ENV{"form.${var}.height"}; 
                   2110:     my $lmargin = $helper->{VARS}->{$var .'.lmargin'} = $ENV{"form.${var}.lmargin"}; 
                   2111:     $helper->{VARS}->{$var .'.widthunit'} = $ENV{"form.${var}.widthunit"}; 
                   2112:     $helper->{VARS}->{$var .'.heightunit'} = $ENV{"form.${var}.heightunit"}; 
                   2113:     $helper->{VARS}->{$var .'.lmarginunit'} = $ENV{"form.${var}.lmarginunit"}; 
                   2114: 
                   2115:     my $error = '';
                   2116: 
                   2117:     # /^-?[0-9]+(\.[0-9]*)?$/ -> optional minus, at least on digit, followed 
                   2118:     # by an optional period, followed by digits, ending the string
                   2119: 
                   2120:     if ($width !~  /^-?[0-9]+(\.[0-9]*)?$/) {
                   2121:         $error .= "Invalid width; please type only a number.<br />\n";
                   2122:     }
                   2123:     if ($height !~  /^-?[0-9]+(\.[0-9]*)?$/) {
                   2124:         $error .= "Invalid height; please type only a number.<br />\n";
                   2125:     }
                   2126:     if ($lmargin !~  /^-?[0-9]+(\.[0-9]*)?$/) {
                   2127:         $error .= "Invalid left margin; please type only a number.<br />\n";
                   2128:     }
                   2129: 
                   2130:     if (!$error) {
                   2131:         Apache::lonhelper::getHelper()->changeState($self->{NEXTSTATE});
                   2132:         return 1;
                   2133:     } else {
                   2134:         $self->{ERROR_MSG} = $error;
                   2135:         return 0;
                   2136:     }
                   2137: }
                   2138: 
                   2139: 
1.119     bowersj2 2140: 
1.1       www      2141: __END__
1.6       sakharuk 2142: 

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