parrotcode: Documentation item | |
Contents | Perl Modules |
Parrot::Docs::Item - Documentation item
use Parrot::Docs::Item;
A documentation item is one or more related paths with some optional descriptive text.
Directory paths will be expanded to all the file paths within the directory and any subdirectories recursively (see the files()
method in Parrot::IO::Directory
).
If an item has more than one file associated with it, and has no text, then an attempt will be made to extract short descriptions from each file to place under the file path in the index HTML.
new_item($text, @paths)
Parrot::Docs::Section
subclass's new()
method.new($text, @contents)
$text
should be an empty string.@contents
will be interpreted as being relative to the $target
argument in write_html()
. There should be at least one path otherwise an exception is raised.set_parent($parent)
parent()
html_navigation($path)
write_html($source, $target, $silent)
$source
is the directory in which the section's contents will be looked for.$target
is directory into which the section's output will be written.$silent
is true then progress is not reported.$target
and an HTML link is created to it.is_docs_link()
then an HTML link is created to the file itself.contents_relative_to_source($source)
file_paths_relative_to_source($source, $path)
$path
is an immediate subdirectory of $source
, then this method returns all the file paths within the directory and any subdirectories recursively, relative to $source
.$path
is a file in $source
then $path
is returned.$path
cannot be found then a warning is printed.
|