File:  [LON-CAPA] / loncom / interface / lonprintout.pm
Revision 1.247: download - view: text, annotated - select for diffs
Thu Oct 2 15:33:03 2003 UTC (20 years, 8 months ago) by sakharuk
Branches: MAIN
CVS tags: HEAD
Bug created during submission of version 1.241 at 09.29.2003 is fixed.
It appeared that instead of printing the assignment name (when you print from the whole course) the ref on array was printed.

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

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