Annotation of loncom/xml/londefdef.pm, revision 1.415.4.4
1.1 sakharuk 1: # The LearningOnline Network with CAPA
2: # Tags Default Definition Module
3: #
1.415.4.4! raeburn 4: # $Id: londefdef.pm,v 1.415.4.3 2010/12/25 00:10:16 raeburn Exp $
1.41 sakharuk 5: #
1.34 www 6: #
7: # Copyright Michigan State University Board of Trustees
8: #
9: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
10: #
11: # LON-CAPA is free software; you can redistribute it and/or modify
12: # it under the terms of the GNU General Public License as published by
13: # the Free Software Foundation; either version 2 of the License, or
14: # (at your option) any later version.
15: #
16: # LON-CAPA is distributed in the hope that it will be useful,
17: # but WITHOUT ANY WARRANTY; without even the implied warranty of
18: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19: # GNU General Public License for more details.
20: #
21: # You should have received a copy of the GNU General Public License
22: # along with LON-CAPA; if not, write to the Free Software
23: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24: #
25: # /home/httpd/html/adm/gpl.txt
26: #
27: # http://www.lon-capa.org/
1.156 sakharuk 28: ## Copyright for TtHfunc and TtMfunc by Ian Hutchinson.
1.34 www 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.1 sakharuk 39:
1.2 albertel 40: package Apache::londefdef;
1.1 sakharuk 41:
1.267 albertel 42: use Apache::lonnet;
1.1 sakharuk 43: use strict;
1.124 sakharuk 44: use Apache::lonxml;
1.398 foxr 45: use Apache::lontable;
1.57 sakharuk 46: use Apache::File();
1.70 sakharuk 47: use Image::Magick;
1.118 www 48: use Apache::lonmenu();
49: use Apache::lonmeta();
1.389 www 50: use Apache::lonlocal;
1.415.4.3 raeburn 51: use Apache::loncommon();
1.187 albertel 52: use Apache::Constants qw(:common);
1.282 foxr 53: use File::Basename;
1.345 albertel 54: use LONCAPA();
1.302 foxr 55: # use Data::Dumper;
1.160 sakharuk 56:
1.38 harris41 57: BEGIN {
1.15 sakharuk 58:
1.135 sakharuk 59: &Apache::lonxml::register('Apache::londefdef',('a','abbr','acronym','accessrule','address','allow','applet','area','b','base','basefont','bgo','bgsound','big','blink','blockquote','blankspace','body','br','button','caption','center','cite','code','col','colgroup','dd','del','dfn','dir','div','dl','dt','em','embed','externallink','fieldset','font','form','frame','frameset','h1','h2','h3','h4','h5','h6','head','hr','html','i','iframe','img','input','ins','insert','isindex','kbd','keygen','label','layer','legend','li','link','m','map','marquee','menu','meta','multicol','nobr','noembed','noframes','nolayer','noscript','object','ol','optgroup','option','output','p','param','pre','q','s','samp','select','server','small','spacer','span','strike','strong','sub','sup','table','tbody','td','textarea','tfoot','th','thead','title','tr','tt','tthoption','u','ul','var','wbr','hideweboutput'));
1.15 sakharuk 60:
1.188 albertel 61: }
62:
1.398 foxr 63:
1.188 albertel 64: sub initialize_londefdef {
65: $Apache::londefdef::TD_redirection=0;
66: @Apache::londefdef::table = ();
67: $Apache::londefdef::select=0;
1.243 albertel 68: undef(@Apache::londefdef::description);
69: @Apache::londefdef::DD=(0);
70: @Apache::londefdef::DT=(0);
1.244 albertel 71: @Apache::londefdef::seenDT=(0);
1.238 albertel 72: $Apache::londefdef::list_index=0;
1.327 albertel 73: undef($Apache::londefdef::head);
74: undef($Apache::londefdef::title);
1.3 sakharuk 75: }
1.1 sakharuk 76:
1.35 sakharuk 77: #======================= TAG SUBROUTINES =====================
1.8 sakharuk 78: #-- <output>
1.21 albertel 79: sub start_output {
1.122 albertel 80: my ($target) = @_;
81: if ($target eq 'meta') { $Apache::lonxml::metamode--; }
82: return '';
1.21 albertel 83: }
84: sub end_output {
1.122 albertel 85: my ($target) = @_;
86: if ($target eq 'meta') { $Apache::lonxml::metamode++; }
87: return '';
1.21 albertel 88: }
1.4 sakharuk 89: #-- <m> tag
1.33 albertel 90: sub start_m {
1.190 albertel 91: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
1.122 albertel 92: my $currentstring = '';
1.193 albertel 93: my $inside = &Apache::lonxml::get_all_text_unbalanced("/m",$parser);
1.191 albertel 94: if ($target eq 'web' || $target eq 'analyze') {
1.122 albertel 95: &Apache::lonxml::debug("M is starting with:$inside:");
96: my $eval=&Apache::lonxml::get_param('eval',$parstack,$safeeval);
97: if ($eval eq 'on') {
98: $inside=&Apache::run::evaluate($inside,$safeeval,$$parstack[-1]);
1.392 bisitz 99: #&Apache::lonxml::debug("M is evaluated to:$inside:");
1.122 albertel 100: }
1.317 albertel 101: my $tex = $inside;
1.276 albertel 102: my $display=&Apache::lonxml::get_param('display',$parstack,$safeeval);
103: $currentstring = &Apache::lontexconvert::converted(\$inside,$display);
1.122 albertel 104: if ($Apache::lontexconvert::errorstring) {
1.392 bisitz 105: my $errormsg='<pre>'.&HTML::Entities::encode($Apache::lontexconvert::errorstring,'<>&"').'</pre> occurred while attempting to convert this TeX: <pre>';
1.317 albertel 106: $tex = &HTML::Entities::encode($tex,'<>&"');
107: my ($linenumber) =
108: ($Apache::lontexconvert::errorstring =~ /Line (\d+)/);
109: if (defined($linenumber)) {
110: my @tex=split("\n",$tex);
111: $tex[$linenumber]='<b><font color="red">'.
112: $tex[$linenumber].'</font></b>';
113: $tex=join("\n",@tex);
114: }
115: &Apache::lonxml::warning($errormsg.$tex.'</pre>');
1.122 albertel 116: $Apache::lontexconvert::errorstring='';
117: }
118: #&Apache::lonxml::debug("M is ends with:$currentstring:");
1.178 albertel 119: $Apache::lonxml::post_evaluate=0;
1.122 albertel 120: } elsif ($target eq 'tex') {
1.360 foxr 121:
1.190 albertel 122: $currentstring = $inside;
1.178 albertel 123: my $eval=&Apache::lonxml::get_param('eval',$parstack,$safeeval);
124: if ($eval eq 'on') {
125: $currentstring=&Apache::run::evaluate($currentstring,$safeeval,$$parstack[-1]);
126: }
1.122 albertel 127: if ($currentstring=~/^(\s*\\\\\s*)*$/) {$currentstring = ' \vskip 0 mm ';}
1.257 albertel 128: # detect simple math mode entry exits, and convert them
1.360 foxr 129: # to use \ensuremath ... unless there's a \verb inside.
130: if (! ($currentstring=~/\\verb/)) {
1.395 raeburn 131: if ($currentstring=~/^\s*\$[^\$].*\$\s*$/) {
1.360 foxr 132: $currentstring=~s/^(\s*)\$/$1/;
133: $currentstring=~s/\$(\s*)$/$1/;
134: $currentstring='\ensuremath{'.$currentstring.'}';
135: }
1.257 albertel 136: }
1.178 albertel 137: $Apache::lonxml::post_evaluate=0;
1.122 albertel 138: }
139: return $currentstring;
1.33 albertel 140: }
1.122 albertel 141:
1.33 albertel 142: sub end_m {
1.122 albertel 143: my ($target,$token) = @_;
144: my $currentstring = '';
1.204 albertel 145: if ($target eq 'tex') {
1.122 albertel 146: $currentstring = "";
147: }
148: return $currentstring;
1.33 albertel 149: }
1.110 albertel 150:
151: sub start_tthoption {
1.299 albertel 152: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
1.122 albertel 153: my $result;
1.325 albertel 154: if ($target eq 'web' || $target eq 'webgrade') {
1.299 albertel 155: my $inside = &Apache::lonxml::get_all_text("/tthoption",$parser,
156: $style);
1.122 albertel 157: $inside=~s/^\s*//;
1.267 albertel 158: if ($env{'browser.mathml'}) {
1.122 albertel 159: &tth::ttmoptions($inside);
160: } else {
161: &tth::tthoptions($inside);
162: }
163: }
164: return $result;
1.110 albertel 165: }
166:
167: sub end_tthoption {
1.122 albertel 168: my ($target,$token) = @_;
169: my $result;
170: return $result;
1.110 albertel 171: }
172:
1.181 sakharuk 173: #-- <html> tag (end tag optional)
1.100 albertel 174: sub start_html {
175: my ($target,$token) = @_;
176: my $currentstring = '';
1.269 albertel 177: if ($target eq 'web' || $target eq 'edit' || $target eq 'webgrade' ) {
1.327 albertel 178: # start_body() takes care of emitting the <html>
1.100 albertel 179: } elsif ($target eq 'tex') {
1.391 onken 180:
1.399 foxr 181: $currentstring .= &latex_header();
1.100 albertel 182: }
183: return $currentstring;
184: }
1.122 albertel 185:
186: sub end_html {
1.232 sakharuk 187: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 188: my $currentstring = '';
1.324 albertel 189: if ($target eq 'web' || $target eq 'webgrade') {
1.327 albertel 190: # end_body takes care of the </html>
1.122 albertel 191: }
192: return $currentstring;
193: }
194:
1.181 sakharuk 195: #-- <head> tag (end tag optional)
1.122 albertel 196: sub start_head {
197: my ($target,$token) = @_;
198: my $currentstring = '';
1.324 albertel 199: if ($target eq 'web' || $target eq 'webgrade') {
1.327 albertel 200: &Apache::lonxml::startredirection();
1.122 albertel 201: }
202: return $currentstring;
203: }
204:
205: sub end_head {
206: my ($target,$token) = @_;
207: my $currentstring = '';
1.324 albertel 208: if (($target eq 'web' && $env{'request.state'} eq 'published') ||
209: ($target eq 'webgrade' && $env{'request.state'} eq 'published')) {
1.327 albertel 210: # in case there is a </head> but no <head>
211: if ($Apache::lonxml::redirection) {
212: $Apache::londefdef::head = &Apache::lonxml::endredirection();
213: }
1.122 albertel 214: }
215: return $currentstring;
216: }
217:
1.181 sakharuk 218: #-- <map> tag (end tag required)
1.122 albertel 219: sub start_map {
220: my ($target,$token) = @_;
221: my $currentstring = '';
1.325 albertel 222: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 223: $currentstring = $token->[4];
224: }
225: return $currentstring;
226: }
227:
228: sub end_map {
229: my ($target,$token) = @_;
230: my $currentstring = '';
1.325 albertel 231: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 232: $currentstring = $token->[2];
233: }
234: return $currentstring;
235: }
236:
1.181 sakharuk 237: #-- <select> tag (end tag required)
1.122 albertel 238: sub start_select {
239: my ($target,$token) = @_;
240: my $currentstring = '';
1.325 albertel 241: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 242: $currentstring = $token->[4];
1.181 sakharuk 243: } elsif ($target eq 'tex') {
244: $Apache::londefdef::select=0;
245: }
1.122 albertel 246: return $currentstring;
247: }
248:
249: sub end_select {
250: my ($target,$token) = @_;
251: my $currentstring = '';
1.325 albertel 252: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 253: $currentstring = $token->[2];
254: }
255: return $currentstring;
256: }
257:
1.181 sakharuk 258: #-- <option> tag (end tag optional)
1.122 albertel 259: sub start_option {
1.181 sakharuk 260: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 261: my $currentstring = '';
1.325 albertel 262: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 263: $currentstring = $token->[4];
1.181 sakharuk 264: } elsif ($target eq 'tex') {
265: $Apache::londefdef::select++;
266: if ($Apache::londefdef::select == 1) {
267: $currentstring='\noindent\fbox{'.&Apache::lonxml::get_param('value',$parstack,$safeeval).'}\keephidden{';
268: } else {
269: $currentstring='\keephidden{';
270: }
271: }
1.122 albertel 272: return $currentstring;
273: }
274:
275: sub end_option {
276: my ($target,$token) = @_;
277: my $currentstring = '';
1.325 albertel 278: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 279: $currentstring = $token->[2];
1.181 sakharuk 280: } elsif ($target eq 'tex') {
281: $currentstring='}';
282: }
1.122 albertel 283: return $currentstring;
284: }
285:
1.181 sakharuk 286: #-- <input> tag (end tag forbidden)
1.122 albertel 287: sub start_input {
288: my ($target,$token) = @_;
289: my $currentstring = '';
1.325 albertel 290: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 291: $currentstring = $token->[4];
292: }
293: return $currentstring;
294: }
295:
296: sub end_input {
297: my ($target,$token) = @_;
298: my $currentstring = '';
1.325 albertel 299: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 300: $currentstring = $token->[2];
301: }
302: return $currentstring;
303: }
304:
1.181 sakharuk 305: #-- <textarea> tag (end tag required)
1.122 albertel 306: sub start_textarea {
307: my ($target,$token) = @_;
308: my $currentstring = '';
1.325 albertel 309: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 310: $currentstring = $token->[4];
311: }
312: return $currentstring;
313: }
314:
315: sub end_textarea {
316: my ($target,$token) = @_;
317: my $currentstring = '';
1.325 albertel 318: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 319: $currentstring = $token->[2];
320: }
321: return $currentstring;
322: }
323:
1.181 sakharuk 324: #-- <form> tag (end tag required)
1.122 albertel 325: sub start_form {
326: my ($target,$token) = @_;
327: my $currentstring = '';
1.325 albertel 328: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 329: $currentstring = $token->[4];
330: }
331: return $currentstring;
332: }
333:
334: sub end_form {
335: my ($target,$token) = @_;
336: my $currentstring = '';
1.325 albertel 337: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 338: $currentstring = $token->[2];
339: }
340: return $currentstring;
341: }
342:
1.181 sakharuk 343: #-- <title> tag (end tag required)
1.122 albertel 344: sub start_title {
1.327 albertel 345: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
1.122 albertel 346: my $currentstring = '';
1.324 albertel 347: if ($target eq 'web' || $target eq 'webgrade') {
1.327 albertel 348: $Apache::londefdef::title =
349: &Apache::lonxml::get_all_text('/title',$parser,$style);
1.122 albertel 350: } elsif ($target eq 'tex') {
1.166 sakharuk 351: $currentstring .= '\keephidden{Title of the document: '
1.122 albertel 352: }
353: if ($target eq 'meta') {
354: $currentstring='<title>';
1.185 albertel 355: &start_output($target);
1.122 albertel 356: }
357: return $currentstring;
358: }
359:
360: sub end_title {
361: my ($target,$token) = @_;
362: my $currentstring = '';
1.324 albertel 363: if ($target eq 'web' || $target eq 'webgrade') {
1.327 albertel 364: # start_title takes care of swallowing the title
1.122 albertel 365: } elsif ($target eq 'tex') {
366: $currentstring .= '}';
367: }
368: if ($target eq 'meta') {
1.185 albertel 369: &end_output($target);
1.122 albertel 370: $currentstring='</title>';
371: }
372: return $currentstring;
373: }
374:
1.181 sakharuk 375: #-- <meta> tag (end tag forbidden)
1.122 albertel 376: sub start_meta {
1.299 albertel 377: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
1.122 albertel 378: my $currentstring = '';
1.325 albertel 379: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 380: my $args='';
381: if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }
382: if ($args eq '') {
1.299 albertel 383: &Apache::lonxml::get_all_text("/meta",$parser,$style);
1.122 albertel 384: } else {
385: $currentstring = $token->[4];
1.1 sakharuk 386: }
1.135 sakharuk 387: } elsif ($target eq 'meta') {
1.122 albertel 388: unless (&Apache::lonxml::get_param
389: ('http-equiv',$parstack,$safeeval,undef,1)) {
390: my $name=$token->[2]->{'name'};
391: $name=~tr/A-Z/a-z/;
392: $name=~s/\s/\_/gs;
393: $name=~s/\W//gs;
394: if ($name) {
1.154 www 395: $currentstring='<'.$name;
396: my $display=&Apache::lonxml::get_param
397: ('display',$parstack,$safeeval,undef,1);
398: if ($display) {
399: $display=~s/\"/\'/g;
400: $currentstring.=' display="'.$display.'"';
401: }
402: $currentstring.='>'.
1.122 albertel 403: &Apache::lonxml::get_param
404: ('content',$parstack,$safeeval,undef,1).
1.135 sakharuk 405: '</'.$name.'>';
1.1 sakharuk 406: }
1.154 www 407: my $display=&Apache::lonxml::get_param
408: ('display',$parstack,$safeeval,undef,1);
409: if ($display) {
1.204 albertel 410: $display=&HTML::Entities::encode($display,'<>&"');
1.154 www 411: $currentstring.='<'.$name.'.display>'.$display.
412: '</'.$name.'.display>';
413: }
1.1 sakharuk 414: }
1.135 sakharuk 415: } elsif ($target eq 'tex') {
1.151 sakharuk 416: my $content=&Apache::lonxml::get_param('content',$parstack,$safeeval);
417: my $name=&Apache::lonxml::get_param('name',$parstack,$safeeval);
418: if ((not defined $content) && (not defined $name)) {
419: &Apache::lonxml::startredirection();
420: }
1.374 albertel 421: } elsif ($target eq 'edit') {
422: $currentstring .= &Apache::edit::tag_start($target,$token);
423: $currentstring .= &Apache::edit::text_arg('Name:','name',$token,30);
424: $currentstring .= &Apache::edit::text_arg('Content:','content',$token,70);
425: $currentstring .= &Apache::edit::end_row();
426: } elsif ($target eq 'modified') {
427: my $constructtag =
428: &Apache::edit::get_new_args($token,$parstack,$safeeval,
429: 'name','content');
430: if ($constructtag) { $currentstring = &Apache::edit::rebuild_tag($token); }
1.122 albertel 431: }
432: return $currentstring;
433: }
434:
435: sub end_meta {
1.165 albertel 436: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 437: my $currentstring = '';
1.325 albertel 438: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 439: my $args='';
440: if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }
441: if ($args ne '') {
1.121 www 442: $currentstring = $token->[4];
1.122 albertel 443: }
1.135 sakharuk 444: } elsif ($target eq 'tex') {
1.165 albertel 445: my $content=&Apache::lonxml::get_param('content',$parstack,$safeeval);
446: my $name=&Apache::lonxml::get_param('name',$parstack,$safeeval);
1.164 albertel 447: if ((not defined $content) && (not defined $name)) {
1.169 albertel 448: &Apache::lonxml::endredirection();
1.164 albertel 449: }
1.135 sakharuk 450: }
1.122 albertel 451: return $currentstring;
452: }
453:
1.374 albertel 454: sub insert_meta {
455: return '
456: <meta />';
457: }
458:
1.121 www 459: # accessrule
1.122 albertel 460: sub start_accessrule {
1.299 albertel 461: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
1.122 albertel 462: my $currentstring = '';
1.373 albertel 463: my $eff =&Apache::lonxml::get_param('effect',$parstack,$safeeval,undef,1);
464: my $realm=&Apache::lonxml::get_param('realm', $parstack,$safeeval,undef,1);
465: my $role =&Apache::lonxml::get_param('role', $parstack,$safeeval,undef,1);
466: my $type =&Apache::lonxml::get_param('type', $parstack,$safeeval,undef,1);
467:
468: my ($dom,$crs,$sec,$separator);
1.369 albertel 469: if ($type eq 'user') {
1.373 albertel 470: ($dom,$crs,$sec)=split(m{/},$realm);
1.369 albertel 471: $crs = &LONCAPA::clean_username($crs);
1.373 albertel 472: $separator = '/';
1.369 albertel 473: } else {
1.373 albertel 474: ($dom,$crs,$sec)=split(/\_/,$realm);
1.369 albertel 475: $crs = &LONCAPA::clean_courseid($crs);
1.373 albertel 476: $separator = '_';
1.369 albertel 477: }
1.373 albertel 478: $dom = &LONCAPA::clean_domain($dom);
479:
1.369 albertel 480: $sec =~s/\W//;
481: $realm = $dom;
1.373 albertel 482: if ($crs =~ /\S/) { $realm .= $separator.$crs; }
483: if ($sec =~ /\S/) { $realm .= $separator.$sec; }
1.369 albertel 484: $role=~s/\W//g;
485:
1.122 albertel 486: if ($target eq 'web') {
487: my $args='';
488: if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }
489: if ($args eq '') {
1.299 albertel 490: &Apache::lonxml::get_all_text("/accessrule",$parser,$style);
1.122 albertel 491: } else {
492: $currentstring = $token->[4];
493: }
494: }
495: if ($target eq 'meta') {
1.369 albertel 496: $currentstring='<rule>'.$eff.':'.$realm.':'.$role.':'.$type.'</rule>';
1.122 albertel 497: }
498: return $currentstring;
499: }
500:
501: sub end_accessrule {
502: my ($target,$token,$tagstack,$parstack,$parser) = @_;
503: my $currentstring = '';
504: if ($target eq 'web') {
505: my $args='';
506: if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }
507: if ($args ne '') {
508: $currentstring = $token->[4];
509: }
510: }
511: return $currentstring;
512: }
513:
1.366 albertel 514: sub generate_css_links {
515: my $links;
516: my $css_href = &Apache::lonnet::EXT('resource.0.cssfile');
517: if ($css_href =~ /\S/) {
518: &Apache::lonxml::extlink($css_href);
519: $links .=
520: '<link rel="stylesheet" type="text/css" href="'.$css_href.'" />';
521: }
522: return $links;
523: }
524:
1.181 sakharuk 525: #-- <body> tag (end tag required)
1.122 albertel 526: sub start_body {
527: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
528: my $currentstring = '';
1.244 albertel 529:
1.324 albertel 530: if ($target eq 'web' || $target eq 'webgrade') {
1.170 albertel 531: if ($Apache::lonhomework::parsing_a_problem) {
532: &Apache::lonxml::warning("<body> tag found inside of <problem> tag this can cause problems.");
533: return '';
534: }
1.122 albertel 535:
1.327 albertel 536: if (&is_inside_of($tagstack, "head")) {
537: &end_head(@_);
1.122 albertel 538: }
1.366 albertel 539:
540: my $extra_head = &generate_css_links();
541:
1.406 bisitz 542: # Breadcrumbs
543: &Apache::lonhtmlcommon::clear_breadcrumbs();
1.410 bisitz 544: if ($env{'request.state'} eq 'construct') {
545: &Apache::lonhtmlcommon::add_breadcrumb({
546: 'text' => 'Construction Space',
547: 'href' => &Apache::loncommon::authorspace(),
548: });
549: &Apache::lonhtmlcommon::add_breadcrumb({
550: 'text' => 'HTML Editor',
551: 'href' => '',
552: });
1.413 droeschl 553: # breadcrumbs (and tools) will be created
554: # in start_page->bodytag->innerregister
1.410 bisitz 555: } else {
556: # FIXME Where are we?
557: }
1.406 bisitz 558:
1.327 albertel 559: $currentstring =
560: &Apache::loncommon::start_page($Apache::londefdef::title,
1.366 albertel 561: $Apache::londefdef::head
562: .$extra_head,
1.327 albertel 563: {'add_entries' => $token->[2],
1.404 bisitz 564: # 'no_title' => 1,
1.327 albertel 565: 'force_register' => 1});
566:
1.407 bisitz 567: my $header = '';
1.411 bisitz 568: if ($env{'request.state'} ne 'published' &&
569: $env{'request.state'} ne 'construct') {
570: $header=&Apache::lonmenu::constspaceform();
571: }
1.407 bisitz 572: if ($env{'request.state'} ne 'published') {
1.411 bisitz 573: $header.=&Apache::londefdef::edit_controls();
1.407 bisitz 574: }
1.410 bisitz 575: if ($env{'request.state'} eq 'construct') {
576: $currentstring.=&Apache::loncommon::head_subbox(
577: &Apache::loncommon::CSTR_pageheader()
578: .$header);
1.412 raeburn 579: } elsif ($env{'request.state'} eq 'edit') {
580: $currentstring.=&Apache::loncommon::head_subbox($header);
1.410 bisitz 581: }
1.407 bisitz 582: $currentstring.=&Apache::lonxml::message_location();
1.122 albertel 583: } elsif ($target eq 'tex') {
1.407 bisitz 584: $currentstring = ''; # '\begin{document}' is in header.
585: }
586:
1.122 albertel 587: return $currentstring;
588: }
589:
1.376 albertel 590: sub edit_controls {
1.401 raeburn 591: my ($nochgview) = @_;
1.389 www 592: my $result .= '
1.415.4.3 raeburn 593: <form method="post" action="">
1.401 raeburn 594: <div class="LC_edit_problem_header">';
595: unless ($nochgview) {
596: $result .= '
1.389 www 597: <div class="LC_edit_problem_header_row1">'.
598: &Apache::lonxml::renderingoptions().'
599: <input type="submit" name="changeproblemmode" value="'.&mt('Change View').'" />
1.401 raeburn 600: </div>';
601: }
602: $result .= '
1.412 raeburn 603: <div><input type="submit" name="editmode" accesskey="e" value="'.&mt('Edit').'" />';
604: if (($env{'request.course.id'}) && ($env{'form.forceedit'})) {
1.415.4.3 raeburn 605: my $viewtext = &mt('Course View');
606: if (&Apache::loncommon::course_type() eq 'Community') {
607: $viewtext = &mt('Community View');
608: }
609: $result .= (' ' x 3).'<input type="button" value="'.
610: $viewtext.'" onclick="javascript:location.href=currentURL" />';
1.412 raeburn 611: }
612: $result .= '</div>
1.408 bisitz 613: </div>
1.376 albertel 614: </form>
1.408 bisitz 615: ';
1.376 albertel 616: return $result;
617: }
618:
1.122 albertel 619: sub end_body {
1.259 albertel 620: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 621: my $currentstring = &end_p(); # Close off unclosed <p>
1.324 albertel 622: if ($target eq 'web' || $target eq 'webgrade') {
1.327 albertel 623: $currentstring .= &Apache::loncommon::end_page({'discussion' => 1});
1.122 albertel 624: } elsif ($target eq 'tex') {
1.277 foxr 625: $currentstring .= '\strut\newline\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill}\newline\noindent \end{document}';
1.122 albertel 626: }
627: return $currentstring;
628: }
629:
1.309 albertel 630: # \begin{center} causes a new paragprah spacing that looks odd inside
1.337 foxr 631: # of a table cell. Same at the end of a \center but with a slightly
632: # larger space .. hence center_correction and center_end_correction.
633: #
634: sub center_correction { return '\vspace*{-6 mm}'; }
635: sub center_end_correction { return '\vspace*{-7 mm}'; }
636:
1.181 sakharuk 637: #-- <center> tag (end tag required)
1.122 albertel 638: sub start_center {
1.309 albertel 639: my ($target,$token,$tagstack) = @_;
1.279 foxr 640: my $currentstring = &end_p(); # Close off any prior para.
1.325 albertel 641: if ($target eq 'web' || $target eq 'webgrade') {
1.277 foxr 642: $currentstring .= $token->[4];
1.122 albertel 643: } elsif ($target eq 'tex') {
1.309 albertel 644: if (&is_inside_of($tagstack, "table")) {
645: $currentstring .= ¢er_correction();
646: }
1.277 foxr 647: $currentstring .= '\begin{center}';
1.144 sakharuk 648: }
1.122 albertel 649: return $currentstring;
650: }
651:
652: sub end_center {
1.309 albertel 653: my ($target,$token,$tagstack) = @_;
1.122 albertel 654: my $currentstring = '';
1.325 albertel 655: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 656: $currentstring = $token->[2];
657: } elsif ($target eq 'tex') {
658: $currentstring = '\end{center}';
1.337 foxr 659: if (&is_inside_of($tagstack, "table")) {
660: $currentstring .= ¢er_end_correction();
661: }
1.144 sakharuk 662: }
1.122 albertel 663: return $currentstring;
664: }
665:
1.181 sakharuk 666: #-- <b> tag (end tag required)
1.279 foxr 667: # NOTE: In TeX mode disables internal <p>
1.122 albertel 668: sub start_b {
669: my ($target,$token) = @_;
670: my $currentstring = '';
1.325 albertel 671: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 672: $currentstring = $token->[4];
673: } elsif ($target eq 'tex') {
1.279 foxr 674: &disable_para();
675: $currentstring .= '\textbf{';
1.122 albertel 676: }
677: return $currentstring;
678: }
679:
680: sub end_b {
681: my ($target,$token) = @_;
682: my $currentstring = '';
1.325 albertel 683: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 684: $currentstring = $token->[2];
685: } elsif ($target eq 'tex') {
1.279 foxr 686: &enable_para();
687: $currentstring = '}';
1.122 albertel 688: }
689: return $currentstring;
690: }
1.35 sakharuk 691:
1.181 sakharuk 692: #-- <strong> tag (end tag required)
1.279 foxr 693: # NOTE: in TeX mode disables internal <p>
1.122 albertel 694: sub start_strong {
695: my ($target,$token) = @_;
696: my $currentstring = '';
1.325 albertel 697: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 698: $currentstring = $token->[4];
699: } elsif ($target eq 'tex') {
1.279 foxr 700: &disable_para();
1.122 albertel 701: $currentstring = '\textbf{';
702: }
703: return $currentstring;
704: }
705:
706: sub end_strong {
707: my ($target,$token) = @_;
708: my $currentstring = '';
1.325 albertel 709: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 710: $currentstring = $token->[2];
711: } elsif ($target eq 'tex') {
1.279 foxr 712: &enable_para();
1.122 albertel 713: $currentstring = '}';
1.144 sakharuk 714: }
1.122 albertel 715: return $currentstring;
716: }
717:
1.181 sakharuk 718: #-- <h1> tag (end tag required)
1.122 albertel 719: sub start_h1 {
1.125 sakharuk 720: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 721: my $currentstring = &end_p(); # Close off any prior para.
1.325 albertel 722: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 723: $currentstring .= $token->[4];
724: } elsif ($target eq 'tex') {
1.125 sakharuk 725: my $pre;
1.199 albertel 726: my $align=lc(&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1));
1.212 sakharuk 727: if ($align eq 'center') {
1.125 sakharuk 728: $pre='\begin{center}';
729: } elsif ($align eq 'left') {
730: $pre='\rlap{';
731: } elsif ($align eq 'right') {
732: $pre=' \hfill \llap{';
733: }
734: my $TeXsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval,undef,0);
735: if (not defined $TeXsize) {$TeXsize="large";}
1.275 foxr 736: $currentstring .= '\strut\newline '.$pre.'{\\'.$TeXsize.' \textbf{';
1.122 albertel 737: } elsif ($target eq 'meta') {
1.277 foxr 738: $currentstring.='<subject>';
1.185 albertel 739: &start_output($target);
1.122 albertel 740: }
741: return $currentstring;
742: }
743:
744: sub end_h1 {
1.125 sakharuk 745: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 746: my $currentstring = '';
1.325 albertel 747: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 748: $currentstring .= $token->[2];
749: } elsif ($target eq 'tex') {
1.212 sakharuk 750: my $post='\vskip 0 mm ';
1.125 sakharuk 751: my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1.212 sakharuk 752: if ($align eq 'center') {
1.125 sakharuk 753: $post='\end{center}';
754: } elsif ($align eq 'left') {
755: $post='} \hfill'.'\vskip 0 mm ';
756: } elsif ($align eq 'right') {
757: $post='}'.'\vskip 0 mm ';
758: }
759: $currentstring .= '}}'.$post;
1.122 albertel 760: } elsif ($target eq 'meta') {
1.185 albertel 761: &end_output($target);
1.122 albertel 762: $currentstring='</subject>';
763: }
764: return $currentstring;
765: }
766:
1.35 sakharuk 767: #-- <h2> tag
1.122 albertel 768: sub start_h2 {
1.125 sakharuk 769: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 770: my $currentstring = &end_p(); # Close off any prior para.
1.325 albertel 771: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 772: $currentstring .= $token->[4];
773: } elsif ($target eq 'tex') {
1.125 sakharuk 774: my $pre;
775: my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1.212 sakharuk 776: if ($align eq 'center') {
1.125 sakharuk 777: $pre='\begin{center}';
778: } elsif ($align eq 'left') {
779: $pre='\rlap{';
780: } elsif ($align eq 'right') {
781: $pre=' \hfill \llap{';
782: }
783: my $TeXsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval,undef,0);
784: if (not defined $TeXsize) {$TeXsize="large";}
1.275 foxr 785: $currentstring .= '\strut\newline '.$pre.'{\\'.$TeXsize.' \textbf{';
1.122 albertel 786: }
787: return $currentstring;
788: }
789:
790: sub end_h2 {
1.125 sakharuk 791: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 792: my $currentstring = '';
1.325 albertel 793: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 794: $currentstring .= $token->[2];
795: } elsif ($target eq 'tex') {
1.212 sakharuk 796: my $post='\vskip 0 mm ';
1.125 sakharuk 797: my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1.212 sakharuk 798: if ($align eq 'center') {
1.125 sakharuk 799: $post='\end{center}';
800: } elsif ($align eq 'left') {
801: $post='} \hfill'.'\vskip 0 mm ';
802: } elsif ($align eq 'right') {
803: $post='}'.'\vskip 0 mm ';
804: }
805: $currentstring .= '}}'.$post;
1.122 albertel 806: }
807: return $currentstring;
808: }
809:
1.35 sakharuk 810: #-- <h3> tag
1.122 albertel 811: sub start_h3 {
1.125 sakharuk 812: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 813: my $currentstring = &end_p(); # Close off any prior para.
1.325 albertel 814: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 815: $currentstring .= $token->[4];
816: } elsif ($target eq 'tex') {
1.125 sakharuk 817: my $pre;
818: my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1.212 sakharuk 819: if ($align eq 'center') {
1.125 sakharuk 820: $pre='\begin{center}';
821: } elsif ($align eq 'left') {
822: $pre='\rlap{';
823: } elsif ($align eq 'right') {
824: $pre=' \hfill \llap{';
825: }
826: my $TeXsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval,undef,0);
827: if (not defined $TeXsize) {$TeXsize="large";}
1.275 foxr 828: $currentstring .= '\strut\newline '.$pre.'{\\'.$TeXsize.' \textbf{';
1.122 albertel 829: }
830: return $currentstring;
831: }
832:
833: sub end_h3 {
1.125 sakharuk 834: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 835: my $currentstring = '';
1.325 albertel 836: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 837: $currentstring .= $token->[2];
838: } elsif ($target eq 'tex') {
1.212 sakharuk 839: my $post='\vskip 0 mm ';
1.125 sakharuk 840: my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1.212 sakharuk 841: if ($align eq 'center') {
1.125 sakharuk 842: $post='\end{center}';
843: } elsif ($align eq 'left') {
844: $post='} \hfill'.'\vskip 0 mm ';
845: } elsif ($align eq 'right') {
846: $post='}'.'\vskip 0 mm ';
847: }
848: $currentstring .= '}}'.$post;
1.122 albertel 849: }
850: return $currentstring;
851: }
852:
1.35 sakharuk 853: #-- <h4> tag
1.122 albertel 854: sub start_h4 {
1.125 sakharuk 855: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 856: my $currentstring = &end_p(); # Close off any prior para.
1.325 albertel 857: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 858: $currentstring .= $token->[4];
859: } elsif ($target eq 'tex') {
1.125 sakharuk 860: my $pre;
861: my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1.212 sakharuk 862: if ($align eq 'center') {
1.125 sakharuk 863: $pre='\begin{center}';
864: } elsif ($align eq 'left') {
865: $pre='\rlap{';
866: } elsif ($align eq 'right') {
867: $pre=' \hfill \llap{';
868: }
869: my $TeXsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval,undef,0);
870: if (not defined $TeXsize) {$TeXsize="large";}
1.275 foxr 871: $currentstring .= '\strut\newline '.$pre.'{\\'.$TeXsize.' \textbf{';
1.122 albertel 872: }
873: return $currentstring;
874: }
875:
876: sub end_h4 {
1.125 sakharuk 877: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 878: my $currentstring = '';
1.325 albertel 879: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 880: $currentstring .= $token->[2];
881: } elsif ($target eq 'tex') {
1.212 sakharuk 882: my $post='\vskip 0 mm ';
1.125 sakharuk 883: my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1.212 sakharuk 884: if ($align eq 'center') {
1.125 sakharuk 885: $post='\end{center}';
886: } elsif ($align eq 'left') {
887: $post='} \hfill'.'\vskip 0 mm ';
888: } elsif ($align eq 'right') {
889: $post='}'.'\vskip 0 mm ';
890: }
891: $currentstring .= '}}'.$post;
1.122 albertel 892: }
893: return $currentstring;
894: }
895:
1.35 sakharuk 896: #-- <h5> tag
1.122 albertel 897: sub start_h5 {
1.125 sakharuk 898: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 899: my $currentstring = &end_p(); # Close off any prior paras.
1.325 albertel 900: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 901: $currentstring .= $token->[4];
902: } elsif ($target eq 'tex') {
1.125 sakharuk 903: my $pre;
904: my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1.212 sakharuk 905: if ($align eq 'center') {
1.125 sakharuk 906: $pre='\begin{center}';
907: } elsif ($align eq 'left') {
908: $pre='\rlap{';
909: } elsif ($align eq 'right') {
910: $pre=' \hfill \llap{';
911: }
912: my $TeXsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval,undef,0);
913: if (not defined $TeXsize) {$TeXsize="large";}
1.275 foxr 914: $currentstring .= '\strut\newline '.$pre.'{\\'.$TeXsize.' \textbf{';
1.122 albertel 915: }
916: return $currentstring;
917: }
918:
919: sub end_h5 {
1.125 sakharuk 920: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 921: my $currentstring = '';
1.325 albertel 922: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 923: $currentstring .= $token->[2];
924: } elsif ($target eq 'tex') {
1.212 sakharuk 925: my $post='\vskip 0 mm ';
1.125 sakharuk 926: my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1.212 sakharuk 927: if ($align eq 'center') {
1.125 sakharuk 928: $post='\end{center}';
929: } elsif ($align eq 'left') {
930: $post='} \hfill'.'\vskip 0 mm ';
931: } elsif ($align eq 'right') {
932: $post='}'.'\vskip 0 mm ';
933: }
934: $currentstring .= '}}'.$post;
1.122 albertel 935: }
936: return $currentstring;
937: }
938:
1.35 sakharuk 939: #-- <h6> tag
1.122 albertel 940: sub start_h6 {
1.125 sakharuk 941: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 942: my $currentstring = &end_p(); # Close off any prior paras.
1.325 albertel 943: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 944: $currentstring .= $token->[4];
945: } elsif ($target eq 'tex') {
1.125 sakharuk 946: my $pre;
947: my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1.212 sakharuk 948: if ($align eq 'center') {
1.125 sakharuk 949: $pre='\begin{center}';
950: } elsif ($align eq 'left') {
951: $pre='\rlap{';
952: } elsif ($align eq 'right') {
953: $pre=' \hfill \llap{';
954: }
955: my $TeXsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval,undef,0);
956: if (not defined $TeXsize) {$TeXsize="large";}
1.275 foxr 957: $currentstring .= '\strut\newline '.$pre.'{\\'.$TeXsize.' \textbf{';
1.122 albertel 958: }
959: return $currentstring;
960: }
961:
962: sub end_h6 {
1.125 sakharuk 963: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 964: my $currentstring = '';
1.325 albertel 965: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 966: $currentstring .= $token->[2];
967: } elsif ($target eq 'tex') {
1.212 sakharuk 968: my $post='\vskip 0 mm ';
1.125 sakharuk 969: my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1.212 sakharuk 970: if ($align eq 'center') {
1.125 sakharuk 971: $post='\end{center}';
972: } elsif ($align eq 'left') {
973: $post='} \hfill'.'\vskip 0 mm ';
974: } elsif ($align eq 'right') {
975: $post='}'.'\vskip 0 mm ';
976: }
977: $currentstring .= '}}'.$post;
1.122 albertel 978: }
979: return $currentstring;
980: }
981:
1.181 sakharuk 982: #--- <cite> tag (end tag required)
1.122 albertel 983: sub start_cite {
984: my ($target,$token) = @_;
985: my $currentstring = '';
1.325 albertel 986: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 987: $currentstring .= $token->[4];
988: } elsif ($target eq 'tex') {
1.179 sakharuk 989: $currentstring .= '\textit{';
1.144 sakharuk 990: }
1.122 albertel 991: return $currentstring;
992: }
993:
994: sub end_cite {
995: my ($target,$token) = @_;
996: my $currentstring = '';
1.325 albertel 997: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 998: $currentstring .= $token->[2];
999: } elsif ($target eq 'tex') {
1.179 sakharuk 1000: $currentstring .= '}';
1.144 sakharuk 1001: }
1.122 albertel 1002: return $currentstring;
1003: }
1004:
1.181 sakharuk 1005: #-- <i> tag (end tag required)
1.122 albertel 1006: sub start_i {
1007: my ($target,$token) = @_;
1008: my $currentstring = '';
1.325 albertel 1009: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1010: $currentstring .= $token->[4];
1011: } elsif ($target eq 'tex') {
1012: $currentstring .= '\textit{';
1.144 sakharuk 1013: }
1.122 albertel 1014: return $currentstring;
1015: }
1016:
1017: sub end_i {
1018: my ($target,$token) = @_;
1019: my $currentstring = '';
1.325 albertel 1020: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1021: $currentstring .= $token->[2];
1022: } elsif ($target eq 'tex') {
1023: $currentstring .= '}';
1024: }
1025: return $currentstring;
1026: }
1027:
1.181 sakharuk 1028: #-- <address> tag (end tag required)
1.122 albertel 1029: sub start_address {
1030: my ($target,$token) = @_;
1031: my $currentstring = '';
1.325 albertel 1032: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1033: $currentstring .= $token->[4];
1034: } elsif ($target eq 'tex') {
1.179 sakharuk 1035: $currentstring .= '\textit{';
1.144 sakharuk 1036: }
1.122 albertel 1037: return $currentstring;
1038: }
1039:
1040: sub end_address {
1041: my ($target,$token) = @_;
1042: my $currentstring = '';
1.325 albertel 1043: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1044: $currentstring .= $token->[2];
1045: } elsif ($target eq 'tex') {
1.179 sakharuk 1046: $currentstring .= '}';
1.122 albertel 1047: }
1048: return $currentstring;
1049: }
1050:
1.181 sakharuk 1051: #-- <dfn> tag (end tag required)
1.122 albertel 1052: sub start_dfn {
1053: my ($target,$token) = @_;
1054: my $currentstring = '';
1.325 albertel 1055: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1056: $currentstring .= $token->[4];
1057: } elsif ($target eq 'tex') {
1.179 sakharuk 1058: $currentstring .= '\textit{';
1.122 albertel 1059: }
1060: return $currentstring;
1061: }
1062:
1063: sub end_dfn {
1064: my ($target,$token) = @_;
1065: my $currentstring = '';
1.325 albertel 1066: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1067: $currentstring .= $token->[2];
1068: } elsif ($target eq 'tex') {
1.179 sakharuk 1069: $currentstring .= '}';
1.144 sakharuk 1070: }
1.122 albertel 1071: return $currentstring;
1072: }
1073:
1.181 sakharuk 1074: #-- <tt> tag (end tag required)
1.122 albertel 1075: sub start_tt {
1076: my ($target,$token) = @_;
1077: my $currentstring = '';
1.325 albertel 1078: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1079: $currentstring .= $token->[4];
1080: } elsif ($target eq 'tex') {
1081: $currentstring .= '\texttt{';
1.144 sakharuk 1082: }
1.122 albertel 1083: return $currentstring;
1084: }
1085:
1086: sub end_tt {
1087: my ($target,$token) = @_;
1088: my $currentstring = '';
1.325 albertel 1089: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1090: $currentstring .= $token->[2];
1091: } elsif ($target eq 'tex') {
1092: $currentstring .= '}';
1093: }
1094: return $currentstring;
1095: }
1096:
1.181 sakharuk 1097: #-- <kbd> tag (end tag required)
1.122 albertel 1098: sub start_kbd {
1099: my ($target,$token) = @_;
1100: my $currentstring = '';
1.325 albertel 1101: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1102: $currentstring .= $token->[4];
1103: } elsif ($target eq 'tex') {
1.179 sakharuk 1104: $currentstring .= '\texttt{';
1.144 sakharuk 1105: }
1.122 albertel 1106: return $currentstring;
1107: }
1108:
1109: sub end_kbd {
1110: my ($target,$token) = @_;
1111: my $currentstring = '';
1.325 albertel 1112: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1113: $currentstring .= $token->[2];
1114: } elsif ($target eq 'tex') {
1.179 sakharuk 1115: $currentstring .= '}';
1.144 sakharuk 1116: }
1.122 albertel 1117: return $currentstring;
1118: }
1119:
1.181 sakharuk 1120: #-- <code> tag (end tag required)
1.122 albertel 1121: sub start_code {
1122: my ($target,$token) = @_;
1123: my $currentstring = '';
1.325 albertel 1124: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1125: $currentstring .= $token->[4];
1126: } elsif ($target eq 'tex') {
1127: $currentstring .= '\texttt{';
1128: }
1129: return $currentstring;
1130: }
1131:
1132: sub end_code {
1133: my ($target,$token) = @_;
1134: my $currentstring = '';
1.325 albertel 1135: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1136: $currentstring .= $token->[2];
1137: } elsif ($target eq 'tex') {
1138: $currentstring .= '}';
1139: }
1140: return $currentstring;
1141: }
1142:
1.181 sakharuk 1143: #-- <em> tag (end tag required)
1.122 albertel 1144: sub start_em {
1145: my ($target,$token) = @_;
1146: my $currentstring = '';
1.325 albertel 1147: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1148: $currentstring .= $token->[4];
1149: } elsif ($target eq 'tex') {
1150: $currentstring .= '\emph{';
1.144 sakharuk 1151: }
1.122 albertel 1152: return $currentstring;
1153: }
1154:
1155: sub end_em {
1156: my ($target,$token) = @_;
1157: my $currentstring = '';
1.325 albertel 1158: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1159: $currentstring .= $token->[2];
1160: } elsif ($target eq 'tex') {
1161: $currentstring .= '}';
1.144 sakharuk 1162: }
1.122 albertel 1163: return $currentstring;
1164: }
1165:
1.181 sakharuk 1166: #-- <q> tag (end tag required)
1.122 albertel 1167: sub start_q {
1168: my ($target,$token) = @_;
1169: my $currentstring = '';
1.325 albertel 1170: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1171: $currentstring .= $token->[4];
1172: } elsif ($target eq 'tex') {
1.179 sakharuk 1173: $currentstring .= '\emph{';
1.122 albertel 1174: }
1175: return $currentstring;
1176: }
1177:
1178: sub end_q {
1179: my ($target,$token) = @_;
1180: my $currentstring = '';
1.325 albertel 1181: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1182: $currentstring .= $token->[2];
1183: } elsif ($target eq 'tex') {
1.179 sakharuk 1184: $currentstring .= '}';
1.144 sakharuk 1185: }
1.122 albertel 1186: return $currentstring;
1187: }
1188:
1.277 foxr 1189: # <p> is a bit strange since it does not require a closing </p>
1190: # However in latex, we must often output closing stuff to end
1191: # environments and {}'s etc. Therefore we do all the work
1192: # of figuring out the ending strings in the start tag processing,
1193: # and provide a mechanism to output the stop text external
1194: # to tag processing.
1195: #
1196: {
1197:
1198: my $closing_string = ''; # String required to close <p>
1199:
1.279 foxr 1200: # Some tags are <p> fragile meaning that <p> inside of them
1201: # does not work within TeX mode. This is managed via the
1202: # counter below:
1203: #
1204:
1205: my $para_disabled = 0;
1206:
1207: sub disable_para {
1208: $para_disabled++;
1209: }
1210: sub enable_para {
1211: $para_disabled--;
1212: }
1213:
1214:
1.181 sakharuk 1215: #-- <p> tag (end tag optional)
1.198 sakharuk 1216: #optional attribute - align="center|left|right"
1.122 albertel 1217: sub start_p {
1.157 sakharuk 1218: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 1219: my $currentstring = '';
1.325 albertel 1220: if ($target eq 'web' || $target eq 'webgrade') {
1.279 foxr 1221: $currentstring .= &end_p(); # close off prior para if in progress.
1.122 albertel 1222: $currentstring .= $token->[4];
1.279 foxr 1223: if (! ($currentstring =~ /\//)) {
1224: $closing_string = '</p>'; # Deal correctly with <p /> e.g.
1225: }
1226: } elsif ($target eq 'tex' && !$para_disabled) {
1.313 foxr 1227:
1.279 foxr 1228: $currentstring .= &end_p(); # close off prior para if in progress.
1.198 sakharuk 1229: my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1230: if ($align eq 'center') {
1.333 albertel 1231: $currentstring .='\begin{center}\par ';
1.277 foxr 1232: $closing_string = '\end{center}';
1.309 albertel 1233: if (&is_inside_of($tagstack, "table")) {
1234: $currentstring = ¢er_correction().$currentstring;
1235: }
1.198 sakharuk 1236: } elsif ($align eq 'right') {
1.323 foxr 1237: $currentstring.="\n".'{\flushright ';
1238: # $currentstring.='\makebox['.$env{'form.textwidth'}.']{\hfill\llap{';
1239: $closing_string= "}\n";
1.198 sakharuk 1240: } elsif ($align eq 'left') {
1.323 foxr 1241: $currentstring.= "\n".'{\flushleft ';
1242: # $currentstring.='\noindent\makebox['.$env{'form.textwidth'}.']{{';
1243: $closing_string = "}\n";
1.216 matthew 1244: } else {
1.277 foxr 1245: $currentstring.='\par ';
1.313 foxr 1246: if (&is_inside_of($tagstack, 'table')) {
1.315 foxr 1247: $closing_string = '\vskip 0pt'; # Seems to be consistent with <p> in tables.
1.313 foxr 1248: } else {
1249: $closing_string = '\strut\\\\\strut ';
1250: }
1.216 matthew 1251: }
1.277 foxr 1252:
1.144 sakharuk 1253: }
1.122 albertel 1254: return $currentstring;
1255: }
1.277 foxr 1256: #
1257: # End paragraph processing just requires that we output the
1258: # closing string that was saved and blank it.
1259: sub end_p {
1.279 foxr 1260: # Note only 'tex' mode uses disable_para and enable_para
1261: # so we don't need to know the target in the check below:
1262:
1263: if (!$para_disabled) {
1264: my $current_string = $closing_string;
1265: $closing_string = ''; # Not in a para anymore.
1266: return $current_string;
1267: } else {
1268: return '';
1269: }
1.122 albertel 1270:
1271: }
1.277 foxr 1272: }
1.181 sakharuk 1273: #-- <br> tag (end tag forbidden)
1.122 albertel 1274: sub start_br {
1275: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1276: my $currentstring = '';
1.325 albertel 1277: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1278: $currentstring .= $token->[4];
1279: } elsif ($target eq 'tex') {
1.227 sakharuk 1280: my @tempo=@$tagstack;
1.229 sakharuk 1281: my $signal=0;
1.287 foxr 1282: # Not going to factor this to is_inside_of since that would require
1283: # multiple stack traversals.
1284: #
1.227 sakharuk 1285: for (my $i=$#tempo;$i>=0;$i--) {
1286: if (($tempo[$i] eq 'b') || ($tempo[$i] eq 'strong') ||
1.334 albertel 1287: ($tempo[$i] eq 'ol') || ($tempo[$i] eq 'ul')) {
1.229 sakharuk 1288: $signal=1;
1.334 albertel 1289: }
1290: if (($tempo[$i] eq 'td') || ($tempo[$i] eq 'th')) {
1.336 foxr 1291: $signal = 1;
1.227 sakharuk 1292: }
1293: }
1.375 foxr 1294: if ($signal != 1) {
1.219 sakharuk 1295: $currentstring .= '\strut \\\\ \strut ';
1.1 sakharuk 1296: }
1.355 foxr 1297:
1.144 sakharuk 1298: }
1.122 albertel 1299: return $currentstring;
1300: }
1301:
1302: sub end_br {
1303: my ($target,$token) = @_;
1304: my $currentstring = '';
1.325 albertel 1305: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1306: $currentstring .= $token->[2];
1307: }
1308: return $currentstring;
1309: }
1310:
1.181 sakharuk 1311: #-- <big> tag (end tag required)
1.122 albertel 1312: sub start_big {
1313: my ($target,$token) = @_;
1314: my $currentstring = '';
1.325 albertel 1315: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1316: $currentstring .= $token->[4];
1317: } elsif ($target eq 'tex') {
1.137 sakharuk 1318: $currentstring .= '{\large ';
1.144 sakharuk 1319: }
1.122 albertel 1320: return $currentstring;
1321: }
1322:
1323: sub end_big {
1324: my ($target,$token) = @_;
1325: my $currentstring = '';
1.325 albertel 1326: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1327: $currentstring .= $token->[2];
1328: } elsif ($target eq 'tex') {
1329: $currentstring .= '}';
1330: }
1331: return $currentstring;
1332: }
1333:
1.181 sakharuk 1334: #-- <small> tag (end tag required)
1.122 albertel 1335: sub start_small {
1336: my ($target,$token) = @_;
1337: my $currentstring = '';
1.325 albertel 1338: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1339: $currentstring .= $token->[4];
1340: } elsif ($target eq 'tex') {
1341: $currentstring .= '{\footnotesize ';
1.144 sakharuk 1342: }
1.122 albertel 1343: return $currentstring;
1344: }
1345:
1346: sub end_small {
1347: my ($target,$token) = @_;
1348: my $currentstring = '';
1.325 albertel 1349: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1350: $currentstring .= $token->[2];
1351: } elsif ($target eq 'tex') {
1352: $currentstring .= '}';
1353: }
1354: return $currentstring;
1355: }
1356:
1.181 sakharuk 1357: #-- <basefont> tag (end tag forbidden)
1.122 albertel 1358: sub start_basefont {
1.126 sakharuk 1359: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1.122 albertel 1360: my $currentstring = '';
1.325 albertel 1361: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1362: $currentstring = $token->[4];
1.126 sakharuk 1363: } elsif ($target eq 'tex') {
1364: my $basesize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval);
1365: if (defined $basesize) {
1366: $currentstring = '{\\'.$basesize.' ';
1367: }
1368: }
1.122 albertel 1369: return $currentstring;
1370: }
1371:
1372: sub end_basefont {
1.126 sakharuk 1373: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 1374: my $currentstring = '';
1.325 albertel 1375: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1376: $currentstring = $token->[4];
1.126 sakharuk 1377: } elsif ($target eq 'tex') {
1378: my $basesize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval);
1379: if (defined $basesize) {
1380: $currentstring = '}';
1381: }
1382: }
1.122 albertel 1383: return $currentstring;
1384: }
1385:
1.181 sakharuk 1386: #-- <font> tag (end tag required)
1.122 albertel 1387: sub start_font {
1388: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1389: my $currentstring = '';
1.325 albertel 1390: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1391: my $face=&Apache::lonxml::get_param('face',$parstack,$safeeval);
1392: $currentstring = $token->[4];
1.126 sakharuk 1393: } elsif ($target eq 'tex') {
1394: my $fontsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval);
1395: if (defined $fontsize) {
1396: $currentstring = '{\\'.$fontsize.' ';
1397: }
1398: }
1.122 albertel 1399: return $currentstring;
1400: }
1401:
1402: sub end_font {
1403: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1404: my $currentstring = '';
1.325 albertel 1405: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1406: $currentstring = $token->[2];
1.126 sakharuk 1407: } elsif ($target eq 'tex') {
1408: my $fontsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval);
1409: if (defined $fontsize) {
1410: $currentstring = '}';
1411: }
1412: }
1.122 albertel 1413: return $currentstring;
1414: }
1415:
1.181 sakharuk 1416: #-- <strike> tag (end tag required)
1.122 albertel 1417: sub start_strike {
1418: my ($target,$token) = @_;
1419: my $currentstring = '';
1.325 albertel 1420: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1421: $currentstring .= $token->[4];
1422: } elsif ($target eq 'tex') {
1423: &Apache::lonxml::startredirection();
1424: }
1425: return $currentstring;
1426: }
1427:
1428: sub end_strike {
1429: my ($target,$token) = @_;
1430: my $currentstring = '';
1.325 albertel 1431: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1432: $currentstring .= $token->[2];
1433: } elsif ($target eq 'tex') {
1434: $currentstring=&Apache::lonxml::endredirection();
1435: $currentstring=~s/(\S)(\s+)(\S)/$1\}$2\\underline\{$3/g;
1436: $currentstring=~s/^\s*(\S)/\\underline\{$1/;
1437: $currentstring=~s/(\S)\s*$/$1\}/;
1438: }
1439: return $currentstring;
1440: }
1441:
1.181 sakharuk 1442: #-- <s> tag (end tag required)
1.122 albertel 1443: sub start_s {
1444: my ($target,$token) = @_;
1445: my $currentstring = '';
1.325 albertel 1446: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1447: $currentstring .= $token->[4];
1448: } elsif ($target eq 'tex') {
1449: &Apache::lonxml::startredirection();
1450: }
1451: return $currentstring;
1452: }
1453:
1454: sub end_s {
1455: my ($target,$token) = @_;
1456: my $currentstring = '';
1.325 albertel 1457: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1458: $currentstring .= $token->[2];
1459: } elsif ($target eq 'tex') {
1460: $currentstring=&Apache::lonxml::endredirection();
1461: $currentstring=~s/(\S)(\s+)(\S)/$1\}$2\\underline\{$3/g;
1462: $currentstring=~s/^\s*(\S)/\\underline\{$1/;
1463: $currentstring=~s/(\S)\s*$/$1\}/;
1464: }
1465: return $currentstring;
1466: }
1467:
1.181 sakharuk 1468: #-- <sub> tag (end tag required)
1.122 albertel 1469: sub start_sub {
1470: my ($target,$token) = @_;
1471: my $currentstring = '';
1.325 albertel 1472: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1473: $currentstring .= $token->[4];
1474: } elsif ($target eq 'tex') {
1.355 foxr 1475: $currentstring .= '\raisebox{-\smallskipamount}{\scriptsize{';
1.122 albertel 1476: }
1477: return $currentstring;
1478: }
1479:
1480: sub end_sub {
1481: my ($target,$token) = @_;
1482: my $currentstring = '';
1.325 albertel 1483: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1484: $currentstring .= $token->[2];
1485: } elsif ($target eq 'tex') {
1.202 sakharuk 1486: $currentstring .= '}}';
1.122 albertel 1487: }
1488: return $currentstring;
1489: }
1490:
1.181 sakharuk 1491: #-- <sup> tag (end tag required)
1.122 albertel 1492: sub start_sup {
1493: my ($target,$token) = @_;
1494: my $currentstring = '';
1.325 albertel 1495: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1496: $currentstring .= $token->[4];
1497: } elsif ($target eq 'tex') {
1.355 foxr 1498: $currentstring .= '\raisebox{\smallskipamount}{\scriptsize{';
1.122 albertel 1499: }
1500: return $currentstring;
1501: }
1502:
1503: sub end_sup {
1504: my ($target,$token) = @_;
1505: my $currentstring = '';
1.325 albertel 1506: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1507: $currentstring .= $token->[2];
1508: } elsif ($target eq 'tex') {
1.202 sakharuk 1509: $currentstring .= '}}';
1.122 albertel 1510: }
1511: return $currentstring;
1512: }
1513:
1.181 sakharuk 1514: #-- <hr> tag (end tag forbidden)
1.122 albertel 1515: sub start_hr {
1.124 sakharuk 1516: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 1517: my $currentstring = &end_p(); # End enclosing para.
1.325 albertel 1518: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1519: $currentstring .= $token->[4];
1520: } elsif ($target eq 'tex') {
1.361 foxr 1521:
1522: # <hr /> can't be inside of <sup><sub> thank you LaTeX.
1523: #
1524: my $restart_sub = 0;
1525: my $restart_sup = 0;
1526:
1527: # Since <sub> and <sup> are simple tags it's ok to turn off/on
1528: # using the start_ stop_ functions.. those tags only care about
1529: # $target.
1530:
1531: if (&is_inside_of($tagstack, "sub")) {
1532: $restart_sub = 1;
1533: $currentstring .= &end_sub($target, $token, $tagstack,
1534: $parstack, $parser, $safeeval);
1535: }
1536: if (&is_inside_of($tagstack, "sup")) {
1537: $restart_sup = 1;
1538: $currentstring .= &end_sup($target, $token, $tagstack,
1539: $parstack, $parser, $safeeval);
1540: }
1541:
1.149 sakharuk 1542: my $LaTeXwidth = &Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval,undef,0);
1.124 sakharuk 1543: if (defined $LaTeXwidth) {
1544: if ($LaTeXwidth=~/^%/) {
1545: substr($LaTeXwidth,0,1)='';
1546: $LaTeXwidth=($LaTeXwidth/100).'\textwidth';
1547: }
1548: } else {
1.148 sakharuk 1549: $LaTeXwidth ='0.9\textwidth';
1.124 sakharuk 1550: }
1551: my ($pre,$post);
1552: my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1553: if (($align eq 'center') || (not defined $align)) {
1554: $pre=''; $post='';
1555: } elsif ($align eq 'left') {
1556: $pre='\rlap{'; $post='} \hfill';
1557: } elsif ($align eq 'right') {
1558: $pre=' \hfill \llap{'; $post='}';
1559: }
1.148 sakharuk 1560: $currentstring .= ' \vskip 0 mm \noindent\makebox['.$LaTeXwidth.']{'.$pre.'\makebox['.
1.124 sakharuk 1561: $LaTeXwidth.'][b]{\hrulefill}'.$post.'}\vskip 0 mm ';
1.361 foxr 1562: # Turn stuff back on that we can't be inside of.
1563:
1564: if ($restart_sub) {
1565: $currentstring .= &start_sub($target, $token, $tagstack,
1566: $parstack, $parser, $safeeval);
1567: }
1568: if ($restart_sup) {
1569: $currentstring .= &start_sup($target, $token, $tagstack,
1570: $parstack, $parser, $safeeval);
1571: }
1.122 albertel 1572: }
1573: return $currentstring;
1574: }
1575:
1576: sub end_hr {
1577: my ($target,$token) = @_;
1578: my $currentstring = '';
1.325 albertel 1579: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1580: $currentstring .= $token->[2];
1.148 sakharuk 1581: }
1.122 albertel 1582: return $currentstring;
1583: }
1584:
1.181 sakharuk 1585: #-- <div> tag (end tag required)
1.280 foxr 1586: {
1587:
1588: # Since div can be nested, the stack below is used
1589: # in 'tex' mode to store the ending strings
1590: # for the div stack.
1591:
1592: my @div_end_stack;
1593:
1.122 albertel 1594: sub start_div {
1.280 foxr 1595: my ($target,$token, $tagstack, $parstack, $parser, $safeeval) = @_;
1.279 foxr 1596: my $currentstring = &end_p(); # Close enclosing para.
1.325 albertel 1597: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1598: $currentstring .= $token->[4];
1599: }
1.280 foxr 1600: if ($target eq 'tex') {
1601: # 4 possible alignments: left, right, center, and -missing-.
1.380 foxr 1602: # If inside a table row, we must let the table logic
1603: # do the alignment, however.
1604: #
1.280 foxr 1605:
1606: my $endstring = '';
1607:
1608: my $align = lc(&Apache::lonxml::get_param('align', $parstack,
1609: $safeeval, undef, 1));
1610: if ($align eq 'center') {
1611: $currentstring .= '\begin{center}';
1612: $endstring = '\end{center}';
1.309 albertel 1613: if (&is_inside_of($tagstack, "table")) {
1614: $currentstring = ¢er_correction().$currentstring;
1.380 foxr 1615: $endstring .= ¢er_end_correction();
1.309 albertel 1616: }
1.280 foxr 1617: }
1618: elsif ($align eq 'right') {
1619: $currentstring .= '\begin{flushright}';
1620: $endstring .= '\end{flushright}';
1621: } elsif ($align eq 'left') {
1622: $currentstring .= '\begin{flushleft}';
1623: $endstring = '\end{flushleft}';
1624: } else {
1625:
1626: }
1627: $currentstring .= "\n"; # For human readability.
1628: $endstring = "\n$endstring\n"; # For human readability
1629: push(@div_end_stack, $endstring);
1630: }
1.122 albertel 1631: return $currentstring;
1632: }
1633:
1634: sub end_div {
1635: my ($target,$token) = @_;
1636: my $currentstring = '';
1.325 albertel 1637: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1638: $currentstring .= $token->[2];
1.280 foxr 1639: }
1640: if ($target eq 'tex') {
1641: my $endstring = pop @div_end_stack;
1642: $currentstring .= $endstring;
1643: }
1.122 albertel 1644: return $currentstring;
1645: }
1.280 foxr 1646: }
1.122 albertel 1647:
1.181 sakharuk 1648: #-- <a> tag (end tag required)
1.122 albertel 1649: sub start_a {
1.149 sakharuk 1650: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 1651: my $currentstring = '';
1.325 albertel 1652: if ($target eq 'web' || $target eq 'webgrade') {
1.250 albertel 1653: my $href=&Apache::lonxml::get_param('href',$parstack,$safeeval,
1654: undef,1);
1655: $currentstring=&Apache::lonenc::encrypt_ref($token,{'href'=>$href});
1.400 raeburn 1656: if ($href =~ /\S/) {
1657: if ($href !~ m{^https?://}) {
1658: my $url=&Apache::lonnet::hreflocation('',$env{'request.filename'});
1659: my $linkurl;
1660: if ($href =~ m{^/uploaded/}) {
1661: $linkurl = $href;
1662: } elsif ($href =~ m{^[^/]}) {
1663: my $path = $url;
1664: $path =~ s{[^/]*$}{};
1665: $linkurl = $path.$href;
1666: }
1667: if ($linkurl =~ m{^/uploaded/}) {
1668: if (!&Apache::lonnet::allowed('bre',$linkurl)) {
1669: if (&Apache::lonnet::is_on_map($url)) {
1670: &Apache::lonxml::extlink($linkurl);
1671: }
1672: }
1673: }
1674: }
1675: }
1.122 albertel 1676: }
1677: return $currentstring;
1678: }
1679:
1680: sub end_a {
1.168 albertel 1681: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 1682: my $currentstring = '';
1.325 albertel 1683: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1684: $currentstring .= $token->[2];
1685: }
1.351 foxr 1686: if ($target eq 'tex') {
1.352 albertel 1687: my $href =
1688: &Apache::lonxml::get_param('href',$parstack,$safeeval,undef,1);
1689: my $name =
1690: &Apache::lonxml::get_param('name',$parstack,$safeeval,undef,1);
1.382 www 1691: my $uriprint =
1692: &Apache::lonxml::get_param('uriprint',$parstack,$safeeval,undef,1);
1693: my $anchorprint =
1694: &Apache::lonxml::get_param('anchorprint',$parstack,$safeeval,undef,1);
1695: if (($href =~ /\S/) && ($uriprint=~/^on|uriprint|yes|1$/i)) {
1.352 albertel 1696: $href =~ s/([^\\])%/$1\\\%/g;
1.365 foxr 1697: # Substitute special symbols... and allow line breaks at each /
1698: #
1699: $href = &Apache::lonxml::latex_special_symbols($href);
1700: $href =~ s/\//\/\\-/g; # Map / to /\- to allow hyphenation.
1701: $currentstring .= ' ({\tt URI:'.$href.'})';
1.382 www 1702: } elsif (($name =~ /\S/) && ($anchorprint=~/^on|anchorprint|yes|1$/i)) {
1.352 albertel 1703: $currentstring .= ' ({\tt Anchor:'.&Apache::lonxml::latex_special_symbols($name).'})';
1.351 foxr 1704: } else {
1705: $currentstring.='';
1706: }
1707: }
1.122 albertel 1708: return $currentstring;
1709: }
1710:
1.181 sakharuk 1711: #-- <li> tag (end tag optional)
1.122 albertel 1712: sub start_li {
1.168 albertel 1713: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 1714: my $currentstring = '';
1.325 albertel 1715: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1716: $currentstring = $token->[4];
1717: } elsif ($target eq 'tex') {
1.237 sakharuk 1718: my $type=&Apache::lonxml::get_param('type',$parstack,$safeeval,undef,0);
1719: my $value=&Apache::lonxml::get_param('value',$parstack,$safeeval,undef,0);
1.238 albertel 1720: #FIXME need to support types i and I
1721: if ($type=~/disc/) {
1722: $currentstring .= ' \item[$\bullet$] ';
1723: } elsif ($type=~/circle/) {
1724: $currentstring .= ' \item[$\circ$] ';
1.146 sakharuk 1725: } elsif ($type=~/square/) {
1.238 albertel 1726: $currentstring .= ' \item[$\diamond$] ';
1727: } elsif ($type eq '1') {
1728: $currentstring .= ' \item['.($Apache::londefdef::list_index+1).'.]';
1.237 sakharuk 1729: } elsif ($type eq 'A') {
1.238 albertel 1730: $currentstring .= ' \item['.('A'..'Z')[$Apache::londefdef::list_index].'.]';
1.237 sakharuk 1731: } elsif ($type eq 'a') {
1.238 albertel 1732: $currentstring .= ' \item['.('a'..'z')[$Apache::londefdef::list_index].'.]';
1.237 sakharuk 1733: } elsif ($value ne '') {
1734: $currentstring .= ' \item['.$value.'] ';
1.122 albertel 1735: } else {
1.146 sakharuk 1736: $currentstring .= ' \item ';
1.122 albertel 1737: }
1.238 albertel 1738: $Apache::londefdef::list_index++;
1739: }
1.122 albertel 1740: return $currentstring;
1741: }
1742:
1743: sub end_li {
1744: my ($target,$token) = @_;
1.279 foxr 1745: my $currentstring = &end_p(); # In case there's a <p> in the <li>
1.325 albertel 1746: if ($target eq 'web' || $target eq 'webgrade') {
1.277 foxr 1747: $currentstring .= $token->[2];
1.122 albertel 1748: }
1749: return $currentstring;
1750: }
1751:
1.181 sakharuk 1752: #-- <u> tag (end tag required)
1.122 albertel 1753: sub start_u {
1754: my ($target,$token) = @_;
1755: my $currentstring = '';
1.325 albertel 1756: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1757: $currentstring .= $token->[4];
1758: } elsif ($target eq 'tex') {
1759: &Apache::lonxml::startredirection();
1760: }
1761: return $currentstring;
1762: }
1763:
1764: sub end_u {
1765: my ($target,$token) = @_;
1766: my $currentstring = '';
1.325 albertel 1767: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1768: $currentstring .= $token->[2];
1769: } elsif ($target eq 'tex') {
1770: $currentstring=&Apache::lonxml::endredirection();
1771: $currentstring=~s/(\S)(\s+)(\S)/$1\}$2\\underline\{$3/g;
1772: $currentstring=~s/^\s*(\S)/\\underline\{$1/;
1773: $currentstring=~s/(\S)\s*$/$1\}/;
1774: }
1775: return $currentstring;
1776: }
1777:
1.181 sakharuk 1778: #-- <ul> tag (end tag required)
1.122 albertel 1779: sub start_ul {
1.125 sakharuk 1780: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 1781: my $currentstring = &end_p(); # Close off enclosing list.
1.325 albertel 1782: if ($target eq 'web' || $target eq 'webgrade') {
1.277 foxr 1783: $currentstring .= $token->[4];
1.122 albertel 1784: } elsif ($target eq 'tex') {
1.125 sakharuk 1785: my $TeXtype=&Apache::lonxml::get_param('type',$parstack,$safeeval,undef,0);
1.238 albertel 1786: $Apache::londefdef::list_index=0;
1.125 sakharuk 1787: if ($TeXtype eq 'disc') {
1.222 sakharuk 1788: $currentstring .= '\renewcommand{\labelitemi}{$\bullet$}'.
1789: '\renewcommand{\labelitemii}{$\bullet$}'.
1790: '\renewcommand{\labelitemiii}{$\bullet$}'.
1791: '\renewcommand{\labelitemiv}{$\bullet$}';
1.125 sakharuk 1792: } elsif ($TeXtype eq 'circle') {
1.222 sakharuk 1793: $currentstring .= '\renewcommand{\labelitemi}{$\circ$}'.
1794: '\renewcommand{\labelitemii}{$\circ$}'.
1795: '\renewcommand{\labelitemiii}{$\circ$}'.
1796: '\renewcommand{\labelitemiv}{$\circ$}';
1.125 sakharuk 1797: } elsif ($TeXtype eq 'square') {
1.222 sakharuk 1798: $currentstring .= '\renewcommand{\labelitemi}{$\diamond$}'.
1799: '\renewcommand{\labelitemii}{$\diamond$}'.
1800: '\renewcommand{\labelitemiii}{$\diamond$}'.
1801: '\renewcommand{\labelitemiv}{$\diamond$}';
1.125 sakharuk 1802: }
1.222 sakharuk 1803: $currentstring .= '\strut \begin{itemize}';
1.122 albertel 1804: }
1805: return $currentstring;
1806: }
1807:
1808: sub end_ul {
1809: my ($target,$token) = @_;
1810: my $currentstring = '';
1.325 albertel 1811: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1812: $currentstring = $token->[2];
1813: } elsif ($target eq 'tex') {
1.222 sakharuk 1814: $currentstring = '\end{itemize} \renewcommand{\labelitemi}{$\bullet$}'.
1815: '\renewcommand{\labelitemii}{$\bullet$}'.
1816: '\renewcommand{\labelitemiii}{$\bullet$}'.
1817: '\renewcommand{\labelitemiv}{$\bullet$}\strut ';
1.122 albertel 1818: }
1819: return $currentstring;
1820: }
1821:
1.181 sakharuk 1822: #-- <menu> tag (end tag required)
1.122 albertel 1823: sub start_menu {
1824: my ($target,$token) = @_;
1825: my $currentstring = '';
1.325 albertel 1826: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1827: $currentstring = $token->[4];
1828: } elsif ($target eq 'tex') {
1829: $currentstring = " \\begin{itemize} ";
1830: }
1831: return $currentstring;
1832: }
1833:
1834: sub end_menu {
1835: my ($target,$token) = @_;
1836: my $currentstring = '';
1.325 albertel 1837: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1838: $currentstring = $token->[2];
1839: } elsif ($target eq 'tex') {
1840: $currentstring = " \\end{itemize}";
1841: }
1842: return $currentstring;
1843: }
1844:
1.181 sakharuk 1845: #-- <dir> tag (end tag required)
1.122 albertel 1846: sub start_dir {
1847: my ($target,$token) = @_;
1.279 foxr 1848: my $currentstring = &end_p(); # In case there's a <p> prior to the list.
1.325 albertel 1849: if ($target eq 'web' || $target eq 'webgrade') {
1.277 foxr 1850: $currentstring .= $token->[4];
1.122 albertel 1851: } elsif ($target eq 'tex') {
1.277 foxr 1852: $currentstring .= " \\begin{itemize} ";
1.122 albertel 1853: }
1854: return $currentstring;
1855: }
1856:
1857: sub end_dir {
1858: my ($target,$token) = @_;
1859: my $currentstring = '';
1.325 albertel 1860: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1861: $currentstring = $token->[2];
1862: } elsif ($target eq 'tex') {
1863: $currentstring = " \\end{itemize}";
1864: }
1865: return $currentstring;
1866: }
1867:
1.181 sakharuk 1868: #-- <ol> tag (end tag required)
1.122 albertel 1869: sub start_ol {
1.125 sakharuk 1870: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 1871: my $currentstring = &end_p(); # In case there's a <p> prior to the list.
1.325 albertel 1872: if ($target eq 'web' || $target eq 'webgrade') {
1.277 foxr 1873: $currentstring .= $token->[4];
1.122 albertel 1874: } elsif ($target eq 'tex') {
1.238 albertel 1875: $Apache::londefdef::list_index=0;
1.125 sakharuk 1876: my $type=&Apache::lonxml::get_param('type',$parstack,$safeeval,undef,0);
1877: if ($type eq '1') {
1.222 sakharuk 1878: $currentstring .= '\renewcommand{\labelenumi}{\arabic{enumi}.}'.
1879: '\renewcommand{\labelenumii}{\arabic{enumii}.}'.
1880: '\renewcommand{\labelenumiii}{\arabic{enumiii}.}'.
1881: '\renewcommand{\labelenumiv}{\arabic{enumiv}.}';
1.125 sakharuk 1882: } elsif ($type eq 'A') {
1.222 sakharuk 1883: $currentstring .= '\renewcommand{\labelenumi}{\Alph{enumi}.}'.
1884: '\renewcommand{\labelenumii}{\Alph{enumii}.}'.
1885: '\renewcommand{\labelenumiii}{\Alph{enumiii}.}'.
1886: '\renewcommand{\labelenumiv}{\Alph{enumiv}.}';
1.125 sakharuk 1887: } elsif ($type eq 'a') {
1.222 sakharuk 1888: $currentstring .= '\renewcommand{\labelenumi}{\alph{enumi}.}'.
1889: '\renewcommand{\labelenumii}{\alph{enumii}.}'.
1890: '\renewcommand{\labelenumiii}{\alph{enumiii}.}'.
1891: '\renewcommand{\labelenumiv}{\alph{enumiv}.}';
1.125 sakharuk 1892: } elsif ($type eq 'i') {
1.222 sakharuk 1893: $currentstring .= '\renewcommand{\labelenumi}{\roman{enumi}.}'.
1894: '\renewcommand{\labelenumii}{\roman{enumii}.}'.
1895: '\renewcommand{\labelenumiii}{\roman{enumiii}.}'.
1896: '\renewcommand{\labelenumiv}{\roman{enumiv}.}';
1.125 sakharuk 1897: } elsif ($type eq 'I') {
1.222 sakharuk 1898: $currentstring .= '\renewcommand{\labelenumi}{\Roman{enumi}.}'.
1899: '\renewcommand{\labelenumii}{\Roman{enumii}.}'.
1900: '\renewcommand{\labelenumiii}{\Roman{enumiii}.}'.
1901: '\renewcommand{\labelenumiv}{\Roman{enumiv}.}';
1.125 sakharuk 1902: }
1.222 sakharuk 1903: $currentstring .= '\strut \begin{enumerate}';
1.122 albertel 1904: }
1905: return $currentstring;
1906: }
1907:
1908: sub end_ol {
1909: my ($target,$token) = @_;
1910: my $currentstring = '';
1.325 albertel 1911: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1912: $currentstring = $token->[2];
1913: } elsif ($target eq 'tex') {
1.222 sakharuk 1914: $currentstring = '\end{enumerate}\renewcommand{\labelenumi}{\arabic{enumi}.}'.
1915: '\renewcommand{\labelenumii}{\arabic{enumii}.}'.
1916: '\renewcommand{\labelenumiii}{\arabic{enumiii}.}'.
1917: '\renewcommand{\labelenumiv}{\arabic{enumiv}.}\strut ';
1.122 albertel 1918: }
1919: return $currentstring;
1920: }
1921:
1.181 sakharuk 1922: #-- <dl> tag (end tag required)
1.122 albertel 1923: sub start_dl {
1924: my ($target,$token) = @_;
1.279 foxr 1925: my $currentstring = &end_p(); # In case there's a <p> unclosed prior to the list.
1.325 albertel 1926: if ($target eq 'web' || $target eq 'webgrade') {
1.277 foxr 1927: $currentstring .= $token->[4];
1.122 albertel 1928: } elsif ($target eq 'tex') {
1.277 foxr 1929: $currentstring .= '\begin{description}';
1.243 albertel 1930: $Apache::londefdef::DL++;
1931: push(@Apache::londefdef::description,[]);
1932: $Apache::londefdef::DD[$Apache::londefdef::DL]=0;
1933: $Apache::londefdef::DT[$Apache::londefdef::DL]=0;
1.244 albertel 1934: $Apache::londefdef::seenDT[$Apache::londefdef::DL]=0;
1.122 albertel 1935: }
1936: return $currentstring;
1937: }
1938:
1939: sub end_dl {
1.174 sakharuk 1940: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 1941: my $currentstring = '';
1.325 albertel 1942: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1943: $currentstring = $token->[2];
1944: } elsif ($target eq 'tex') {
1.243 albertel 1945: if ($Apache::londefdef::DT[-1]) { &end_dt(@_); }
1946: if ($Apache::londefdef::DD[-1]) { &end_dd(@_); }
1947: foreach my $element (@{$Apache::londefdef::description[-1]}) {
1.174 sakharuk 1948: $currentstring.=' '.$element.' ';
1949: }
1.243 albertel 1950: pop(@Apache::londefdef::description);
1.174 sakharuk 1951: $currentstring.='\end{description}';
1.243 albertel 1952: delete($Apache::londefdef::DD[$Apache::londefdef::DL]);
1953: delete($Apache::londefdef::DT[$Apache::londefdef::DL]);
1.244 albertel 1954: delete($Apache::londefdef::seenDT[$Apache::londefdef::DL]);
1.243 albertel 1955: $Apache::londefdef::DL--;
1.122 albertel 1956: }
1957: return $currentstring;
1958: }
1959:
1.172 sakharuk 1960: #-- <dt> tag (end tag optional)
1.122 albertel 1961: sub start_dt {
1.172 sakharuk 1962: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1963: my $currentstring='';
1.325 albertel 1964: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1965: $currentstring = $token->[4];
1966: } elsif ($target eq 'tex') {
1.243 albertel 1967: if ($Apache::londefdef::DT[-1]) { &end_dt(@_); }
1968: if ($Apache::londefdef::DD[-1]) { &end_dd(@_); }
1.174 sakharuk 1969: &Apache::lonxml::startredirection();
1.243 albertel 1970: $Apache::londefdef::DT[-1]++;
1.244 albertel 1971: $Apache::londefdef::seenDT[-1]=1;
1.122 albertel 1972: }
1973: return $currentstring;
1974: }
1975:
1976: sub end_dt {
1.172 sakharuk 1977: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 1978: my $currentstring = '';
1.325 albertel 1979: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 1980: $currentstring = $token->[2];
1981: } elsif ($target eq 'tex') {
1.243 albertel 1982: if ($Apache::londefdef::DT[-1]) {
1983: my $data=&item_cleanup();
1.244 albertel 1984: push(@{$Apache::londefdef::description[-1]},'\item['.$data.'] \strut \vskip 0mm');
1.243 albertel 1985: $Apache::londefdef::DT[-1]--;
1986: }
1.122 albertel 1987: }
1988: return $currentstring;
1989: }
1990:
1.173 sakharuk 1991: sub item_cleanup {
1.174 sakharuk 1992: my $item=&Apache::lonxml::endredirection();
1.173 sakharuk 1993: $item=~s/\\begin{center}//g;
1994: $item=~s/\\end{center}//g;
1995: return $item;
1996: }
1997:
1.181 sakharuk 1998: #-- <dd> tag (end tag optional)
1.122 albertel 1999: sub start_dd {
1.147 sakharuk 2000: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 2001: my $currentstring = '';
1.325 albertel 2002: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 2003: $currentstring = $token->[4];
1.147 sakharuk 2004: } elsif ($target eq 'tex') {
1.243 albertel 2005: if ($Apache::londefdef::DT[-1]) { &end_dt(@_); }
2006: if ($Apache::londefdef::DD[-1]) { &end_dd(@_);}
1.244 albertel 2007: if (!$Apache::londefdef::seenDT[-1]) {
2008: push(@{$Apache::londefdef::description[-1]},'\item[\strut] \strut \vskip 0mm ');
2009: }
1.243 albertel 2010: push(@{$Apache::londefdef::description[-1]},'');
2011: $Apache::londefdef::description[-1]->[-1].=' \strut ';
2012: $Apache::londefdef::DD[-1]++;
1.174 sakharuk 2013: &Apache::lonxml::startredirection();
1.122 albertel 2014: }
2015: return $currentstring;
2016: }
2017:
2018: sub end_dd {
1.174 sakharuk 2019: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 2020: my $currentstring = '';
1.325 albertel 2021: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 2022: $currentstring = $token->[2];
1.174 sakharuk 2023: } elsif ($target eq 'tex') {
1.243 albertel 2024: $Apache::londefdef::description[-1]->[-1].=
2025: &Apache::lonxml::endredirection().' \vskip 0mm ';
2026: $Apache::londefdef::DD[-1]--;
1.174 sakharuk 2027: }
1.122 albertel 2028: return $currentstring;
2029: }
2030:
1.181 sakharuk 2031: #-- <table> tag (end tag required)
1.277 foxr 2032: # <table> also ends any prior <p> that is not closed.
2033: # but, unless I allow <p>'s to nest, that's the
2034: # only way I could think of to allow <p> in
2035: # <tr> <th> bodies
2036: #
1.398 foxr 2037: #list of supported attributes: border,width,TeXwidth,TeXtheme
2038: # align
1.91 sakharuk 2039: sub start_table {
2040: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.277 foxr 2041: my $textwidth = '';
1.279 foxr 2042: my $currentstring = &end_p();
1.325 albertel 2043: if ($target eq 'web' || $target eq 'webgrade') {
1.277 foxr 2044: $currentstring .= $token->[4];
1.91 sakharuk 2045: } elsif ($target eq 'tex') {
1.396 foxr 2046: &disable_para(); # Can't have paras in a table.
1.398 foxr 2047:
2048: # Get the parameters that we can do something about:
2049:
2050: my $border = &Apache::lonxml::get_param('border', $parstack, $safeeval, undef, 0);
2051: my $width = &Apache::lonxml::get_param('TeXwidth', $parstack, $safeeval, undef, 0);
2052: my $theme = &Apache::lonxml::get_param('TeXtheme', $parstack, $safeeval, undef, 0);
2053: my $align = &Apache::lonxml::get_param('align', $parstack, $safeeval, undef, 0);
1.415.4.1 raeburn 2054: my $cell_border = &Apache::lonxml::get_param('rules', $parstack, $safeeval, undef, 0);
1.398 foxr 2055:
2056: # The only thing that needs any figuring out is the width.. and then only if it is
2057: # a percent. If not it's assumed to be some valid TeX measurement unit e.g. 3.0cm
2058: #
2059:
2060: my $table = new Apache::lontable();
1.415.4.1 raeburn 2061: if ((defined $border) && ($border > 0)) {
2062: # &Apache::lonnet::logthis("Turning on table borders: $border");
2063: $table->table_border(1);
1.415.4.4! raeburn 2064: if (!defined $cell_border) {
! 2065: $table->cell_border(1); # Default for rules is all if rules not defined.
1.415.4.1 raeburn 2066: }
2067: }
2068:
1.415.4.4! raeburn 2069: if ((defined $cell_border)) {
! 2070: if ($cell_border eq 'all') {
! 2071: $table->cell_border(1);
! 2072: } elsif ($cell_border eq 'rows') {
! 2073: $table->cell_border(2);
! 2074: } elsif ($cell_border eq 'cols') {
! 2075: $table->cell_border(3);
! 2076: } elsif($cell_border eq 'groups') {
! 2077: $table->cell_border(4);
! 2078: } else {
! 2079: $table->cell_border(0);
! 2080: }
! 2081: }
1.415.4.1 raeburn 2082: if (defined $theme) {
1.398 foxr 2083: $table->theme($theme);
2084: }
1.415.4.1 raeburn 2085: if (defined $align) {
1.398 foxr 2086: $table->alignment($align);
2087: }
2088:
2089: # Missing width is most of page width
2090:
1.415.4.1 raeburn 2091: if (!(defined $width)) {
1.398 foxr 2092: $width = '70%';
2093: }
2094:
2095: # If a percentage, need to calculate what this means in terms of
2096: # page width:
2097:
2098: if ($width =~ /%$/) {
2099: my $textwidth = &recalc($env{'form.textwidth'}); # Page width in mm.
2100: $width =~ s/%//;
2101: $width = $width * $textwidth / 100.0;
2102: $width .= " mm";
2103: $table->width($width);
2104: }
2105:
2106: push(@Apache::londefdef::table, $table);
2107: $currentstring.=' \keephidden{NEW TABLE ENTRY}';
2108:
1.294 foxr 2109: }
1.91 sakharuk 2110: return $currentstring;
2111: }
1.122 albertel 2112:
2113: sub end_table {
2114: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
2115: my $currentstring = '';
1.325 albertel 2116: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 2117: $currentstring = $token->[2];
2118: } elsif ($target eq 'tex') {
1.398 foxr 2119:
2120:
2121: my $table = pop(@Apache::londefdef::table);
2122: my $t = $table->generate();
2123: $currentstring = $t->generate_string();
2124: &enable_para();
2125: #--------------------------------------------------------------
2126: # Old table code:
2127: #--------------------------------------------------------------
2128:
2129: if (0) {
2130:
1.372 foxr 2131: my $border = &Apache::lonxml::get_param('border',$parstack,$safeeval);
1.122 albertel 2132: my $inmemory = '';
2133: my $output = '';
1.206 sakharuk 2134: my $WARNING='';
2135: #width of columns from TeXwidth attributes
1.294 foxr 2136:
1.384 foxr 2137: # Protect against unbalanced </table> tag.
2138:
2139: if (scalar(@Apache::londefdef::table) > 0) {
2140:
1.206 sakharuk 2141: for (my $in=0;$in<=$Apache::londefdef::table[-1]{'row_number'};$in++) {
2142: for (my $jn=0;$jn<=$Apache::londefdef::table[-1]{'counter_columns'};$jn++) {
2143: if ($Apache::londefdef::table[-1]{'TeXlen'}[0][$jn]<$Apache::londefdef::table[-1]{'TeXlen'}[$in][$jn]) {
2144: $Apache::londefdef::table[-1]{'TeXlen'}[0][$jn]=$Apache::londefdef::table[-1]{'TeXlen'}[$in][$jn];
2145: }
2146: }
2147: }
2148: #free space and number of empty columns
2149: my ($available_space,$empty_columns)=($Apache::londefdef::table[-1]{'width'},0);
1.228 sakharuk 2150: if ($#Apache::londefdef::table ne 0) {$available_space=0.9*$available_space;}
1.206 sakharuk 2151: for (my $jn=0;$jn<=$Apache::londefdef::table[-1]{'counter_columns'};$jn++) {
2152: if ($Apache::londefdef::table[-1]{'TeXlen'}[0][$jn]==0) {
2153: $empty_columns++;
2154: } else {
2155: $available_space=$available_space-$Apache::londefdef::table[-1]{'TeXlen'}[0][$jn];
2156: }
2157: }
1.358 foxr 2158:
1.206 sakharuk 2159: #boundaries for contents columns
2160: my @min_len=();#columns can not be narrower
2161: my @max_len=();#maximum length of column
1.357 foxr 2162: my $avg_max;
2163: my $avg_min;
2164: my $counter_cols = $Apache::londefdef::table[-1]{'counter_columns'};
2165: for (my $jn=0;$jn<=$counter_cols; $jn++) {
1.206 sakharuk 2166: my ($localmin,$localmax)=(0,0);
2167: for (my $in=0;$in<=$Apache::londefdef::table[-1]{'row_number'};$in++) {
2168: if ($localmin<$Apache::londefdef::table[-1]{'minlen'}[$in][$jn]) {
2169: $localmin=$Apache::londefdef::table[-1]{'minlen'}[$in][$jn];
2170: }
2171: if ($localmax<$Apache::londefdef::table[-1]{'maxlen'}[$in][$jn]) {
2172: $localmax=$Apache::londefdef::table[-1]{'maxlen'}[$in][$jn];
2173: }
2174: }
2175: push @min_len, $localmin;
2176: push @max_len, $localmax;
1.357 foxr 2177: $avg_max = $localmax + $avg_max;
2178: $avg_min = $localmin + $avg_min;
2179: }
2180: # Does not really matter what the average max/min are if there are no cols.
2181: # and this prevents div 0 in that case.
2182:
2183: if ($counter_cols != 0) {
2184: $avg_max = $avg_max/$counter_cols;
2185: $avg_min = $avg_min/$counter_cols;
2186: }
2187:
2188:
2189: # I don't think the below is needed.. but just in case:
2190:
2191: if ($avg_min > $avg_max) {
2192: my $temp = $avg_min;
2193: $avg_min = $avg_max;
2194: $avg_max = $temp;
1.122 albertel 2195: }
1.357 foxr 2196:
2197:
2198: for (my $jn=0;$jn<=$counter_cols;$jn++) {
1.206 sakharuk 2199: my $localmin=0,;
2200: for (my $in=0;$in<=$Apache::londefdef::table[-1]{'row_number'};$in++) {
2201: if ($localmin<$Apache::londefdef::table[-1]{'objectlen'}[$in][$jn]) {
2202: $localmin=$Apache::londefdef::table[-1]{'objectlen'}[$in][$jn];
2203: }
2204: }
1.229 sakharuk 2205: if ($max_len[$jn]<$localmin) {
2206: $max_len[$jn]=$localmin;
2207: $Apache::londefdef::table[-1]{'objectsignal'}[$jn]=1;
2208: }#object size is bigger
2209: if ($min_len[$jn]<$localmin) {
2210: $min_len[$jn]=$localmin;
2211: $Apache::londefdef::table[-1]{'objectsignal'}[$jn]=1;
2212: }#object size is bigger
1.206 sakharuk 2213: if ($Apache::londefdef::table[-1]{'TeXlen'}[0][$jn]!=0) {
2214: $min_len[$jn]=0;
2215: $max_len[$jn]=0;
2216: }
1.357 foxr 2217: # Spans seem to be really bothered by max/min = 0. So if we have one
2218: # make it an average joe max/min.
2219:
2220: if ($max_len[$jn] == 0) {
2221: $max_len[$jn] = $avg_max;
2222: }
2223: if ($min_len[$jn] == 0) {
2224: $min_len[$jn] = $avg_min;
2225: }
2226:
1.206 sakharuk 2227: }
2228: #final adjustment of column width
2229: my @fwidth=@{$Apache::londefdef::table[-1]{'TeXlen'}[0]};#final width array
2230: my @adjust=();
2231: #step 1. adjustment by maximum value
1.370 albertel 2232: my $space_needed=0;
1.206 sakharuk 2233: for (my $jn=0;$jn<=$#max_len;$jn++) {
1.370 albertel 2234: $space_needed=$space_needed+$max_len[$jn];
1.206 sakharuk 2235: }
1.370 albertel 2236: if ($space_needed<=$available_space) {
1.362 foxr 2237:
1.206 sakharuk 2238: for (my $jn=0;$jn<=$#max_len;$jn++) {
2239: if ($fwidth[$jn]==0) {
2240: $fwidth[$jn]=$max_len[$jn];
1.53 sakharuk 2241: }
1.51 sakharuk 2242: }
1.206 sakharuk 2243: } else {
2244: #step 2. adjustment by minimum value (estimation)
1.370 albertel 2245: $space_needed=0;
1.206 sakharuk 2246: for (my $jn=0;$jn<=$#min_len;$jn++) {
1.370 albertel 2247: $space_needed+=$min_len[$jn];
1.206 sakharuk 2248: }
1.370 albertel 2249: if ($space_needed>$available_space) {
1.206 sakharuk 2250: $WARNING=' \textbf{NOT ENOUGH SPACE FOR TABLE} ';
2251: for (my $jn=0;$jn<=$#max_len;$jn++) {
2252: if ($fwidth[$jn]==0) {
2253: $fwidth[$jn]=$min_len[$jn];
2254: }
2255: }
1.229 sakharuk 2256: #check if we have objects which can be scaled
2257: my $how_many_to_scale=0;
2258: my @to_scale=();
2259: for (my $jn=0;$jn<=$#max_len;$jn++) {
2260: if ($Apache::londefdef::table[-1]{'objectsignal'}[$jn] eq '1') {
2261: $how_many_to_scale++;
2262: push @to_scale, $jn;
2263: }
2264: }
2265: if ($how_many_to_scale>0) {
1.370 albertel 2266: my $space_to_adjust=($space_needed-$available_space)/$how_many_to_scale;
1.229 sakharuk 2267: foreach my $jn (@to_scale) {
2268: for (my $in=0;$in<=$Apache::londefdef::table[-1]{'row_number'};$in++) {
2269: $Apache::londefdef::table[-1]{'content'}[$in][$jn]=~m/width\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)/;
2270: if ($1 ne '') {
2271: my $current_length=&recalc($1);
2272: $current_length=~/(\d+\.?\d*)/;
2273: $current_length=$current_length-$space_to_adjust;
2274: $Apache::londefdef::table[-1]{'content'}[$in][$jn]=~s/width\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)/width=$current_length mm/;
2275: }
2276: $Apache::londefdef::table[-1]{'content'}[$in][$jn]=~m/\[(\d+\.?\d*)\s*mm\]/;
2277: if ($1 ne '') {
2278: my $current_length=$1;
2279: $current_length=$current_length-$space_to_adjust;
2280: $Apache::londefdef::table[-1]{'content'}[$in][$jn]=~s/\[(\d+\.?\d*)\s*mm\]/\[$current_length mm\]/;
2281: }
2282: }
2283: $fwidth[$jn]=$fwidth[$jn]-$space_to_adjust;
2284: }
2285: }
1.206 sakharuk 2286: } else {
2287: #step 3. adjustment over minimal + corrections
1.370 albertel 2288: my $enlarge_coef=$available_space/$space_needed;
1.206 sakharuk 2289: my $acsessive=0;
2290: for (my $jn=0;$jn<=$#min_len;$jn++) {
2291: $adjust[$jn]=$min_len[$jn]*$enlarge_coef;
2292: if ($adjust[$jn]>$max_len[$jn]) {
2293: $fwidth[$jn]=$max_len[$jn];
2294: $acsessive=$acsessive+$adjust[$jn]-$max_len[$jn];
2295: $adjust[$jn]=0;
1.357 foxr 2296:
1.206 sakharuk 2297: }
2298: }
2299: if ($acsessive>0) {
2300: #we have an excess of space and can redistribute it
2301: my $notempty_columns=0;
2302: for (my $jn=0;$jn<=$#min_len;$jn++) {
2303: if ($adjust[$jn]!=0) {
2304: $notempty_columns++;
2305: }
2306: }
2307: my $per_column=$acsessive/$notempty_columns;
2308: for (my $jn=0;$jn<=$#min_len;$jn++) {
2309: if ($adjust[$jn]!=0) {
2310: $adjust[$jn]+=$per_column;
2311: $fwidth[$jn]=$adjust[$jn];
2312: }
1.223 sakharuk 2313: }
2314: } else {
2315: for (my $jn=0;$jn<=$#min_len;$jn++) {
2316: $fwidth[$jn]=$adjust[$jn];
1.206 sakharuk 2317: }
2318: }
1.203 sakharuk 2319: }
2320: }
1.364 foxr 2321: # use all available width or specified width as if not specified,
2322: # the specified width gets defaulted to the available width.
2323:
2324: my $current=0;
2325: for (my $i=0;$i<=$#fwidth;$i++) {
2326: $current+=$fwidth[$i];
2327: }
1.371 albertel 2328: if ($current == 0) {
2329: $current = $Apache::londefdef::table[-1]{'width'};
2330: }
1.364 foxr 2331: my $coef=$Apache::londefdef::table[-1]{'width'}/$current;
2332: for (my $i=0;$i<=$#fwidth;$i++) {
2333: $fwidth[$i]*=$coef;
1.206 sakharuk 2334: }
2335: #removing of empty columns if allowed
1.208 sakharuk 2336: my $permission=&Apache::lonxml::get_param('TeXDropEmptyColumns',$parstack,$safeeval,undef,0);
1.206 sakharuk 2337: if ($permission eq 'yes') {
2338: my @cleaned_table=();
2339: my @cleaned_header=();
2340: my $colind=0;
2341: for (my $jn=0;$jn<=$Apache::londefdef::table[-1]{'counter_columns'};$jn++) {
2342: if ($fwidth[$jn]!=0) {
2343: #we need to copy column
2344: for (my $in=0;$in<=$Apache::londefdef::table[-1]{'row_number'};$in++) {
2345: $cleaned_table[$in][$colind]=$Apache::londefdef::table[-1]{'content'}[$in][$jn];
2346: $cleaned_header[$colind]=$fwidth[$jn];
2347: }
2348: $colind++;
2349: }
1.122 albertel 2350: }
1.206 sakharuk 2351: $Apache::londefdef::table[-1]{'content'}=\@cleaned_table;
2352: @fwidth=@cleaned_header;
1.122 albertel 2353: }
1.359 foxr 2354:
1.358 foxr 2355:
1.206 sakharuk 2356: #construct header of the table
2357: my $header_of_table = '{'.$Apache::londefdef::table[-1]{'vvinc'};
2358: for (my $in=0;$in<=$#fwidth;$in++) {
2359: $header_of_table.='p{'.$fwidth[$in].' mm}'.$Apache::londefdef::table[-1]{'vvinc'};
2360: }
2361: $header_of_table .= '}';
1.357 foxr 2362:
1.126 sakharuk 2363: #fill the table
2364: for (my $in=0;$in<=$Apache::londefdef::table[-1]{'row_number'};$in++) {
1.306 foxr 2365: my $have_rowspan = 0;
1.206 sakharuk 2366: for (my $jn=0;$jn<=$#fwidth;$jn++) {
1.320 foxr 2367:
2368: #-----------------------------------------------------------
2369: # I think this order of doing things will ensure that
2370: # single rowspan, columspan and combined row/colspans will
2371: # work correctly. LaTeX is delicate here.
2372: # RF.
1.356 foxr 2373:
1.320 foxr 2374: # Start a rowspan if necessary:
1.356 foxr 2375:
2376: my $primary_col_width = $fwidth[$jn]; # Width of primary column.
1.320 foxr 2377: my $rowspan = $Apache::londefdef::table[-1]{'rowspan'}[$in][$jn];
2378: my $colspan = $Apache::londefdef::table[-1]{'colspan'}[$in][$jn];
1.304 foxr 2379: #
2380: # Do the appropriate magic if this has a colspan
2381: #
1.356 foxr 2382:
1.372 foxr 2383: my $border_char = "";
2384: if ($border) {
2385: $border_char = "|";
2386: }
1.356 foxr 2387: my $spanwidth = 0;
1.304 foxr 2388: if ($colspan > 1) {
1.336 foxr 2389: for (my $spancol = $jn; $spancol < $jn + $colspan; $spancol++) {
2390: $spanwidth += $fwidth[$spancol];
2391: }
1.304 foxr 2392: $output .= '\multicolumn{'.
2393: $colspan
1.337 foxr 2394: ."}";
2395: if ($Apache::londefdef::table[-1]{'align'}[$in][$jn] eq 'c') {
1.372 foxr 2396: $output .= '{'.$border_char.'c'.$border_char.'}{';
1.337 foxr 2397: } elsif ($Apache::londefdef::table[-1]{'align'}[$in][$jn] eq 'r') {
1.372 foxr 2398: $output .= '{'.$border_char.'r'.$border_char.'}{';
1.337 foxr 2399: }
2400: else {
1.372 foxr 2401: $output .= '{'.$border_char."p{$spanwidth mm}".$border_char.'}{';
1.337 foxr 2402: }
1.356 foxr 2403:
2404: } else {
2405: $spanwidth = $primary_col_width; # If no span width will be just colwidth
1.304 foxr 2406: }
1.306 foxr 2407:
1.337 foxr 2408: # Rowspan... if colspan is 1, and there's an alignment we'll need
2409: # to kick in a multicolumn in order to get the alignment spec.
2410: # this must precede the multirow or LaTex gets quite upset.
2411: # Naturally if colspan > 1 we've already done that above ^
2412: #
2413: my $multirow_aligned = 0;
1.306 foxr 2414: if ($rowspan > 1) {
1.337 foxr 2415: if ($colspan == 1) {
2416: if ($Apache::londefdef::table[-1]{'align'}[$in][$jn] eq 'c') {
1.372 foxr 2417: $output .= '\multicolumn{1}{'.$border_char.'c'.$border_char.'}{';
1.337 foxr 2418: $multirow_aligned = 1;
2419: } elsif ($Apache::londefdef::table[-1]{'align'}[$in][$jn] eq 'r') {
1.372 foxr 2420: $output .= '\multicolumn{1}{'.$border_char.'r'.$border_char.'}{';
1.337 foxr 2421: $multirow_aligned = 1;
2422: }
2423: }
1.306 foxr 2424: $have_rowspan++;
1.356 foxr 2425: if ($multirow_aligned) {
2426: $output .= '\multirow{'.$rowspan.'}[0]{*}{';
2427: } else {
2428: $output .= '\multirow{'.$rowspan."}[0]{$spanwidth mm}{";
2429: }
1.350 albertel 2430:
2431: $Apache::londefdef::table[-1]{'content'}[$in][$jn] =~
2432: s{^\s*\\par\s*}{};
2433: $Apache::londefdef::table[-1]{'content'}[$in][$jn] =~
2434: s{\s*\\vskip\s*0pt\s*$}{};
1.356 foxr 2435:
1.337 foxr 2436: #
2437: # If we did not throw in a multicolumn to align, then add
2438: # an extra {
2439: # so we close correctly without having to keep additional state
2440: # around
2441: #
2442: if (!$multirow_aligned) {
2443: $output .= '{';
2444: }
1.306 foxr 2445: }
2446: if (($rowspan eq '^') || ($rowspan eq '_')) {
2447: $have_rowspan++;
2448: }
1.356 foxr 2449: #--------------------------------------------------------------
1.306 foxr 2450:
1.337 foxr 2451:
2452: # For right and center alignment of single cells.
2453: # we are going to use a multicolumn with a span of 1 to specify alignment.
2454: #
2455: if ($colspan == 1 && $rowspan == 1) {
2456: if ($Apache::londefdef::table[-1]{'align'}[$in][$jn] eq 'c') {
1.372 foxr 2457: $output .= '\multicolumn{1}{'.$border_char.'c'.$border_char.'}{';
1.337 foxr 2458: } elsif ($Apache::londefdef::table[-1]{'align'}[$in][$jn] eq 'r') {
1.372 foxr 2459: $output .= '\multicolumn{1}{'.$border_char.'r'.$border_char.'}{';
1.337 foxr 2460: }
1.206 sakharuk 2461: }
1.337 foxr 2462:
1.206 sakharuk 2463: $output.=$Apache::londefdef::table[-1]{'content'}[$in][$jn];
1.337 foxr 2464:
2465: if (($colspan == 1 && $rowspan == 1) &&
2466: (($Apache::londefdef::table[-1]{'align'}[$in][$jn] eq 'c') ||
2467: ($Apache::londefdef::table[-1]{'align'}[$in][$jn] eq 'r'))) {
2468: $output .= '}';
1.206 sakharuk 2469: }
1.337 foxr 2470:
1.306 foxr 2471: # Close off any open multirow:
2472:
2473: if ($rowspan > 1) {
1.337 foxr 2474: $output .= '}}';
1.306 foxr 2475: }
1.304 foxr 2476: # Close off the colspan...
2477: #
2478: if ($colspan > 1) {
2479: $output .= '}';
2480: $jn += $colspan-1; # Adjust for number of rows really left.
2481: }
1.206 sakharuk 2482: if ($jn!=$#fwidth) {$output.=' '.$Apache::londefdef::table[-1]{'vinc'};}
2483: }
1.306 foxr 2484: # If have_rowspan > 0, and borders are on, then
2485: # we need to do more than put an \hline at the bottom of row.
2486: # we need to do the appropriate \cline to ensure that
2487: # the spanned rows don't have \hlines through them.
2488:
2489: if (($Apache::londefdef::table[-1]{'hinc'} =~ /\\hline/) && $have_rowspan) {
2490: $output .= ' \\\\ ';
2491: for (my $jn=0; $jn<=$#fwidth;$jn++) {
2492: my $rowspan = $Apache::londefdef::table[-1]{'rowspan'}[$in][$jn];
1.320 foxr 2493: if ($rowspan ne "^") {
2494: if (($rowspan <= 1) || ($rowspan eq '_')) {
2495: my $column = $jn+1;
2496: $output .= '\cline{'.$column.'-'.$column.'} ';
2497: }
1.306 foxr 2498: }
2499: }
2500:
2501: } else {
2502: $output.=' \\\\ '.$Apache::londefdef::table[-1]{'hinc'}.' ';
2503: }
1.122 albertel 2504: }
1.281 foxr 2505: # Note that \newline destroys alignment env's produced by e.g. <div>
2506: # $Apache::londefdef::table[-1]{'output'} .= $header_of_table.$Apache::londefdef::table[-1]{'hinc'}.$output.'\end{tabular}\strut\newline\strut ';
2507: $Apache::londefdef::table[-1]{'output'} .= $header_of_table.$Apache::londefdef::table[-1]{'hinc'}.$output.'\end{tabular}\strut'.'\\\\'."\n".'\strut ';
1.127 sakharuk 2508: if ($#Apache::londefdef::table > 0) {
2509: my $inmemory = $Apache::londefdef::table[-1]{'output'};
1.294 foxr 2510: # Figure out max/and min width by summing us and then
2511: # apply that to the current column of the table we nest in
2512: # if it's larger than the current width or the current width
2513: # is undefined.
2514: #
2515: my $min_nested_width = 0;
2516: my $max_nested_width = 0;
2517: for (my $col = 0; $col <= $Apache::londefdef::table[-1]{'counter_columns'}; $col++) {
2518: $min_nested_width += $min_len[$col];
2519: $max_nested_width += $max_len[$col];
1.300 foxr 2520:
1.294 foxr 2521: }
2522: # Fudge in an extra 5 mm for borders etc:
2523:
2524: $min_nested_width += 5;
2525: $max_nested_width += 5;
2526:
2527: my $outer_column = $Apache::londefdef::table[-2]{'counter_columns'};
2528: my $outer_row = $Apache::londefdef::table[-2]{'row_number'};
2529: if ($min_nested_width > $Apache::londefdef::table[-2]{'minlen'}[$outer_row][$outer_column]) {
2530: $Apache::londefdef::table[-2]{'minlen'}[$outer_row][$outer_column] = $min_nested_width;
2531: }
2532: if ($max_nested_width > $Apache::londefdef::table[-2]{'maxlen'}[$outer_row][$outer_column]) {
2533: $Apache::londefdef::table[-2]{'maxlen'}[$outer_row][$outer_column] = $max_nested_width;
2534: }
2535:
1.127 sakharuk 2536: pop @Apache::londefdef::table;
1.129 sakharuk 2537: push @{$Apache::londefdef::table[-1]{'include'}}, $inmemory;
1.127 sakharuk 2538: } else {
2539: $currentstring .= $Apache::londefdef::table[-1]{'output'};
2540: pop @Apache::londefdef::table;
1.143 sakharuk 2541: undef @Apache::londefdef::table;
1.127 sakharuk 2542: }
1.396 foxr 2543: }
2544: &enable_para();
1.384 foxr 2545: }
1.398 foxr 2546: }
1.122 albertel 2547: return $currentstring;
2548: }
2549:
1.166 sakharuk 2550: #-- <tr> tag (end tag optional)
1.122 albertel 2551: sub start_tr {
2552: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
2553: my $currentstring = '';
1.325 albertel 2554: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 2555: $currentstring = $token->[4];
2556: } elsif ($target eq 'tex') {
1.398 foxr 2557:
2558: my $align = &Apache::lonxml::get_param('align', $parstack, $safeeval, undef, 1);
2559: $Apache::londefdef::table[-1]->start_row();
2560:
2561: if ($align ne '') {
2562: $Apache::londefdef::table[-1]->configure_row({default_halign => $align});
2563: }
2564:
2565: #---------------------------------------------------------------
2566: # Old table code.
2567: #---------------------------------------------------------------
2568:
2569: if (0) {
1.122 albertel 2570: $Apache::londefdef::table[-1]{'row_number'}++;
1.206 sakharuk 2571: my $alignchar=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
1.122 albertel 2572: if ($alignchar ne '') {
1.206 sakharuk 2573: push @ {$Apache::londefdef::table[-1]{'rows'} },substr($alignchar,0,1);
1.122 albertel 2574: } else {
2575: push @ {$Apache::londefdef::table[-1]{'rows'} }, 'l';
2576: }
2577: push ( @{ $Apache::londefdef::table[-1]{'rowdata'} }, $Apache::londefdef::table[-1]{'hinc'});
1.300 foxr 2578: #
2579: # Need to save the number of table columns to preserve the max # columns.
2580: #
2581: $Apache::londefdef::table[-1]{'prior_columns'} = $Apache::londefdef::table[-1]{'counter_columns'};
1.122 albertel 2582: $Apache::londefdef::table[-1]{'counter_columns'} = -1;
1.206 sakharuk 2583: push @ {$Apache::londefdef::table[-1]{'TeXlen'}}, [];
2584: push @ {$Apache::londefdef::table[-1]{'objectlen'}}, [];
2585: push @ {$Apache::londefdef::table[-1]{'minlen'}}, [];
2586: push @ {$Apache::londefdef::table[-1]{'maxlen'}}, [];
2587: push @ {$Apache::londefdef::table[-1]{'content'}}, [];
1.398 foxr 2588: }
1.122 albertel 2589: }
2590: return $currentstring;
2591: }
2592:
2593: sub end_tr {
1.160 sakharuk 2594: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 2595: my $currentstring = &end_p(); # Close any pending <p> in the row.
1.325 albertel 2596: if ($target eq 'web' || $target eq 'webgrade') {
1.277 foxr 2597: $currentstring .= $token->[2];
1.122 albertel 2598: } elsif ($target eq 'tex') {
1.398 foxr 2599:
2600: # In case the user is missing a </td> or </th> tag:
2601:
2602: if ($Apache::londefdef::TD_redirection) {
2603: &end_td_tex($parstack,$parser,$safeeval);
2604: }
2605: $Apache::londefdef::table[-1]->end_row();
2606:
2607: #-----------------------------------------------
2608: # Old table code
2609: #-----------------------------------------------
2610:
2611: if (0) {
1.160 sakharuk 2612: if ($Apache::londefdef::TD_redirection) {
2613: &end_td_tex($parstack,$parser,$safeeval);
2614: }
1.300 foxr 2615: # Counter columns must be the maximum number of columns seen
2616: # in the table so far so:
2617: if ($Apache::londefdef::table[-1]{'prior_columns'} > $Apache::londefdef::table[-1]{'counter_columns'}) {
2618: $Apache::londefdef::table[-1]{'counter_columns'} = $Apache::londefdef::table[-1]{'prior_columns'};
2619: }
1.398 foxr 2620: }
1.295 foxr 2621:
1.294 foxr 2622:
1.122 albertel 2623: }
2624: return $currentstring;
2625: }
2626:
1.166 sakharuk 2627: #-- <td> tag (end tag optional)
1.122 albertel 2628: sub start_td {
2629: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
2630: my $currentstring = '';
1.325 albertel 2631: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 2632: $currentstring = $token->[4];
2633: } elsif ($target eq 'tex') {
1.160 sakharuk 2634: $Apache::londefdef::TD_redirection = 1;
1.159 sakharuk 2635: &tag_check('tr','td',$tagstack,$parstack,$parser,$safeeval);
1.122 albertel 2636: }
2637: return $currentstring;
2638: }
1.159 sakharuk 2639:
2640: sub tag_check {
2641: my ($good_tag,$bad_tag,$tagstack,$parstack,$parser,$safeeval) = @_;
1.160 sakharuk 2642: my @ar=@$parstack;
2643: for (my $i=$#ar-1;$i>=0;$i--) {
2644: if (lc($$tagstack[$i]) eq $good_tag) {
2645: &start_td_tex($parstack,$parser,$safeeval);
2646: last;
2647: } elsif (lc($$tagstack[$i]) eq $bad_tag) {
2648: splice @ar, $i+1;
2649: &end_td_tex(\@ar,$parser,$safeeval);
2650: &start_td_tex($parstack,$parser,$safeeval);
2651: last;
1.159 sakharuk 2652: }
1.160 sakharuk 2653: }
1.159 sakharuk 2654: return '';
2655: }
1.398 foxr 2656:
2657: #
2658: # Factor out cell configuration hash generation:
2659: #
2660:
2661: sub cell_config_hash {
1.415.4.2 raeburn 2662: my ($align, $rowspan, $colspan, $width) = @_;
1.415.4.3 raeburn 2663: if ($rowspan ne '') {
2664: $rowspan =~ s/^\s+|\s+$//g;
2665: }
2666: if ($colspan ne '') {
2667: $colspan =~ s/^\s+|\s+$//g;
2668: }
1.398 foxr 2669: my %config;
2670: if ($align ne '') {
2671: $config{'halign'} = $align;
2672: }
1.415.4.3 raeburn 2673: if (($colspan =~ /^\d+$/) && ($colspan > 0)) {
1.398 foxr 2674: $config{'colspan'} = $colspan;
2675: }
1.415.4.3 raeburn 2676: if (($rowspan =~ /^\d+$/) && ($rowspan > 0)) {
1.398 foxr 2677: $config{'rowspan'} = $rowspan;
2678: }
1.415.4.2 raeburn 2679: if ($width ne '') {
2680: $config{'width'} = $width;
2681: }
1.398 foxr 2682: return \%config;
2683: }
1.159 sakharuk 2684:
2685: sub start_td_tex {
2686: my ($parstack,$parser,$safeeval) = @_;
1.398 foxr 2687:
2688: # At this stage, an empty cell is created with the
2689: # appropriate rowspan/colspan and alignment
2690: # attributes, but empty of text. end_td_tex will
2691: # fetch the contents from the recursive parse and
2692: # fill the cell with them:
1.415.4.2 raeburn 2693: my $align = &Apache::lonxml::get_param('align', $parstack, $safeeval);
2694: my $rowspan = &Apache::lonxml::get_param('rowspan', $parstack, $safeeval);
2695: my $colspan = &Apache::lonxml::get_param('colspan', $parstack, $safeeval);
2696: my $width = &Apache::lonxml::get_param('TeXwidth', $parstack, $safeeval);
2697: my $config = &cell_config_hash($align, $rowspan, $colspan, $width);
1.398 foxr 2698:
2699: my $table = $Apache::londefdef::table[-1];
2700: $table->add_cell('', $config);
2701:
2702:
2703: #------------------------------------------------
2704: # Old table code.
2705: #------------------------------------------------
2706:
2707: if (0) {
2708:
1.206 sakharuk 2709: my $alignchar = substr(&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1),0,1);
2710: if ($alignchar eq '') {
2711: $alignchar = $Apache::londefdef::table[-1]{'rows'}[-1];
1.159 sakharuk 2712: }
1.206 sakharuk 2713: push @{ $Apache::londefdef::table[-1]{'align'}[$Apache::londefdef::table[-1]{'row_number'}] }, $alignchar;
1.159 sakharuk 2714: $Apache::londefdef::table[-1]{'counter_columns'}++;
1.206 sakharuk 2715: my $TeXwidth=&Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval,undef,0);
2716: if (defined $TeXwidth) {
2717: my $current_length=&recalc($TeXwidth);
2718: $current_length=~/(\d+\.?\d*)/;
2719: push @ {$Apache::londefdef::table[-1]{'TeXlen'}[$Apache::londefdef::table[-1]{'row_number'}] },$1;
2720: }
1.398 foxr 2721: }
1.159 sakharuk 2722: &Apache::lonxml::startredirection();
2723: return '';
2724: }
2725:
2726: sub end_td_tex {
1.398 foxr 2727:
2728: my $text = &Apache::lonxml::endredirection();
2729: my $table = $Apache::londefdef::table[-1];
2730: $table->append_cell_text($text);
2731:
2732: #-------------------------------------------------
2733: # Old table code
2734: #-------------------------------------------------
2735:
2736: if (0) {
1.159 sakharuk 2737: my ($parstack,$parser,$safeeval) = @_;
1.304 foxr 2738: my $current_row = $Apache::londefdef::table[-1]{'row_number'};
2739: my $current_column = $Apache::londefdef::table[-1]{'counter_columns'};
1.303 foxr 2740: my $data = &Apache::lonxml::endredirection();
2741:
1.305 foxr 2742: # The rowspan array of the table indicates which cells are part of a span.
2743: # n indicates the start of a span set of n rows.
2744: # ^ indicates a cell that continues a span set.
1.306 foxr 2745: # _ indicates the cell is at the bottom of a span set.
1.305 foxr 2746: # If this and subsequent cells are part of a rowspan, we must
2747: # push along the row until we find one that is not.
2748:
2749: while ((defined $Apache::londefdef::table[-1]{'rowspan'}[$current_row] [$current_column])
1.306 foxr 2750: && ($Apache::londefdef::table[-1]{'rowspan'}[$current_row][$current_column] =~ /[\^\_]/)) {
1.305 foxr 2751: # Part of a span.
2752: push @ {$Apache::londefdef::table[-1]{'content'}[-1]}, '';
2753: $current_column++;
2754: }
2755: $Apache::londefdef::table[-1]{'counter_columns'} = $current_column;
2756:
2757:
1.320 foxr 2758: # Get the column and row spans.
2759: # Colspan can be done via \multicolumn if I can figure out the data structs.
2760:
2761: my $colspan = &Apache::lonxml::get_param('colspan', $parstack, $safeeval, undef, 0);
2762: if (!$colspan) {
2763: $colspan = 1;
2764: }
1.305 foxr 2765:
2766: my $rowspan = &Apache::lonxml::get_param('rowspan', $parstack, $safeeval, undef, 0);
2767: if (!$rowspan) {
2768: $rowspan = 1;
2769: }
2770:
1.303 foxr 2771:
1.305 foxr 2772:
1.320 foxr 2773: for (my $c = 0; $c < $colspan; $c++) {
2774: $Apache::londefdef::table[-1]{'rowspan'}[$current_row][$current_column+$c] = $rowspan;
2775: for (my $i = 1; $i < $rowspan; $i++) {
2776: $Apache::londefdef::table[-1]{'rowspan'}[$current_row+$i][$current_column+$c] = '^';
2777: if ($i == ($rowspan-1)) {
2778: $Apache::londefdef::table[-1]{'rowspan'}[$current_row+$i][$current_column+$c] = '_';
2779: }
1.306 foxr 2780: }
1.305 foxr 2781: }
1.304 foxr 2782:
1.159 sakharuk 2783: my $TeXwidth=&Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval,undef,0);
2784: if (defined $TeXwidth) {
1.357 foxr 2785: for (my $c = 0; $c < $colspan; $c++) {
2786: push @ {$Apache::londefdef::table[-1]{'objectlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
2787: push @ {$Apache::londefdef::table[-1]{'minlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
2788: push @ {$Apache::londefdef::table[-1]{'maxlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
2789: }
1.159 sakharuk 2790: } else {
1.206 sakharuk 2791: if (($data=~m/width\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)/) or ($data=~m/\[(\d+\.?\d*)\s*mm\]/)) {
2792: my $garbage_data=$data;
2793: my $fwidth=0;
2794: while ($garbage_data=~m/width\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)/) {
2795: my $current_length=&recalc($1);
2796: $current_length=~/(\d+\.?\d*)/;
2797: if ($fwidth<$1) {$fwidth=$1;}
2798: $garbage_data=~s/width\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)//;
2799: }
2800: while ($garbage_data=~m/\[(\d+\.?\d*)\s*mm\]/) {
2801: my $current_length=$1;
2802: if ($fwidth<$current_length) {$fwidth=$current_length;}
2803: $garbage_data=~s/\[(\d+\.?\d*)\s*mm\]//;
2804: }
1.357 foxr 2805: for (my $c = 0; $c < $colspan; $c++) {
2806: push @ {$Apache::londefdef::table[-1]{'TeXlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
2807: push @ {$Apache::londefdef::table[-1]{'objectlen'}[$Apache::londefdef::table[-1]{'row_number'}] },$fwidth;
2808: push @ {$Apache::londefdef::table[-1]{'minlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
2809: push @ {$Apache::londefdef::table[-1]{'maxlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
2810: }
1.231 sakharuk 2811: } elsif ($data=~/\\parbox\{\s*\d+\.?\d*\s*(mm|cm|in|pc|pt)*\s*\}/ or $data=~/\\epsfxsize\s*=\s*\d+\.?\d*\s*(mm|cm|in|pc|pt)*/) {
2812: my $garbage_data=$data;
2813: my $fwidth=0;
2814: while ($garbage_data=~/\\parbox\{\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)\s*\}/) {
2815: my $current_length=&recalc($1);
2816: $current_length=~/(\d+\.?\d*)/;
2817: if ($fwidth<$1) {$fwidth=$1;}
2818: $garbage_data=~s/\\parbox\{\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)//;
2819: }
2820: while ($garbage_data=~/\\epsfxsize\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)/) {
2821: my $current_length=&recalc($1);
2822: $current_length=~/(\d+\.?\d*)/;
2823: if ($fwidth<$1) {$fwidth=$1;}
2824: $garbage_data=~s/\\epsfxsize\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)//;
2825: }
1.357 foxr 2826: for (my $c = 0; $c < $colspan; $c++) {
2827: push @ {$Apache::londefdef::table[-1]{'TeXlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
2828: push @ {$Apache::londefdef::table[-1]{'objectlen'}[$Apache::londefdef::table[-1]{'row_number'}] },$fwidth;
2829: push @ {$Apache::londefdef::table[-1]{'minlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
2830: push @ {$Apache::londefdef::table[-1]{'maxlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
2831: }
1.231 sakharuk 2832: $data=~s/\\\\\s*$//;
1.159 sakharuk 2833: } else {
1.166 sakharuk 2834: $data=~s/^\s+(\S.*)/$1/;
1.159 sakharuk 2835: $data=~s/(.*\S)\s+$/$1/;
1.166 sakharuk 2836: $data=~s/(\s)+/$1/;
1.206 sakharuk 2837: my ($current_length,$min_length)=(0,0);
1.166 sakharuk 2838: if ($data=~/\\vskip/) {
2839: my $newdata=$data;
2840: $newdata=~s/\\vskip \d*\.?\d*\s*mm/THISISJUSTTEMPORARYSEPARATOR/g;
2841: my @newdata=split(/THISISJUSTTEMPORARYSEPARATOR/,$newdata);
2842: foreach my $elementdata (@newdata) {
1.206 sakharuk 2843: my $lengthnewdata=2.5*&LATEX_length($elementdata);
1.166 sakharuk 2844: if ($lengthnewdata>$current_length) {$current_length=$lengthnewdata;}
1.206 sakharuk 2845: my @words=split(/ /,$elementdata);
2846: foreach my $word (@words) {
2847: my $lengthword=2.5*&LATEX_length($word);
2848: if ($min_length<$lengthword) {$min_length=$lengthword;}
2849: }
1.166 sakharuk 2850: }
2851: } else {
1.206 sakharuk 2852: $current_length=2.5*&LATEX_length($data);
2853: my @words=split(/ /,$data);
2854: foreach my $word (@words) {
1.228 sakharuk 2855: my $lengthword=2*&LATEX_length($word);
1.206 sakharuk 2856: if ($min_length<$lengthword) {$min_length=$lengthword;}
2857: }
1.166 sakharuk 2858: }
1.357 foxr 2859: for (my $c = 0; $c < $colspan; $c++) {
2860: push @ {$Apache::londefdef::table[-1]{'TeXlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
2861: push @ {$Apache::londefdef::table[-1]{'objectlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
2862: push @ {$Apache::londefdef::table[-1]{'maxlen'}[$Apache::londefdef::table[-1]{'row_number'}] },$current_length;
2863: push @ {$Apache::londefdef::table[-1]{'minlen'}[$Apache::londefdef::table[-1]{'row_number'}] },$min_length;
2864: }
1.159 sakharuk 2865: }
2866: }
1.302 foxr 2867: # Substitute all of the tables nested in this cell in their appropriate places.
2868:
2869:
2870: my $nested_count = $#{$Apache::londefdef::table[-1]{'include'}}; # This one is constant...
2871: for (my $in=0; $in<=$nested_count; $in++) {
1.301 foxr 2872: my $nested = shift @{$Apache::londefdef::table[-1]{'include'}};
2873: $nested =~ s/\\end\{tabular\}\\strut\\\\/\\end\{tabular\}/;
2874: # $data=~s/\\keephidden\{NEW TABLE ENTRY\}/$Apache::londefdef::table[-1]{'include'}[$in]/;
2875: $data =~ s/\\keephidden\{NEW TABLE ENTRY\}/$nested/;
2876:
2877: }
2878: # Should be be killing off the 'include' elements as they're used up?
1.305 foxr 2879:
1.206 sakharuk 2880: push @ {$Apache::londefdef::table[-1]{'content'}[-1] },$data;
1.305 foxr 2881:
1.304 foxr 2882:
2883:
2884:
2885: # the colspan array will indicate how many columns will be spanned by this
2886: # cell..this requires that counter_columns also be adjusted accordingly
2887: # so that the next bunch of text goes in the right cell. Note that since
2888: # counter_columns is incremented in the start_td_tex, we adjust by colspan-1.
2889: #
2890:
2891: $Apache::londefdef::table[-1]{'counter_columns'} += $colspan -1;
2892: for (my $i = 0; $i < ($colspan -1); $i++) {
2893: push @ {$Apache::londefdef::table[-1]{'content'}[-1] },'';
2894: }
1.320 foxr 2895: for (my $r = 0; $r < $rowspan; $r++) {
2896: $Apache::londefdef::table[-1]{'colspan'}[$current_row+$r][$current_column] = $colspan;
2897: # Put empty text in spanned cols.
2898:
2899: }
2900:
1.398 foxr 2901: }
1.304 foxr 2902:
1.301 foxr 2903: return '';
1.159 sakharuk 2904: }
2905:
1.122 albertel 2906: sub end_td {
1.126 sakharuk 2907: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 2908: my $currentstring = '';
1.325 albertel 2909: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 2910: $currentstring = $token->[2];
2911: } elsif ($target eq 'tex') {
1.160 sakharuk 2912: $Apache::londefdef::TD_redirection =0;
1.159 sakharuk 2913: &end_td_tex($parstack,$parser,$safeeval);
1.122 albertel 2914: }
2915: return $currentstring;
2916: }
2917:
1.166 sakharuk 2918: #-- <th> tag (end tag optional)
1.122 albertel 2919: sub start_th {
2920: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
2921: my $currentstring = '';
1.325 albertel 2922: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 2923: $currentstring = $token->[4];
2924: } elsif ($target eq 'tex') {
1.230 sakharuk 2925: $Apache::londefdef::TD_redirection = 1;
2926: &tagg_check('tr','th',$tagstack,$parstack,$parser,$safeeval);
1.122 albertel 2927: }
2928: return $currentstring;
1.130 sakharuk 2929: }
1.230 sakharuk 2930:
2931: sub tagg_check {
2932: my ($good_tag,$bad_tag,$tagstack,$parstack,$parser,$safeeval) = @_;
2933: my @ar=@$parstack;
2934: for (my $i=$#ar-1;$i>=0;$i--) {
2935: if (lc($$tagstack[$i]) eq $good_tag) {
2936: &start_th_tex($parstack,$parser,$safeeval);
2937: last;
2938: } elsif (lc($$tagstack[$i]) eq $bad_tag) {
2939: splice @ar, $i+1;
2940: &end_th_tex(\@ar,$parser,$safeeval);
2941: &start_th_tex($parstack,$parser,$safeeval);
2942: last;
2943: }
2944: }
2945: return '';
2946: }
2947:
2948: sub start_th_tex {
2949: my ($parstack,$parser,$safeeval) = @_;
1.398 foxr 2950:
2951: my $alignment = &Apache::lonxml::get_param('align', $parstack, $safeeval, undef,1);
2952: my $rowspan = &Apache::lonxml::get_param('rowspan', $parstack, $safeeval, undef, 1);
2953: my $colspan = &Apache::lonxml::get_param('colspan', $parstack, $safeeval, undef, 1);
2954:
2955: my $config = cell_config_hash($alignment, $rowspan, $colspan);
2956: my $table = $Apache::londefdef::table[-1];
2957: $table->add_cell('\textbf{', $config);
2958:
2959: #-------------------------------------------------------------------------------------
2960: #
2961: # Old table code.
2962: #
2963: #--------------------------------------------------------------------------------------
2964:
2965: if (0) {
2966:
2967:
1.230 sakharuk 2968: my $alignchar = substr(&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1),0,1);
2969: if ($alignchar eq '') {
2970: $alignchar = $Apache::londefdef::table[-1]{'rows'}[-1];
2971: }
2972: push @{ $Apache::londefdef::table[-1]{'align'}[$Apache::londefdef::table[-1]{'row_number'}] }, $alignchar;
2973: $Apache::londefdef::table[-1]{'counter_columns'}++;
2974: my $TeXwidth=&Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval,undef,0);
2975: if (defined $TeXwidth) {
2976: my $current_length=&recalc($TeXwidth);
2977: $current_length=~/(\d+\.?\d*)/;
2978: push @ {$Apache::londefdef::table[-1]{'TeXlen'}[$Apache::londefdef::table[-1]{'row_number'}] },$1;
2979: }
1.398 foxr 2980: }
2981:
2982: # Accept xml until the </th> tag.
2983:
1.230 sakharuk 2984: &Apache::lonxml::startredirection();
2985: return '';
2986: }
2987:
2988: sub end_th_tex {
2989: my ($parstack,$parser,$safeeval) = @_;
1.398 foxr 2990:
2991: my $table = $Apache::londefdef::table[-1];
2992: my $text = &Apache::lonxml::endredirection();
2993: $table->append_cell_text($text.'}');
2994:
2995: #-----------------------------------------------------------------------------
2996: # Old table code:
2997: #-----------------------------------------------------------------------------
2998:
2999: if (0) {
1.230 sakharuk 3000: my $current_row = $Apache::londefdef::table[-1]{'row_number'};
3001: my $data=&Apache::lonxml::endredirection();
3002: my $TeXwidth=&Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval,undef,0);
3003: if (defined $TeXwidth) {
3004: push @ {$Apache::londefdef::table[-1]{'objectlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
3005: push @ {$Apache::londefdef::table[-1]{'minlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
3006: push @ {$Apache::londefdef::table[-1]{'maxlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
3007: } else {
3008: if (($data=~m/width\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)/) or ($data=~m/\[(\d+\.?\d*)\s*mm\]/)) {
3009: my $garbage_data=$data;
3010: my $fwidth=0;
3011: while ($garbage_data=~m/width\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)/) {
3012: my $current_length=&recalc($1);
3013: $current_length=~/(\d+\.?\d*)/;
3014: if ($fwidth<$1) {$fwidth=$1;}
3015: $garbage_data=~s/width\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)//;
3016: }
3017: while ($garbage_data=~m/\[(\d+\.?\d*)\s*mm\]/) {
3018: my $current_length=$1;
3019: if ($fwidth<$current_length) {$fwidth=$current_length;}
3020: $garbage_data=~s/\[(\d+\.?\d*)\s*mm\]//;
3021: }
3022: push @ {$Apache::londefdef::table[-1]{'TeXlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
3023: push @ {$Apache::londefdef::table[-1]{'objectlen'}[$Apache::londefdef::table[-1]{'row_number'}] },$fwidth;
3024: push @ {$Apache::londefdef::table[-1]{'minlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
3025: push @ {$Apache::londefdef::table[-1]{'maxlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
3026: } else {
3027: $data=~s/^\s+(\S.*)/$1/;
3028: $data=~s/(.*\S)\s+$/$1/;
3029: $data=~s/(\s)+/$1/;
3030: my ($current_length,$min_length)=(0,0);
3031: if ($data=~/\\vskip/) {
3032: my $newdata=$data;
3033: $newdata=~s/\\vskip \d*\.?\d*\s*mm/THISISJUSTTEMPORARYSEPARATOR/g;
3034: my @newdata=split(/THISISJUSTTEMPORARYSEPARATOR/,$newdata);
3035: foreach my $elementdata (@newdata) {
3036: my $lengthnewdata=2.5*&LATEX_length($elementdata);
3037: if ($lengthnewdata>$current_length) {$current_length=$lengthnewdata;}
3038: my @words=split(/ /,$elementdata);
3039: foreach my $word (@words) {
3040: my $lengthword=2.5*&LATEX_length($word);
3041: if ($min_length<$lengthword) {$min_length=$lengthword;}
3042: }
3043: }
3044: } else {
3045: $current_length=2.5*&LATEX_length($data);
3046: my @words=split(/ /,$data);
3047: foreach my $word (@words) {
3048: my $lengthword=2*&LATEX_length($word);
3049: if ($min_length<$lengthword) {$min_length=$lengthword;}
3050: }
3051: }
3052: push @ {$Apache::londefdef::table[-1]{'TeXlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
3053: push @ {$Apache::londefdef::table[-1]{'objectlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
3054: push @ {$Apache::londefdef::table[-1]{'maxlen'}[$Apache::londefdef::table[-1]{'row_number'}] },$current_length;
3055: push @ {$Apache::londefdef::table[-1]{'minlen'}[$Apache::londefdef::table[-1]{'row_number'}] },$min_length;
3056: }
3057: }
3058: for (my $in=0; $in<=$#{$Apache::londefdef::table[-1]{'include'}};$in++) {
3059: $data=~s/\\keephidden\{NEW TABLE ENTRY\}/$Apache::londefdef::table[-1]{'include'}[$in]/;
3060: }
3061: #make data bold
3062: $data='\textbf{'.$data.'}';
3063: push @ {$Apache::londefdef::table[-1]{'content'}[-1] },$data;
1.398 foxr 3064: }
1.230 sakharuk 3065: return'';
3066: }
3067:
1.122 albertel 3068: sub end_th {
1.130 sakharuk 3069: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 3070: my $currentstring = &end_p(); # Close any open <p> in the row.
1.325 albertel 3071: if ($target eq 'web' || $target eq 'webgrade') {
1.277 foxr 3072: $currentstring .= $token->[2];
1.122 albertel 3073: } elsif ($target eq 'tex') {
1.230 sakharuk 3074: $Apache::londefdef::TD_redirection =0;
3075: &end_th_tex($parstack,$parser,$safeeval);
1.122 albertel 3076: }
3077: return $currentstring;
3078: }
1.230 sakharuk 3079:
1.181 sakharuk 3080: #-- <img> tag (end tag forbidden)
1.249 foxr 3081: #
3082: # Render the <IMG> tag.
3083: # <IMG> has the following attributes (in addition to the
3084: # standard HTML ones:
3085: # TeXwrap - Governs how the tex target will try to wrap text around
3086: # horizontally aligned images.
3087: # TeXwidth - The width of the image when rendered for print (mm).
3088: # TeXheight - The height of the image when rendered for print (mm)
3089: # (Note there seems to also be support for this as a % of page size)
3090: #
1.122 albertel 3091: sub start_img {
1.299 albertel 3092: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
1.122 albertel 3093: my $src = &Apache::lonxml::get_param('src',$parstack,$safeeval,
3094: undef,1);
1.325 albertel 3095: if (! $src &&
3096: ($target eq 'web' || $target eq 'webgrade' || $target eq 'tex')
3097: ) {
1.299 albertel 3098: my $inside = &Apache::lonxml::get_all_text("/img",$parser,$style);
1.189 albertel 3099: return '';
3100: }
1.290 albertel 3101: &Apache::lonxml::extlink($src);
1.122 albertel 3102: my $currentstring = '';
3103: my $scaling = .3;
1.249 foxr 3104:
3105: # Render unto browsers that which are the browser's...
3106:
1.325 albertel 3107: if ($target eq 'web' || $target eq 'webgrade') {
1.267 albertel 3108: if ($env{'browser.imagesuppress'} ne 'on') {
1.322 albertel 3109: my $enc = ('yes' eq
3110: lc(&Apache::lonxml::get_param('encrypturl',$parstack,
3111: $safeeval)));
3112: $currentstring.=&Apache::lonenc::encrypt_ref($token,{'src'=>$src},
3113: $enc);
1.122 albertel 3114: } else {
1.322 albertel 3115: my $alttag = &Apache::lonxml::get_param('alt',$parstack,$safeeval,
3116: undef,1);
3117: if (!$alttag) {
3118: $alttag = &Apache::lonmeta::alttag($Apache::lonxml::pwd[-1],
3119: $src);
1.51 sakharuk 3120: }
1.158 sakharuk 3121: $currentstring.='[IMAGE: '.$alttag.']';
1.1 sakharuk 3122: }
1.249 foxr 3123:
3124: # and render unto TeX that which is LaTeX
3125:
1.122 albertel 3126: } elsif ($target eq 'tex') {
1.248 foxr 3127: #
3128: # The alignment will require some superstructure to be put around
3129: # the \includegraphics stuff. At present we can only partially
3130: # simulate the alignments offered by html.
3131: #
3132: #
3133: my $align = lc(&Apache::lonxml::get_param('align',
3134: $parstack,
3135: $safeeval,
3136: undef,1));
3137: if(!$align) {
1.287 foxr 3138: $align = "bottom"; # This is html's default so it's ours too.
1.248 foxr 3139: }
3140: #
3141: &Apache::lonxml::debug("Alignemnt = $align");
3142: # LaTeX's image/text wrapping is really bad since it wants to
3143: # make figures float.
3144: # The user has the optional parameter (applicable only to l/r
3145: # alignment to use the picins/parpic directive to get wrapped text
3146: # this is also imperfect.. that's why we give them a choice...
3147: # so they can't yell at us for our choice.
3148: #
3149: my $latex_rendering = &Apache::lonxml::get_param('TeXwrap',
3150: $parstack,
3151: $safeeval,
3152: undef,0);
1.312 foxr 3153: # &Apache::lonxml::debug("LaTeX rendering = $latex_rendering");
1.248 foxr 3154: if(!$latex_rendering) {
1.312 foxr 3155: $latex_rendering = "texwrap";
3156: }
3157: # using texwrap inside a table does not work. So, if after all of this,
3158: # texwrap is on, we turn it off if we detect we're in a table:
3159: #
3160: if (($latex_rendering eq 'texwrap') && &is_inside_of($tagstack, "table")) {
3161: $latex_rendering = 'parpic';
1.248 foxr 3162: }
1.323 foxr 3163:
1.312 foxr 3164: # &Apache::lonxml::debug("LaTeX rendering = $latex_rendering image file: $src");
1.248 foxr 3165:
1.390 foxr 3166: #if original bmp/gif/jpg/png file exist do following:
1.266 albertel 3167: my $origsrc=$src;
1.256 albertel 3168: my ($path,$file) = &get_eps_image($src);
1.341 foxr 3169: # &Apache::lonnet::logthis("Image source: $src result: $path $file");
1.122 albertel 3170: $src=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$src);
1.261 foxr 3171: &Apache::lonxml::debug("path = $path file = $file src = $src");
1.192 sakharuk 3172: if (-e $src) {
1.261 foxr 3173: &Apache::lonxml::debug("$src exists");
1.256 albertel 3174: my ($height_param,$width_param)=
1.266 albertel 3175: &image_size($origsrc,0.3,$parstack,$safeeval);
3176: my $size;
3177: if ($width_param) { $size.='width='.$width_param.' mm,'; }
3178: if ($height_param) { $size.='height='.$height_param.' mm]'; }
1.341 foxr 3179: # Default size if not able to extract that (e.g. eps image).
3180:
3181: # &Apache::lonnet::logthis("Size = $size");
3182:
1.266 albertel 3183: $size='['.$size;
3184: $size=~s/,$/]/;
1.344 albertel 3185: $currentstring .= '\graphicspath{{'.$path.'}}'
3186: .'\includegraphics'.$size.'{'.$file.'} ';
1.354 foxr 3187: my $closure;
3188: ($currentstring, $closure) = &align_latex_image($align,
3189: $latex_rendering,
3190: $currentstring,
3191: $width_param,
3192: $height_param);
3193: $currentstring .= $closure;
1.353 foxr 3194:
1.122 albertel 3195: } else {
1.261 foxr 3196: &Apache::lonxml::debug("$src does not exist");
1.122 albertel 3197: #original image file doesn't exist so check the alt attribute
3198: my $alt =
3199: &Apache::lonxml::get_param('alt',$parstack,$safeeval,undef,1);
3200: unless ($alt) {
3201: $alt=&Apache::lonmeta::alttag($Apache::lonxml::pwd[-1],$src);
3202: }
3203:
1.256 albertel 3204: if ($alt) { $currentstring .= ' '.$alt.' '; }
1.59 sakharuk 3205: }
1.249 foxr 3206:
3207: # And here's where the semi-quote breaks down: allow the user
3208: # to edit the beast as well by rendering the problem for edit:
1.186 albertel 3209: } elsif ($target eq 'edit') {
1.368 banghart 3210: my $only = join(',',&Apache::loncommon::filecategorytypes('Pictures'));
1.186 albertel 3211: $currentstring .=&Apache::edit::tag_start($target,$token);
3212: $currentstring .=&Apache::edit::text_arg('Image Url:','src',$token,70).
1.368 banghart 3213: &Apache::edit::browse('src',undef,'alt',$only).' '.
1.186 albertel 3214: &Apache::edit::search('src',undef,'alt').'<br />';
3215: $currentstring .=&Apache::edit::text_arg('Description:','alt',$token,70).'<br />';
3216: $currentstring .=&Apache::edit::text_arg('width (pixel):','width',$token,5);
3217: $currentstring .=&Apache::edit::text_arg('height (pixel):','height',$token,5).'<br />';
3218: $currentstring .=&Apache::edit::text_arg('TeXwidth (mm):','TeXwidth',$token,5);
3219: $currentstring .=&Apache::edit::text_arg('TeXheight (mm):','TeXheight',$token,5);
1.234 albertel 3220: $currentstring .=&Apache::edit::select_arg('Alignment:','align',
3221: ['','bottom','middle','top','left','right'],$token,5);
1.249 foxr 3222: $currentstring .=&Apache::edit::select_arg('TeXwrap:', 'TeXwrap',
1.348 albertel 3223: ['', 'none','parbox', 'parpic', 'wrapfigure'], $token, 2);
1.415.4.1 raeburn 3224: my $alt= &Apache::lonxml::get_param('alt',$parstack,$safeeval);
3225: my $enc= &Apache::lonxml::get_param('encrypturl',$parstack,$safeeval);
3226:
1.332 www 3227: $currentstring .=&Apache::edit::select_arg('Encrypt URL:','encrypturl',
1.322 albertel 3228: ['no','yes'], $token, 2);
1.415.4.1 raeburn 3229: if (($alt=~/\S/) && (lc($enc) eq 'yes')) {
3230: $currentstring.='<br /><span class="LC_warning">'.&mt('Warning: the description "[_1]" will be available, even for encrypted URL',$alt).'</span><br />';
3231: }
1.186 albertel 3232: $currentstring .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
1.249 foxr 3233: my $src= &Apache::lonxml::get_param('src',$parstack,$safeeval);
3234: my $width= &Apache::lonxml::get_param('width',$parstack,$safeeval);
3235: my $height= &Apache::lonxml::get_param('height',$parstack,$safeeval);
3236:
1.381 www 3237: if ($token->[2]{'src'}=~/\$/) {
1.415.4.1 raeburn 3238: $currentstring.=&mt('Variable image source');
3239: } elsif ($token->[2]{'src'}=~/\S/) {
3240: $currentstring .= '<img src="'.$src.'" alt="'.$alt.'" ';
3241: if ($width) { $currentstring.=' width="'.$width.'" '; }
3242: if ($height) { $currentstring.=' height="'.$height.'" '; }
3243: $currentstring .= ' />';
1.381 www 3244: } else {
1.415.4.1 raeburn 3245: $currentstring.=&mt("No image source specified");
1.381 www 3246: }
1.186 albertel 3247: } elsif ($target eq 'modified') {
1.210 albertel 3248: my ($osrc,$owidth,$oheight)=
3249: ($token->[2]{'src'},$token->[2]{'width'},$token->[2]{'height'});
3250: my $ctag=&Apache::edit::get_new_args($token,$parstack,
1.234 albertel 3251: $safeeval,'src','alt','align',
1.249 foxr 3252: 'TeXwidth','TeXheight', 'TeXwrap',
1.322 albertel 3253: 'width','height','encrypturl');
1.210 albertel 3254: my ($nsrc,$nwidth,$nheight)=
3255: ($token->[2]{'src'},$token->[2]{'width'},$token->[2]{'height'});
3256: my $loc=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$nsrc);
3257: &image_replication($loc);
3258: my ($iwidth,$iheight);
3259: if (-e $loc) {
3260: my $image = Image::Magick->new;
3261: $image->Read($loc);
3262: ($iwidth, $iheight) = ($image->Get('width'),
3263: $image->Get('height'));
3264: }
3265: if ($osrc ne $nsrc || (!$nwidth && !$nheight)) {
3266: # changed image or no size specified,
3267: # if they didn't explicitly change the
3268: # width or height use the ones from the image
3269: if ($iwidth && $iheight) {
3270: if ($owidth == $nwidth || (!$nwidth && !$nheight)) {
3271: $token->[2]{'width'} = $iwidth;$ctag=1;
3272: }
3273: if ($oheight == $nheight || (!$nwidth && !$nheight)) {
3274: $token->[2]{'height'}=$iheight;$ctag=1;
1.186 albertel 3275: }
3276: }
3277: }
1.210 albertel 3278: my ($cwidth,$cheight)=($token->[2]{'width'},$token->[2]{'height'});
3279: # if we don't have a width or height
3280: if ($iwidth && $cwidth && !$cheight) {
3281: $token->[2]{'height'}=int(($cwidth/$iwidth)*$iheight);$ctag=1;
3282: }
3283: if ($iheight && $cheight && !$cwidth) {
3284: $token->[2]{'width'}=int(($cheight/$iheight)*$iwidth);$ctag=1;
3285: }
3286: if ($ctag) {$currentstring=&Apache::edit::rebuild_tag($token);}
1.122 albertel 3287: }
1.261 foxr 3288:
1.122 albertel 3289: return $currentstring;
3290: }
3291:
3292: sub end_img {
3293: my ($target,$token) = @_;
3294: my $currentstring = '';
1.325 albertel 3295: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3296: $currentstring = $token->[2];
3297: } elsif ($target eq 'tex') {
3298: $currentstring = '';
3299: }
3300: return $currentstring;
3301: }
3302:
1.181 sakharuk 3303: #-- <applet> tag (end tag required)
1.122 albertel 3304: sub start_applet {
3305: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
3306:
3307: my $code=&Apache::lonxml::get_param('code',$parstack,$safeeval,undef,1);
1.290 albertel 3308: &Apache::lonxml::extlink($code);
1.122 albertel 3309: my $archive=&Apache::lonxml::get_param('archive',$parstack,$safeeval,
3310: undef,1);
1.290 albertel 3311: &Apache::lonxml::extlink($archive);
1.122 albertel 3312: my $currentstring = '';
1.325 albertel 3313: if ($target eq 'web' || $target eq 'webgrade') {
1.267 albertel 3314: if ($env{'browser.appletsuppress'} ne 'on') {
1.250 albertel 3315: $currentstring = &Apache::lonenc::encrypt_ref($token,
3316: {'code'=>$code,
3317: 'archive'=>$archive}
3318: );
1.122 albertel 3319: } else {
3320: my $alttag= &Apache::lonxml::get_param('alt',$parstack,
3321: $safeeval,undef,1);
3322: unless ($alttag) {
3323: $alttag=&Apache::lonmeta::alttag($Apache::lonxml::pwd[-1],
3324: $code);
1.44 sakharuk 3325: }
1.122 albertel 3326: $currentstring='[APPLET: '.$alttag.']';
1.1 sakharuk 3327: }
1.122 albertel 3328: } elsif ($target eq 'tex') {
1.361 foxr 3329: # Turn off some stuff we can't be inside thank you LaTeX
3330:
3331:
3332: my $restart_sub = 0;
3333: my $restart_sup = 0;
3334:
3335: # Since <sub> and <sup> are simple tags it's ok to turn off/on
3336: # using the start_ stop_ functions.. those tags only care about
3337: # $target.
3338:
3339: if (&is_inside_of($tagstack, "sub")) {
3340: $restart_sub = 1;
3341: $currentstring .= &end_sub($target, $token, $tagstack,
3342: $parstack, $parser, $safeeval);
3343: }
3344: if (&is_inside_of($tagstack, "sup")) {
3345: $restart_sup = 1;
3346: $currentstring .= &end_sup($target, $token, $tagstack,
3347: $parstack, $parser, $safeeval);
3348: }
3349:
3350: # Now process the applet; just replace it with its alt attribute.
3351:
1.177 albertel 3352: my $alttag= &Apache::lonxml::get_param('alt',$parstack,
3353: $safeeval,undef,1);
3354: unless ($alttag) {
3355: my $code=&Apache::lonxml::get_param('code',$parstack,$safeeval,
3356: undef,1);
3357: $alttag=&Apache::lonmeta::alttag($Apache::lonxml::pwd[-1],
3358: $code);
1.175 sakharuk 3359: }
1.177 albertel 3360: $currentstring.='\begin{center} \fbox{Java Applet: '.$alttag.
3361: '.}\end{center}';
1.361 foxr 3362:
3363: # Turn stuff back on that we can't be inside of.
3364:
3365: if ($restart_sub) {
3366: $currentstring .= &start_sub($target, $token, $tagstack,
3367: $parstack, $parser, $safeeval);
3368: }
3369: if ($restart_sup) {
3370: $currentstring .= &start_sup($target, $token, $tagstack,
3371: $parstack, $parser, $safeeval);
3372: }
1.122 albertel 3373: }
3374: return $currentstring;
3375: }
3376:
3377: sub end_applet {
3378: my ($target,$token) = @_;
3379: my $currentstring = '';
1.325 albertel 3380: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3381: $currentstring = $token->[2];
3382: } elsif ($target eq 'tex') {
3383: }
3384: return $currentstring;
3385: }
3386:
1.181 sakharuk 3387: #-- <embed> tag (end tag optional/required)
1.122 albertel 3388: sub start_embed {
3389: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
3390: my $src=&Apache::lonxml::get_param('src',$parstack,$safeeval,undef,1);
1.290 albertel 3391: &Apache::lonxml::extlink($src);
1.122 albertel 3392: my $currentstring = '';
1.325 albertel 3393: if ($target eq 'web' || $target eq 'webgrade') {
1.267 albertel 3394: if ($env{'browser.embedsuppress'} ne 'on') {
1.250 albertel 3395: $currentstring=&Apache::lonenc::encrypt_ref($token,{'src'=>$src});
1.122 albertel 3396: } else {
3397: my $alttag=&Apache::lonxml::get_param
3398: ('alt',$parstack,$safeeval,undef,1);
3399: unless ($alttag) {
3400: $alttag=&Apache::lonmeta::alttag($Apache::lonxml::pwd[-1],$src);
1.42 albertel 3401: }
1.122 albertel 3402: $currentstring='[EMBED: '.$alttag.']';
1.10 www 3403: }
1.122 albertel 3404: } elsif ($target eq 'tex') {
3405: }
3406: return $currentstring;
3407: }
3408:
3409: sub end_embed {
3410: my ($target,$token) = @_;
3411: my $currentstring = '';
1.325 albertel 3412: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3413: $currentstring = $token->[2];
1.175 sakharuk 3414: } elsif ($target eq 'tex') {
1.122 albertel 3415: }
3416: return $currentstring;
3417: }
3418:
1.181 sakharuk 3419: #-- <param> tag (end tag forbidden)
1.122 albertel 3420: sub start_param {
3421: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.290 albertel 3422: if (&Apache::lonxml::get_param('name',$parstack,
3423: $safeeval,undef,1)=~/^cabbase$/i) {
3424: my $value=&Apache::lonxml::get_param('value',$parstack,
3425: $safeeval,undef,1);
3426: &Apache::lonxml::extlink($value);
3427: }
3428:
3429: my $src = &Apache::lonxml::get_param('src',$parstack,$safeeval,undef,1);
3430: &Apache::lonxml::extlink($src);
1.122 albertel 3431: my $currentstring = '';
1.325 albertel 3432: if ($target eq 'web' || $target eq 'webgrade') {
1.250 albertel 3433: my %toconvert;
3434: my $src=&Apache::lonxml::get_param('src',$parstack,$safeeval,undef,1);
3435: if ($src) { $toconvert{'src'}= $src; }
3436: my $name=&Apache::lonxml::get_param('name',$parstack,$safeeval,
3437: undef,1);
1.251 albertel 3438: if ($name=~/^cabbase$/i) {
3439: $toconvert{'value'}=&Apache::lonxml::get_param('value',$parstack,
3440: $safeeval,undef,1);
3441: }
1.250 albertel 3442: $currentstring = &Apache::lonenc::encrypt_ref($token,\%toconvert);
1.122 albertel 3443: } elsif ($target eq 'tex') {
3444: }
3445: return $currentstring;
3446: }
3447:
3448: sub end_param {
3449: my ($target,$token) = @_;
3450: my $currentstring = '';
1.325 albertel 3451: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3452: $currentstring = $token->[2];
3453: } elsif ($target eq 'tex') {
3454: }
3455: return $currentstring;
3456: }
3457:
3458: #-- <allow> tag
3459: sub start_allow {
3460: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
3461: my $src = &Apache::lonxml::get_param('src',$parstack,$safeeval,undef,1);
1.290 albertel 3462: &Apache::lonxml::extlink($src);
3463:
1.241 albertel 3464: if ($target eq 'tex') { &image_replication($src); }
1.122 albertel 3465: my $result;
3466: if ($target eq 'edit') {
3467: $result .=&Apache::edit::tag_start($target,$token);
3468: $result .=&Apache::edit::text_arg('File Spec:','src',$token,70);
3469: $result .=&Apache::edit::end_row();#.&Apache::edit::start_spanning_row();
3470: } elsif ($target eq 'modified') {
3471: my $constructtag=&Apache::edit::get_new_args($token,$parstack,
3472: $safeeval,'src');
3473: if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
3474: }
3475: return $result;
3476: }
3477:
3478: sub end_allow {
3479: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
3480: if ( $target eq 'edit') { return (&Apache::edit::end_table()); }
3481: return '';
3482: }
1.119 www 3483:
1.181 sakharuk 3484: #-- Frames (end tag required)
3485: #-- <frameset>
1.122 albertel 3486: sub start_frameset {
3487: my ($target,$token) = @_;
1.277 foxr 3488: my $currentstring = ''; # Close any pending para.
1.325 albertel 3489: if ($target eq 'web' || $target eq 'webgrade') {
1.328 albertel 3490: $currentstring =
3491: &Apache::loncommon::start_page($Apache::londefdef::title,
3492: $Apache::londefdef::head,
3493: {'add_entries' => $token->[2],
1.404 bisitz 3494: # 'no_title' => 1,
1.328 albertel 3495: 'force_register' => 1,
3496: 'frameset' => 1,});
3497:
1.122 albertel 3498: }
3499: return $currentstring;
3500: }
3501:
3502: sub end_frameset {
3503: my ($target,$token) = @_;
3504: my $currentstring = '';
1.325 albertel 3505: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3506: $currentstring = $token->[2];
3507: }
3508: return $currentstring;
3509: }
1.162 sakharuk 3510:
1.181 sakharuk 3511: #-- <xmp> (end tag required)
1.162 sakharuk 3512: sub start_xmp {
3513: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
3514: my $currentstring = '';
1.325 albertel 3515: if ($target eq 'web' || $target eq 'webgrade') {
1.162 sakharuk 3516: $currentstring .= $token->[4];
3517: } elsif ($target eq 'tex') {
3518: $currentstring .= '\begin{verbatim}';
3519: }
3520: return $currentstring;
3521: }
3522:
3523: sub end_xmp {
3524: my ($target,$token) = @_;
3525: my $currentstring = '';
1.325 albertel 3526: if ($target eq 'web' || $target eq 'webgrade') {
1.162 sakharuk 3527: $currentstring .= $token->[2];
3528: } elsif ($target eq 'tex') {
3529: $currentstring .= '\end{verbatim}';
3530: }
3531: return $currentstring;
3532: }
3533:
1.181 sakharuk 3534: #-- <pre> (end tag required)
1.122 albertel 3535: sub start_pre {
1.126 sakharuk 3536: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 3537: my $currentstring = &end_p(); # close off pending <p>
1.325 albertel 3538: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3539: $currentstring .= $token->[4];
3540: } elsif ($target eq 'tex') {
1.136 sakharuk 3541: $currentstring .= '\begin{verbatim}';
1.319 albertel 3542: &Apache::lonxml::disable_LaTeX_substitutions();
1.122 albertel 3543: }
3544: return $currentstring;
3545: }
3546:
3547: sub end_pre {
3548: my ($target,$token) = @_;
3549: my $currentstring = '';
1.325 albertel 3550: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3551: $currentstring .= $token->[2];
3552: } elsif ($target eq 'tex') {
1.136 sakharuk 3553: $currentstring .= '\end{verbatim}';
1.319 albertel 3554: &Apache::lonxml::enable_LaTeX_substitutions();
1.122 albertel 3555: }
3556: return $currentstring;
3557: }
3558:
3559: #-- <insert>
3560: sub start_insert {
3561: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
3562: my $currentstring = '';
1.325 albertel 3563: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3564: my $display = &Apache::lonxml::get_param('display',$parstack,$safeeval,undef,1);
3565: $currentstring .= '<b>'.$display.'</b>';;
3566: }
3567: return $currentstring;
3568: }
3569:
3570: sub end_insert {
3571: my ($target,$token) = @_;
3572: my $currentstring = '';
1.325 albertel 3573: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3574: $currentstring .= '';
3575: }
3576: return $currentstring;
3577: }
3578:
3579: #-- <externallink>
3580: sub start_externallink {
3581: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
3582: my $currentstring = '';
1.325 albertel 3583: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3584: my $display = &Apache::lonxml::get_param('display',$parstack,$safeeval,undef,1);
3585: $currentstring .= '<b>'.$display.'</b>';;
3586: }
3587: return $currentstring;
3588: }
3589:
3590: sub end_externallink {
3591: my ($target,$token) = @_;
3592: my $currentstring = '';
1.325 albertel 3593: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3594: $currentstring .= '';
3595: }
3596: return $currentstring;
3597: }
3598:
3599: #-- <blankspace heigth="">
3600: sub start_blankspace {
3601: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.279 foxr 3602: my $currentstring = &end_p(); # closes off any unclosed <p>
1.122 albertel 3603: if ($target eq 'tex') {
3604: my $howmuch = &Apache::lonxml::get_param('heigth',$parstack,$safeeval,undef,1);
3605: $currentstring .= '\vskip '.$howmuch.' ';
3606: }
3607: return $currentstring;
3608: }
3609:
3610: sub end_blankspace {
3611: my ($target,$token) = @_;
3612: my $currentstring = '';
3613: if ($target eq 'tex') {
3614: $currentstring .= '';
3615: }
3616: return $currentstring;
3617: }
3618:
1.181 sakharuk 3619: #-- <abbr> tag (end tag required)
1.122 albertel 3620: sub start_abbr {
3621: my ($target,$token) = @_;
3622: my $currentstring = '';
1.325 albertel 3623: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3624: $currentstring = $token->[4];
3625: }
3626: return $currentstring;
3627: }
3628:
3629: sub end_abbr {
3630: my ($target,$token) = @_;
3631: my $currentstring = '';
1.325 albertel 3632: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3633: $currentstring = $token->[2];
3634: }
3635: return $currentstring;
3636: }
3637:
1.181 sakharuk 3638: #-- <acronym> tag (end tag required)
1.122 albertel 3639: sub start_acronym {
3640: my ($target,$token) = @_;
3641: my $currentstring = '';
1.325 albertel 3642: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3643: $currentstring = $token->[4];
3644: }
3645: return $currentstring;
3646: }
3647:
3648: sub end_acronym {
3649: my ($target,$token) = @_;
3650: my $currentstring = '';
1.325 albertel 3651: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3652: $currentstring = $token->[2];
3653: }
3654: return $currentstring;
3655: }
3656:
1.181 sakharuk 3657: #-- <area> tag (end tag forbidden)
1.122 albertel 3658: sub start_area {
3659: my ($target,$token) = @_;
3660: my $currentstring = '';
1.325 albertel 3661: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3662: $currentstring = $token->[4];
3663: }
3664: return $currentstring;
3665: }
3666:
3667: sub end_area {
3668: my ($target,$token) = @_;
3669: my $currentstring = '';
1.325 albertel 3670: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3671: $currentstring = $token->[2];
3672: }
3673: return $currentstring;
3674: }
3675:
1.181 sakharuk 3676: #-- <base> tag (end tag forbidden)
1.122 albertel 3677: sub start_base {
3678: my ($target,$token) = @_;
3679: my $currentstring = '';
1.325 albertel 3680: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3681: $currentstring = $token->[4];
1.161 sakharuk 3682: }
1.122 albertel 3683: return $currentstring;
3684: }
3685:
3686: sub end_base {
3687: my ($target,$token) = @_;
3688: my $currentstring = '';
1.325 albertel 3689: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3690: $currentstring = $token->[2];
3691: }
3692: return $currentstring;
3693: }
3694:
1.181 sakharuk 3695: #-- <bdo> tag (end tag required)
1.122 albertel 3696: sub start_bdo {
3697: my ($target,$token) = @_;
3698: my $currentstring = '';
1.325 albertel 3699: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3700: $currentstring = $token->[4];
3701: }
3702: return $currentstring;
3703: }
3704:
3705: sub end_bdo {
3706: my ($target,$token) = @_;
3707: my $currentstring = '';
1.325 albertel 3708: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3709: $currentstring = $token->[2];
3710: }
3711: return $currentstring;
3712: }
3713:
1.181 sakharuk 3714: #-- <bgsound> tag (end tag optional)
1.122 albertel 3715: sub start_bgsound {
3716: my ($target,$token) = @_;
3717: my $currentstring = '';
1.325 albertel 3718: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3719: $currentstring = $token->[4];
3720: }
3721: return $currentstring;
3722: }
3723:
3724: sub end_bgsound {
3725: my ($target,$token) = @_;
3726: my $currentstring = '';
1.325 albertel 3727: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3728: $currentstring = $token->[2];
3729: }
3730: return $currentstring;
3731: }
3732:
1.181 sakharuk 3733: #-- <blink> tag (end tag required)
1.122 albertel 3734: sub start_blink {
3735: my ($target,$token) = @_;
3736: my $currentstring = '';
1.325 albertel 3737: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3738: $currentstring = $token->[4];
3739: }
3740: return $currentstring;
3741: }
3742:
3743: sub end_blink {
3744: my ($target,$token) = @_;
3745: my $currentstring = '';
1.325 albertel 3746: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3747: $currentstring = $token->[2];
3748: }
3749: return $currentstring;
3750: }
3751:
1.181 sakharuk 3752: #-- <blockquote> tag (end tag required)
1.122 albertel 3753: sub start_blockquote {
3754: my ($target,$token) = @_;
1.279 foxr 3755: my $currentstring = &end_p(); # Close any unclosed <p>
1.325 albertel 3756: if ($target eq 'web' || $target eq 'webgrade') {
1.277 foxr 3757: $currentstring .= $token->[4];
1.122 albertel 3758: }
1.339 foxr 3759: if ($target eq 'tex') {
3760: $currentstring .= '\begin{quote}';
3761: }
1.122 albertel 3762: return $currentstring;
3763: }
3764:
3765: sub end_blockquote {
3766: my ($target,$token) = @_;
3767: my $currentstring = '';
1.325 albertel 3768: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3769: $currentstring = $token->[2];
3770: }
1.339 foxr 3771: if ($target eq 'tex') {
3772: $currentstring = '\end{quote}';
3773: }
1.122 albertel 3774: return $currentstring;
3775: }
3776:
1.181 sakharuk 3777: #-- <button> tag (end tag required)
1.122 albertel 3778: sub start_button {
3779: my ($target,$token) = @_;
3780: my $currentstring = '';
1.325 albertel 3781: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3782: $currentstring = $token->[4];
3783: }
3784: return $currentstring;
3785: }
3786:
3787: sub end_button {
3788: my ($target,$token) = @_;
3789: my $currentstring = '';
1.325 albertel 3790: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3791: $currentstring = $token->[2];
3792: }
3793: return $currentstring;
3794: }
3795:
1.181 sakharuk 3796: #-- <caption> tag (end tag required)
1.122 albertel 3797: sub start_caption {
3798: my ($target,$token) = @_;
3799: my $currentstring = '';
1.325 albertel 3800: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3801: $currentstring = $token->[4];
3802: }
3803: return $currentstring;
3804: }
3805:
3806: sub end_caption {
3807: my ($target,$token) = @_;
3808: my $currentstring = '';
1.325 albertel 3809: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3810: $currentstring = $token->[2];
3811: }
3812: return $currentstring;
3813: }
3814:
1.181 sakharuk 3815: #-- <col> tag (end tag forbdden)
1.122 albertel 3816: sub start_col {
3817: my ($target,$token) = @_;
3818: my $currentstring = '';
1.325 albertel 3819: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3820: $currentstring = $token->[4];
3821: }
3822: return $currentstring;
3823: }
3824:
3825: sub end_col {
3826: my ($target,$token) = @_;
3827: my $currentstring = '';
1.325 albertel 3828: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3829: $currentstring = $token->[2];
3830: }
3831: return $currentstring;
3832: }
3833:
1.181 sakharuk 3834: #-- <colgroup> tag (end tag optional)
1.122 albertel 3835: sub start_colgroup {
3836: my ($target,$token) = @_;
3837: my $currentstring = '';
1.325 albertel 3838: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3839: $currentstring = $token->[4];
3840: }
3841: return $currentstring;
3842: }
3843:
3844: sub end_colgroup {
3845: my ($target,$token) = @_;
3846: my $currentstring = '';
1.325 albertel 3847: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3848: $currentstring = $token->[2];
3849: }
3850: return $currentstring;
3851: }
3852:
1.181 sakharuk 3853: #-- <del> tag (end tag required)
1.122 albertel 3854: sub start_del {
3855: my ($target,$token) = @_;
3856: my $currentstring = '';
1.325 albertel 3857: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3858: $currentstring = $token->[4];
3859: }
3860: return $currentstring;
3861: }
3862:
3863: sub end_del {
3864: my ($target,$token) = @_;
3865: my $currentstring = '';
1.325 albertel 3866: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3867: $currentstring = $token->[2];
3868: }
3869: return $currentstring;
3870: }
3871:
1.181 sakharuk 3872: #-- <fieldset> tag (end tag required)
1.122 albertel 3873: sub start_fieldset {
3874: my ($target,$token) = @_;
3875: my $currentstring = '';
1.325 albertel 3876: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3877: $currentstring = $token->[4];
3878: }
3879: return $currentstring;
3880: }
3881:
3882: sub end_fieldset {
3883: my ($target,$token) = @_;
3884: my $currentstring = '';
1.325 albertel 3885: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3886: $currentstring = $token->[2];
3887: }
3888: return $currentstring;
3889: }
3890:
1.181 sakharuk 3891: #-- <frame> tag (end tag forbidden)
1.122 albertel 3892: sub start_frame {
3893: my ($target,$token) = @_;
3894: my $currentstring = '';
1.325 albertel 3895: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3896: $currentstring = $token->[4];
3897: }
3898: return $currentstring;
3899: }
3900:
3901: sub end_frame {
3902: my ($target,$token) = @_;
3903: my $currentstring = '';
1.325 albertel 3904: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3905: $currentstring = $token->[2];
3906: }
3907: return $currentstring;
3908: }
3909:
1.181 sakharuk 3910: #-- <iframe> tag (end tag required)
1.122 albertel 3911: sub start_iframe {
3912: my ($target,$token) = @_;
3913: my $currentstring = '';
1.325 albertel 3914: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3915: $currentstring = $token->[4];
3916: }
3917: return $currentstring;
3918: }
3919:
3920: sub end_iframe {
3921: my ($target,$token) = @_;
3922: my $currentstring = '';
1.325 albertel 3923: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3924: $currentstring = $token->[2];
3925: }
3926: return $currentstring;
3927: }
3928:
1.181 sakharuk 3929: #-- <ins> tag (end tag required)
1.122 albertel 3930: sub start_ins {
3931: my ($target,$token) = @_;
3932: my $currentstring = '';
1.325 albertel 3933: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3934: $currentstring = $token->[4];
3935: }
3936: return $currentstring;
3937: }
3938:
3939: sub end_ins {
3940: my ($target,$token) = @_;
3941: my $currentstring = '';
1.325 albertel 3942: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3943: $currentstring = $token->[2];
3944: }
3945: return $currentstring;
3946: }
3947:
1.181 sakharuk 3948: #-- <isindex> tag (end tag forbidden)
1.122 albertel 3949: sub start_isindex {
3950: my ($target,$token) = @_;
3951: my $currentstring = '';
1.325 albertel 3952: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3953: $currentstring = $token->[4];
3954: }
3955: return $currentstring;
3956: }
3957:
3958: sub end_isindex {
3959: my ($target,$token) = @_;
3960: my $currentstring = '';
1.325 albertel 3961: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3962: $currentstring = $token->[2];
3963: }
3964: return $currentstring;
3965: }
3966:
1.181 sakharuk 3967: #-- <keygen> tag (end tag forbidden)
1.122 albertel 3968: sub start_keygen {
3969: my ($target,$token) = @_;
3970: my $currentstring = '';
1.325 albertel 3971: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3972: $currentstring = $token->[4];
3973: }
3974: return $currentstring;
3975: }
3976:
3977: sub end_keygen {
3978: my ($target,$token) = @_;
3979: my $currentstring = '';
1.325 albertel 3980: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3981: $currentstring = $token->[2];
3982: }
3983: return $currentstring;
3984: }
3985:
3986: #-- <label> tag
3987: sub start_label {
3988: my ($target,$token) = @_;
3989: my $currentstring = '';
1.325 albertel 3990: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 3991: $currentstring = $token->[4];
3992: }
3993: return $currentstring;
3994: }
3995:
3996: sub end_label {
3997: my ($target,$token) = @_;
3998: my $currentstring = '';
1.325 albertel 3999: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4000: $currentstring = $token->[2];
4001: }
4002: return $currentstring;
4003: }
4004:
1.181 sakharuk 4005: #-- <layer> tag (end tag required)
1.122 albertel 4006: sub start_layer {
4007: my ($target,$token) = @_;
4008: my $currentstring = '';
1.325 albertel 4009: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4010: $currentstring = $token->[4];
4011: }
4012: return $currentstring;
4013: }
4014:
4015: sub end_layer {
4016: my ($target,$token) = @_;
4017: my $currentstring = '';
1.325 albertel 4018: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4019: $currentstring = $token->[2];
4020: }
4021: return $currentstring;
4022: }
4023:
1.181 sakharuk 4024: #-- <legend> tag (end tag required)
1.122 albertel 4025: sub start_legend {
4026: my ($target,$token) = @_;
4027: my $currentstring = '';
1.325 albertel 4028: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4029: $currentstring = $token->[4];
4030: }
4031: return $currentstring;
4032: }
4033:
4034: sub end_legend {
4035: my ($target,$token) = @_;
4036: my $currentstring = '';
1.325 albertel 4037: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4038: $currentstring = $token->[2];
4039: }
4040: return $currentstring;
4041: }
4042:
1.181 sakharuk 4043: #-- <link> tag (end tag forbidden)
1.122 albertel 4044: sub start_link {
1.292 albertel 4045: my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
1.122 albertel 4046: my $currentstring = '';
1.324 albertel 4047: if ($target eq 'web' || $target eq 'webgrade') {
1.291 albertel 4048: my $href=&Apache::lonxml::get_param('href',$parstack,$safeeval,
4049: undef,1);
4050: &Apache::lonxml::extlink($href);
1.122 albertel 4051: $currentstring = $token->[4];
4052: }
4053: return $currentstring;
4054: }
4055:
4056: sub end_link {
4057: my ($target,$token) = @_;
4058: my $currentstring = '';
1.325 albertel 4059: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4060: $currentstring = $token->[2];
4061: }
4062: return $currentstring;
4063: }
4064:
1.181 sakharuk 4065: #-- <marquee> tag (end tag optional)
1.122 albertel 4066: sub start_marquee {
4067: my ($target,$token) = @_;
4068: my $currentstring = '';
1.325 albertel 4069: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4070: $currentstring = $token->[4];
4071: }
4072: return $currentstring;
4073: }
4074:
4075: sub end_marquee {
4076: my ($target,$token) = @_;
4077: my $currentstring = '';
1.325 albertel 4078: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4079: $currentstring = $token->[2];
4080: }
4081: return $currentstring;
4082: }
4083:
1.179 sakharuk 4084: #-- <multicol> tag (end tag required)
4085: sub start_multicol {
1.122 albertel 4086: my ($target,$token) = @_;
1.279 foxr 4087: my $currentstring = &end_p(); # Close any pending <p>
1.325 albertel 4088: if ($target eq 'web' || $target eq 'webgrade') {
1.277 foxr 4089: $currentstring .= $token->[4];
1.122 albertel 4090: }
4091: return $currentstring;
4092: }
4093:
1.179 sakharuk 4094: sub end_multicol {
1.122 albertel 4095: my ($target,$token) = @_;
4096: my $currentstring = '';
1.325 albertel 4097: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4098: $currentstring = $token->[2];
4099: }
4100: return $currentstring;
4101: }
4102:
1.179 sakharuk 4103: #-- <nobr> tag (end tag required)
1.122 albertel 4104: sub start_nobr {
4105: my ($target,$token) = @_;
4106: my $currentstring = '';
1.325 albertel 4107: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4108: $currentstring = $token->[4];
1.179 sakharuk 4109: } elsif ($target eq 'tex') {
4110: $currentstring='\mbox{';
4111: }
1.122 albertel 4112: return $currentstring;
4113: }
4114:
4115: sub end_nobr {
4116: my ($target,$token) = @_;
4117: my $currentstring = '';
1.325 albertel 4118: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4119: $currentstring = $token->[2];
1.179 sakharuk 4120: } elsif ($target eq 'tex') {
4121: $currentstring='}';
4122: }
1.122 albertel 4123: return $currentstring;
4124: }
4125:
1.179 sakharuk 4126: #-- <noembed> tag (end tag required)
1.122 albertel 4127: sub start_noembed {
4128: my ($target,$token) = @_;
4129: my $currentstring = '';
1.325 albertel 4130: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4131: $currentstring = $token->[4];
4132: }
4133: return $currentstring;
4134: }
4135:
4136: sub end_noembed {
4137: my ($target,$token) = @_;
4138: my $currentstring = '';
1.325 albertel 4139: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4140: $currentstring = $token->[2];
4141: }
4142: return $currentstring;
4143: }
4144:
1.179 sakharuk 4145: #-- <noframes> tag (end tag required)
1.122 albertel 4146: sub start_noframes {
4147: my ($target,$token) = @_;
4148: my $currentstring = '';
1.325 albertel 4149: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4150: $currentstring = $token->[4];
4151: }
4152: return $currentstring;
4153: }
4154:
4155: sub end_noframes {
4156: my ($target,$token) = @_;
4157: my $currentstring = '';
1.325 albertel 4158: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4159: $currentstring = $token->[2];
4160: }
4161: return $currentstring;
4162: }
4163:
1.179 sakharuk 4164: #-- <nolayer> tag (end tag required)
1.122 albertel 4165: sub start_nolayer {
4166: my ($target,$token) = @_;
4167: my $currentstring = '';
1.325 albertel 4168: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4169: $currentstring = $token->[4];
4170: }
4171: return $currentstring;
4172: }
4173:
4174: sub end_nolayer {
4175: my ($target,$token) = @_;
4176: my $currentstring = '';
1.325 albertel 4177: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4178: $currentstring = $token->[2];
4179: }
4180: return $currentstring;
4181: }
4182:
1.179 sakharuk 4183: #-- <noscript> tag (end tag required)
1.122 albertel 4184: sub start_noscript {
4185: my ($target,$token) = @_;
4186: my $currentstring = '';
1.325 albertel 4187: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4188: $currentstring = $token->[4];
4189: }
4190: return $currentstring;
4191: }
4192:
4193: sub end_noscript {
4194: my ($target,$token) = @_;
4195: my $currentstring = '';
1.325 albertel 4196: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4197: $currentstring = $token->[2];
4198: }
4199: return $currentstring;
4200: }
4201:
1.179 sakharuk 4202: #-- <object> tag (end tag required)
1.122 albertel 4203: sub start_object {
4204: my ($target,$token) = @_;
4205: my $currentstring = '';
1.325 albertel 4206: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4207: $currentstring = $token->[4];
4208: }
4209: return $currentstring;
4210: }
4211:
4212: sub end_object {
4213: my ($target,$token) = @_;
4214: my $currentstring = '';
1.325 albertel 4215: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4216: $currentstring = $token->[2];
4217: }
4218: return $currentstring;
4219: }
4220:
1.179 sakharuk 4221: #-- <optgroup> tag (end tag required)
1.122 albertel 4222: sub start_optgroup {
4223: my ($target,$token) = @_;
4224: my $currentstring = '';
1.325 albertel 4225: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4226: $currentstring = $token->[4];
4227: }
4228: return $currentstring;
4229: }
4230:
4231: sub end_optgroup {
4232: my ($target,$token) = @_;
4233: my $currentstring = '';
1.325 albertel 4234: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4235: $currentstring = $token->[2];
4236: }
4237: return $currentstring;
4238: }
4239:
1.179 sakharuk 4240: #-- <samp> tag (end tag required)
1.122 albertel 4241: sub start_samp {
4242: my ($target,$token) = @_;
4243: my $currentstring = '';
1.325 albertel 4244: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4245: $currentstring = $token->[4];
1.179 sakharuk 4246: } elsif ($target eq 'tex') {
4247: $currentstring='\texttt{';
4248: }
1.122 albertel 4249: return $currentstring;
4250: }
4251:
4252: sub end_samp {
4253: my ($target,$token) = @_;
4254: my $currentstring = '';
1.325 albertel 4255: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4256: $currentstring = $token->[2];
1.179 sakharuk 4257: } elsif ($target eq 'tex') {
4258: $currentstring='}';
4259: }
1.122 albertel 4260: return $currentstring;
4261: }
4262:
4263: #-- <server> tag
4264: sub start_server {
4265: my ($target,$token) = @_;
4266: my $currentstring = '';
1.325 albertel 4267: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4268: $currentstring = $token->[4];
4269: }
4270: return $currentstring;
4271: }
4272:
4273: sub end_server {
4274: my ($target,$token) = @_;
4275: my $currentstring = '';
1.325 albertel 4276: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4277: $currentstring = $token->[2];
4278: }
4279: return $currentstring;
4280: }
4281:
1.179 sakharuk 4282: #-- <spacer> tag (end tag forbidden)
1.122 albertel 4283: sub start_spacer {
4284: my ($target,$token) = @_;
1.279 foxr 4285: my $currentstring = &end_p(); # Close off any open <p> tag.
1.325 albertel 4286: if ($target eq 'web' || $target eq 'webgrade') {
1.277 foxr 4287: $currentstring .= $token->[4];
1.122 albertel 4288: }
4289: return $currentstring;
4290: }
4291:
4292: sub end_spacer {
4293: my ($target,$token) = @_;
4294: my $currentstring = '';
1.325 albertel 4295: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4296: $currentstring = $token->[2];
4297: }
4298: return $currentstring;
4299: }
4300:
1.179 sakharuk 4301: #-- <span> tag (end tag required)
1.122 albertel 4302: sub start_span {
4303: my ($target,$token) = @_;
4304: my $currentstring = '';
1.325 albertel 4305: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4306: $currentstring = $token->[4];
4307: }
4308: return $currentstring;
4309: }
4310:
4311: sub end_span {
4312: my ($target,$token) = @_;
4313: my $currentstring = '';
1.325 albertel 4314: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4315: $currentstring = $token->[2];
4316: }
4317: return $currentstring;
4318: }
4319:
1.179 sakharuk 4320: #-- <tbody> tag (end tag optional)
1.122 albertel 4321: sub start_tbody {
4322: my ($target,$token) = @_;
4323: my $currentstring = '';
1.325 albertel 4324: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4325: $currentstring = $token->[4];
4326: }
4327: return $currentstring;
4328: }
4329:
4330: sub end_tbody {
4331: my ($target,$token) = @_;
4332: my $currentstring = '';
1.325 albertel 4333: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4334: $currentstring = $token->[2];
4335: }
4336: return $currentstring;
4337: }
4338:
1.166 sakharuk 4339: #-- <tfoot> tag (end tag optional)
1.122 albertel 4340: sub start_tfoot {
4341: my ($target,$token) = @_;
4342: my $currentstring = '';
1.325 albertel 4343: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4344: $currentstring = $token->[4];
4345: }
4346: return $currentstring;
4347: }
4348:
4349: sub end_tfoot {
4350: my ($target,$token) = @_;
4351: my $currentstring = '';
1.325 albertel 4352: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4353: $currentstring = $token->[2];
4354: }
4355: return $currentstring;
4356: }
4357:
1.166 sakharuk 4358: #-- <thead> tag (end tag optional)
1.122 albertel 4359: sub start_thead {
4360: my ($target,$token) = @_;
4361: my $currentstring = '';
1.325 albertel 4362: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4363: $currentstring = $token->[4];
4364: }
4365: return $currentstring;
4366: }
1.10 www 4367:
1.122 albertel 4368: sub end_thead {
4369: my ($target,$token) = @_;
4370: my $currentstring = '';
1.325 albertel 4371: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4372: $currentstring = $token->[2];
4373: }
4374: return $currentstring;
4375: }
1.119 www 4376:
1.122 albertel 4377: #-- <var> tag
4378: sub start_var {
1.44 sakharuk 4379: my ($target,$token) = @_;
4380: my $currentstring = '';
1.325 albertel 4381: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4382: $currentstring = $token->[4];
1.163 sakharuk 4383: } elsif ($target eq 'tex') {
4384: $currentstring = '\textit{';
4385: }
1.44 sakharuk 4386: return $currentstring;
4387: }
1.10 www 4388:
1.122 albertel 4389: sub end_var {
4390: my ($target,$token) = @_;
1.44 sakharuk 4391: my $currentstring = '';
1.325 albertel 4392: if ($target eq 'web' || $target eq 'webgrade') {
1.163 sakharuk 4393: $currentstring = $token->[2];
4394: } elsif ($target eq 'tex') {
4395: $currentstring = '}';
1.44 sakharuk 4396: }
4397: return $currentstring;
4398: }
1.119 www 4399:
1.163 sakharuk 4400: #-- <wbr> tag (end tag forbidden)
1.122 albertel 4401: sub start_wbr {
4402: my ($target,$token) = @_;
4403: my $currentstring = '';
1.325 albertel 4404: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4405: $currentstring = $token->[4];
4406: }
4407: return $currentstring;
1.98 albertel 4408: }
4409:
1.122 albertel 4410: sub end_wbr {
4411: my ($target,$token) = @_;
4412: my $currentstring = '';
1.325 albertel 4413: if ($target eq 'web' || $target eq 'webgrade') {
1.122 albertel 4414: $currentstring = $token->[2];
4415: }
4416: return $currentstring;
1.98 albertel 4417: }
1.134 sakharuk 4418:
4419: #-- <hideweboutput> tag
4420: sub start_hideweboutput {
4421: my ($target,$token) = @_;
1.325 albertel 4422: if ($target eq 'web' || $target eq 'webgrade') {
1.134 sakharuk 4423: &Apache::lonxml::startredirection();
4424: }
4425: return '';
4426: }
4427:
4428: sub end_hideweboutput {
4429: my ($target,$token) = @_;
4430: my $currentstring = '';
1.325 albertel 4431: if ($target eq 'web' || $target eq 'webgrade') {
1.134 sakharuk 4432: $currentstring = &Apache::lonxml::endredirection();
4433: }
4434: return '';
4435: }
4436:
1.94 sakharuk 4437:
4438: sub image_replication {
4439: my $src = shift;
1.187 albertel 4440: if (not -e $src) { &Apache::lonnet::repcopy($src); }
4441: #replicates eps or ps
4442: my $epssrc = my $pssrc = $src;
4443: $epssrc =~ s/\.(gif|jpg|jpeg|png)$/.eps/i;
4444: $pssrc =~ s/\.(gif|jpg|jpeg|png)$/.ps/i;
4445: if (not -e $epssrc && not -e $pssrc) {
4446: my $result=&Apache::lonnet::repcopy($epssrc);
1.264 raeburn 4447: if ($result ne 'ok') { &Apache::lonnet::repcopy($pssrc); }
1.94 sakharuk 4448: }
4449: return '';
1.195 sakharuk 4450: }
1.397 jms 4451:
4452:
4453:
1.275 foxr 4454: sub resize_image {
4455: my ($height_param, $width_param, $scaling,
4456: $parstack, $safeeval, $depth, $cis) = @_;
4457:
4458: # First apply the scaling...
1.271 foxr 4459:
1.275 foxr 4460: $height_param = $height_param * $scaling;
4461: $width_param = $width_param * $scaling;
1.261 foxr 4462:
1.197 sakharuk 4463: #do we have any specified LaTeX size of the picture?
1.261 foxr 4464: my $toget='TeXwidth';
4465: if ($cis) {
4466: $toget=lc($toget);
4467: }
1.256 albertel 4468: my $TeXwidth = &Apache::lonxml::get_param($toget,$parstack,
4469: $safeeval,$depth,$cis);
4470: $toget='TeXheight'; if ($cis) { $toget=lc($toget); }
4471: my $TeXheight = &Apache::lonxml::get_param($toget,$parstack,
4472: $safeeval,$depth,$cis);
1.197 sakharuk 4473: #do we have any specified web size of the picture?
4474: my $width = &Apache::lonxml::get_param('width',$parstack,$safeeval,
1.256 albertel 4475: $depth,1);
4476: if ($TeXwidth) {
1.252 matthew 4477: my $old_width_param=$width_param;
1.197 sakharuk 4478: if ($TeXwidth=~/(\d+)\s*\%/) {
1.267 albertel 4479: $width_param = $1*$env{'form.textwidth'}/100;
1.197 sakharuk 4480: } else {
4481: $width_param = $TeXwidth;
4482: }
1.266 albertel 4483: if ($TeXheight) {
4484: $height_param = $TeXheight;
4485: } elsif ($old_width_param) {
4486: $height_param=$TeXwidth/$old_width_param*$height_param;
4487: }
1.256 albertel 4488: } elsif ($TeXheight) {
1.248 foxr 4489: $height_param = $TeXheight;
1.266 albertel 4490: if ($height_param) {
4491: $width_param = $TeXheight/$height_param*$width_param;
4492: }
1.256 albertel 4493: } elsif ($width) {
1.252 matthew 4494: my $old_width_param=$width_param;
1.256 albertel 4495: $width_param = $width*$scaling;
1.266 albertel 4496: if ($old_width_param) {
4497: $height_param=$width_param/$old_width_param*$height_param;
4498: }
1.252 matthew 4499: }
1.267 albertel 4500: if ($width_param > $env{'form.textwidth'}) {
1.252 matthew 4501: my $old_width_param=$width_param;
1.267 albertel 4502: $width_param =0.95*$env{'form.textwidth'};
1.266 albertel 4503: if ($old_width_param) {
4504: $height_param=$width_param/$old_width_param*$height_param;
4505: }
1.197 sakharuk 4506: }
1.275 foxr 4507:
4508: return ($height_param, $width_param);
4509: }
4510:
4511: sub image_size {
4512: my ($src,$scaling,$parstack,$safeeval,$depth,$cis)=@_;
4513:
4514: #size of image from gif/jpg/jpeg/png
4515: my $ressrc=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$src);
4516: if (-e $ressrc) {
4517: $src = $ressrc;
4518: }
4519: my $image = Image::Magick->new;
4520: my $current_figure = $image->Read($src);
4521: my $width_param = $image->Get('width');
4522: my $height_param = $image->Get('height');
4523: &Apache::lonxml::debug("Image magick says: $src : Height = $height_param width = $width_param");
4524: undef($image);
4525:
4526: ($height_param, $width_param) = &resize_image($height_param, $width_param,
4527: $scaling, $parstack, $safeeval,
4528: $depth, $cis);
4529:
1.248 foxr 4530: return ($height_param, $width_param);
4531: }
4532:
4533: sub image_width {
4534: my ($height, $width) = &image_size(@_);
4535: return $width;
4536: }
4537: # Not yet 100% sure this is correct in all circumstances..
4538: # due to my uncertainty about mods to image_size.
4539: #
4540: sub image_height {
4541: my ($height, $width) = &image_size(@_);
4542: return $height;
1.197 sakharuk 4543: }
4544:
1.256 albertel 4545: sub get_eps_image {
4546: my ($src)=@_;
1.261 foxr 4547: my $orig_src=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1], $src);
1.285 foxr 4548:
4549: # In order to prevent the substitution of the alt text, we need to
4550: # be sure the orig_src file is on system now so:
4551:
4552: if (! -e $orig_src) {
4553: &Apache::lonnet::repcopy($orig_src); # Failure is not completely fatal.
4554: }
1.275 foxr 4555: &Apache::lonxml::debug("get_eps_image: Original image: $orig_src");
1.390 foxr 4556: my ($spath, $sname, $sext) = &fileparse($src, qr/\.(bmp|gif|png|jpg|jpeg)/i);
4557: $src=~s/\.(bmp|gif|png|jpg|jpeg)$/\.eps/i;
1.256 albertel 4558: $src=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$src);
1.275 foxr 4559: &Apache::lonxml::debug("Filelocation gives: $src");
1.256 albertel 4560: if (! -e $src) {
1.261 foxr 4561: &Apache::lonxml::debug("$src does not exist");
1.264 raeburn 4562: if (&Apache::lonnet::repcopy($src) ne 'ok' ) {
1.261 foxr 4563: &Apache::lonxml::debug("Repcopy of $src failed (1)");
1.256 albertel 4564: #if replication failed try to find ps file
4565: $src=~s/\.eps$/\.ps/;
1.261 foxr 4566: &Apache::lonxml::debug("Now looking for $src");
1.270 foxr 4567: #if no ps file try to replicate it.
4568: my $didrepcopy = &Apache::lonnet::repcopy($src);
4569: &Apache::lonxml::debug("repcopy of $src ... $didrepcopy");
4570: if ( (not -e $src) ||
4571: ($didrepcopy ne 'ok')) {
1.261 foxr 4572: &Apache::lonxml::debug("Failed to find or replicate $src");
4573:
1.256 albertel 4574: #if replication failed try to produce eps file dynamically
4575: $src=~s/\.ps$/\.eps/;
4576: my $temp_file;
1.267 albertel 4577: open(FILE,">>/home/httpd/prtspool/$env{'user.name'}_$env{'user.domain'}_printout.dat");
1.256 albertel 4578: my $newsrc=$orig_src;
4579: $newsrc =~ s|(.*)/res/|/home/httpd/html/res/|;
1.275 foxr 4580: &Apache::lonxml::debug("queueing $newsrc for dynamic eps production.");
1.344 albertel 4581: print FILE ("$newsrc\n");
4582: close(FILE);
1.256 albertel 4583: $src=~s|/home/httpd/html/res|/home/httpd/prtspool|;
4584: $src=~s|/home/([^/]*)/public_html/|/home/httpd/prtspool/$1/|;
1.283 albertel 4585: if ($sext ne "") { # Put the ext. back in to uniquify.
4586: $src =~ s/\.eps$/$sext.eps/;
4587: }
1.341 foxr 4588:
1.256 albertel 4589: }
1.343 foxr 4590:
1.256 albertel 4591: }
1.341 foxr 4592: } else {
4593: # If the postscript file has spaces in its name,
4594: # LaTeX will gratuitiously vomit. Therefore
4595: # queue such files for copy with " " replaced by "_".
4596: # printout.pm will know them by their .ps or .eps extensions.
4597: my $newsrc = $orig_src;
4598: $newsrc =~ s|(.*)/res/|/home/httpd/html/res/|;
4599: open(FILE,">>/home/httpd/prtspool/$env{'user.name'}_$env{'user.domain'}_printout.dat");
1.343 foxr 4600: print FILE "$src\n";
1.341 foxr 4601: close FILE;
4602: $src=~s|/home/httpd/html/res|/home/httpd/prtspool|;
4603: $src=~s|/home/([^/]*)/public_html/|/home/httpd/prtspool/$1/|;
1.256 albertel 4604: }
4605: my ($path,$file)=($src=~m|(.*)/([^/]*)$|);
1.344 albertel 4606: $path =~ s/ /\_/g;
1.343 foxr 4607: $file =~ s/ /\_/g;
1.261 foxr 4608: &Apache::lonxml::debug("get_eps_image returning: $path / $file<BR />");
1.256 albertel 4609: return ($path.'/',$file);
4610: }
4611:
1.195 sakharuk 4612: sub eps_generation {
4613: my ($src,$file,$width_param) = @_;
1.267 albertel 4614: my $filename = "/home/httpd/prtspool/$env{'user.name'}_$env{'user.domain'}_printout.dat";
1.195 sakharuk 4615: my $temp_file = Apache::File->new('>>'.$filename);
4616: print $temp_file "$src\n";
4617: my $newsrc = $src;
1.390 foxr 4618: $newsrc =~ s/(\.bmp|\.gif|\.jpg|\.jpeg)$/\.eps/i;
1.345 albertel 4619: $newsrc=~s{/home/httpd/html/res}{};
4620: $newsrc=~s{/home/($LONCAPA::username_re)/public_html/}{/$1/};
4621: $newsrc=~s{/\./}{/};
4622: $newsrc=~s{/([^/]+)\.(ps|eps)}{/};
4623: if ($newsrc=~m{/home/httpd/lonUsers/}) {
4624: $newsrc=~s{/home/httpd/lonUsers}{};
4625: $newsrc=~s{/($LONCAPA::domain_re)/./././}{/$1/};
1.213 sakharuk 4626: }
1.345 albertel 4627: if ($newsrc=~m{/userfiles/}) {
1.239 sakharuk 4628: return ' \graphicspath{{'.$newsrc.'}}\includegraphics[width='.$width_param.' mm]{'.$file.'} ';
4629: } else {
4630: return ' \graphicspath{{/home/httpd/prtspool'.$newsrc.'}}\includegraphics[width='.$width_param.' mm]{'.$file.'} ';
4631: }
1.197 sakharuk 4632: }
4633:
4634: sub file_path {
4635: my $src=shift;
4636: my ($file,$path);
4637: if ($src =~ m!(.*)/([^/]*)$!) {
4638: $file = $2;
4639: $path = $1.'/';
4640: }
4641: return $file,$path;
1.126 sakharuk 4642: }
1.397 jms 4643:
4644:
1.126 sakharuk 4645: sub recalc {
4646: my $argument = shift;
4647: if (not $argument=~/(mm|cm|in|pc|pt)/) {return $argument.' mm';}
1.132 sakharuk 4648: $argument=~/\s*(\d+\.?\d*)\s*(mm|cm|in|pc|pt)/;
1.126 sakharuk 4649: my $value=$1;
4650: my $units=$2;
4651: if ($units eq 'cm') {
4652: $value*=10;
4653: } elsif ($units eq 'in') {
4654: $value*=25.4;
4655: } elsif ($units eq 'pc') {
4656: $value*=(25.4*12/72.27);
4657: } elsif ($units eq 'pt') {
4658: $value*=(25.4/72.27);
4659: }
4660: return $value.' mm';
1.94 sakharuk 4661: }
1.184 sakharuk 4662:
4663: sub LATEX_length {
4664: my $garbage=shift;
1.206 sakharuk 4665: $garbage=~s/^\s+$//;
4666: $garbage=~s/^\s+(\S.*)/$1/;#space before
4667: $garbage=~s/(.*\S)\s+$/$1/;#space after
4668: $garbage=~s/(\s)+/$1/;#only one space
4669: $garbage=~s/(\\begin{([^\}]+)}|\\end{([^\}]+)})//g;#remove LaTeX \begin{...} and \end{...}
4670: $garbage=~s/(\$\_\{|\$\_|\$\^{|\$\^|\}\$)//g;#remove $_{,$_,$^{,$^,}$
4671: $garbage=~s/([^\\])\$/$1/g;#$
4672: $garbage=~s/(\\ensuremath\{\_\{|\\ensuremath\{\_|\\ensuremath\{\^{|\\ensuremath\{\^|\})//g;#remove \ensuremath{...}
4673: $garbage=~s/(\\alpha|\\beta|\\gamma|\\delta|\\epsilon|\\verepsilon|\\zeta|\\eta|\\theta|\\vartheta|\\iota|\\kappa|\\lambda|\\mu|\\nu|\\xi|\\pi|\\varpi|\\rho|\\varrho|\\sigma|\\varsigma|\\tau|\\upsilon|\\phi|\\varphi|\\chi|\\psi|\\omega|\\Gamma|\\Delta|\\Theta|\\Lambda|\\Xi|\\Pi|\\Sigma|\\Upsilon|\\Phi|\\Psi|\\Omega)/1/g;
1.184 sakharuk 4674: $garbage=~s/(\\pm|\\mp|\\times|\\div|\\cdot|\\ast|\\star|\\dagger|\\ddagger|\\amalg|\\cap|\\cup|\\uplus|\\sqcap|\\sqcup|\\vee|\\wedge|\\oplus|\\ominus|\\otimes|\\circ|\\bullet|\\diamond|\\lhd|\\rhd|\\unlhd|\\unrhd|\\oslash|\\odot|\\bigcirc|\\Box|\\Diamond|\\bigtriangleup|\\bigtriangledown|\\triangleleft|\\triangleright|\\setminus|\\wr)/1/g;
4675: $garbage=~s/(\\le|\\ll|\\leq|\\ge|\\geq|\\gg|\\neq|\\doreq|\\sim|\\simeq|\\subset|\\subseteq|\\sqsubset|\\sqsubseteq|\\in|\\vdash|\\models|\\supset|\\supseteq|\\sqsupset|\\sqsupseteq|\\ni|\\dash|\\perp|\\approx|\\cong|\\equiv|\\propto|\\prec|\\preceq|\\parallel|\\asymp|\\smile|\\frown|\\bowtie|\\succ|\\succeq|\\mid)/1/g;
4676: $garbage=~s/(\\not<|\\\\not\\le|\\not\\prec|\\not\\preceq|\\not\\subset|\\not\\subseteq|\\not\\sqsubseteq|\\not\\in|\\not>|\\not\\ge|\\not\\succ|\\notsucceq|\\not\\supset|\\notsupseteq|\\not\\sqsupseteq|\\notin|\\not=|\\not\\equiv|\\not\\sim|\\not\\simeq|\\not\\approx|\\not\\cong|\\not\\asymp)/1/g;
1.206 sakharuk 4677: $garbage=~s/(\\leftarrow|\\gets|\\Leftarrow|\\rightarrow|\\to|\\Rightarrow|\\leftrightarrow|\\Leftrightarrow|\\mapsto|\\hookleftarrow|\\leftharpoonup|\\leftkarpoondown|\\rightleftharpoons|\\longleftarrow|\\Longleftarrow|\\longrightarrow|\\Longrightarrow|\\longleftrightarrow|\\Longleftrightarrow|\\longmapsto|\\hookrightarrow|\\rightharpoonup|\\rightharpoondown|\\uparrow|\\Uparrow|\\downarrow|\\Downarrow|\\updownarrow|\\Updownarrow|\\nearrow|\\searrow|\\swarrow|\\nwarrow)/11/g;
4678: $garbage=~s/(\\aleph|\\hbar|\\imath|\\jmath|\\ell|\\wp|\\Re|\\Im|\\mho|\\prime|\\emptyset|\\nabla|\\surd|\\partial|\\top|\\bot|\\vdash|\\dashv|\\forall|\\exists|\\neg|\\flat|\\natural|\\sharp|\\\||\\angle|\\backslash|\\Box|\\Diamond|\\triangle|\\clubsuit|\\diamondsuit|\\heartsuit|\\spadesuit|\\Join|\\infty)/11/g;
4679: $garbage=~s/(\\hat{([^}]+)}|\\check{([^}]+)}|\\dot{([^}]+)}|\\breve{([^}]+)}|\\acute{([^}]+)}|\\ddot{([^}]+)}|\\grave{([^}]+)}|\\tilde{([^}]+)}|\\mathring{([^}]+)}|\\bar{([^}]+)}|\\vec{([^}]+)})/$1/g;
4680: #remove some other LaTeX command
4681: $garbage=~s|\\(\w+)\\|\\|g;
4682: $garbage=~s|\\(\w+)(\s*)|$2|g;
4683: $garbage=~s|\+|11|g;
1.184 sakharuk 4684: my $value=length($garbage);
4685: return $value;
4686: }
4687:
1.397 jms 4688:
1.353 foxr 4689: sub align_latex_image {
4690: my ($align, $latex_rendering, $image, $width, $height) = @_;
1.354 foxr 4691: my $currentstring; # The 1/2 wrapped image.
4692: my $closure; # The closure of the wrappage.
1.379 albertel 4693:
4694: # if it's none just return it back
4695: if ($latex_rendering eq 'none') {
4696: return ($image,'');
4697: }
4698:
1.353 foxr 4699: # If there's an alignment specification we need to honor it here.
4700: # For the horizontal alignments, we will also honor the
4701: # value of the latex specfication. The default is parbox,
4702: # and that's used for illegal values too.
4703: #
4704: # Even though we set a default alignment value, the user
4705: # could have given us an illegal value. In that case we
4706: # just use the default alignment of bottom..
1.415 foxr 4707: $currentstring = '';
1.353 foxr 4708: if ($align eq "top") {
1.354 foxr 4709: $currentstring .= '\raisebox{-'.$height.'mm}{'.$image;
4710: $closure = '}';
1.353 foxr 4711: } elsif (($align eq "center") || ($align eq "middle")) { # Being kind
4712: my $offset = $height/2;
1.354 foxr 4713: $currentstring .= '\raisebox{-'.$offset.'mm}{'.$image;
4714: $closure = '}';
1.353 foxr 4715: } elsif ($align eq "left") {
4716: if ($latex_rendering eq "parpic") {
1.354 foxr 4717: $currentstring .= '\parpic[l]{'.$image;
4718: $closure = '}';
1.353 foxr 4719: } elsif ($latex_rendering eq "parbox") {
1.354 foxr 4720: $currentstring .= '\begin{minipage}[l]{'.$width.'mm}'
4721: .$image;
4722: $closure = '\end{minipage}';
1.353 foxr 4723: } elsif ($latex_rendering eq "wrapfigure"
4724: || $latex_rendering ne 'none') { # wrapfig render
1.354 foxr 4725: $currentstring .=
1.353 foxr 4726: '\begin{wrapfigure}{l}{'.$width.'mm}'
1.354 foxr 4727: .'\scalebox{1.0}{'.$image;
4728: $closure = '}\end{wrapfigure}';
1.353 foxr 4729: }
4730: } elsif ($align eq "right") {
4731: if ($latex_rendering eq "parpic") {
1.354 foxr 4732: $currentstring .= '\parpic[r]{'.$image;
4733: $closure = '}';
1.353 foxr 4734: } elsif ($latex_rendering eq "parbox") {
1.354 foxr 4735: $currentstring .= '\begin{minipage}[r]{'.$width.'mm}'
4736: .$image;
4737: $closure = '\end{minipage}';
1.353 foxr 4738: } elsif ($latex_rendering eq "wrapfigure"
4739: || $latex_rendering ne 'none') { # wrapfig render
1.354 foxr 4740: $currentstring .=
1.353 foxr 4741: '\begin{wrapfigure}{r}{'.$width.'mm}'
1.354 foxr 4742: .'\scalebox{1.0}{'.$image;
4743: $closure = '}\end{wrapfigure}';
1.353 foxr 4744: }
4745: } else { # Bottom is also default.
4746: # $currentstring = '\raisebox{'.$height.'mm}{'.$image.'}';
1.354 foxr 4747: $currentstring .= "{$image";
4748: $closure = '}';
1.353 foxr 4749: }
1.354 foxr 4750: return ($currentstring, $closure);
1.353 foxr 4751: }
1.184 sakharuk 4752:
1.397 jms 4753:
1.287 foxr 4754: sub is_inside_of {
4755: my ($tagstack, $tag) = @_;
4756: my @stack = @$tagstack;
4757: for (my $i = ($#stack - 1); $i >= 0; $i--) {
4758: if ($stack[$i] eq $tag) {
4759: return 1;
4760: }
4761: }
4762: return 0;
4763: }
1.184 sakharuk 4764:
1.94 sakharuk 4765:
1.399 foxr 4766: #
4767: # This sub provides the typical LaTeX prefix matter for tex output:
4768: #
1.414 raeburn 4769: sub latex_header {
1.402 foxr 4770: my ($mode) = @_;
1.399 foxr 4771: my $currentstring = '';
4772:
4773: $currentstring .=
1.402 foxr 4774: "\n% &Apache::lonxml::londefdef \n" .
1.399 foxr 4775: '\documentclass[letterpaper,twoside]{article}\raggedbottom';
4776: if (($env{'form.latex_type'}=~'batchmode') ||
1.402 foxr 4777: (!$env{'request.role.adv'}) ||
4778: ($mode eq 'batchmode')) {$currentstring .='\batchmode';}
1.399 foxr 4779: $currentstring .= '\newcommand{\keephidden}[1]{}'.
4780: '\renewcommand{\deg}{$^{\circ}$}'.
4781: '\usepackage{multirow}'.
4782: '\usepackage{longtable}'.
4783: '\usepackage{textcomp}'.
4784: '\usepackage{makeidx}'.
4785: '\usepackage[dvips]{graphicx}'.
4786: '\usepackage{wrapfig}'.
4787: '\usepackage{picins}'.
4788: '\usepackage[T1]{fontenc}'."\n".
4789: '\usepackage{lmodern}'."\n".
4790: '\usepackage[postscript]{ucs}'."\n".
4791: '\usepackage[utf8x]{inputenc}'."\n".
4792: '\usepackage{pifont}' ."\n".
4793: '\usepackage{latexsym}'."\n".
4794: '\usepackage{epsfig}'.
4795: "\\usepackage{xtab}\n".
4796: "\\usepackage{tabularx}\n".
4797: "\\usepackage{booktabs}\n".
4798: "\\usepackage{array}\n".
4799: "\\usepackage{colortbl}\n".
4800: "\\usepackage{xcolor}\n".
4801: '\usepackage{calc}'.
4802: '\usepackage{amsmath}'.
4803: '\usepackage{amssymb}'.
4804: '\usepackage{amsfonts}'.
4805: '\usepackage{amsthm}'.
1.402 foxr 4806: '\usepackage{amscd}'
4807: .'\usepackage{picins}\usepackage{calc}'."\n". # From lonprintout.pm
4808: '\usepackage[T1]{fontenc}'."\n".
4809: '\usepackage{lmodern}'."\n".
4810: '\usepackage[postscript]{ucs}'."\n".
4811: '\usepackage[utf8x]{inputenc}'."\n".
4812: '\usepackage{pifont}' . "\n";
4813:
1.399 foxr 4814: if($env{'form.pdfFormFields'} eq 'yes') {
4815: $currentstring .= '\usepackage{hyperref}'.
4816: '\usepackage{eforms}'.
4817: '\usepackage{tabularx}';
4818: }
4819:
4820: $currentstring .= '\newenvironment{choicelist}{\begin{list}{}{\setlength{\rightmargin}{0in}\setlength{\leftmargin}{0.13in}\setlength{\topsep}{0.05in}\setlength{\itemsep}{0.022in}\setlength{\parsep}{0in}\setlength{\belowdisplayskip}{0.04in}\setlength{\abovedisplayskip}{0.05in}\setlength{\abovedisplayshortskip}{-0.04in}\setlength{\belowdisplayshortskip}{0.04in}}}{\end{list}}'.
4821: '\renewenvironment{theindex}{\begin{list}{}{{\vskip 1mm \noindent \large\textbf{Index}} \newline \setlength{\rightmargin}{0in}\setlength{\leftmargin}{0.13in}\setlength{\topsep}{0.01in}\setlength{\itemsep}{0.1in}\setlength{\parsep}{-0.02in}\setlength{\belowdisplayskip}{0.01in}\setlength{\abovedisplayskip}{0.01in}\setlength{\abovedisplayshortskip}{-0.04in}\setlength{\belowdisplayshortskip}{0.01in}}}{\end{list}}';
1.402 foxr 4822: $currentstring .= '\begin{document}';
1.399 foxr 4823:
4824: return $currentstring;
4825:
4826: }
4827:
1.397 jms 4828: =pod
4829:
4830: =head1 NAME
4831:
4832: Apache::londefdef.pm
4833:
4834: =head1 SYNOPSIS
4835:
4836: Tags Default Definition Module
4837:
4838: This is part of the LearningOnline Network with CAPA project
4839: described at http://www.lon-capa.org.
4840:
4841:
4842: =head1 NOTABLE SUBROUTINES
4843:
4844: =over
4845:
4846: =item start_hideweboutput()
4847:
4848: =item end_hideweboutput()
4849:
4850: =item image_replication()
4851:
4852: =item resize_image()
4853:
4854: Get correct sizing parameter for an image given
4855: it's initial ht. and wid. This allows sizing of
4856: images that are generated on-the-fly (e.g. gnuplot)
4857: as well as serving as a utility for image_size.
4858:
4859: Parameter:
4860: height_param
4861: width_param - Initial picture dimensions.
4862: scaling - A scale factor.
4863: parstack, - the current stack of tag attributes
4864: from the xml parser
4865: safeeval, - pointer to the safespace
4866: depth, - from what level in the stack to look for attributes
4867: (assumes -1 if unspecified)
4868: cis - look for attrubutes case insensitively
4869: (assumes false)
4870:
4871: Returns:
4872: height, width - new dimensions.
4873:
4874: =item image_size()
4875:
4876: =item image_width()
4877:
4878: =item image_height()
4879:
4880: =item get_eps_image()
4881:
4882: =item eps_generation()
4883:
4884: =item file_path()
4885:
4886: =item recalc()
4887:
4888: Converts a measurement in to mm from any of
4889: the other valid LaTeX units of measure.
4890: If the units of measure are missing from the
4891: parameter, it is assumed to be in and returned
4892: with mm units of measure
4893:
4894: =item LATEX_length()
4895:
4896: =item align_latex_image()
4897:
4898: Wrap image 'stuff' inside of the LaTeX required to implement
4899: alignment:
4900: align_tex_image(align, latex_rendering, image)
4901: Where:
4902: align - The HTML alignment specification.
4903: latex_rendering - rendering hint for latex.
4904: image - The LaTeX needed to insert the image itsef.
4905: width,height - dimensions of the image.
4906: Returns:
4907: The 1/2 wrapped image and the stuff required to close the
4908: wrappage. This allows e.g. randomlabel to insert more stuff
4909: into the closure.
4910:
4911:
4912: =item is_inside_of($tagstack, $tag)
4913: This sub returns true if the current state of Xml processing is inside of the tag.
4914: Parameters:
4915: tagstack - The tagstack from the parser.
4916: tag - The tag (without the <>'s.).
4917: Sample usage:
4918: if (is_inside_of($tagstack "table")) {
4919: I'm in a table....
4920: }
4921:
4922:
4923:
4924: =back
4925:
4926: =cut
4927:
4928:
1.1 sakharuk 4929: 1;
4930: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>