Annotation of loncom/xml/lonxml.pm, revision 1.247
1.2 sakharuk 1: # The LearningOnline Network with CAPA
1.3 sakharuk 2: # XML Parser Module
1.2 sakharuk 3: #
1.247 ! albertel 4: # $Id: lonxml.pm,v 1.246 2003/04/03 22:34:26 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.3 sakharuk 39: # last modified 06/26/00 by Alexander Sakharuk
1.33 www 40: # 11/6 Gerd Kortemeyer
1.45 www 41: # 6/1/1 Gerd Kortemeyer
1.56 albertel 42: # 2/21,3/13 Guy
1.68 www 43: # 3/29,5/4 Gerd Kortemeyer
1.78 www 44: # 5/26 Gerd Kortemeyer
1.80 harris41 45: # 5/27 H. K. Ng
1.89 www 46: # 6/2,6/3,6/8,6/9 Gerd Kortemeyer
1.93 ng 47: # 6/12,6/13 H. K. Ng
1.95 www 48: # 6/16 Gerd Kortemeyer
1.104 ng 49: # 7/27 H. K. Ng
1.127 www 50: # 8/7,8/9,8/10,8/11,8/15,8/16,8/17,8/18,8/20,8/23,8/24 Gerd Kortemeyer
1.130 www 51: # Guy Albertelli
52: # 9/26 Gerd Kortemeyer
1.143 www 53: # Dec Guy Albertelli
54: # YEAR=2002
55: # 1/1 Gerd Kortemeyer
1.145 www 56: # 1/2 Matthew Hall
57: # 1/3 Gerd Kortemeyer
1.143 www 58: #
1.2 sakharuk 59:
1.4 albertel 60: package Apache::lonxml;
1.33 www 61: use vars
1.205 www 62: qw(@pwd @outputstack $redirection $import @extlinks $metamode $evaluate %insertlist @namespace $prevent_entity_encode $errorcount $warningcount);
1.1 sakharuk 63: use strict;
1.167 albertel 64: use HTML::LCParser();
1.161 albertel 65: use HTML::TreeBuilder();
66: use HTML::Entities();
67: use Safe();
68: use Safe::Hole();
69: use Math::Cephes();
70: use Math::Random();
71: use Opcode();
1.72 albertel 72:
73: sub register {
1.141 albertel 74: my ($space,@taglist) = @_;
75: foreach my $temptag (@taglist) {
76: push(@{ $Apache::lonxml::alltags{$temptag} },$space);
1.72 albertel 77: }
78: }
79:
1.141 albertel 80: sub deregister {
81: my ($space,@taglist) = @_;
82: foreach my $temptag (@taglist) {
83: my $tempspace = $Apache::lonxml::alltags{$temptag}[-1];
84: if ($tempspace eq $space) {
85: pop(@{ $Apache::lonxml::alltags{$temptag} });
86: }
87: }
1.142 albertel 88: #&printalltags();
1.141 albertel 89: }
90:
1.46 www 91: use Apache::Constants qw(:common);
1.161 albertel 92: use Apache::lontexconvert();
93: use Apache::style();
94: use Apache::run();
95: use Apache::londefdef();
96: use Apache::scripttag();
97: use Apache::edit();
98: use Apache::lonnet();
99: use Apache::File();
100: use Apache::loncommon();
1.198 www 101: use Apache::lonfeedback();
1.200 www 102: use Apache::lonmsg();
1.217 matthew 103: use Apache::loncacc();
1.79 www 104:
1.72 albertel 105: #================================================== Main subroutine: xmlparse
106: #debugging control, to turn on debugging modify the correct handler
107: $Apache::lonxml::debug=0;
1.206 albertel 108:
109: # keeps count of the number of warnings and errors generated in a parse
110: $warningcount=0;
111: $errorcount=0;
1.72 albertel 112:
113: #path to the directory containing the file currently being processed
114: @pwd=();
115:
116: #these two are used for capturing a subset of the output for later processing,
117: #don't touch them directly use &startredirection and &endredirection
118: @outputstack = ();
119: $redirection = 0;
120:
121: #controls wheter the <import> tag actually does
122: $import = 1;
123: @extlinks=();
124:
125: # meta mode is a bit weird only some output is to be turned off
126: #<output> tag turns metamode off (defined in londefdef.pm)
127: $metamode = 0;
128:
129: # turns on and of run::evaluate actually derefencing var refs
130: $evaluate = 1;
1.7 albertel 131:
1.74 albertel 132: # data structure for eidt mode, determines what tags can go into what other tags
133: %insertlist=();
1.68 www 134:
1.99 albertel 135: # stores the list of active tag namespaces
1.76 albertel 136: @namespace=();
137:
1.169 albertel 138: # if 0 all high ASCII characters will be encoded into HTML Entities
139: $prevent_entity_encode=0;
140:
1.99 albertel 141: # has the dynamic menu been updated to know about this resource
142: $Apache::lonxml::registered=0;
143:
1.172 albertel 144: # a pointer the the Apache request object
145: $Apache::lonxml::request='';
146:
1.216 sakharuk 147: # a problem number counter, and check on ether it is used
1.237 sakharuk 148: $Apache::lonxml::counter=1;
1.204 albertel 149: $Apache::lonxml::counter_changed=0;
150:
1.212 albertel 151: #internal check on whether to look at style defs
152: $Apache::lonxml::usestyle=1;
153:
1.68 www 154: sub xmlbegin {
155: my $output='';
156: if ($ENV{'browser.mathml'}) {
157: $output='<?xml version="1.0"?>'
158: .'<?xml-stylesheet type="text/css" href="/adm/MathML/mathml.css"?>'
159: .'<!DOCTYPE html SYSTEM "/adm/MathML/mathml.dtd" '
160: .'[<!ENTITY mathns "http://www.w3.org/1998/Math/MathML">]>'
161: .'<html xmlns:math="http://www.w3.org/1998/Math/MathML" '
162: .'xmlns="http://www.w3.org/TR/REC-html40">';
163: } else {
164: $output='<html>';
165: }
166: return $output;
167: }
168:
169: sub xmlend {
1.194 www 170: my ($discussiononly,$symb)=@_;
1.103 www 171: my $discussion='';
172: if ($ENV{'request.course.id'}) {
1.109 www 173: my $crs='/'.$ENV{'request.course.id'};
174: if ($ENV{'request.course.sec'}) {
175: $crs.='_'.$ENV{'request.course.sec'};
176: }
177: $crs=~s/\_/\//g;
178: my $seeid=&Apache::lonnet::allowed('rin',$crs);
1.194 www 179: unless ($symb) {
180: $symb=&Apache::lonnet::symbread();
181: }
1.103 www 182: if ($symb) {
183: my %contrib=&Apache::lonnet::restore($symb,$ENV{'request.course.id'},
184: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
185: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
186: if ($contrib{'version'}) {
1.194 www 187: unless ($discussiononly) {
188: $discussion.=
189: '<address><hr />';
190: }
1.103 www 191: my $idx;
192: for ($idx=1;$idx<=$contrib{'version'};$idx++) {
1.110 www 193: my $hidden=($contrib{'hidden'}=~/\.$idx\./);
1.222 www 194: my $deleted=($contrib{'deleted'}=~/\.$idx\./);
195: unless ((($hidden) && (!$seeid)) || ($deleted)) {
1.110 www 196: my $message=$contrib{$idx.':message'};
197: $message=~s/\n/\<br \/\>/g;
1.186 www 198: $message=&Apache::lontexconvert::msgtexconverted($message);
1.243 www 199: if ($contrib{$idx.':attachmenturl'}) {
200: my ($fname,$ft)
201: =($contrib{$idx.':attachmenturl'}=~/\/(\w+)\.(\w+)$/);
202: $message.='<p>Attachment: <a href="'.
203: &Apache::lonnet::tokenwrapper($contrib{$idx.':attachmenturl'}).
204: '"><tt>'.$fname.'.'.$ft.'</tt></a>';
205: }
1.110 www 206: if ($message) {
207: if ($hidden) {
208: $message='<font color="#888888">'.$message.'</font>';
209: }
1.196 www 210: my $screenname=&Apache::loncommon::screenname(
211: $contrib{$idx.':sendername'},
212: $contrib{$idx.':senderdomain'});
213: my $plainname=&Apache::loncommon::nickname(
214: $contrib{$idx.':sendername'},
215: $contrib{$idx.':senderdomain'});
216:
1.109 www 217: my $sender='Anonymous';
218: if ((!$contrib{$idx.':anonymous'}) || ($seeid)) {
1.194 www 219: $sender=&Apache::loncommon::aboutmewrapper(
1.196 www 220: $plainname,
1.194 www 221: $contrib{$idx.':sendername'},
222: $contrib{$idx.':senderdomain'}).' ('.
1.164 www 223: $contrib{$idx.':sendername'}.' at '.
224: $contrib{$idx.':senderdomain'}.')';
1.109 www 225: if ($contrib{$idx.':anonymous'}) {
1.164 www 226: $sender.=' [anonymous] '.
1.196 www 227: $screenname;
1.110 www 228: }
229: if ($seeid) {
230: if ($hidden) {
231: $sender.=' <a href="/adm/feedback?unhide='.
232: $symb.':::'.$idx.'">Make Visible</a>';
233: } else {
234: $sender.=' <a href="/adm/feedback?hide='.
235: $symb.':::'.$idx.'">Hide</a>';
1.222 www 236: }
237: $sender.=' <a href="/adm/feedback?deldisc='.
238: $symb.':::'.$idx.'">Delete</a>';
239: }
1.164 www 240: } else {
1.196 www 241: if ($screenname) {
242: $sender='<i>'.$screenname.'</i>';
1.164 www 243: }
1.109 www 244: }
245: $discussion.='<p><b>'.$sender.'</b> ('.
1.103 www 246: localtime($contrib{$idx.':timestamp'}).
247: '):<blockquote>'.$message.
1.110 www 248: '</blockquote></p>';
249: }
250: }
1.103 www 251: }
1.194 www 252: unless ($discussiononly) {
253: $discussion.='</address>';
254: }
255: }
256: if ($discussiononly) {
1.195 www 257: $discussion.=(<<ENDDISCUSS);
1.243 www 258: <form action="/adm/feedback" method="post" name="mailform" enctype="multipart/form-data">
1.195 www 259: <input type="submit" name="discuss" value="Post Discussion" />
260: <input type="submit" name="anondiscuss" value="Post Anonymous Discussion" />
261: <input type="hidden" name="symb" value="$symb" />
262: <input type="hidden" name="sendit" value="true" />
263: <br />
264: <font size="1">Note: in anonymous discussion, your name is visible only to
265: course faculty</font><br />
266: <textarea name=comment cols=60 rows=10 wrap=hard></textarea>
1.242 www 267: <p>
268: Attachment (128 KB max size): <input type="file" name="attachment" />
269: </p>
1.195 www 270: </form>
271: ENDDISCUSS
1.198 www 272: $discussion.=&Apache::lonfeedback::generate_preview_button();
1.103 www 273: }
274: }
275: }
1.194 www 276: return $discussion.($discussiononly?'':'</html>');
1.119 www 277: }
278:
279: sub tokeninputfield {
1.120 www 280: my $defhost=$Apache::lonnet::perlvar{'lonHostID'};
281: $defhost=~tr/a-z/A-Z/;
1.119 www 282: return (<<ENDINPUTFIELD)
1.226 albertel 283: <script type="text/javascript">
1.120 www 284: function updatetoken() {
285: var comp=new Array;
286: var barcode=unescape(document.tokeninput.barcode.value);
287: comp=barcode.split('*');
288: if (typeof(comp[0])!="undefined") {
289: document.tokeninput.codeone.value=comp[0];
290: }
291: if (typeof(comp[1])!="undefined") {
292: document.tokeninput.codetwo.value=comp[1];
293: }
294: if (typeof(comp[2])!="undefined") {
295: comp[2]=comp[2].toUpperCase();
296: document.tokeninput.codethree.value=comp[2];
297: }
298: document.tokeninput.barcode.value='';
299: }
300: </script>
301: <form method="post" name="tokeninput">
1.119 www 302: <table border="2" bgcolor="#FFFFBB">
303: <tr><th>DocID Checkin</th></tr>
304: <tr><td>
305: <table>
306: <tr>
307: <td>Scan in Barcode</td>
1.120 www 308: <td><input type="text" size="22" name="barcode"
309: onChange="updatetoken()"/></td>
1.119 www 310: </tr>
311: <tr><td><i>or</i> Type in DocID</td>
312: <td>
313: <input type="text" size="5" name="codeone" />
1.120 www 314: <b><font size="+2">*</font></b>
1.119 www 315: <input type="text" size="5" name="codetwo" />
1.120 www 316: <b><font size="+2">*</font></b>
317: <input type="text" size="10" name="codethree" value="$defhost"
318: onChange="this.value=this.value.toUpperCase()" />
1.119 www 319: </td></tr>
320: </table>
321: </td></tr>
322: <tr><td><input type="submit" value="Check in DocID" /></td></tr>
323: </table>
324: </form>
325: ENDINPUTFIELD
1.112 www 326: }
327:
1.116 www 328: sub maketoken {
1.118 www 329: my ($symb,$tuname,$tudom,$tcrsid)=@_;
1.112 www 330: unless ($symb) {
331: $symb=&Apache::lonnet::symbread();
332: }
333: unless ($tuname) {
334: $tuname=$ENV{'user.name'};
335: $tudom=$ENV{'user.domain'};
336: $tcrsid=$ENV{'request.course.id'};
337: }
1.116 www 338:
1.118 www 339: return &Apache::lonnet::checkout($symb,$tuname,$tudom,$tcrsid);
340: }
341:
342: sub printtokenheader {
1.133 albertel 343: my ($target,$token,$tsymb,$tcrsid,$tudom,$tuname)=@_;
1.116 www 344: unless ($token) { return ''; }
1.118 www 345:
1.133 albertel 346: my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
347: unless ($tsymb) {
348: $tsymb=$symb;
1.118 www 349: }
350: unless ($tuname) {
1.133 albertel 351: $tuname=$name;
352: $tudom=$domain;
353: $tcrsid=$courseid;
1.118 www 354: }
1.114 www 355:
356: my %reply=&Apache::lonnet::get('environment',
357: ['firstname','middlename','lastname','generation'],
358: $tudom,$tuname);
359: my $plainname=$reply{'firstname'}.' '.
360: $reply{'middlename'}.' '.
361: $reply{'lastname'}.' '.
362: $reply{'generation'};
363:
1.112 www 364: if ($target eq 'web') {
1.145 www 365: my %idhash=&Apache::lonnet::idrget($tudom,($tuname));
1.115 www 366: return
1.221 albertel 367: '<img align="right" src="/cgi-bin/barcode.png?encode='.$token.'" />'.
1.115 www 368: 'Checked out for '.$plainname.
1.114 www 369: '<br />User: '.$tuname.' at '.$tudom.
1.145 www 370: '<br />ID: '.$idhash{$tuname}.
1.117 www 371: '<br />CourseID: '.$tcrsid.
1.145 www 372: '<br />Course: '.$ENV{'course.'.$tcrsid.'.description'}.
1.114 www 373: '<br />DocID: '.$token.
1.116 www 374: '<br />Time: '.localtime().'<hr />';
1.112 www 375: } else {
1.121 albertel 376: return $token;
1.112 www 377: }
1.68 www 378: }
379:
1.70 www 380: sub fontsettings() {
381: my $headerstring='';
382: if (($ENV{'browser.os'} eq 'mac') && (!$ENV{'browser.mathml'})) {
383: $headerstring.=
384: '<meta Content-Type="text/html; charset=x-mac-roman">';
385: }
386: return $headerstring;
1.68 www 387: }
388:
1.48 albertel 389: sub printalltags {
390: my $temp;
391: foreach $temp (sort keys %Apache::lonxml::alltags) {
1.141 albertel 392: &Apache::lonxml::debug("$temp -- ".
393: join(',',@{ $Apache::lonxml::alltags{$temp} }));
1.48 albertel 394: }
395: }
1.31 sakharuk 396:
1.3 sakharuk 397: sub xmlparse {
1.172 albertel 398: my ($request,$target,$content_file_string,$safeinit,%style_for_target) = @_;
1.96 albertel 399:
1.172 albertel 400: &setup_globals($request,$target);
1.232 albertel 401: &Apache::inputtags::initialize_inputtags();
402: &Apache::outputtags::initialize_outputtags();
403: &Apache::edit::initialize_edit();
1.244 albertel 404:
1.178 www 405: #
406: # do we have a course style file?
407: #
408:
1.208 albertel 409: if ($ENV{'request.course.id'} && $ENV{'request.state'} ne 'construct') {
1.178 www 410: my $bodytext=
411: $ENV{'course.'.$ENV{'request.course.id'}.'.default_xml_style'};
412: if ($bodytext) {
413: my $location=&Apache::lonnet::filelocation('',$bodytext);
414: my $styletext=&Apache::lonnet::getfile($location);
415: if ($styletext ne '-1') {
416: %style_for_target = (%style_for_target,
417: &Apache::style::styleparser($target,$styletext));
418: }
419: }
420: }
421:
1.48 albertel 422: #&printalltags();
1.16 albertel 423: my @pars = ();
1.23 albertel 424: my $pwd=$ENV{'request.filename'};
425: $pwd =~ s:/[^/]*$::;
426: &newparser(\@pars,\$content_file_string,$pwd);
1.24 sakharuk 427:
1.3 sakharuk 428: my $safeeval = new Safe;
1.40 albertel 429: my $safehole = new Safe::Hole;
1.82 ng 430: &init_safespace($target,$safeeval,$safehole,$safeinit);
1.3 sakharuk 431: #-------------------- Redefinition of the target in the case of compound target
432:
433: ($target, my @tenta) = split('&&',$target);
434:
1.150 albertel 435: my @stack = ();
1.3 sakharuk 436: my @parstack = ();
1.17 albertel 437: &initdepth;
1.67 www 438:
1.101 albertel 439: my $finaloutput = &inner_xmlparse($target,\@stack,\@parstack,\@pars,
440: $safeeval,\%style_for_target);
1.125 www 441: if ($ENV{'request.uri'}) {
442: &writeallows($ENV{'request.uri'});
443: }
1.204 albertel 444: if ($Apache::lonxml::counter_changed) { &store_counter() }
1.3 sakharuk 445: return $finaloutput;
1.106 www 446: }
447:
448: sub htmlclean {
1.107 www 449: my ($raw,$full)=@_;
1.106 www 450:
451: my $tree = HTML::TreeBuilder->new;
452: $tree->ignore_unknown(0);
1.140 albertel 453:
1.106 www 454: $tree->parse($raw);
455:
1.107 www 456: my $output= $tree->as_HTML(undef,' ');
1.140 albertel 457:
1.161 albertel 458: $output=~s/\<(br|hr|img|meta|allow)(.*?)\>/\<$1$2 \/\>/gis;
1.111 www 459: $output=~s/\<\/(br|hr|img|meta|allow)\>//gis;
1.107 www 460: unless ($full) {
461: $output=~s/\<[\/]*(body|head|html)\>//gis;
462: }
1.106 www 463:
464: $tree = $tree->delete;
465:
466: return $output;
1.15 albertel 467: }
468:
1.191 albertel 469: sub latex_special_symbols {
1.229 sakharuk 470: my ($current_token,$stack,$parstack,$where)=@_;
1.235 sakharuk 471: if ($where eq 'header') {
1.238 albertel 472: $current_token =~ s/(\\|_|\^)/ /g;
473: $current_token =~ s/(\$|%|\#|&|\{|\})/\\$1/g;
1.229 sakharuk 474: } else {
1.238 albertel 475: $current_token=~s/\\ /\\char92 /g;
476: $current_token=~s/\^/\\char94 /g;
477: $current_token=~s/\~/\\char126 /g;
1.246 albertel 478: $current_token=~s/(&[^A-Za-z\#])/\\$1/g;
1.238 albertel 479: $current_token=~s/([^&])\#/$1\\#/g;
480: $current_token=~s/(\$|_|{|})/\\$1/g;
481: $current_token=~s/\\char92 /\\texttt{\\char92}/g;
482: $current_token=~s/(>|<)/\$$1\$/g; #more or less
483: if ($current_token=~m/\d%/) {$current_token =~ s/(\d)%/$1\\%/g;} #percent after digit
484: if ($current_token=~m/\s%/) {$current_token =~ s/(\s)%/$1\\%/g;} #persent after space
1.229 sakharuk 485: }
1.188 sakharuk 486: return $current_token;
487: }
488:
1.101 albertel 489: sub inner_xmlparse {
490: my ($target,$stack,$parstack,$pars,$safeeval,$style_for_target)=@_;
491: my $finaloutput = '';
492: my $result;
493: my $token;
494: while ( $#$pars > -1 ) {
495: while ($token = $$pars['-1']->get_token) {
496: if (($token->[0] eq 'T') || ($token->[0] eq 'C') || ($token->[0] eq 'D') ) {
497: if ($metamode<1) {
1.190 albertel 498: my $text=$token->[1];
1.193 albertel 499: if ($token->[0] eq 'C' && $target eq 'tex') {
1.239 sakharuk 500: $text = '';
501: # $text = '%'.$text."\n";
1.182 sakharuk 502: }
1.190 albertel 503: $result.=$text;
1.101 albertel 504: }
505: } elsif ($token->[0] eq 'PI') {
506: if ($metamode<1) {
507: $result=$token->[2];
508: }
509: } elsif ($token->[0] eq 'S') {
1.140 albertel 510: # add tag to stack
1.101 albertel 511: push (@$stack,$token->[1]);
512: # add parameters list to another stack
513: push (@$parstack,&parstring($token));
1.140 albertel 514: &increasedepth($token);
1.212 albertel 515: if ($Apache::lonxml::usestyle &&
516: exists($$style_for_target{$token->[1]})) {
517: $Apache::lonxml::usestyle=0;
518: my $string=$$style_for_target{$token->[1]}.
519: '<LONCAPA_INTERNAL_TURN_STYLE_ON />';
520: &Apache::lonxml::newparser($pars,\$string);
1.101 albertel 521: } else {
522: $result = &callsub("start_$token->[1]", $target, $token, $stack,
523: $parstack, $pars, $safeeval, $style_for_target);
1.140 albertel 524: }
1.101 albertel 525: } elsif ($token->[0] eq 'E') {
526: #clear out any tags that didn't end
527: while ($token->[1] ne $$stack['-1'] && ($#$stack > -1)) {
1.150 albertel 528: my $lasttag=$$stack[-1];
529: if ($token->[1] =~ /^$lasttag$/i) {
1.244 albertel 530: &Apache::lonxml::warning('Using tag </'.$token->[1].'> on line '.$token->[3].' as end tag to <'.$$stack[-1].'>');
1.150 albertel 531: last;
532: } else {
1.244 albertel 533: &Apache::lonxml::warning('Found tag </'.$token->[1].'> on line '.$token->[3].' when looking for </'.$$stack[-1].'> in file');
1.150 albertel 534: &end_tag($stack,$parstack,$token);
535: }
1.101 albertel 536: }
1.140 albertel 537:
1.212 albertel 538: if ($Apache::lonxml::usestyle &&
539: exists($$style_for_target{'/'."$token->[1]"})) {
540: $Apache::lonxml::usestyle=0;
541: my $string=$$style_for_target{'/'.$token->[1]}.
542: '<LONCAPA_INTERNAL_TURN_STYLE_ON />';
543: &Apache::lonxml::newparser($pars,\$string);
1.101 albertel 544: } else {
545: $result = &callsub("end_$token->[1]", $target, $token, $stack,
546: $parstack, $pars,$safeeval, $style_for_target);
547: }
548: } else {
549: &Apache::lonxml::error("Unknown token event :$token->[0]:$token->[1]:");
550: }
551: #evaluate variable refs in result
552: if ($result ne "") {
553: if ( $#$parstack > -1 ) {
1.169 albertel 554: $result=&Apache::run::evaluate($result,$safeeval,$$parstack[-1]);
1.101 albertel 555: } else {
1.169 albertel 556: $result= &Apache::run::evaluate($result,$safeeval,'');
1.101 albertel 557: }
1.163 albertel 558: }
1.190 albertel 559: if (($token->[0] eq 'T') || ($token->[0] eq 'C') || ($token->[0] eq 'D') ) {
560: if ($target eq 'tex') {
1.191 albertel 561: $result=&latex_special_symbols($result,$stack,$parstack);
1.190 albertel 562: }
563: }
564:
1.169 albertel 565: # Encode any high ASCII characters
566: if (!$Apache::lonxml::prevent_entity_encode) {
567: $result=&HTML::Entities::encode($result,"\200-\377");
568: }
569: if ($Apache::lonxml::redirection) {
570: $Apache::lonxml::outputstack['-1'] .= $result;
571: } else {
572: $finaloutput.=$result;
573: }
574: $result = '';
575:
1.101 albertel 576: if ($token->[0] eq 'E') {
577: &end_tag($stack,$parstack,$token);
578: }
1.224 albertel 579: }
1.212 albertel 580: if ($#$pars > -1) {
581: pop @$pars;
582: pop @Apache::lonxml::pwd;
583: }
1.101 albertel 584: }
585:
586: # if ($target eq 'meta') {
587: # $finaloutput.=&endredirection;
588: # }
589:
1.169 albertel 590:
1.101 albertel 591: if (($ENV{'QUERY_STRING'}) && ($target eq 'web')) {
592: $finaloutput=&afterburn($finaloutput);
1.216 sakharuk 593: }
1.101 albertel 594: return $finaloutput;
595: }
1.67 www 596:
1.7 albertel 597: sub callsub {
1.84 albertel 598: my ($sub,$target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.7 albertel 599: my $currentstring='';
1.72 albertel 600: my $nodefault;
1.7 albertel 601: {
1.59 albertel 602: my $sub1;
1.7 albertel 603: no strict 'refs';
1.68 www 604: my $tag=$token->[1];
1.236 www 605: # get utterly rid of extended html tags
606: if ($tag=~/^x\-/i) { return ''; }
1.141 albertel 607: my $space=$Apache::lonxml::alltags{$tag}[-1];
1.68 www 608: if (!$space) {
1.141 albertel 609: $tag=~tr/A-Z/a-z/;
1.68 www 610: $sub=~tr/A-Z/a-z/;
1.141 albertel 611: $space=$Apache::lonxml::alltags{$tag}[-1]
1.68 www 612: }
1.97 albertel 613:
614: my $deleted=0;
615: $Apache::lonxml::curdepth=join('_',@Apache::lonxml::depthcounter);
616: if (($token->[0] eq 'S') && ($target eq 'modified')) {
617: $deleted=&Apache::edit::handle_delete($space,$target,$token,$tagstack,
618: $parstack,$parser,$safeeval,
619: $style);
620: }
621: if (!$deleted) {
622: if ($space) {
1.220 albertel 623: #&Apache::lonxml::debug("Calling sub $sub in $space $metamode");
1.97 albertel 624: $sub1="$space\:\:$sub";
625: ($currentstring,$nodefault) = &$sub1($target,$token,$tagstack,
626: $parstack,$parser,$safeeval,
627: $style);
628: } else {
1.220 albertel 629: #&Apache::lonxml::debug("NOT Calling sub $sub in $space $metamode");
1.97 albertel 630: if ($metamode <1) {
631: if (defined($token->[4]) && ($metamode < 1)) {
632: $currentstring = $token->[4];
633: } else {
634: $currentstring = $token->[2];
635: }
1.62 sakharuk 636: }
1.7 albertel 637: }
1.97 albertel 638: # &Apache::lonxml::debug("nodefalt:$nodefault:");
639: if ($currentstring eq '' && $nodefault eq '') {
640: if ($target eq 'edit') {
1.220 albertel 641: #&Apache::lonxml::debug("doing default edit for $token->[1]");
1.97 albertel 642: if ($token->[0] eq 'S') {
643: $currentstring = &Apache::edit::tag_start($target,$token);
644: } elsif ($token->[0] eq 'E') {
645: $currentstring = &Apache::edit::tag_end($target,$token);
646: }
647: } elsif ($target eq 'modified') {
648: if ($token->[0] eq 'S') {
649: $currentstring = $token->[4];
650: $currentstring.=&Apache::edit::handle_insert();
1.210 www 651: } elsif ($token->[0] eq 'E') {
652: $currentstring = $token->[2];
653: $currentstring.=&Apache::edit::handle_insertafter($token->[1]);
1.97 albertel 654: } else {
655: $currentstring = $token->[2];
656: }
1.72 albertel 657: }
658: }
1.7 albertel 659: }
660: use strict 'refs';
661: }
662: return $currentstring;
1.82 ng 663: }
664:
1.96 albertel 665: sub setup_globals {
1.172 albertel 666: my ($request,$target)=@_;
667: $Apache::lonxml::request=$request;
1.99 albertel 668: $Apache::lonxml::registered = 0;
1.205 www 669: $errorcount=0;
670: $warningcount=0;
1.207 albertel 671: $Apache::lonxml::default_homework_loaded=0;
1.212 albertel 672: $Apache::lonxml::usestyle=1;
1.204 albertel 673: &init_counter();
1.101 albertel 674: @Apache::lonxml::pwd=();
1.124 albertel 675: @Apache::lonxml::extlinks=();
1.96 albertel 676: if ($target eq 'meta') {
677: $Apache::lonxml::redirection = 0;
678: $Apache::lonxml::metamode = 1;
679: $Apache::lonxml::evaluate = 1;
680: $Apache::lonxml::import = 0;
1.129 albertel 681: } elsif ($target eq 'answer') {
682: $Apache::lonxml::redirection = 0;
683: $Apache::lonxml::metamode = 1;
684: $Apache::lonxml::evaluate = 1;
685: $Apache::lonxml::import = 1;
1.96 albertel 686: } elsif ($target eq 'grade') {
687: &startredirection;
688: $Apache::lonxml::metamode = 0;
689: $Apache::lonxml::evaluate = 1;
690: $Apache::lonxml::import = 1;
691: } elsif ($target eq 'modified') {
692: $Apache::lonxml::redirection = 0;
693: $Apache::lonxml::metamode = 0;
694: $Apache::lonxml::evaluate = 0;
695: $Apache::lonxml::import = 0;
696: } elsif ($target eq 'edit') {
697: $Apache::lonxml::redirection = 0;
698: $Apache::lonxml::metamode = 0;
699: $Apache::lonxml::evaluate = 0;
700: $Apache::lonxml::import = 0;
1.163 albertel 701: } elsif ($target eq 'analyze') {
702: $Apache::lonxml::redirection = 0;
703: $Apache::lonxml::metamode = 0;
704: $Apache::lonxml::evaluate = 1;
705: $Apache::lonxml::import = 1;
1.96 albertel 706: } else {
707: $Apache::lonxml::redirection = 0;
708: $Apache::lonxml::metamode = 0;
709: $Apache::lonxml::evaluate = 1;
710: $Apache::lonxml::import = 1;
711: }
712: }
713:
1.82 ng 714: sub init_safespace {
715: my ($target,$safeeval,$safehole,$safeinit) = @_;
716: $safeeval->permit("entereval");
717: $safeeval->permit(":base_math");
718: $safeeval->permit("sort");
719: $safeeval->deny(":base_io");
1.102 albertel 720: $safehole->wrap(\&Apache::scripttag::xmlparse,$safeeval,'&xmlparse');
1.82 ng 721: $safehole->wrap(\&Apache::lonnet::EXT,$safeeval,'&EXT');
722:
723: $safehole->wrap(\&Math::Cephes::asin,$safeeval,'&asin');
724: $safehole->wrap(\&Math::Cephes::acos,$safeeval,'&acos');
725: $safehole->wrap(\&Math::Cephes::atan,$safeeval,'&atan');
726: $safehole->wrap(\&Math::Cephes::sinh,$safeeval,'&sinh');
727: $safehole->wrap(\&Math::Cephes::cosh,$safeeval,'&cosh');
728: $safehole->wrap(\&Math::Cephes::tanh,$safeeval,'&tanh');
729: $safehole->wrap(\&Math::Cephes::asinh,$safeeval,'&asinh');
730: $safehole->wrap(\&Math::Cephes::acosh,$safeeval,'&acosh');
731: $safehole->wrap(\&Math::Cephes::atanh,$safeeval,'&atanh');
732: $safehole->wrap(\&Math::Cephes::erf,$safeeval,'&erf');
733: $safehole->wrap(\&Math::Cephes::erfc,$safeeval,'&erfc');
734: $safehole->wrap(\&Math::Cephes::j0,$safeeval,'&j0');
735: $safehole->wrap(\&Math::Cephes::j1,$safeeval,'&j1');
736: $safehole->wrap(\&Math::Cephes::jn,$safeeval,'&jn');
737: $safehole->wrap(\&Math::Cephes::jv,$safeeval,'&jv');
738: $safehole->wrap(\&Math::Cephes::y0,$safeeval,'&y0');
739: $safehole->wrap(\&Math::Cephes::y1,$safeeval,'&y1');
740: $safehole->wrap(\&Math::Cephes::yn,$safeeval,'&yn');
741: $safehole->wrap(\&Math::Cephes::yv,$safeeval,'&yv');
1.215 albertel 742:
743: $safehole->wrap(\&Math::Cephes::bdtr ,$safeeval,'&bdtr' );
744: $safehole->wrap(\&Math::Cephes::bdtrc ,$safeeval,'&bdtrc' );
745: $safehole->wrap(\&Math::Cephes::bdtri ,$safeeval,'&bdtri' );
746: $safehole->wrap(\&Math::Cephes::btdtr ,$safeeval,'&btdtr' );
747: $safehole->wrap(\&Math::Cephes::chdtr ,$safeeval,'&chdtr' );
748: $safehole->wrap(\&Math::Cephes::chdtrc,$safeeval,'&chdtrc');
749: $safehole->wrap(\&Math::Cephes::chdtri,$safeeval,'&chdtri');
750: $safehole->wrap(\&Math::Cephes::fdtr ,$safeeval,'&fdtr' );
751: $safehole->wrap(\&Math::Cephes::fdtrc ,$safeeval,'&fdtrc' );
752: $safehole->wrap(\&Math::Cephes::fdtri ,$safeeval,'&fdtri' );
753: $safehole->wrap(\&Math::Cephes::gdtr ,$safeeval,'&gdtr' );
754: $safehole->wrap(\&Math::Cephes::gdtrc ,$safeeval,'&gdtrc' );
755: $safehole->wrap(\&Math::Cephes::nbdtr ,$safeeval,'&nbdtr' );
756: $safehole->wrap(\&Math::Cephes::nbdtrc,$safeeval,'&nbdtrc');
757: $safehole->wrap(\&Math::Cephes::nbdtri,$safeeval,'&nbdtri');
758: $safehole->wrap(\&Math::Cephes::ndtr ,$safeeval,'&ndtr' );
759: $safehole->wrap(\&Math::Cephes::ndtri ,$safeeval,'&ndtri' );
760: $safehole->wrap(\&Math::Cephes::pdtr ,$safeeval,'&pdtr' );
761: $safehole->wrap(\&Math::Cephes::pdtrc ,$safeeval,'&pdtrc' );
762: $safehole->wrap(\&Math::Cephes::pdtri ,$safeeval,'&pdtri' );
763: $safehole->wrap(\&Math::Cephes::stdtr ,$safeeval,'&stdtr' );
764: $safehole->wrap(\&Math::Cephes::stdtri,$safeeval,'&stdtri');
765:
766: # $safehole->wrap(\&Math::Cephes::new_fract,$safeeval,'&new_fract');
767: # $safehole->wrap(\&Math::Cephes::radd,$safeeval,'&radd');
768: # $safehole->wrap(\&Math::Cephes::rsub,$safeeval,'&rsub');
769: # $safehole->wrap(\&Math::Cephes::rmul,$safeeval,'&rmul');
770: # $safehole->wrap(\&Math::Cephes::rdiv,$safeeval,'&rdiv');
771: # $safehole->wrap(\&Math::Cephes::euclid,$safeeval,'&euclid');
772:
1.91 ng 773: $safehole->wrap(\&Math::Random::random_beta,$safeeval,'&math_random_beta');
774: $safehole->wrap(\&Math::Random::random_chi_square,$safeeval,'&math_random_chi_square');
775: $safehole->wrap(\&Math::Random::random_exponential,$safeeval,'&math_random_exponential');
776: $safehole->wrap(\&Math::Random::random_f,$safeeval,'&math_random_f');
777: $safehole->wrap(\&Math::Random::random_gamma,$safeeval,'&math_random_gamma');
778: $safehole->wrap(\&Math::Random::random_multivariate_normal,$safeeval,'&math_random_multivariate_normal');
779: $safehole->wrap(\&Math::Random::random_multinomial,$safeeval,'&math_random_multinomial');
780: $safehole->wrap(\&Math::Random::random_noncentral_chi_square,$safeeval,'&math_random_noncentral_chi_square');
781: $safehole->wrap(\&Math::Random::random_noncentral_f,$safeeval,'&math_random_noncentral_f');
782: $safehole->wrap(\&Math::Random::random_normal,$safeeval,'&math_random_normal');
783: $safehole->wrap(\&Math::Random::random_permutation,$safeeval,'&math_random_permutation');
1.93 ng 784: $safehole->wrap(\&Math::Random::random_permuted_index,$safeeval,'&math_random_permuted_index');
1.91 ng 785: $safehole->wrap(\&Math::Random::random_uniform,$safeeval,'&math_random_uniform');
786: $safehole->wrap(\&Math::Random::random_poisson,$safeeval,'&math_random_poisson');
787: $safehole->wrap(\&Math::Random::random_uniform_integer,$safeeval,'&math_random_uniform_integer');
788: $safehole->wrap(\&Math::Random::random_negative_binomial,$safeeval,'&math_random_negative_binomial');
789: $safehole->wrap(\&Math::Random::random_binomial,$safeeval,'&math_random_binomial');
790: $safehole->wrap(\&Math::Random::random_seed_from_phrase,$safeeval,'&random_seed_from_phrase');
791: $safehole->wrap(\&Math::Random::random_set_seed_from_phrase,$safeeval,'&random_set_seed_from_phrase');
792: $safehole->wrap(\&Math::Random::random_get_seed,$safeeval,'&random_get_seed');
793: $safehole->wrap(\&Math::Random::random_set_seed,$safeeval,'&random_set_seed');
794:
1.82 ng 795: #need to inspect this class of ops
796: # $safeeval->deny(":base_orig");
1.91 ng 797: $safeinit .= ';$external::target="'.$target.'";';
1.121 albertel 798: my $rndseed;
1.123 albertel 799: my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
800: $rndseed=&Apache::lonnet::rndseed($symb,$courseid,$domain,$name);
1.121 albertel 801: $safeinit .= ';$external::randomseed='.$rndseed.';';
1.82 ng 802: &Apache::run::run($safeinit,$safeeval);
1.207 albertel 803: }
804:
805: sub default_homework_load {
806: my ($safeeval)=@_;
807: &Apache::lonxml::debug('Loading default_homework');
808: my $default=&Apache::lonnet::getfile('/home/httpd/html/res/adm/includes/default_homework.lcpm');
1.241 albertel 809: if ($default eq -1) {
1.207 albertel 810: &Apache::lonxml::error("<b>Unable to find <i>default_homework.lcpm</i></b>");
811: } else {
812: &Apache::run::run($default,$safeeval);
813: $Apache::lonxml::default_homework_loaded=1;
814: }
1.17 albertel 815: }
816:
1.55 albertel 817: sub startredirection {
818: $Apache::lonxml::redirection++;
819: push (@Apache::lonxml::outputstack, '');
820: }
821:
822: sub endredirection {
823: if (!$Apache::lonxml::redirection) {
1.72 albertel 824: &Apache::lonxml::error("Endredirection was called, before a startredirection, perhaps you have unbalanced tags. Some debuging information:".join ":",caller);
1.55 albertel 825: return '';
826: }
827: $Apache::lonxml::redirection--;
828: pop @Apache::lonxml::outputstack;
1.97 albertel 829: }
830:
831: sub end_tag {
832: my ($tagstack,$parstack,$token)=@_;
833: pop(@$tagstack);
834: pop(@$parstack);
835: &decreasedepth($token);
1.55 albertel 836: }
837:
1.17 albertel 838: sub initdepth {
839: @Apache::lonxml::depthcounter=();
840: $Apache::lonxml::depth=-1;
841: $Apache::lonxml::olddepth=-1;
842: }
843:
844: sub increasedepth {
1.19 albertel 845: my ($token) = @_;
1.17 albertel 846: $Apache::lonxml::depth++;
847: $Apache::lonxml::depthcounter[$Apache::lonxml::depth]++;
848: if ($Apache::lonxml::depthcounter[$Apache::lonxml::depth]==1) {
849: $Apache::lonxml::olddepth=$Apache::lonxml::depth;
850: }
1.42 albertel 851: my $curdepth=join('_',@Apache::lonxml::depthcounter);
1.64 albertel 852: &Apache::lonxml::debug("s $Apache::lonxml::depth : $Apache::lonxml::olddepth : $curdepth : $token->[1]\n");
1.54 albertel 853: #print "<br />s $Apache::lonxml::depth : $Apache::lonxml::olddepth : $curdepth : $token->[1]\n";
1.17 albertel 854: }
855:
856: sub decreasedepth {
1.19 albertel 857: my ($token) = @_;
1.17 albertel 858: $Apache::lonxml::depth--;
1.36 albertel 859: if ($Apache::lonxml::depth<$Apache::lonxml::olddepth-1) {
860: $#Apache::lonxml::depthcounter--;
861: $Apache::lonxml::olddepth=$Apache::lonxml::depth+1;
862: }
1.43 albertel 863: if ( $Apache::lonxml::depth < -1) {
1.140 albertel 864: &Apache::lonxml::warning("Missing tags, unable to properly run file.");
1.43 albertel 865: $Apache::lonxml::depth='-1';
866: }
1.42 albertel 867: my $curdepth=join('_',@Apache::lonxml::depthcounter);
1.64 albertel 868: &Apache::lonxml::debug("e $Apache::lonxml::depth : $Apache::lonxml::olddepth : $token->[1] : $curdepth\n");
1.54 albertel 869: #print "<br />e $Apache::lonxml::depth : $Apache::lonxml::olddepth : $token->[1] : $curdepth\n";
1.1 sakharuk 870: }
1.19 albertel 871:
1.180 albertel 872: sub get_all_text_unbalanced {
1.190 albertel 873: #there is a copy of this in lonpublisher.pm
1.180 albertel 874: my($tag,$pars)= @_;
875: my $token;
876: my $result='';
877: $tag='<'.$tag.'>';
878: while ($token = $$pars[-1]->get_token) {
879: if (($token->[0] eq 'T')||($token->[0] eq 'C')||($token->[0] eq 'D')) {
880: $result.=$token->[1];
881: } elsif ($token->[0] eq 'PI') {
882: $result.=$token->[2];
883: } elsif ($token->[0] eq 'S') {
884: $result.=$token->[4];
885: } elsif ($token->[0] eq 'E') {
886: $result.=$token->[2];
887: }
1.211 albertel 888: if ($result =~ /(.*)\Q$tag\E(.*)/s) {
1.180 albertel 889: &Apache::lonxml::debug('Got a winner with leftovers ::'.$2);
890: &Apache::lonxml::debug('Result is :'.$1);
891: $result=$1;
892: my $redo=$tag.$2;
893: &Apache::lonxml::newparser($pars,\$redo);
894: last;
895: }
896: }
897: return $result
1.204 albertel 898: }
899:
900: sub increment_counter {
1.247 ! albertel 901: my ($increment) = @_;
! 902: if (defined($increment) && $increment gt 0) {
! 903: $Apache::lonxml::counter+=$increment;
! 904: } else {
! 905: $Apache::lonxml::counter++;
! 906: }
1.204 albertel 907: $Apache::lonxml::counter_changed=1;
908: }
909:
910: sub init_counter {
911: if (defined($ENV{'form.counter'})) {
912: $Apache::lonxml::counter=$ENV{'form.counter'};
1.247 ! albertel 913: $Apache::lonxml::counter_changed=0;
1.237 sakharuk 914: } else {
1.204 albertel 915: $Apache::lonxml::counter=1;
1.247 ! albertel 916: $Apache::lonxml::counter_changed=1;
1.204 albertel 917: }
918: }
919:
920: sub store_counter {
921: &Apache::lonnet::appenv(('form.counter' => $Apache::lonxml::counter));
922: return '';
1.180 albertel 923: }
924:
1.19 albertel 925: sub get_all_text {
926: my($tag,$pars)= @_;
1.212 albertel 927: &Apache::lonxml::debug("Got a ".ref($pars));
1.224 albertel 928: my $gotfullstack=1;
1.212 albertel 929: if (ref($pars) ne 'ARRAY') {
1.224 albertel 930: $gotfullstack=0;
1.212 albertel 931: $pars=[$pars];
932: }
1.19 albertel 933: my $depth=0;
934: my $token;
935: my $result='';
1.57 albertel 936: if ( $tag =~ m:^/: ) {
937: my $tag=substr($tag,1);
1.212 albertel 938: #&Apache::lonxml::debug("have:$tag:");
1.223 albertel 939: my $top_empty=0;
940: while (($depth >=0) && ($#$pars > -1) && (!$top_empty)) {
1.212 albertel 941: while (($depth >=0) && ($token = $$pars[-1]->get_token)) {
942: #&Apache::lonxml::debug("e token:$token->[0]:$depth:$token->[1]:".$#$pars.":".$#Apache::lonxml::pwd);
943: if (($token->[0] eq 'T')||($token->[0] eq 'C')||($token->[0] eq 'D')) {
944: $result.=$token->[1];
945: } elsif ($token->[0] eq 'PI') {
946: $result.=$token->[2];
947: } elsif ($token->[0] eq 'S') {
948: if ($token->[1] =~ /^$tag$/i) { $depth++; }
949: $result.=$token->[4];
950: } elsif ($token->[0] eq 'E') {
951: if ( $token->[1] =~ /^$tag$/i) { $depth--; }
952: #skip sending back the last end tag
953: if ($depth > -1) { $result.=$token->[2]; } else {
954: $$pars[-1]->unget_token($token);
955: }
1.57 albertel 956: }
957: }
1.228 albertel 958: if (($depth >=0) && ($#$pars == 0) ) { $top_empty=1; }
1.212 albertel 959: if (($depth >=0) && ($#$pars > 0) ) {
960: pop(@$pars);
961: pop(@Apache::lonxml::pwd);
962: }
1.224 albertel 963: }
964: if ($top_empty && $depth >= 0) {
965: #never found the end tag ran out of text, throw error send back blank
966: &error('Never found end tag for <'.$tag.'>');
967: if ($gotfullstack) {
968: my $newstring='</'.$tag.'>'.$result;
969: &Apache::lonxml::newparser($pars,\$newstring);
970: }
971: $result='';
1.57 albertel 972: }
973: } else {
1.212 albertel 974: while ($#$pars > -1) {
975: while ($token = $$pars[-1]->get_token) {
976: #&Apache::lonxml::debug("s token:$token->[0]:$depth:$token->[1]");
977: if (($token->[0] eq 'T')||($token->[0] eq 'C')||
978: ($token->[0] eq 'D')) {
979: $result.=$token->[1];
980: } elsif ($token->[0] eq 'PI') {
981: $result.=$token->[2];
982: } elsif ($token->[0] eq 'S') {
983: if ( $token->[1] =~ /^$tag$/i) {
984: $$pars[-1]->unget_token($token); last;
985: } else {
986: $result.=$token->[4];
987: }
988: } elsif ($token->[0] eq 'E') {
989: $result.=$token->[2];
990: }
991: }
992: if (($#$pars > 0) ) {
993: pop(@$pars);
994: pop(@Apache::lonxml::pwd);
995: } else { last; }
1.36 albertel 996: }
1.19 albertel 997: }
1.212 albertel 998: if ($result =~ m|<LONCAPA_INTERNAL_TURN_STYLE_ON />|) {
999: $Apache::lonxml::usestyle=1;
1000: }
1001: #&Apache::lonxml::debug("Exit:$result:");
1.19 albertel 1002: return $result
1003: }
1004:
1.23 albertel 1005: sub newparser {
1006: my ($parser,$contentref,$dir) = @_;
1.167 albertel 1007: push (@$parser,HTML::LCParser->new($contentref));
1.56 albertel 1008: $$parser['-1']->xml_mode('1');
1.23 albertel 1009: if ( $dir eq '' ) {
1010: push (@Apache::lonxml::pwd, $Apache::lonxml::pwd[$#Apache::lonxml::pwd]);
1011: } else {
1012: push (@Apache::lonxml::pwd, $dir);
1013: }
1014: # &Apache::lonxml::debug("pwd:$#Apache::lonxml::pwd");
1015: # &Apache::lonxml::debug("pwd:$Apache::lonxml::pwd[$#Apache::lonxml::pwd]");
1016: }
1.1 sakharuk 1017:
1.8 albertel 1018: sub parstring {
1019: my ($token) = @_;
1020: my $temp='';
1.142 albertel 1021: foreach (@{$token->[3]}) {
1.35 www 1022: unless ($_=~/\W/) {
1.42 albertel 1023: my $val=$token->[2]->{$_};
1.231 albertel 1024: $val =~ s/([\%\@\\\"\'])/\\$1/g;
1.51 albertel 1025: #if ($val =~ m/^[\%\@]/) { $val="\\".$val; }
1.42 albertel 1026: $temp .= "my \$$_=\"$val\";"
1.20 albertel 1027: }
1.142 albertel 1028: }
1.8 albertel 1029: return $temp;
1030: }
1.22 albertel 1031:
1.34 www 1032: sub writeallows {
1.126 www 1033: unless ($#extlinks>=0) { return; }
1.34 www 1034: my $thisurl='/res/'.&Apache::lonnet::declutter(shift);
1.111 www 1035: if ($ENV{'httpref.'.$thisurl}) {
1036: $thisurl=$ENV{'httpref.'.$thisurl};
1037: }
1.34 www 1038: my $thisdir=$thisurl;
1039: $thisdir=~s/\/[^\/]+$//;
1040: my %httpref=();
1.142 albertel 1041: foreach (@extlinks) {
1.34 www 1042: $httpref{'httpref.'.
1.125 www 1043: &Apache::lonnet::hreflocation($thisdir,$_)}=$thisurl;
1.142 albertel 1044: }
1.126 www 1045: @extlinks=();
1.34 www 1046: &Apache::lonnet::appenv(%httpref);
1047: }
1048:
1.66 www 1049: #
1050: # Afterburner handles anchors, highlights and links
1051: #
1052: sub afterburn {
1053: my $result=shift;
1.154 albertel 1054: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1055: ['highlight','anchor','link']);
1.66 www 1056: if ($ENV{'form.highlight'}) {
1.142 albertel 1057: foreach (split(/\,/,$ENV{'form.highlight'})) {
1.66 www 1058: my $anchorname=$_;
1059: my $matchthis=$anchorname;
1060: $matchthis=~s/\_+/\\s\+/g;
1061: $result=~s/($matchthis)/\<font color=\"red\"\>$1\<\/font\>/gs;
1.142 albertel 1062: }
1.66 www 1063: }
1064: if ($ENV{'form.link'}) {
1.142 albertel 1065: foreach (split(/\,/,$ENV{'form.link'})) {
1.66 www 1066: my ($anchorname,$linkurl)=split(/\>/,$_);
1067: my $matchthis=$anchorname;
1068: $matchthis=~s/\_+/\\s\+/g;
1069: $result=~s/($matchthis)/\<a href=\"$linkurl\"\>$1\<\/a\>/gs;
1.142 albertel 1070: }
1.66 www 1071: }
1072: if ($ENV{'form.anchor'}) {
1073: my $anchorname=$ENV{'form.anchor'};
1074: my $matchthis=$anchorname;
1075: $matchthis=~s/\_+/\\s\+/g;
1076: $result=~s/($matchthis)/\<a name=\"$anchorname\"\>$1\<\/a\>/s;
1077: $result.=(<<"ENDSCRIPT");
1.226 albertel 1078: <script type="text/javascript">
1.66 www 1079: document.location.hash='$anchorname';
1080: </script>
1081: ENDSCRIPT
1082: }
1083: return $result;
1084: }
1085:
1.79 www 1086: sub storefile {
1087: my ($file,$contents)=@_;
1088: if (my $fh=Apache::File->new('>'.$file)) {
1089: print $fh $contents;
1090: $fh->close();
1.147 albertel 1091: } else {
1092: &warning("Unable to save file $file");
1.79 www 1093: }
1094: }
1095:
1.151 albertel 1096: sub createnewhtml {
1097: my $filecontents=(<<SIMPLECONTENT);
1.78 www 1098: <html>
1099: <head>
1100: <title>
1101: Title of Document Goes Here
1102: </title>
1103: </head>
1104: <body bgcolor="#FFFFFF">
1105:
1106: Body of Document Goes Here
1107:
1108: </body>
1109: </html>
1110: SIMPLECONTENT
1.151 albertel 1111: return $filecontents;
1112: }
1113:
1.147 albertel 1114:
1.151 albertel 1115: sub inserteditinfo {
1116: my ($result,$filecontents)=@_;
1.157 albertel 1117: $filecontents = &HTML::Entities::encode($filecontents);
1.147 albertel 1118: # my $editheader='<a href="#editsection">Edit below</a><hr />';
1.240 albertel 1119: my $xml_help = '<table><tr><td>'.
1120: &Apache::loncommon::help_open_topic("Greek_Symbols",'Greek Symbols',
1121: undef,undef,600)
1122: .'</td><td>'.
1123: &Apache::loncommon::help_open_topic("Other_Symbols",'Other Symbols',
1124: undef,undef,600)
1125: .'</td></tr></table>';
1.161 albertel 1126: my $buttons=(<<BUTTONS);
1127: <input type="submit" name="attemptclean"
1128: value="Save and then attempt to clean HTML" />
1129: <input type="submit" name="savethisfile" value="Save this" />
1130: <input type="submit" name="viewmode" value="View" />
1131: BUTTONS
1.78 www 1132: my $editfooter=(<<ENDFOOTER);
1133: <hr />
1134: <a name="editsection" />
1135: <form method="post">
1.240 albertel 1136: $xml_help
1.161 albertel 1137: <input type="hidden" name="editmode" value="Edit" />
1.170 www 1138: $buttons<br />
1.78 www 1139: <textarea cols="80" rows="40" name="filecont">$filecontents</textarea>
1.170 www 1140: <br />$buttons
1.78 www 1141: <br />
1142: </form>
1143: ENDFOOTER
1.147 albertel 1144: # $result=~s/(\<body[^\>]*\>)/$1$editheader/is;
1.78 www 1145: $result=~s/(\<\/body\>)/$editfooter/is;
1146: return $result;
1147: }
1148:
1.152 albertel 1149: sub get_target {
1150: my $viewgrades=&Apache::lonnet::allowed('vgr',$ENV{'request.course.id'});
1151: if ( $ENV{'request.state'} eq 'published') {
1152: if ( defined($ENV{'form.grade_target'})
1153: && ($viewgrades == 'F' )) {
1154: return ($ENV{'form.grade_target'});
1.153 albertel 1155: } elsif (defined($ENV{'form.grade_target'})) {
1156: if (($ENV{'form.grade_target'} eq 'web') ||
1157: ($ENV{'form.grade_target'} eq 'tex') ) {
1158: return $ENV{'form.grade_target'}
1159: } else {
1160: return 'web';
1161: }
1.152 albertel 1162: } else {
1163: return 'web';
1164: }
1165: } elsif ($ENV{'request.state'} eq 'construct') {
1166: if ( defined($ENV{'form.grade_target'})) {
1167: return ($ENV{'form.grade_target'});
1168: } else {
1169: return 'web';
1170: }
1171: } else {
1172: return 'web';
1173: }
1174: }
1175:
1.24 sakharuk 1176: sub handler {
1177: my $request=shift;
1.68 www 1178:
1.152 albertel 1179: my $target=&get_target();
1.68 www 1180:
1.65 albertel 1181: $Apache::lonxml::debug=0;
1.68 www 1182:
1.25 sakharuk 1183: if ($ENV{'browser.mathml'}) {
1.27 albertel 1184: $request->content_type('text/xml');
1185: } else {
1186: $request->content_type('text/html');
1.25 sakharuk 1187: }
1.141 albertel 1188: &Apache::loncommon::no_cache($request);
1.27 albertel 1189: $request->send_http_header;
1.141 albertel 1190:
1.45 www 1191: return OK if $request->header_only;
1.27 albertel 1192:
1.79 www 1193:
1194: my $file=&Apache::lonnet::filelocation("",$request->uri);
1.78 www 1195: #
1196: # Edit action? Save file.
1197: #
1198: unless ($ENV{'request.state'} eq 'published') {
1.107 www 1199: if (($ENV{'form.savethisfile'}) || ($ENV{'form.attemptclean'})) {
1.79 www 1200: &storefile($file,$ENV{'form.filecont'});
1.78 www 1201: }
1202: }
1.24 sakharuk 1203: my %mystyle;
1.147 albertel 1204: my $result = '';
1.50 albertel 1205: my $filecontents=&Apache::lonnet::getfile($file);
1.241 albertel 1206: if ($filecontents eq -1) {
1.78 www 1207: $result=(<<ENDNOTFOUND);
1208: <html>
1209: <head>
1210: <title>File not found</title>
1211: </head>
1212: <body bgcolor="#FFFFFF">
1213: <b>File not found: $file</b>
1214: </body>
1215: </html>
1216: ENDNOTFOUND
1.50 albertel 1217: $filecontents='';
1.151 albertel 1218: if ($ENV{'request.state'} ne 'published') {
1219: $filecontents=&createnewhtml();
1.161 albertel 1220: $ENV{'form.editmode'}='Edit'; #force edit mode
1.151 albertel 1221: }
1.50 albertel 1222: } else {
1.147 albertel 1223: unless ($ENV{'request.state'} eq 'published') {
1224: if ($ENV{'form.attemptclean'}) {
1225: $filecontents=&htmlclean($filecontents,1);
1.107 www 1226: }
1.147 albertel 1227: }
1.161 albertel 1228: if (!$ENV{'form.editmode'} || $ENV{'form.viewmode'}) {
1.172 albertel 1229: $result = &Apache::lonxml::xmlparse($request,$target,$filecontents,
1230: '',%mystyle);
1.147 albertel 1231: }
1.78 www 1232: }
1233:
1234: #
1235: # Edit action? Insert editing commands
1236: #
1237: unless ($ENV{'request.state'} eq 'published') {
1.161 albertel 1238: if ($ENV{'form.editmode'} && (!($ENV{'form.viewmode'}))) {
1.177 www 1239: my $displayfile=$request->uri;
1240: $displayfile=~s/^\/[^\/]*//;
1241: $result='<html><body bgcolor="#FFFFFF"><h3>'.$displayfile.
1242: '</h3></body></html>';
1.78 www 1243: $result=&inserteditinfo($result,$filecontents);
1.147 albertel 1244: }
1.66 www 1245: }
1.147 albertel 1246:
1.126 www 1247: writeallows($request->uri);
1.50 albertel 1248:
1.67 www 1249: $request->print($result);
1.64 albertel 1250:
1.45 www 1251: return OK;
1.24 sakharuk 1252: }
1.147 albertel 1253:
1.22 albertel 1254: sub debug {
1255: if ($Apache::lonxml::debug eq 1) {
1.146 albertel 1256: $|=1;
1.202 albertel 1257: print('<font size="-2"<pre>DEBUG:'.&HTML::Entities::encode($_[0])."</pre></font>\n");
1.22 albertel 1258: }
1259: }
1.49 albertel 1260:
1.22 albertel 1261: sub error {
1.205 www 1262: $errorcount++;
1.74 albertel 1263: if (($Apache::lonxml::debug eq 1) || ($ENV{'request.state'} eq 'construct') ) {
1.166 matthew 1264: # If printing in construction space, put the error inside <pre></pre>
1.167 albertel 1265: print "<b>ERROR:</b>".join("\n",@_)."\n";
1.52 albertel 1266: } else {
1267: print "<b>An Error occured while processing this resource. The instructor has been notified.</b> <br />";
1268: #notify author
1.146 albertel 1269: &Apache::lonmsg::author_res_msg($ENV{'request.filename'},join('<br />',@_));
1.52 albertel 1270: #notify course
1271: if ( $ENV{'request.course.id'} ) {
1.209 www 1272: my (undef,%users)=&Apache::lonfeedback::decide_receiver(undef,0,1,1,1);
1.143 www 1273: my $declutter=&Apache::lonnet::declutter($ENV{'request.filename'});
1.209 www 1274: foreach (keys %users) {
1275: my ($user,$domain) = split(/:/, $_);
1.143 www 1276: &Apache::lonmsg::user_normal_msg($user,$domain,
1.146 albertel 1277: "Error [$declutter]",join('<br />',@_));
1.52 albertel 1278: }
1279: }
1.74 albertel 1280:
1.52 albertel 1281: #FIXME probably shouldn't have me get everything forever.
1.146 albertel 1282: &Apache::lonmsg::user_normal_msg('albertel','msu',"Error in $ENV{'request.filename'}",join('<br />',@_));
1.74 albertel 1283: #&Apache::lonmsg::user_normal_msg('albertel','103',"Error in $ENV{'request.filename'}",$_[0]);
1.52 albertel 1284: }
1.22 albertel 1285: }
1.49 albertel 1286:
1.22 albertel 1287: sub warning {
1.205 www 1288: $warningcount++;
1.73 harris41 1289: if ($ENV{'request.state'} eq 'construct') {
1.146 albertel 1290: print "<b>W</b>ARNING<b>:</b>".join('<br />',@_)."<br />\n";
1.73 harris41 1291: }
1.83 albertel 1292: }
1293:
1294: sub get_param {
1.213 albertel 1295: my ($param,$parstack,$safeeval,$context,$case_insensitive) = @_;
1296: if ( ! $context ) { $context = -1; }
1297: my $args ='';
1298: if ( $#$parstack > (-2-$context) ) { $args=$$parstack[$context]; }
1299: if ( ! $args ) { return undef; }
1300: if ( $case_insensitive ) {
1301: if ($args =~ s/(my \$)(\Q$param\E)(=\")/$1.lc($2).$3/ei) {
1302: return &Apache::run::run("{$args;".'return $'.$param.'}',
1303: $safeeval); #'
1304: } else {
1305: return undef;
1306: }
1307: } else {
1308: if ( $args =~ /my \$\Q$param\E=\"/ ) {
1309: return &Apache::run::run("{$args;".'return $'.$param.'}',
1310: $safeeval); #'
1311: } else {
1312: return undef;
1313: }
1314: }
1.22 albertel 1315: }
1316:
1.132 albertel 1317: sub get_param_var {
1.213 albertel 1318: my ($param,$parstack,$safeeval,$context,$case_insensitive) = @_;
1.132 albertel 1319: if ( ! $context ) { $context = -1; }
1320: my $args ='';
1321: if ( $#$parstack > (-2-$context) ) { $args=$$parstack[$context]; }
1.230 albertel 1322: &Apache::lonxml::debug("Args are $args param is $param");
1.213 albertel 1323: if ($case_insensitive) {
1324: if (! ($args=~s/(my \$)(\Q$param\E)(=\")/$1.lc($2).$3/ei)) {
1325: return undef;
1326: }
1327: } elsif ( $args !~ /my \$\Q$param\E=\"/ ) { return undef; }
1.132 albertel 1328: my $value=&Apache::run::run("{$args;".'return $'.$param.'}',$safeeval); #'
1.230 albertel 1329: &Apache::lonxml::debug("first run is $value");
1330: if ($value =~ /^[\$\@\%]\w+$/) {
1331: &Apache::lonxml::debug("doing second");
1332: my @result=&Apache::run::run("return $value",$safeeval,1);
1333: if (!defined($result[0])) {
1334: return $value
1335: } else {
1336: if (wantarray) { return @result; } else { return $result[0]; }
1337: }
1.132 albertel 1338: } else {
1339: return $value;
1340: }
1341: }
1342:
1.74 albertel 1343: sub register_insert {
1.75 albertel 1344: my @data = split /\n/, &Apache::lonnet::getfile('/home/httpd/lonTabs/insertlist.tab');
1.74 albertel 1345: my $i;
1.76 albertel 1346: my $tagnum=0;
1.74 albertel 1347: my @order;
1348: for ($i=0;$i < $#data; $i++) {
1349: my $line = $data[$i];
1350: if ( $line =~ /^\#/ || $line =~ /^\s*\n/) { next; }
1351: if ( $line =~ /TABLE/ ) { last; }
1.92 albertel 1352: my ($tag,$descrip,$color,$function,$show) = split(/,/, $line);
1.135 albertel 1353: if ($tag) {
1354: $insertlist{"$tagnum.tag"} = $tag;
1355: $insertlist{"$tagnum.description"} = $descrip;
1356: $insertlist{"$tagnum.color"} = $color;
1357: $insertlist{"$tagnum.function"} = $function;
1358: if (!defined($show)) { $show='yes'; }
1359: $insertlist{"$tagnum.show"}= $show;
1360: $insertlist{"$tag.num"}=$tagnum;
1361: $tagnum++;
1362: }
1.74 albertel 1363: }
1.76 albertel 1364: $i++; #skipping TABLE line
1365: $tagnum = 0;
1.74 albertel 1366: for (;$i < $#data;$i++) {
1367: my $line = $data[$i];
1.76 albertel 1368: my ($mnemonic,@which) = split(/ +/,$line);
1369: my $tag = $insertlist{"$tagnum.tag"};
1.144 matthew 1370: for (my $j=0;$j <=$#which;$j++) {
1.74 albertel 1371: if ( $which[$j] eq 'Y' ) {
1.76 albertel 1372: if ($insertlist{"$j.show"} ne 'no') {
1373: push(@{ $insertlist{"$tag.which"} },$j);
1374: }
1.74 albertel 1375: }
1376: }
1.76 albertel 1377: $tagnum++;
1.74 albertel 1378: }
1379: }
1.98 albertel 1380:
1381: sub description {
1382: my ($token)=@_;
1.138 albertel 1383: my $tagnum;
1384: my $tag=$token->[1];
1385: foreach my $namespace (reverse @Apache::lonxml::namespace) {
1386: my $testtag=$namespace.'::'.$tag;
1387: $tagnum=$insertlist{"$testtag.num"};
1388: if (defined($tagnum)) { last; }
1389: }
1390: if (!defined ($tagnum)) { $tagnum=$Apache::lonxml::insertlist{"$tag.num"}; }
1391: return $insertlist{$tagnum.'.description'};
1.98 albertel 1392: }
1.123 albertel 1393:
1394: # ----------------------------------------------------------------- whichuser
1395: # returns a list of $symb, $courseid, $domain, $name that is correct for
1396: # calls to lonnet functions for this setup.
1397: # - looks for form.grade_ parameters
1398: sub whichuser {
1.245 albertel 1399: my ($symb,$courseid,$domain,$name,$publicuser);
1.123 albertel 1400: if (defined($ENV{'form.grade_symb'})) {
1401: my $tmp_courseid=$ENV{'form.grade_courseid'};
1402: my $allowed=&Apache::lonnet::allowed('mgr',$tmp_courseid);
1403: if ($allowed) {
1404: $symb=$ENV{'form.grade_symb'};
1405: $courseid=$ENV{'form.grade_courseid'};
1406: $domain=$ENV{'form.grade_domain'};
1407: $name=$ENV{'form.grade_username'};
1408: }
1.134 albertel 1409: } else {
1.244 albertel 1410: $symb=&Apache::lonnet::symbread();
1411: $courseid=$ENV{'request.course.id'};
1412: $domain=$ENV{'user.domain'};
1413: $name=$ENV{'user.name'};
1414: if ($name eq 'public' && $domain eq 'public') {
1415: if (!defined($ENV{'form.username'})) {
1416: $ENV{'form.username'}.=time.rand(10000000);
1417: }
1418: $name.=$ENV{'form.username'};
1419: }
1.123 albertel 1420: }
1.245 albertel 1421: return ($symb,$courseid,$domain,$name,$publicuser);
1.123 albertel 1422: }
1423:
1.1 sakharuk 1424: 1;
1425: __END__
1.68 www 1426:
1427:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>