home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / perl / patch / perldoc.SH < prev    next >
Text File  |  1995-12-03  |  5KB  |  203 lines

  1. case $CONFIG in
  2. '')
  3.     if test -f config.sh; then TOP=.;
  4.     elif test -f ../config.sh; then TOP=..;
  5.     elif test -f ../../config.sh; then TOP=../..;
  6.     elif test -f ../../../config.sh; then TOP=../../..;
  7.     elif test -f ../../../../config.sh; then TOP=../../../..;
  8.     else
  9.         echo "Can't find config.sh."; exit 1
  10.     fi
  11.     . $TOP/config.sh
  12.     ;;
  13. esac
  14. : This forces SH files to create target in same directory as SH file.
  15. : This is so that make depend always knows where to find SH derivatives.
  16. case "$0" in
  17. */*) cd `expr X$0 : 'X\(.*\)/'` ;;
  18. esac
  19. echo "Extracting perldoc (with variable substitutions)"
  20. rm -f perldoc
  21. $spitshell >perldoc <<!GROK!THIS!
  22. #!$binexp/perl
  23. !GROK!THIS!
  24.  
  25. $spitshell >>perldoc <<'!NO!SUBS!'
  26.  
  27. #
  28. # Perldoc revision #1 -- look up a piece of documentation in .pod format that
  29. # is embedded in the perl installation tree.
  30. #
  31. # This is not to be confused with Tom Christianson's perlman, which is a
  32. # man replacement, written in perl. This perldoc is strictly for reading
  33. # the perl manuals, though it too is written in perl.
  34. #
  35. # Version 1.01:    Tue May 30 14:47:34 EDT 1995
  36. #        Andy Dougherty  <doughera@lafcol.lafayette.edu>
  37. #   -added pod documentation.
  38. #   -added PATH searching.
  39. #   -added searching pod/ subdirectory (mainly to pick up perlfunc.pod
  40. #    and friends.
  41.  
  42. =head1 NAME
  43.  
  44. perldoc - Look up Perl documentation in pod format.
  45.  
  46. =head1 SYNOPSIS
  47.  
  48. B<perldoc> [B<-h>] PageName|ModuleName
  49.  
  50. =head1 DESCRIPTION
  51.  
  52. I<perldoc> looks up a piece of documentation in .pod format that is
  53. embedded in the perl installation tree or in a perl script, and displays
  54. it via pod2man | nroff -man | $PAGER.  This is primarily used for the
  55. documentation for the perl library modules. 
  56.  
  57. Your system may also have man pages installed for those modules, in
  58. which case you can probably just use the man(1) command.
  59.  
  60. =head1 OPTIONS
  61.  
  62. =over 5
  63.  
  64. =item B<-h> help
  65.  
  66. Prints out a brief help message.
  67.  
  68. =item B<PageName|ModuleName>
  69.  
  70. The item you want to look up.  Nested modules (such as C<File::Basename>)
  71. are specified either as C<File::Basename> or C<File/Basename>.  You
  72. may also give a descriptive name of a page, such as C<perlfunc>.
  73.  
  74. =back
  75.  
  76. =head1 ENVIRONMENT
  77.  
  78. Any switches in the C<PERLDOC> environment variable will be used before the 
  79. command line arguments.  C<perldoc> also searches directories
  80. specified by the C<PERL5LIB> (or C<PERLLIB> if C<PERL5LIB> is not
  81. defined) and C<PATH> environment variables.
  82. (The latter is so that embedded pods for executables, such as
  83. C<perldoc> itself, are available.)
  84.  
  85. =head1 AUTHOR
  86.  
  87. Kenneth Albanowski <kjahds@kjahds.com>
  88.  
  89. Minor updates by Andy Dougherty <doughera@lafcol.lafayette.edu>
  90.  
  91. =head1 SEE ALSO
  92.  
  93. =head1 DIAGNOSTICS
  94.  
  95. =cut
  96.  
  97. if(@ARGV<1) {
  98.     die <<EOF;
  99. Usage: $0 [-h] PageName|ModuleName
  100.  
  101. We suggest you use "perldoc perldoc" to get aquainted 
  102. with the system.
  103. EOF
  104. }
  105.  
  106. use Getopt::Std;
  107.  
  108. sub usage{
  109.         warn "@_\n" if @_;
  110.     die <<EOF;
  111. perlman [-h] PageName|ModuleName...
  112.     -h   Display this help message.
  113. PageName|ModuleName...
  114.          is the name of a piece of documentation that you want to look at. You 
  115.          may either give a descriptive name of the page (as in the case of
  116.          `perlfunc') or the name of a module, either like `Term::Info', 
  117.          `Term/Info'.
  118.          
  119. Any switches in the PERLDOC environment variable will be used before the 
  120. command line arguments.
  121.  
  122. EOF
  123. }
  124.  
  125. use Text::ParseWords;
  126.  
  127. unshift(@ARGV,shellwords($ENV{"PERLDOC"}));
  128.  
  129. getopts("h") || usage;
  130.  
  131. usage if $opt_h;
  132.  
  133. $index = $opt_i;
  134. @pages = @ARGV;
  135.  
  136. sub containspod {
  137.     my($file) = @_;
  138.     local($_);
  139.     open(TEST,"<$file");
  140.     while(<TEST>) {
  141.         if(/^=head/) {
  142.             close(TEST);
  143.             return 1;
  144.         }
  145.     }
  146.     close(TEST);
  147.     return 0;
  148. }
  149.  
  150. sub searchfor {
  151.     my($s,@dirs) = @_;
  152.     $s =~ s!::!/!g;
  153.     # printf STDERR "looking for $s in @dirs\n";
  154.     
  155.     foreach $dir (@dirs) {
  156.         if( -f "$dir/$s.pod") { return "$dir/$s.pod" }
  157.         elsif( -f "$dir/$s.pm" and containspod("$dir/$s.pm"))
  158.             { return "$dir/$s.pm" }
  159.         elsif( -f "$dir/$s" and containspod("$dir/$s"))
  160.             { return "$dir/$s" } 
  161.         elsif( -f "$dir/pod/$s.pod") { return "$dir/pod/$s.pod" }
  162.         elsif( -f "$dir/pod/$s" and containspod("$dir/pod/$s"))
  163.             { return "$dir/pod/$s" } 
  164.     }
  165.     return ();
  166. }
  167.  
  168.  
  169. $ENV{PAGER} ||= "more";
  170.  
  171. foreach (@pages) {
  172.     print STDERR "Searching for $_\n";
  173.     # We must look both in @INC for library modules and in PATH
  174.     # for executables, like h2xs or perldoc itself.
  175.     @searchdirs = @INC;
  176.     push(@searchdirs, split(':', $ENV{'PATH'}) );
  177.     @files= searchfor($_,@searchdirs);
  178.     if( @files ) {
  179.         print STDERR "Found as @files\n";
  180.     } else {
  181.         print STDERR "No documentation found for $_\n";
  182.     }
  183.     push(@found,@files);
  184. }
  185.  
  186. $cmd=$filter="";
  187.  
  188. if( ! -t STDOUT ) { $opt_f = 1 }
  189.  
  190. $cmd = "pod2man - | nroff -man";
  191. if( ! $opt_f ) { $filter = "|$ENV{PAGER}" };
  192.  
  193. open(OUT,"|$cmd$filter");
  194. foreach (@found) {
  195.     open(IN,"<$_");
  196.     print OUT while <IN>;
  197.     close(IN);
  198. }
  199. close(OUT);
  200. !NO!SUBS!
  201. chmod 755 perldoc
  202. $eunicefix perldoc
  203.