File:  [LON-CAPA] / loncom / interface / lonprintout.pm
Revision 1.208: download - view: text, annotated - select for diffs
Sat Aug 2 13:57:05 2003 UTC (20 years, 10 months ago) by www
Branches: MAIN
CVS tags: version_1_0_0, version_0_99_4, HEAD
Bug #2018: used presence of http://... as indicator for "construction space"
- sort of arbitrary, and not always true.

    1: # The LearningOnline Network
    2: # Printout
    3: #
    4: # $Id: lonprintout.pm,v 1.208 2003/08/02 13:57:05 www Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: # (Internal Server Error Handler
   29: #
   30: # (Login Screen
   31: # 5/21/99,5/22,5/25,5/26,5/31,6/2,6/10,7/12,7/14,
   32: # 1/14/00,5/29,5/30,6/1,6/29,7/1,11/9 Gerd Kortemeyer)
   33: #
   34: # 3/1/1 Gerd Kortemeyer)
   35: #
   36: # 3/1 Gerd Kortemeyer
   37: #
   38: # 9/17 Alex Sakharuk
   39: #
   40: package Apache::lonprintout;
   41: 
   42: use strict;
   43: use Apache::Constants qw(:common :http);
   44: use Apache::lonxml;
   45: use Apache::lonnet;
   46: use Apache::loncommon;
   47: use Apache::inputtags;
   48: use Apache::grades;
   49: use Apache::edit;
   50: use Apache::File();
   51: use Apache::lonnavmaps;
   52: use POSIX qw(strftime);
   53: use GDBM_File;
   54: 
   55: 
   56: my %hash;
   57: my $LaTeXwidth = 0;
   58: 
   59: 
   60: sub latex_header_footer_remove {
   61:     my $text = shift;
   62:     $text =~ s/\\end{document}//;
   63:     $text =~ s/\\documentclass([^&]*)\\begin{document}//;
   64:     return $text;
   65: }
   66: 
   67: 
   68: sub character_chart {
   69:     my $result = shift;	
   70:     $result =~ s/&\#0?0?(7|9);//g;
   71:     $result =~ s/&\#0?(10|13);//g;
   72:     $result =~ s/&\#0?32;/ /g;
   73:     $result =~ s/&\#0?33;/!/g;
   74:     $result =~ s/&(\#0?34|quot);/\"/g;
   75:     $result =~ s/&\#0?35;/\\\#/g;
   76:     $result =~ s/&\#0?36;/\\\$/g;
   77:     $result =~ s/&\#0?37;/\\%/g; 
   78:     $result =~ s/&(\#0?38|amp);/\\&/g; 
   79:     $result =~ s/&\#(0?39|146);/\'/g;
   80:     $result =~ s/&\#0?40;/(/g;
   81:     $result =~ s/&\#0?41;/)/g;
   82:     $result =~ s/&\#0?42;/\*/g;
   83:     $result =~ s/&\#0?43;/\+/g;
   84:     $result =~ s/&\#(0?44|130);/,/g;
   85:     $result =~ s/&\#0?45;/-/g;
   86:     $result =~ s/&\#0?46;/\./g;
   87:     $result =~ s/&\#0?47;/\//g;
   88:     $result =~ s/&\#0?48;/0/g;
   89:     $result =~ s/&\#0?49;/1/g;
   90:     $result =~ s/&\#0?50;/2/g;
   91:     $result =~ s/&\#0?51;/3/g;
   92:     $result =~ s/&\#0?52;/4/g;
   93:     $result =~ s/&\#0?53;/5/g;
   94:     $result =~ s/&\#0?54;/6/g;
   95:     $result =~ s/&\#0?55;/7/g;
   96:     $result =~ s/&\#0?56;/8/g;
   97:     $result =~ s/&\#0?57;/9/g;
   98:     $result =~ s/&\#0?58;/:/g;
   99:     $result =~ s/&\#0?59;/;/g;
  100:     $result =~ s/&(\#0?60|lt|\#139);/\$<\$/g;
  101:     $result =~ s/&\#0?61;/\$=\$/g;
  102:     $result =~ s/&(\#0?62|gt|\#155);/\$>\$/g;
  103:     $result =~ s/&\#0?63;/\?/g;
  104:     $result =~ s/&\#0?65;/A/g;
  105:     $result =~ s/&\#0?66;/B/g;
  106:     $result =~ s/&\#0?67;/C/g;
  107:     $result =~ s/&\#0?68;/D/g;
  108:     $result =~ s/&\#0?69;/E/g;
  109:     $result =~ s/&\#0?70;/F/g;
  110:     $result =~ s/&\#0?71;/G/g;
  111:     $result =~ s/&\#0?72;/H/g;
  112:     $result =~ s/&\#0?73;/I/g;
  113:     $result =~ s/&\#0?74;/J/g;
  114:     $result =~ s/&\#0?75;/K/g;
  115:     $result =~ s/&\#0?76;/L/g;
  116:     $result =~ s/&\#0?77;/M/g;
  117:     $result =~ s/&\#0?78;/N/g;
  118:     $result =~ s/&\#0?79;/O/g;
  119:     $result =~ s/&\#0?80;/P/g;
  120:     $result =~ s/&\#0?81;/Q/g;
  121:     $result =~ s/&\#0?82;/R/g;
  122:     $result =~ s/&\#0?83;/S/g;
  123:     $result =~ s/&\#0?84;/T/g;
  124:     $result =~ s/&\#0?85;/U/g;
  125:     $result =~ s/&\#0?86;/V/g;
  126:     $result =~ s/&\#0?87;/W/g;
  127:     $result =~ s/&\#0?88;/X/g;
  128:     $result =~ s/&\#0?89;/Y/g;
  129:     $result =~ s/&\#0?90;/Z/g;
  130:     $result =~ s/&\#0?91;/[/g;
  131:     $result =~ s/&\#0?92;/\$\\setminus\$/g;
  132:     $result =~ s/&\#0?93;/]/g;
  133:     $result =~ s/&\#(0?94|136);/\$\\wedge\$/g;
  134:     $result =~ s/&\#(0?95|138|154);/\\underline{\\makebox[2mm]{\\strut}}/g;
  135:     $result =~ s/&\#(0?96|145);/\`/g;
  136:     $result =~ s/&\#0?97;/a/g;
  137:     $result =~ s/&\#0?98;/b/g;
  138:     $result =~ s/&\#0?99;/c/g;
  139:     $result =~ s/&\#100;/d/g;
  140:     $result =~ s/&\#101;/e/g;
  141:     $result =~ s/&\#102;/f/g;
  142:     $result =~ s/&\#103;/g/g;
  143:     $result =~ s/&\#104;/h/g;
  144:     $result =~ s/&\#105;/i/g;
  145:     $result =~ s/&\#106;/j/g;
  146:     $result =~ s/&\#107;/k/g;
  147:     $result =~ s/&\#108;/l/g;
  148:     $result =~ s/&\#109;/m/g;
  149:     $result =~ s/&\#110;/n/g;
  150:     $result =~ s/&\#111;/o/g;
  151:     $result =~ s/&\#112;/p/g;
  152:     $result =~ s/&\#113;/q/g;
  153:     $result =~ s/&\#114;/r/g;
  154:     $result =~ s/&\#115;/s/g;
  155:     $result =~ s/&\#116;/t/g;
  156:     $result =~ s/&\#117;/u/g;
  157:     $result =~ s/&\#118;/v/g;
  158:     $result =~ s/&\#119;/w/g;
  159:     $result =~ s/&\#120;/x/g;
  160:     $result =~ s/&\#121;/y/g;
  161:     $result =~ s/&\#122;/z/g;
  162:     $result =~ s/&\#123;/\\{/g;
  163:     $result =~ s/&\#124;/\|/g;
  164:     $result =~ s/&\#125;/\\}/g;
  165:     $result =~ s/&\#126;/\~/g;
  166:     $result =~ s/&\#131;/\\textflorin /g;
  167:     $result =~ s/&\#132;/\"/g;
  168:     $result =~ s/&\#133;/\$\\ldots\$/g;
  169:     $result =~ s/&\#134;/\$\\dagger\$/g;
  170:     $result =~ s/&\#135;/\$\\ddagger\$/g;
  171:     $result =~ s/&\#137;/\\textperthousand /g;
  172:     $result =~ s/&\#140;/{\\OE}/g;
  173:     $result =~ s/&\#147;/\`\`/g;
  174:     $result =~ s/&\#148;/\'\'/g;
  175:     $result =~ s/&\#149;/\$\\bullet\$/g;
  176:     $result =~ s/&\#150;/--/g;
  177:     $result =~ s/&\#151;/---/g;
  178:     $result =~ s/&\#152;/\$\\sim\$/g;
  179:     $result =~ s/&\#153;/\\texttrademark /g;
  180:     $result =~ s/&\#156;/\\oe/g;
  181:     $result =~ s/&\#159;/\\\"Y/g;
  182:     $result =~ s/&(\#160|nbsp);//g;
  183:     $result =~ s/&(\#161|iexcl);/!\`/g;
  184:     $result =~ s/&(\#162|cent);/\\textcent /g;
  185:     $result =~ s/&(\#163|pound);/\\pounds /g; 
  186:     $result =~ s/&(\#164|curren);/\\textcurrency /g;
  187:     $result =~ s/&(\#165|yen);/\\textyen /g;
  188:     $result =~ s/&(\#166|brvbar);/\\textbrokenbar /g;
  189:     $result =~ s/&(\#167|sect);/\\textsection /g;
  190:     $result =~ s/&(\#168|uml);/\\texthighdieresis /g;
  191:     $result =~ s/&(\#169|copy);/\\copyright /g;
  192:     $result =~ s/&(\#170|ordf);/\\textordfeminine /g;
  193:     $result =~ s/&(\#172|not);/\$\\neg\$/g;
  194:     $result =~ s/&(\#173|shy);/ - /g;
  195:     $result =~ s/&(\#174|reg);/\\textregistered /g;
  196:     $result =~ s/&(\#175|macr);/\$^{-}\$/g;
  197:     $result =~ s/&(\#176|deg);/\$^{\\circ}\$/g;
  198:     $result =~ s/&(\#177|plusmn);/\$\\pm\$/g;
  199:     $result =~ s/&(\#178|sup2);/\$^2\$/g;
  200:     $result =~ s/&(\#179|sup3);/\$^3\$/g;
  201:     $result =~ s/&(\#180|acute);/\\textacute /g;
  202:     $result =~ s/&(\#181|micro);/\$\\mu\$/g;
  203:     $result =~ s/&(\#182|para);/\\P/g;
  204:     $result =~ s/&(\#183|middot);/\$\\cdot\$/g;
  205:     $result =~ s/&(\#184|cedil);/\\c{\\strut}/g;
  206:     $result =~ s/&(\#185|sup1);/\$^1\$/g;
  207:     $result =~ s/&(\#186|ordm);/\\textordmasculine /g;
  208:     $result =~ s/&(\#188|frac14);/\\textonequarter /g;
  209:     $result =~ s/&(\#189|frac12);/\\textonehalf /g;
  210:     $result =~ s/&(\#190|frac34);/\\textthreequarters /g;
  211:     $result =~ s/&(\#191|iquest);/?\`/g;   
  212:     $result =~ s/&(\#192|Agrave);/\\\`{A}/g;  
  213:     $result =~ s/&(\#193|Aacute);/\\\'{A}/g; 
  214:     $result =~ s/&(\#194|Acirc);/\\^{A}/g;
  215:     $result =~ s/&(\#195|Atilde);/\\~{A}/g;
  216:     $result =~ s/&(\#196|Auml);/\\\"{A}/g; 
  217:     $result =~ s/&(\#197|Aring);/{\\AA}/g;
  218:     $result =~ s/&(\#198|AElig);/{\\AE}/g;
  219:     $result =~ s/&(\#199|Ccedil);/\\c{c}/g;
  220:     $result =~ s/&(\#200|Egrave);/\\\`{E}/g;  
  221:     $result =~ s/&(\#201|Eacute);/\\\'{E}/g;    
  222:     $result =~ s/&(\#202|Ecirc);/\\^{E}/g;
  223:     $result =~ s/&(\#203|Euml);/\\\"{E}/g;
  224:     $result =~ s/&(\#204|Igrave);/\\\`{I}/g;
  225:     $result =~ s/&(\#205|Iacute);/\\\'{I}/g;    
  226:     $result =~ s/&(\#206|Icirc);/\\^{I}/g;
  227:     $result =~ s/&(\#207|Iuml);/\\\"{I}/g;    
  228:     $result =~ s/&(\#209|Ntilde);/\\~{N}/g;
  229:     $result =~ s/&(\#210|Ograve);/\\\`{O}/g;
  230:     $result =~ s/&(\#211|Oacute);/\\\'{O}/g;
  231:     $result =~ s/&(\#212|Ocirc);/\\^{O}/g;
  232:     $result =~ s/&(\#213|Otilde);/\\~{O}/g;
  233:     $result =~ s/&(\#214|Ouml);/\\\"{O}/g;    
  234:     $result =~ s/&(\#215|times);/\$\\times\$/g;
  235:     $result =~ s/&(\#216|Oslash);/{\\O}/g;
  236:     $result =~ s/&(\#217|Ugrave);/\\\`{U}/g;    
  237:     $result =~ s/&(\#218|Uacute);/\\\'{U}/g;
  238:     $result =~ s/&(\#219|Ucirc);/\\^{U}/g;
  239:     $result =~ s/&(\#220|Uuml);/\\\"{U}/g;
  240:     $result =~ s/&(\#221|Yacute);/\\\'{Y}/g;
  241:     $result =~ s/&(\#223|szlig);/\\ss/g;
  242:     $result =~ s/&(\#224|agrave);/\\\`{a}/g;
  243:     $result =~ s/&(\#225|aacute);/\\\'{a}/g;
  244:     $result =~ s/&(\#226|acirc);/\\^{a}/g;
  245:     $result =~ s/&(\#227|atilde);/\\~{a}/g;
  246:     $result =~ s/&(\#228|auml);/\\\"{a}/g;
  247:     $result =~ s/&(\#229|aring);/{\\aa}/g;
  248:     $result =~ s/&(\#230|aelig);/{\\ae}/g;
  249:     $result =~ s/&(\#231|ccedil);/\\c{c}/g;
  250:     $result =~ s/&(\#232|egrave);/\\\`{e}/g;
  251:     $result =~ s/&(\#233|eacute);/\\\'{e}/g;
  252:     $result =~ s/&(\#234|ecirc);/\\^{e}/g;
  253:     $result =~ s/&(\#235|euml);/\\\"{e}/g;
  254:     $result =~ s/&(\#236|igrave);/\\\`{i}/g;
  255:     $result =~ s/&(\#237|iacute);/\\\'{i}/g;
  256:     $result =~ s/&(\#238|icirc);/\\^{i}/g;
  257:     $result =~ s/&(\#239|iuml);/\\\"{i}/g;
  258:     $result =~ s/&(\#240|eth);/\$\\partial\$/g;
  259:     $result =~ s/&(\#241|ntilde);/\\~{n}/g;
  260:     $result =~ s/&(\#242|ograve);/\\\`{o}/g;
  261:     $result =~ s/&(\#243|oacute);/\\\'{o}/g;
  262:     $result =~ s/&(\#244|ocirc);/\\^{o}/g;
  263:     $result =~ s/&(\#245|otilde);/\\~{o}/g;
  264:     $result =~ s/&(\#246|ouml);/\\\"{o}/g;
  265:     $result =~ s/&(\#247|divide);/\$\\div\$/g;
  266:     $result =~ s/&(\#248|oslash);/{\\o}/g;
  267:     $result =~ s/&(\#249|ugrave);/\\\`{u}/g; 
  268:     $result =~ s/&(\#250|uacute);/\\\'{u}/g;
  269:     $result =~ s/&(\#251|ucirc);/\\^{u}/g;
  270:     $result =~ s/&(\#252|uuml);/\\\"{u}/g;
  271:     $result =~ s/&(\#253|yacute);/\\\'{y}/g;
  272:     $result =~ s/&(\#255|yuml);/\\\"{y}/g;
  273:     $result =~ s/&\#952;/\$\\theta\$/g;
  274: #Greek Alphabet
  275:     $result =~ s/&(alpha|\#945);/\$\\alpha \$/g;
  276:     $result =~ s/&(beta|\#946);/\$\\beta \$/g;
  277:     $result =~ s/&(gamma|\#947);/\$\\gamma \$/g;
  278:     $result =~ s/&(delta|\#948);/\$\\delta \$/g;
  279:     $result =~ s/&(epsilon|\#949);/\$\\epsilon \$/g;
  280:     $result =~ s/&(zeta|\#950);/\$\\zeta \$/g;
  281:     $result =~ s/&(eta|\#951);/\$\\eta \$/g;
  282:     $result =~ s/&(theta|\#952);/\$\\theta \$/g;
  283:     $result =~ s/&(iota|\#953);/\$\\iota \$/g;
  284:     $result =~ s/&(kappa|\#954);/\$\\kappa \$/g;
  285:     $result =~ s/&(lambda|\#955);/\$\\lambda \$/g;
  286:     $result =~ s/&(mu|\#956);/\$\\mu \$/g;
  287:     $result =~ s/&(nu|\#957);/\$\\nu \$/g;
  288:     $result =~ s/&(xi|\#958);/\$\\xi \$/g;
  289:     $result =~ s/&(omicron|\#959);/o/g;
  290:     $result =~ s/&(pi|\#960);/\$\\pi \$/g;
  291:     $result =~ s/&(rho|\#961);/\$\\rho \$/g;
  292:     $result =~ s/&(sigma|\#963);/\$\\sigma \$/g;
  293:     $result =~ s/&(tau|\#964);/\$\\tau \$/g;
  294:     $result =~ s/&(upsilon|\#965);/\$\\upsilon \$/g;
  295:     $result =~ s/&(phi|\#966);/\$\\phi \$/g;
  296:     $result =~ s/&(chi|\#967);/\$\\chi \$/g;
  297:     $result =~ s/&(psi|\#968);/\$\\psi \$/g;
  298:     $result =~ s/&(omega|\#969);/\$\\omega \$/g;
  299:     $result =~ s/&(thetasym|\#977);/\$\\vartheta \$/g;
  300:     $result =~ s/&(piv|\#982);/\$\\varpi \$/g;
  301:     $result =~ s/&(Alpha|\#913);/A/g;
  302:     $result =~ s/&(Beta|\#914);/B/g;
  303:     $result =~ s/&(Gamma|\#915);/\$\\Gamma \$/g;
  304:     $result =~ s/&(Delta|\#916);/\$\\Delta \$/g;
  305:     $result =~ s/&(Epsilon|\#917);/E/g;
  306:     $result =~ s/&(Zeta|\#918);/Z/g;
  307:     $result =~ s/&(Eta|\#919);/H/g;
  308:     $result =~ s/&(Theta|\#920);/\$\\Theta \$/g;
  309:     $result =~ s/&(Iota|\#921);/I/g;
  310:     $result =~ s/&(Kappa|\#922);/K/g;
  311:     $result =~ s/&(Lambda|\#923);/\$\\Lambda \$/g;
  312:     $result =~ s/&(Mu|\#924);/M/g;
  313:     $result =~ s/&(Nu|\#925);/N/g;
  314:     $result =~ s/&(Xi|\#926);/\$\\Xi \$/g;
  315:     $result =~ s/&(Omicron|\#927);/O/g;
  316:     $result =~ s/&(Pi|\#928);/\$\\Pi \$/g;
  317:     $result =~ s/&(Rho|\#929);/P/g;
  318:     $result =~ s/&(Sigma|\#931);/\$\\Sigma \$/g;
  319:     $result =~ s/&(Tau|\#932);/T/g;
  320:     $result =~ s/&(Upsilon|\#933);/\$\\Upsilon \$/g;
  321:     $result =~ s/&(Phi|\#934);/\$\\Phi \$/g;
  322:     $result =~ s/&(Chi|\#935);/X/g;
  323:     $result =~ s/&(Psi|\#936);/\$\\Psi \$/g;
  324:     $result =~ s/&(Omega|\#937);/\$\\Omega \$/g;
  325: #Arrows (extended HTML 4.01)
  326:     $result =~ s/&(larr|\#8592);/\$\\leftarrow \$/g;
  327:     $result =~ s/&(uarr|\#8593);/\$\\uparrow \$/g;
  328:     $result =~ s/&(rarr|\#8594);/\$\\rightarrow \$/g;
  329:     $result =~ s/&(darr|\#8595);/\$\\downarrow \$/g;
  330:     $result =~ s/&(harr|\#8596);/\$\\leftrightarrow \$/g;
  331:     $result =~ s/&(lArr|\#8656);/\$\\Leftarrow \$/g;
  332:     $result =~ s/&(uArr|\#8657);/\$\\Uparrow \$/g;
  333:     $result =~ s/&(rArr|\#8658);/\$\\Rightarrow \$/g;
  334:     $result =~ s/&(dArr|\#8659);/\$\\Downarrow \$/g;
  335:     $result =~ s/&(hArr|\#8660);/\$\\Leftrightarrow \$/g;
  336: #Mathematical Operators (extended HTML 4.01)
  337:     $result =~ s/&(forall|\#8704);/\$\\forall \$/g;
  338:     $result =~ s/&(part|\#8706);/\$\\partial \$/g;
  339:     $result =~ s/&(exist|\#8707);/\$\\exists \$/g;
  340:     $result =~ s/&(empty|\#8709);/\$\\emptyset \$/g;
  341:     $result =~ s/&(nabla|\#8711);/\$\\nabla \$/g;
  342:     $result =~ s/&(isin|\#8712);/\$\\in \$/g;
  343:     $result =~ s/&(notin|\#8713);/\$\\notin \$/g;
  344:     $result =~ s/&(ni|\#8715);/\$\\ni \$/g;
  345:     $result =~ s/&(prod|\#8719);/\$\\prod \$/g;
  346:     $result =~ s/&(sum|\#8721);/\$\\sum \$/g;
  347:     $result =~ s/&(minus|\#8722);/\$-\$/g;
  348:     $result =~ s/&(lowast|\#8727);/\$*\$/g;
  349:     $result =~ s/&(radic|\#8730);/\$\\surd \$/g;
  350:     $result =~ s/&(prop|\#8733);/\$\\propto \$/g;
  351:     $result =~ s/&(infin|\#8734);/\$\\infty \$/g;
  352:     $result =~ s/&(ang|\#8736);/\$\\angle \$/g;
  353:     $result =~ s/&(and|\#8743);/\$\\wedge \$/g;
  354:     $result =~ s/&(or|\#8744);/\$\\vee \$/g;
  355:     $result =~ s/&(cap|\#8745);/\$\\cap \$/g;
  356:     $result =~ s/&(cup|\#8746);/\$\\cup \$/g;
  357:     $result =~ s/&(int|\#8747);/\$\\int \$/g;
  358:     $result =~ s/&(sim|\#8764);/\$\\sim \$/g;
  359:     $result =~ s/&(cong|\#8773);/\$\\cong \$/g;
  360:     $result =~ s/&(asymp|\#8776);/\$\\approx \$/g;
  361:     $result =~ s/&(ne|\#8800);/\$\\not= \$/g;
  362:     $result =~ s/&(equiv|\#8801);/\$\\equiv \$/g;
  363:     $result =~ s/&(le|\#8804);/\$\\leq \$/g;
  364:     $result =~ s/&(ge|\#8805);/\$\\geq \$/g;
  365:     $result =~ s/&(sub|\#8834);/\$\\subset \$/g;
  366:     $result =~ s/&(sup|\#8835);/\$\\supset \$/g;
  367:     $result =~ s/&(nsub|\#8836);/\$\\not\\subset \$/g;
  368:     $result =~ s/&(sube|\#8838);/\$\\subseteq \$/g;
  369:     $result =~ s/&(supe|\#8839);/\$\\supseteq \$/g;
  370:     $result =~ s/&(oplus|\#8853);/\$\\oplus \$/g;
  371:     $result =~ s/&(otimes|\#8855);/\$\\otimes \$/g;
  372:     $result =~ s/&(perp|\#8869);/\$\\perp \$/g;
  373:     $result =~ s/&(sdot|\#8901);/\$\\cdot \$/g;
  374: #Geometric Shapes (extended HTML 4.01)
  375:     $result =~ s/&(loz|\#9674);/\$\\Diamond \$/g;
  376: #Miscellaneous Symbols (extended HTML 4.01)
  377:     $result =~ s/&(spades|\#9824);/\$\\spadesuit \$/g;
  378:     $result =~ s/&(clubs|\#9827);/\$\\clubsuit \$/g;
  379:     $result =~ s/&(hearts|\#9829);/\$\\heartsuit \$/g;
  380:     $result =~ s/&(diams|\#9830);/\$\\diamondsuit \$/g;
  381:     return $result;
  382: }
  383: 
  384: 
  385: sub page_format {
  386: #
  387: #Correspondence between $papersize variable and real paper format:
  388: # 0 - "Letter [8 1/2x11 in]"
  389: # 1 - "Legal [8 1/2x14 in]"
  390: # 2 - "Ledger/Tabloid [11x17 in]"
  391: # 3 - "Executive [7 1/2x10 in]"
  392: # 4 - "A2 [420x594 mm]"
  393: # 5 - "A3 [297x420 mm]"
  394: # 6 - "A4 [210x297 mm]"
  395: # 7 - "A5 [148x210 mm]"
  396: # 8 - "A6 [105x148 mm]"
  397: # 
  398:     my ($papersize,$layout,$numberofcolumns) = @_; 
  399:     my ($textwidth,$textheight,$oddoffset,$evenoffset,$topmargin) = (0,0,0,0,0);
  400:     if ($papersize eq '0') {
  401: 	if ($layout eq 'book') {
  402: 	    if ($numberofcolumns == 1) {
  403: 		$textwidth = '7.1 in';      #'18 cm';
  404: 		$textheight = '10.2 in';    #'25.9 cm';
  405: 		$oddoffset = '-0.57 in';
  406: 		$evenoffset = '-0.57 in';
  407: 	    } elsif ($numberofcolumns == 2) {
  408: 		$textwidth = '3.66 in';     #'93 mm';
  409: 		$textheight = '10.2 in';    #'25.9 cm';
  410: 		$oddoffset = '-0.57 in';
  411: 		$evenoffset = '-0.57 in';
  412: 	    }
  413: 	} elsif ($layout eq 'album') {
  414: 	    if ($numberofcolumns eq '1') {
  415: 		$textwidth = '8.8 in';
  416: 		$textheight = '6.8 in';
  417: 		$oddoffset = '-40 pt';
  418: 		$evenoffset = '-60 pt';
  419: 	    } elsif ($numberofcolumns == 2) {
  420: 		$textwidth = '4.4 in';
  421: 		$textheight = '6.8 in';
  422: 		$oddoffset = '-0.5 in';
  423: 		$evenoffset = '-1.5 in';
  424: 		$topmargin = '3.5 in';
  425: 	    }
  426: 	}
  427: #    } elsif($papersize eq '1') {
  428: #    } elsif($papersize eq '2') {
  429: #    } elsif($papersize eq '3'/) {
  430:     } elsif($papersize eq '6') {
  431: 	if ($layout eq 'book') {
  432: 	    if ($numberofcolumns == 1) {
  433: 		$textwidth = '18 cm';
  434: 		$textheight = '28 cm';
  435: 		$oddoffset = '-0.57 in';
  436: 		$evenoffset = '-0.57 in';
  437: 	    } elsif ($numberofcolumns == 2) {
  438: 		$textwidth = '96 mm';
  439: 		$textheight = '2 cm';
  440: 		$oddoffset = '-0.57 in';
  441: 		$evenoffset = '-0.57 in';
  442: 	    }
  443: 	} elsif ($layout eq 'album') {
  444: 	    if ($numberofcolumns eq '1') {
  445: 		$textwidth = '8.5 in';
  446: 		$textheight = '7.7 in';
  447: 		$oddoffset = '-40 pt';
  448: 		$evenoffset = '-60 pt';
  449: 	    } elsif ($numberofcolumns == 2) {
  450: 		$textwidth = '3.9 in';
  451: 		$textheight = '7.7 in';
  452: 		$oddoffset = '-40 pt';
  453: 		$evenoffset = '-60 pt';
  454: 	    }
  455: 	}
  456: #    } elsif($papersize eq '5') {
  457: #    } elsif($papersize eq '4') {
  458: #    } elsif($papersize eq '7') {
  459: #    } elsif($papersize eq '8') {
  460:     }
  461:     return $textwidth,$textheight,$oddoffset,$evenoffset,$topmargin;
  462: }
  463: 
  464: 
  465: sub get_name {
  466:     my ($uname,$udom)=@_;
  467:     if (!defined($uname)) { $uname=$ENV{'user.name'}; }
  468:     if (!defined($udom)) { $uname=$ENV{'user.domain'}; }
  469:     my $plainname=&Apache::loncommon::plainname($uname,$udom);
  470:     if ($plainname=~/^\s*$/) { $plainname=$uname; }
  471:     return &Apache::lonxml::latex_special_symbols($plainname,undef,undef,
  472: 						  'header');
  473: }
  474: 
  475: 
  476: sub page_format_transformation {
  477:     my ($papersize,$layout,$numberofcolumns,$choice,$text,$assignment) = @_; 
  478:     my ($textwidth,$textheight,$oddoffset,$evenoffset,$topmargin);
  479: 	$assignment=~s/_/ /g;
  480:         if ($numberofcolumns != 1) {
  481:           ($textwidth,$textheight,$oddoffset,$evenoffset,$topmargin) = &page_format($papersize,$layout,$numberofcolumns,$topmargin);
  482: 	} else {
  483: 	  ($textwidth,$textheight,$oddoffset,$evenoffset) = ($ENV{'form.width'},$ENV{'form.height'},$ENV{'form.leftmargin'},$ENV{'form.leftmargin'});
  484: 	}
  485:     my $name = &get_name();
  486:     if ($name =~ /^\s*$/) {
  487: 	$name=&Apache::lonxml::latex_special_symbols($ENV{'user.name'},undef,
  488: 						     undef,'header');
  489:     }
  490:     my $courseidinfo = &Apache::lonxml::latex_special_symbols(&Apache::lonnet::unescape($ENV{'course.'.$ENV{'request.course.id'}.'.description'}),'','','header');
  491:     if ($layout eq 'album') {
  492: 	my $topmargintoinsert = '';
  493: 	if ($topmargin ne '0') {$topmargintoinsert='\setlength{\topmargin}{'.$topmargin.'}';}
  494: 	    $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} /;
  495:     } elsif ($layout eq 'book') {
  496: 	if ($choice ne 'All class print') { 
  497: 	    $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}/;
  498: 	} else {
  499: 	    $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 /;
  500: 	}
  501:     }
  502:     return $text;
  503: }
  504: 
  505: 
  506: sub page_cleanup {
  507:     my $result = shift;	
  508:  
  509:     $result =~ m/\\end{document}(\d*)$/;
  510:     my $number_of_columns = $1;
  511:     my $insert = '{';
  512:     for (my $id=1;$id<=$number_of_columns;$id++) { $insert .='l'; }
  513:     $insert .= '}';
  514:     $result =~ s/(\\begin{longtable})INSERTTHEHEADOFLONGTABLE\\endfirsthead\\endhead/$1$insert/g;
  515:     $result =~ s/&\s*REMOVETHEHEADOFLONGTABLE\\\\/\\\\/g;
  516:     return $result,$number_of_columns;
  517: }
  518: 
  519: 
  520: sub details_for_menu {
  521: 
  522:     my $name_of_resourse = $hash{'title_'.$hash{'ids_'.$ENV{'form.postdata'}}};
  523:     my $symbolic = &Apache::lonnet::symbread($ENV{'form.postdata'});
  524:     my ($map,$id,$resource)=split(/___/,$symbolic);
  525:     $map=&Apache::lonnet::clutter($map);
  526:     my $name_of_sequence;
  527:     $name_of_sequence = $hash{'title_'.$hash{'ids_'.$map}};
  528:     if ($name_of_sequence =~ /^\s*$/) {
  529: 	$map =~ m|([^/]+)$|;
  530: 	$name_of_sequence = $1;
  531:     }
  532:     my $name_of_map = $hash{'title_'.$hash{'ids_'.&Apache::lonnet::clutter($ENV{'request.course.uri'})}};
  533:     if ($name_of_map =~ /^\s*$/) {
  534: 	$ENV{'request.course.uri'} =~ m|([^/]+)$|;
  535: 	$name_of_map = $1;
  536:     }
  537:     return ($name_of_resourse,$name_of_sequence,$name_of_map);
  538: 
  539: }
  540: 
  541: 
  542: sub latex_corrections {
  543: 
  544:     my ($number_of_columns,$result) = @_;
  545: 
  546: #    $result =~ s/\\includegraphics{/\\includegraphics\[width=\\minipagewidth\]{/g;
  547:     $result =~ s/\$number_of_columns/$number_of_columns/g;
  548:     $result =~ s/(\\end{document})/\\strut\\newline\\noindent\\makebox\[\\textwidth\/$number_of_columns\]\[b\]{\\hrulefill}\\newline\\noindent\\tiny Printed from LON-CAPA\\copyright MSU{\\hfill} Licensed under GNU General Public License  $1/;
  549:     $result =~ s/(\\end{longtable}\s*)(\\strut\\newline\\noindent\\makebox\[\\textwidth\/$number_of_columns\]\[b\]{\\hrulefill})/$2$1/g;
  550:     $result =~ s/(\\end{longtable}\s*)\\strut\\newline/$1/g;
  551: #-- LaTeX corrections     
  552:     my $first_comment = index($result,'<!--',0);
  553:     while ($first_comment != -1) {
  554: 	my $end_comment = index($result,'-->',$first_comment);
  555: 	substr($result,$first_comment,$end_comment-$first_comment+3) = '';
  556: 	$first_comment = index($result,'<!--',$first_comment);
  557:     }
  558:     $result =~ s/^\s+$//gm; #remove empty lines
  559:     $result =~ s/(\s)(\s+)/$1/g; #removes more than one empty space
  560:     $result =~ s/\\\\\s*\\vskip/\\vskip/gm;
  561:     $result =~ s/\\\\\s*\\noindent\s*(\\\\)+/\\\\\\noindent /g;
  562:     $result =~ s/{\\par }\s*\\\\/\\\\/gm;
  563: 	$result =~ s/\\\\\s+\[/ \[/g;
  564:     $result =~ s/\b__+\b/\\makebox\[1 cm\]\[b\]{\\hrulefill}/g;
  565:     #conversion of html characters to LaTeX equivalents
  566:     if ($result =~ m/&(\w+|#\d+);/) {
  567: 	$result = &character_chart($result);
  568:     }
  569:     $result =~ s/(\\end{tabular})\s*\\vskip 0 mm/$1/g;
  570:     $result =~ s/(\\begin{enumerate})\s*\\noindent/$1/g;
  571: 
  572:     return $result;
  573: }
  574: 
  575: 
  576: sub output_data {
  577:     my ($r,$helper,$rparmhash) = @_;
  578:     my %parmhash = %$rparmhash;
  579:     my $bodytag=&Apache::loncommon::bodytag('Preparing Printout');
  580:     $r->print(<<ENDPART);
  581: <html>
  582: <head>
  583: <title>LON-CAPA output for printing</title>
  584: </head>
  585: $bodytag
  586: Please stand by while processing your print request, this may take some time ...
  587: ENDPART
  588: 
  589:     my $format_from_helper = $helper->{'VARS'}->{'FORMAT'};
  590:     my ($result,$selectionmade) = ('','');
  591:     my $number_of_columns = 1; #used only for pages to determine the width of the cell
  592:     my @temporary_array=split /\|/,$format_from_helper;
  593:     my ($laystyle,$numberofcolumns,$papersize)=@temporary_array;
  594:     if ($laystyle eq 'L') {
  595: 	$laystyle='album';
  596:     } else {
  597: 	$laystyle='book';
  598:     }
  599:     my ($textwidth,$textheight,$oddoffset,$evenoffset) = &page_format($papersize,$laystyle,$numberofcolumns);
  600:     my $assignment =  $ENV{'form.assignment'};
  601:     my $LaTeXwidth; 
  602:     if ($textwidth=~/(\d+\.?\d*)\s*cm/) {
  603: 	$LaTeXwidth = $1*10;
  604:     } elsif ($textwidth=~/(\d+\.?\d*)\s*mm/) {
  605: 	$LaTeXwidth = $1;
  606:     } elsif ($textwidth=~/(\d+\.?\d*)\s*in/) {
  607: 	$LaTeXwidth = $1*25.4;
  608:     }
  609:     $LaTeXwidth.=' mm';
  610:     
  611:     if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'current_document') {
  612:       #-- single document - problem, page, html, xml, ...
  613: 	my $currentURL;
  614: 	if ($helper->{'VARS'}->{'construction'} ne '1') {
  615:             #prints published resource
  616: 	    $currentURL=$helper->{'VARS'}->{'postdata'};
  617: 	} else {
  618:             #prints resource from the construction space
  619: 	    $currentURL=$helper->{'VARS'}->{'filename'};
  620: 	    $currentURL=~s/\/home\//\/~/;
  621: 	    $currentURL=~s/public_html\///;
  622: 	    if ($currentURL=~/([^?]+)/) {$currentURL=$1;}
  623: 	}
  624: 	$selectionmade = 1;
  625: 	if ($currentURL=~/\.(problem|exam|quiz|assess|survey|form|library|page|xml|html|htm|xhtml|xhtm)$/) {
  626: 	    my %moreenv;
  627: 	    $moreenv{'request.filename'}=$currentURL;
  628: 	    my %form;
  629: 	    $form{'grade_target'}='tex';
  630: 	    $form{'textwidth'}=$LaTeXwidth;	
  631: 	    $form{'problem_split'}=$parmhash{'problem_stream_switch'};
  632: 	    $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
  633: 	    my $rndseed=time;
  634: 	    $form{'rndseed'}=$rndseed;
  635: 	    &Apache::lonnet::appenv(%moreenv);
  636: 	    &Apache::lonnet::delenv('form.counter');
  637: 	    &Apache::lonxml::init_counter();
  638: 	    my $texversion=&Apache::lonnet::ssi($currentURL,%form);
  639: 	    &Apache::lonnet::delenv('form.counter');
  640: 	    &Apache::lonnet::delenv('request.filename');
  641: 	    if($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
  642: 		my %form;
  643: 		$form{'grade_target'}='answer';
  644: 		$form{'answer_output_mode'}='tex';
  645: 		$form{'rndseed'}=$rndseed;
  646: 		my $answer=&Apache::lonnet::ssi($currentURL,%form);
  647: 		$texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
  648: 	    }
  649: 	    $result .= $texversion;
  650: 	    if ($currentURL=~m/\.page\s*$/) {
  651: 		($result,$number_of_columns) = &page_cleanup($result);
  652: 	    }
  653: 	} else {
  654: 	  $result='\documentclass[letterpaper]{article}\usepackage{calc}\begin{document}Printout of this type of document is currently not supported: ';
  655: 	  if ($currentURL=~/\/(aboutme|syllabus|bulletinboard|smppg)$/) {
  656: 	      $result.=$1;
  657: 	  } elsif ($currentURL=~/\/ext\//) {
  658: 	      $result.=' \strut \\\\ THIS IS EXTERNAL RESOURCE WITH URL \strut \\\\ '.$currentURL.' ';
  659: 	  } else {
  660: 	      $result.=$currentURL;
  661: 	  }
  662: 	  $result.=' \end{document}'
  663: 	}
  664:     } elsif (($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems') or
  665:              ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems_pages') or
  666:              ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'all_problems')) { 
  667:         #-- produce an output string
  668: 	my %form=();	   
  669: 	$form{'grade_target'}='tex';
  670: 	$form{'textwidth'}=$LaTeXwidth;
  671: 	$form{'problem_split'}=$parmhash{'problem_stream_switch'};
  672: 	$form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
  673: 	my $flag_latex_header_remove = 'NO';
  674: 	my $flag_page_in_sequence = 'NO';
  675: 	my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'};
  676: 	my $prevassignment='';
  677: 	&Apache::lonnet::delenv('form.counter');
  678: 	&Apache::lonxml::init_counter();
  679: 	for (my $i=0;$i<=$#master_seq;$i++) {
  680: 	    $master_seq[$i]=~/___\d+___(.*)$/;
  681: 	    my $urlp='/res/'.$1;
  682: 	    if ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems') {
  683: 		$selectionmade = 2;
  684: 	    } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'map_problems_pages') {
  685: 		$selectionmade = 3;
  686: 	    } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'all_problems') {
  687: 		$selectionmade = 4;
  688: 	    }
  689: 	    $form{'symb'}=$master_seq[$i];
  690: 	    $master_seq[$i]=~/(.*)___\d*___/;
  691: 	    my $assignment=&Apache::lonnet::gettitle($1); #tittle of the assignment which contains this problem
  692: 	    #&Apache::lonnet::logthis("Trying to get $urlp with symb $master_seq[$i]");
  693: 	    my $texversion=&Apache::lonnet::ssi($urlp,%form);
  694: 	    if ($urlp=~/\.page$/) {
  695: 		($texversion,my $number_of_columns_page) = &page_cleanup($texversion);
  696: 		if ($number_of_columns_page > $number_of_columns) {$number_of_columns=$number_of_columns_page;} 
  697: 		$texversion =~ s/\\end{document}\d*/\\end{document}/;
  698: 		$flag_page_in_sequence = 'YES';
  699: 	    } 
  700: 	    if ($flag_latex_header_remove ne 'NO') {
  701: 		$texversion = &latex_header_footer_remove($texversion);
  702: 	    } else {
  703: 		$texversion =~ s/\\end{document}//;
  704: 	    }
  705: 	    if($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
  706: 		my %form;
  707: 		$form{'grade_target'}='answer';
  708: 		$form{'answer_output_mode'}='tex';
  709: 		my $answer=&Apache::lonnet::ssi($urlp,%form);
  710: 		$texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
  711: 	    }
  712: #	    $result .= $texversion;
  713: 	    if (($selectionmade == 4) and ($assignment ne $prevassignment) and ($i>=1)) {
  714: 		my $name = &get_name();
  715: 		if ($name =~ /^\s*$/) {
  716: 		    $name=&Apache::lonxml::latex_special_symbols($ENV{'user.name'},undef,
  717: 								 undef,'header');
  718: 		}
  719: 		my $courseidinfo = &Apache::lonxml::latex_special_symbols(&Apache::lonnet::unescape($ENV{'course.'.$ENV{'request.course.id'}.'.description'}),'','','header');
  720: 		$prevassignment=$assignment;
  721: 		$result .='\newpage \noindent\parbox{\minipagewidth}{\noindent\\lhead{\\textit{\\textbf{'.$name.'}} - '.$courseidinfo.' \\hfill \\thepage \\\\ \\textit{'.$assignment.'}}} \vskip -5 mm ';
  722: 	    }
  723: 	    $result .= $texversion;
  724: 	    $flag_latex_header_remove = 'YES';   
  725: 	}
  726: 	&Apache::lonnet::delenv('form.counter');
  727: 	if ($flag_page_in_sequence eq 'YES') {$result =~ s/\\usepackage{calc}/\\usepackage{calc}\\usepackage{longtable}/;}	
  728: 	$result .= '\end{document}';
  729:      } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_for_students') { 
  730:      #-- prints assignments for whole class or for selected students  
  731: 	 $selectionmade=5;
  732: 	 my @students=split /\|\|\|/, $helper->{'VARS'}->{'STUDENTS'};
  733: 	 my @master_seq=split /\|\|\|/, $helper->{'VARS'}->{'RESOURCES'};
  734: 	 #loop over students
  735: 	 my $flag_latex_header_remove = 'NO'; 
  736: 	 my %moreenv;
  737: 	 $moreenv{'form.textwidth'}=$LaTeXwidth;
  738: 	 &Apache::lonnet::appenv(%moreenv);
  739: 	 my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Print Status','Class Print Status',$#students+1);
  740: 	 foreach my $person (@students) {
  741: 	    my $current_output = ''; 
  742: #	    my ($usersection,$username,$userdomain) = split /:/,$person;
  743: 	    my ($username,$userdomain) = split /:/,$person;
  744: 	    my $fullname = &get_name($username,$userdomain);
  745: 
  746: 	    if ($parmhash{'anonymous_quiz'}=~/yes/) {$fullname=' ';} #put here something reasonable for anonymous exams or quiz
  747:             #goes through all resources, checks if they are available for current student, and produces output   
  748: 	    &Apache::lonnet::delenv('form.counter');
  749: 	    &Apache::lonxml::init_counter();
  750: 	    foreach my $curresline (@master_seq)  {
  751: 		if ($curresline=~ m/\.(problem|exam|quiz|assess|survey|form|library)$/) {
  752: 		    my ($map,$id,$res_url) = split(/___/,$curresline);
  753: 		    if (&Apache::lonnet::allowed('bre',$res_url)) {
  754: 			my $rendered = &Apache::loncommon::get_student_view($curresline,$username,$userdomain,
  755:                                                                         $ENV{'request.course.id'},'tex');
  756: 			if ($flag_latex_header_remove eq 'YES') {
  757: 			    $rendered = &latex_header_footer_remove($rendered);
  758: 			} else {
  759: 			    $rendered =~ s/\\end{document}//;
  760: 			}
  761: 			if($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
  762: 			    my %form;
  763: 			    $form{'answer_output_mode'}='tex';
  764: 			    $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
  765: 			    my $ansrendered = &Apache::loncommon::get_student_answers($curresline,$username,$userdomain,$ENV{'request.course.id'},%form);
  766: 			    $rendered=~s/(\\keephidden{ENDOFPROBLEM})/$ansrendered$1/;
  767: 			}
  768: 			$current_output .= $rendered;
  769: 		    }
  770: 		    $flag_latex_header_remove = 'YES';
  771: 		}
  772: 	    }
  773: 	    my $courseidinfo = $ENV{'course.'.$ENV{'request.course.id'}.'.description'};
  774: 	    if ($current_output=~/\\documentclass/) {
  775: 		$current_output =~ s/\\begin{document}/\\setlength{\\topmargin}{1cm} \\begin{document}\\noindent\\lhead{\\textit{\\textbf{$fullname}} - $courseidinfo \\hfill \\thepage \\\\ \\textit{$helper->{VARS}->{'assignment'}}}\\vskip 3 mm /;
  776: 	    } else {
  777: 		my $blanspages = '';
  778: 		for (my $j=0;$j<$helper->{'VARS'}->{'EMPTY_PAGES'};$j++) {$blanspages.='\clearpage\strut\clearpage';}
  779: 		$current_output = '\strut\\newline\\noindent\\makebox[\\textwidth/$number_of_columns][b]{\\hrulefill}\\newline\\noindent{\\tiny Printed from LON-CAPA\\copyright MSU{\\hfill} Licensed under GNU General Public License }\\newpage '.$blanspages.'\setcounter{page}{1}\noindent\parbox{\minipagewidth}{\noindent\\lhead{\\textit{\\textbf{'.$fullname.'}} - '.$courseidinfo.' \\hfill \\thepage \\\\ \\textit{'.$helper->{VARS}->{'assignment'}.'}}} \vskip -5 mm '.$current_output;
  780: 	    }
  781: 	    $result .= $current_output;
  782: 	    &Apache::lonnet::delenv('form.counter');	    
  783: 	    &Apache::lonxml::init_counter(); 
  784: 	    &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
  785: 						    'last student '.$fullname);
  786: 	}
  787: 	&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
  788: 	$result .= '\end{document}';
  789: 	&Apache::lonnet::delenv('form.textwidth');
  790:     } elsif ($helper->{'VARS'}->{'PRINT_TYPE'} eq 'problems_from_directory') {      
  791:     #prints selected problems from the subdirectory 
  792: 	$selectionmade = 6;
  793:         my @list_of_files=split /\|\|\|/, $helper->{'VARS'}->{'FILES'};
  794: 	@list_of_files=sort @list_of_files;
  795: 	my $flag_latex_header_remove = 'NO'; 
  796: 	my $rndseed=time;
  797: 	for (my $i=0;$i<=$#list_of_files;$i++) {
  798: 	    my $urlp = $list_of_files[$i];
  799: 	    if ($urlp=~/\//) {
  800: 		my %form;
  801: 		$form{'grade_target'}='tex';
  802: 		$form{'textwidth'}=$LaTeXwidth;
  803: 		$form{'rndseed'}=$rndseed;
  804: 		if ($urlp =~ m|/home/([^/]+)/public_html|) {
  805: 		    $urlp =~ s|/home/([^/]*)/public_html|/~$1|;
  806: 		} else {
  807: 		    $urlp =~ s|^/home/httpd/html||;
  808: 		}
  809: 		my $texversion=&Apache::lonnet::ssi($urlp,%form);
  810: 		if($helper->{'VARS'}->{'ANSWER_TYPE'} eq 'no') {
  811: 		    my %form;
  812: 		    $form{'grade_target'}='answer';
  813: 		    $form{'answer_output_mode'}='tex';
  814: 		    $form{'latex_type'}=$helper->{'VARS'}->{'LATEX_TYPE'};
  815: 		    $form{'rndseed'}=$rndseed;
  816: 		    my $answer=&Apache::lonnet::ssi($urlp,%form);
  817: 		    $texversion=~s/(\\keephidden{ENDOFPROBLEM})/$answer$1/;
  818: 		}
  819:                 #this chunck is responsible for printing the path to problem
  820: 		my $newurlp = '';
  821: 		my $HowMany = length($urlp)*2;
  822: 		if ($HowMany > $LaTeXwidth) {
  823: 		    my @temporrary = split '/',$urlp;
  824: 		    my $HowManyNew = 0;
  825: 		    for (my $ii=0;$ii<=$#temporrary;$ii++) {
  826: 			if ($temporrary[$ii] ne '') {
  827: 			    $HowManyNew += length($temporrary[$ii])*2;
  828: 			    if ($HowManyNew < $LaTeXwidth ) {
  829: 				$newurlp .=  '/'.$temporrary[$ii];
  830: 			    } else {
  831: 				$HowManyNew = 0;
  832: 				$newurlp .=  '|\vskip -1 mm \noindent \verb|';
  833: 				$ii--;
  834: 			    }
  835: 			}
  836: 		    }
  837: 		}
  838: 		$texversion =~ s/(\\begin{minipage}{\\textwidth})/$1 {\\small\\noindent\\verb|$newurlp\|\\vskip 0 mm}/;
  839: 		if ($flag_latex_header_remove ne 'NO') {
  840: 		    $texversion = &latex_header_footer_remove($texversion);
  841: 		} else {
  842: 		    $texversion =~ s/\\end{document}//;
  843: 		}
  844: 		$result .= $texversion;
  845: 	    }
  846: 	    $flag_latex_header_remove = 'YES';  
  847: 	}
  848: 	if ($helper->{VARS}->{'construction'} eq '1') {$result=~s/(\\typeout)/ RANDOM SEED IS $rndseed $1/;}
  849: 	$result .= '\end{document}';      	
  850:     }
  851: #-------------------------------------------------------- corrections for the different page formats
  852:     $result = &page_format_transformation($papersize,$laystyle,$numberofcolumns,$helper->{'VARS'}->{'PRINT_TYPE'},$result,$helper->{VARS}->{'assignment'});
  853:     $result = &latex_corrections($number_of_columns,$result);
  854:     #changes page's parameters for the one column output 
  855:     if ($numberofcolumns == 1) {
  856: 	$result =~ s/\\textwidth= 9cm/\\textwidth= $helper->{'VARS'}->{'pagesize.width'} $helper->{'VARS'}->{'pagesize.widthunit'} /;
  857: 	$result =~ s/\\textheight 25\.9cm/\\textheight $helper->{'VARS'}->{'pagesize.height'} $helper->{'VARS'}->{'pagesize.heightunit'} /;
  858: 	$result =~ s/\\evensidemargin = -0\.57in/\\evensidemargin= $helper->{'VARS'}->{'pagesize.lmargin'} $helper->{'VARS'}->{'pagesize.lmarginunit'} /;
  859: 	$result =~ s/\\oddsidemargin = -0\.57in/\\oddsidemargin= $helper->{'VARS'}->{'pagesize.lmargin'} $helper->{'VARS'}->{'pagesize.lmarginunit'} /;
  860:     }
  861: #-- writing .tex file in prtspool 
  862:     my $temp_file;
  863:     my $filename = "/home/httpd/prtspool/$ENV{'user.name'}_$ENV{'user.domain'}_printout_".time."_".rand(10000000).".tex";
  864:     unless ($temp_file = Apache::File->new('>'.$filename)) {
  865: 	$r->log_error("Couldn't open $filename for output $!");
  866: 	return SERVER_ERROR; 
  867:     } 
  868:     print $temp_file $result;
  869: 
  870: #<meta http-equiv="Refresh" content="0; url=/cgi-bin/printout.pl?$filename&$laystyle&$numberofcolumns&$selectionmade">
  871: $r->print(<<FINALEND);
  872: <meta http-equiv="Refresh" content="0; url=/cgi-bin/printout.pl?$filename&$laystyle&$numberofcolumns&$selectionmade">
  873: </body>
  874: </html>
  875: FINALEND
  876: }
  877: 
  878: 
  879: 
  880: sub handler {
  881: 
  882:     my $r = shift;
  883:     my $helper;
  884: 
  885: #    my $loaderror=&Apache::lonnet::overloaderror($r);
  886: #    if ($loaderror) { return $loaderror; }
  887: #    $loaderror=
  888: #       &Apache::lonnet::overloaderror($r,
  889: #         $ENV{'course.'.$ENV{'request.course.id'}.'.home'});
  890: #    if ($loaderror) { return $loaderror; }
  891: 
  892:     my $result = printHelper($r);
  893:     if (!ref($result)) {
  894: 	return $result;
  895:     }
  896:     $helper = $result;
  897:    
  898: #	my $key; 
  899: #	foreach $key (keys %{$helper->{'VARS'}}) {
  900: #	    $r->print(' '.$key.'->'.$helper->{'VARS'}->{$key}.'<-<br />');
  901: #	}
  902: #	return OK;
  903: 
  904:     my %parmhash=&Apache::lonnet::coursedescription($ENV{'request.course.id'});
  905:     
  906: #	my $key; 
  907: #	foreach $key (keys %parmhash) {
  908: #	    $r->print(' '.$key.'->'.$parmhash{$key}.'<-<br />');
  909: #	}
  910: #	return OK;
  911: 
  912:     &output_data($r,$helper,\%parmhash);
  913:     return OK;
  914: } 
  915: 
  916: use Apache::lonhelper;
  917: 
  918: sub printHelper {
  919:     my $r = shift;
  920: 
  921:     if ($ENV{'request.course.id'}) {
  922: 	my $fn=$ENV{'request.course.fn'};
  923: 	tie(%hash,'GDBM_File',"$fn.db",&GDBM_READER(),0640);
  924:     }
  925: 
  926:     if ($r->header_only) {
  927:         if ($ENV{'browser.mathml'}) {
  928:             $r->content_type('text/xml');
  929:         } else {
  930:             $r->content_type('text/html');
  931:         }
  932:         $r->send_http_header;
  933:         return OK;
  934:     }
  935: 
  936:     # Send header, nocache
  937:     if ($ENV{'browser.mathml'}) {
  938:         $r->content_type('text/xml');
  939:     } else {
  940:         $r->content_type('text/html');
  941:     }
  942:     &Apache::loncommon::no_cache($r);
  943:     $r->send_http_header;
  944:     $r->rflush();
  945: 
  946:     # Unfortunately, this helper is so complicated we have to
  947:     # write it by hand
  948: 
  949:     Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING});
  950:     
  951:     my $helper = Apache::lonhelper::helper->new("Printing Helper");
  952:     $helper->declareVar('symb');
  953:     $helper->declareVar('postdata');    
  954:     $helper->declareVar('filename');
  955:     $helper->declareVar('construction');
  956:     $helper->declareVar('assignment');
  957:     
  958:     # This will persistently load in the data we want from the
  959:     # very first screen.
  960:     # Detect whether we're coming from construction space
  961:     if ($ENV{'form.postdata'}=~/^(?:http:\/\/[^\/]+\/|\/|)\~([^\/]+)\/(.*)$/) {
  962:         $helper->{VARS}->{'filename'} = "/home/$1/public_html/$2";
  963:         $helper->{VARS}->{'construction'} = 1;
  964:     } else {
  965:         if ($ENV{'form.postdata'}) {
  966:             $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($ENV{'form.postdata'});
  967:         }
  968:         if ($ENV{'form.symb'}) {
  969:             $helper->{VARS}->{'symb'} = $ENV{'form.symb'};
  970:         }
  971:         if ($ENV{'form.url'}) {
  972:             $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
  973:         }
  974:     }
  975: 
  976:     if ($ENV{'form.symb'}) {
  977:         $helper->{VARS}->{'symb'} = $ENV{'form.symb'};
  978:     }
  979:     if ($ENV{'form.url'}) {
  980:         $helper->{VARS}->{'symb'} = &Apache::lonnet::symbread($helper->{VARS}->{'postdata'});
  981: 
  982:     }
  983:     
  984:     my ($resourceTitle,$sequenceTitle,$mapTitle) = &details_for_menu;
  985:     if ($sequenceTitle ne '') {$helper->{VARS}->{'assignment'}=$sequenceTitle;}
  986: 
  987:     
  988:     # Extract map
  989:     my $symb = $helper->{VARS}->{'symb'};
  990:     my ($map, $id, $url);
  991:     my $subdir;
  992: 
  993:     # Get the resource name from construction space
  994:     if ($helper->{VARS}->{'construction'}) {
  995:         $resourceTitle = substr($helper->{VARS}->{'filename'}, 
  996:                                 rindex($helper->{VARS}->{'filename'}, '/')+1);
  997:         $subdir = substr($helper->{VARS}->{'filename'},
  998:                          0, rindex($helper->{VARS}->{'filename'}, '/') + 1);
  999:     } else {
 1000:         ($map, $id, $url) = split(/___/, $symb);
 1001:         $helper->{VARS}->{'postdata'} = Apache::lonnet::clutter($url);
 1002: 
 1003:         if (!$resourceTitle) { # if the resource doesn't have a title, use the filename
 1004:             my $url = $helper->{VARS}->{'postdata'};
 1005:             $resourceTitle = substr($url, rindex($url, '/') + 1);
 1006:         }
 1007:         $subdir = &Apache::lonnet::filelocation("", $url);
 1008:     }
 1009: 
 1010:     my $userCanSeeHidden = Apache::lonnavmaps::advancedUser();
 1011: 
 1012:     Apache::lonhelper::registerHelperTags();
 1013: 
 1014:     # "Delete everything after the last slash."
 1015:     $subdir =~ s|/[^/]+$||;
 1016:     if (not $helper->{VARS}->{'construction'}) {
 1017: 	$subdir='/home/httpd/html/res/'.$subdir;
 1018:     }
 1019:     # "Remove all duplicate slashes."
 1020:     $subdir =~ s|/+|/|g;
 1021: 
 1022:     # What can be printed is a very dynamic decision based on
 1023:     # lots of factors. So we need to dynamically build this list.
 1024:     # To prevent security leaks, states are only added to the wizard
 1025:     # if they can be reached, which ensures manipulating the form input
 1026:     # won't allow anyone to reach states they shouldn't have permission
 1027:     # to reach.
 1028: 
 1029:     # printChoices is tracking the kind of printing the user can
 1030:     # do, and will be used in a choices construction later.
 1031:     # In the meantime we will be adding states and elements to
 1032:     # the helper by hand.
 1033:     my $printChoices = [];
 1034:     my $paramHash;
 1035: 
 1036:     if ($resourceTitle) {
 1037:         push @{$printChoices}, ["<b>$resourceTitle</b> (prints what you just saw on the screen)", 'current_document', 'PAGESIZE'];
 1038:     }
 1039: 
 1040: #    $r->print($helper->{VARS}->{'postdata'});
 1041: 
 1042:     # If we're in a sequence...
 1043:     if ($helper->{'VARS'}->{'construction'} ne '1') {
 1044:         # Allow problems from sequence
 1045:         push @{$printChoices}, ["Problem(s) from <b>$sequenceTitle</b>", 'map_problems', 'CHOOSE_PROBLEMS'];
 1046:         # Allow all resources from sequence
 1047:         push @{$printChoices}, ["Everything (problem(s), page(s), html/xml file(s)) from <b>$sequenceTitle</b>", 'map_problems_pages', 'CHOOSE_PROBLEMS_HTML'];
 1048: 
 1049:         my $isProblem = '$res->is_problem()';
 1050: 	$isProblem .= ' && !$res->randomout()' if !$userCanSeeHidden;
 1051:         my $isProblemOrMap = '$res->is_problem() || $res->is_map()';
 1052:         my $isNotMap = '!$res->is_map()';
 1053: 	$isNotMap .= ' && !$res->randomout()' if !$userCanSeeHidden;
 1054:         my $symb = '$res->symb()';
 1055:         my $helperFragment = <<HELPERFRAGMENT;
 1056:   <state name="CHOOSE_PROBLEMS" title="Select Problem(s) to print">
 1057:     <message>(mark them then click "next" button) <br /></message>
 1058:     <resource variable="RESOURCES" multichoice="1" toponly='1'>
 1059:       <nextstate>PAGESIZE</nextstate>
 1060:       <filterfunc>return $isProblem;</filterfunc>
 1061:       <mapurl>$map</mapurl>
 1062:       <valuefunc>return $symb;</valuefunc>
 1063:       </resource>
 1064:     </state>
 1065: 
 1066:   <state name="CHOOSE_PROBLEMS_HTML" title="Select Resource(s) to print">
 1067:     <message>(mark them then click "next" button) <br /></message>
 1068:     <resource variable="RESOURCES" multichoice="1" toponly='1'>
 1069:       <nextstate>PAGESIZE</nextstate>
 1070:       <filterfunc>return $isNotMap;</filterfunc>
 1071:       <mapurl>$map</mapurl>
 1072:       <valuefunc>return $symb;</valuefunc>
 1073:       </resource>
 1074:     </state>
 1075: HELPERFRAGMENT
 1076: 
 1077:         &Apache::lonxml::xmlparse($r, 'helper', $helperFragment); 
 1078:     }
 1079: 
 1080:     # If the user is priviledged, allow them to print all 
 1081:     # problems in the course, optionally for selected students
 1082:     if (($ENV{'request.role'}=~m/^cc\./ or $ENV{'request.role'}=~m/^in\./ or $ENV{'request.role'}=~m/^ta\./) and ($helper->{VARS}->{'postdata'}=~/\/res\//)) { 
 1083:         push @{$printChoices}, ['<b>Problems</b> in this course', 'all_problems', 'ALL_PROBLEMS'];
 1084:         push @{$printChoices}, ["Problems from <b>$sequenceTitle</b> for selected students", 'problems_for_students', 'CHOOSE_STUDENTS'];
 1085: 
 1086:         my $isProblem = '$res->is_problem()';
 1087: 	$isProblem .= ' && !$res->randomout()' if !$userCanSeeHidden;
 1088:         my $isProblemOrMap = '($res->is_problem() || $res->is_map())';
 1089: 	$isProblemOrMap .= ' && !$res->randomout()' if !$userCanSeeHidden;
 1090:         my $symb = '$res->symb()';
 1091:         &Apache::lonxml::xmlparse($r, 'helper', <<CHOOSE_STUDENTS);
 1092:   <state name="ALL_PROBLEMS" title="Select Problem(s) to print">
 1093:     <message>(mark them then click "next" button) <br /></message>
 1094:     <resource variable="RESOURCES" multichoice="1" suppressEmptySequences='1'>
 1095:       <nextstate>PAGESIZE</nextstate>
 1096:       <filterfunc>return $isProblemOrMap;</filterfunc>
 1097:       <choicefunc>return $isProblem;</choicefunc>
 1098:       <valuefunc>return $symb;</valuefunc>
 1099:       </resource>
 1100:     </state>
 1101: 
 1102:   <state name="CHOOSE_STUDENTS" title="Choose Students whose assignments you want to print">
 1103:     <student multichoice='1' variable="STUDENTS" nextstate="PAGESIZE" />
 1104:     <message><br /><big><i><b>Select resources for the assignment</b></i></big><br /></message>
 1105:     <resource variable="RESOURCES" multichoice="1">
 1106:       <filterfunc>return $isProblem</filterfunc>
 1107:       <mapurl>$map</mapurl>
 1108:       <valuefunc>return $symb</valuefunc>
 1109:       </resource>
 1110:     <message><br /><big><i><b>How should the results be printed?</b></i></big><br /></message>
 1111:     <choices variable="EMPTY_PAGES">
 1112:       <choice computer='0'>Start each student\'s assignment on a new page/column (add a pagefeed after each assignment)</choice>
 1113:       <choice computer='1'>Add one empty page/column after each student\'s assignment</choice>
 1114:       <choice computer='2'>Add two empty pages/column after each student\'s assignment</choice>
 1115:       <choice computer='3'>Add three empty pages/column after each student\'s assignment</choice>
 1116:       </choices>
 1117:     </state>
 1118: CHOOSE_STUDENTS
 1119:     }
 1120: 
 1121:     # FIXME: That RE should come from a library somewhere.
 1122:     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'}) {    
 1123:         push @{$printChoices}, ["Problems from current subdirectory <b>$subdir</b>", 'problems_from_directory', 'CHOOSE_FROM_SUBDIR'];
 1124:         
 1125:         my $f = '$filename';
 1126:         my $xmlfrag = <<CHOOSE_FROM_SUBDIR;
 1127:   <state name="CHOOSE_FROM_SUBDIR" title="Select File(s) from <b><small>$subdir</small></b> to print">
 1128:     <message>(mark them then click "next" button) <br /></message>
 1129:     <files variable="FILES" multichoice='1'>
 1130:       <nextstate>PAGESIZE</nextstate>
 1131:       <filechoice>return '$subdir';</filechoice>
 1132: CHOOSE_FROM_SUBDIR
 1133:         
 1134:         $xmlfrag .= <<'CHOOSE_FROM_SUBDIR';
 1135:       <filefilter>return $filename =~ 
 1136:            m/\.(problem|exam|quiz|assess|survey|form|library)$/;
 1137:       </filefilter>
 1138:       </files>
 1139:     </state>
 1140: CHOOSE_FROM_SUBDIR
 1141:         &Apache::lonxml::xmlparse($r, 'helper', $xmlfrag);
 1142:     }
 1143: 
 1144:     # Generate the first state, to select which resources get printed.
 1145:     Apache::lonhelper::state->new("START", "What do you want to print? Make a choice.");
 1146:     $paramHash = Apache::lonhelper::getParamHash();
 1147:     $paramHash->{MESSAGE_TEXT} = "";
 1148:     Apache::lonhelper::message->new();
 1149:     $paramHash = Apache::lonhelper::getParamHash();
 1150:     $paramHash->{'variable'} = 'PRINT_TYPE';
 1151:     $helper->declareVar('PRINT_TYPE');
 1152:     $paramHash->{CHOICES} = $printChoices;
 1153:     Apache::lonhelper::choices->new();
 1154: 
 1155:     if (($ENV{'request.role.adv'} and &Apache::lonnet::allowed('vgr',$ENV{'request.course.id'})) or 
 1156: 	($helper->{VARS}->{'construction'} eq '1')) {
 1157:         $paramHash = Apache::lonhelper::getParamHash();
 1158:         $paramHash->{MESSAGE_TEXT} = "<br /><big><b><i>Next option is available only for advanced users:</i></b></big><br />";
 1159:         Apache::lonhelper::message->new();
 1160:         $paramHash = Apache::lonhelper::getParamHash();
 1161: 	$paramHash->{'variable'} = 'ANSWER_TYPE';   
 1162: 	$helper->declareVar('ANSWER_TYPE');         
 1163:         $paramHash->{CHOICES} = [
 1164:                                    ['Print without answer', 'yes'],
 1165:                                    ['Print with answers', 'no'] ];
 1166:         Apache::lonhelper::choices->new();
 1167:     }
 1168:     if ($ENV{'request.role.adv'}) {
 1169:         $paramHash = Apache::lonhelper::getParamHash();
 1170:         $paramHash->{MESSAGE_TEXT} = "<br /><big><b><i>Another option available only for advanced users:</i></b></big><br />";
 1171:         Apache::lonhelper::message->new();
 1172:         $paramHash = Apache::lonhelper::getParamHash();
 1173: 	$paramHash->{'variable'} = 'LATEX_TYPE';   
 1174: 	$helper->declareVar('LATEX_TYPE');  
 1175: 	if ($helper->{VARS}->{'construction'} eq '1') {       
 1176: 	    $paramHash->{CHOICES} = [
 1177: 				     ['Print in standard LaTeX mode', 'standard'], 
 1178: 				     ['Print in LaTeX batchmode', 'batchmode'], ];
 1179: 	} else {
 1180: 	    $paramHash->{CHOICES} = [
 1181: 				     ['Print in LaTeX batchmode', 'batchmode'],
 1182: 				     ['Print in standard LaTeX mode', 'standard'] ];
 1183: 	}
 1184:         Apache::lonhelper::choices->new();
 1185:     } 
 1186: 
 1187:     Apache::lonprintout::page_format_state->new("FORMAT");
 1188: 
 1189:     # Generate the PAGESIZE state which will offer the user the margin
 1190:     # choices if they select one column
 1191:     Apache::lonhelper::state->new("PAGESIZE", "Set Margins");
 1192:     Apache::lonprintout::page_size_state->new('pagesize', 'FORMAT', 'FINAL');
 1193: 
 1194: 
 1195:     $helper->process();
 1196: 
 1197:     # MANUAL BAILOUT CONDITION:
 1198:     # If we're in the "final" state, bailout and return to handler
 1199:     if ($helper->{STATE} eq 'FINAL') {
 1200:         return $helper;
 1201:     }    
 1202: 
 1203:     $r->print($helper->display());
 1204: 
 1205:     Apache::lonhelper::unregisterHelperTags();
 1206: 
 1207:     untie %hash;
 1208: 
 1209:     return OK;
 1210: }
 1211: 
 1212: 
 1213: 1;
 1214: 
 1215: package Apache::lonprintout::page_format_state;
 1216: 
 1217: =pod
 1218: 
 1219: =head1 Helper element: page_format_state
 1220: 
 1221: See lonhelper.pm documentation for discussion of the helper framework.
 1222: 
 1223: Apache::lonprintout::page_format_state is an element that gives the 
 1224: user an opportunity to select the page layout they wish to print 
 1225: with: Number of columns, portrait/landscape, and paper size. If you 
 1226: want to change the paper size choices, change the @paperSize array 
 1227: contents in this package.
 1228: 
 1229: page_format_state is always directly invoked in lonprintout.pm, so there
 1230: is no tag interface. You actually pass parameters to the constructor.
 1231: 
 1232: =over 4
 1233: 
 1234: =item * B<new>(varName): varName is where the print information will be stored in the format FIXME.
 1235: 
 1236: =back
 1237: 
 1238: =cut
 1239: 
 1240: use Apache::lonhelper;
 1241: 
 1242: no strict;
 1243: @ISA = ("Apache::lonhelper::element");
 1244: use strict;
 1245: 
 1246: my $maxColumns = 2;
 1247: my @paperSize = ("Letter [8 1/2x11 in]", "Legal [8 1/2x14 in]", 
 1248:                  "Ledger/Tabloid [11x17 in]", "Executive [7 1/2x10 in]",
 1249:                  "A2 [420x594 mm]", "A3 [297x420 mm]", "A4 [210x297 mm]", 
 1250:                  "A5 [148x210 mm]", "A6 [105x148 mm]" );
 1251: 
 1252: # Tentative format: Orientation (L = Landscape, P = portrait) | Colnum |
 1253: #                   Paper type
 1254: 
 1255: sub new { 
 1256:     my $self = Apache::lonhelper::element->new();
 1257: 
 1258:     shift;
 1259: 
 1260:     $self->{'variable'} = shift;
 1261:     my $helper = Apache::lonhelper::getHelper();
 1262:     $helper->declareVar($self->{'variable'});
 1263:     bless($self);
 1264:     return $self;
 1265: }
 1266: 
 1267: sub render {
 1268:     my $self = shift;
 1269:     my $helper = Apache::lonhelper::getHelper();
 1270:     my $result = '';
 1271:     my $var = $self->{'variable'};
 1272: 
 1273:     $result .= <<STATEHTML;
 1274: 
 1275: <p><big><i><b>What page format do you prefer?</b></i></big></p>
 1276: <table cellpadding="3">
 1277:   <tr>
 1278:     <td align="center"><b>Page layout</b></td>
 1279:     <td align="center"><b>Number of columns</b></td>
 1280:     <td align="center"><b>Paper type</b></td>
 1281:   </tr>
 1282:   <tr>
 1283:     <td>
 1284:       <input type="radio" name="${var}.layout" value="L" /> Landscape<br />
 1285:       <input type="radio" name="${var}.layout" value="P" checked='1'  /> Portrait
 1286:     </td>
 1287:     <td align="center">
 1288:       <select name="${var}.cols">
 1289: STATEHTML
 1290: 
 1291:     my $i;
 1292:     for ($i = 1; $i <= $maxColumns; $i++) {
 1293:         if ($i == 2) {
 1294:             $result .= "<option value='$i' selected>$i</option>\n";
 1295:         } else {
 1296:             $result .= "<option value='$i'>$i</option>\n";
 1297:         }
 1298:     }
 1299: 
 1300:     $result .= "</select></td><td>\n";
 1301:     $result .= "<select name='${var}.paper'>\n";
 1302: 
 1303:     $i = 0;
 1304:     foreach (@paperSize) {
 1305:         if ($i == 0) {
 1306:             $result .= "<option selected value='$i'>" . $paperSize[$i] . "</option>\n";
 1307:         } else {
 1308:             $result .= "<option value='$i'>" . $paperSize[$i] . "</option>\n";
 1309:         }
 1310:         $i++;
 1311:     }
 1312: 
 1313:     $result .= "</select></td></tr></table>";
 1314:     return $result;
 1315: }
 1316: 
 1317: sub postprocess {
 1318:     my $self = shift;
 1319: 
 1320:     my $var = $self->{'variable'};
 1321:     my $helper = Apache::lonhelper->getHelper();
 1322:     $helper->{VARS}->{$var} = 
 1323:         $ENV{"form.$var.layout"} . '|' . $ENV{"form.$var.cols"} . '|' .
 1324:         $ENV{"form.$var.paper"};
 1325:     return 1;
 1326: }
 1327: 
 1328: 1;
 1329: 
 1330: package Apache::lonprintout::page_size_state;
 1331: 
 1332: =pod
 1333: 
 1334: =head1 Helper element: page_size_state
 1335: 
 1336: See lonhelper.pm documentation for discussion of the helper framework.
 1337: 
 1338: Apache::lonprintout::page_size_state is an element that gives the 
 1339: user the opportunity to further refine the page settings if they
 1340: select a single-column page.
 1341: 
 1342: page_size_state is always directly invoked in lonprintout.pm, so there
 1343: is no tag interface. You actually pass parameters to the constructor.
 1344: 
 1345: =over 4
 1346: 
 1347: =item * B<new>(varName): varName is where the print information will be stored in the format FIXME.
 1348: 
 1349: =back
 1350: 
 1351: =cut
 1352: 
 1353: use Apache::lonhelper;
 1354: 
 1355: no strict;
 1356: @ISA = ("Apache::lonhelper::element");
 1357: use strict;
 1358: 
 1359: 
 1360: 
 1361: sub new { 
 1362:     my $self = Apache::lonhelper::element->new();
 1363: 
 1364:     shift; # disturbs me (probably prevents subclassing) but works (drops
 1365:            # package descriptor)... - Jeremy
 1366: 
 1367:     $self->{'variable'} = shift;
 1368:     my $helper = Apache::lonhelper::getHelper();
 1369:     $helper->declareVar($self->{'variable'});
 1370: 
 1371:     # The variable name of the format element, so we can look into 
 1372:     # $helper->{VARS} to figure out whether the columns are one or two
 1373:     $self->{'formatvar'} = shift;
 1374: 
 1375:     # The state to transition to after selection, or after discovering
 1376:     # the cols are not set to 1
 1377:     $self->{NEXTSTATE} = shift;
 1378:     bless($self);
 1379:     return $self;
 1380: }
 1381: 
 1382: sub render {
 1383:     my $self = shift;
 1384:     my $helper = Apache::lonhelper::getHelper();
 1385:     my $result = '';
 1386:     my $var = $self->{'variable'};
 1387: 
 1388:     if (defined $self->{ERROR_MSG}) {
 1389:         $result .= '<br /><font color="#FF0000">' . $self->{ERROR_MSG} . '</font><br />';
 1390:     }
 1391: 
 1392:     $result .= <<ELEMENTHTML;
 1393: 
 1394: <p>How should the column be formatted?</p>
 1395: 
 1396: <table cellpadding='3'>
 1397:   <tr>
 1398:     <td align='right'><b>Width</b>:</td>
 1399:     <td align='left'><input type='text' name='$var.width' value='18' size='4'></td>
 1400:     <td align='left'>
 1401:       <select name='$var.widthunit'>
 1402:         <option>cm</option><option>in</option>
 1403:       </select>
 1404:     </td>
 1405:   </tr>
 1406:   <tr>
 1407:     <td align='right'><b>Height</b>:</td>
 1408:     <td align='left'><input type='text' name="$var.height" value="25.9" size='4'></td>
 1409:     <td align='left'>
 1410:       <select name='$var.heightunit'>
 1411:         <option>cm</option><option>in</option>
 1412:       </select>
 1413:     </td>
 1414:   </tr>
 1415:   <tr>
 1416:     <td align='right'><b>Left margin</b>:</td>
 1417:     <td align='left'><input type='text' name='$var.lmargin' value='-1.5' size='4'></td>
 1418:     <td align='left'>
 1419:       <select name='$var.lmarginunit'>
 1420:         <option>cm</option><option>in</option>
 1421:       </select>
 1422:     </td>
 1423:   </tr>
 1424: </table>
 1425: 
 1426: <p>Hint: Some instructors like to leave scratch space for the student by
 1427: making the width much smaller then the width of the page.</p>
 1428: 
 1429: ELEMENTHTML
 1430: 
 1431:     return $result;
 1432: }
 1433: 
 1434: # If the user didn't select 1 column, skip this state.
 1435: sub preprocess {
 1436:     my $self = shift;
 1437:     my $helper = Apache::lonhelper::getHelper();
 1438: 
 1439:     my $format = $helper->{VARS}->{$self->{'formatvar'}};
 1440:     if (substr($format, 2, 1) ne '1') {
 1441:         $helper->changeState($self->{NEXTSTATE});
 1442:     }
 1443:    
 1444:     return 1;
 1445: }
 1446: 
 1447: sub postprocess {
 1448:     my $self = shift;
 1449: 
 1450:     my $var = $self->{'variable'};
 1451:     my $helper = Apache::lonhelper->getHelper();
 1452:     my $width = $helper->{VARS}->{$var .'.width'} = $ENV{"form.${var}.width"}; 
 1453:     my $height = $helper->{VARS}->{$var .'.height'} = $ENV{"form.${var}.height"}; 
 1454:     my $lmargin = $helper->{VARS}->{$var .'.lmargin'} = $ENV{"form.${var}.lmargin"}; 
 1455:     $helper->{VARS}->{$var .'.widthunit'} = $ENV{"form.${var}.widthunit"}; 
 1456:     $helper->{VARS}->{$var .'.heightunit'} = $ENV{"form.${var}.heightunit"}; 
 1457:     $helper->{VARS}->{$var .'.lmarginunit'} = $ENV{"form.${var}.lmarginunit"}; 
 1458: 
 1459:     my $error = '';
 1460: 
 1461:     # /^-?[0-9]+(\.[0-9]*)?$/ -> optional minus, at least on digit, followed 
 1462:     # by an optional period, followed by digits, ending the string
 1463: 
 1464:     if ($width !~  /^-?[0-9]+(\.[0-9]*)?$/) {
 1465:         $error .= "Invalid width; please type only a number.<br />\n";
 1466:     }
 1467:     if ($height !~  /^-?[0-9]+(\.[0-9]*)?$/) {
 1468:         $error .= "Invalid height; please type only a number.<br />\n";
 1469:     }
 1470:     if ($lmargin !~  /^-?[0-9]+(\.[0-9]*)?$/) {
 1471:         $error .= "Invalid left margin; please type only a number.<br />\n";
 1472:     }
 1473: 
 1474:     if (!$error) {
 1475:         Apache::lonhelper::getHelper()->changeState($self->{NEXTSTATE});
 1476:         return 1;
 1477:     } else {
 1478:         $self->{ERROR_MSG} = $error;
 1479:         return 0;
 1480:     }
 1481: }
 1482: 
 1483: 
 1484: 
 1485: __END__
 1486: 

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