|
NAMEToader::Directory - This the index file for a Toader directory.VERSIONVersion 0.1.0SYNOPSISFor information on the storage and rendering of entries, please see 'Documentation/Directory.pod'.METHODSnewThis initializes the object.One argument is required and it is a Toader object. my $foo = Toader::Directory->new($toader); if ($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } as_stringThis returns the directory as a string.my $mimeString=$foo->as_string; if($foo->error) warn('Error:'.$foo->error.': '.$foo->errorString); } bodyGetThis gets body.my $body=$foo->bodyGet; if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } bodySetThis sets the body.One argument is required and it is the body. $foo->bodySet($body); if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } dirGetThis gets Toader directory this entry is associated with.This will only error if a permanent error is set. my $dir=$foo->dirGet; if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } dirSetThis sets Toader directory this entry is associated with.One argument is taken and it is the Toader directory to set it to. $foo->dirSet($toaderDirectory); if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } listSubToaderDirsThis lists the sub Toader directories in the current Toader directory, ignoring items starting with a '.'.The returned value is a array containing a list of relative directory names. This method requires dirSet to have been used previously. my @subToaderDirs=$foo->listSubToaderDirs; if($foo->error){ warn('error: '.$foo->error.":".$foo->errorString); } rendererGetThis returns the renderer type.my $renderer=$foo->rendererGet; if($foo->error){ warn('error: '.$foo->error.":".$foo->errorString); } rendererSetThis sets the renderer type.One argument is taken and it is the render type. A value of undef sets it to the default, 'html'. my $renderer=$foo->rendererGet; if($foo->error){ warn('error: '.$foo->error.":".$foo->errorString); } subpartsAddThis adds a new file as a subpart.One argument is required and it is the path to the file. $foo->subpartsAdd( $file ); if ( $foo->error ){ warn('Error:'.$foo->error.': '.$foo->errorString); } subpartsExtractThis extracts the subparts of a entry.One argument is extracted, it is the directory to extract the files to. $foo->subpartsExtract( $dir ); if ( $foo->error ){ warn('Error:'.$foo->error.': '.$foo->errorString); } subpartsGetThis returns the results from the subparts methods from the internal Email::MIME object.my @parts=$foo->subpartsGet; if ( $foo->error ){ warn('Error:'.$foo->error.': '.$foo->errorString); } subpartsListThis returns a list filenames for the subparts.my @files=$foo->subpartsList; if ( $foo->error ){ warn('Error:'.$foo->error.': '.$foo->errorString); } subpartsRemoveThis removes the specified subpart.One argument is required and it is the name of the file to remove. $foo->subpartsRemove( $filename ); if ( $foo->error ){ warn('Error:'.$foo->error.': '.$foo->errorString); } summaryGetThis returns the summary.my $summary=$foo->summaryGet; if($foo->error){ warn('error: '.$foo->error.":".$foo->errorString); } summarySetThis sets the summary.One argument is taken and it is the summary. $foo->summarySet($summary); if($foo->error){ warn('error: '.$foo->error.":".$foo->errorString); } writeThis saves the page file. It requires dirSet to have been called previously.$foo->write; if($foo->error){ warn('error: '.$foo->error.":".$foo->errorString); } REQUIRED RENDERING METHODSfilesDirThis returns the file directory for the object.This is not a full path, but a partial path that should be appended the directory current directory being outputted to. locationIDThis returns the location ID.This one requires the object to be initialized. renderDirThis is the directory that it will be rendered to.The base directory that will be used for rendering. renderUsingThis returns the module to use for rendering.my $module=$foo->renderUsing; toaderRenderableThis method returns true and marks it as being Toader renderable.toDirThis returns the path to the object.This is not a full path, but a partial path that should be appended the directory current directory being outputted to. ERROR CODES1, openIndexFailedUnable to open the index file for the specified directory.2, notAtoaderDirThe specified directory is not a Toader directory.3, noTitleSpecifiedNo title specified.4, noDirSetNo directory has been specified yet.5, noLongerAtoaderDirThe directory is no longer a Toader directory.6, indexOpenForWritingFailedFailed to open the file for writing.7, openDirFailedFailed to open the directory.8, noSummarySpecifiedNo summary specified.9, notAtoaderObjThe specified objected is not a Toader object.10, getVCSerroredToader->getVCS errored.11, VCSusableErroredToader::VCS->usable errored.12, underVCSerroredToader::VCS->underVCS errored.13, VCSaddErroredToader::VCS->add errored.14, noToaderObjNo Toader object specified.AUTHORZane C. Bowers-Hadley, "<vvelox at vvelox.net>"BUGSPlease report any bugs or feature requests to "bug-toader at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Toader>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.SUPPORTYou can find documentation for this module with the perldoc command.perldoc Toader::Directory You can also look for information at:
ACKNOWLEDGEMENTSLICENSE AND COPYRIGHTCopyright 2013 Zane C. Bowers-HadleyThis program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information.
Visit the GSP FreeBSD Man Page Interface. |