Diff for /loncom/xml/lontexconvert.pm between versions 1.29 and 1.41

version 1.29, 2004/01/28 17:16:27 version 1.41, 2005/01/31 11:26:08
Line 42 Line 42
 package Apache::lontexconvert;  package Apache::lontexconvert;
   
 use strict;  use strict;
 use tth;  use tth();
 use vars qw($errorstring);  use vars qw($errorstring);
 use Apache();  use Apache();
 use Apache::lonmsg;  use Apache::lonmsg();
 use Apache::lonxml;  use Apache::lonxml();
 use Apache::lonmenu;  use Apache::lonmenu();
   use Apache::lonlocal;
   
 # ====================================================================== Header  # ====================================================================== Header
   
Line 68  sub init_tth { Line 69  sub init_tth {
     &tth::tthoptions('-L -u0 '.$options);      &tth::tthoptions('-L -u0 '.$options);
  }   }
     }      }
     &Apache::lonnet::logthis("caled and use $options");  
     &Apache::lonnet::logthis("caller ".join(':',caller(0)));  
   
 }  }
   
 sub header {  sub header {
   $errorstring='';      $errorstring='';
   my $time=time;      my $time=time;
   &init_tth();      &init_tth();
   return &Apache::lonxml::xmlbegin().      return &Apache::lonxml::xmlbegin().
          &Apache::lonxml::fontsettings().   "\n<head>\n".
          "\n<head>\n".   &Apache::lonxml::fontsettings().
          &Apache::lonmenu::registerurl(undef,'tex').   &Apache::lonmenu::registerurl(undef,'tex').
  "\n</head>\n";   "\n</head>\n";
 }  }
   
 # ================================================================== Conversion  # ================================================================== Conversion
   
 $Apache::lontexconvert::messedup=0;  $Apache::lontexconvert::messedup=0;
 sub converted {  
   my $texstring=shift;  # we need this routine because &converted can get called from inside
   my $xmlstring='[UNDISPLAYABLE]';  # of the safespace (through &xmlparse('<m>stuff</m>') which doesn't
   if ($Apache::lontexconvert::messedup) {  # allow the opcode for alarm, so we need to compile this before we get
       return '[TeX Unconverted Due To Previous Errors]';  # into the safe space since opcode checks only occur at compile time
   }  sub convert_real {
   eval(<<'ENDCONV');      my ($texstring)=@_;
   {      my ($xmlstring,$errorstring);
     local $SIG{SEGV}=sub { $Apache::lontexconvert::messedup=1; die; };      local $SIG{SEGV}=sub { $Apache::lontexconvert::messedup=1; die; };
       local $SIG{ALRM}=sub { 
    &Apache::lonnet::logthis("ALRM");
    $xmlstring='['.&mt("TeX unconverted due to errors").']';
    $Apache::lontexconvert::messedup=1;
    die &mt("TeX unconverted due to errors");
       };
       alarm($Apache::lonnet::perlvar{'lonScriptTimeout'});
     if ($ENV{'browser.mathml'}) {      if ($ENV{'browser.mathml'}) {
       $xmlstring=&tth::ttm($$texstring);   $xmlstring=&tth::ttm($$texstring);
       $xmlstring=~s/\<math\>/\<math xmlns=\"\&mathns\;\"\>/g;   $xmlstring=~s/\<math\>/\<math xmlns=\"\&mathns\;\"\>/g;
       $xmlstring=~s/\<br\>/\<br\/\>/g;   $xmlstring=~s/\<br\>/\<br\/\>/g;
       $xmlstring=~s/\<p\>/\<p\>\<\/p\>/g;   $xmlstring=~s/\<p\>/\<p\>\<\/p\>/g;
       $errorstring.=&tth::ttmerror();   $errorstring.=&tth::ttmerror();
     } else {      } else {
       $xmlstring=&tth::tth($$texstring);   $xmlstring=&tth::tth($$texstring);
       $errorstring.=&tth::ttherror();   $errorstring.=&tth::ttherror();
       $xmlstring=~s-</font(\s*)>-</font>-g;   $xmlstring=~s-</font(\s*)>-</font>-g;
     }      }
       $xmlstring=~s/\<br clear\=\"all\"/\<br/gs;
     $xmlstring=~s/^\s*//;      $xmlstring=~s/^\s*//;
     $xmlstring=~s/\s*$//;      $xmlstring=~s/\s*$//;
   }      alarm(0);
       return ($xmlstring,$errorstring);
   }
   
   sub converted {
       my $texstring=shift;
       my $xmlstring='['.&mt('UNDISPLAYABLE').']';
       if ($Apache::lontexconvert::messedup) {
    return '['.&mt('TeX unconverted due to previous errors').']';
       }
       eval(<<'ENDCONV');
       ($xmlstring,$errorstring)=&convert_real($texstring)
 ENDCONV  ENDCONV
   if ($Apache::lontexconvert::messedup || &tth::tthmessedup()) {      if ($@) {
       &Apache::lonnet::logthis("Trying to kill myself");   $errorstring.=&mt("Evaluation Error: ").$@;
       $Apache::lontexconvert::messedup=1;   $Apache::lontexconvert::messedup=1;
       my $request=Apache->request();      }
       $request->child_terminate();      if ($Apache::lontexconvert::messedup || &tth::tthmessedup() || 
   }   $errorstring) {
   return $xmlstring;   &Apache::lonnet::logthis("Trying to kill myself");
    $Apache::lontexconvert::messedup=1;
    my $request=Apache->request();
    $request->child_terminate();
       }
       return $xmlstring;
 }  }
   
 # ====================================================================== Footer  # ====================================================================== Footer
Line 139  sub footer { Line 161  sub footer {
 sub to_convert {  sub to_convert {
     my ($string) = @_;      my ($string) = @_;
     $string=~s/\<br\s*\/?\>/ /gs;      $string=~s/\<br\s*\/?\>/ /gs;
     $string=~s/\s/ /gs;  #    $string=~s/\s/ /gs;
     $string=&HTML::Entities::decode($string);      $string=&HTML::Entities::decode($string);
     return &converted(\$string);      return &converted(\$string);
 }  }
   
 sub smiley {  sub smiley {
    my $expression=shift;      my $expression=shift;
    if ($ENV{'browser.imagesuppress'} eq 'on') { return $expression; }      if ($ENV{'browser.imagesuppress'} eq 'on') { return $expression; }
    my %smileys=('\:\-\)' => 'smiley',      my %smileys=('\:\-\)' => 'smiley',
                 '8\-\)'  => 'coolsmile',   '8\-\)'  => 'coolsmile',
                 '8\-(I|\|)'   => 'coolindiff',   '8\-(I|\|)'   => 'coolindiff',
                 ':\-(I|\|)'   => 'neutral',   ':\-(I|\|)'   => 'neutral',
                 '\:\-(o|O|\(\))' => 'shocked',   '\:\-(o|O|\(\))' => 'shocked',
                 ':\-\('  => 'frowny',   ':\-\('  => 'frowny',
                 '\;\-\)' => 'wink',   '\;\-\)' => 'wink',
                 '\:\-P'  => 'baeh',   '\:\-P'  => 'baeh',
                 '\:\-(\\\|\\/)' => 'hrrm',   '\:\-(\\\|\\/)' => 'hrrm',
                 '\:\-D'  => 'bigsmile',   '\:\-D'  => 'bigsmile',
                 '\:\-C'  => 'angry',   '\:\-C'  => 'angry',
                 '\:(\'|\`)\-\(' => 'cry',   '\:(\'|\`)\-\(' => 'cry',
                 '\:\-(X|\#)' => 'lipsrsealed',   '\:\-(X|\#)' => 'lipsrsealed',
                 '\:\-S' => 'huh');   '\:\-S' => 'huh');
    my $iconpath=$Apache::lonnet::perlvar{'lonIconsURL'};      my $iconpath=$Apache::lonnet::perlvar{'lonIconsURL'};
    foreach (keys %smileys) {      foreach (keys %smileys) {
       $expression=~s/$_/\<img src="$iconpath\/$smileys{$_}.gif" \/\>/gs;    $expression=~s/$_/\<img src="$iconpath\/$smileys{$_}.gif" \/\>/gs; 
    }      }
    return $expression;      return $expression;
 }  }
   
 sub msgtexconverted {  sub msgtexconverted {
     my $message=shift;      my ($message,$email) = @_;
   
     $errorstring='';      $errorstring='';
     &init_tth();      &init_tth();
     my $outmessage='';      my $outmessage='';
     my $tex=0;      my $tex=0;
     foreach (split(/(?:\&lt\;|\<)\/*m\s*(?:\&gt\;|\>)/i,$message)) {      foreach (split(/(?:\&lt\;|\<)\/*m\s*(?:\&gt\;|\>)/i,$message)) {
  if ($tex) {   if ($tex) {
     $outmessage.=&to_convert($_); $tex=0;      if ($email) {
    $outmessage.='</pre><tt>'.&to_convert($_).'</tt><pre>'; $tex=0;
       } else {
    $outmessage.=&to_convert($_); $tex=0;
       }
  } else {   } else {
             $outmessage.=&smiley($_); $tex=1;              $outmessage.=&smiley($_); $tex=1;
  }   }

Removed from v.1.29  
changed lines
  Added in v.1.41


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