Annotation of loncom/xml/lonxml.pm, revision 1.396
1.2 sakharuk 1: # The LearningOnline Network with CAPA
1.3 sakharuk 2: # XML Parser Module
1.2 sakharuk 3: #
1.396 ! foxr 4: # $Id: lonxml.pm,v 1.395 2006/01/13 10:33:25 albertel Exp $
1.139 www 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: # Copyright for TtHfunc and TtMfunc by Ian Hutchinson.
29: # TtHfunc and TtMfunc (the "Code") may be compiled and linked into
30: # binary executable programs or libraries distributed by the
31: # Michigan State University (the "Licensee"), but any binaries so
32: # distributed are hereby licensed only for use in the context
33: # of a program or computational system for which the Licensee is the
34: # primary author or distributor, and which performs substantial
35: # additional tasks beyond the translation of (La)TeX into HTML.
36: # The C source of the Code may not be distributed by the Licensee
37: # to any other parties under any circumstances.
38: #
1.316 albertel 39:
1.2 sakharuk 40:
1.4 albertel 41: package Apache::lonxml;
1.33 www 42: use vars
1.320 www 43: qw(@pwd @outputstack $redirection $import @extlinks $metamode $evaluate %insertlist @namespace $errorcount $warningcount @htmlareafields);
1.1 sakharuk 44: use strict;
1.167 albertel 45: use HTML::LCParser();
1.161 albertel 46: use HTML::TreeBuilder();
47: use HTML::Entities();
48: use Safe();
49: use Safe::Hole();
50: use Math::Cephes();
51: use Math::Random();
52: use Opcode();
1.271 www 53: use POSIX qw(strftime);
1.339 albertel 54: use Time::HiRes qw( gettimeofday tv_interval );
1.393 albertel 55: use Symbol();
1.266 bowersj2 56:
1.72 albertel 57: sub register {
1.141 albertel 58: my ($space,@taglist) = @_;
59: foreach my $temptag (@taglist) {
60: push(@{ $Apache::lonxml::alltags{$temptag} },$space);
1.72 albertel 61: }
62: }
63:
1.141 albertel 64: sub deregister {
65: my ($space,@taglist) = @_;
66: foreach my $temptag (@taglist) {
67: my $tempspace = $Apache::lonxml::alltags{$temptag}[-1];
68: if ($tempspace eq $space) {
69: pop(@{ $Apache::lonxml::alltags{$temptag} });
70: }
71: }
1.142 albertel 72: #&printalltags();
1.141 albertel 73: }
74:
1.46 www 75: use Apache::Constants qw(:common);
1.161 albertel 76: use Apache::lontexconvert();
77: use Apache::style();
78: use Apache::run();
79: use Apache::londefdef();
80: use Apache::scripttag();
1.285 www 81: use Apache::languagetags();
1.161 albertel 82: use Apache::edit();
1.266 bowersj2 83: use Apache::inputtags();
84: use Apache::outputtags();
1.372 albertel 85: use Apache::lonnet;
1.161 albertel 86: use Apache::File();
87: use Apache::loncommon();
1.198 www 88: use Apache::lonfeedback();
1.200 www 89: use Apache::lonmsg();
1.217 matthew 90: use Apache::loncacc();
1.280 www 91: use Apache::lonlocal;
1.79 www 92:
1.72 albertel 93: #================================================== Main subroutine: xmlparse
94: #debugging control, to turn on debugging modify the correct handler
95: $Apache::lonxml::debug=0;
1.206 albertel 96:
97: # keeps count of the number of warnings and errors generated in a parse
98: $warningcount=0;
99: $errorcount=0;
1.72 albertel 100:
101: #path to the directory containing the file currently being processed
102: @pwd=();
103:
104: #these two are used for capturing a subset of the output for later processing,
105: #don't touch them directly use &startredirection and &endredirection
106: @outputstack = ();
107: $redirection = 0;
108:
109: #controls wheter the <import> tag actually does
110: $import = 1;
111: @extlinks=();
112:
113: # meta mode is a bit weird only some output is to be turned off
114: #<output> tag turns metamode off (defined in londefdef.pm)
115: $metamode = 0;
116:
117: # turns on and of run::evaluate actually derefencing var refs
118: $evaluate = 1;
1.7 albertel 119:
1.74 albertel 120: # data structure for eidt mode, determines what tags can go into what other tags
121: %insertlist=();
1.68 www 122:
1.99 albertel 123: # stores the list of active tag namespaces
1.76 albertel 124: @namespace=();
125:
1.99 albertel 126: # has the dynamic menu been updated to know about this resource
127: $Apache::lonxml::registered=0;
128:
1.172 albertel 129: # a pointer the the Apache request object
130: $Apache::lonxml::request='';
131:
1.216 sakharuk 132: # a problem number counter, and check on ether it is used
1.237 sakharuk 133: $Apache::lonxml::counter=1;
1.204 albertel 134: $Apache::lonxml::counter_changed=0;
135:
1.212 albertel 136: #internal check on whether to look at style defs
137: $Apache::lonxml::usestyle=1;
1.260 albertel 138:
139: #locations used to store the parameter string for style substitutions
140: $Apache::lonxml::style_values='';
141: $Apache::lonxml::style_end_values='';
1.212 albertel 142:
1.281 albertel 143: #array of ssi calls that need to occur after we are done parsing
144: @Apache::lonxml::ssi_info=();
145:
1.282 albertel 146: #should we do the postag variable interpolation
147: $Apache::lonxml::post_evaluate=1;
148:
1.295 albertel 149: #a header message to emit in the case of any generated warning or errors
150: $Apache::lonxml::warnings_error_header='';
151:
1.396 ! foxr 152: # Control whether or not LaTeX symbols should be substituted for their
! 153: # \ style equivalents...this may be turned off e.g. in an verbatim
! 154: # environment.
! 155:
! 156: $Apache::lonxml::substitute_LaTeX_symbols = 1; # Starts out on.
! 157:
! 158: sub enable_LaTeX_substitutions {
! 159: $Apache::lonxml::substitute_LaTeX_symbols = 1;
! 160: }
! 161: sub disable_LaTeX_substitutions {
! 162: $Apache::lonxml::substitute_LaTeX_symbols = 0;
! 163: }
! 164:
1.68 www 165: sub xmlbegin {
1.356 albertel 166: my ($style)=@_;
167: my $output='';
168: @htmlareafields=();
1.372 albertel 169: if ($env{'browser.mathml'}) {
1.356 albertel 170: $output='<?xml version="1.0"?>'
1.357 albertel 171: #.'<?xml-stylesheet type="text/css" href="/adm/MathML/mathml.css"?>'."\n"
172: # .'<!DOCTYPE html SYSTEM "/adm/MathML/mathml.dtd" '
173:
174: # .'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" [<!ENTITY mathns "http://www.w3.org/1998/Math/MathML">] >'
175: .'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">'
1.68 www 176: .'<html xmlns:math="http://www.w3.org/1998/Math/MathML" '
1.357 albertel 177: .'xmlns="http://www.w3.org/1999/xhtml">';
1.356 albertel 178: } else {
179: $output='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html>';
180: }
181: if ($style eq 'encode') {
182: $output=&HTML::Entities::encode($output,'<>&"');
183: }
184: return $output;
1.68 www 185: }
186:
187: sub xmlend {
1.335 sakharuk 188: my ($target,$parser)=@_;
1.278 www 189: my $mode='xml';
190: my $status='OPEN';
1.368 albertel 191: if ($Apache::lonhomework::parsing_a_problem ||
192: $Apache::lonhomework::parsing_a_task ) {
1.278 www 193: $mode='problem';
194: $status=$Apache::inputtags::status[-1];
195: }
1.362 matthew 196: my $discussion;
1.379 albertel 197: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
198: ['LONCAPA_INTERNAL_no_discussion']);
1.372 albertel 199: if (! exists($env{'form.LONCAPA_INTERNAL_no_discussion'}) ||
200: $env{'form.LONCAPA_INTERNAL_no_discussion'} ne 'true') {
1.362 matthew 201: $discussion=&Apache::lonfeedback::list_discussion($mode,$status);
202: }
1.334 sakharuk 203: if ($target eq 'tex') {
1.335 sakharuk 204: $discussion.='<tex>\keephidden{ENDOFPROBLEM}\vskip 0.5mm\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill}\end{document}</tex>';
1.334 sakharuk 205: &Apache::lonxml::newparser($parser,\$discussion,'');
206: return '';
207: } else {
1.360 albertel 208: return $discussion.&Apache::loncommon::endbodytag();
1.334 sakharuk 209: }
1.119 www 210: }
211:
212: sub tokeninputfield {
1.120 www 213: my $defhost=$Apache::lonnet::perlvar{'lonHostID'};
214: $defhost=~tr/a-z/A-Z/;
1.119 www 215: return (<<ENDINPUTFIELD)
1.226 albertel 216: <script type="text/javascript">
1.120 www 217: function updatetoken() {
218: var comp=new Array;
219: var barcode=unescape(document.tokeninput.barcode.value);
220: comp=barcode.split('*');
221: if (typeof(comp[0])!="undefined") {
222: document.tokeninput.codeone.value=comp[0];
223: }
224: if (typeof(comp[1])!="undefined") {
225: document.tokeninput.codetwo.value=comp[1];
226: }
227: if (typeof(comp[2])!="undefined") {
228: comp[2]=comp[2].toUpperCase();
229: document.tokeninput.codethree.value=comp[2];
230: }
231: document.tokeninput.barcode.value='';
232: }
233: </script>
234: <form method="post" name="tokeninput">
1.119 www 235: <table border="2" bgcolor="#FFFFBB">
236: <tr><th>DocID Checkin</th></tr>
237: <tr><td>
238: <table>
239: <tr>
240: <td>Scan in Barcode</td>
1.120 www 241: <td><input type="text" size="22" name="barcode"
242: onChange="updatetoken()"/></td>
1.119 www 243: </tr>
244: <tr><td><i>or</i> Type in DocID</td>
245: <td>
246: <input type="text" size="5" name="codeone" />
1.120 www 247: <b><font size="+2">*</font></b>
1.119 www 248: <input type="text" size="5" name="codetwo" />
1.120 www 249: <b><font size="+2">*</font></b>
250: <input type="text" size="10" name="codethree" value="$defhost"
251: onChange="this.value=this.value.toUpperCase()" />
1.119 www 252: </td></tr>
253: </table>
254: </td></tr>
255: <tr><td><input type="submit" value="Check in DocID" /></td></tr>
256: </table>
257: </form>
258: ENDINPUTFIELD
1.112 www 259: }
260:
1.116 www 261: sub maketoken {
1.118 www 262: my ($symb,$tuname,$tudom,$tcrsid)=@_;
1.112 www 263: unless ($symb) {
264: $symb=&Apache::lonnet::symbread();
265: }
266: unless ($tuname) {
1.372 albertel 267: $tuname=$env{'user.name'};
268: $tudom=$env{'user.domain'};
269: $tcrsid=$env{'request.course.id'};
1.112 www 270: }
1.116 www 271:
1.118 www 272: return &Apache::lonnet::checkout($symb,$tuname,$tudom,$tcrsid);
273: }
274:
275: sub printtokenheader {
1.133 albertel 276: my ($target,$token,$tsymb,$tcrsid,$tudom,$tuname)=@_;
1.116 www 277: unless ($token) { return ''; }
1.118 www 278:
1.133 albertel 279: my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
280: unless ($tsymb) {
281: $tsymb=$symb;
1.118 www 282: }
283: unless ($tuname) {
1.133 albertel 284: $tuname=$name;
285: $tudom=$domain;
286: $tcrsid=$courseid;
1.118 www 287: }
1.114 www 288:
1.390 albertel 289: my $plainname=&Apache::loncommon::plainname($tuname,$tudom);
1.114 www 290:
1.112 www 291: if ($target eq 'web') {
1.145 www 292: my %idhash=&Apache::lonnet::idrget($tudom,($tuname));
1.115 www 293: return
1.221 albertel 294: '<img align="right" src="/cgi-bin/barcode.png?encode='.$token.'" />'.
1.284 www 295: &mt('Checked out for').' '.$plainname.
296: '<br />'.&mt('User').': '.$tuname.' at '.$tudom.
297: '<br />'.&mt('ID').': '.$idhash{$tuname}.
298: '<br />'.&mt('CourseID').': '.$tcrsid.
1.372 albertel 299: '<br />'.&mt('Course').': '.$env{'course.'.$tcrsid.'.description'}.
1.284 www 300: '<br />'.&mt('DocID').': '.$token.
301: '<br />'.&mt('Time').': '.&Apache::lonlocal::locallocaltime().'<hr />';
1.112 www 302: } else {
1.121 albertel 303: return $token;
1.112 www 304: }
1.68 www 305: }
306:
1.356 albertel 307: sub fontsettings {
1.70 www 308: my $headerstring='';
1.372 albertel 309: if (($env{'browser.os'} eq 'mac') && (!$env{'browser.mathml'})) {
1.248 albertel 310: $headerstring.=
1.343 albertel 311: '<meta Content-Type="text/html; charset=x-mac-roman" />';
1.372 albertel 312: } elsif (!$env{'browser.mathml'} && $env{'browser.unicode'}) {
1.248 albertel 313: $headerstring.=
314: '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
1.70 www 315: }
316: return $headerstring;
1.68 www 317: }
318:
1.48 albertel 319: sub printalltags {
320: my $temp;
321: foreach $temp (sort keys %Apache::lonxml::alltags) {
1.141 albertel 322: &Apache::lonxml::debug("$temp -- ".
323: join(',',@{ $Apache::lonxml::alltags{$temp} }));
1.48 albertel 324: }
325: }
1.31 sakharuk 326:
1.3 sakharuk 327: sub xmlparse {
1.172 albertel 328: my ($request,$target,$content_file_string,$safeinit,%style_for_target) = @_;
1.96 albertel 329:
1.172 albertel 330: &setup_globals($request,$target);
1.232 albertel 331: &Apache::inputtags::initialize_inputtags();
1.370 albertel 332: &Apache::bridgetask::initialize_bridgetask();
1.232 albertel 333: &Apache::outputtags::initialize_outputtags();
334: &Apache::edit::initialize_edit();
1.287 albertel 335: &Apache::londefdef::initialize_londefdef();
1.244 albertel 336:
1.178 www 337: #
338: # do we have a course style file?
339: #
340:
1.372 albertel 341: if ($env{'request.course.id'} && $env{'request.state'} ne 'construct') {
1.178 www 342: my $bodytext=
1.372 albertel 343: $env{'course.'.$env{'request.course.id'}.'.default_xml_style'};
1.178 www 344: if ($bodytext) {
1.337 albertel 345: foreach my $file (split(',',$bodytext)) {
346: my $location=&Apache::lonnet::filelocation('',$file);
347: my $styletext=&Apache::lonnet::getfile($location);
348: if ($styletext ne '-1') {
349: %style_for_target = (%style_for_target,
350: &Apache::style::styleparser($target,$styletext));
351: }
352: }
353: }
1.372 albertel 354: } elsif ($env{'construct.style'} && ($env{'request.state'} eq 'construct')) {
355: my $location=&Apache::lonnet::filelocation('',$env{'construct.style'});
1.291 sakharuk 356: my $styletext=&Apache::lonnet::getfile($location);
357: if ($styletext ne '-1') {
358: %style_for_target = (%style_for_target,
359: &Apache::style::styleparser($target,$styletext));
360: }
1.178 www 361: }
1.255 sakharuk 362: #&printalltags();
1.16 albertel 363: my @pars = ();
1.372 albertel 364: my $pwd=$env{'request.filename'};
1.23 albertel 365: $pwd =~ s:/[^/]*$::;
366: &newparser(\@pars,\$content_file_string,$pwd);
1.24 sakharuk 367:
1.3 sakharuk 368: my $safeeval = new Safe;
1.40 albertel 369: my $safehole = new Safe::Hole;
1.82 ng 370: &init_safespace($target,$safeeval,$safehole,$safeinit);
1.3 sakharuk 371: #-------------------- Redefinition of the target in the case of compound target
372:
373: ($target, my @tenta) = split('&&',$target);
374:
1.150 albertel 375: my @stack = ();
1.3 sakharuk 376: my @parstack = ();
1.358 albertel 377: &initdepth();
378: &init_alarm();
1.101 albertel 379: my $finaloutput = &inner_xmlparse($target,\@stack,\@parstack,\@pars,
1.394 albertel 380: $safeeval,\%style_for_target,1);
1.255 sakharuk 381:
1.372 albertel 382: if ($env{'request.uri'}) {
383: &writeallows($env{'request.uri'});
1.125 www 384: }
1.281 albertel 385: &do_registered_ssi();
1.204 albertel 386: if ($Apache::lonxml::counter_changed) { &store_counter() }
1.393 albertel 387:
388: &clean_safespace($safeeval);
389:
1.372 albertel 390: if ($env{'form.return_only_error_and_warning_counts'}) {
1.361 www 391: return "$errorcount:$warningcount";
392: }
1.3 sakharuk 393: return $finaloutput;
1.106 www 394: }
395:
1.191 albertel 396: sub latex_special_symbols {
1.272 albertel 397: my ($string,$where)=@_;
1.396 ! foxr 398: #
! 399: # If e.g. in verbatim mode, then don't substitute.
! 400: # but return original string.
! 401: #
! 402: if (!($Apache::lonxml::substitute_LaTeX_symbols)) {
! 403: return $string;
! 404: }
1.235 sakharuk 405: if ($where eq 'header') {
1.272 albertel 406: $string =~ s/(\\|_|\^)/ /g;
1.311 albertel 407: $string =~ s/(\$|%|\{|\})/\\$1/g;
1.273 sakharuk 408: $string =~ s/_/ /g;
1.311 albertel 409: $string=&Apache::lonprintout::character_chart($string);
410: # any & or # leftover should be safe to just escape
411: $string=~s/([^\\])\&/$1\\\&/g;
412: $string=~s/([^\\])\#/$1\\\#/g;
1.229 sakharuk 413: } else {
1.312 albertel 414: $string=~s/\\/\\ensuremath{\\backslash}/g;
1.367 albertel 415: $string=~s/\\\%|\%/\\\%/g;
416: $string=~s/\\{|{/\\{/g;
417: $string=~s/\\}|}/\\}/g;
1.378 albertel 418: $string=~s/\\ensuremath\\{\\backslash\\}/\\ensuremath{\\backslash}/g;
1.367 albertel 419: $string=~s/\\\$|\$/\\\$/g;
420: $string=~s/\\\_|\_/\\\_/g;
1.313 albertel 421: $string=~s/([^\\]|^)(\~|\^)/$1\\$2\\strut /g;
1.310 sakharuk 422: $string=~s/(>|<)/\\ensuremath\{$1\}/g; #more or less
1.311 albertel 423: $string=&Apache::lonprintout::character_chart($string);
424: # any & or # leftover should be safe to just escape
1.367 albertel 425: $string=~s/\\\&|\&/\\\&/g;
426: $string=~s/\\\#|\#/\\\#/g;
1.332 sakharuk 427: $string=~s/\|/\$\\mid\$/g;
1.310 sakharuk 428: #single { or } How to escape?
1.229 sakharuk 429: }
1.272 albertel 430: return $string;
1.188 sakharuk 431: }
432:
1.101 albertel 433: sub inner_xmlparse {
1.394 albertel 434: my ($target,$stack,$parstack,$pars,$safeeval,$style_for_target,$start)=@_;
1.101 albertel 435: my $finaloutput = '';
436: my $result;
437: my $token;
1.258 albertel 438: my $dontpop=0;
1.389 albertel 439: my $startredirection = $Apache::lonxml::redirection;
1.101 albertel 440: while ( $#$pars > -1 ) {
441: while ($token = $$pars['-1']->get_token) {
1.261 albertel 442: if (($token->[0] eq 'T') || ($token->[0] eq 'C') ) {
1.101 albertel 443: if ($metamode<1) {
1.190 albertel 444: my $text=$token->[1];
1.193 albertel 445: if ($token->[0] eq 'C' && $target eq 'tex') {
1.239 sakharuk 446: $text = '';
447: # $text = '%'.$text."\n";
1.182 sakharuk 448: }
1.190 albertel 449: $result.=$text;
1.101 albertel 450: }
1.261 albertel 451: } elsif (($token->[0] eq 'D')) {
452: if ($metamode<1 && $target eq 'web') {
453: my $text=$token->[1];
454: $result.=$text;
455: }
1.101 albertel 456: } elsif ($token->[0] eq 'PI') {
1.261 albertel 457: if ($metamode<1 && $target eq 'web') {
1.101 albertel 458: $result=$token->[2];
459: }
460: } elsif ($token->[0] eq 'S') {
1.140 albertel 461: # add tag to stack
1.101 albertel 462: push (@$stack,$token->[1]);
463: # add parameters list to another stack
464: push (@$parstack,&parstring($token));
1.140 albertel 465: &increasedepth($token);
1.212 albertel 466: if ($Apache::lonxml::usestyle &&
467: exists($$style_for_target{$token->[1]})) {
468: $Apache::lonxml::usestyle=0;
469: my $string=$$style_for_target{$token->[1]}.
470: '<LONCAPA_INTERNAL_TURN_STYLE_ON />';
471: &Apache::lonxml::newparser($pars,\$string);
1.257 albertel 472: $Apache::lonxml::style_values=$$parstack[-1];
1.259 albertel 473: $Apache::lonxml::style_end_values=$$parstack[-1];
1.101 albertel 474: } else {
475: $result = &callsub("start_$token->[1]", $target, $token, $stack,
476: $parstack, $pars, $safeeval, $style_for_target);
1.140 albertel 477: }
1.101 albertel 478: } elsif ($token->[0] eq 'E') {
1.212 albertel 479: if ($Apache::lonxml::usestyle &&
480: exists($$style_for_target{'/'."$token->[1]"})) {
481: $Apache::lonxml::usestyle=0;
482: my $string=$$style_for_target{'/'.$token->[1]}.
1.258 albertel 483: '<LONCAPA_INTERNAL_TURN_STYLE_ON end="'.$token->[1].'" />';
1.212 albertel 484: &Apache::lonxml::newparser($pars,\$string);
1.259 albertel 485: $Apache::lonxml::style_values=$Apache::lonxml::style_end_values;
486: $Apache::lonxml::style_end_values='';
1.258 albertel 487: $dontpop=1;
1.101 albertel 488: } else {
1.258 albertel 489: #clear out any tags that didn't end
490: while ($token->[1] ne $$stack['-1'] && ($#$stack > -1)) {
491: my $lasttag=$$stack[-1];
1.317 albertel 492: if ($token->[1] =~ /^\Q$lasttag\E$/i) {
1.258 albertel 493: &Apache::lonxml::warning('Using tag </'.$token->[1].'> on line '.$token->[3].' as end tag to <'.$$stack[-1].'>');
494: last;
495: } else {
496: &Apache::lonxml::warning('Found tag </'.$token->[1].'> on line '.$token->[3].' when looking for </'.$$stack[-1].'> in file');
497: &end_tag($stack,$parstack,$token);
498: }
499: }
500: $result = &callsub("end_$token->[1]", $target, $token, $stack,
501: $parstack, $pars,$safeeval, $style_for_target);
1.101 albertel 502: }
503: } else {
504: &Apache::lonxml::error("Unknown token event :$token->[0]:$token->[1]:");
505: }
506: #evaluate variable refs in result
1.282 albertel 507: if ($Apache::lonxml::post_evaluate &&$result ne "") {
1.257 albertel 508: my $extras;
509: if (!$Apache::lonxml::usestyle) {
510: $extras=$Apache::lonxml::style_values;
511: }
1.101 albertel 512: if ( $#$parstack > -1 ) {
1.257 albertel 513: $result=&Apache::run::evaluate($result,$safeeval,$extras.$$parstack[-1]);
1.101 albertel 514: } else {
1.257 albertel 515: $result= &Apache::run::evaluate($result,$safeeval,$extras);
1.101 albertel 516: }
1.163 albertel 517: }
1.282 albertel 518: $Apache::lonxml::post_evaluate=1;
519:
1.190 albertel 520: if (($token->[0] eq 'T') || ($token->[0] eq 'C') || ($token->[0] eq 'D') ) {
1.249 albertel 521: #Style file definitions should be correct
1.250 albertel 522: if ($target eq 'tex' && ($Apache::lonxml::usestyle)) {
1.311 albertel 523: $result=&latex_special_symbols($result);
1.249 albertel 524: }
1.190 albertel 525: }
526:
1.169 albertel 527: if ($Apache::lonxml::redirection) {
528: $Apache::lonxml::outputstack['-1'] .= $result;
529: } else {
530: $finaloutput.=$result;
531: }
532: $result = '';
533:
1.258 albertel 534: if ($token->[0] eq 'E' && !$dontpop) {
1.101 albertel 535: &end_tag($stack,$parstack,$token);
536: }
1.258 albertel 537: $dontpop=0;
1.224 albertel 538: }
1.212 albertel 539: if ($#$pars > -1) {
540: pop @$pars;
541: pop @Apache::lonxml::pwd;
542: }
1.101 albertel 543: }
544:
545: # if ($target eq 'meta') {
546: # $finaloutput.=&endredirection;
547: # }
548:
1.394 albertel 549: if ( $start && $target eq 'grade') { &endredirection(); }
1.389 albertel 550: if ( $Apache::lonxml::redirection > $startredirection) {
551: while ($Apache::lonxml::redirection > $startredirection) {
552: $finaloutput .= &endredirection();
1.387 albertel 553: }
554: }
1.101 albertel 555: if (($ENV{'QUERY_STRING'}) && ($target eq 'web')) {
556: $finaloutput=&afterburn($finaloutput);
1.216 sakharuk 557: }
1.101 albertel 558: return $finaloutput;
559: }
1.67 www 560:
1.318 matthew 561: ##
562: ## Looks to see if there is a subroutine defined for this tag. If so, call it,
563: ## otherwise do not call it as we do not know what it is.
564: ##
1.7 albertel 565: sub callsub {
1.84 albertel 566: my ($sub,$target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.7 albertel 567: my $currentstring='';
1.72 albertel 568: my $nodefault;
1.7 albertel 569: {
1.59 albertel 570: my $sub1;
1.7 albertel 571: no strict 'refs';
1.68 www 572: my $tag=$token->[1];
1.236 www 573: # get utterly rid of extended html tags
574: if ($tag=~/^x\-/i) { return ''; }
1.141 albertel 575: my $space=$Apache::lonxml::alltags{$tag}[-1];
1.68 www 576: if (!$space) {
1.141 albertel 577: $tag=~tr/A-Z/a-z/;
1.68 www 578: $sub=~tr/A-Z/a-z/;
1.141 albertel 579: $space=$Apache::lonxml::alltags{$tag}[-1]
1.68 www 580: }
1.97 albertel 581:
582: my $deleted=0;
583: $Apache::lonxml::curdepth=join('_',@Apache::lonxml::depthcounter);
584: if (($token->[0] eq 'S') && ($target eq 'modified')) {
585: $deleted=&Apache::edit::handle_delete($space,$target,$token,$tagstack,
586: $parstack,$parser,$safeeval,
587: $style);
588: }
589: if (!$deleted) {
590: if ($space) {
1.220 albertel 591: #&Apache::lonxml::debug("Calling sub $sub in $space $metamode");
1.97 albertel 592: $sub1="$space\:\:$sub";
593: ($currentstring,$nodefault) = &$sub1($target,$token,$tagstack,
594: $parstack,$parser,$safeeval,
595: $style);
596: } else {
1.318 matthew 597: if ($target eq 'tex') {
598: # throw away tag name
599: return '';
600: }
1.220 albertel 601: #&Apache::lonxml::debug("NOT Calling sub $sub in $space $metamode");
1.97 albertel 602: if ($metamode <1) {
603: if (defined($token->[4]) && ($metamode < 1)) {
604: $currentstring = $token->[4];
605: } else {
606: $currentstring = $token->[2];
607: }
1.62 sakharuk 608: }
1.7 albertel 609: }
1.97 albertel 610: # &Apache::lonxml::debug("nodefalt:$nodefault:");
611: if ($currentstring eq '' && $nodefault eq '') {
612: if ($target eq 'edit') {
1.220 albertel 613: #&Apache::lonxml::debug("doing default edit for $token->[1]");
1.97 albertel 614: if ($token->[0] eq 'S') {
615: $currentstring = &Apache::edit::tag_start($target,$token);
616: } elsif ($token->[0] eq 'E') {
617: $currentstring = &Apache::edit::tag_end($target,$token);
618: }
619: } elsif ($target eq 'modified') {
620: if ($token->[0] eq 'S') {
621: $currentstring = $token->[4];
622: $currentstring.=&Apache::edit::handle_insert();
1.210 www 623: } elsif ($token->[0] eq 'E') {
624: $currentstring = $token->[2];
625: $currentstring.=&Apache::edit::handle_insertafter($token->[1]);
1.97 albertel 626: } else {
627: $currentstring = $token->[2];
628: }
1.72 albertel 629: }
630: }
1.7 albertel 631: }
632: use strict 'refs';
633: }
634: return $currentstring;
1.82 ng 635: }
636:
1.96 albertel 637: sub setup_globals {
1.172 albertel 638: my ($request,$target)=@_;
639: $Apache::lonxml::request=$request;
1.99 albertel 640: $Apache::lonxml::registered = 0;
1.325 www 641: @Apache::lonxml::htmlareafields=();
1.205 www 642: $errorcount=0;
643: $warningcount=0;
1.207 albertel 644: $Apache::lonxml::default_homework_loaded=0;
1.212 albertel 645: $Apache::lonxml::usestyle=1;
1.204 albertel 646: &init_counter();
1.101 albertel 647: @Apache::lonxml::pwd=();
1.124 albertel 648: @Apache::lonxml::extlinks=();
1.281 albertel 649: @Apache::lonxml::ssi_info=();
1.282 albertel 650: $Apache::lonxml::post_evaluate=1;
1.295 albertel 651: $Apache::lonxml::warnings_error_header='';
1.96 albertel 652: if ($target eq 'meta') {
653: $Apache::lonxml::redirection = 0;
654: $Apache::lonxml::metamode = 1;
655: $Apache::lonxml::evaluate = 1;
656: $Apache::lonxml::import = 0;
1.129 albertel 657: } elsif ($target eq 'answer') {
658: $Apache::lonxml::redirection = 0;
659: $Apache::lonxml::metamode = 1;
660: $Apache::lonxml::evaluate = 1;
661: $Apache::lonxml::import = 1;
1.96 albertel 662: } elsif ($target eq 'grade') {
1.387 albertel 663: &startredirection(); #ended in inner_xmlparse on exit
1.96 albertel 664: $Apache::lonxml::metamode = 0;
665: $Apache::lonxml::evaluate = 1;
666: $Apache::lonxml::import = 1;
667: } elsif ($target eq 'modified') {
668: $Apache::lonxml::redirection = 0;
669: $Apache::lonxml::metamode = 0;
670: $Apache::lonxml::evaluate = 0;
671: $Apache::lonxml::import = 0;
672: } elsif ($target eq 'edit') {
673: $Apache::lonxml::redirection = 0;
674: $Apache::lonxml::metamode = 0;
675: $Apache::lonxml::evaluate = 0;
676: $Apache::lonxml::import = 0;
1.163 albertel 677: } elsif ($target eq 'analyze') {
678: $Apache::lonxml::redirection = 0;
679: $Apache::lonxml::metamode = 0;
680: $Apache::lonxml::evaluate = 1;
681: $Apache::lonxml::import = 1;
1.96 albertel 682: } else {
683: $Apache::lonxml::redirection = 0;
684: $Apache::lonxml::metamode = 0;
685: $Apache::lonxml::evaluate = 1;
686: $Apache::lonxml::import = 1;
687: }
688: }
689:
1.82 ng 690: sub init_safespace {
691: my ($target,$safeeval,$safehole,$safeinit) = @_;
1.393 albertel 692: $safeeval->deny_only(':dangerous');
693: $safeeval->reval('use Math::Complex;');
1.383 albertel 694: $safeeval->permit_only(":default");
1.82 ng 695: $safeeval->permit("entereval");
696: $safeeval->permit(":base_math");
697: $safeeval->permit("sort");
1.286 albertel 698: $safeeval->permit("time");
1.371 albertel 699: $safeeval->deny("rand");
700: $safeeval->deny("srand");
1.82 ng 701: $safeeval->deny(":base_io");
1.102 albertel 702: $safehole->wrap(\&Apache::scripttag::xmlparse,$safeeval,'&xmlparse');
1.251 albertel 703: $safehole->wrap(\&Apache::outputtags::multipart,$safeeval,'&multipart');
1.82 ng 704: $safehole->wrap(\&Apache::lonnet::EXT,$safeeval,'&EXT');
1.324 albertel 705: $safehole->wrap(\&Apache::chemresponse::chem_standard_order,$safeeval,
706: '&chem_standard_order');
1.369 albertel 707: $safehole->wrap(\&Apache::response::check_status,$safeeval,'&check_status');
1.324 albertel 708:
1.82 ng 709: $safehole->wrap(\&Math::Cephes::asin,$safeeval,'&asin');
710: $safehole->wrap(\&Math::Cephes::acos,$safeeval,'&acos');
711: $safehole->wrap(\&Math::Cephes::atan,$safeeval,'&atan');
712: $safehole->wrap(\&Math::Cephes::sinh,$safeeval,'&sinh');
713: $safehole->wrap(\&Math::Cephes::cosh,$safeeval,'&cosh');
714: $safehole->wrap(\&Math::Cephes::tanh,$safeeval,'&tanh');
715: $safehole->wrap(\&Math::Cephes::asinh,$safeeval,'&asinh');
716: $safehole->wrap(\&Math::Cephes::acosh,$safeeval,'&acosh');
717: $safehole->wrap(\&Math::Cephes::atanh,$safeeval,'&atanh');
718: $safehole->wrap(\&Math::Cephes::erf,$safeeval,'&erf');
719: $safehole->wrap(\&Math::Cephes::erfc,$safeeval,'&erfc');
720: $safehole->wrap(\&Math::Cephes::j0,$safeeval,'&j0');
721: $safehole->wrap(\&Math::Cephes::j1,$safeeval,'&j1');
722: $safehole->wrap(\&Math::Cephes::jn,$safeeval,'&jn');
723: $safehole->wrap(\&Math::Cephes::jv,$safeeval,'&jv');
724: $safehole->wrap(\&Math::Cephes::y0,$safeeval,'&y0');
725: $safehole->wrap(\&Math::Cephes::y1,$safeeval,'&y1');
726: $safehole->wrap(\&Math::Cephes::yn,$safeeval,'&yn');
727: $safehole->wrap(\&Math::Cephes::yv,$safeeval,'&yv');
1.215 albertel 728:
729: $safehole->wrap(\&Math::Cephes::bdtr ,$safeeval,'&bdtr' );
730: $safehole->wrap(\&Math::Cephes::bdtrc ,$safeeval,'&bdtrc' );
731: $safehole->wrap(\&Math::Cephes::bdtri ,$safeeval,'&bdtri' );
732: $safehole->wrap(\&Math::Cephes::btdtr ,$safeeval,'&btdtr' );
733: $safehole->wrap(\&Math::Cephes::chdtr ,$safeeval,'&chdtr' );
734: $safehole->wrap(\&Math::Cephes::chdtrc,$safeeval,'&chdtrc');
735: $safehole->wrap(\&Math::Cephes::chdtri,$safeeval,'&chdtri');
736: $safehole->wrap(\&Math::Cephes::fdtr ,$safeeval,'&fdtr' );
737: $safehole->wrap(\&Math::Cephes::fdtrc ,$safeeval,'&fdtrc' );
738: $safehole->wrap(\&Math::Cephes::fdtri ,$safeeval,'&fdtri' );
739: $safehole->wrap(\&Math::Cephes::gdtr ,$safeeval,'&gdtr' );
740: $safehole->wrap(\&Math::Cephes::gdtrc ,$safeeval,'&gdtrc' );
741: $safehole->wrap(\&Math::Cephes::nbdtr ,$safeeval,'&nbdtr' );
742: $safehole->wrap(\&Math::Cephes::nbdtrc,$safeeval,'&nbdtrc');
743: $safehole->wrap(\&Math::Cephes::nbdtri,$safeeval,'&nbdtri');
744: $safehole->wrap(\&Math::Cephes::ndtr ,$safeeval,'&ndtr' );
745: $safehole->wrap(\&Math::Cephes::ndtri ,$safeeval,'&ndtri' );
746: $safehole->wrap(\&Math::Cephes::pdtr ,$safeeval,'&pdtr' );
747: $safehole->wrap(\&Math::Cephes::pdtrc ,$safeeval,'&pdtrc' );
748: $safehole->wrap(\&Math::Cephes::pdtri ,$safeeval,'&pdtri' );
749: $safehole->wrap(\&Math::Cephes::stdtr ,$safeeval,'&stdtr' );
750: $safehole->wrap(\&Math::Cephes::stdtri,$safeeval,'&stdtri');
751:
1.383 albertel 752: $safehole->wrap(\&Math::Cephes::Matrix::mat,$safeeval,'&mat');
753: $safehole->wrap(\&Math::Cephes::Matrix::new,$safeeval,
754: '&Math::Cephes::Matrix::new');
755: $safehole->wrap(\&Math::Cephes::Matrix::coef,$safeeval,
756: '&Math::Cephes::Matrix::coef');
757: $safehole->wrap(\&Math::Cephes::Matrix::clr,$safeeval,
758: '&Math::Cephes::Matrix::clr');
759: $safehole->wrap(\&Math::Cephes::Matrix::add,$safeeval,
760: '&Math::Cephes::Matrix::add');
761: $safehole->wrap(\&Math::Cephes::Matrix::sub,$safeeval,
762: '&Math::Cephes::Matrix::sub');
763: $safehole->wrap(\&Math::Cephes::Matrix::mul,$safeeval,
764: '&Math::Cephes::Matrix::mul');
765: $safehole->wrap(\&Math::Cephes::Matrix::div,$safeeval,
766: '&Math::Cephes::Matrix::div');
767: $safehole->wrap(\&Math::Cephes::Matrix::inv,$safeeval,
768: '&Math::Cephes::Matrix::inv');
769: $safehole->wrap(\&Math::Cephes::Matrix::transp,$safeeval,
770: '&Math::Cephes::Matrix::transp');
771: $safehole->wrap(\&Math::Cephes::Matrix::simq,$safeeval,
772: '&Math::Cephes::Matrix::simq');
773: $safehole->wrap(\&Math::Cephes::Matrix::mat_to_vec,$safeeval,
774: '&Math::Cephes::Matrix::mat_to_vec');
775: $safehole->wrap(\&Math::Cephes::Matrix::vec_to_mat,$safeeval,
776: '&Math::Cephes::Matrix::vec_to_mat');
777: $safehole->wrap(\&Math::Cephes::Matrix::check,$safeeval,
778: '&Math::Cephes::Matrix::check');
779: $safehole->wrap(\&Math::Cephes::Matrix::check,$safeeval,
780: '&Math::Cephes::Matrix::check');
781:
1.215 albertel 782: # $safehole->wrap(\&Math::Cephes::new_fract,$safeeval,'&new_fract');
783: # $safehole->wrap(\&Math::Cephes::radd,$safeeval,'&radd');
784: # $safehole->wrap(\&Math::Cephes::rsub,$safeeval,'&rsub');
785: # $safehole->wrap(\&Math::Cephes::rmul,$safeeval,'&rmul');
786: # $safehole->wrap(\&Math::Cephes::rdiv,$safeeval,'&rdiv');
787: # $safehole->wrap(\&Math::Cephes::euclid,$safeeval,'&euclid');
788:
1.91 ng 789: $safehole->wrap(\&Math::Random::random_beta,$safeeval,'&math_random_beta');
790: $safehole->wrap(\&Math::Random::random_chi_square,$safeeval,'&math_random_chi_square');
791: $safehole->wrap(\&Math::Random::random_exponential,$safeeval,'&math_random_exponential');
792: $safehole->wrap(\&Math::Random::random_f,$safeeval,'&math_random_f');
793: $safehole->wrap(\&Math::Random::random_gamma,$safeeval,'&math_random_gamma');
794: $safehole->wrap(\&Math::Random::random_multivariate_normal,$safeeval,'&math_random_multivariate_normal');
795: $safehole->wrap(\&Math::Random::random_multinomial,$safeeval,'&math_random_multinomial');
796: $safehole->wrap(\&Math::Random::random_noncentral_chi_square,$safeeval,'&math_random_noncentral_chi_square');
797: $safehole->wrap(\&Math::Random::random_noncentral_f,$safeeval,'&math_random_noncentral_f');
798: $safehole->wrap(\&Math::Random::random_normal,$safeeval,'&math_random_normal');
799: $safehole->wrap(\&Math::Random::random_permutation,$safeeval,'&math_random_permutation');
1.93 ng 800: $safehole->wrap(\&Math::Random::random_permuted_index,$safeeval,'&math_random_permuted_index');
1.91 ng 801: $safehole->wrap(\&Math::Random::random_uniform,$safeeval,'&math_random_uniform');
802: $safehole->wrap(\&Math::Random::random_poisson,$safeeval,'&math_random_poisson');
803: $safehole->wrap(\&Math::Random::random_uniform_integer,$safeeval,'&math_random_uniform_integer');
804: $safehole->wrap(\&Math::Random::random_negative_binomial,$safeeval,'&math_random_negative_binomial');
805: $safehole->wrap(\&Math::Random::random_binomial,$safeeval,'&math_random_binomial');
806: $safehole->wrap(\&Math::Random::random_seed_from_phrase,$safeeval,'&random_seed_from_phrase');
807: $safehole->wrap(\&Math::Random::random_set_seed_from_phrase,$safeeval,'&random_set_seed_from_phrase');
808: $safehole->wrap(\&Math::Random::random_get_seed,$safeeval,'&random_get_seed');
809: $safehole->wrap(\&Math::Random::random_set_seed,$safeeval,'&random_set_seed');
1.305 albertel 810: $safehole->wrap(\&Apache::lonxml::error,$safeeval,'&LONCAPA_INTERNAL_ERROR');
1.311 albertel 811: $safehole->wrap(\&Apache::lonxml::debug,$safeeval,'&LONCAPA_INTERNAL_DEBUG');
1.322 albertel 812: $safehole->wrap(\&Apache::caparesponse::get_sigrange,$safeeval,'&LONCAPA_INTERNAL_get_sigrange');
1.91 ng 813:
1.82 ng 814: #need to inspect this class of ops
815: # $safeeval->deny(":base_orig");
1.331 albertel 816: $safeeval->permit("require");
1.91 ng 817: $safeinit .= ';$external::target="'.$target.'";';
1.82 ng 818: &Apache::run::run($safeinit,$safeeval);
1.373 albertel 819: &initialize_rndseed($safeeval);
820: }
1.303 albertel 821:
1.393 albertel 822: sub clean_safespace {
823: my ($safeeval) = @_;
824: delete_package_recurse($safeeval->{Root});
825: }
826:
827: sub delete_package_recurse {
828: my ($package) = @_;
829: my @subp;
830: {
831: no strict 'refs';
832: while (my ($key,$val) = each(%{*{"$package\::"}})) {
833: if (!defined($val)) { next; }
834: local (*ENTRY) = $val;
835: if (defined *ENTRY{HASH} && $key =~ /::$/ &&
836: $key ne "main::" && $key ne "<none>::")
837: {
838: my ($p) = $package ne "main" ? "$package\::" : "";
839: ($p .= $key) =~ s/::$//;
840: push(@subp,$p);
841: }
842: }
843: }
844: foreach my $p (@subp) {
845: delete_package_recurse($p);
846: }
847: Symbol::delete_package($package);
848: }
849:
1.373 albertel 850: sub initialize_rndseed {
851: my ($safeeval)=@_;
852: my $rndseed;
853: my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
854: $rndseed=&Apache::lonnet::rndseed($symb,$courseid,$domain,$name);
855: my $safeinit = '$external::randomseed="'.$rndseed.'";';
856: &Apache::lonxml::debug("Setting rndseed to $rndseed");
857: &Apache::run::run($safeinit,$safeeval);
1.207 albertel 858: }
859:
860: sub default_homework_load {
861: my ($safeeval)=@_;
862: &Apache::lonxml::debug('Loading default_homework');
863: my $default=&Apache::lonnet::getfile('/home/httpd/html/res/adm/includes/default_homework.lcpm');
1.241 albertel 864: if ($default eq -1) {
1.207 albertel 865: &Apache::lonxml::error("<b>Unable to find <i>default_homework.lcpm</i></b>");
866: } else {
867: &Apache::run::run($default,$safeeval);
868: $Apache::lonxml::default_homework_loaded=1;
869: }
1.17 albertel 870: }
871:
1.358 albertel 872: {
873: my $alarm_depth;
874: sub init_alarm {
875: alarm(0);
876: $alarm_depth=0;
877: }
878:
879: sub start_alarm {
880: if ($alarm_depth<1) {
881: my $old=alarm($Apache::lonnet::perlvar{'lonScriptTimeout'});
882: if ($old) {
883: &Apache::lonxml::error("Cancelled an alarm of $old, this shouldn't occur.");
884: }
885: }
886: $alarm_depth++;
887: }
888:
889: sub end_alarm {
890: $alarm_depth--;
891: if ($alarm_depth<1) { alarm(0); }
892: }
893: }
1.328 albertel 894: my $metamode_was;
1.55 albertel 895: sub startredirection {
1.328 albertel 896: if (!$Apache::lonxml::redirection) {
897: $metamode_was=$Apache::lonxml::metamode;
898: }
899: $Apache::lonxml::metamode=0;
900: $Apache::lonxml::redirection++;
901: push (@Apache::lonxml::outputstack, '');
1.55 albertel 902: }
903:
904: sub endredirection {
1.328 albertel 905: if (!$Apache::lonxml::redirection) {
1.380 www 906: &Apache::lonxml::error("Endredirection was called before a startredirection, perhaps you have unbalanced tags. Some debugging information:".join ":",caller);
1.328 albertel 907: return '';
908: }
909: $Apache::lonxml::redirection--;
910: if (!$Apache::lonxml::redirection) {
911: $Apache::lonxml::metamode=$metamode_was;
912: }
913: pop @Apache::lonxml::outputstack;
1.97 albertel 914: }
915:
916: sub end_tag {
917: my ($tagstack,$parstack,$token)=@_;
918: pop(@$tagstack);
919: pop(@$parstack);
920: &decreasedepth($token);
1.55 albertel 921: }
922:
1.17 albertel 923: sub initdepth {
924: @Apache::lonxml::depthcounter=();
925: $Apache::lonxml::depth=-1;
926: $Apache::lonxml::olddepth=-1;
927: }
928:
1.339 albertel 929: my @timers;
930: my $lasttime;
1.17 albertel 931: sub increasedepth {
1.19 albertel 932: my ($token) = @_;
1.17 albertel 933: $Apache::lonxml::depth++;
934: $Apache::lonxml::depthcounter[$Apache::lonxml::depth]++;
935: if ($Apache::lonxml::depthcounter[$Apache::lonxml::depth]==1) {
936: $Apache::lonxml::olddepth=$Apache::lonxml::depth;
937: }
1.340 albertel 938: my $time;
939: if ($Apache::lonxml::debug eq "1") {
940: push(@timers,[&gettimeofday()]);
941: $time=&tv_interval($lasttime);
942: $lasttime=[&gettimeofday()];
943: }
1.339 albertel 944: my $spacing=' 'x($Apache::lonxml::depth-1);
1.42 albertel 945: my $curdepth=join('_',@Apache::lonxml::depthcounter);
1.339 albertel 946: &Apache::lonxml::debug("s$spacing$Apache::lonxml::depth : $Apache::lonxml::olddepth : $curdepth : $token->[1] : $time : \n");
1.54 albertel 947: #print "<br />s $Apache::lonxml::depth : $Apache::lonxml::olddepth : $curdepth : $token->[1]\n";
1.17 albertel 948: }
949:
950: sub decreasedepth {
1.19 albertel 951: my ($token) = @_;
1.17 albertel 952: $Apache::lonxml::depth--;
1.36 albertel 953: if ($Apache::lonxml::depth<$Apache::lonxml::olddepth-1) {
954: $#Apache::lonxml::depthcounter--;
955: $Apache::lonxml::olddepth=$Apache::lonxml::depth+1;
956: }
1.43 albertel 957: if ( $Apache::lonxml::depth < -1) {
1.280 www 958: &Apache::lonxml::warning(&mt("Missing tags, unable to properly run file."));
1.43 albertel 959: $Apache::lonxml::depth='-1';
960: }
1.340 albertel 961: my ($timer,$time);
962: if ($Apache::lonxml::debug eq "1") {
963: $timer=pop(@timers);
964: $time=&tv_interval($lasttime);
965: $lasttime=[&gettimeofday()];
966: }
1.339 albertel 967: my $spacing=' 'x$Apache::lonxml::depth;
1.42 albertel 968: my $curdepth=join('_',@Apache::lonxml::depthcounter);
1.339 albertel 969: &Apache::lonxml::debug("e$spacing$Apache::lonxml::depth : $Apache::lonxml::olddepth : $curdepth : $token->[1] : $time : ".&tv_interval($timer)."\n");
1.54 albertel 970: #print "<br />e $Apache::lonxml::depth : $Apache::lonxml::olddepth : $token->[1] : $curdepth\n";
1.1 sakharuk 971: }
1.19 albertel 972:
1.180 albertel 973: sub get_all_text_unbalanced {
1.190 albertel 974: #there is a copy of this in lonpublisher.pm
1.326 albertel 975: my($tag,$pars)= @_;
976: my $token;
977: my $result='';
978: $tag='<'.$tag.'>';
979: while ($token = $$pars[-1]->get_token) {
980: if (($token->[0] eq 'T')||($token->[0] eq 'C')||($token->[0] eq 'D')) {
1.386 albertel 981: if ($token->[0] eq 'T' && $token->[2]) {
1.382 albertel 982: $result.='<![CDATA['.$token->[1].']]>';
983: } else {
984: $result.=$token->[1];
985: }
1.326 albertel 986: } elsif ($token->[0] eq 'PI') {
987: $result.=$token->[2];
988: } elsif ($token->[0] eq 'S') {
989: $result.=$token->[4];
990: } elsif ($token->[0] eq 'E') {
991: $result.=$token->[2];
992: }
993: if ($result =~ /\Q$tag\E/is) {
994: ($result,my $redo)=$result =~ /(.*)\Q$tag\E(.*)/is;
995: #&Apache::lonxml::debug('Got a winner with leftovers ::'.$2);
996: #&Apache::lonxml::debug('Result is :'.$1);
997: $redo=$tag.$redo;
998: &Apache::lonxml::newparser($pars,\$redo);
999: last;
1000: }
1001: }
1002: return $result
1.204 albertel 1003: }
1004:
1005: sub increment_counter {
1.247 albertel 1006: my ($increment) = @_;
1.289 sakharuk 1007: if (defined($increment) && $increment gt 0) {
1008: $Apache::lonxml::counter+=$increment;
1009: } else {
1010: $Apache::lonxml::counter++;
1.247 albertel 1011: }
1.289 sakharuk 1012: $Apache::lonxml::counter_changed=1;
1.204 albertel 1013: }
1014:
1015: sub init_counter {
1.391 albertel 1016: if ($env{'request.state'} eq 'construct') {
1017: $Apache::lonxml::counter=1;
1018: $Apache::lonxml::counter_changed=1;
1019: } elsif (defined($env{'form.counter'})) {
1.372 albertel 1020: $Apache::lonxml::counter=$env{'form.counter'};
1.247 albertel 1021: $Apache::lonxml::counter_changed=0;
1.237 sakharuk 1022: } else {
1.204 albertel 1023: $Apache::lonxml::counter=1;
1.247 albertel 1024: $Apache::lonxml::counter_changed=1;
1.204 albertel 1025: }
1026: }
1027:
1028: sub store_counter {
1029: &Apache::lonnet::appenv(('form.counter' => $Apache::lonxml::counter));
1030: return '';
1.180 albertel 1031: }
1032:
1.19 albertel 1033: sub get_all_text {
1.270 albertel 1034: my($tag,$pars,$style)= @_;
1035: my $gotfullstack=1;
1036: if (ref($pars) ne 'ARRAY') {
1037: $gotfullstack=0;
1038: $pars=[$pars];
1039: }
1040: if (ref($style) ne 'HASH') {
1041: $style={};
1042: }
1043: my $depth=0;
1044: my $token;
1045: my $result='';
1046: if ( $tag =~ m:^/: ) {
1047: my $tag=substr($tag,1);
1048: #&Apache::lonxml::debug("have:$tag:");
1049: my $top_empty=0;
1050: while (($depth >=0) && ($#$pars > -1) && (!$top_empty)) {
1051: while (($depth >=0) && ($token = $$pars[-1]->get_token)) {
1052: #&Apache::lonxml::debug("e token:$token->[0]:$depth:$token->[1]:".$#$pars.":".$#Apache::lonxml::pwd);
1053: if (($token->[0] eq 'T')||($token->[0] eq 'C')||($token->[0] eq 'D')) {
1.382 albertel 1054: if ($token->[2]) {
1055: $result.='<![CDATA['.$token->[1].']]>';
1056: } else {
1057: $result.=$token->[1];
1058: }
1.270 albertel 1059: } elsif ($token->[0] eq 'PI') {
1060: $result.=$token->[2];
1061: } elsif ($token->[0] eq 'S') {
1.316 albertel 1062: if ($token->[1] =~ /^\Q$tag\E$/i) { $depth++; }
1063: if ($token->[1] =~ /^LONCAPA_INTERNAL_TURN_STYLE_ON$/) { $Apache::lonxml::usestyle=1; }
1064: if ($token->[1] =~ /^LONCAPA_INTERNAL_TURN_STYLE_OFF$/) { $Apache::lonxml::usestyle=0; }
1.270 albertel 1065: $result.=$token->[4];
1066: } elsif ($token->[0] eq 'E') {
1.316 albertel 1067: if ( $token->[1] =~ /^\Q$tag\E$/i) { $depth--; }
1.270 albertel 1068: #skip sending back the last end tag
1.283 albertel 1069: if ($depth == 0 && exists($$style{'/'.$token->[1]}) && $Apache::lonxml::usestyle) {
1.270 albertel 1070: my $string=
1071: '<LONCAPA_INTERNAL_TURN_STYLE_OFF end="yes" />'.
1072: $$style{'/'.$token->[1]}.
1073: $token->[2].
1074: '<LONCAPA_INTERNAL_TURN_STYLE_ON />';
1075: &Apache::lonxml::newparser($pars,\$string);
1076: #&Apache::lonxml::debug("reParsing $string");
1077: next;
1078: }
1079: if ($depth > -1) {
1080: $result.=$token->[2];
1081: } else {
1082: $$pars[-1]->unget_token($token);
1083: }
1084: }
1085: }
1086: if (($depth >=0) && ($#$pars == 0) ) { $top_empty=1; }
1087: if (($depth >=0) && ($#$pars > 0) ) {
1088: pop(@$pars);
1089: pop(@Apache::lonxml::pwd);
1090: }
1091: }
1092: if ($top_empty && $depth >= 0) {
1093: #never found the end tag ran out of text, throw error send back blank
1094: &error('Never found end tag for <'.$tag.
1095: '> current string <pre>'.
1.314 albertel 1096: &HTML::Entities::encode($result,'<>&"').
1.270 albertel 1097: '</pre>');
1098: if ($gotfullstack) {
1099: my $newstring='</'.$tag.'>'.$result;
1100: &Apache::lonxml::newparser($pars,\$newstring);
1101: }
1102: $result='';
1103: }
1104: } else {
1105: while ($#$pars > -1) {
1106: while ($token = $$pars[-1]->get_token) {
1107: #&Apache::lonxml::debug("s token:$token->[0]:$depth:$token->[1]");
1108: if (($token->[0] eq 'T')||($token->[0] eq 'C')||
1109: ($token->[0] eq 'D')) {
1.382 albertel 1110: if ($token->[2]) {
1111: $result.='<![CDATA['.$token->[1].']]>';
1112: } else {
1113: $result.=$token->[1];
1114: }
1.270 albertel 1115: } elsif ($token->[0] eq 'PI') {
1116: $result.=$token->[2];
1117: } elsif ($token->[0] eq 'S') {
1.316 albertel 1118: if ( $token->[1] =~ /^\Q$tag\E$/i) {
1.270 albertel 1119: $$pars[-1]->unget_token($token); last;
1120: } else {
1121: $result.=$token->[4];
1122: }
1.316 albertel 1123: if ($token->[1] =~ /^LONCAPA_INTERNAL_TURN_STYLE_ON$/) { $Apache::lonxml::usestyle=1; }
1124: if ($token->[1] =~ /^LONCAPA_INTERNAL_TURN_STYLE_OFF$/) { $Apache::lonxml::usestyle=0; }
1.270 albertel 1125: } elsif ($token->[0] eq 'E') {
1126: $result.=$token->[2];
1127: }
1128: }
1129: if (($#$pars > 0) ) {
1130: pop(@$pars);
1131: pop(@Apache::lonxml::pwd);
1132: } else { last; }
1133: }
1134: }
1135: #&Apache::lonxml::debug("Exit:$result:");
1136: return $result
1.19 albertel 1137: }
1138:
1.23 albertel 1139: sub newparser {
1140: my ($parser,$contentref,$dir) = @_;
1.167 albertel 1141: push (@$parser,HTML::LCParser->new($contentref));
1.365 albertel 1142: $$parser[-1]->xml_mode(1);
1143: $$parser[-1]->marked_sections(1);
1.23 albertel 1144: if ( $dir eq '' ) {
1145: push (@Apache::lonxml::pwd, $Apache::lonxml::pwd[$#Apache::lonxml::pwd]);
1146: } else {
1147: push (@Apache::lonxml::pwd, $dir);
1148: }
1149: }
1.1 sakharuk 1150:
1.8 albertel 1151: sub parstring {
1152: my ($token) = @_;
1153: my $temp='';
1.142 albertel 1154: foreach (@{$token->[3]}) {
1.35 www 1155: unless ($_=~/\W/) {
1.42 albertel 1156: my $val=$token->[2]->{$_};
1.231 albertel 1157: $val =~ s/([\%\@\\\"\'])/\\$1/g;
1.342 albertel 1158: $val =~ s/(\$[^{a-zA-Z_])/\\$1/g;
1.346 albertel 1159: $val =~ s/(\$)$/\\$1/;
1.51 albertel 1160: #if ($val =~ m/^[\%\@]/) { $val="\\".$val; }
1.267 sakharuk 1161: $temp .= "my \$$_=\"$val\";";
1.20 albertel 1162: }
1.142 albertel 1163: }
1.8 albertel 1164: return $temp;
1165: }
1.22 albertel 1166:
1.384 albertel 1167: sub extlink {
1168: my ($res,$exact)=@_;
1169: if (!$exact) {
1170: $res=&Apache::lonnet::hreflocation($Apache::lonxml::pwd[-1],$res);
1171: }
1172: push(@Apache::lonxml::extlinks,$res)
1173: }
1174:
1.34 www 1175: sub writeallows {
1.126 www 1176: unless ($#extlinks>=0) { return; }
1.377 albertel 1177: my $thisurl = &Apache::lonnet::clutter(shift);
1.372 albertel 1178: if ($env{'httpref.'.$thisurl}) {
1179: $thisurl=$env{'httpref.'.$thisurl};
1.111 www 1180: }
1.34 www 1181: my $thisdir=$thisurl;
1182: $thisdir=~s/\/[^\/]+$//;
1183: my %httpref=();
1.142 albertel 1184: foreach (@extlinks) {
1.34 www 1185: $httpref{'httpref.'.
1.125 www 1186: &Apache::lonnet::hreflocation($thisdir,$_)}=$thisurl;
1.142 albertel 1187: }
1.126 www 1188: @extlinks=();
1.34 www 1189: &Apache::lonnet::appenv(%httpref);
1190: }
1191:
1.281 albertel 1192: sub register_ssi {
1193: my ($url,%form)=@_;
1194: push (@Apache::lonxml::ssi_info,{'url'=>$url,'form'=>\%form});
1195: return '';
1196: }
1197:
1198: sub do_registered_ssi {
1199: foreach my $info (@Apache::lonxml::ssi_info) {
1200: my %form=%{ $info->{'form'}};
1201: my $url=$info->{'url'};
1202: &Apache::lonnet::ssi($url,%form);
1203: }
1204: }
1.66 www 1205: #
1206: # Afterburner handles anchors, highlights and links
1207: #
1208: sub afterburn {
1209: my $result=shift;
1.154 albertel 1210: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1211: ['highlight','anchor','link']);
1.372 albertel 1212: if ($env{'form.highlight'}) {
1213: foreach (split(/\,/,$env{'form.highlight'})) {
1.66 www 1214: my $anchorname=$_;
1215: my $matchthis=$anchorname;
1216: $matchthis=~s/\_+/\\s\+/g;
1.317 albertel 1217: $result=~s/(\Q$matchthis\E)/\<font color=\"red\"\>$1\<\/font\>/gs;
1.142 albertel 1218: }
1.66 www 1219: }
1.372 albertel 1220: if ($env{'form.link'}) {
1221: foreach (split(/\,/,$env{'form.link'})) {
1.66 www 1222: my ($anchorname,$linkurl)=split(/\>/,$_);
1223: my $matchthis=$anchorname;
1224: $matchthis=~s/\_+/\\s\+/g;
1.317 albertel 1225: $result=~s/(\Q$matchthis\E)/\<a href=\"$linkurl\"\>$1\<\/a\>/gs;
1.142 albertel 1226: }
1.66 www 1227: }
1.372 albertel 1228: if ($env{'form.anchor'}) {
1229: my $anchorname=$env{'form.anchor'};
1.66 www 1230: my $matchthis=$anchorname;
1231: $matchthis=~s/\_+/\\s\+/g;
1.317 albertel 1232: $result=~s/(\Q$matchthis\E)/\<a name=\"$anchorname\"\>$1\<\/a\>/s;
1.66 www 1233: $result.=(<<"ENDSCRIPT");
1.226 albertel 1234: <script type="text/javascript">
1.66 www 1235: document.location.hash='$anchorname';
1236: </script>
1237: ENDSCRIPT
1238: }
1239: return $result;
1240: }
1241:
1.79 www 1242: sub storefile {
1243: my ($file,$contents)=@_;
1.290 albertel 1244: &Apache::lonnet::correct_line_ends(\$contents);
1.79 www 1245: if (my $fh=Apache::File->new('>'.$file)) {
1246: print $fh $contents;
1247: $fh->close();
1.271 www 1248: return 1;
1.147 albertel 1249: } else {
1.271 www 1250: &warning("Unable to save file $file");
1251: return 0;
1.79 www 1252: }
1253: }
1254:
1.151 albertel 1255: sub createnewhtml {
1.321 www 1256: my $title=&mt('Title of document goes here');
1257: my $body=&mt('Body of document goes here');
1258: my $filecontents=(<<SIMPLECONTENT);
1.78 www 1259: <html>
1260: <head>
1.321 www 1261: <title>$title</title>
1.78 www 1262: </head>
1263: <body bgcolor="#FFFFFF">
1.321 www 1264: $body
1.78 www 1265: </body>
1266: </html>
1267: SIMPLECONTENT
1.321 www 1268: return $filecontents;
1.151 albertel 1269: }
1270:
1.274 albertel 1271: sub createnewsty {
1272: my $filecontents=(<<SIMPLECONTENT);
1273: <definetag name="">
1274: <render>
1275: <web></web>
1276: <tex></tex>
1277: </render>
1278: </definetag>
1279: SIMPLECONTENT
1280: return $filecontents;
1281: }
1282:
1.147 albertel 1283:
1.151 albertel 1284: sub inserteditinfo {
1.274 albertel 1285: my ($result,$filecontents,$filetype)=@_;
1.314 albertel 1286: $filecontents = &HTML::Entities::encode($filecontents,'<>&"');
1.147 albertel 1287: # my $editheader='<a href="#editsection">Edit below</a><hr />';
1.274 albertel 1288: my $xml_help = '';
1.321 www 1289: my $initialize='';
1.274 albertel 1290: if ($filetype eq 'html') {
1.323 www 1291: my $addbuttons=&Apache::lonhtmlcommon::htmlareaaddbuttons();
1.333 www 1292: $initialize=&Apache::lonhtmlcommon::htmlareaheaders().
1.347 albertel 1293: &Apache::lonhtmlcommon::spellheader();
1294: if (!&Apache::lonhtmlcommon::htmlareablocked() &&
1295: &Apache::lonhtmlcommon::htmlareabrowser()) {
1296: $initialize.=(<<FULLPAGE);
1.321 www 1297: <script type="text/javascript">
1.323 www 1298: $addbuttons
1299:
1.321 www 1300: HTMLArea.loadPlugin("FullPage");
1301:
1302: function initDocument() {
1.323 www 1303: var editor=new HTMLArea("filecont",config);
1.321 www 1304: editor.registerPlugin(FullPage);
1305: editor.generate();
1306: }
1307: </script>
1308: FULLPAGE
1.347 albertel 1309: } else {
1310: $initialize.=(<<FULLPAGE);
1311: <script type="text/javascript">
1312: $addbuttons
1313: function initDocument() {
1314: }
1315: </script>
1316: FULLPAGE
1317: }
1.321 www 1318: $result=~s/\<body([^\>]*)\>/\<body onload="initDocument()" $1\>/i;
1319: $xml_help=&Apache::loncommon::helpLatexCheatsheet();
1.274 albertel 1320: }
1321: my $cleanbut = '';
1.374 www 1322:
1.254 albertel 1323: my $titledisplay=&display_title();
1.280 www 1324: my %lt=&Apache::lonlocal::texthash('st' => 'Save this',
1325: 'vi' => 'View',
1326: 'ed' => 'Edit');
1.161 albertel 1327: my $buttons=(<<BUTTONS);
1.274 albertel 1328: $cleanbut
1.304 matthew 1329: <input type="submit" name="savethisfile" accesskey="s" value="$lt{'st'}" />
1330: <input type="submit" name="viewmode" accesskey="v" value="$lt{'vi'}" />
1.161 albertel 1331: BUTTONS
1.333 www 1332: $buttons.=&Apache::lonhtmlcommon::spelllink('xmledit','filecont');
1.338 albertel 1333: $buttons.=&Apache::lonhtmlcommon::htmlareaselectactive('filecont');
1.78 www 1334: my $editfooter=(<<ENDFOOTER);
1.321 www 1335: $initialize
1.78 www 1336: <hr />
1337: <a name="editsection" />
1.333 www 1338: <form method="post" name="xmledit">
1.240 albertel 1339: $xml_help
1.280 www 1340: <input type="hidden" name="editmode" value="$lt{'ed'}" />
1.170 www 1341: $buttons<br />
1.366 albertel 1342: <textarea style="width:100%" cols="80" rows="44" name="filecont" id="filecont">$filecontents</textarea>
1.170 www 1343: <br />$buttons
1.78 www 1344: <br />
1345: </form>
1.254 albertel 1346: $titledisplay
1.321 www 1347: </body>
1.78 www 1348: ENDFOOTER
1.147 albertel 1349: # $result=~s/(\<body[^\>]*\>)/$1$editheader/is;
1.78 www 1350: $result=~s/(\<\/body\>)/$editfooter/is;
1351: return $result;
1352: }
1353:
1.152 albertel 1354: sub get_target {
1.372 albertel 1355: my $viewgrades=&Apache::lonnet::allowed('vgr',$env{'request.course.id'});
1356: if ( $env{'request.state'} eq 'published') {
1357: if ( defined($env{'form.grade_target'})
1.152 albertel 1358: && ($viewgrades == 'F' )) {
1.372 albertel 1359: return ($env{'form.grade_target'});
1360: } elsif (defined($env{'form.grade_target'})) {
1361: if (($env{'form.grade_target'} eq 'web') ||
1362: ($env{'form.grade_target'} eq 'tex') ) {
1363: return $env{'form.grade_target'}
1.153 albertel 1364: } else {
1365: return 'web';
1366: }
1.152 albertel 1367: } else {
1368: return 'web';
1369: }
1.372 albertel 1370: } elsif ($env{'request.state'} eq 'construct') {
1371: if ( defined($env{'form.grade_target'})) {
1372: return ($env{'form.grade_target'});
1.152 albertel 1373: } else {
1374: return 'web';
1375: }
1376: } else {
1377: return 'web';
1378: }
1379: }
1380:
1.24 sakharuk 1381: sub handler {
1.255 sakharuk 1382: my $request=shift;
1383:
1384: my $target=&get_target();
1385:
1.372 albertel 1386: $Apache::lonxml::debug=$env{'user.debug'};
1.255 sakharuk 1387:
1.364 albertel 1388: &Apache::loncommon::content_type($request,'text/html');
1.255 sakharuk 1389: &Apache::loncommon::no_cache($request);
1.372 albertel 1390: if ($env{'request.state'} eq 'published') {
1.363 albertel 1391: $request->set_last_modified(&Apache::lonnet::metadata($request->uri,
1392: 'lastrevisiondate'));
1393: }
1.255 sakharuk 1394: $request->send_http_header;
1395:
1396: return OK if $request->header_only;
1.68 www 1397:
1398:
1.255 sakharuk 1399: my $file=&Apache::lonnet::filelocation("",$request->uri);
1.274 albertel 1400: my $filetype;
1401: if ($file =~ /\.sty$/) {
1402: $filetype='sty';
1403: } else {
1404: $filetype='html';
1405: }
1.78 www 1406: #
1407: # Edit action? Save file.
1408: #
1.372 albertel 1409: unless ($env{'request.state'} eq 'published') {
1.374 www 1410: if ($env{'form.savethisfile'}) {
1.372 albertel 1411: if (&storefile($file,$env{'form.filecont'})) {
1.309 albertel 1412: &Apache::lonxml::info("<font COLOR=\"#0000FF\">".
1413: &mt('Updated').": ".
1414: &Apache::lonlocal::locallocaltime(time).
1415: " </font>");
1.271 www 1416: }
1.255 sakharuk 1417: }
1418: }
1419: my %mystyle;
1420: my $result = '';
1421: my $filecontents=&Apache::lonnet::getfile($file);
1422: if ($filecontents eq -1) {
1.284 www 1423: my $bodytag=&Apache::loncommon::bodytag('File Error');
1424: my $fnf=&mt('File not found');
1.255 sakharuk 1425: $result=(<<ENDNOTFOUND);
1.78 www 1426: <html>
1427: <head>
1.284 www 1428: <title>$fnf</title>
1.78 www 1429: </head>
1.284 www 1430: $bodytag
1431: <b>$fnf: $file</b>
1.78 www 1432: </body>
1433: </html>
1434: ENDNOTFOUND
1.343 albertel 1435: $filecontents='';
1.372 albertel 1436: if ($env{'request.state'} ne 'published') {
1.274 albertel 1437: if ($filetype eq 'sty') {
1438: $filecontents=&createnewsty();
1439: } else {
1440: $filecontents=&createnewhtml();
1441: }
1.372 albertel 1442: $env{'form.editmode'}='Edit'; #force edit mode
1.255 sakharuk 1443: }
1444: } else {
1.372 albertel 1445: unless ($env{'request.state'} eq 'published') {
1.343 albertel 1446: if ($filecontents=~/BEGIN LON-CAPA Internal/) {
1.381 www 1447: &Apache::lonxml::error(&mt('This file appears to be a rendering of a LON-CAPA resource. If this is correct, this resource will act very oddly and incorrectly.'));
1.343 albertel 1448: }
1.264 www 1449: #
1450: # we are in construction space, see if edit mode forced
1.385 albertel 1451: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1452: ['editmode']);
1.255 sakharuk 1453: }
1.372 albertel 1454: if (!$env{'form.editmode'} || $env{'form.viewmode'}) {
1.255 sakharuk 1455: $result = &Apache::lonxml::xmlparse($request,$target,$filecontents,
1456: '',%mystyle);
1.368 albertel 1457: undef($Apache::lonhomework::parsing_a_task);
1.385 albertel 1458: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1459: ['rawmode']);
1.395 albertel 1460: if ($env{'form.rawmode'}) { $result = $filecontents; }
1.255 sakharuk 1461: }
1.147 albertel 1462: }
1.255 sakharuk 1463:
1.78 www 1464: #
1465: # Edit action? Insert editing commands
1466: #
1.372 albertel 1467: unless ($env{'request.state'} eq 'published') {
1468: if ($env{'form.editmode'} && (!($env{'form.viewmode'}))) {
1.255 sakharuk 1469: my $displayfile=$request->uri;
1470: $displayfile=~s/^\/[^\/]*//;
1.349 albertel 1471: my $bodytag='<body bgcolor="#FFFFFF">';
1.372 albertel 1472: if ($env{'environment.remote'} eq 'off') {
1.349 albertel 1473: $bodytag=&Apache::loncommon::bodytag();
1474: }
1475: $result='<html>'.$bodytag.
1.309 albertel 1476: &Apache::lonxml::message_location().'<h3>'.
1477: $displayfile.
1.255 sakharuk 1478: '</h3></body></html>';
1.274 albertel 1479: $result=&inserteditinfo($result,$filecontents,$filetype);
1.255 sakharuk 1480: }
1.147 albertel 1481: }
1.274 albertel 1482: if ($filetype eq 'html') { writeallows($request->uri); }
1483:
1.255 sakharuk 1484:
1.309 albertel 1485: &Apache::lonxml::add_messages(\$result);
1.255 sakharuk 1486: $request->print($result);
1487:
1488: return OK;
1.253 albertel 1489: }
1490:
1491: sub display_title {
1492: my $result;
1.372 albertel 1493: if ($env{'request.state'} eq 'construct') {
1.253 albertel 1494: my $title=&Apache::lonnet::gettitle();
1495: if (!defined($title) || $title eq '') {
1.372 albertel 1496: $title = $env{'request.filename'};
1.253 albertel 1497: $title = substr($title, rindex($title, '/') + 1);
1498: }
1499: $result = "<script type='text/javascript'>top.document.title = '$title - LON-CAPA Construction Space';</script>";
1500: }
1501: return $result;
1.24 sakharuk 1502: }
1.147 albertel 1503:
1.22 albertel 1504: sub debug {
1.298 albertel 1505: if ($Apache::lonxml::debug eq "1") {
1506: $|=1;
1.300 albertel 1507: my $request=$Apache::lonxml::request;
1.388 albertel 1508: if (!$request) {
1509: eval { $request=Apache->request; };
1510: }
1511: if (!$request) {
1512: eval { $request=Apache2::RequestUtil->request; };
1513: }
1.314 albertel 1514: $request->print('<font size="-2"><pre>DEBUG:'.&HTML::Entities::encode($_[0],'<>&"')."</pre></font>\n");
1.346 albertel 1515: #&Apache::lonnet::logthis($_[0]);
1.298 albertel 1516: }
1.22 albertel 1517: }
1.49 albertel 1518:
1.348 albertel 1519: sub show_error_warn_msg {
1.372 albertel 1520: if ($env{'request.filename'} eq '/home/httpd/html/res/lib/templates/simpleproblem.problem' &&
1521: &Apache::lonnet::allowed('mdc',$env{'request.course.id'})) {
1.351 albertel 1522: return 1;
1523: }
1.348 albertel 1524: return (($Apache::lonxml::debug eq 1) ||
1.372 albertel 1525: ($env{'request.state'} eq 'construct') ||
1.348 albertel 1526: ($Apache::lonhomework::browse eq 'F'
1527: &&
1.372 albertel 1528: $env{'form.show_errors'} eq 'on'));
1.348 albertel 1529: }
1530:
1.22 albertel 1531: sub error {
1.336 albertel 1532: $errorcount++;
1.348 albertel 1533: if ( &show_error_warn_msg() ) {
1.336 albertel 1534: # If printing in construction space, put the error inside <pre></pre>
1535: push(@Apache::lonxml::error_messages,
1536: $Apache::lonxml::warnings_error_header.
1537: "<b>ERROR:</b>".join("<br />\n",@_)."<br />\n");
1538: $Apache::lonxml::warnings_error_header='';
1539: } else {
1540: my $errormsg;
1541: my ($symb)=&Apache::lonnet::symbread();
1542: if ( !$symb ) {
1543: #public or browsers
1544: $errormsg=&mt("An error occured while processing this resource. The author has been notified.");
1545: }
1546: #notify author
1.372 albertel 1547: &Apache::lonmsg::author_res_msg($env{'request.filename'},join('<br />',@_));
1.336 albertel 1548: #notify course
1.372 albertel 1549: if ( $symb && $env{'request.course.id'} ) {
1.380 www 1550: my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
1551: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.336 albertel 1552: my (undef,%users)=&Apache::lonfeedback::decide_receiver(undef,0,1,1,1);
1.372 albertel 1553: my $declutter=&Apache::lonnet::declutter($env{'request.filename'});
1.336 albertel 1554: my @userlist;
1555: foreach (keys %users) {
1556: my ($user,$domain) = split(/:/, $_);
1557: push(@userlist,"$user\@$domain");
1.380 www 1558: my $key=$declutter.'_'.$user.'_'.$domain;
1559: my %lastnotified=&Apache::lonnet::get('nohist_xmlerrornotifications',
1560: [$key],
1561: $cdom,$cnum);
1562: my $now=time;
1563: if ($now-$lastnotified{$key}>86400) {
1564: &Apache::lonmsg::user_normal_msg($user,$domain,
1.336 albertel 1565: "Error [$declutter]",join('<br />',@_));
1.380 www 1566: &Apache::lonnet::put('nohist_xmlerrornotifications',
1567: {$key => $now},
1568: $cdom,$cnum);
1569: }
1.336 albertel 1570: }
1.372 albertel 1571: if ($env{'request.role.adv'}) {
1.336 albertel 1572: $errormsg=&mt("An error occured while processing this resource. The course personnel ([_1]) and the author have been notified.",join(', ',@userlist));
1573: } else {
1574: $errormsg=&mt("An error occured while processing this resource. The instructor has been notified.");
1575: }
1576: }
1577: push(@Apache::lonxml::error_messages,"<b>$errormsg</b> <br />");
1.52 albertel 1578: }
1.22 albertel 1579: }
1.49 albertel 1580:
1.22 albertel 1581: sub warning {
1.295 albertel 1582: $warningcount++;
1.261 albertel 1583:
1.372 albertel 1584: if ($env{'form.grade_target'} ne 'tex') {
1.348 albertel 1585: if ( &show_error_warn_msg() ) {
1.309 albertel 1586: push(@Apache::lonxml::warning_messages,
1587: $Apache::lonxml::warnings_error_header.
1588: "<b>W</b>ARNING<b>:</b>".join('<br />',@_)."<br />\n");
1.295 albertel 1589: $Apache::lonxml::warnings_error_header='';
1590: }
1591: }
1.309 albertel 1592: }
1593:
1594: sub info {
1.372 albertel 1595: if ($env{'form.grade_target'} ne 'tex'
1596: && $env{'request.state'} eq 'construct') {
1.309 albertel 1597: push(@Apache::lonxml::info_messages,join('<br />',@_)."<br />\n");
1598: }
1599: }
1600:
1601: sub message_location {
1602: return '__LONCAPA_INTERNAL_MESSAGE_LOCATION__';
1603: }
1604:
1605: sub add_messages {
1606: my ($msg)=@_;
1607: my $result=join(' ',
1608: @Apache::lonxml::info_messages,
1609: @Apache::lonxml::error_messages,
1610: @Apache::lonxml::warning_messages);
1611: undef(@Apache::lonxml::info_messages);
1612: undef(@Apache::lonxml::error_messages);
1613: undef(@Apache::lonxml::warning_messages);
1614: $$msg=~s/__LONCAPA_INTERNAL_MESSAGE_LOCATION__/$result/;
1615: $$msg=~s/__LONCAPA_INTERNAL_MESSAGE_LOCATION__//g;
1.83 albertel 1616: }
1617:
1618: sub get_param {
1.213 albertel 1619: my ($param,$parstack,$safeeval,$context,$case_insensitive) = @_;
1620: if ( ! $context ) { $context = -1; }
1621: my $args ='';
1622: if ( $#$parstack > (-2-$context) ) { $args=$$parstack[$context]; }
1.297 sakharuk 1623: if ( ! $Apache::lonxml::usestyle ) {
1624: $args=$Apache::lonxml::style_values.$args;
1625: }
1.213 albertel 1626: if ( ! $args ) { return undef; }
1627: if ( $case_insensitive ) {
1628: if ($args =~ s/(my \$)(\Q$param\E)(=\")/$1.lc($2).$3/ei) {
1629: return &Apache::run::run("{$args;".'return $'.$param.'}',
1630: $safeeval); #'
1631: } else {
1632: return undef;
1633: }
1634: } else {
1635: if ( $args =~ /my \$\Q$param\E=\"/ ) {
1636: return &Apache::run::run("{$args;".'return $'.$param.'}',
1637: $safeeval); #'
1638: } else {
1639: return undef;
1640: }
1641: }
1.22 albertel 1642: }
1643:
1.132 albertel 1644: sub get_param_var {
1.213 albertel 1645: my ($param,$parstack,$safeeval,$context,$case_insensitive) = @_;
1.132 albertel 1646: if ( ! $context ) { $context = -1; }
1647: my $args ='';
1648: if ( $#$parstack > (-2-$context) ) { $args=$$parstack[$context]; }
1.297 sakharuk 1649: if ( ! $Apache::lonxml::usestyle ) {
1650: $args=$Apache::lonxml::style_values.$args;
1651: }
1.230 albertel 1652: &Apache::lonxml::debug("Args are $args param is $param");
1.213 albertel 1653: if ($case_insensitive) {
1654: if (! ($args=~s/(my \$)(\Q$param\E)(=\")/$1.lc($2).$3/ei)) {
1655: return undef;
1656: }
1657: } elsif ( $args !~ /my \$\Q$param\E=\"/ ) { return undef; }
1.132 albertel 1658: my $value=&Apache::run::run("{$args;".'return $'.$param.'}',$safeeval); #'
1.230 albertel 1659: &Apache::lonxml::debug("first run is $value");
1.341 albertel 1660: if ($value =~ /^[\$\@\%][a-zA-Z_]\w*$/) {
1.230 albertel 1661: &Apache::lonxml::debug("doing second");
1662: my @result=&Apache::run::run("return $value",$safeeval,1);
1663: if (!defined($result[0])) {
1664: return $value
1665: } else {
1666: if (wantarray) { return @result; } else { return $result[0]; }
1667: }
1.132 albertel 1668: } else {
1669: return $value;
1670: }
1671: }
1672:
1.74 albertel 1673: sub register_insert {
1.75 albertel 1674: my @data = split /\n/, &Apache::lonnet::getfile('/home/httpd/lonTabs/insertlist.tab');
1.74 albertel 1675: my $i;
1.76 albertel 1676: my $tagnum=0;
1.74 albertel 1677: my @order;
1678: for ($i=0;$i < $#data; $i++) {
1679: my $line = $data[$i];
1680: if ( $line =~ /^\#/ || $line =~ /^\s*\n/) { next; }
1681: if ( $line =~ /TABLE/ ) { last; }
1.268 bowersj2 1682: my ($tag,$descrip,$color,$function,$show,$helpfile,$helpdesc) = split(/,/, $line);
1.135 albertel 1683: if ($tag) {
1684: $insertlist{"$tagnum.tag"} = $tag;
1685: $insertlist{"$tagnum.description"} = $descrip;
1686: $insertlist{"$tagnum.color"} = $color;
1687: $insertlist{"$tagnum.function"} = $function;
1688: if (!defined($show)) { $show='yes'; }
1689: $insertlist{"$tagnum.show"}= $show;
1.268 bowersj2 1690: $insertlist{"$tagnum.helpfile"} = $helpfile;
1691: $insertlist{"$tagnum.helpdesc"} = $helpdesc;
1.135 albertel 1692: $insertlist{"$tag.num"}=$tagnum;
1693: $tagnum++;
1694: }
1.74 albertel 1695: }
1.76 albertel 1696: $i++; #skipping TABLE line
1697: $tagnum = 0;
1.74 albertel 1698: for (;$i < $#data;$i++) {
1699: my $line = $data[$i];
1.76 albertel 1700: my ($mnemonic,@which) = split(/ +/,$line);
1701: my $tag = $insertlist{"$tagnum.tag"};
1.144 matthew 1702: for (my $j=0;$j <=$#which;$j++) {
1.74 albertel 1703: if ( $which[$j] eq 'Y' ) {
1.76 albertel 1704: if ($insertlist{"$j.show"} ne 'no') {
1705: push(@{ $insertlist{"$tag.which"} },$j);
1706: }
1.74 albertel 1707: }
1708: }
1.76 albertel 1709: $tagnum++;
1.74 albertel 1710: }
1711: }
1.98 albertel 1712:
1713: sub description {
1714: my ($token)=@_;
1.138 albertel 1715: my $tagnum;
1716: my $tag=$token->[1];
1717: foreach my $namespace (reverse @Apache::lonxml::namespace) {
1718: my $testtag=$namespace.'::'.$tag;
1719: $tagnum=$insertlist{"$testtag.num"};
1720: if (defined($tagnum)) { last; }
1721: }
1722: if (!defined ($tagnum)) { $tagnum=$Apache::lonxml::insertlist{"$tag.num"}; }
1723: return $insertlist{$tagnum.'.description'};
1.268 bowersj2 1724: }
1725:
1726: # Returns a list containing the help file, and the description
1727: sub helpinfo {
1728: my ($token)=@_;
1729: my $tagnum;
1730: my $tag=$token->[1];
1731: foreach my $namespace (reverse @Apache::lonxml::namespace) {
1732: my $testtag=$namespace.'::'.$tag;
1733: $tagnum=$insertlist{"$testtag.num"};
1734: if (defined($tagnum)) { last; }
1735: }
1736: if (!defined ($tagnum)) { $tagnum=$Apache::lonxml::insertlist{"$tag.num"}; }
1737: return ($insertlist{$tagnum.'.helpfile'}, $insertlist{$tagnum.'.helpdesc'});
1.98 albertel 1738: }
1.123 albertel 1739:
1740: # ----------------------------------------------------------------- whichuser
1741: # returns a list of $symb, $courseid, $domain, $name that is correct for
1742: # calls to lonnet functions for this setup.
1743: # - looks for form.grade_ parameters
1744: sub whichuser {
1.262 matthew 1745: my ($passedsymb)=@_;
1.245 albertel 1746: my ($symb,$courseid,$domain,$name,$publicuser);
1.372 albertel 1747: if (defined($env{'form.grade_symb'})) {
1.350 albertel 1748: my ($tmp_courseid)=
1749: &Apache::loncommon::get_env_multiple('form.grade_courseid');
1750: my $allowed=&Apache::lonnet::allowed('vgr',$tmp_courseid);
1751: if (!$allowed &&
1.372 albertel 1752: exists($env{'request.course.sec'}) &&
1753: $env{'request.course.sec'} !~ /^\s*$/) {
1.350 albertel 1754: $allowed=&Apache::lonnet::allowed('vgr',$tmp_courseid.
1.372 albertel 1755: '/'.$env{'request.course.sec'});
1.350 albertel 1756: }
1757: if ($allowed) {
1758: ($symb)=&Apache::loncommon::get_env_multiple('form.grade_symb');
1759: $courseid=$tmp_courseid;
1760: ($domain)=&Apache::loncommon::get_env_multiple('form.grade_domain');
1761: ($name)=&Apache::loncommon::get_env_multiple('form.grade_username');
1762: return ($symb,$courseid,$domain,$name,$publicuser);
1763: }
1764: }
1765: if (!$passedsymb) {
1766: $symb=&Apache::lonnet::symbread();
1.134 albertel 1767: } else {
1.350 albertel 1768: $symb=$passedsymb;
1769: }
1.372 albertel 1770: $courseid=$env{'request.course.id'};
1771: $domain=$env{'user.domain'};
1772: $name=$env{'user.name'};
1.350 albertel 1773: if ($name eq 'public' && $domain eq 'public') {
1.372 albertel 1774: if (!defined($env{'form.username'})) {
1775: $env{'form.username'}.=time.rand(10000000);
1.244 albertel 1776: }
1.372 albertel 1777: $name.=$env{'form.username'};
1.123 albertel 1778: }
1.245 albertel 1779: return ($symb,$courseid,$domain,$name,$publicuser);
1.123 albertel 1780: }
1781:
1.1 sakharuk 1782: 1;
1783: __END__
1.68 www 1784:
1785:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>