=head1 NAME OODoc::Manual - one manual about a package =head1 INHERITANCE OODoc::Manual is a OODoc::Object =head1 SYNOPSIS my $doc = OODoc->new(...); my $manual = OODoc::Manual->new(name => ..., source => ...); $doc->manual($manual); my @manual = $doc->manualsForPackage('Mail::Box'); print $manual->name; print $manual->package; =head1 DESCRIPTION The C object contains information of a singel manual page. More than one manual can be related to a single package. =head1 OVERLOADED =over 4 =item overload: B String comparison takes place between a manual name and another manual name which may be a manual object or any other string or stringifyable object. example: if($manual eq 'OODoc') ... if($man1 eq $man2) ... my @sorted = sort @manuals; # implicit calls to cmp =item overload: B Used in string context, a manual produces its name. =back =head1 METHODS =head2 Constructors =over 4 =item OODoc::Manual-EB(OPTIONS) -Option --Default distribution package parser pure_pod source stripped undef version =over 2 =item distribution => STRING =item package => STRING The name of the package which is described by this manual. =item parser => OBJECT The parser which produces this manual page. This parameter is needed to be able to low-level format the text blocks. =item pure_pod => BOOLEAN Some documentation is stored in files which look like a module, but do not contain any code. Their filenames usually end with C<.pod>. =item source => STRING The file where the manual was found in, or in some cases some other string which explains where the data came from. =item stripped => STRING The file where the stripped code is written to. =item version => STRING =back =back =head2 Attributes =over 4 =item $obj-EB Returns the distribution which includes this manual. =item $obj-EB Returns whether this package has real code related to it. =item $obj-EB Returns the package of the manual. =item $obj-EB Returns the parser which has produced this manual object. =item $obj-EB Returns the source of this manual information. =item $obj-EB The name of the produced stripped package file. =item $obj-EB Returns the version of this manual information. =back =head2 Collected =over 4 =item $obj-EB(NAME|OBJECT) When a NAME (a string) given, the chapter with that name is returned, or C when it is not known. With an OBJECT, that object is added to the list of chapters. =item $obj-EB([CHAPTERS]) Returns the ordered list of chapter object for this manual. =item $obj-EB(OPTIONS) All diagnostic messages of all chapters for this manual together. -Option--Default select [] =over 2 =item select => ARRAY Select only the diagnostic message of the specified types (case insensitive). Without any type, all are selected. =back =item $obj-EB All examples of all chapters within this manual together, especially useful for counting. example: print scalar $manual->examples; =item $obj-EB Returns the name of the manual, which is found in the NAME chapter. =item $obj-EB(NAME) Returns the subroutine with the specified NAME as object reference. When the manual is part of a package description which is spread over multiple manuals, then these other manuals will be searched as well. =item $obj-EB All subroutines of all chapters within this manual together, especially useful for counting. example: print scalar $manual->subroutines; =back =head2 Inheritance knowledge =over 4 =item $obj-EB(METHOD, PARAMETERS) Call L on all chapters, passing the METHOD and PARAMETERS. In practice, this means that you can simply collect kinds of information from various parts within the manual page. example: my @diags = $manual->all('diagnostics'); =item $obj-EB([OBJECT]) See L =item $obj-EB Returns a list of manuals which contain extra code for this package. =item $obj-EB(SUBROUTINE|OPTION) Returns whether the SUBROUTINE or OPTION was defined by this manual page, or inherited from it. =item $obj-EB Returns only the subroutines which are described in this manual page itself. L returns them all. =item $obj-EB([PACKAGES]) Returns a list of packages which can realize into this object using Object::Realize::Later magic. When PACKAGES (names or objects) are specified, they are added first. =item $obj-EB([PACKAGE]) Returns the class into which this class can be realized. This is a trick of the Object::Realize::Later module. The PACKAGE (name or object) will be set first, if specified. =item $obj-EB([PACKAGES]) Returns the names of all sub-classes (extensions) of this package. When PACKAGES (names or objects) are specified, they are first added to the list. =item $obj-EB([PACKAGES]) Returns the super classes for this package. PACKAGES (names or objects) will be added to the list of superclasses first. =back =head2 Processing =over 4 =item $obj-EB =item $obj-EB Create the text which represents the inheritance relationships of a certain package. More than one MANUAL can be defined for one package, and will each produce the same text. The returned string still has to be cleaned-up before inclusion. =item $obj-EB Add the information of lower level manuals into this one. =item $obj-EB(OPTIONS) Merge two lists of structured text objects: "this" list and "super" list. The "this" objects are defined on this level of inheritance, where the "super" objects are from an inheritence level higher (super class). The combined list is returned, where the inherited objects are preferably included before the new ones. Merging is a complicated task, because the order of both lists should be kept as well as possible. -Option --Default container equal sub {"$_[0]" eq "$_[1]"} merge sub {$_[0]} super [] this [] =over 2 =item container => OBJECT The object which administers this level of documentation nesting, which may be a manual, chapter, and such. =item equal => CODE Define how can be determined that two objects are the same. By default, the stringification of both objects are compared. =item merge => CODE What to call if both lists contain the same object. These two objects will be passed as argument to the code reference. By default, the second gets ignored. =item super => ARRAY =item this => ARRAY =back =item $obj-EB(OBJECT) The OBJECT (a text element) is located in some subsection, section or chapter. But the OBJECT may also be an extension to a piece of documentation which is described in a super class with a location in more detail. The most detailed location for the description is returned. =back =head2 Tracing =over 4 =item $obj-EB Returns a string which can be used as index of headings used in this manual page. example: print $manual->index; =item $obj-EB Returns a string which displays some stats about the manual. =back =head2 Commonly used functions =over 4 =item $obj-EB(FILENAME) OODoc::Manual-EB(FILENAME) See L =item $obj-EB(DIRECTORY) OODoc::Manual-EB(DIRECTORY) See L =back =head2 Manual Repository =over 4 =item $obj-EB(MANUAL) See L =item $obj-EB(NAME) See L =item $obj-EB(NAME) See L =item $obj-EB See L =item $obj-EB(NAME) See L =item $obj-EB See L =back =head1 DIAGNOSTICS =over 4 =item Error: No chapter NAME in scope of package $pkg in file $source Each documentation part requires a chapter "NAME" which starts with the manual name followed by a dash. Apparently, this was not found in the indicated file. This chapter description must be anywhere after the package statement leading the name-space. =item Error: The NAME chapter does not have the right format in $source The NAME chapter is used to figure-out what name the manual page must have. The standard format contains only one line, containing the manual's name, one dash ('-'), and then a brief explanation. For instance: =chapter NAME OODoc::Manual - one manual about a package =item Error: manual definition requires manual object A call to L expects a new manual object (a L), however an incompatible thing was passed. Usually, intended was a call to L or L. =item Error: no distribution is specified for manual $name =item Error: no source filename is specified for manual $name You have to specify where you found the information for the manual. This does not need to be the name of an existing file, but usually it will be. =item Error: no version is specified for manual $name =item Warning: order conflict "$take" before "$insert" in $file line $number The order of the objects in a sub-class shall be the same as that of the super class, otherwise the result of merging of the information received from both classes is undertermined. =item Error: package name is not specified You try to instantiate a manual, but have not specified the name of the package which is described in this manual, which is required. =item Warning: subroutine $name location conflict: $here and $there Finding the optimal location to list a subroutine description is a harsh job: information from various manual pages is being used. It is not a problem to list the documentation of a certain method M in module A in chapter "METHODS", section "General", subsection "X" (which is abbreviated in the report as METHODS/General/X), and the same method M in module A::B, which extends A, in chapter "METHODS" without providing details about the section and subsection. The in most detail descripted location is used everywhere. This warning means that the location of the method in this manual page is not related to that of the same method in an other page. For instance, in the first page it is listed in chapter "METHODS", and in the second in chapter "FUNCTIONS". =item Error: two chapters named $name in $filename line $ln1 and $ln2 The indicated file contains two chapters with the same name, which is not permitted. Join the contents of both parts. =back =head1 SEE ALSO This module is part of OODoc distribution version 1.06, built on January 26, 2011. Website: F =head1 LICENSE 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 F