Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bundle::object::insideout(3pm) [debian man page]

Bundle::Object::InsideOut(3pm)				User Contributed Perl Documentation			    Bundle::Object::InsideOut(3pm)

NAME
Bundle::Object::InsideOut - A bundle of modules for full Object::InsideOut support SYNOPSIS
perl -MCPAN -e "install Bundle::Object::InsideOut" CONTENTS
Test::Harness 3.23 - Used for module testing Test::Simple 0.98 - Used for module testing Scalar::Util 1.23 - Used by Object::InsideOut Pod::Escapes 1.04 - Used by Pod::Simple Pod::Simple 3.19 - Used by Test::Pod Test::Pod 1.45 - Checks POD syntax Devel::Symdump 2.08 - Used by Pod::Coverage File::Spec 3.33 - Used by Pod::Parser Pod::Parser 1.37 - Used by Pod::Coverage Pod::Coverage 0.21 - Used by Test::Pod::Coverage Test::Pod::Coverage 1.08 - Tests POD coverage threads 1.86 - Support for threads threads::shared 1.40 - Support for sharing objects between threads Want 0.18 - :lvalue accessor support Data::Dumper 2.131 - Object serialization support Storable 2.30 - Object serialization support Devel::StackTrace 1.27 - Used by Exception::Class Class::Data::Inheritable 0.08 - Used by Exception::Class Exception::Class 1.32 - Error handling Object::InsideOut 3.87 - Inside-out object support URI 1.59 - Used by LWP::UserAgent HTML::Tagset 3.20 - Used by LWP::UserAgent HTML::Parser 3.69 - Used by LWP::UserAgent LWP::UserAgent 6.03 - Used by Math::Random::MT::Auto Win32::API 0.64 - Used by Math::Random::MT::Auto (Win XP only) Math::Random::MT::Auto 6.17 - Support for :SECURE mode DESCRIPTION
This bundle includes all the modules used to test and support Object::InsideOut. CAVEATS
For ActivePerl on Win XP, if Win32::API doesn't install using CPAN, then try installing it using PPM: ppm install Win32-API Obviously, Win32::API will not install on all platforms - just Windows and Cygwin. AUTHOR
Jerry D. Hedden, <jdhedden AT cpan DOT org> COPYRIGHT AND LICENSE
Copyright 2006 - 2012 Jerry D. Hedden. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-19 Bundle::Object::InsideOut(3pm)

Check Out this Related Man Page

Pod::Tree::Pod(3pm)					User Contributed Perl Documentation				       Pod::Tree::Pod(3pm)

NAME
Pod::Tree::Pod - Convert a Pod::Tree back to a POD SYNOPSIS
use Pod::Tree::Pod; $tree = new Pod::Tree; $dest = new IO::File; $dest = "file.pod"; $pod = new Pod::Tree::Pod $tree, $dest; $pod->translate; DESCRIPTION
"Pod::Tree::Pod" converts a Pod::Tree back to a POD. The destination is fixed when the object is created. The "translate" method does the actual translation. For convenience, Pod::Tree::Pod can write the POD to a variety of destinations. The "new" method resolves the $dest argument. Destination resolution "Pod::Tree::Pod" can write HTML to either of 2 destinations. "new" resolves $dest by checking these things, in order: 1. If $dest is a reference, then it is taken to be an "IO::File" object that is already open on the file where the POD will be written. 2. If $dest is not a reference, then it is taken to be the name of the file where the POD will be written. METHODS
$pod = "new" "Pod::Tree::Pod" $tree, $dest Creates a new "Pod::Tree::Pod" object. $tree is a "Pod::Tree" object that represents a POD. $pod writes the POD to $dest. See "Destination resolution" for details. $pod->"translate" Writes the text of the POD. This method should only be called once. DIAGNOSTICS
"Pod::Tree::Pod::new: not enough arguments" (F) "new" called with fewer than 2 arguments. "Pod::Tree::HTML::new: Can't open $dest: $!" (F) The destination file couldn't be opened. NOTES
o The destination doesn't actually have to be an "IO::File" object. It may be any object that has a "print" method. SEE ALSO
perl(1), "Pod::Tree", "Pod::Tree::Node" AUTHOR
Steven McDougall, swmcd@world.std.com COPYRIGHT
Copyright (c) 2000-2003 by Steven McDougall. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2004-10-11 Pod::Tree::Pod(3pm)
Man Page