source: for-distributions/trunk/bin/windows/perl/lib/Pod/Perldoc/ToXml.pm@ 14489

Last change on this file since 14489 was 14489, checked in by oranfry, 17 years ago

upgrading to perl 5.8

File size: 1.3 KB
Line 
1
2require 5;
3package Pod::Perldoc::ToXml;
4use strict;
5use warnings;
6use vars qw($VERSION);
7
8use base qw( Pod::Simple::XMLOutStream );
9
10$VERSION # so that ->VERSION is happy
11# stop CPAN from seeing this
12 =
13$Pod::Simple::XMLOutStream::VERSION;
14
15
16sub is_pageable { 0 }
17sub write_with_binmode { 0 }
18sub output_extension { 'xml' }
19
201;
21__END__
22
23=head1 NAME
24
25Pod::Perldoc::ToXml - let Perldoc render Pod as XML
26
27=head1 SYNOPSIS
28
29 perldoc -o xml -d out.xml Some::Modulename
30
31=head1 DESCRIPTION
32
33This is a "plug-in" class that allows Perldoc to use
34Pod::Simple::XMLOutStream as a formatter class.
35
36This is actually a Pod::Simple::XMLOutStream subclass, and inherits
37all its options.
38
39You have to have installed Pod::Simple::XMLOutStream (from the Pod::Simple
40dist), or this class won't work.
41
42
43=head1 SEE ALSO
44
45L<Pod::Simple::XMLOutStream>, L<Pod::Simple>, L<Pod::Perldoc>
46
47=head1 COPYRIGHT AND DISCLAIMERS
48
49Copyright (c) 2002 Sean M. Burke. All rights reserved.
50
51This library is free software; you can redistribute it and/or modify it
52under the same terms as Perl itself.
53
54This program is distributed in the hope that it will be useful, but
55without any warranty; without even the implied warranty of
56merchantability or fitness for a particular purpose.
57
58=head1 AUTHOR
59
60Sean M. Burke C<[email protected]>
61
62=cut
63
Note: See TracBrowser for help on using the repository browser.