Diff for /loncom/interface/lonhelp.pm between versions 1.8 and 1.9

version 1.8, 2003/08/06 14:28:42 version 1.9, 2003/08/29 02:45:07
Line 35  use Apache::File(); Line 35  use Apache::File();
 use Apache::loncommon();  use Apache::loncommon();
 use Apache::lonacc();  use Apache::lonacc();
 use Apache::lontexconvert();  use Apache::lontexconvert();
   use Apache::lonnavmaps; # for advancedUser
 use tth();  use tth();
 use GDBM_File();  use GDBM_File();
   
Line 65  HEADER Line 66  HEADER
   
     $r->print($tex);      $r->print($tex);
   
       if (Apache::lonnavmaps::advancedUser()) {
 $r->print(<<FOOTER);  $r->print(<<FOOTER);
     <!-- END -->      <!-- END -->
     <hr />      <hr />
Line 73  $r->print(<<FOOTER); Line 75  $r->print(<<FOOTER);
     </body>      </body>
 </html>  </html>
 FOOTER  FOOTER
   } else {
       $r->print(<<FOOTER);
       <!-- END -->
       </body>
   </html>
   FOOTER
   }
 }  }
   
 # Render takes a tex fragment, transforms it for TtH, and returns the  # Render takes a tex fragment, transforms it for TtH, and returns the

Removed from v.1.8  
changed lines
  Added in v.1.9


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