File:  [LON-CAPA] / loncom / xml / londefdef.pm
Revision 1.208: download - view: text, annotated - select for diffs
Tue Apr 6 18:05:29 2004 UTC (20 years, 1 month ago) by sakharuk
Branches: MAIN
CVS tags: HEAD
Changed name of DropEmptyColumns onto TeXDropEmptyColumns.

    1: # The LearningOnline Network with CAPA
    2: # Tags Default Definition Module 
    3: #
    4: # $Id: londefdef.pm,v 1.208 2004/04/06 18:05:29 sakharuk Exp $
    5: # 
    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/
   28: ## Copyright for TtHfunc and TtMfunc by Ian Hutchinson. 
   29: # TtHfunc and TtMfunc (the "Code") may be compiled and linked into 
   30: # binary executable programs or libraries distributed by the 
   31: # Michigan State University (the "Licensee"), but any binaries so 
   32: # distributed are hereby licensed only for use in the context
   33: # of a program or computational system for which the Licensee is the 
   34: # primary author or distributor, and which performs substantial 
   35: # additional tasks beyond the translation of (La)TeX into HTML.
   36: # The C source of the Code may not be distributed by the Licensee
   37: # to any other parties under any circumstances.
   38: #
   39: #
   40: # last modified 06/26/00 by Alexander Sakharuk
   41: # 11/6,11/30,02/01/01,5/4 Gerd Kortemeyer
   42: # 01/18 Alex Sakharuk
   43: 
   44: package Apache::londefdef; 
   45: 
   46: use Apache::lonnet();
   47: use strict;
   48: use Apache::lonxml;
   49: use Apache::File();
   50: use Image::Magick;
   51: use Apache::lonmenu();
   52: use Apache::lonmeta();
   53: use Apache::Constants qw(:common);
   54: 
   55: 
   56: BEGIN {
   57: 
   58:     &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'));
   59: 
   60: }
   61: 
   62: sub initialize_londefdef {
   63:     $Apache::londefdef::TD_redirection=0;
   64:     @Apache::londefdef::table = ();
   65:     $Apache::londefdef::select=0;
   66:     @Apache::londefdef::description=();
   67:     $Apache::londefdef::DD_redirection=0;
   68:     $Apache::londefdef::DT_redirection=0;
   69: }
   70: 
   71: #======================= TAG SUBROUTINES =====================
   72: #-- <output>
   73: sub start_output {
   74:     my ($target) = @_;
   75:     if ($target eq 'meta') { $Apache::lonxml::metamode--; }
   76:     return '';
   77: }
   78: sub end_output {
   79:     my ($target) = @_;
   80:     if ($target eq 'meta') { $Apache::lonxml::metamode++; }
   81:     return '';
   82: }
   83: #-- <m> tag
   84: sub start_m {
   85:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style) = @_;
   86:     my $currentstring = '';
   87:     my $inside = &Apache::lonxml::get_all_text_unbalanced("/m",$parser);
   88:     if ($target eq 'web' || $target eq 'analyze') {
   89: 	$inside ='\\documentstyle{article}'.$inside;
   90: 	&Apache::lonxml::debug("M is starting with:$inside:");
   91: 	my $eval=&Apache::lonxml::get_param('eval',$parstack,$safeeval);
   92: 	if ($eval eq 'on') {
   93: 	    $inside=&Apache::run::evaluate($inside,$safeeval,$$parstack[-1]);
   94: 	    #&Apache::lonxml::debug("M is evaulated to:$inside:");
   95: 	}
   96: 	$currentstring = &Apache::lontexconvert::converted(\$inside);
   97: 	if ($Apache::lontexconvert::errorstring) {
   98: 	    &Apache::lonxml::warning("tth error: ".
   99: 				     $Apache::lontexconvert::errorstring);
  100: 	    $Apache::lontexconvert::errorstring='';
  101: 	}
  102: 	#&Apache::lonxml::debug("M is ends with:$currentstring:");
  103: 	$Apache::lonxml::post_evaluate=0;
  104:     } elsif ($target eq 'tex') {
  105: 	$currentstring = $inside;
  106: 	my $eval=&Apache::lonxml::get_param('eval',$parstack,$safeeval);
  107: 	if ($eval eq 'on') {
  108: 	    $currentstring=&Apache::run::evaluate($currentstring,$safeeval,$$parstack[-1]);
  109: 	}
  110: 	if ($currentstring=~/^(\s*\\\\\s*)*$/) {$currentstring = ' \vskip 0 mm ';}
  111: 	$Apache::lonxml::post_evaluate=0;
  112:     }
  113:     return $currentstring;
  114: }
  115: 
  116: sub end_m {
  117:     my ($target,$token) = @_;
  118:     my $currentstring = '';
  119:     if ($target eq 'tex') {
  120: 	$currentstring = "";
  121:     }
  122:     return $currentstring;
  123: }
  124: 
  125: sub start_tthoption {
  126:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  127:     my $result;
  128:     if ($target eq 'web') {
  129: 	my $inside = &Apache::lonxml::get_all_text("/tthoption",$parser);
  130: 	$inside=~s/^\s*//;
  131: 	if ($ENV{'browser.mathml'}) {
  132: 	    &tth::ttmoptions($inside);
  133: 	} else {
  134: 	    &tth::tthoptions($inside);
  135: 	}
  136:     }
  137:     return $result;
  138: }
  139: 
  140: sub end_tthoption {
  141:     my ($target,$token) = @_;
  142:     my $result;
  143:     return $result;
  144: }
  145: 
  146: #-- <html> tag (end tag optional)
  147: sub start_html {
  148:     my ($target,$token) = @_;
  149:     my $currentstring = '';
  150:     my $options=$ENV{'course.'.$ENV{'request.course.id'}.'.tthoptions'};
  151:     &Apache::lontexconvert::init_tth();
  152:     if ($target eq 'web' || $target eq 'edit') {
  153: 	$currentstring = &Apache::lonxml::xmlbegin().
  154: 	    &Apache::lonxml::fontsettings();     
  155:     } elsif ($target eq 'tex') {
  156: 	@Apache::londefdef::table = ();
  157: 	$currentstring .= '\documentclass[letterpaper]{article}';
  158: 	if ($ENV{'form.latex_type'}=~'batchmode') {$currentstring .='\batchmode';} 
  159: 	$currentstring .= '\newcommand{\keephidden}[1]{}
  160:                            \renewcommand{\deg}{$^{\circ}$}
  161:                            \usepackage{longtable}
  162:                            \usepackage{textcomp}
  163:                            \usepackage{makeidx}
  164:                            \usepackage[dvips]{graphicx}
  165:                            \usepackage{epsfig}\usepackage{calc}
  166: \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}}
  167: \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}}';
  168:     }
  169:     return $currentstring;
  170: }
  171: 
  172: sub end_html {
  173:     my ($target,$token) = @_;
  174:     my $currentstring = '';
  175:     if ($target eq 'web') {
  176: 	$currentstring = &Apache::lonxml::xmlend();
  177:     }
  178:     return $currentstring;
  179: }
  180: 
  181: #-- <head> tag (end tag optional)
  182: sub start_head {
  183:     my ($target,$token) = @_;
  184:     my $currentstring = '';
  185:     if ($target eq 'web') {
  186: 	$currentstring = $token->[4];     
  187:     } 
  188:     return $currentstring;
  189: }
  190: 
  191: sub end_head {
  192:     my ($target,$token) = @_;
  193:     my $currentstring = '';
  194:     if ($target eq 'web' && $ENV{'request.state'} eq 'published') {
  195: 	$currentstring = &Apache::lonmenu::registerurl(undef,$target).
  196: 	    $token->[2];    
  197:     } 
  198:     return $currentstring;
  199: }
  200: 
  201: #-- <map> tag (end tag required)
  202: sub start_map {
  203:     my ($target,$token) = @_;
  204:     my $currentstring = '';
  205:     if ($target eq 'web') {
  206: 	$currentstring = $token->[4];     
  207:     } 
  208:     return $currentstring;
  209: }
  210: 
  211: sub end_map {
  212:     my ($target,$token) = @_;
  213:     my $currentstring = '';
  214:     if ($target eq 'web') {
  215: 	$currentstring = $token->[2];    
  216:     } 
  217:     return $currentstring;
  218: }
  219: 
  220: #-- <select> tag (end tag required)
  221: sub start_select {
  222:     my ($target,$token) = @_;
  223:     my $currentstring = '';
  224:     if ($target eq 'web') {
  225: 	$currentstring = $token->[4];     
  226:     }  elsif ($target eq 'tex') {
  227: 	$Apache::londefdef::select=0;
  228:     }
  229:     return $currentstring;
  230: }
  231: 
  232: sub end_select {
  233:     my ($target,$token) = @_;
  234:     my $currentstring = '';
  235:     if ($target eq 'web') {
  236: 	$currentstring = $token->[2];    
  237:     } 
  238:     return $currentstring;
  239: }
  240: 
  241: #-- <option> tag (end tag optional)
  242: sub start_option {
  243:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  244:     my $currentstring = '';
  245:     if ($target eq 'web') {
  246: 	$currentstring = $token->[4];     
  247:     } elsif ($target eq 'tex') {
  248: 	$Apache::londefdef::select++;
  249: 	if ($Apache::londefdef::select == 1) {
  250: 	    $currentstring='\noindent\fbox{'.&Apache::lonxml::get_param('value',$parstack,$safeeval).'}\keephidden{';
  251: 	} else {
  252: 	    $currentstring='\keephidden{';
  253: 	}
  254:     }
  255:     return $currentstring;
  256: }
  257: 
  258: sub end_option {
  259:     my ($target,$token) = @_;
  260:     my $currentstring = '';
  261:     if ($target eq 'web') {
  262: 	$currentstring = $token->[2];    
  263:     }  elsif ($target eq 'tex') {
  264: 	$currentstring='}';
  265:     }
  266:     return $currentstring;
  267: }
  268: 
  269: #-- <input> tag (end tag forbidden)
  270: sub start_input {
  271:     my ($target,$token) = @_;
  272:     my $currentstring = '';
  273:     if ($target eq 'web') {
  274: 	$currentstring = $token->[4];     
  275:     } 
  276:     return $currentstring;
  277: }
  278: 
  279: sub end_input {
  280:     my ($target,$token) = @_;
  281:     my $currentstring = '';
  282:     if ($target eq 'web') {
  283: 	$currentstring = $token->[2];    
  284:     } 
  285:     return $currentstring;
  286: }
  287: 
  288: #-- <textarea> tag (end tag required)
  289: sub start_textarea {
  290:     my ($target,$token) = @_;
  291:     my $currentstring = '';
  292:     if ($target eq 'web') {
  293: 	$currentstring = $token->[4];     
  294:     } 
  295:     return $currentstring;
  296: }
  297: 
  298: sub end_textarea {
  299:     my ($target,$token) = @_;
  300:     my $currentstring = '';
  301:     if ($target eq 'web') {
  302: 	$currentstring = $token->[2];    
  303:     } 
  304:     return $currentstring;
  305: }
  306: 
  307: #-- <form> tag (end tag required)
  308: sub start_form {
  309:     my ($target,$token) = @_;
  310:     my $currentstring = '';
  311:     if ($target eq 'web') {
  312: 	$currentstring = $token->[4];     
  313:     } 
  314:     return $currentstring;
  315: }
  316: 
  317: sub end_form {
  318:     my ($target,$token) = @_;
  319:     my $currentstring = '';
  320:     if ($target eq 'web') {
  321: 	$currentstring = $token->[2];    
  322:     } 
  323:     return $currentstring;
  324: }
  325: 
  326: #-- <title> tag (end tag required)
  327: sub start_title {
  328:     my ($target,$token) = @_;
  329:     my $currentstring = '';
  330:     if ($target eq 'web') {
  331: 	$currentstring = $token->[4];     
  332:     } elsif ($target eq 'tex') {
  333: 	$currentstring .= '\keephidden{Title of the document:  ' 
  334:     }
  335:     if ($target eq 'meta') {
  336: 	$currentstring='<title>';
  337: 	&start_output($target);
  338:     }
  339:     return $currentstring;
  340: }
  341: 
  342: sub end_title {
  343:     my ($target,$token) = @_;
  344:     my $currentstring = '';
  345:     if ($target eq 'web') {
  346: 	$currentstring = $token->[2];    
  347:     } elsif ($target eq 'tex') {
  348: 	$currentstring .= '}';
  349:     }  
  350:     if ($target eq 'meta') {
  351: 	&end_output($target);
  352: 	$currentstring='</title>';
  353:     } 
  354:     return $currentstring;
  355: }
  356: 
  357: #-- <meta> tag (end tag forbidden)
  358: sub start_meta {
  359:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  360:     my $currentstring = '';
  361:     if ($target eq 'web') {
  362: 	my $args='';
  363: 	if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }
  364: 	if ($args eq '') {
  365: 	    &Apache::lonxml::get_all_text("/meta",$parser);
  366: 	} else {
  367: 	    $currentstring = $token->[4];
  368: 	}
  369:     } elsif ($target eq 'meta') {
  370: 	unless (&Apache::lonxml::get_param
  371: 		('http-equiv',$parstack,$safeeval,undef,1)) {
  372: 	    my $name=$token->[2]->{'name'};
  373: 	    $name=~tr/A-Z/a-z/;
  374: 	    $name=~s/\s/\_/gs;
  375: 	    $name=~s/\W//gs;
  376: 	    if ($name) {
  377: 		$currentstring='<'.$name;
  378:                  my $display=&Apache::lonxml::get_param
  379: 		('display',$parstack,$safeeval,undef,1);
  380:                 if ($display) {
  381:                     $display=~s/\"/\'/g;
  382: 		    $currentstring.=' display="'.$display.'"';
  383:                 }
  384: 		$currentstring.='>'.
  385: 		    &Apache::lonxml::get_param
  386: 			('content',$parstack,$safeeval,undef,1).
  387: 			'</'.$name.'>';
  388: 	    }
  389:             my $display=&Apache::lonxml::get_param
  390: 		('display',$parstack,$safeeval,undef,1);
  391:             if ($display) {
  392: 		$display=&HTML::Entities::encode($display,'<>&"');
  393: 		$currentstring.='<'.$name.'.display>'.$display.
  394:                                '</'.$name.'.display>';
  395:             }
  396: 	}
  397:     } elsif ($target eq 'tex') {
  398: 	my $content=&Apache::lonxml::get_param('content',$parstack,$safeeval);
  399: 	my $name=&Apache::lonxml::get_param('name',$parstack,$safeeval);
  400: 	if ((not defined $content) && (not defined $name)) {
  401: 	    &Apache::lonxml::startredirection();
  402: 	}
  403:     }
  404:     return $currentstring;
  405: }
  406: 
  407: sub end_meta {
  408:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  409:     my $currentstring = '';
  410:     if ($target eq 'web') {
  411: 	my $args='';
  412: 	if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }
  413: 	if ($args ne '') {
  414: 	    $currentstring = $token->[4];
  415: 	}
  416:     } elsif ($target eq 'tex') {
  417: 	my $content=&Apache::lonxml::get_param('content',$parstack,$safeeval);
  418: 	my $name=&Apache::lonxml::get_param('name',$parstack,$safeeval);
  419: 	if ((not defined $content) && (not defined $name)) {
  420: 	    &Apache::lonxml::endredirection();
  421: 	}
  422:     }
  423:     return $currentstring;
  424: }
  425: 
  426: # accessrule
  427: sub start_accessrule {
  428:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  429:     my $currentstring = '';
  430:     my $eff=&Apache::lonxml::get_param
  431: 	('effect',$parstack,$safeeval,undef,1);
  432:     my $realm=&Apache::lonxml::get_param
  433: 	('realm',$parstack,$safeeval,undef,1);
  434:     my $role=&Apache::lonxml::get_param
  435: 	('role',$parstack,$safeeval,undef,1);
  436:     $realm=~s/\s+//g;
  437:     $realm=~s/\//\_/g;
  438:     $realm=~s/^\_//;
  439:     $realm=~s/\W/\;/g;
  440:     $role=~s/\s+//g;
  441:     $role=~s/\//\_/g;
  442:     $role=~s/\W/\;/g;
  443:     if ($target eq 'web') {
  444: 	my $args='';
  445: 	if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }
  446: 	if ($args eq '') {
  447: 	    &Apache::lonxml::get_all_text("/accessrule",$parser);
  448: 	} else {
  449: 	    $currentstring = $token->[4];
  450: 	}
  451:     }
  452:     if ($target eq 'meta') {
  453: 	$currentstring='<rule>'.$eff.':'.$realm.':'.$role.'</rule>';
  454:     }
  455:     return $currentstring;
  456: }
  457: 
  458: sub end_accessrule {
  459:     my ($target,$token,$tagstack,$parstack,$parser) = @_;
  460:     my $currentstring = '';
  461:     if ($target eq 'web') {
  462: 	my $args='';
  463: 	if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }
  464: 	if ($args ne '') {
  465: 	    $currentstring = $token->[4];
  466: 	}
  467:     } 
  468:     return $currentstring;
  469: }
  470: 
  471: #-- <body> tag (end tag required)
  472: sub start_body {
  473:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  474:     my $currentstring = '';
  475:     if ($target eq 'web') {
  476: 	if ($Apache::lonhomework::parsing_a_problem) {
  477: 	    &Apache::lonxml::warning("<body> tag found inside of <problem> tag this can cause problems.");
  478: 	    return '';
  479: 	}
  480: 	if (!$Apache::lonxml::registered && 
  481: 	    $ENV{'request.state'} eq 'published') {
  482: 	    $currentstring.='<head>'.
  483: 		&Apache::lonmenu::registerurl(undef,$target).'</head>';
  484: 	}
  485: # Accessibility
  486: 	if ($ENV{'browser.imagesuppress'} eq 'on') {
  487: 	    delete($token->[2]->{'background'});
  488: 	}
  489: 	if ($ENV{'browser.fontenhance'} eq 'on') {
  490: 	    my $style='';
  491: 	    foreach my $key (keys(%{$token->[2]})) {
  492: 		if ($key =~ /^style$/i) {
  493: 		    $style.=$token->[2]->{$key}.';';
  494: 		    delete($token->[2]->{$key});
  495: 		}
  496: 	    }
  497: 	    $token->[2]->{'style'}=$style.'; font-size: x-large;';
  498: 	}
  499: 	if ($ENV{'browser.blackwhite'} eq 'on') {
  500: 	    delete($token->[2]->{'font'});
  501: 	    delete($token->[2]->{'link'});
  502: 	    delete($token->[2]->{'alink'});
  503: 	    delete($token->[2]->{'vlink'});
  504: 	    delete($token->[2]->{'bgcolor'});
  505: 	    delete($token->[2]->{'background'});
  506: 	}
  507: # Overload loads
  508: 	my $onLoad='';
  509: 	foreach my $key (keys(%{$token->[2]})) {
  510: 	    if ($key =~ /^onload$/i) {
  511: 		$onLoad.=$token->[2]->{$key}.';';
  512: 		delete($token->[2]->{$key});
  513: 	    }
  514: 	}
  515: 	$token->[2]->{'onload'}=&Apache::lonmenu::loadevents().';'.$onLoad;
  516: 	my $onUnload='';
  517: 	foreach my $key (keys(%{$token->[2]})) {
  518: 	    if ($key =~ /^onunload$/i) {
  519: 		$onUnload.=$token->[2]->{$key}.';';
  520: 		delete($token->[2]->{$key});
  521: 	    }
  522: 	}
  523: 	$token->[2]->{'onunload'}=&Apache::lonmenu::unloadevents().
  524: 	    ';'.$onUnload;
  525: 	
  526: 	$currentstring .= '<'.$token->[1];
  527: 	foreach (keys %{$token->[2]}) {
  528: 	    $currentstring.=' '.$_.'="'.$token->[2]->{$_}.'"';
  529: 	}
  530: 	$currentstring.='>';
  531: 	if ($ENV{'request.state'} ne 'published') {
  532: 	    $currentstring.=(<<EDITBUTTON);
  533: 		<form method="post">
  534: 		<input type="submit" name="editmode" accesskey="e" value="Edit" />
  535: 		</form>
  536: EDITBUTTON
  537: 	} else {
  538: 	    $currentstring.=&Apache::lonmenu::menubuttons(undef,$target,1);
  539: 	}
  540: 	$currentstring.=&Apache::lonxml::message_location();
  541:     } elsif ($target eq 'tex') {
  542: 	$currentstring = '\begin{document}';  
  543:     } 
  544:     return $currentstring;
  545: }
  546: 
  547: sub end_body {
  548:     my ($target,$token) = @_;
  549:     my $currentstring = '';
  550:     if ($target eq 'web') {
  551: 	$currentstring = $token->[2];     
  552:     } elsif ($target eq 'tex') {
  553: 	$currentstring = '\strut\newline\noindent\makebox[\textwidth/$number_of_columns][b]{\hrulefill}\newline\noindent \end{document}';  
  554:     } 
  555:     return $currentstring;
  556: }
  557: 
  558: #-- <center> tag (end tag required)
  559: sub start_center {
  560:     my ($target,$token) = @_;
  561:     my $currentstring = '';
  562:     if ($target eq 'web') {
  563: 	$currentstring = $token->[4];     
  564:     } elsif ($target eq 'tex') {
  565: 	$currentstring = '\begin{center}';  
  566:     }
  567:     return $currentstring;
  568: }
  569: 
  570: sub end_center {
  571:     my ($target,$token) = @_;
  572:     my $currentstring = '';
  573:     if ($target eq 'web') {
  574: 	$currentstring = $token->[2];     
  575:     } elsif ($target eq 'tex') {
  576: 	$currentstring = '\end{center}';  
  577:     }
  578:     return $currentstring;
  579: }
  580: 
  581: #-- <b> tag (end tag required)
  582: sub start_b {
  583:     my ($target,$token) = @_;
  584:     my $currentstring = '';
  585:     if ($target eq 'web') {
  586: 	$currentstring = $token->[4];     
  587:     } elsif ($target eq 'tex') {
  588: 	$currentstring = '\textbf{';  
  589:     } 
  590:     return $currentstring;
  591: }
  592: 
  593: sub end_b {
  594:     my ($target,$token) = @_;
  595:     my $currentstring = '';
  596:     if ($target eq 'web') {
  597: 	$currentstring = $token->[2];     
  598:     } elsif ($target eq 'tex') {
  599: 	$currentstring = '}';  
  600:     } 
  601:     return $currentstring;
  602: }
  603: 
  604: #-- <strong> tag (end tag required)
  605: sub start_strong {
  606:     my ($target,$token) = @_;
  607:     my $currentstring = '';
  608:     if ($target eq 'web') {
  609: 	$currentstring = $token->[4];     
  610:     } elsif ($target eq 'tex') {
  611: 	$currentstring = '\textbf{';  
  612:     } 
  613:     return $currentstring;
  614: }
  615: 
  616: sub end_strong {
  617:     my ($target,$token) = @_;
  618:     my $currentstring = '';
  619:     if ($target eq 'web') {	
  620: 	$currentstring = $token->[2];     
  621:     } elsif ($target eq 'tex') {
  622: 	$currentstring = '}';  
  623:     }
  624:     return $currentstring;
  625: }
  626: 
  627: #-- <h1> tag (end tag required)
  628: sub start_h1 {
  629:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  630:     my $currentstring = '';
  631:     if ($target eq 'web') {
  632: 	$currentstring .= $token->[4];
  633:     } elsif ($target eq 'tex') {
  634: 	my $pre;
  635: 	my $align=lc(&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1));
  636: 	if (($align eq 'center') || (not defined $align)) {
  637: 	    $pre='\begin{center}';
  638: 	} elsif ($align eq 'left') {
  639: 	    $pre='\rlap{';
  640: 	} elsif ($align eq 'right') {
  641: 	    $pre=' \hfill \llap{';
  642: 	}
  643: 	my $TeXsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval,undef,0);
  644: 	if (not defined $TeXsize) {$TeXsize="large";}
  645: 	$currentstring .= $pre.'{\\'.$TeXsize.' \textbf{'; 
  646:     } elsif ($target eq 'meta') {
  647: 	$currentstring='<subject>';
  648: 	&start_output($target);
  649:     }
  650:     return $currentstring;
  651: }
  652: 
  653: sub end_h1 {
  654:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  655:     my $currentstring = '';
  656:     if ($target eq 'web') {
  657: 	$currentstring .= $token->[2];
  658:     } elsif ($target eq 'tex') {
  659: 	my $post;
  660: 	my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
  661: 	if (($align eq 'center') || (not defined $align)) {
  662: 	    $post='\end{center}';
  663: 	} elsif ($align eq 'left') {
  664: 	    $post='} \hfill'.'\vskip 0 mm ';
  665: 	} elsif ($align eq 'right') {
  666: 	    $post='}'.'\vskip 0 mm ';
  667: 	}
  668: 	$currentstring .= '}}'.$post;
  669:     } elsif ($target eq 'meta') {
  670: 	&end_output($target);
  671: 	$currentstring='</subject>';
  672:     } 
  673:     return $currentstring;
  674: }
  675: 
  676: #-- <h2> tag
  677: sub start_h2 {
  678:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  679:     my $currentstring = '';
  680:     if ($target eq 'web') {
  681: 	$currentstring .= $token->[4];
  682:     } elsif ($target eq 'tex') {
  683: 	my $pre;
  684: 	my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
  685: 	if (($align eq 'center') || (not defined $align)) {
  686: 	    $pre='\begin{center}';
  687: 	} elsif ($align eq 'left') {
  688: 	    $pre='\rlap{';
  689: 	} elsif ($align eq 'right') {
  690: 	    $pre=' \hfill \llap{';
  691: 	}
  692: 	my $TeXsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval,undef,0);
  693: 	if (not defined $TeXsize) {$TeXsize="large";}
  694: 	$currentstring .= $pre.'{\\'.$TeXsize.' \textbf{'; 
  695:     } 
  696:     return $currentstring;
  697: }
  698: 
  699: sub end_h2 {
  700:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  701:     my $currentstring = '';
  702:     if ($target eq 'web') {
  703: 	$currentstring .= $token->[2];
  704:     } elsif ($target eq 'tex') {
  705: 	my $post;
  706: 	my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
  707: 	if (($align eq 'center') || (not defined $align)) {
  708: 	    $post='\end{center}';
  709: 	} elsif ($align eq 'left') {
  710: 	    $post='} \hfill'.'\vskip 0 mm ';
  711: 	} elsif ($align eq 'right') {
  712: 	    $post='}'.'\vskip 0 mm ';
  713: 	}
  714: 	$currentstring .= '}}'.$post;
  715:     } 
  716:     return $currentstring;
  717: }
  718: 
  719: #-- <h3> tag
  720: sub start_h3 {
  721:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  722:     my $currentstring = '';
  723:     if ($target eq 'web') {
  724: 	$currentstring .= $token->[4];
  725:     } elsif ($target eq 'tex') {
  726: 	my $pre;
  727: 	my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
  728: 	if (($align eq 'center') || (not defined $align)) {
  729: 	    $pre='\begin{center}';
  730: 	} elsif ($align eq 'left') {
  731: 	    $pre='\rlap{';
  732: 	} elsif ($align eq 'right') {
  733: 	    $pre=' \hfill \llap{';
  734: 	}
  735: 	my $TeXsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval,undef,0);
  736: 	if (not defined $TeXsize) {$TeXsize="large";}
  737: 	$currentstring .= $pre.'{\\'.$TeXsize.' \textbf{'; 
  738:     } 
  739:     return $currentstring;
  740: }
  741: 
  742: sub end_h3 {
  743:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  744:     my $currentstring = '';
  745:     if ($target eq 'web') {
  746: 	$currentstring .= $token->[2];
  747:     } elsif ($target eq 'tex') {
  748: 	my $post;
  749: 	my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
  750: 	if (($align eq 'center') || (not defined $align)) {
  751: 	    $post='\end{center}';
  752: 	} elsif ($align eq 'left') {
  753: 	    $post='} \hfill'.'\vskip 0 mm ';
  754: 	} elsif ($align eq 'right') {
  755: 	    $post='}'.'\vskip 0 mm ';
  756: 	}
  757: 	$currentstring .= '}}'.$post;
  758:     } 
  759:     return $currentstring;
  760: }
  761: 
  762: #-- <h4> tag
  763: sub start_h4 {
  764:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  765:     my $currentstring = '';
  766:     if ($target eq 'web') {
  767: 	$currentstring .= $token->[4];
  768:     } elsif ($target eq 'tex') {
  769: 	my $pre;
  770: 	my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
  771: 	if (($align eq 'center') || (not defined $align)) {
  772: 	    $pre='\begin{center}';
  773: 	} elsif ($align eq 'left') {
  774: 	    $pre='\rlap{';
  775: 	} elsif ($align eq 'right') {
  776: 	    $pre=' \hfill \llap{';
  777: 	}
  778: 	my $TeXsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval,undef,0);
  779: 	if (not defined $TeXsize) {$TeXsize="large";}
  780: 	$currentstring .= $pre.'{\\'.$TeXsize.' \textbf{'; 
  781:     } 
  782:     return $currentstring;
  783: }
  784: 
  785: sub end_h4 {
  786:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  787:     my $currentstring = '';
  788:     if ($target eq 'web') {
  789: 	$currentstring .= $token->[2];
  790:     } elsif ($target eq 'tex') {
  791: 	my $post;
  792: 	my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
  793: 	if (($align eq 'center') || (not defined $align)) {
  794: 	    $post='\end{center}';
  795: 	} elsif ($align eq 'left') {
  796: 	    $post='} \hfill'.'\vskip 0 mm ';
  797: 	} elsif ($align eq 'right') {
  798: 	    $post='}'.'\vskip 0 mm ';
  799: 	}
  800: 	$currentstring .= '}}'.$post;
  801:     } 
  802:     return $currentstring;
  803: }
  804: 
  805: #-- <h5> tag
  806: sub start_h5 {
  807:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  808:     my $currentstring = '';
  809:     if ($target eq 'web') {
  810: 	$currentstring .= $token->[4];
  811:     } elsif ($target eq 'tex') {
  812: 	my $pre;
  813: 	my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
  814: 	if (($align eq 'center') || (not defined $align)) {
  815: 	    $pre='\begin{center}';
  816: 	} elsif ($align eq 'left') {
  817: 	    $pre='\rlap{';
  818: 	} elsif ($align eq 'right') {
  819: 	    $pre=' \hfill \llap{';
  820: 	}
  821: 	my $TeXsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval,undef,0);
  822: 	if (not defined $TeXsize) {$TeXsize="large";}
  823: 	$currentstring .= $pre.'{\\'.$TeXsize.' \textbf{'; 
  824:     } 
  825:     return $currentstring;
  826: }
  827: 
  828: sub end_h5 {
  829:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  830:     my $currentstring = '';
  831:     if ($target eq 'web') {
  832: 	$currentstring .= $token->[2];
  833:     } elsif ($target eq 'tex') {
  834: 	my $post;
  835: 	my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
  836: 	if (($align eq 'center') || (not defined $align)) {
  837: 	    $post='\end{center}';
  838: 	} elsif ($align eq 'left') {
  839: 	    $post='} \hfill'.'\vskip 0 mm ';
  840: 	} elsif ($align eq 'right') {
  841: 	    $post='}'.'\vskip 0 mm ';
  842: 	}
  843: 	$currentstring .= '}}'.$post;
  844:     } 
  845:     return $currentstring;
  846: }
  847: 
  848: #-- <h6> tag
  849: sub start_h6 {
  850:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  851:     my $currentstring = '';
  852:     if ($target eq 'web') {
  853: 	$currentstring .= $token->[4];
  854:     } elsif ($target eq 'tex') {
  855: 	my $pre;
  856: 	my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
  857: 	if (($align eq 'center') || (not defined $align)) {
  858: 	    $pre='\begin{center}';
  859: 	} elsif ($align eq 'left') {
  860: 	    $pre='\rlap{';
  861: 	} elsif ($align eq 'right') {
  862: 	    $pre=' \hfill \llap{';
  863: 	}
  864: 	my $TeXsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval,undef,0);
  865: 	if (not defined $TeXsize) {$TeXsize="large";}
  866: 	$currentstring .= $pre.'{\\'.$TeXsize.' \textbf{'; 
  867:     } 
  868:     return $currentstring;
  869: }
  870: 
  871: sub end_h6 {
  872:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
  873:     my $currentstring = '';
  874:     if ($target eq 'web') {
  875: 	$currentstring .= $token->[2];
  876:     } elsif ($target eq 'tex') {
  877: 	my $post;
  878: 	my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
  879: 	if (($align eq 'center') || (not defined $align)) {
  880: 	    $post='\end{center}';
  881: 	} elsif ($align eq 'left') {
  882: 	    $post='} \hfill'.'\vskip 0 mm ';
  883: 	} elsif ($align eq 'right') {
  884: 	    $post='}'.'\vskip 0 mm ';
  885: 	}
  886: 	$currentstring .= '}}'.$post;
  887:     } 
  888:     return $currentstring;
  889: }
  890: 
  891: #--- <cite> tag (end tag required)
  892: sub start_cite {
  893:     my ($target,$token) = @_;
  894:     my $currentstring = '';
  895:     if ($target eq 'web') {
  896: 	$currentstring .= $token->[4];
  897:     } elsif ($target eq 'tex') {
  898: 	$currentstring .= '\textit{';
  899:     }
  900:     return $currentstring;
  901: }
  902: 
  903: sub end_cite {
  904:     my ($target,$token) = @_;
  905:     my $currentstring = '';
  906:     if ($target eq 'web') {
  907: 	$currentstring .= $token->[2];
  908:     } elsif ($target eq 'tex') {
  909: 	$currentstring .= '}';
  910:     }
  911:     return $currentstring;
  912: }
  913: 
  914: #-- <i> tag (end tag required)
  915: sub start_i {
  916:     my ($target,$token) = @_;
  917:     my $currentstring = '';
  918:     if ($target eq 'web') {
  919: 	$currentstring .= $token->[4];
  920:     } elsif ($target eq 'tex') {
  921: 	$currentstring .= '\textit{';
  922:     }
  923:     return $currentstring;
  924: }
  925: 
  926: sub end_i {
  927:     my ($target,$token) = @_;
  928:     my $currentstring = '';
  929:     if ($target eq 'web') {
  930: 	$currentstring .= $token->[2];
  931:     } elsif ($target eq 'tex') {
  932: 	$currentstring .= '}';
  933:     } 
  934:     return $currentstring;
  935: }
  936: 
  937: #-- <address> tag (end tag required)
  938: sub start_address {
  939:     my ($target,$token) = @_;
  940:     my $currentstring = '';
  941:     if ($target eq 'web') {
  942: 	$currentstring .= $token->[4];
  943:     } elsif ($target eq 'tex') {
  944: 	$currentstring .= '\textit{';
  945:     }
  946:     return $currentstring;
  947: }
  948: 
  949: sub end_address {
  950:     my ($target,$token) = @_;
  951:     my $currentstring = '';
  952:     if ($target eq 'web') {
  953: 	$currentstring .= $token->[2];
  954:     } elsif ($target eq 'tex') {
  955: 	$currentstring .= '}';
  956:     }
  957:     return $currentstring;
  958: }
  959: 
  960: #-- <dfn> tag (end tag required)
  961: sub start_dfn {
  962:     my ($target,$token) = @_;
  963:     my $currentstring = '';
  964:     if ($target eq 'web') {
  965: 	$currentstring .= $token->[4];
  966:     } elsif ($target eq 'tex') {
  967: 	$currentstring .= '\textit{';
  968:     } 
  969:     return $currentstring;
  970: }
  971: 
  972: sub end_dfn {
  973:     my ($target,$token) = @_;
  974:     my $currentstring = '';
  975:     if ($target eq 'web') {
  976: 	$currentstring .= $token->[2];
  977:     } elsif ($target eq 'tex') {
  978: 	$currentstring .= '}';
  979:     }
  980:     return $currentstring;
  981: }
  982: 
  983: #-- <tt> tag (end tag required)
  984: sub start_tt {
  985:     my ($target,$token) = @_;
  986:     my $currentstring = '';
  987:     if ($target eq 'web') {
  988: 	$currentstring .= $token->[4];
  989:     } elsif ($target eq 'tex') {
  990: 	$currentstring .= '\texttt{';
  991:     }
  992:     return $currentstring;
  993: }
  994: 
  995: sub end_tt {
  996:     my ($target,$token) = @_;
  997:     my $currentstring = '';
  998:     if ($target eq 'web') {
  999: 	$currentstring .= $token->[2];
 1000:     } elsif ($target eq 'tex') {
 1001: 	$currentstring .= '}';
 1002:     }
 1003:     return $currentstring;
 1004: }
 1005: 
 1006: #-- <kbd> tag (end tag required)
 1007: sub start_kbd {
 1008:     my ($target,$token) = @_;
 1009:     my $currentstring = '';
 1010:     if ($target eq 'web') {
 1011: 	$currentstring .= $token->[4];
 1012:     } elsif ($target eq 'tex') {
 1013: 	$currentstring .= '\texttt{';
 1014:     }
 1015:     return $currentstring;
 1016: }
 1017: 
 1018: sub end_kbd {
 1019:     my ($target,$token) = @_;
 1020:     my $currentstring = '';
 1021:     if ($target eq 'web') {
 1022: 	$currentstring .= $token->[2];
 1023:     } elsif ($target eq 'tex') {
 1024: 	$currentstring .= '}';
 1025:     }
 1026:     return $currentstring;
 1027: }
 1028: 
 1029: #-- <code> tag (end tag required)
 1030: sub start_code {
 1031:     my ($target,$token) = @_;
 1032:     my $currentstring = '';
 1033:     if ($target eq 'web') {
 1034: 	$currentstring .= $token->[4];
 1035:     } elsif ($target eq 'tex') {
 1036: 	$currentstring .= '\texttt{';
 1037:     } 
 1038:     return $currentstring;
 1039: }
 1040: 
 1041: sub end_code {
 1042:     my ($target,$token) = @_;
 1043:     my $currentstring = '';
 1044:     if ($target eq 'web') {
 1045: 	$currentstring .= $token->[2];
 1046:     } elsif ($target eq 'tex') {
 1047: 	$currentstring .= '}';
 1048:     } 
 1049:     return $currentstring;
 1050: }
 1051: 
 1052: #-- <em> tag (end tag required)
 1053: sub start_em {
 1054:     my ($target,$token) = @_;
 1055:     my $currentstring = '';
 1056:     if ($target eq 'web') {
 1057: 	$currentstring .= $token->[4];
 1058:     } elsif ($target eq 'tex') {
 1059: 	$currentstring .= '\emph{';
 1060:     }
 1061:     return $currentstring;
 1062: }
 1063: 
 1064: sub end_em {
 1065:     my ($target,$token) = @_;
 1066:     my $currentstring = '';
 1067:     if ($target eq 'web') {
 1068: 	$currentstring .= $token->[2];
 1069:     } elsif ($target eq 'tex') {
 1070: 	$currentstring .= '}';
 1071:     } 
 1072:     return $currentstring;
 1073: }
 1074: 
 1075: #-- <q> tag (end tag required)
 1076: sub start_q {
 1077:     my ($target,$token) = @_;
 1078:     my $currentstring = '';
 1079:     if ($target eq 'web') {
 1080: 	$currentstring .= $token->[4];
 1081:     } elsif ($target eq 'tex') {
 1082: 	$currentstring .= '\emph{';
 1083:     }
 1084:     return $currentstring;
 1085: }
 1086: 
 1087: sub end_q {
 1088:     my ($target,$token) = @_;
 1089:     my $currentstring = '';
 1090:     if ($target eq 'web') {
 1091: 	$currentstring .= $token->[2];
 1092:     } elsif ($target eq 'tex') {
 1093: 	$currentstring .= '}';
 1094:     } 
 1095:     return $currentstring;
 1096: }
 1097: 
 1098: #-- <p> tag (end tag optional)
 1099: #optional attribute - align="center|left|right"
 1100: sub start_p {
 1101:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1102:     my $currentstring = '';
 1103:     if ($target eq 'web') {
 1104: 	$currentstring .= $token->[4];
 1105:     } elsif ($target eq 'tex') {
 1106: 	my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
 1107: 	if ($align eq 'center') {
 1108: 	    $currentstring='\begin{center}\par';
 1109: 	} elsif ($align eq 'right') {
 1110: 	    $currentstring='\makebox['.$ENV{'form.textwidth'}.']{\hfill\llap{';
 1111: 	} elsif ($align eq 'left') {
 1112: 	    $currentstring='\noindent\makebox['.$ENV{'form.textwidth'}.']{\rlap{';
 1113: 	}
 1114: 	my $signal=1;#<p> does not work inside <b>...</b> 
 1115: 	foreach my $tag (@$tagstack) {if (lc($tag) eq 'b') {$signal=0;}
 1116: 	if (!$signal) {$currentstring = '';}
 1117: 	}
 1118:     }
 1119:     return $currentstring;
 1120: }
 1121: 
 1122: sub end_p {
 1123:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1124:     my $currentstring = '';
 1125:     if ($target eq 'web') {
 1126: 	$currentstring .= $token->[2];
 1127:     } elsif ($target eq 'tex') {
 1128: 	if ($$tagstack[-1] eq 'p') {
 1129: 	    my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
 1130: 	    if ($align eq 'center') {		
 1131: 		$currentstring .= '\end{center}';
 1132: 	    } elsif ($align eq 'right') {
 1133: 		$currentstring .= '}}';
 1134: 	    } elsif ($align eq 'left') {
 1135: 		$currentstring .= '}\hfill}';
 1136: 	    }
 1137: 	}
 1138:     }
 1139:     return $currentstring;
 1140: }
 1141: 
 1142: #-- <br> tag (end tag forbidden)
 1143: sub start_br {
 1144:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
 1145:     my $currentstring = '';
 1146:     if ($target eq 'web') {
 1147: 	$currentstring .= $token->[4];
 1148:     } elsif ($target eq 'tex') {
 1149: 	if ($$tagstack[-2] ne 'sub' && $$tagstack[-2] ne 'sup') {
 1150: 	    $currentstring .= '\vskip 0.2 mm ';
 1151: 	}
 1152:     }
 1153:     return $currentstring;
 1154: }
 1155: 
 1156: sub end_br {
 1157:     my ($target,$token) = @_;
 1158:     my $currentstring = '';
 1159:     if ($target eq 'web') {
 1160: 	$currentstring .= $token->[2];
 1161:     }
 1162:     return $currentstring;
 1163: }
 1164: 
 1165: #-- <big> tag (end tag required)
 1166: sub start_big {
 1167:     my ($target,$token) = @_;
 1168:     my $currentstring = '';
 1169:     if ($target eq 'web') {
 1170: 	$currentstring .= $token->[4];
 1171:     } elsif ($target eq 'tex') {
 1172: 	$currentstring .= '{\large ';
 1173:     } 
 1174:     return $currentstring;
 1175: }
 1176: 
 1177: sub end_big {
 1178:     my ($target,$token) = @_;
 1179:     my $currentstring = '';
 1180:     if ($target eq 'web') {
 1181: 	$currentstring .= $token->[2];
 1182:     } elsif ($target eq 'tex') {
 1183: 	$currentstring .= '}';
 1184:     }
 1185:     return $currentstring;
 1186: }
 1187: 
 1188: #-- <small> tag (end tag required)
 1189: sub start_small {
 1190:     my ($target,$token) = @_;
 1191:     my $currentstring = '';
 1192:     if ($target eq 'web') {
 1193: 	$currentstring .= $token->[4];
 1194:     } elsif ($target eq 'tex') {
 1195: 	$currentstring .= '{\footnotesize ';
 1196:     }
 1197:     return $currentstring;
 1198: }
 1199: 
 1200: sub end_small {
 1201:     my ($target,$token) = @_;
 1202:     my $currentstring = '';
 1203:     if ($target eq 'web') {
 1204: 	$currentstring .= $token->[2];
 1205:     } elsif ($target eq 'tex') {
 1206: 	$currentstring .= '}';
 1207:     }
 1208:     return $currentstring;
 1209: }
 1210: 
 1211: #-- <basefont> tag (end tag forbidden)
 1212: sub start_basefont {
 1213:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
 1214:     my $currentstring = '';
 1215:     if ($target eq 'web') {
 1216: 	$currentstring = $token->[4];     
 1217:     } elsif ($target eq 'tex') {
 1218: 	my $basesize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval);
 1219: 	if (defined $basesize) {
 1220: 	    $currentstring = '{\\'.$basesize.' ';
 1221: 	}
 1222:     }
 1223:     return $currentstring;
 1224: }
 1225: 
 1226: sub end_basefont {
 1227:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1228:     my $currentstring = '';
 1229:     if ($target eq 'web') {
 1230: 	$currentstring = $token->[4];     
 1231:     } elsif ($target eq 'tex') {
 1232: 	my $basesize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval);
 1233: 	if (defined $basesize) {
 1234: 	    $currentstring = '}';
 1235: 	}
 1236:     }
 1237:     return $currentstring;
 1238: }
 1239: 
 1240: #-- <font> tag (end tag required)
 1241: sub start_font {
 1242:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
 1243:     my $currentstring = '';
 1244:     if ($target eq 'web') {
 1245: 	my $face=&Apache::lonxml::get_param('face',$parstack,$safeeval);
 1246: 	if ($face!~/symbol/i) {
 1247: 	    if (($ENV{'browser.fontenhance'} eq 'on') || 
 1248: 		($ENV{'browser.blackwhite'} eq 'on')) { return ''; }
 1249: 	}
 1250: 	$currentstring = $token->[4];     
 1251:     }  elsif ($target eq 'tex') {
 1252: 	my $fontsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval);
 1253: 	if (defined $fontsize) {
 1254: 	    $currentstring = '{\\'.$fontsize.' ';
 1255: 	}
 1256:     }
 1257:     return $currentstring;
 1258: }
 1259: 
 1260: sub end_font {
 1261:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
 1262:     my $currentstring = '';
 1263:     if ($target eq 'web') {
 1264: 	$currentstring = $token->[2];    
 1265:     }  elsif ($target eq 'tex') {
 1266: 	my $fontsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval);
 1267: 	if (defined $fontsize) {
 1268: 	    $currentstring = '}';
 1269: 	}
 1270:     }
 1271:     return $currentstring;
 1272: }
 1273:  
 1274: #-- <strike> tag (end tag required)
 1275: sub start_strike {
 1276:     my ($target,$token) = @_;
 1277:     my $currentstring = '';
 1278:     if ($target eq 'web') {
 1279: 	$currentstring .= $token->[4];
 1280:     } elsif ($target eq 'tex') {
 1281: 	&Apache::lonxml::startredirection();
 1282:     } 
 1283:     return $currentstring;
 1284: }
 1285: 
 1286: sub end_strike {
 1287:     my ($target,$token) = @_;
 1288:     my $currentstring = '';
 1289:     if ($target eq 'web') {
 1290: 	$currentstring .= $token->[2];
 1291:     } elsif ($target eq 'tex') {
 1292: 	$currentstring=&Apache::lonxml::endredirection();
 1293: 	$currentstring=~s/(\S)(\s+)(\S)/$1\}$2\\underline\{$3/g; 
 1294: 	$currentstring=~s/^\s*(\S)/\\underline\{$1/; 
 1295: 	$currentstring=~s/(\S)\s*$/$1\}/;
 1296:     }
 1297:     return $currentstring;
 1298: }
 1299: 
 1300: #-- <s> tag (end tag required)
 1301: sub start_s {
 1302:     my ($target,$token) = @_;
 1303:     my $currentstring = '';
 1304:     if ($target eq 'web') {
 1305: 	$currentstring .= $token->[4];
 1306:     } elsif ($target eq 'tex') {
 1307: 	&Apache::lonxml::startredirection();
 1308:     } 
 1309:     return $currentstring;
 1310: }
 1311: 
 1312: sub end_s {
 1313:     my ($target,$token) = @_;
 1314:     my $currentstring = '';
 1315:     if ($target eq 'web') {
 1316: 	$currentstring .= $token->[2];
 1317:     } elsif ($target eq 'tex') {
 1318: 	$currentstring=&Apache::lonxml::endredirection();
 1319: 	$currentstring=~s/(\S)(\s+)(\S)/$1\}$2\\underline\{$3/g;
 1320: 	$currentstring=~s/^\s*(\S)/\\underline\{$1/;
 1321: 	$currentstring=~s/(\S)\s*$/$1\}/;	
 1322:     }
 1323:     return $currentstring;
 1324: }
 1325: 
 1326: #-- <sub> tag (end tag required)
 1327: sub start_sub {
 1328:     my ($target,$token) = @_;
 1329:     my $currentstring = '';
 1330:     if ($target eq 'web') {
 1331: 	$currentstring .= $token->[4];
 1332:     } elsif ($target eq 'tex') {
 1333: 	$currentstring .= '\ensuremath{_{';
 1334:     } 
 1335:     return $currentstring;
 1336: }
 1337: 
 1338: sub end_sub {
 1339:     my ($target,$token) = @_;
 1340:     my $currentstring = '';
 1341:     if ($target eq 'web') {
 1342: 	$currentstring .= $token->[2];
 1343:     } elsif ($target eq 'tex') {
 1344: 	$currentstring .= '}}';
 1345:     }
 1346:     return $currentstring;
 1347: }
 1348: 
 1349: #-- <sup> tag (end tag required)
 1350: sub start_sup {
 1351:     my ($target,$token) = @_;
 1352:     my $currentstring = '';
 1353:     if ($target eq 'web') {
 1354: 	$currentstring .= $token->[4];
 1355:     } elsif ($target eq 'tex') {
 1356: 	$currentstring .= '\ensuremath{^{';
 1357:     } 
 1358:     return $currentstring;
 1359: }
 1360: 
 1361: sub end_sup {
 1362:     my ($target,$token) = @_;
 1363:     my $currentstring = '';
 1364:     if ($target eq 'web') {
 1365: 	$currentstring .= $token->[2];
 1366:     } elsif ($target eq 'tex') {
 1367: 	$currentstring .= '}}';
 1368:     }
 1369:     return $currentstring;
 1370: }
 1371: 
 1372: #-- <hr> tag (end tag forbidden)
 1373: sub start_hr {
 1374:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1375:     my $currentstring = '';
 1376:     if ($target eq 'web') {
 1377: 	$currentstring .= $token->[4];
 1378:     } elsif ($target eq 'tex') {
 1379: 	my $LaTeXwidth = &Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval,undef,0);
 1380: 	if (defined $LaTeXwidth) {
 1381: 	    if ($LaTeXwidth=~/^%/) {
 1382: 		substr($LaTeXwidth,0,1)='';
 1383: 		$LaTeXwidth=($LaTeXwidth/100).'\textwidth';
 1384: 	    }
 1385: 	} else {
 1386: 	    $LaTeXwidth ='0.9\textwidth';
 1387: 	}
 1388: 	my ($pre,$post);
 1389: 	my $align=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
 1390: 	if (($align eq 'center') || (not defined $align)) {
 1391: 	    $pre=''; $post='';
 1392: 	} elsif ($align eq 'left') {
 1393: 	    $pre='\rlap{'; $post='} \hfill';
 1394: 	} elsif ($align eq 'right') {
 1395: 	    $pre=' \hfill \llap{'; $post='}';
 1396: 	}
 1397: 	$currentstring .= ' \vskip 0 mm \noindent\makebox['.$LaTeXwidth.']{'.$pre.'\makebox['.
 1398:                                     $LaTeXwidth.'][b]{\hrulefill}'.$post.'}\vskip 0 mm ';
 1399:     } 
 1400:     return $currentstring;
 1401: }
 1402: 
 1403: sub end_hr {
 1404:     my ($target,$token) = @_;
 1405:     my $currentstring = '';
 1406:     if ($target eq 'web') {
 1407: 	$currentstring .= $token->[2];
 1408:     }
 1409:     return $currentstring;
 1410: }
 1411: 
 1412: #-- <div> tag (end tag required)
 1413: sub start_div {
 1414:     my ($target,$token) = @_;
 1415:     my $currentstring = '';
 1416:     if ($target eq 'web') {
 1417: 	$currentstring .= $token->[4];
 1418:     } 
 1419:     return $currentstring;
 1420: }
 1421: 
 1422: sub end_div {
 1423:     my ($target,$token) = @_;
 1424:     my $currentstring = '';
 1425:     if ($target eq 'web') {
 1426: 	$currentstring .= $token->[2];
 1427:     } 
 1428:     return $currentstring;
 1429: }
 1430: 
 1431: #-- <a> tag (end tag required)
 1432: sub start_a {
 1433:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1434:     my $currentstring = '';
 1435:     if ($target eq 'web') {
 1436: 	$currentstring .= $token->[4];
 1437:     } elsif ($target eq 'tex') {
 1438: 	my $a=&Apache::lonxml::get_param('href',$parstack,$safeeval,undef,1);
 1439: 	my $b=&Apache::lonxml::get_param('name',$parstack,$safeeval,undef,1);
 1440: 	if ($a=~/\S/) {
 1441: 	    $a=~s/([^\\])%/$1\\\%/g;
 1442: 	    $currentstring .= '\ref{URI: '.$a.'}';
 1443: 	} elsif ($b=~/\S/) {
 1444: 	    $currentstring .= '\ref{Anchor: '.$b.'}';
 1445: 	} else {
 1446: 	    $currentstring.='';
 1447: 	}
 1448:     }
 1449:     return $currentstring;
 1450: }
 1451: 
 1452: sub end_a {
 1453:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1454:     my $currentstring = '';
 1455:     if ($target eq 'web') {
 1456: 	$currentstring .= $token->[2];
 1457:     }
 1458:     return $currentstring;
 1459: }
 1460: 
 1461: #-- <li> tag (end tag optional)
 1462: sub start_li {
 1463:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1464:     my $currentstring = '';
 1465:     if ($target eq 'web') {
 1466: 	$currentstring = $token->[4];     
 1467:     } elsif ($target eq 'tex') {
 1468: 	my  $type=&Apache::lonxml::get_param('type',$parstack,$safeeval,undef,1);
 1469: 	if ($type=~/circle/) {
 1470: 	    $currentstring .= ' \item[o] ';
 1471: 	} elsif ($type=~/square/) {
 1472: 	    $currentstring .= ' \item[$\Box$] ';
 1473: 	} elsif ($type ne '') { 
 1474: 	    $currentstring .= ' \item['.$type.'] ';
 1475: 	} else {
 1476: 	    $currentstring .= ' \item ';
 1477: 	}  
 1478:     } 
 1479:     return $currentstring;
 1480: }
 1481: 
 1482: sub end_li {
 1483:     my ($target,$token) = @_;
 1484:     my $currentstring = '';
 1485:     if ($target eq 'web') {
 1486: 	$currentstring = $token->[2];     
 1487:     } 
 1488:     return $currentstring;
 1489: }
 1490: 
 1491: #-- <u> tag (end tag required)
 1492: sub start_u {
 1493:     my ($target,$token) = @_;
 1494:     my $currentstring = '';
 1495:     if ($target eq 'web') {
 1496: 	$currentstring .= $token->[4];
 1497:     } elsif ($target eq 'tex') {
 1498: 	&Apache::lonxml::startredirection();
 1499:     } 
 1500:     return $currentstring;
 1501: }
 1502: 
 1503: sub end_u {
 1504:     my ($target,$token) = @_;
 1505:     my $currentstring = '';
 1506:     if ($target eq 'web') {
 1507: 	$currentstring .= $token->[2];
 1508:     } elsif ($target eq 'tex') {
 1509: 	$currentstring=&Apache::lonxml::endredirection();
 1510: 	$currentstring=~s/(\S)(\s+)(\S)/$1\}$2\\underline\{$3/g;
 1511: 	$currentstring=~s/^\s*(\S)/\\underline\{$1/;
 1512: 	$currentstring=~s/(\S)\s*$/$1\}/;		
 1513:     }
 1514:     return $currentstring;
 1515: }
 1516: 
 1517: #-- <ul> tag (end tag required)
 1518: sub start_ul {
 1519:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1520:     my $currentstring = '';
 1521:     if ($target eq 'web') {
 1522: 	$currentstring = $token->[4];     
 1523:     } elsif ($target eq 'tex') {
 1524: 	my $TeXtype=&Apache::lonxml::get_param('type',$parstack,$safeeval,undef,0);
 1525: 	if ($TeXtype eq 'disc') {
 1526: 	    $currentstring .= ' \renewcommand{\labelitemi}{$\bullet$}
 1527:                                 \renewcommand{\labelitemii}{$\bullet$} 
 1528:                                 \renewcommand{\labelitemiii}{$\bullet$}
 1529:                                 \renewcommand{\labelitemiv}{$\bullet$}';
 1530: 	} elsif ($TeXtype eq 'circle') {
 1531: 	    $currentstring .= ' \renewcommand{\labelitemi}{$\circ$}
 1532:                                 \renewcommand{\labelitemii}{$\circ$} 
 1533:                                 \renewcommand{\labelitemiii}{$\circ$}
 1534:                                 \renewcommand{\labelitemiv}{$\circ$}';
 1535: 	} elsif ($TeXtype eq 'square') {
 1536: 	    $currentstring .= ' \renewcommand{\labelitemi}{$\diamond$}
 1537:                                 \renewcommand{\labelitemii}{$\diamond$} 
 1538:                                 \renewcommand{\labelitemiii}{$\diamond$}
 1539:                                 \renewcommand{\labelitemiv}{$\diamond$}';
 1540: 	}
 1541: 	$currentstring .= '\begin{itemize}';  
 1542:     } 
 1543:     return $currentstring;
 1544: }
 1545: 
 1546: sub end_ul {
 1547:     my ($target,$token) = @_;
 1548:     my $currentstring = '';
 1549:     if ($target eq 'web') {
 1550: 	$currentstring = $token->[2];     
 1551:     } elsif ($target eq 'tex') {
 1552: 	$currentstring = '\end{itemize} \renewcommand{\labelitemi}{$\bullet$}
 1553:                                 \renewcommand{\labelitemii}{$\bullet$} 
 1554:                                 \renewcommand{\labelitemiii}{$\bullet$}
 1555:                                 \renewcommand{\labelitemiv}{$\bullet$}';  
 1556:     } 
 1557:     return $currentstring;
 1558: }
 1559: 
 1560: #-- <menu> tag (end tag required)
 1561: sub start_menu {
 1562:     my ($target,$token) = @_;
 1563:     my $currentstring = '';
 1564:     if ($target eq 'web') {
 1565: 	$currentstring = $token->[4];     
 1566:     } elsif ($target eq 'tex') {
 1567: 	$currentstring = " \\begin{itemize} ";  
 1568:     } 
 1569:     return $currentstring;
 1570: }
 1571: 
 1572: sub end_menu {
 1573:     my ($target,$token) = @_;
 1574:     my $currentstring = '';
 1575:     if ($target eq 'web') {
 1576: 	$currentstring = $token->[2];     
 1577:     } elsif ($target eq 'tex') {
 1578: 	$currentstring = " \\end{itemize}";  
 1579:     } 
 1580:     return $currentstring;
 1581: }
 1582: 
 1583: #-- <dir> tag (end tag required)
 1584: sub start_dir {
 1585:     my ($target,$token) = @_;
 1586:     my $currentstring = '';
 1587:     if ($target eq 'web') {
 1588: 	$currentstring = $token->[4];     
 1589:     } elsif ($target eq 'tex') {
 1590: 	$currentstring = " \\begin{itemize} ";  
 1591:     } 
 1592:     return $currentstring;
 1593: }
 1594: 
 1595: sub end_dir {
 1596:     my ($target,$token) = @_;
 1597:     my $currentstring = '';
 1598:     if ($target eq 'web') {
 1599: 	$currentstring = $token->[2];     
 1600:     } elsif ($target eq 'tex') {
 1601: 	$currentstring = " \\end{itemize}";  
 1602:     } 
 1603:     return $currentstring;
 1604: }
 1605: 
 1606: #-- <ol> tag (end tag required)
 1607: sub start_ol {
 1608:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1609:     my $currentstring = '';
 1610:     if ($target eq 'web') {
 1611: 	$currentstring = $token->[4];     
 1612:     } elsif ($target eq 'tex') {
 1613: 	my $type=&Apache::lonxml::get_param('type',$parstack,$safeeval,undef,0);
 1614: 	if ($type eq '1') {
 1615: 	    $currentstring .= ' \renewcommand{\labelenumi}{\arabic{enumi}.}
 1616:                                 \renewcommand{\labelenumii}{\arabic{enumii}.} 
 1617:                                 \renewcommand{\labelenumiii}{\arabic{enumiii}.}
 1618:                                 \renewcommand{\labelenumiv}{\arabic{enumiv}.}';
 1619: 	} elsif ($type eq 'A') {
 1620: 	    $currentstring .= ' \renewcommand{\labelenumi}{\Alph{enumi}.}
 1621:                                 \renewcommand{\labelenumii}{\Alph{enumii}.} 
 1622:                                 \renewcommand{\labelenumiii}{\Alph{enumiii}.}
 1623:                                 \renewcommand{\labelenumiv}{\Alph{enumiv}.}';
 1624: 	} elsif ($type eq 'a') {
 1625: 	    $currentstring .= ' \renewcommand{\labelenumi}{\alph{enumi}.}
 1626:                                 \renewcommand{\labelenumii}{\alph{enumii}.}
 1627:                                 \renewcommand{\labelenumiii}{\alph{enumiii}.}
 1628:                                 \renewcommand{\labelenumiv}{\alph{enumiv}.} ';
 1629: 	} elsif ($type eq 'i') {
 1630: 	    $currentstring .= ' \renewcommand{\labelenumi}{\roman{enumi}.}
 1631:                                 \renewcommand{\labelenumii}{\roman{enumii}.}
 1632:                                 \renewcommand{\labelenumiii}{\roman{enumiii}.}
 1633:                                 \renewcommand{\labelenumiv}{\roman{enumiv}.} ';
 1634: 	} elsif ($type eq 'I') {
 1635: 	    $currentstring .= ' \renewcommand{\labelenumi}{\Roman{enumi}.}
 1636:                                 \renewcommand{\labelenumii}{\Roman{enumii}.}
 1637:                                 \renewcommand{\labelenumiii}{\Roman{enumiii}.}
 1638:                                 \renewcommand{\labelenumiv}{\Roman{enumiv}.} ';
 1639: 	}
 1640: 	$currentstring .= '\begin{enumerate}';  
 1641:     } 
 1642:     return $currentstring;
 1643: }
 1644: 
 1645: sub end_ol {
 1646:     my ($target,$token) = @_;
 1647:     my $currentstring = '';
 1648:     if ($target eq 'web') {
 1649: 	$currentstring = $token->[2];     
 1650:     } elsif ($target eq 'tex') {
 1651: 	$currentstring = '\end{enumerate} \renewcommand{\labelenumi}{\arabic{enumi}.}
 1652:                                           \renewcommand{\labelenumii}{\arabic{enumii}.}
 1653:                                           \renewcommand{\labelenumiii}{\arabic{enumiii}.}
 1654:                                           \renewcommand{\labelenumiv}{\arabic{enumiv}.}';  
 1655:     } 
 1656:     return $currentstring;
 1657: }
 1658: 
 1659: #-- <dl> tag (end tag required)
 1660: sub start_dl {
 1661:     my ($target,$token) = @_;
 1662:     my $currentstring = '';
 1663:     if ($target eq 'web') {
 1664: 	$currentstring = $token->[4];     
 1665:     } elsif ($target eq 'tex') {
 1666: 	$currentstring = '\begin{description}';
 1667: 	@Apache::londefdef::description=();
 1668: 	$Apache::londefdef::DD_redirection=0;
 1669: 	$Apache::londefdef::DT_redirection=0;
 1670:     } 
 1671:     return $currentstring;
 1672: }
 1673: 
 1674: sub end_dl {
 1675:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1676:     my $currentstring = '';
 1677:     if ($target eq 'web') {
 1678: 	$currentstring = $token->[2];     
 1679:     } elsif ($target eq 'tex') {
 1680: 	if ($Apache::londefdef::DT_redirection) {
 1681: 	    my $data=&item_cleanup;
 1682: 	    push @Apache::londefdef::description,'\item['.$data.']';
 1683: 	    $Apache::londefdef::DT_redirection=0;
 1684: 	} elsif ($Apache::londefdef::DD_redirection) {
 1685: 	    $Apache::londefdef::description[-1].=&Apache::lonxml::endredirection();
 1686: 	}
 1687: 	foreach my $element (@Apache::londefdef::description) {
 1688: 	    $currentstring.=' '.$element.' ';
 1689: 	}
 1690: 	@Apache::londefdef::description=();
 1691: 	$currentstring.='\end{description}';  
 1692:     } 
 1693:     return $currentstring;
 1694: }
 1695: 
 1696: #-- <dt> tag (end tag optional)
 1697: sub start_dt {
 1698:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1699:     my $currentstring='';
 1700:     if ($target eq 'web') {
 1701: 	$currentstring = $token->[4];     
 1702:     } elsif ($target eq 'tex') {
 1703: 	if ($Apache::londefdef::DT_redirection) {
 1704: 	    my $data=&item_cleanup;
 1705: 	    push @Apache::londefdef::description,'\item['.$data.']';
 1706: 	    $Apache::londefdef::DT_redirection=0;
 1707: 	} elsif ($Apache::londefdef::DD_redirection) {
 1708: 	    $Apache::londefdef::description[-1].=&Apache::lonxml::endredirection();
 1709: 	    $Apache::londefdef::DD_redirection=0;
 1710: 	}
 1711: 	&Apache::lonxml::startredirection();
 1712: 	$Apache::londefdef::DT_redirection=1;
 1713:     } 
 1714:     return $currentstring;
 1715: }
 1716: 
 1717: sub end_dt {
 1718:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1719:     my $currentstring = '';
 1720:     if ($target eq 'web') {
 1721: 	$currentstring = $token->[2];    
 1722:     } elsif ($target eq 'tex') {
 1723: 	my $data=&item_cleanup;
 1724: 	push @Apache::londefdef::description,'\item['.$data.']';
 1725: 	$Apache::londefdef::DT_redirection=0;
 1726:     } 
 1727:     return $currentstring;
 1728: }
 1729: 
 1730: sub item_cleanup {
 1731:     my $item=&Apache::lonxml::endredirection();
 1732:     $item=~s/\\begin{center}//g;
 1733:     $item=~s/\\end{center}//g;
 1734:     return $item;
 1735: }
 1736: 
 1737: #-- <dd> tag (end tag optional)
 1738: sub start_dd {
 1739:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1740:     my $currentstring = '';
 1741:     if ($target eq 'web') {
 1742: 	$currentstring = $token->[4];     
 1743:     } elsif ($target eq 'tex') {
 1744: 	if ($Apache::londefdef::DT_redirection) {
 1745: 	    my $data=&item_cleanup;
 1746: 	    push @Apache::londefdef::description,'\item['.$data.']';
 1747: 	    $Apache::londefdef::DT_redirection=0;
 1748: 	}
 1749: 	$Apache::londefdef::DD_redirection=1;
 1750: 	&Apache::lonxml::startredirection();
 1751:     } 
 1752:     return $currentstring;
 1753: }
 1754: 
 1755: sub end_dd {
 1756:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1757:     my $currentstring = '';
 1758:     if ($target eq 'web') {
 1759: 	$currentstring = $token->[2];    
 1760:     }  elsif ($target eq 'tex') {
 1761: 	$Apache::londefdef::description[-1].=&Apache::lonxml::endredirection();
 1762: 	$Apache::londefdef::DD_redirection=0;
 1763:     }
 1764:     return $currentstring;
 1765: }
 1766: 
 1767: #-- <table> tag (end tag required)
 1768: #list of supported attributes: border,width,TeXwidth
 1769: sub start_table {
 1770:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1771:     my ($textwidth,$currentstring)=('','');
 1772:     if ($target eq 'web') {
 1773: 	$currentstring = $token->[4];     
 1774:     } elsif ($target eq 'tex') {
 1775: 	my $aa = {};
 1776: 	push @Apache::londefdef::table, $aa; 
 1777: 	$Apache::londefdef::table[-1]{'row_number'} = -1;
 1778:         #table's width 
 1779:         #default coincides with text line length
 1780: 	if ($#Apache::londefdef::table==0) {
 1781: 	    $textwidth=&recalc($ENV{'form.textwidth'}); #result is always in mm
 1782: 	    $textwidth=~/(\d+\.?\d*)/;
 1783: 	    $textwidth=0.95*$1; #accounts "internal" LaTeX space for table frame
 1784: 	} else {
 1785: 	    if ($Apache::londefdef::table[-2]{'TeXlen'}[$Apache::londefdef::table[-2]{'row_number'}][$Apache::londefdef::table[-2]{'counter_columns'}]=~/\d/) {
 1786: 		#the maximum width of nested table is determined by LATeX width of parent cell
 1787: 		$textwidth=$Apache::londefdef::table[-2]{'TeXlen'}[$Apache::londefdef::table[-2]{'row_number'}][$Apache::londefdef::table[-2]{'counter_columns'}]; 
 1788: 	    } else {
 1789:               #try to use all space not used before (minus 5% for LaTeX table internal) - rather silly
 1790: 		my $textwidth=$Apache::londefdef::table[-2]{'width'};
 1791: 		for (my $i=0;$i<$Apache::londefdef::table[-2]{'counter_columns'};$i++) {
 1792: 		    $textwidth=$textwidth-$Apache::londefdef::table[-2]{'TeXlen'}[0][$i];
 1793: 		}
 1794: 	    }
 1795: 	}
 1796: 	my $TeXwidth = &Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval,undef,0);
 1797: 	if (not defined $TeXwidth) {
 1798: 	    my $htmlwidth = &Apache::lonxml::get_param('width',$parstack,$safeeval,undef,1);
 1799: 	    if ($htmlwidth=~/%/) {
 1800:                 $Apache::londefdef::table[-1]{'percent'}=1;
 1801: 		$htmlwidth=~/(\d+)/;
 1802: 		$Apache::londefdef::table[-1]{'width'}=$1*$textwidth/100;;
 1803: 	    } else {
 1804: 		$Apache::londefdef::table[-1]{'width'}=$textwidth;
 1805: 	    }
 1806: 	} elsif ($TeXwidth=~/%/) {
 1807: 	    $Apache::londefdef::table[-1]{'percent'}=1;
 1808: 	    $TeXwidth=~/(\d+)/;
 1809:             $Apache::londefdef::table[-1]{'width'}=$1*$textwidth/100;
 1810: 	} else {
 1811: 	    $Apache::londefdef::table[-1]{'width'}=$TeXwidth;
 1812: 	}        
 1813:         #table's border
 1814: 	my $border = &Apache::lonxml::get_param('border',$parstack,$safeeval); 
 1815:         my $permission=&Apache::lonxml::get_param('TeXDropEmptyColumns',$parstack,$safeeval,undef,0);
 1816: 	unless (defined $border) { $border = 0; }
 1817: 	if ($border) { 
 1818: 	    $Apache::londefdef::table[-1]{'hinc'} = '\hline '; 
 1819: 	    $Apache::londefdef::table[-1]{'vinc'} = '&'; 
 1820: 	    $Apache::londefdef::table[-1]{'vvinc'} = '|';
 1821: 	} else {
 1822: 	    $Apache::londefdef::table[-1]{'hinc'} = ''; 
 1823: 	    $Apache::londefdef::table[-1]{'vinc'} = '&'; 
 1824: 	    $Apache::londefdef::table[-1]{'vvinc'} = '';
 1825: 	}
 1826: 	if ($#Apache::londefdef::table==0) {
 1827: 	    $Apache::londefdef::table[-1]{'output'}='\newline\setlength{\tabcolsep}{1 mm}';
 1828: 	}
 1829: 	$Apache::londefdef::table[-1]{'output'}.=' \noindent \begin{tabular} ';
 1830:         $Apache::londefdef::table[-1]{'TeXlen'}=[];
 1831:         $Apache::londefdef::table[-1]{'objectlen'}=[];
 1832:         $Apache::londefdef::table[-1]{'maxlen'}=[];
 1833:         $Apache::londefdef::table[-1]{'minlen'}=[];
 1834:         $Apache::londefdef::table[-1]{'content'}=[];
 1835:         $Apache::londefdef::table[-1]{'align'}=[];
 1836:         $currentstring='\keephidden{NEW TABLE ENTRY}';
 1837:    }
 1838:     return $currentstring;
 1839: }
 1840:  
 1841: sub end_table {
 1842:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 1843:     my $currentstring = '';
 1844:     if ($target eq 'web') {
 1845: 	$currentstring = $token->[2];     
 1846:     } elsif ($target eq 'tex') {
 1847: 	my $inmemory = '';
 1848: 	my $output = '';
 1849: 	my $WARNING='';
 1850:         #width of columns from TeXwidth attributes
 1851: 	for (my $in=0;$in<=$Apache::londefdef::table[-1]{'row_number'};$in++) {
 1852: 	    for (my $jn=0;$jn<=$Apache::londefdef::table[-1]{'counter_columns'};$jn++) {
 1853: 		if ($Apache::londefdef::table[-1]{'TeXlen'}[0][$jn]<$Apache::londefdef::table[-1]{'TeXlen'}[$in][$jn]) {
 1854: 		    $Apache::londefdef::table[-1]{'TeXlen'}[0][$jn]=$Apache::londefdef::table[-1]{'TeXlen'}[$in][$jn];
 1855: 		}	
 1856: 	    }
 1857: 	}
 1858:         #free space and number of empty columns
 1859: 	my ($available_space,$empty_columns)=($Apache::londefdef::table[-1]{'width'},0);
 1860: ##	&Apache::lonnet::logthis("Available space $Apache::londefdef::table[-1]{'width'}");
 1861: 	for (my $jn=0;$jn<=$Apache::londefdef::table[-1]{'counter_columns'};$jn++) {
 1862: 	    if ($Apache::londefdef::table[-1]{'TeXlen'}[0][$jn]==0) {
 1863: 		$empty_columns++;
 1864: 	    } else {
 1865: 		$available_space=$available_space-$Apache::londefdef::table[-1]{'TeXlen'}[0][$jn];
 1866: 	    }
 1867: 	}
 1868:         #boundaries for contents columns
 1869: 	my @min_len=();#columns can not be narrower 
 1870: 	my @max_len=();#maximum length of column
 1871: 	for (my $jn=0;$jn<=$Apache::londefdef::table[-1]{'counter_columns'};$jn++) {
 1872: 		my ($localmin,$localmax)=(0,0);
 1873: 		for (my $in=0;$in<=$Apache::londefdef::table[-1]{'row_number'};$in++) {
 1874: 		    if ($localmin<$Apache::londefdef::table[-1]{'minlen'}[$in][$jn]) {
 1875: 			$localmin=$Apache::londefdef::table[-1]{'minlen'}[$in][$jn];
 1876: 		    }
 1877: 		    if ($localmax<$Apache::londefdef::table[-1]{'maxlen'}[$in][$jn]) {
 1878: 			$localmax=$Apache::londefdef::table[-1]{'maxlen'}[$in][$jn];
 1879: 		    }
 1880: 		}
 1881: 		push @min_len, $localmin;
 1882: 		push @max_len, $localmax;
 1883: 	}
 1884: 	for (my $jn=0;$jn<=$Apache::londefdef::table[-1]{'counter_columns'};$jn++) {
 1885: 	    my $localmin=0,;
 1886: 	    for (my $in=0;$in<=$Apache::londefdef::table[-1]{'row_number'};$in++) {
 1887: 		if ($localmin<$Apache::londefdef::table[-1]{'objectlen'}[$in][$jn]) {
 1888: 		    $localmin=$Apache::londefdef::table[-1]{'objectlen'}[$in][$jn];
 1889: 		}
 1890: 	    }
 1891: 	    if ($max_len[$jn]<$localmin) {$max_len[$jn]=$localmin;}#object size is bigger
 1892: 	    if ($min_len[$jn]<$localmin) {$min_len[$jn]=$localmin;}#object size is bigger
 1893: 	    if ($Apache::londefdef::table[-1]{'TeXlen'}[0][$jn]!=0) {
 1894: 		$min_len[$jn]=0;
 1895: 		$max_len[$jn]=0;
 1896: 	    }
 1897: 	}
 1898:        #final adjustment of column width
 1899: 	my @fwidth=@{$Apache::londefdef::table[-1]{'TeXlen'}[0]};#final width array
 1900: 	my @adjust=();
 1901:         #step 1. adjustment by maximum value
 1902: 	my $space_neeeded=0;
 1903: 	for (my $jn=0;$jn<=$#max_len;$jn++) {
 1904: 	    $space_neeeded=$space_neeeded+$max_len[$jn];
 1905: 	}
 1906: 	if ($space_neeeded<=$available_space) {
 1907: ##	    &Apache::lonnet::logthis("I am in position 1: $space_neeeded <= $available_space");
 1908: 	    for (my $jn=0;$jn<=$#max_len;$jn++) {
 1909: 		if ($fwidth[$jn]==0) {
 1910: 		    $fwidth[$jn]=$max_len[$jn];
 1911: 		}
 1912: 	    }
 1913: 	} else {
 1914:         #step 2. adjustment by minimum value (estimation)
 1915: 	    $space_neeeded=0;
 1916: 	    for (my $jn=0;$jn<=$#min_len;$jn++) {
 1917: 		$space_neeeded+=$min_len[$jn];
 1918: 	    }
 1919: 	    if ($space_neeeded>$available_space) {
 1920: ##		&Apache::lonnet::logthis("I am in position 2");
 1921: 		$WARNING=' \textbf{NOT ENOUGH SPACE FOR TABLE} ';
 1922: 		for (my $jn=0;$jn<=$#max_len;$jn++) {
 1923: 		    if ($fwidth[$jn]==0) {
 1924: 			$fwidth[$jn]=$min_len[$jn];
 1925: 		    }
 1926: 		}
 1927: 	    } else {
 1928: 	      #step 3. adjustment over minimal + corrections
 1929: ##		&Apache::lonnet::logthis("I am in position 3");
 1930: 		my $enlarge_coef=$available_space/$space_neeeded;
 1931: 		my $acsessive=0;
 1932: 		for (my $jn=0;$jn<=$#min_len;$jn++) {
 1933: 		    $adjust[$jn]=$min_len[$jn]*$enlarge_coef;
 1934: 		    if ($adjust[$jn]>$max_len[$jn]) {
 1935: 			$fwidth[$jn]=$max_len[$jn];
 1936: 			$acsessive=$acsessive+$adjust[$jn]-$max_len[$jn];
 1937: 			$adjust[$jn]=0;
 1938: 		    }
 1939: 		}
 1940: 		if ($acsessive>0) {
 1941: 		#we have an excess of space and can redistribute it
 1942: 		    my $notempty_columns=0;
 1943: 		    for (my $jn=0;$jn<=$#min_len;$jn++) {
 1944: 			if ($adjust[$jn]!=0) {
 1945: 			    $notempty_columns++;
 1946: 			}
 1947: 		    }
 1948: 		    my $per_column=$acsessive/$notempty_columns;
 1949: 		    for (my $jn=0;$jn<=$#min_len;$jn++) {
 1950: 			if ($adjust[$jn]!=0) {
 1951: 			    $adjust[$jn]+=$per_column;
 1952: 			    $fwidth[$jn]=$adjust[$jn];
 1953: 			}
 1954: 		    }
 1955: 		}
 1956: 	    }
 1957: 	}
 1958:         #recalculation for the use of all available width if width is defined in %
 1959:         if ($Apache::londefdef::table[-1]{'percent'}==1) {
 1960: 	    my $current=0; 
 1961: 	    for (my $i=0;$i<=$#fwidth;$i++) {  
 1962: 		$current+=$fwidth[$i];
 1963: 	    }
 1964: 	    my $coef=$Apache::londefdef::table[-1]{'width'}/$current;
 1965: 	    for (my $i=0;$i<=$#fwidth;$i++) {  
 1966: 		$fwidth[$i]*=$coef;
 1967: 	    }
 1968: 	}
 1969:         #removing of empty columns if allowed
 1970:         my $permission=&Apache::lonxml::get_param('TeXDropEmptyColumns',$parstack,$safeeval,undef,0);
 1971: 	if ($permission eq 'yes') {
 1972: 	    my @cleaned_table=();
 1973:             my @cleaned_header=();
 1974: 	    my $colind=0;
 1975: 	    for (my $jn=0;$jn<=$Apache::londefdef::table[-1]{'counter_columns'};$jn++) {
 1976: 		if ($fwidth[$jn]!=0) {
 1977: 		    #we need to copy column
 1978: 		    for (my $in=0;$in<=$Apache::londefdef::table[-1]{'row_number'};$in++) {
 1979: 			$cleaned_table[$in][$colind]=$Apache::londefdef::table[-1]{'content'}[$in][$jn];
 1980: 			$cleaned_header[$colind]=$fwidth[$jn];
 1981: 		    }
 1982: 		    $colind++;
 1983: 		}
 1984: 	    }
 1985: 	    $Apache::londefdef::table[-1]{'content'}=\@cleaned_table;
 1986: 	    @fwidth=@cleaned_header;
 1987: 	}
 1988: 	#construct header of the table
 1989: 	my $header_of_table = '{'.$Apache::londefdef::table[-1]{'vvinc'};
 1990: 	for (my $in=0;$in<=$#fwidth;$in++) {
 1991: 	    $header_of_table.='p{'.$fwidth[$in].' mm}'.$Apache::londefdef::table[-1]{'vvinc'};
 1992: 	}
 1993: 	$header_of_table .= '}';
 1994: 	#fill the table
 1995: 	for (my $in=0;$in<=$Apache::londefdef::table[-1]{'row_number'};$in++) {
 1996: 	    for (my $jn=0;$jn<=$#fwidth;$jn++) {
 1997: 		if ($Apache::londefdef::table[-1]{'align'}[$in][$jn] eq 'c') {
 1998: 		    $output.='\begin{center}';
 1999: 		} elsif ($Apache::londefdef::table[-1]{'align'}[$in][$jn] eq 'r') {
 2000: 		    $output.=' \hfill \llap{'
 2001: 		}
 2002: 		$output.=$Apache::londefdef::table[-1]{'content'}[$in][$jn];
 2003: 		if ($Apache::londefdef::table[-1]{'align'}[$in][$jn] eq 'c') {
 2004: 		    $output.='\end{center}';
 2005: 		} elsif ($Apache::londefdef::table[-1]{'align'}[$in][$jn] eq 'r') {
 2006: 		    $output.='} ';
 2007: 		}
 2008:                 if ($jn!=$#fwidth) {$output.=' '.$Apache::londefdef::table[-1]{'vinc'};}
 2009: 	    }
 2010: 	    $output.=' \\\\ '.$Apache::londefdef::table[-1]{'hinc'}.' ';
 2011: 	}
 2012: 	$Apache::londefdef::table[-1]{'output'} .= $header_of_table.$Apache::londefdef::table[-1]{'hinc'}.$output.'\end{tabular}\vskip 0 mm ';
 2013: 	if ($#Apache::londefdef::table > 0) {	    
 2014: 	    my $inmemory = $Apache::londefdef::table[-1]{'output'};
 2015: 	    pop @Apache::londefdef::table;
 2016: 	    push @{$Apache::londefdef::table[-1]{'include'}}, $inmemory;
 2017: 	} else {
 2018: 	    $currentstring .= $Apache::londefdef::table[-1]{'output'};
 2019: 	    pop @Apache::londefdef::table;
 2020: 	    undef @Apache::londefdef::table;
 2021: 	}
 2022:     }
 2023:     return $currentstring;
 2024: }
 2025: 
 2026: #-- <tr> tag (end tag optional)
 2027: sub start_tr {
 2028:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2029:     my $currentstring = '';
 2030:     if ($target eq 'web') {
 2031: 	$currentstring = $token->[4];     
 2032:     } elsif ($target eq 'tex') {
 2033: 	$Apache::londefdef::table[-1]{'row_number'}++;
 2034: 	my $alignchar=&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1);
 2035: 	if ($alignchar ne '') {
 2036: 	    push @ {$Apache::londefdef::table[-1]{'rows'} },substr($alignchar,0,1);
 2037: 	} else {
 2038: 	    push @ {$Apache::londefdef::table[-1]{'rows'} }, 'l';
 2039: 	}
 2040: 	push ( @{ $Apache::londefdef::table[-1]{'rowdata'} }, $Apache::londefdef::table[-1]{'hinc'});
 2041: 	$Apache::londefdef::table[-1]{'counter_columns'} = -1;
 2042: 	push @ {$Apache::londefdef::table[-1]{'TeXlen'}}, [];
 2043: 	push @ {$Apache::londefdef::table[-1]{'objectlen'}}, [];
 2044: 	push @ {$Apache::londefdef::table[-1]{'minlen'}}, [];
 2045: 	push @ {$Apache::londefdef::table[-1]{'maxlen'}}, [];
 2046: 	push @ {$Apache::londefdef::table[-1]{'content'}}, [];
 2047:     } 
 2048:     return $currentstring;
 2049: }
 2050:         
 2051: sub end_tr {
 2052:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2053:     my $currentstring = '';
 2054:     if ($target eq 'web') {
 2055: 	$currentstring = $token->[2];     
 2056:     } elsif ($target eq 'tex') {
 2057: 	if ($Apache::londefdef::TD_redirection) {
 2058: 	    &end_td_tex($parstack,$parser,$safeeval);    
 2059: 	}
 2060:     }
 2061:     return $currentstring;
 2062: }
 2063: 
 2064: #-- <td> tag (end tag optional)
 2065: sub start_td {
 2066:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2067:     my $currentstring = '';
 2068:     if ($target eq 'web') {
 2069: 	$currentstring = $token->[4];     
 2070:     } elsif ($target eq 'tex') {
 2071: 	$Apache::londefdef::TD_redirection = 1;
 2072: 	&tag_check('tr','td',$tagstack,$parstack,$parser,$safeeval);
 2073:     } 
 2074:     return $currentstring;
 2075: }   
 2076:     
 2077: sub tag_check {
 2078:     my ($good_tag,$bad_tag,$tagstack,$parstack,$parser,$safeeval) = @_;
 2079:     my @ar=@$parstack; 
 2080:     for (my $i=$#ar-1;$i>=0;$i--) {
 2081: 	if (lc($$tagstack[$i]) eq $good_tag) {
 2082: 	    &start_td_tex($parstack,$parser,$safeeval);
 2083: 	    last;
 2084: 	} elsif (lc($$tagstack[$i]) eq $bad_tag) {
 2085: 	    splice @ar, $i+1;
 2086: 	    &end_td_tex(\@ar,$parser,$safeeval);
 2087: 	    &start_td_tex($parstack,$parser,$safeeval);
 2088: 	    last;
 2089: 	}
 2090:     }
 2091:     return '';
 2092: }
 2093:  
 2094: sub start_td_tex {
 2095:     my ($parstack,$parser,$safeeval) = @_;
 2096:     my $alignchar = substr(&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1),0,1);
 2097:     if ($alignchar eq '') {
 2098: 	$alignchar = $Apache::londefdef::table[-1]{'rows'}[-1];
 2099:     }
 2100:     push @{ $Apache::londefdef::table[-1]{'align'}[$Apache::londefdef::table[-1]{'row_number'}] }, $alignchar;
 2101:     $Apache::londefdef::table[-1]{'counter_columns'}++;
 2102:     my $TeXwidth=&Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval,undef,0);
 2103:     if (defined $TeXwidth) {		
 2104: 	my $current_length=&recalc($TeXwidth);
 2105: 	$current_length=~/(\d+\.?\d*)/;
 2106: 	push @ {$Apache::londefdef::table[-1]{'TeXlen'}[$Apache::londefdef::table[-1]{'row_number'}] },$1;
 2107:     }
 2108:     &Apache::lonxml::startredirection();
 2109:     return '';
 2110: }
 2111: 
 2112: sub end_td_tex {
 2113:     my ($parstack,$parser,$safeeval) = @_;
 2114:     my $current_row = $Apache::londefdef::table[-1]{'row_number'};
 2115:     my $data=&Apache::lonxml::endredirection();
 2116:     my $TeXwidth=&Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval,undef,0);
 2117:     if (defined $TeXwidth) {		
 2118: 	push @ {$Apache::londefdef::table[-1]{'objectlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
 2119: 	push @ {$Apache::londefdef::table[-1]{'minlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
 2120: 	push @ {$Apache::londefdef::table[-1]{'maxlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
 2121:     } else {
 2122: 	if (($data=~m/width\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)/) or ($data=~m/\[(\d+\.?\d*)\s*mm\]/)) {
 2123: 	    my $garbage_data=$data;
 2124: 	    my $fwidth=0;
 2125:             while ($garbage_data=~m/width\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)/) {
 2126: 		my $current_length=&recalc($1);
 2127: 		$current_length=~/(\d+\.?\d*)/;
 2128: 		if ($fwidth<$1) {$fwidth=$1;}
 2129: 		$garbage_data=~s/width\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)//;
 2130: 	    }
 2131:             while ($garbage_data=~m/\[(\d+\.?\d*)\s*mm\]/) {
 2132: 		my $current_length=$1;
 2133: 		if ($fwidth<$current_length) {$fwidth=$current_length;}
 2134: 		$garbage_data=~s/\[(\d+\.?\d*)\s*mm\]//;
 2135: 	    }
 2136: 	    push @ {$Apache::londefdef::table[-1]{'TeXlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
 2137: 	    push @ {$Apache::londefdef::table[-1]{'objectlen'}[$Apache::londefdef::table[-1]{'row_number'}] },$fwidth;
 2138: 	    push @ {$Apache::londefdef::table[-1]{'minlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
 2139: 	    push @ {$Apache::londefdef::table[-1]{'maxlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
 2140: 	} else {  
 2141: 	    $data=~s/^\s+(\S.*)/$1/; 
 2142: 	    $data=~s/(.*\S)\s+$/$1/;
 2143: 	    $data=~s/(\s)+/$1/;
 2144: 	    my ($current_length,$min_length)=(0,0);
 2145: 	    if ($data=~/\\vskip/) {
 2146:                 my $newdata=$data;
 2147: 		$newdata=~s/\\vskip \d*\.?\d*\s*mm/THISISJUSTTEMPORARYSEPARATOR/g;
 2148: 		my @newdata=split(/THISISJUSTTEMPORARYSEPARATOR/,$newdata);
 2149: 		foreach my $elementdata (@newdata) {
 2150: 		    my $lengthnewdata=2.5*&LATEX_length($elementdata);
 2151: 		    if ($lengthnewdata>$current_length) {$current_length=$lengthnewdata;}
 2152:                     my @words=split(/ /,$elementdata);
 2153: 		    foreach my $word (@words) {
 2154: 			my $lengthword=2.5*&LATEX_length($word);
 2155: 			if ($min_length<$lengthword) {$min_length=$lengthword;}
 2156: 		    }
 2157: 		}
 2158: 	    } else {
 2159: 		$current_length=2.5*&LATEX_length($data);
 2160:                     my @words=split(/ /,$data);
 2161: 		    foreach my $word (@words) {
 2162: 			my $lengthword=2.5*&LATEX_length($word);
 2163: 			if ($min_length<$lengthword) {$min_length=$lengthword;}
 2164: 		    }
 2165: 	    }
 2166: 	    push @ {$Apache::londefdef::table[-1]{'TeXlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
 2167: 	    push @ {$Apache::londefdef::table[-1]{'objectlen'}[$Apache::londefdef::table[-1]{'row_number'}] },'0';
 2168: 	    push @ {$Apache::londefdef::table[-1]{'maxlen'}[$Apache::londefdef::table[-1]{'row_number'}] },$current_length;
 2169: 	    push @ {$Apache::londefdef::table[-1]{'minlen'}[$Apache::londefdef::table[-1]{'row_number'}] },$min_length;
 2170: 	}        
 2171:     }
 2172: 	for (my $in=0; $in<=$#{$Apache::londefdef::table[-1]{'include'}};$in++) {         
 2173: 	    $data=~s/\\keephidden\{NEW TABLE ENTRY\}/$Apache::londefdef::table[-1]{'include'}[$in]/;
 2174: 	}
 2175:     push @ {$Apache::londefdef::table[-1]{'content'}[-1] },$data;
 2176:     return'';
 2177: }
 2178: 
 2179: sub end_td {
 2180:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2181:     my $currentstring = '';
 2182:     if ($target eq 'web') {
 2183: 	$currentstring = $token->[2];     
 2184:     } elsif ($target eq 'tex') {
 2185:         $Apache::londefdef::TD_redirection =0;
 2186: 	&end_td_tex($parstack,$parser,$safeeval);
 2187:     }
 2188:     return $currentstring;
 2189: }
 2190: 
 2191: #-- <th> tag (end tag optional)
 2192: sub start_th {
 2193:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2194:     my $currentstring = '';
 2195:     if ($target eq 'web') {
 2196: 	$currentstring = $token->[4];     
 2197:     } elsif ($target eq 'tex') {
 2198: 	my $what_to_push = substr(&Apache::lonxml::get_param('align',$parstack,$safeeval,undef,1),0,1);
 2199: 	if ($what_to_push eq '') {
 2200: 	    $what_to_push = substr($Apache::londefdef::table[-1]{'rows'}[0],0,1);;
 2201: 	}
 2202: 	push @{ $Apache::londefdef::table[-1]{'columns'} }, $what_to_push;
 2203: 	$Apache::londefdef::table[-1]{'counter_columns'}++;
 2204: 	&Apache::lonxml::startredirection();
 2205:     } 
 2206:     return $currentstring;
 2207: }   
 2208:      
 2209: sub end_th {
 2210:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2211:     my $currentstring = '';
 2212:     if ($target eq 'web') {
 2213: 	$currentstring = $token->[2];     
 2214:     } elsif ($target eq 'tex') {
 2215: 	my $current_row = $Apache::londefdef::table[-1]{'row_number'};
 2216: 	my $data=&Apache::lonxml::endredirection();
 2217: 	my $TeXwidth=&Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval,undef,0);
 2218: 	if (defined $TeXwidth) {		
 2219: 	    my $current_length=&recalc($TeXwidth);
 2220: 	    $current_length=~/(\d+)/;
 2221: 	    $Apache::londefdef::table[-1]{'TeXlength'} .= $1.',';
 2222: 	    $Apache::londefdef::table[-1]{'length'} .= '0,';
 2223: 	} else {
 2224: 	    if ($data=~m/width\s*=\s*(\d+\.?\d*\s*(mm|cm|in|pc|pt)*)/) {
 2225: 		my $current_length=&recalc($1);
 2226: 		$current_length=~/(\d+)/;
 2227: 		$Apache::londefdef::table[-1]{'TeXlength'} .= $1.',';
 2228: 		$Apache::londefdef::table[-1]{'length'} .= '0,';
 2229: 	    } else {     
 2230: 		$data=~/^\s*(\S.*)/;
 2231: 		$data=$1;
 2232: 		$data=~/(.*\S)\s*$/;
 2233: 		$data=$1;
 2234: 		my $current_length=2*length($data);
 2235: 		$Apache::londefdef::table[-1]{'length'} .= $current_length.',';
 2236: 		$Apache::londefdef::table[-1]{'TeXlength'} .= '0,';
 2237: 	    }        
 2238: 	}
 2239: 	for (my $in=0; $in<=$#{$Apache::londefdef::table[-1]{'include'}};$in++) {                                
 2240: 	    $data=~s/\\keephidden\{NEW TABLE ENTRY\}/$Apache::londefdef::table[-1]{'include'}[$in]/;
 2241: 	}
 2242: 	$data='\textbf{'.$data.'}';
 2243: 	@{ $Apache::londefdef::table[-1]{'rowdata'} }[$current_row] .= '\parbox{TOBECHANGEDONNUMBER}{'.$data.'} '.$Apache::londefdef::table[-1]{'vinc'};
 2244:     }
 2245:     return $currentstring;
 2246: }
 2247: #-- <img> tag (end tag forbidden)
 2248: sub start_img {
 2249:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2250:     my $src = &Apache::lonxml::get_param('src',$parstack,$safeeval,
 2251: 					 undef,1);
 2252:     if (not $src and ($target eq 'web' or $target eq 'tex')) { 
 2253: 	my $inside = &Apache::lonxml::get_all_text("/img",$parser);
 2254: 	&Apache::lonnet::logthis("inside was $inside");
 2255: 	return '';
 2256:     }
 2257:     $Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=$src;
 2258:     my $currentstring = '';
 2259:     my $scaling = .3;
 2260:     if ($target eq 'web') {
 2261: 	if ($ENV{'browser.imagesuppress'} ne 'on') {
 2262: 	    $currentstring.= $token->[4];
 2263: 	} else {
 2264: 	    my $alttag= &Apache::lonxml::get_param
 2265: 		('alt',$parstack,$safeeval,undef,1);
 2266: 	    unless ($alttag) {
 2267: 		$alttag=&Apache::lonmeta::alttag
 2268: 		    ($Apache::lonxml::pwd[-1],$src);
 2269: 	    }
 2270: 	    $currentstring.='[IMAGE: '.$alttag.']';
 2271: 	}
 2272:     } elsif ($target eq 'tex') {
 2273: 	$src=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$src);
 2274: 	#if original gif/jpg/png file exist do following:
 2275: 	if (-e $src) {
 2276: 	    #what is the image size?
 2277: 	    my $width_param=&image_size($src,$scaling,$parstack,$safeeval);
 2278:             my ($file,$path)=&file_path($src); 
 2279: 	    my $newsrc = $src;
 2280: 	    $newsrc =~ s/\.(gif|jpg|png)$/.eps/i;
 2281: 	    $file=~s/\.(gif|jpg|png)$/.eps/i;
 2282: 	    #where can we find the picture?
 2283: 	    if (-e $newsrc) {
 2284: 		#eps counterpart for image exist 
 2285: 		if ($path) {
 2286: 		    $currentstring .= '\vskip 1 mm \noindent\graphicspath{{'.$path.'}}\includegraphics[width='.$width_param.' mm]{'.$file.'} ';
 2287: 		}
 2288: 	    } else {
 2289: 		#there is no eps counterpart for image - check for ps one
 2290: 		$newsrc =~ s/\.eps$/\.ps/;
 2291: 		if (-e $newsrc) {
 2292: 		    #ps counterpart for image exist 
 2293: 		    $file =~ s/\.eps$/\.ps/;
 2294: 		    if ($path) {
 2295: 			$currentstring .= '\vskip 1 mm \noindent\graphicspath{{'.$path.'}}\includegraphics[width='.$width_param.' mm]{'.$file.'} ';
 2296: 		    }
 2297: 		} else {
 2298: 		    #care about eps dynamical generation
 2299: 		    $currentstring.='\vskip 1 mm '.&eps_generation($src,$file,$width_param);
 2300: 		}
 2301: 	    }
 2302: 	} else {
 2303: 	    #original image file doesn't exist so check the alt attribute
 2304: 	    my $alt = 
 2305: 		&Apache::lonxml::get_param('alt',$parstack,$safeeval,undef,1);
 2306: 	    unless ($alt) {
 2307: 		$alt=&Apache::lonmeta::alttag($Apache::lonxml::pwd[-1],$src);
 2308: 	    }
 2309: 
 2310: 	    if ($alt) {
 2311: 		$currentstring .= ' '.$alt.' ';
 2312: 	    } else {
 2313: 		#<allow> tag will care about replication 
 2314: 	    }
 2315: 	}
 2316:     } elsif ($target eq 'edit') {
 2317: 	$currentstring .=&Apache::edit::tag_start($target,$token);
 2318: 	$currentstring .=&Apache::edit::text_arg('Image Url:','src',$token,70).
 2319: 	    &Apache::edit::browse('src',undef,'alt').' '.
 2320: 	    &Apache::edit::search('src',undef,'alt').'<br />';
 2321: 	$currentstring .=&Apache::edit::text_arg('Description:','alt',$token,70).'<br />';
 2322: 	$currentstring .=&Apache::edit::text_arg('width (pixel):','width',$token,5);
 2323: 	$currentstring .=&Apache::edit::text_arg('height (pixel):','height',$token,5).'<br />';
 2324: 	$currentstring .=&Apache::edit::text_arg('TeXwidth (mm):','TeXwidth',$token,5);
 2325: 	$currentstring .=&Apache::edit::text_arg('TeXheight (mm):','TeXheight',$token,5);
 2326: 	$currentstring .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
 2327: 	my $src=&Apache::lonxml::get_param('src',$parstack,$safeeval);
 2328: 	my $alt=&Apache::lonxml::get_param('alt',$parstack,$safeeval);
 2329: 	my $width=&Apache::lonxml::get_param('width',$parstack,$safeeval);
 2330: 	my $height=&Apache::lonxml::get_param('height',$parstack,$safeeval);
 2331: 	$currentstring .= '<img src="'.$src.'" alt="'.$alt.'" ';
 2332: 	if ($width) { $currentstring.=' width="'.$width.'" '; }
 2333: 	if ($height) { $currentstring.=' height="'.$height.'" '; }
 2334: 	$currentstring .= ' />';
 2335:     } elsif ($target eq 'modified') {
 2336: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
 2337: 						     $safeeval,'src','alt',
 2338: 						     'TeXwidth','TeXheight',
 2339: 						     'width','height');
 2340: 	$src=$token->[2]{'src'};
 2341: 	if (!$token->[2]{'width'} && !$token->[2]{'height'}) {
 2342: 	    $src=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$src);
 2343: 	    &image_replication($src);
 2344: 	    if (-e $src) {
 2345: 		my $image = Image::Magick->new;
 2346: 		my ($width, $height, $size, $format) = $image->Ping($src);
 2347: 		if ($width && $height) {
 2348: 		    $token->[2]{'width'} =$width;
 2349: 		    $token->[2]{'height'}=$height;
 2350: 		    $constructtag=1;
 2351: 		}
 2352: 	    }
 2353: 	}
 2354: 	if ($constructtag) {$currentstring=&Apache::edit::rebuild_tag($token);}
 2355:     }
 2356:     return $currentstring;
 2357: }
 2358: 
 2359: sub end_img {
 2360:     my ($target,$token) = @_;
 2361:     my $currentstring = '';
 2362:     if ($target eq 'web') {
 2363: 	$currentstring = $token->[2];
 2364:     } elsif ($target eq 'tex') {
 2365: 	$currentstring = '';
 2366:     }
 2367:     return $currentstring;
 2368: }
 2369: 
 2370: #-- <applet> tag (end tag required)
 2371: sub start_applet {
 2372:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2373:     
 2374:     my $code=&Apache::lonxml::get_param('code',$parstack,$safeeval,undef,1);
 2375:     $Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=$code;
 2376:     
 2377:     my $archive=&Apache::lonxml::get_param('archive',$parstack,$safeeval,
 2378: 					   undef,1);
 2379:     $Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=$archive;
 2380:     
 2381:     my $currentstring = '';
 2382:     if ($target eq 'web') {
 2383: 	if ($ENV{'browser.appletsuppress'} ne 'on') {
 2384: 	    $currentstring = $token->[4];
 2385: 	} else {
 2386: 	    my $alttag= &Apache::lonxml::get_param('alt',$parstack,
 2387: 						   $safeeval,undef,1);
 2388: 	    unless ($alttag) {
 2389: 		$alttag=&Apache::lonmeta::alttag($Apache::lonxml::pwd[-1],
 2390: 						 $code);
 2391: 	    }
 2392: 	    $currentstring='[APPLET: '.$alttag.']';
 2393: 	}
 2394:     } elsif ($target eq 'tex') {
 2395: 	my $alttag= &Apache::lonxml::get_param('alt',$parstack,
 2396: 					       $safeeval,undef,1);
 2397: 	unless ($alttag) {
 2398: 	    my $code=&Apache::lonxml::get_param('code',$parstack,$safeeval,
 2399: 						undef,1);
 2400: 	    $alttag=&Apache::lonmeta::alttag($Apache::lonxml::pwd[-1],
 2401: 					     $code);
 2402: 	}
 2403: 	$currentstring.='\begin{center} \fbox{Java Applet: '.$alttag.
 2404: 	    '.}\end{center}';
 2405:     } 
 2406:     return $currentstring;
 2407: }
 2408: 
 2409: sub end_applet {
 2410:     my ($target,$token) = @_;
 2411:     my $currentstring = '';
 2412:     if ($target eq 'web') {
 2413: 	$currentstring = $token->[2];
 2414:     } elsif ($target eq 'tex') {
 2415:     } 
 2416:     return $currentstring;
 2417: }
 2418: 
 2419: #-- <embed> tag (end tag optional/required)
 2420: sub start_embed {    
 2421:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2422:     my $src=&Apache::lonxml::get_param('src',$parstack,$safeeval,undef,1);
 2423:     $Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=$src;
 2424:     my $currentstring = '';
 2425:     if ($target eq 'web') {
 2426: 	if ($ENV{'browser.embedsuppress'} ne 'on') {
 2427: 	    $currentstring = $token->[4];
 2428: 	} else {
 2429: 	    my $alttag=&Apache::lonxml::get_param
 2430: 		('alt',$parstack,$safeeval,undef,1);
 2431: 	    unless ($alttag) {
 2432: 		$alttag=&Apache::lonmeta::alttag($Apache::lonxml::pwd[-1],$src);
 2433: 	    }
 2434: 	    $currentstring='[EMBED: '.$alttag.']';
 2435: 	}
 2436:     } elsif ($target eq 'tex') {
 2437:     } 
 2438:     return $currentstring;
 2439: }
 2440: 
 2441: sub end_embed {
 2442:     my ($target,$token) = @_;
 2443:     my $currentstring = '';
 2444:     if ($target eq 'web') {
 2445: 	$currentstring = $token->[2];     
 2446:     } elsif ($target eq 'tex') {  
 2447:     } 
 2448:     return $currentstring;
 2449: }
 2450: 
 2451: #-- <param> tag (end tag forbidden)
 2452: sub start_param {
 2453:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2454:     if (&Apache::lonxml::get_param
 2455: 	('name',$parstack,$safeeval,undef,1)=~/^cabbase$/i) {
 2456: 	$Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=
 2457: 	    &Apache::lonxml::get_param('value',$parstack,$safeeval,undef,1);
 2458:     }   
 2459:     $Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=   
 2460: 	&Apache::lonxml::get_param('src',$parstack,$safeeval,undef,1);
 2461:     my $currentstring = '';
 2462:     if ($target eq 'web') {
 2463: 	$currentstring = $token->[4];     
 2464:     } elsif ($target eq 'tex') {
 2465:     } 
 2466:     return $currentstring;
 2467: }
 2468: 
 2469: sub end_param {
 2470:     my ($target,$token) = @_;
 2471:     my $currentstring = '';
 2472:     if ($target eq 'web') {
 2473: 	$currentstring = $token->[2];     
 2474:     } elsif ($target eq 'tex') {
 2475:     } 
 2476:     return $currentstring;
 2477: }
 2478: 
 2479: #-- <allow> tag
 2480: sub start_allow {
 2481:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2482:     my $src = &Apache::lonxml::get_param('src',$parstack,$safeeval,undef,1);
 2483:     $src=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$src);
 2484:     $Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=
 2485: 	&Apache::lonnet::clutter($src);
 2486:     &image_replication($src);
 2487:     my $result;
 2488:     if ($target eq 'edit') {
 2489: 	$result .=&Apache::edit::tag_start($target,$token);
 2490: 	$result .=&Apache::edit::text_arg('File Spec:','src',$token,70);
 2491: 	$result .=&Apache::edit::end_row();#.&Apache::edit::start_spanning_row();
 2492:     } elsif ($target eq 'modified') {
 2493: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
 2494: 						     $safeeval,'src');
 2495: 	if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
 2496:     }
 2497:     return $result;
 2498: }
 2499: 
 2500: sub end_allow {
 2501:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2502:     if ( $target eq 'edit') { return (&Apache::edit::end_table()); }
 2503:     return '';
 2504: }
 2505: 
 2506: #-- Frames (end tag required)
 2507: #-- <frameset>
 2508: sub start_frameset {
 2509:     my ($target,$token) = @_;
 2510:     my $currentstring = '';
 2511:     if ($target eq 'web') { 
 2512: 	if (!$Apache::lonxml::registered &&
 2513: 	    $ENV{'request.state'} eq 'published') {
 2514: 	    $currentstring.='<head>'.
 2515: 		&Apache::lonmenu::registerurl(undef,$target).'</head>';
 2516: 	}
 2517: 	my $onLoad='';
 2518: 	foreach my $key (keys(%{$token->[2]})) {
 2519: 	    if ($key =~ /^onload$/i) {
 2520: 		$onLoad.=$token->[2]->{$key}.';';
 2521: 		delete($token->[2]->{$key});
 2522: 	    }
 2523: 	}
 2524: 	$token->[2]->{'onload'}=&Apache::lonmenu::loadevents().';'.$onLoad;
 2525: 	my $onUnload='';
 2526: 	foreach my $key (keys(%{$token->[2]})) {
 2527: 	    if ($key =~ /^onunload$/i) {
 2528: 		$onUnload.=$token->[2]->{$key}.';';
 2529: 		delete($token->[2]->{$key});
 2530: 	    }
 2531: 	}
 2532: 	$token->[2]->{'onunload'}=&Apache::lonmenu::unloadevents().
 2533: 	    ';'.$onUnload;
 2534: 	
 2535: 	$currentstring .= '<'.$token->[1];
 2536: 	foreach (keys %{$token->[2]}) {
 2537: 	    $currentstring.=' '.$_.'="'.$token->[2]->{$_}.'"';
 2538: 	}
 2539: 	$currentstring.='>';
 2540:     }
 2541:     return $currentstring;
 2542: }
 2543: 
 2544: sub end_frameset {
 2545:     my ($target,$token) = @_;
 2546:     my $currentstring = '';
 2547:     if ($target eq 'web') {
 2548: 	$currentstring = $token->[2];
 2549:     }
 2550:     return $currentstring;
 2551: }
 2552: 
 2553: #-- <xmp> (end tag required)
 2554: sub start_xmp {
 2555:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2556:     my $currentstring = '';
 2557:     if ($target eq 'web') {
 2558: 	$currentstring .= $token->[4];
 2559:     } elsif ($target eq 'tex') {
 2560: 	$currentstring .= '\begin{verbatim}';
 2561:     } 
 2562:     return $currentstring;
 2563: }
 2564: 
 2565: sub end_xmp {
 2566:     my ($target,$token) = @_;
 2567:     my $currentstring = '';
 2568:     if ($target eq 'web') {
 2569: 	$currentstring .= $token->[2];
 2570:     } elsif ($target eq 'tex') {
 2571: 	$currentstring .= '\end{verbatim}';
 2572:     }
 2573:     return $currentstring;
 2574: }
 2575: 
 2576: #-- <pre> (end tag required)
 2577: sub start_pre {
 2578:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2579:     my $currentstring = '';
 2580:     if ($target eq 'web') {
 2581: 	$currentstring .= $token->[4];
 2582:     } elsif ($target eq 'tex') {
 2583: 	$currentstring .= '\begin{verbatim}';
 2584:     } 
 2585:     return $currentstring;
 2586: }
 2587: 
 2588: sub end_pre {
 2589:     my ($target,$token) = @_;
 2590:     my $currentstring = '';
 2591:     if ($target eq 'web') {
 2592: 	$currentstring .= $token->[2];
 2593:     } elsif ($target eq 'tex') {
 2594: 	$currentstring .= '\end{verbatim}';
 2595:     }
 2596:     return $currentstring;
 2597: }
 2598: 
 2599: #-- <insert>
 2600: sub start_insert {
 2601:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2602:     my $currentstring = '';
 2603:     if ($target eq 'web') {
 2604: 	my $display = &Apache::lonxml::get_param('display',$parstack,$safeeval,undef,1);
 2605: 	$currentstring .= '<b>'.$display.'</b>';;
 2606:     }
 2607:     return $currentstring;
 2608: }
 2609: 
 2610: sub end_insert {
 2611:     my ($target,$token) = @_;
 2612:     my $currentstring = '';
 2613:     if ($target eq 'web') {
 2614: 	$currentstring .= '';
 2615:     }
 2616:     return $currentstring;
 2617: }
 2618: 
 2619: #-- <externallink>
 2620: sub start_externallink {
 2621:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2622:     my $currentstring = '';
 2623:     if ($target eq 'web') {
 2624: 	my $display = &Apache::lonxml::get_param('display',$parstack,$safeeval,undef,1);
 2625: 	$currentstring .= '<b>'.$display.'</b>';;
 2626:     }
 2627:     return $currentstring;
 2628: }
 2629: 
 2630: sub end_externallink {
 2631:     my ($target,$token) = @_;
 2632:     my $currentstring = '';
 2633:     if ($target eq 'web') {
 2634: 	$currentstring .= '';
 2635:     }
 2636:     return $currentstring;
 2637: }
 2638: 
 2639: #-- <blankspace heigth="">
 2640: sub start_blankspace {
 2641:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;
 2642:     my $currentstring = '';
 2643:     if ($target eq 'tex') {
 2644: 	my $howmuch = &Apache::lonxml::get_param('heigth',$parstack,$safeeval,undef,1);
 2645: 	$currentstring .= '\vskip '.$howmuch.' ';
 2646:     }
 2647:     return $currentstring;
 2648: }
 2649: 
 2650: sub end_blankspace {
 2651:     my ($target,$token) = @_;
 2652:     my $currentstring = '';
 2653:     if ($target eq 'tex') {
 2654: 	$currentstring .= '';
 2655:     }
 2656:     return $currentstring;
 2657: }
 2658: 
 2659: #-- <abbr> tag (end tag required)
 2660: sub start_abbr {
 2661:     my ($target,$token) = @_;
 2662:     my $currentstring = '';
 2663:     if ($target eq 'web') {
 2664: 	$currentstring = $token->[4];     
 2665:     } 
 2666:     return $currentstring;
 2667: }
 2668: 
 2669: sub end_abbr {
 2670:     my ($target,$token) = @_;
 2671:     my $currentstring = '';
 2672:     if ($target eq 'web') {
 2673: 	$currentstring = $token->[2];    
 2674:     } 
 2675:     return $currentstring;
 2676: }
 2677: 
 2678: #-- <acronym> tag (end tag required)
 2679: sub start_acronym {
 2680:     my ($target,$token) = @_;
 2681:     my $currentstring = '';
 2682:     if ($target eq 'web') {
 2683: 	$currentstring = $token->[4];     
 2684:     } 
 2685:     return $currentstring;
 2686: }
 2687: 
 2688: sub end_acronym {
 2689:     my ($target,$token) = @_;
 2690:     my $currentstring = '';
 2691:     if ($target eq 'web') {
 2692: 	$currentstring = $token->[2];    
 2693:     } 
 2694:     return $currentstring;
 2695: }
 2696: 
 2697: #-- <area> tag (end tag forbidden)
 2698: sub start_area {
 2699:     my ($target,$token) = @_;
 2700:     my $currentstring = '';
 2701:     if ($target eq 'web') {
 2702: 	$currentstring = $token->[4];     
 2703:     } 
 2704:     return $currentstring;
 2705: }
 2706: 
 2707: sub end_area {
 2708:     my ($target,$token) = @_;
 2709:     my $currentstring = '';
 2710:     if ($target eq 'web') {
 2711: 	$currentstring = $token->[2];    
 2712:     } 
 2713:     return $currentstring;
 2714: }
 2715: 
 2716: #-- <base> tag (end tag forbidden)
 2717: sub start_base {
 2718:     my ($target,$token) = @_;
 2719:     my $currentstring = '';
 2720:     if ($target eq 'web') {
 2721: 	$currentstring = $token->[4];     
 2722:     }
 2723:     return $currentstring;
 2724: }
 2725: 
 2726: sub end_base {
 2727:     my ($target,$token) = @_;
 2728:     my $currentstring = '';
 2729:     if ($target eq 'web') {
 2730: 	$currentstring = $token->[2];    
 2731:     } 
 2732:     return $currentstring;
 2733: }
 2734: 
 2735: #-- <bdo> tag (end tag required)
 2736: sub start_bdo {
 2737:     my ($target,$token) = @_;
 2738:     my $currentstring = '';
 2739:     if ($target eq 'web') {
 2740: 	$currentstring = $token->[4];     
 2741:     } 
 2742:     return $currentstring;
 2743: }
 2744: 
 2745: sub end_bdo {
 2746:     my ($target,$token) = @_;
 2747:     my $currentstring = '';
 2748:     if ($target eq 'web') {
 2749: 	$currentstring = $token->[2];    
 2750:     } 
 2751:     return $currentstring;
 2752: }
 2753: 
 2754: #-- <bgsound> tag (end tag optional)
 2755: sub start_bgsound {
 2756:     my ($target,$token) = @_;
 2757:     my $currentstring = '';
 2758:     if ($target eq 'web') {
 2759: 	$currentstring = $token->[4];     
 2760:     } 
 2761:     return $currentstring;
 2762: }
 2763: 
 2764: sub end_bgsound {
 2765:     my ($target,$token) = @_;
 2766:     my $currentstring = '';
 2767:     if ($target eq 'web') {
 2768: 	$currentstring = $token->[2];    
 2769:     } 
 2770:     return $currentstring;
 2771: }
 2772: 
 2773: #-- <blink> tag (end tag required)
 2774: sub start_blink {
 2775:     my ($target,$token) = @_;
 2776:     my $currentstring = '';
 2777:     if ($target eq 'web') {
 2778: 	$currentstring = $token->[4];     
 2779:     } 
 2780:     return $currentstring;
 2781: }
 2782: 
 2783: sub end_blink {
 2784:     my ($target,$token) = @_;
 2785:     my $currentstring = '';
 2786:     if ($target eq 'web') {
 2787: 	$currentstring = $token->[2];    
 2788:     } 
 2789:     return $currentstring;
 2790: }
 2791: 
 2792: #-- <blockquote> tag (end tag required)
 2793: sub start_blockquote {
 2794:     my ($target,$token) = @_;
 2795:     my $currentstring = '';
 2796:     if ($target eq 'web') {
 2797: 	$currentstring = $token->[4];     
 2798:     } 
 2799:     return $currentstring;
 2800: }
 2801: 
 2802: sub end_blockquote {
 2803:     my ($target,$token) = @_;
 2804:     my $currentstring = '';
 2805:     if ($target eq 'web') {
 2806: 	$currentstring = $token->[2];    
 2807:     } 
 2808:     return $currentstring;
 2809: }
 2810: 
 2811: #-- <button> tag (end tag required)
 2812: sub start_button {
 2813:     my ($target,$token) = @_;
 2814:     my $currentstring = '';
 2815:     if ($target eq 'web') {
 2816: 	$currentstring = $token->[4];     
 2817:     } 
 2818:     return $currentstring;
 2819: }
 2820: 
 2821: sub end_button {
 2822:     my ($target,$token) = @_;
 2823:     my $currentstring = '';
 2824:     if ($target eq 'web') {
 2825: 	$currentstring = $token->[2];    
 2826:     } 
 2827:     return $currentstring;
 2828: }
 2829: 
 2830: #-- <caption> tag (end tag required)
 2831: sub start_caption {
 2832:     my ($target,$token) = @_;
 2833:     my $currentstring = '';
 2834:     if ($target eq 'web') {
 2835: 	$currentstring = $token->[4];     
 2836:     } 
 2837:     return $currentstring;
 2838: }
 2839: 
 2840: sub end_caption {
 2841:     my ($target,$token) = @_;
 2842:     my $currentstring = '';
 2843:     if ($target eq 'web') {
 2844: 	$currentstring = $token->[2];    
 2845:     } 
 2846:     return $currentstring;
 2847: }
 2848: 
 2849: #-- <col> tag (end tag forbdden)
 2850: sub start_col {
 2851:     my ($target,$token) = @_;
 2852:     my $currentstring = '';
 2853:     if ($target eq 'web') {
 2854: 	$currentstring = $token->[4];     
 2855:     } 
 2856:     return $currentstring;
 2857: }
 2858: 
 2859: sub end_col {
 2860:     my ($target,$token) = @_;
 2861:     my $currentstring = '';
 2862:     if ($target eq 'web') {
 2863: 	$currentstring = $token->[2];    
 2864:     } 
 2865:     return $currentstring;
 2866: }
 2867: 
 2868: #-- <colgroup> tag (end tag optional)
 2869: sub start_colgroup {
 2870:     my ($target,$token) = @_;
 2871:     my $currentstring = '';
 2872:     if ($target eq 'web') {
 2873: 	$currentstring = $token->[4];     
 2874:     } 
 2875:     return $currentstring;
 2876: }
 2877: 
 2878: sub end_colgroup {
 2879:     my ($target,$token) = @_;
 2880:     my $currentstring = '';
 2881:     if ($target eq 'web') {
 2882: 	$currentstring = $token->[2];    
 2883:     } 
 2884:     return $currentstring;
 2885: }
 2886: 
 2887: #-- <del> tag (end tag required)
 2888: sub start_del {
 2889:     my ($target,$token) = @_;
 2890:     my $currentstring = '';
 2891:     if ($target eq 'web') {
 2892: 	$currentstring = $token->[4];     
 2893:     } 
 2894:     return $currentstring;
 2895: }
 2896: 
 2897: sub end_del {
 2898:     my ($target,$token) = @_;
 2899:     my $currentstring = '';
 2900:     if ($target eq 'web') {
 2901: 	$currentstring = $token->[2];    
 2902:     } 
 2903:     return $currentstring;
 2904: }
 2905: 
 2906: #-- <fieldset> tag (end tag required)
 2907: sub start_fieldset {
 2908:     my ($target,$token) = @_;
 2909:     my $currentstring = '';
 2910:     if ($target eq 'web') {
 2911: 	$currentstring = $token->[4];     
 2912:     } 
 2913:     return $currentstring;
 2914: }
 2915: 
 2916: sub end_fieldset {
 2917:     my ($target,$token) = @_;
 2918:     my $currentstring = '';
 2919:     if ($target eq 'web') {
 2920: 	$currentstring = $token->[2];    
 2921:     } 
 2922:     return $currentstring;
 2923: }
 2924: 
 2925: #-- <frame> tag (end tag forbidden)
 2926: sub start_frame {
 2927:     my ($target,$token) = @_;
 2928:     my $currentstring = '';
 2929:     if ($target eq 'web') {
 2930: 	$currentstring = $token->[4];     
 2931:     } 
 2932:     return $currentstring;
 2933: }
 2934: 
 2935: sub end_frame {
 2936:     my ($target,$token) = @_;
 2937:     my $currentstring = '';
 2938:     if ($target eq 'web') {
 2939: 	$currentstring = $token->[2];    
 2940:     } 
 2941:     return $currentstring;
 2942: }
 2943: 
 2944: #-- <iframe> tag (end tag required)
 2945: sub start_iframe {
 2946:     my ($target,$token) = @_;
 2947:     my $currentstring = '';
 2948:     if ($target eq 'web') {
 2949: 	$currentstring = $token->[4];     
 2950:     } 
 2951:     return $currentstring;
 2952: }
 2953: 
 2954: sub end_iframe {
 2955:     my ($target,$token) = @_;
 2956:     my $currentstring = '';
 2957:     if ($target eq 'web') {
 2958: 	$currentstring = $token->[2];    
 2959:     } 
 2960:     return $currentstring;
 2961: }
 2962: 
 2963: #-- <ins> tag (end tag required)
 2964: sub start_ins {
 2965:     my ($target,$token) = @_;
 2966:     my $currentstring = '';
 2967:     if ($target eq 'web') {
 2968: 	$currentstring = $token->[4];     
 2969:     } 
 2970:     return $currentstring;
 2971: }
 2972: 
 2973: sub end_ins {
 2974:     my ($target,$token) = @_;
 2975:     my $currentstring = '';
 2976:     if ($target eq 'web') {
 2977: 	$currentstring = $token->[2];    
 2978:     } 
 2979:     return $currentstring;
 2980: }
 2981: 
 2982: #-- <isindex> tag (end tag forbidden)
 2983: sub start_isindex {
 2984:     my ($target,$token) = @_;
 2985:     my $currentstring = '';
 2986:     if ($target eq 'web') {
 2987: 	$currentstring = $token->[4];     
 2988:     } 
 2989:     return $currentstring;
 2990: }
 2991: 
 2992: sub end_isindex {
 2993:     my ($target,$token) = @_;
 2994:     my $currentstring = '';
 2995:     if ($target eq 'web') {
 2996: 	$currentstring = $token->[2];    
 2997:     } 
 2998:     return $currentstring;
 2999: }
 3000: 
 3001: #-- <keygen> tag (end tag forbidden)
 3002: sub start_keygen {
 3003:     my ($target,$token) = @_;
 3004:     my $currentstring = '';
 3005:     if ($target eq 'web') {
 3006: 	$currentstring = $token->[4];     
 3007:     } 
 3008:     return $currentstring;
 3009: }
 3010: 
 3011: sub end_keygen {
 3012:     my ($target,$token) = @_;
 3013:     my $currentstring = '';
 3014:     if ($target eq 'web') {
 3015: 	$currentstring = $token->[2];    
 3016:     } 
 3017:     return $currentstring;
 3018: }
 3019: 
 3020: #-- <label> tag
 3021: sub start_label {
 3022:     my ($target,$token) = @_;
 3023:     my $currentstring = '';
 3024:     if ($target eq 'web') {
 3025: 	$currentstring = $token->[4];     
 3026:     } 
 3027:     return $currentstring;
 3028: }
 3029: 
 3030: sub end_label {
 3031:     my ($target,$token) = @_;
 3032:     my $currentstring = '';
 3033:     if ($target eq 'web') {
 3034: 	$currentstring = $token->[2];    
 3035:     } 
 3036:     return $currentstring;
 3037: }
 3038: 
 3039: #-- <layer> tag (end tag required)
 3040: sub start_layer {
 3041:     my ($target,$token) = @_;
 3042:     my $currentstring = '';
 3043:     if ($target eq 'web') {
 3044: 	$currentstring = $token->[4];     
 3045:     } 
 3046:     return $currentstring;
 3047: }
 3048: 
 3049: sub end_layer {
 3050:     my ($target,$token) = @_;
 3051:     my $currentstring = '';
 3052:     if ($target eq 'web') {
 3053: 	$currentstring = $token->[2];    
 3054:     } 
 3055:     return $currentstring;
 3056: }
 3057: 
 3058: #-- <legend> tag (end tag required)
 3059: sub start_legend {
 3060:     my ($target,$token) = @_;
 3061:     my $currentstring = '';
 3062:     if ($target eq 'web') {
 3063: 	$currentstring = $token->[4];     
 3064:     } 
 3065:     return $currentstring;
 3066: }
 3067: 
 3068: sub end_legend {
 3069:     my ($target,$token) = @_;
 3070:     my $currentstring = '';
 3071:     if ($target eq 'web') {
 3072: 	$currentstring = $token->[2];    
 3073:     } 
 3074:     return $currentstring;
 3075: }
 3076: 
 3077: #-- <link> tag (end tag forbidden)
 3078: sub start_link {
 3079:     my ($target,$token) = @_;
 3080:     my $currentstring = '';
 3081:     if ($target eq 'web') {
 3082: 	$currentstring = $token->[4];     
 3083:     } 
 3084:     return $currentstring;
 3085: }
 3086: 
 3087: sub end_link {
 3088:     my ($target,$token) = @_;
 3089:     my $currentstring = '';
 3090:     if ($target eq 'web') {
 3091: 	$currentstring = $token->[2];    
 3092:     } 
 3093:     return $currentstring;
 3094: }
 3095: 
 3096: #-- <marquee> tag (end tag optional)
 3097: sub start_marquee {
 3098:     my ($target,$token) = @_;
 3099:     my $currentstring = '';
 3100:     if ($target eq 'web') {
 3101: 	$currentstring = $token->[4];     
 3102:     } 
 3103:     return $currentstring;
 3104: }
 3105: 
 3106: sub end_marquee {
 3107:     my ($target,$token) = @_;
 3108:     my $currentstring = '';
 3109:     if ($target eq 'web') {
 3110: 	$currentstring = $token->[2];    
 3111:     } 
 3112:     return $currentstring;
 3113: }
 3114: 
 3115: #-- <multicol> tag (end tag required)
 3116: sub start_multicol {
 3117:     my ($target,$token) = @_;
 3118:     my $currentstring = '';
 3119:     if ($target eq 'web') {
 3120: 	$currentstring = $token->[4];     
 3121:     } 
 3122:     return $currentstring;
 3123: }
 3124: 
 3125: sub end_multicol {
 3126:     my ($target,$token) = @_;
 3127:     my $currentstring = '';
 3128:     if ($target eq 'web') {
 3129: 	$currentstring = $token->[2];    
 3130:     } 
 3131:     return $currentstring;
 3132: }
 3133: 
 3134: #-- <nobr> tag (end tag required)
 3135: sub start_nobr {
 3136:     my ($target,$token) = @_;
 3137:     my $currentstring = '';
 3138:     if ($target eq 'web') {
 3139: 	$currentstring = $token->[4];     
 3140:     }  elsif ($target eq 'tex') {
 3141: 	$currentstring='\mbox{';
 3142:     }
 3143:     return $currentstring;
 3144: }
 3145: 
 3146: sub end_nobr {
 3147:     my ($target,$token) = @_;
 3148:     my $currentstring = '';
 3149:     if ($target eq 'web') {
 3150: 	$currentstring = $token->[2];    
 3151:     }   elsif ($target eq 'tex') {
 3152: 	$currentstring='}';
 3153:     }
 3154:     return $currentstring;
 3155: }
 3156: 
 3157: #-- <noembed> tag (end tag required)
 3158: sub start_noembed {
 3159:     my ($target,$token) = @_;
 3160:     my $currentstring = '';
 3161:     if ($target eq 'web') {
 3162: 	$currentstring = $token->[4];     
 3163:     } 
 3164:     return $currentstring;
 3165: }
 3166: 
 3167: sub end_noembed {
 3168:     my ($target,$token) = @_;
 3169:     my $currentstring = '';
 3170:     if ($target eq 'web') {
 3171: 	$currentstring = $token->[2];    
 3172:     } 
 3173:     return $currentstring;
 3174: }
 3175: 
 3176: #-- <noframes> tag (end tag required)
 3177: sub start_noframes {
 3178:     my ($target,$token) = @_;
 3179:     my $currentstring = '';
 3180:     if ($target eq 'web') {
 3181: 	$currentstring = $token->[4];     
 3182:     } 
 3183:     return $currentstring;
 3184: }
 3185: 
 3186: sub end_noframes {
 3187:     my ($target,$token) = @_;
 3188:     my $currentstring = '';
 3189:     if ($target eq 'web') {
 3190: 	$currentstring = $token->[2];    
 3191:     } 
 3192:     return $currentstring;
 3193: }
 3194: 
 3195: #-- <nolayer> tag (end tag required)
 3196: sub start_nolayer {
 3197:     my ($target,$token) = @_;
 3198:     my $currentstring = '';
 3199:     if ($target eq 'web') {
 3200: 	$currentstring = $token->[4];     
 3201:     } 
 3202:     return $currentstring;
 3203: }
 3204: 
 3205: sub end_nolayer {
 3206:     my ($target,$token) = @_;
 3207:     my $currentstring = '';
 3208:     if ($target eq 'web') {
 3209: 	$currentstring = $token->[2];    
 3210:     } 
 3211:     return $currentstring;
 3212: }
 3213: 
 3214: #-- <noscript> tag (end tag required)
 3215: sub start_noscript {
 3216:     my ($target,$token) = @_;
 3217:     my $currentstring = '';
 3218:     if ($target eq 'web') {
 3219: 	$currentstring = $token->[4];     
 3220:     } 
 3221:     return $currentstring;
 3222: }
 3223: 
 3224: sub end_noscript {
 3225:     my ($target,$token) = @_;
 3226:     my $currentstring = '';
 3227:     if ($target eq 'web') {
 3228: 	$currentstring = $token->[2];    
 3229:     } 
 3230:     return $currentstring;
 3231: }
 3232: 
 3233: #-- <object> tag (end tag required)
 3234: sub start_object {
 3235:     my ($target,$token) = @_;
 3236:     my $currentstring = '';
 3237:     if ($target eq 'web') {
 3238: 	$currentstring = $token->[4];     
 3239:     } 
 3240:     return $currentstring;
 3241: }
 3242: 
 3243: sub end_object {
 3244:     my ($target,$token) = @_;
 3245:     my $currentstring = '';
 3246:     if ($target eq 'web') {
 3247: 	$currentstring = $token->[2];    
 3248:     } 
 3249:     return $currentstring;
 3250: }
 3251: 
 3252: #-- <optgroup> tag (end tag required)
 3253: sub start_optgroup {
 3254:     my ($target,$token) = @_;
 3255:     my $currentstring = '';
 3256:     if ($target eq 'web') {
 3257: 	$currentstring = $token->[4];     
 3258:     } 
 3259:     return $currentstring;
 3260: }
 3261: 
 3262: sub end_optgroup {
 3263:     my ($target,$token) = @_;
 3264:     my $currentstring = '';
 3265:     if ($target eq 'web') {
 3266: 	$currentstring = $token->[2];    
 3267:     } 
 3268:     return $currentstring;
 3269: }
 3270: 
 3271: #-- <samp> tag (end tag required)
 3272: sub start_samp {
 3273:     my ($target,$token) = @_;
 3274:     my $currentstring = '';
 3275:     if ($target eq 'web') {
 3276: 	$currentstring = $token->[4];     
 3277:     } elsif ($target eq 'tex') {
 3278: 	$currentstring='\texttt{';
 3279:     }
 3280:     return $currentstring;
 3281: }
 3282: 
 3283: sub end_samp {
 3284:     my ($target,$token) = @_;
 3285:     my $currentstring = '';
 3286:     if ($target eq 'web') {
 3287: 	$currentstring = $token->[2];    
 3288:     } elsif ($target eq 'tex') {
 3289: 	$currentstring='}';
 3290:     }
 3291:     return $currentstring;
 3292: }
 3293: 
 3294: #-- <server> tag
 3295: sub start_server {
 3296:     my ($target,$token) = @_;
 3297:     my $currentstring = '';
 3298:     if ($target eq 'web') {
 3299: 	$currentstring = $token->[4];     
 3300:     } 
 3301:     return $currentstring;
 3302: }
 3303: 
 3304: sub end_server {
 3305:     my ($target,$token) = @_;
 3306:     my $currentstring = '';
 3307:     if ($target eq 'web') {
 3308: 	$currentstring = $token->[2];    
 3309:     } 
 3310:     return $currentstring;
 3311: }
 3312: 
 3313: #-- <spacer> tag (end tag forbidden)
 3314: sub start_spacer {
 3315:     my ($target,$token) = @_;
 3316:     my $currentstring = '';
 3317:     if ($target eq 'web') {
 3318: 	$currentstring = $token->[4];     
 3319:     } 
 3320:     return $currentstring;
 3321: }
 3322: 
 3323: sub end_spacer {
 3324:     my ($target,$token) = @_;
 3325:     my $currentstring = '';
 3326:     if ($target eq 'web') {
 3327: 	$currentstring = $token->[2];    
 3328:     } 
 3329:     return $currentstring;
 3330: }
 3331: 
 3332: #-- <span> tag (end tag required)
 3333: sub start_span {
 3334:     my ($target,$token) = @_;
 3335:     my $currentstring = '';
 3336:     if ($target eq 'web') {
 3337: 	$currentstring = $token->[4];     
 3338:     } 
 3339:     return $currentstring;
 3340: }
 3341: 
 3342: sub end_span {
 3343:     my ($target,$token) = @_;
 3344:     my $currentstring = '';
 3345:     if ($target eq 'web') {
 3346: 	$currentstring = $token->[2];    
 3347:     } 
 3348:     return $currentstring;
 3349: }
 3350: 
 3351: #-- <tbody> tag (end tag optional)
 3352: sub start_tbody {
 3353:     my ($target,$token) = @_;
 3354:     my $currentstring = '';
 3355:     if ($target eq 'web') {
 3356: 	$currentstring = $token->[4];     
 3357:     } 
 3358:     return $currentstring;
 3359: }
 3360: 
 3361: sub end_tbody {
 3362:     my ($target,$token) = @_;
 3363:     my $currentstring = '';
 3364:     if ($target eq 'web') {
 3365: 	$currentstring = $token->[2];    
 3366:     } 
 3367:     return $currentstring;
 3368: }
 3369: 
 3370: #-- <tfoot> tag (end tag optional)
 3371: sub start_tfoot {
 3372:     my ($target,$token) = @_;
 3373:     my $currentstring = '';
 3374:     if ($target eq 'web') {
 3375: 	$currentstring = $token->[4];     
 3376:     } 
 3377:     return $currentstring;
 3378: }
 3379: 
 3380: sub end_tfoot {
 3381:     my ($target,$token) = @_;
 3382:     my $currentstring = '';
 3383:     if ($target eq 'web') {
 3384: 	$currentstring = $token->[2];    
 3385:     } 
 3386:     return $currentstring;
 3387: }
 3388: 
 3389: #-- <thead> tag (end tag optional)
 3390: sub start_thead {
 3391:     my ($target,$token) = @_;
 3392:     my $currentstring = '';
 3393:     if ($target eq 'web') {
 3394: 	$currentstring = $token->[4];     
 3395:     } 
 3396:     return $currentstring;
 3397: }
 3398: 
 3399: sub end_thead {
 3400:     my ($target,$token) = @_;
 3401:     my $currentstring = '';
 3402:     if ($target eq 'web') {
 3403: 	$currentstring = $token->[2];    
 3404:     } 
 3405:     return $currentstring;
 3406: }
 3407: 
 3408: #-- <var> tag
 3409: sub start_var {
 3410:     my ($target,$token) = @_;
 3411:     my $currentstring = '';
 3412:     if ($target eq 'web') {
 3413: 	$currentstring = $token->[4];     
 3414:     } elsif ($target eq 'tex') {
 3415: 	$currentstring = '\textit{'; 
 3416:     }
 3417:     return $currentstring;
 3418: }
 3419: 
 3420: sub end_var {
 3421:     my ($target,$token) = @_;
 3422:     my $currentstring = '';
 3423:     if ($target eq 'web') {
 3424: 	$currentstring = $token->[2];
 3425:     } elsif ($target eq 'tex') {
 3426: 	$currentstring = '}'; 
 3427:     } 
 3428:     return $currentstring;
 3429: }
 3430: 
 3431: #-- <wbr> tag (end tag forbidden)
 3432: sub start_wbr {
 3433:     my ($target,$token) = @_;
 3434:     my $currentstring = '';
 3435:     if ($target eq 'web') {
 3436: 	$currentstring = $token->[4];     
 3437:     } 
 3438:     return $currentstring;
 3439: }
 3440: 
 3441: sub end_wbr {
 3442:     my ($target,$token) = @_;
 3443:     my $currentstring = '';
 3444:     if ($target eq 'web') {
 3445: 	$currentstring = $token->[2];    
 3446:     } 
 3447:     return $currentstring;
 3448: }
 3449: 
 3450: #-- <hideweboutput> tag
 3451: sub start_hideweboutput {
 3452:     my ($target,$token) = @_;
 3453:     if ($target eq 'web') {
 3454: 	&Apache::lonxml::startredirection();     
 3455:     } 
 3456:     return '';
 3457: }
 3458: 
 3459: sub end_hideweboutput {
 3460:     my ($target,$token) = @_;
 3461:     my $currentstring = '';
 3462:     if ($target eq 'web') {
 3463: 	$currentstring = &Apache::lonxml::endredirection();    
 3464:     } 
 3465:     return '';
 3466: }
 3467: 
 3468: 
 3469: sub image_replication {
 3470:     my $src = shift;
 3471:     if (not -e $src) { &Apache::lonnet::repcopy($src); }
 3472:     #replicates eps or ps 
 3473:     my $epssrc = my $pssrc = $src;
 3474:     $epssrc =~ s/\.(gif|jpg|jpeg|png)$/.eps/i;
 3475:     $pssrc  =~ s/\.(gif|jpg|jpeg|png)$/.ps/i;
 3476:     if (not -e $epssrc && not -e $pssrc) {
 3477: 	my $result=&Apache::lonnet::repcopy($epssrc);
 3478: 	if ($result ne OK) { &Apache::lonnet::repcopy($pssrc); }
 3479:     }
 3480:     return '';
 3481: }
 3482: 
 3483: sub image_size {
 3484:     my ($src,$scaling,$parstack,$safeeval)=@_;
 3485:     #size of image from gif/jpg/jpeg/png 
 3486:     my $image = Image::Magick->new;
 3487:     my $current_figure = $image->Read($src);
 3488:     my $width_param = $image->Get('width') * $scaling;;
 3489:     my $height_param = $image->Get('height') * $scaling;;
 3490:     undef $image;
 3491:     #do we have any specified LaTeX size of the picture?
 3492:     my $TeXwidth = &Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval);
 3493:     my $TeXheight = &Apache::lonxml::get_param('TeXheight',$parstack,$safeeval);
 3494:     #do we have any specified web size of the picture?
 3495:     my $width = &Apache::lonxml::get_param('width',$parstack,$safeeval,
 3496: 					   undef,1);
 3497:     if ($TeXwidth ne '') {  
 3498: 	if ($TeXwidth=~/(\d+)\s*\%/) {
 3499: 	    $width_param = $1*$ENV{'form.textwidth'}/100;
 3500: 	} else { 
 3501: 	    $width_param = $TeXwidth;
 3502: 	}
 3503:     } elsif ($TeXheight ne '') {
 3504: 	$width_param = $TeXheight/$height_param*$width_param;
 3505:     } elsif ($width ne '') {
 3506: 	$width_param = $width*$scaling;      
 3507:     }
 3508:     if ($width_param > $ENV{'form.textwidth'}) {$width_param =0.95*$ENV{'form.textwidth'}}
 3509:     return $width_param;
 3510: }
 3511: 
 3512: sub eps_generation {
 3513:     my ($src,$file,$width_param) = @_;	     
 3514:     my $filename = "/home/httpd/prtspool/$ENV{'user.name'}_$ENV{'user.domain'}_printout.dat";
 3515:     my $temp_file = Apache::File->new('>>'.$filename); 
 3516:     print $temp_file "$src\n";
 3517:     my $newsrc = $src;
 3518:     $newsrc =~ s/(\.gif|\.jpg|\.jpeg)$/\.eps/i;
 3519:     $newsrc=~s/\/home\/httpd\/html\/res//;
 3520:     $newsrc=~s/\/home\/([^\/]*)\/public_html\//\/$1\//;
 3521:     $newsrc=~s/\/\.\//\//;
 3522:     $newsrc=~s/\/([^\/]+)\.(ps|eps)/\//;
 3523:     return ' \graphicspath{{/home/httpd/prtspool'.$newsrc.'}}\includegraphics[width='.$width_param.' mm]{'.$file.'} ';
 3524: }
 3525: 
 3526: sub file_path {     
 3527:     my $src=shift;
 3528:     my ($file,$path); 
 3529:     if ($src =~ m!(.*)/([^/]*)$!) {
 3530: 	$file = $2; 
 3531: 	$path = $1.'/'; 
 3532:     } 
 3533:     return $file,$path;
 3534: }
 3535: 
 3536: sub recalc {
 3537:     my $argument = shift;
 3538:     if (not $argument=~/(mm|cm|in|pc|pt)/) {return $argument.' mm';}
 3539:     $argument=~/\s*(\d+\.?\d*)\s*(mm|cm|in|pc|pt)/;
 3540:     my $value=$1;
 3541:     my $units=$2;
 3542:     if ($units eq 'cm') {
 3543: 	$value*=10;
 3544:     } elsif ($units eq 'in') {
 3545: 	$value*=25.4;
 3546:     } elsif ($units eq 'pc') {
 3547: 	$value*=(25.4*12/72.27);
 3548:     } elsif ($units eq 'pt') {
 3549: 	$value*=(25.4/72.27);
 3550:     }
 3551:     return $value.' mm';
 3552: }
 3553: 
 3554: sub LATEX_length {
 3555:     my $garbage=shift;
 3556:     $garbage=~s/^\s+$//;
 3557:     $garbage=~s/^\s+(\S.*)/$1/;#space before 
 3558:     $garbage=~s/(.*\S)\s+$/$1/;#space after 
 3559:     $garbage=~s/(\s)+/$1/;#only one space
 3560:     $garbage=~s/(\\begin{([^\}]+)}|\\end{([^\}]+)})//g;#remove LaTeX \begin{...} and \end{...}
 3561:     $garbage=~s/(\$\_\{|\$\_|\$\^{|\$\^|\}\$)//g;#remove $_{,$_,$^{,$^,}$
 3562:     $garbage=~s/([^\\])\$/$1/g;#$
 3563:     $garbage=~s/(\\ensuremath\{\_\{|\\ensuremath\{\_|\\ensuremath\{\^{|\\ensuremath\{\^|\})//g;#remove \ensuremath{...}
 3564:    $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;
 3565:     $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;
 3566:     $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;
 3567:     $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;
 3568:     $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;
 3569:     $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;
 3570:     $garbage=~s/(\\hat{([^}]+)}|\\check{([^}]+)}|\\dot{([^}]+)}|\\breve{([^}]+)}|\\acute{([^}]+)}|\\ddot{([^}]+)}|\\grave{([^}]+)}|\\tilde{([^}]+)}|\\mathring{([^}]+)}|\\bar{([^}]+)}|\\vec{([^}]+)})/$1/g;
 3571:     #remove some other LaTeX command
 3572:     $garbage=~s|\\(\w+)\\|\\|g;	 
 3573:     $garbage=~s|\\(\w+)(\s*)|$2|g;	 	 
 3574:     $garbage=~s|\+|11|g;
 3575: 
 3576:     &Apache::lonnet::logthis("garbage was just $garbage");
 3577:     my  $value=length($garbage);
 3578:     return $value;
 3579: }
 3580: 
 3581: 
 3582: 
 3583: 
 3584: 1;
 3585: __END__

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