File:  [LON-CAPA] / loncom / interface / lonhelp.pm
Revision 1.46: download - view: text, annotated - select for diffs
Sat Apr 1 13:55:32 2017 UTC (7 years, 1 month ago) by raeburn
Branches: MAIN
CVS tags: version_2_11_X, version_2_11_4_uiuc, version_2_11_4, version_2_11_3_uiuc, version_2_11_3_msu, version_2_11_3, version_2_11_2_uiuc, version_2_11_2_msu, version_2_11_2_educog, version_2_11_2, HEAD
- Horizontal rule between text from each help file, where displayed help is
  an aggregate of multiple help items.

    1: # The LearningOnline Network with CAPA
    2: #
    3: # $Id: lonhelp.pm,v 1.46 2017/04/01 13:55:32 raeburn Exp $
    4: #
    5: # .tex help system web server handler
    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: #
   29: # .tex file help handler
   30: 
   31: 
   32: package Apache::lonhelp;
   33: 
   34: use strict;
   35: use Apache::Constants qw(:common :http);
   36: use Apache::File();
   37: use Apache::loncommon();
   38: use Apache::lonacc();
   39: use Apache::lontexconvert();
   40: use Apache::lonnavmaps; # for advancedUser
   41: use Apache::lonlocal;
   42: use Apache::lonnet;
   43: use tth();
   44: use GDBM_File();
   45: use lib '/home/httpd/lib/perl/';
   46: use LONCAPA;
   47:  
   48: 
   49: # This sub takes the name of a label in, and converts it to something
   50: # that is a valid anchor name.
   51: 
   52: sub processLabelName {
   53:     my ($name) = @_;
   54:     $name =~ tr/a-zA-Z0-9/_/cs;
   55:     return $name;
   56: }
   57: 
   58: # Serve out the text
   59: sub servetext {
   60:     my ($r,$uri,$text,$is_mobile,$firstfile) = @_;
   61:     my $bugs;
   62:     my %helpconfig = &Apache::lonnet::get_dom('configuration',['helpsettings'],
   63:                                               $env{'request.role.domain'});
   64:     if (ref($helpconfig{'helpsettings'}) eq 'HASH') {
   65:         if ($helpconfig{'helpsettings'}{'submitbugs'} eq '1') {
   66:             $bugs = &Apache::loncommon::help_open_bug('Documentation',&mt('Report a documentation bug'));
   67:         }
   68:     }
   69:     my %lt = &Apache::lonlocal::texthash(
   70:                                            header  => 'LON-CAPA Help',
   71:                                            search  => 'Search LON-CAPA help',
   72:                                            query   => 'Search',
   73:                                         );
   74:     $r->print(<<HEADER);
   75:     <h3 style="font: sans-serif"><img align="right" alt="help logo"
   76:     src="/adm/help/gif/lonhelpheader.gif" />$lt{'header'}</h3><hr />
   77:     <!-- BEGIN -->
   78: HEADER
   79:     if ($is_mobile) {
   80:         my $width = 500;
   81:         my $height = 400;
   82:         my $machine = &Apache::lonnet::absolute_url();
   83:         $r->print(&Apache::loncommon::nicescroll_javascript('helpwrapper',
   84:                                                             {cursorcolor => '#00F',
   85:                                                              railalign => 'right',
   86:                                                              railoffset => '{top:5,left:40}'},
   87:                                                              undef,1,$machine.$firstfile));
   88:         $r->print('<div id="helpwrapper" style="height:'.$height.'px; width:'.$width.'px; overflow: auto;">'.
   89:                   $text.
   90:                   '</div>');
   91:     } else {
   92:         $r->print($text);
   93:     }
   94: 
   95:     if (&Apache::lonnavmaps::advancedUser()) {
   96:         $r->print(<<FOOTER);
   97:     <hr /><div class="LC_left_float">
   98:     <form action="$uri" method="post">
   99:     <fieldset><legend>$lt{'search'}</legend>
  100:     <input type="text" name="searchterm" size="40" />
  101:     <input type="submit" value="$lt{'query'}" />
  102:     </fieldset>
  103:     </form>
  104:     </div>
  105:     <div class="LC_left_float">
  106:     </div>
  107:     <div style="padding:0;clear:both;margin:0;border:0"></div>
  108: $bugs
  109: FOOTER
  110:     }
  111: 
  112:     $r->print(<<ENDBODY);
  113:     <!-- END -->
  114: ENDBODY
  115: 
  116: }
  117: 
  118: # Render takes a tex fragment, transforms it for TtH, and returns the
  119: # HTML equivalent
  120: sub render {
  121:     my ($tex, $docroot) = @_;
  122:     tie (my %fragmentLabels, 'GDBM_File', $docroot . '/adm/help/fragmentLabels.gdbm', 0, 0);
  123: 
  124:     # This tells TtH what to do with captions, labels, and other
  125:     # things
  126:     $tex = "\\documentclass{article}\n" . $tex;
  127: 
  128:     # We process these ourselves because TtH can't handle then without
  129:     # LaTeX .aux files
  130:     # absolute paths for use with help.loncapa.org
  131:     $tex =~ s|  \\ref\{([^}]*)\}
  132:              |
  133:               my $label=$1;
  134:               my $icon='/adm/help/help.png';
  135:               my $ext;
  136:               if ($1!~/\.hlp$/) {
  137:                   if (($1 =~ /^\w+\.manual\.pdf$/) && (-e $docroot.'/adm/help/'.$1)) {
  138:                      $icon = '/adm/lonIcons/pdf.gif';
  139:                   } elsif ((!exists($fragmentLabels{$1})) && ($1!~/\.hlp$/)) {
  140: 	             &Apache::lonnet::logthis("ERROR: $1 not a valid help label");
  141:                      $label='Error';
  142:                   } else {
  143:                      $label=substr($fragmentLabels{$1}, 0, -4);
  144:                      $ext = '.hlp#' . &processLabelName($1);
  145: 		  }
  146: 	      } else {
  147: 		  $label=~s/\.hlp$//;
  148:                   $ext = '.hlp#' . &processLabelName($1);
  149: 	      }
  150:              '\\begin{html}<a href="/adm/help/'.
  151:               $label .
  152:               $ext . 
  153:              '"><img src="'.$icon.'" border="0" alt="'.&mt('Help').'" /></a>' .
  154:              '\\end{html}'
  155:              |gxe;
  156: 
  157:     # Backslashes
  158:     $tex =~ s|\\textbackslash|###BACKSLASH###|g;
  159: 
  160:     # Figures leftover without captions
  161:     $tex =~ s|  \\includegraphics(\[[^]]*\])*\{([^}]*)\}
  162:              |  '\\begin{html}<img src="/adm/help/gif/' . $2 . '.gif" border="2"'.
  163:                 ' bordercolor="#000000"/>\\end{html}'
  164:              |gxe;
  165: 
  166: 
  167:     $tex=&Apache::lontexconvert::tth_converted(\$tex);
  168:     
  169:     # Finish backslashes
  170:     $tex =~ s/###BACKSLASH###/'\\'/ge;
  171:  
  172:     # Fix the pretty quotes
  173:     $tex =~ s/('')|(``)/&quot;/g; #" to get emacs syntax highlighter happy
  174: 
  175:     $tex =~ s/`/'/g;
  176: 
  177:     # For some reason all captions come out as "Figure 0:", so
  178:     # just duck the issue...
  179: 
  180:     $tex =~ s/Figure 0://g;
  181:     $tex.=$Apache::lontexconvert::errorstring;
  182:     untie %fragmentLabels;
  183: 
  184:     return $tex;
  185: }
  186: 
  187: sub listmatches {
  188:     my ($docroot,$term,$subdir) =@_;
  189:     unless ($subdir) { $subdir=''; }
  190:     my $output='';
  191:     opendir(DIR,$docroot.'/adm/help/tex/'.$subdir);
  192:     foreach my $filename (sort readdir(DIR)) {
  193: 	if ($filename=~/\.tex$/) {
  194: 	    open(FH,$docroot.'/adm/help/tex/'.$subdir.$filename);
  195: 	    my $quote='';
  196: 	    while (my $line=<FH>) {
  197: 		if ($line=~/\Q$term\E/i) {
  198: 		    $line=~s/\\\w+//gs;
  199: 		    $line=~s/\{//gs;
  200: 		    $line=~s/\}//gs;
  201: 		    $line=~s/\\/ /gs;
  202:                     $line=~s/\</\&lt\;/gs;
  203:                     $line=~s/\>/\&gt\;/gs;
  204: 		    $line=~s/(\Q$term\E)/\<b\>$1\<\/b\>/gsi;
  205: 		    $quote.='<br />...'.$line.'...';
  206: 		}
  207: 	    }
  208: 	    close(FH);
  209: 	    if ($quote) {
  210: 		my $title=$filename;
  211:                 $title=~s/\_/ /gs;
  212:                 $title=~s/\.tex$//;
  213:                 $filename=~s/\.tex$/\.hlp/;
  214: 		$output.='<li><a href="/adm/help/tex/'.$subdir.$filename.'">'.$title.'</a>'.$quote.'</li>';
  215: 	    }
  216: 	}
  217:     }
  218:     closedir(DIR);
  219:     return (($output?'<ul>'.$output.'</ul>':&mt('"[_1]" not found',$term)),$output);
  220: }
  221: 
  222: sub handler {
  223:      my $r = shift;
  224: 
  225:      my $docroot = $r->dir_config('lonDocRoot');
  226: 
  227:      &Apache::lonlocal::get_language_handle($r);
  228:      &Apache::loncommon::content_type($r,"text/html");
  229:      my $caller;
  230:      if ($env{'form.searchterm'}=~/\w/) {
  231:         $caller = 'search';
  232:      }
  233: 
  234:      my $starthash;
  235: 
  236:      if ($env{'browser.mobile'}) {
  237:          $starthash = {
  238:                         only_body   => 1,
  239:                         add_entries => {
  240:                                          'onload' => "javascript:expand_div('$caller');",
  241:                                        },
  242:                       };
  243:      } else {
  244:          $starthash = {
  245:                         only_body   => 1,
  246:                       };
  247:      }
  248:      my $firstfile;
  249:      my $start_page=
  250: 	 &Apache::loncommon::start_page('LON-CAPA Help',undef,$starthash);
  251:      my $text='';
  252:      my $uri = $r->uri;
  253:      if ($env{'form.searchterm'}=~/\w/) {
  254: 	 ($text,my $matches)=&listmatches($docroot,$env{'form.searchterm'},&Apache::lonlocal::current_language().'/');
  255:          if ($matches) {
  256:              my ($englishresult,$englishmatches)=&listmatches($docroot,$env{'form.searchterm'});
  257:              if ($englishmatches) {
  258:                 $text.='<hr />'.$englishresult;
  259:              }
  260:          } else {
  261:              $text=&listmatches($docroot,$env{'form.searchterm'}); 
  262:          }
  263:      } else {
  264:          my $filenames = &unescape(substr($uri,rindex($uri,'/')+1,-4));
  265: 	 
  266: 	 # Security check on the file; the whole filename must consist
  267: 	 # of nothing but alphanums, ' ,, or ., or the file
  268: 	 # will be "not found", no matter what.
  269: 	 
  270: 	 return HTTP_NOT_FOUND if ($filenames !~ /\A[-0-9a-zA-z_'',:.]+\Z/);
  271: 	 
  272: 	 # Join together the tex files, return HTTP_NOT_FOUND if any of
  273: 	 # them are not found
  274: 	 my $tex = '';
  275: 	 # Since in insertlist.tab I want to specify multiple files,
  276: 	 # and insertlist.tab also uses commas, I need something else
  277: 	 # so replace : with ,
  278: 	 $filenames =~ s/:/,/g;
  279: 	 my @files = split(/,/, $filenames);
  280:          $firstfile = '/adm/help/'.$files[0].'.hlp';
  281:          my $count = 0;
  282: 
  283: 	 for my $filename (@files) {
  284: 	     if (-e $docroot.'/adm/help/tex/'.
  285: 		 &Apache::lonlocal::current_language().'/'.
  286: 		 $filename.'.tex') {
  287: 		 $filename=&Apache::lonlocal::current_language().'/'.$filename;
  288: 	     }
  289: 	     (my $file = Apache::File->new($docroot
  290: 					   . '/adm/help/tex/'.$filename.'.tex'))
  291: 	         or return HTTP_NOT_FOUND;
  292: 	     $tex .= join('', <$file>);
  293:              $count ++;
  294:              if (scalar(@files) > $count) {
  295:                  $tex .= '\hrulefill';
  296:              }
  297: 	 }
  298: 
  299: 	 $text = &render($tex, $docroot);
  300:      }
  301: 
  302:      $r->send_http_header;
  303:      $r->print($start_page);
  304:      &servetext($r,$uri,$text,$env{'browser.mobile'},$firstfile);
  305:      $r->print(&Apache::loncommon::end_page());
  306: 
  307:      return OK;
  308: }
  309: 
  310: 1;

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