| OODoc documentation | view source | Contained in the OODoc distribution. |
OODoc::Parser - base class for all OODoc parsers.
OODoc::Parser is a OODoc::Object OODoc::Parser is extended by OODoc::Parser::Markov
# Never instantiated directly.
A parser is used to process files which contain POD or contain code:
their filename extension is pod, pm, or pl (actually, this
can be configured).
Currently distributed parsers:
The Markov parser understands standard POD, but adds logical markup tags
and the M<> links.
-Option --Default skip_links undef
The parser should not attempt to load modules which match the REGEXP or are equal or sub-namespace of STRING. More than one of these can be passed in an ARRAY.
Parse the specified input file into a code file and an object tree which describes the pod. Returned is a list of package objects which contain the docs found in this file.
-Option--Default input <required> output <black hole>
The name of the input file.
Where to write the produced code to. If no filename is specified, the platform dependend black hole is used (/dev/null on UNIX).
After the manuals have been parsed into objects, the information can be formatted in various ways, for instance into POD and HTML. However, the parsing is not yet complete: the structure has been decomposed with parse(), but the text blocks not yet. This is because the transformations which are needed are context dependent. For each text section cleanup() is called for the final touch.
Returns true is the PACKAGE name matches one of the links to be skipped, set by new(skip_links).
OODoc::Parser->filenameToPackage(FILENAME)
OODoc::Parser->mkdirhier(DIRECTORY)
Text blocks have to get the finishing touch in the final formatting phase. The parser has to fix the text block segments to create a formatter dependent output. Only a few formatters are predefined.
A call to addManual() expects a new manual object (a OODoc::Manual), however an incompatible thing was passed. Usually, intended was a call to manualsForPackage() or mainManual().
This module is part of OODoc distribution version 1.06, built on January 26, 2011. Website: http://perl.overmeer.net/oodoc/
Copyrights 2003-2011 by Mark Overmeer. For other contributors see ChangeLog.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html
| OODoc documentation | view source | Contained in the OODoc distribution. |