Searched defs:Pod (Results 1 - 25 of 29) sorted by relevance

12

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DFunctions.pm1 package Pod::Functions;
6 Pod::Functions - Group Perl's functions a la perlfunc.pod
10 use Pod::Functions;
17 perl /path/to/lib/Pod/Functions.pm
H A DParseLink.pm0 # Pod::ParseLink -- Parse an L<> formatting code in POD text.
23 package Pod::ParseLink;
114 Pod::ParseLink - Parse an LE<lt>E<gt> formatting code in POD text
118 use Pod::ParseLink;
168 L<Pod::Parser>
H A DPlainer.pm1 package Pod::Plainer;
3 use Pod::Parser;
4 our @ISA = qw(Pod::Parser);
37 Pod::Plainer - Perl extension for converting Pod to old style Pod.
41 use Pod::Plainer;
43 my $parser = Pod::Plainer -> new ();
48 Pod::Plainer uses Pod
[all...]
H A DUsage.pm2 # Pod/Usage.pm -- print usage messages for the running script.
10 package Pod::Usage;
18 Pod::Usage, pod2usage() - print a usage message from embedded pod documentation
22 use Pod::Usage
206 use Pod::Usage;
221 use Pod::Usage;
318 uses B<Pod::Usage> in combination with B<Getopt::Long> to do all of these
322 use Pod::Usage;
339 sample - Using GetOpt::Long and Pod::Usage
388 Based on code for B<Pod
[all...]
H A DInputObjects.pm2 # Pod/InputObjects.pm -- package which defines objects for input streams
11 package Pod::InputObjects;
21 Pod::InputObjects - objects representing POD input paragraphs, commands, etc.
25 use Pod::InputObjects;
37 This module defines some basic input objects used by B<Pod::Parser> when
45 =item package B<Pod::InputSource>
54 =item package B<Pod::Paragraph>
60 =item package B<Pod::InteriorSequence>
65 =item package B<Pod::ParseTree>
69 a B<Pod
[all...]
H A DParseUtils.pm2 # Pod/ParseUtils.pm -- helpers for POD parsing and conversion
10 package Pod::ParseUtils;
18 Pod::ParseUtils - helpers for POD parsing and conversion
22 use Pod::ParseUtils;
24 my $list = new Pod::List;
25 my $link = Pod::Hyperlink->new('Pod::Parser');
29 B<Pod::ParseUtils> contains a few object-oriented helper packages for
35 # Pod::List
40 package Pod
[all...]
H A DFind.pm2 # Pod/Find.pm -- finds files containing POD documentation
8 # This file is part of "PodParser". Pod::Find is free software;
13 package Pod::Find;
24 Pod::Find - find POD documents in directory trees
28 use Pod::Find qw(pod_find simplify_name);
36 $location = pod_where( { -inc => 1 }, "Pod::Find" );
40 B<Pod::Find> provides a set of functions to locate POD files. Note that
44 use Pod::Find qw(pod_find);
515 L<Pod::Parser>, L<Pod
[all...]
H A DSelect.pm2 # Pod/Select.pm -- function to select portions of POD docs
10 package Pod::Select;
20 Pod::Select, podselect() - extract selected sections of POD from input
24 use Pod::Select;
43 use Pod::Select;
46 $parser = new Pod::Select();
65 perl5.005, Pod::Parser, Exporter, Carp
75 B<Pod::Select> module which is a subclass of B<Pod::Parser>.
76 B<Pod
[all...]
H A DChecker.pm2 # Pod/Checker.pm -- check pod documents for syntax errors
10 package Pod::Checker;
16 use Pod::ParseUtils; ## for hyperlinks and lists
20 Pod::Checker, podchecker() - check pod documents for syntax errors
24 use Pod::Checker;
28 my $checker = new Pod::Checker %options;
57 to see in B<Pod::Checker> and B<podchecker> and verify that the checks are
330 Since PodParser-1.24 the B<Pod::Checker> module uses only the B<poderror>
332 "Pod syntax OK") has been dropped from the module and has been included in
333 B<podchecker> (the script). This allows users of B<Pod
[all...]
H A DPlainText.pm0 # Pod::PlainText -- Convert POD data to formatted ASCII text.
9 # This module is intended to be a replacement for Pod::Text, and attempts to
11 # decisions seemed to produce better output. It uses Pod::Parser and is
18 package Pod::PlainText;
23 use Pod::Select ();
28 # We inherit from Pod::Select instead of Pod::Parser so that we can be used
29 # by Pod::Usage.
30 @ISA = qw(Pod::Select);
39 # This table is taken near verbatim from Pod
[all...]
H A DLaTeX.pm1 package Pod::LaTeX;
5 Pod::LaTeX - Convert Pod data to formatted Latex
9 use Pod::LaTeX;
10 my $parser = Pod::LaTeX->new ( );
18 C<Pod::LaTeX> is a module to convert documentation in the Pod format
22 C<Pod::LaTeX> is a derived class from L<Pod::Select|Pod
[all...]
H A DMan.pm0 # Pod::Man -- Convert POD data to formatted *roff input.
24 package Pod::Man;
29 use Pod::ParseLink qw(parselink);
30 use Pod::Parser ();
36 @ISA = qw(Pod::Parser);
289 # to the architecture of Pod::Parser, so that *has* to either be passed to the
290 # constructor or set separately with Pod::Man::name().
455 my $pversion = $Pod::Parser::VERSION;
457 .\\" Automatically generated by Pod::Man v$VERSION, Pod
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/Perldoc/
H A DGetOptsOO.pm3 package Pod::Perldoc::GetOptsOO;
7 # Call Pod::Perldoc::GetOptsOO::getopts($object, \@ARGV, $truth)
17 # The return value of Pod::Perldoc::GetOptsOO::getopts is true if no errors,
23 *DEBUG = defined( &Pod::Perldoc::DEBUG )
24 ? \&Pod::Perldoc::DEBUG
H A DBaseTo.pm3 package Pod::Perldoc::BaseTo;
H A DToChecker.pm3 package Pod::Perldoc::ToChecker;
10 eval 'require Pod::Simple::Checker';
12 require Pod::Checker;
13 @ISA = ('Pod::Checker');
15 @ISA = ('Pod::Simple::Checker');
24 print "No Pod errors in $file\n";
34 Pod::Perldoc::ToChecker - let Perldoc check Pod for errors
39 No Pod errors in SomeFile.pod
45 Pod
[all...]
H A DToRtf.pm3 package Pod::Perldoc::ToRtf;
8 use base qw( Pod::Simple::RTF );
13 $Pod::Simple::RTF::VERSION;
37 Pod::Perldoc::ToRtf - let Perldoc render Pod as RTF
46 Pod::Simple::RTF as a formatter class.
48 This is actually a Pod::Simple::RTF subclass, and inherits
51 You have to have Pod::Simple::RTF installed (from the Pod::Simple dist),
67 L<Pod
[all...]
H A DToXml.pm3 package Pod::Perldoc::ToXml;
8 use base qw( Pod::Simple::XMLOutStream );
13 $Pod::Simple::XMLOutStream::VERSION;
25 Pod::Perldoc::ToXml - let Perldoc render Pod as XML
34 Pod::Simple::XMLOutStream as a formatter class.
36 This is actually a Pod::Simple::XMLOutStream subclass, and inherits
39 You have to have installed Pod::Simple::XMLOutStream (from the Pod::Simple
45 L<Pod
[all...]
H A DToPod.pm3 # actually unformatted Pod.
11 package Pod::Perldoc::ToPod;
15 use base qw(Pod::Perldoc::BaseTo);
52 Pod::Perldoc::ToPod - let Perldoc render Pod as ... Pod!
64 This is a "plug-in" class that allows Perldoc to display Pod source as
67 Currently this class works by just filtering out the non-Pod stuff from
72 L<Pod::Perldoc>
H A DToText.pm3 package Pod::Perldoc::ToText;
7 use base qw(Pod::Perldoc::BaseTo);
13 use Pod::Text ();
33 defined(&Pod::Perldoc::DEBUG)
34 and Pod::Perldoc::DEBUG()
35 and print "About to call new Pod::Text ",
36 $Pod::Text::VERSION ? "(v$Pod::Text::VERSION) " : '',
41 Pod::Text->new(@options)->parse_from_file(@_);
48 Pod
[all...]
H A DToTk.pm3 package Pod::Perldoc::ToTk;
7 use base qw(Pod::Perldoc::BaseTo);
20 use Pod::Perldoc ();
28 use Tk::Pod;
30 # The following was adapted from "tkpod" in the Tk-Pod dist.
40 if Pod::Perldoc::IS_MSWin32 or Pod::Perldoc::IS_Dos
73 $mw->Pod(
75 (($Tk::Pod::VERSION >= 4) ? ('-tree' => $tree) : ())
86 return if "$_" =~ /^Tk::Pod/ #
[all...]
H A DToNroff.pm3 package Pod::Perldoc::ToNroff;
9 use base qw(Pod::Perldoc::BaseTo);
15 use Pod::Man ();
39 defined(&Pod::Perldoc::DEBUG)
40 and Pod::Perldoc::DEBUG()
41 and print "About to call new Pod::Man ",
42 $Pod::Man::VERSION ? "(v$Pod::Man::VERSION) " : '',
47 Pod::Man->new(@options)->parse_from_file(@_);
55 Pod
[all...]
H A DToMan.pm3 package Pod::Perldoc::ToMan;
12 use base qw(Pod::Perldoc::BaseTo);
59 if(Pod::Perldoc::IS_Linux and -t STDOUT
72 $command .= " | col -x" if Pod::Perldoc::IS_HPUX;
74 defined(&Pod::Perldoc::DEBUG)
75 and Pod::Perldoc::DEBUG()
84 defined(&Pod::Perldoc::DEBUG)
85 and &Pod::Perldoc::DEBUG()
89 defined(&Pod::Perldoc::DEBUG)
90 and Pod
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/Text/
H A DColor.pm0 # Pod::Text::Color -- Convert POD data to formatted color ASCII text
17 package Pod::Text::Color;
21 use Pod::Text ();
27 @ISA = qw(Pod::Text);
97 Pod::Text::Color - Convert POD data to formatted color ASCII text
101 use Pod::Text::Color;
102 my $parser = Pod::Text::Color->new (sentence => 0, width => 78);
112 Pod::Text::Color is a simple subclass of Pod::Text that highlights output
114 ways functions like Pod
[all...]
H A DTermcap.pm0 # Pod::Text::Termcap -- Convert POD data to ASCII text with format escapes.
9 # This is a simple subclass of Pod::Text that overrides a few key methods to
17 package Pod::Text::Termcap;
21 use Pod::Text ();
28 @ISA = qw(Pod::Text);
133 Pod::Text::Termcap - Convert POD data to ASCII text with format escapes
137 use Pod::Text::Termcap;
138 my $parser = Pod::Text::Termcap->new (sentence => 0, width => 78);
148 Pod::Text::Termcap is a simple subclass of Pod
[all...]
H A DOverstrike.pm0 # Pod::Text::Overstrike -- Convert POD data to formatted overstrike text
5 # (based on Pod::Text::Color by Russ Allbery <rra@stanford.edu>)
18 # and because both Pod::Text::Color and Pod::Text::Termcap are not device
25 package Pod::Text::Overstrike;
29 use Pod::Text ();
34 @ISA = qw(Pod::Text);
151 Pod::Text::Overstrike - Convert POD data to formatted overstrike text
155 use Pod::Text::Overstrike;
156 my $parser = Pod
[all...]

Completed in 28 milliseconds

12