Integrate perlio:
[p5sagit/p5-mst-13.2.git] / lib / Pod / Text / Termcap.pm
CommitLineData
6055f9d4 1# Pod::Text::Termcap -- Convert POD data to ASCII text with format escapes.
3c014959 2# $Id: Termcap.pm,v 1.1 2001/07/10 11:04:36 eagle Exp $
6055f9d4 3#
4# Copyright 1999 by Russ Allbery <rra@stanford.edu>
5#
3c014959 6# This program is free software; you may redistribute it and/or modify it
6055f9d4 7# under the same terms as Perl itself.
8#
9741dab0 9# This is a simple subclass of Pod::Text that overrides a few key methods to
3c014959 10# output the right termcap escape sequences for formatted text on the current
11# terminal type.
6055f9d4 12
3c014959 13##############################################################################
6055f9d4 14# Modules and declarations
3c014959 15##############################################################################
6055f9d4 16
17package Pod::Text::Termcap;
18
19require 5.004;
20
21use Pod::Text ();
22use POSIX ();
23use Term::Cap;
9741dab0 24
6055f9d4 25use strict;
26use vars qw(@ISA $VERSION);
27
28@ISA = qw(Pod::Text);
29
3c014959 30# Don't use the CVS revision as the version, since this module is also in Perl
31# core and too many things could munge CVS magic revision strings. This
32# number should ideally be the same as the CVS revision in podlators, however.
33$VERSION = 1.01;
6055f9d4 34
35
3c014959 36##############################################################################
6055f9d4 37# Overrides
3c014959 38##############################################################################
6055f9d4 39
40# In the initialization method, grab our terminal characteristics as well as
41# do all the stuff we normally do.
42sub initialize {
43 my $self = shift;
44
45 # The default Term::Cap path won't work on Solaris.
46 $ENV{TERMPATH} = "$ENV{HOME}/.termcap:/etc/termcap"
47 . ":/usr/share/misc/termcap:/usr/share/lib/termcap";
48
49 my $termios = POSIX::Termios->new;
50 $termios->getattr;
51 my $ospeed = $termios->getospeed;
52 my $term = Tgetent Term::Cap { TERM => undef, OSPEED => $ospeed };
53 $$self{BOLD} = $$term{_md} or die 'BOLD';
54 $$self{UNDL} = $$term{_us} or die 'UNDL';
55 $$self{NORM} = $$term{_me} or die 'NORM';
56
57 unless (defined $$self{width}) {
58 $$self{width} = $ENV{COLUMNS} || $$term{_co} || 78;
59 $$self{width} -= 2;
60 }
61
62 $self->SUPER::initialize;
63}
64
65# Make level one headings bold.
66sub cmd_head1 {
67 my $self = shift;
68 local $_ = shift;
69 s/\s+$//;
70 $self->SUPER::cmd_head1 ("$$self{BOLD}$_$$self{NORM}");
71}
72
73# Make level two headings bold.
74sub cmd_head2 {
75 my $self = shift;
76 local $_ = shift;
77 s/\s+$//;
78 $self->SUPER::cmd_head2 ("$$self{BOLD}$_$$self{NORM}");
79}
80
81# Fix up B<> and I<>. Note that we intentionally don't do F<>.
82sub seq_b { my $self = shift; return "$$self{BOLD}$_[0]$$self{NORM}" }
83sub seq_i { my $self = shift; return "$$self{UNDL}$_[0]$$self{NORM}" }
84
85# Override the wrapping code to igore the special sequences.
86sub wrap {
87 my $self = shift;
88 local $_ = shift;
89 my $output = '';
90 my $spaces = ' ' x $$self{MARGIN};
91 my $width = $$self{width} - $$self{MARGIN};
92 my $code = "(?:\Q$$self{BOLD}\E|\Q$$self{UNDL}\E|\Q$$self{NORM}\E)";
93 while (length > $width) {
94 if (s/^((?:$code?[^\n]){0,$width})\s+//
95 || s/^((?:$code?[^\n]){$width})//) {
96 $output .= $spaces . $1 . "\n";
97 } else {
98 last;
99 }
100 }
101 $output .= $spaces . $_;
102 $output =~ s/\s+$/\n\n/;
103 $output;
104}
105
106
3c014959 107##############################################################################
6055f9d4 108# Module return value and documentation
3c014959 109##############################################################################
6055f9d4 110
1111;
112__END__
113
114=head1 NAME
115
116Pod::Text::Color - Convert POD data to ASCII text with format escapes
117
118=head1 SYNOPSIS
119
120 use Pod::Text::Termcap;
121 my $parser = Pod::Text::Termcap->new (sentence => 0, width => 78);
122
123 # Read POD from STDIN and write to STDOUT.
124 $parser->parse_from_filehandle;
125
126 # Read POD from file.pod and write to file.txt.
127 $parser->parse_from_file ('file.pod', 'file.txt');
128
129=head1 DESCRIPTION
130
9741dab0 131Pod::Text::Termcap is a simple subclass of Pod::Text that highlights output
132text using the correct termcap escape sequences for the current terminal.
133Apart from the format codes, it in all ways functions like Pod::Text. See
134L<Pod::Text> for details and available options.
6055f9d4 135
136=head1 SEE ALSO
137
138L<Pod::Text|Pod::Text>, L<Pod::Parser|Pod::Parser>
139
140=head1 AUTHOR
141
3c014959 142Russ Allbery <rra@stanford.edu>.
143
144=head1 COPYRIGHT AND LICENSE
145
146Copyright 1999 by Russ Allbery <rra@stanford.edu>.
147
148This program is free software; you may redistribute it and/or modify it
149under the same terms as Perl itself.
6055f9d4 150
151=cut