Move Pod::Perldoc from lib to ext.
[p5sagit/p5-mst-13.2.git] / ext / Pod-Perldoc / lib / Pod / Perldoc / BaseTo.pm
CommitLineData
1a67fee7 1
2require 5;
3package Pod::Perldoc::BaseTo;
4use strict;
5use warnings;
6
7sub is_pageable { '' }
8sub write_with_binmode { 1 }
9
10sub output_extension { 'txt' } # override in subclass!
11
12# sub new { my $self = shift; ... }
13# sub parse_from_file( my($class, $in, $out) = ...; ... }
14
15#sub new { return bless {}, ref($_[0]) || $_[0] }
16
17sub _perldoc_elem {
18 my($self, $name) = splice @_,0,2;
19 if(@_) {
20 $self->{$name} = $_[0];
21 } else {
22 $self->{$name};
23 }
24}
25
26
271;
28
91a46224 29__END__
30
31=head1 NAME
32
33Pod::Perldoc::BaseTo - Base for Pod::Perldoc formatters
34
35=head1 SYNOPSIS
36
37 package Pod::Perldoc::ToMyFormat;
38
39 use base qw( Pod::Perldoc::BaseTo );
40 ...
41
42=head1 DESCRIPTION
43
44This package is meant as a base of Pod::Perldoc formatters,
45like L<Pod::Perldoc::ToText>, L<Pod::Perldoc::ToMan>, etc.
46
47It provides default implementations for the methods
48
49 is_pageable
50 write_with_binmode
51 output_extension
52 _perldoc_elem
53
54The concrete formatter must implement
55
56 new
57 parse_from_file
58
59=head1 SEE ALSO
60
61L<perldoc>
62
63=head1 COPYRIGHT AND DISCLAIMERS
64
65Copyright (c) 2002-2007 Sean M. Burke.
66
67This library is free software; you can redistribute it and/or modify it
68under the same terms as Perl itself.
69
70This program is distributed in the hope that it will be useful, but
71without any warranty; without even the implied warranty of
72merchantability or fitness for a particular purpose.
73
74=head1 AUTHOR
75
76Current maintainer: Adriano R. Ferreira <ferreira@cpan.org>
77
78Past contributions from:
79Sean M. Burke <sburke@cpan.org>
80
81=cut