Updating ExtUtils-ParseXS to 2.20
[p5sagit/p5-mst-13.2.git] / lib / Term / ANSIColor.pm
CommitLineData
e3e5e1ea 1# Term::ANSIColor -- Color screen output using ANSI escape sequences.
e3e5e1ea 2#
c23d8173 3# Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2005, 2006, 2008, 2009
4# Russ Allbery <rra@stanford.edu> and Zenin
5# PUSH/POP support submitted 2007 by openmethods.com voice solutions
e3e5e1ea 6#
110e9fb0 7# This program is free software; you may redistribute it and/or modify it
e3e5e1ea 8# under the same terms as Perl itself.
f63addff 9#
10# Ah, September, when the sysadmins turn colors and fall off the trees....
11# -- Dave Van Domelen
e3e5e1ea 12
135dda52 13##############################################################################
e3e5e1ea 14# Modules and declarations
135dda52 15##############################################################################
e3e5e1ea 16
17package Term::ANSIColor;
18require 5.001;
19
c23d8173 20$VERSION = '2.00';
21
e3e5e1ea 22use strict;
c23d8173 23use vars qw($AUTOLOAD $AUTOLOCAL $AUTORESET @COLORLIST @COLORSTACK $EACHLINE
24 @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $VERSION %ATTRIBUTES
25 %ATTRIBUTES_R);
e3e5e1ea 26
27use Exporter ();
c23d8173 28BEGIN {
29 @COLORLIST = qw(CLEAR RESET BOLD DARK UNDERLINE UNDERSCORE BLINK REVERSE
30 CONCEALED BLACK RED GREEN YELLOW BLUE MAGENTA CYAN WHITE
31 ON_BLACK ON_RED ON_GREEN ON_YELLOW ON_BLUE ON_MAGENTA
32 ON_CYAN ON_WHITE);
33 @ISA = qw(Exporter);
34 @EXPORT = qw(color colored);
35 @EXPORT_OK = qw(uncolor);
36 %EXPORT_TAGS = (constants => \@COLORLIST,
37 pushpop => [ @COLORLIST,
38 qw(PUSHCOLOR POPCOLOR LOCALCOLOR) ]);
39 Exporter::export_ok_tags ('pushpop');
40}
e3e5e1ea 41
135dda52 42##############################################################################
e3e5e1ea 43# Internal data structures
135dda52 44##############################################################################
e3e5e1ea 45
c23d8173 46%ATTRIBUTES = ('clear' => 0,
e3e5e1ea 47 'reset' => 0,
48 'bold' => 1,
f63addff 49 'dark' => 2,
c23d8173 50 'faint' => 2,
e3e5e1ea 51 'underline' => 4,
52 'underscore' => 4,
53 'blink' => 5,
54 'reverse' => 7,
55 'concealed' => 8,
56
110e9fb0 57 'black' => 30, 'on_black' => 40,
58 'red' => 31, 'on_red' => 41,
59 'green' => 32, 'on_green' => 42,
60 'yellow' => 33, 'on_yellow' => 43,
61 'blue' => 34, 'on_blue' => 44,
62 'magenta' => 35, 'on_magenta' => 45,
63 'cyan' => 36, 'on_cyan' => 46,
e3e5e1ea 64 'white' => 37, 'on_white' => 47);
65
110e9fb0 66# Reverse lookup. Alphabetically first name for a sequence is preferred.
c23d8173 67for (reverse sort keys %ATTRIBUTES) {
68 $ATTRIBUTES_R{$ATTRIBUTES{$_}} = $_;
110e9fb0 69}
70
135dda52 71##############################################################################
e3e5e1ea 72# Implementation (constant form)
135dda52 73##############################################################################
e3e5e1ea 74
135dda52 75# Time to have fun! We now want to define the constant subs, which are named
76# the same as the attributes above but in all caps. Each constant sub needs
77# to act differently depending on whether $AUTORESET is set. Without
e3e5e1ea 78# autoreset:
79#
135dda52 80# BLUE "text\n" ==> "\e[34mtext\n"
e3e5e1ea 81#
82# If $AUTORESET is set, we should instead get:
83#
135dda52 84# BLUE "text\n" ==> "\e[34mtext\n\e[0m"
e3e5e1ea 85#
86# The sub also needs to handle the case where it has no arguments correctly.
135dda52 87# Maintaining all of this as separate subs would be a major nightmare, as well
c23d8173 88# as duplicate the %ATTRIBUTES hash, so instead we define an AUTOLOAD sub to
135dda52 89# define the constant subs on demand. To do that, we check the name of the
90# called sub against the list of attributes, and if it's an all-caps version
91# of one of them, we define the sub on the fly and then run it.
110e9fb0 92#
c23d8173 93# If the environment variable ANSI_COLORS_DISABLED is set, just return the
94# arguments without adding any escape sequences. This is to make it easier to
95# write scripts that also work on systems without any ANSI support, like
96# Windows consoles.
e3e5e1ea 97sub AUTOLOAD {
c23d8173 98 if (defined $ENV{ANSI_COLORS_DISABLED}) {
99 return join ('', @_);
100 }
e3e5e1ea 101 my $sub;
102 ($sub = $AUTOLOAD) =~ s/^.*:://;
c23d8173 103 my $attr = $ATTRIBUTES{lc $sub};
e3e5e1ea 104 if ($sub =~ /^[A-Z_]+$/ && defined $attr) {
c23d8173 105 $attr = "\e[" . $attr . 'm';
e3e5e1ea 106 eval qq {
107 sub $AUTOLOAD {
108 if (\$AUTORESET && \@_) {
c23d8173 109 return '$attr' . join ('', \@_) . "\e[0m";
110 } elsif (\$AUTOLOCAL && \@_) {
111 return PUSHCOLOR ('$attr') . join ('', \@_) . POPCOLOR;
e3e5e1ea 112 } else {
c23d8173 113 return '$attr' . join ('', \@_);
e3e5e1ea 114 }
115 }
116 };
117 goto &$AUTOLOAD;
118 } else {
f63addff 119 require Carp;
120 Carp::croak ("undefined subroutine &$AUTOLOAD called");
e3e5e1ea 121 }
122}
123
c23d8173 124# Append a new color to the top of the color stack and return the top of
125# the stack.
126sub PUSHCOLOR {
127 my ($text) = @_;
128 my ($color) = ($text =~ m/^((?:\e\[[\d;]+m)+)/);
129 if (@COLORSTACK) {
130 $color = $COLORSTACK[-1] . $color;
131 }
132 push (@COLORSTACK, $color);
133 return $text;
134}
135
136# Pop the color stack and return the new top of the stack (or reset, if
137# the stack is empty).
138sub POPCOLOR {
139 pop @COLORSTACK;
140 if (@COLORSTACK) {
141 return $COLORSTACK[-1] . join ('', @_);
142 } else {
143 return RESET (@_);
144 }
145}
146
147# Surround arguments with a push and a pop.
148sub LOCALCOLOR {
149 return PUSHCOLOR (join ('', @_)) . POPCOLOR ();
150}
151
135dda52 152##############################################################################
e3e5e1ea 153# Implementation (attribute string form)
135dda52 154##############################################################################
e3e5e1ea 155
156# Return the escape code for a given set of color attributes.
157sub color {
110e9fb0 158 return '' if defined $ENV{ANSI_COLORS_DISABLED};
e3e5e1ea 159 my @codes = map { split } @_;
160 my $attribute = '';
161 foreach (@codes) {
162 $_ = lc $_;
c23d8173 163 unless (defined $ATTRIBUTES{$_}) {
e3e5e1ea 164 require Carp;
165 Carp::croak ("Invalid attribute name $_");
166 }
c23d8173 167 $attribute .= $ATTRIBUTES{$_} . ';';
e3e5e1ea 168 }
169 chop $attribute;
c23d8173 170 return ($attribute ne '') ? "\e[${attribute}m" : undef;
e3e5e1ea 171}
172
110e9fb0 173# Return a list of named color attributes for a given set of escape codes.
135dda52 174# Escape sequences can be given with or without enclosing "\e[" and "m". The
175# empty escape sequence '' or "\e[m" gives an empty list of attrs.
110e9fb0 176sub uncolor {
177 my (@nums, @result);
178 for (@_) {
179 my $escape = $_;
180 $escape =~ s/^\e\[//;
181 $escape =~ s/m$//;
182 unless ($escape =~ /^((?:\d+;)*\d*)$/) {
183 require Carp;
184 Carp::croak ("Bad escape sequence $_");
185 }
186 push (@nums, split (/;/, $1));
187 }
188 for (@nums) {
189 $_ += 0; # Strip leading zeroes
c23d8173 190 my $name = $ATTRIBUTES_R{$_};
110e9fb0 191 if (!defined $name) {
192 require Carp;
193 Carp::croak ("No name for escape sequence $_" );
194 }
195 push (@result, $name);
196 }
c23d8173 197 return @result;
110e9fb0 198}
199
e3e5e1ea 200# Given a string and a set of attributes, returns the string surrounded by
201# escape codes to set those attributes and then clear them at the end of the
f63addff 202# string. The attributes can be given either as an array ref as the first
135dda52 203# argument or as a list as the second and subsequent arguments. If $EACHLINE
204# is set, insert a reset before each occurrence of the string $EACHLINE and
205# the starting attribute code after the string $EACHLINE, so that no attribute
206# crosses line delimiters (this is often desirable if the output is to be
207# piped to a pager or some other program).
e3e5e1ea 208sub colored {
f63addff 209 my ($string, @codes);
210 if (ref $_[0]) {
211 @codes = @{+shift};
212 $string = join ('', @_);
213 } else {
214 $string = shift;
215 @codes = @_;
216 }
110e9fb0 217 return $string if defined $ENV{ANSI_COLORS_DISABLED};
e3e5e1ea 218 if (defined $EACHLINE) {
f63addff 219 my $attr = color (@codes);
c23d8173 220 return join '',
221 map { ($_ ne $EACHLINE) ? $attr . $_ . "\e[0m" : $_ }
51da1d85 222 grep { length ($_) > 0 }
223 split (/(\Q$EACHLINE\E)/, $string);
e3e5e1ea 224 } else {
c23d8173 225 return color (@codes) . $string . "\e[0m";
e3e5e1ea 226 }
227}
228
135dda52 229##############################################################################
e3e5e1ea 230# Module return value and documentation
135dda52 231##############################################################################
e3e5e1ea 232
233# Ensure we evaluate to true.
2341;
235__END__
236
237=head1 NAME
238
239Term::ANSIColor - Color screen output using ANSI escape sequences
240
c23d8173 241=for stopwords
242cyan colorize namespace runtime TMTOWTDI cmd.exe 4nt.exe command.com NT
243ESC Delvare SSH OpenSSH aixterm ECMA-048 Fraktur overlining Zenin
244reimplemented Allbery PUSHCOLOR POPCOLOR LOCALCOLOR openmethods.com
245
e3e5e1ea 246=head1 SYNOPSIS
247
248 use Term::ANSIColor;
249 print color 'bold blue';
250 print "This text is bold blue.\n";
251 print color 'reset';
252 print "This text is normal.\n";
cd07961b 253 print colored ("Yellow on magenta.", 'yellow on_magenta'), "\n";
e3e5e1ea 254 print "This text is normal.\n";
cd07961b 255 print colored ['yellow on_magenta'], 'Yellow on magenta.';
256 print "\n";
e3e5e1ea 257
110e9fb0 258 use Term::ANSIColor qw(uncolor);
259 print uncolor '01;31', "\n";
260
e3e5e1ea 261 use Term::ANSIColor qw(:constants);
262 print BOLD, BLUE, "This text is in bold blue.\n", RESET;
263
264 use Term::ANSIColor qw(:constants);
c23d8173 265 {
266 local $Term::ANSIColor::AUTORESET = 1;
267 print BOLD BLUE "This text is in bold blue.\n";
268 print "This text is normal.\n";
269 }
270
271 use Term::ANSIColor qw(:pushpop);
272 print PUSHCOLOR RED ON_GREEN "This text is red on green.\n";
273 print PUSHCOLOR BLUE "This text is blue on green.\n";
274 print RESET BLUE "This text is just blue.\n";
275 print POPCOLOR "Back to red on green.\n";
276 print LOCALCOLOR GREEN ON_BLUE "This text is green on blue.\n";
277 print "This text is red on green.\n";
278 {
279 local $Term::ANSIColor::AUTOLOCAL = 1;
280 print ON_BLUE "This text is red on blue.\n";
281 print "This text is red on green.\n";
282 }
283 print POPCOLOR "Back to whatever we started as.\n";
e3e5e1ea 284
285=head1 DESCRIPTION
286
287This module has two interfaces, one through color() and colored() and the
110e9fb0 288other through constants. It also offers the utility function uncolor(),
021bb724 289which has to be explicitly imported to be used (see L</SYNOPSIS>).
bbc7dcd2 290
e3e5e1ea 291color() takes any number of strings as arguments and considers them to be
292space-separated lists of attributes. It then forms and returns the escape
c23d8173 293sequence to set those attributes. It doesn't print it out, just returns
294it, so you'll have to print it yourself if you want to (this is so that
295you can save it as a string, pass it to something else, send it to a file
296handle, or do anything else with it that you might care to).
110e9fb0 297
298uncolor() performs the opposite translation, turning escape sequences
299into a list of strings.
e3e5e1ea 300
c23d8173 301The recognized non-color attributes are clear, reset, bold, dark, faint,
302underline, underscore, blink, reverse, and concealed. Clear and reset
303(reset to default attributes), dark and faint (dim and saturated), and
304underline and underscore are equivalent, so use whichever is the most
305intuitive to you. The recognized foreground color attributes are black,
306red, green, yellow, blue, magenta, cyan, and white. The recognized
307background color attributes are on_black, on_red, on_green, on_yellow,
308on_blue, on_magenta, on_cyan, and on_white. Case is not significant.
e3e5e1ea 309
f63addff 310Note that not all attributes are supported by all terminal types, and some
c23d8173 311terminals may not support any of these sequences. Dark and faint, blink,
312and concealed in particular are frequently not implemented.
f63addff 313
314Attributes, once set, last until they are unset (by sending the attribute
c23d8173 315C<clear> or C<reset>). Be careful to do this, or otherwise your attribute
316will last after your script is done running, and people get very annoyed
317at having their prompt and typing changed to weird colors.
318
319As an aid to help with this, colored() takes a scalar as the first
320argument and any number of attribute strings as the second argument and
321returns the scalar wrapped in escape codes so that the attributes will be
322set as requested before the string and reset to normal after the string.
323Alternately, you can pass a reference to an array as the first argument,
324and then the contents of that array will be taken as attributes and color
325codes and the remainder of the arguments as text to colorize.
f63addff 326
e3e5e1ea 327Normally, colored() just puts attribute codes at the beginning and end of
110e9fb0 328the string, but if you set $Term::ANSIColor::EACHLINE to some string, that
329string will be considered the line delimiter and the attribute will be set
330at the beginning of each line of the passed string and reset at the end of
cd07961b 331each line. This is often desirable if the output contains newlines and
332you're using background colors, since a background color that persists
333across a newline is often interpreted by the terminal as providing the
334default background color for the next line. Programs like pagers can also
335be confused by attributes that span lines. Normally you'll want to set
336$Term::ANSIColor::EACHLINE to C<"\n"> to use this feature.
e3e5e1ea 337
338Alternately, if you import C<:constants>, you can use the constants CLEAR,
c23d8173 339RESET, BOLD, DARK, UNDERLINE, UNDERSCORE, BLINK, REVERSE, CONCEALED,
340BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, ON_BLACK, ON_RED,
341ON_GREEN, ON_YELLOW, ON_BLUE, ON_MAGENTA, ON_CYAN, and ON_WHITE directly.
342These are the same as color('attribute') and can be used if you prefer
343typing:
e3e5e1ea 344
cd07961b 345 print BOLD BLUE ON_WHITE "Text", RESET, "\n";
e3e5e1ea 346
347to
348
cd07961b 349 print colored ("Text", 'bold blue on_white'), "\n";
350
351(Note that the newline is kept separate to avoid confusing the terminal as
352described above since a background color is being used.)
e3e5e1ea 353
354When using the constants, if you don't want to have to remember to add the
355C<, RESET> at the end of each print line, you can set
356$Term::ANSIColor::AUTORESET to a true value. Then, the display mode will
357automatically be reset if there is no comma after the constant. In other
358words, with that variable set:
359
360 print BOLD BLUE "Text\n";
361
c23d8173 362will reset the display mode afterward, whereas:
e3e5e1ea 363
364 print BOLD, BLUE, "Text\n";
365
cd07961b 366will not. If you are using background colors, you will probably want to
367print the newline with a separate print statement to avoid confusing the
368terminal.
e3e5e1ea 369
370The subroutine interface has the advantage over the constants interface in
f63addff 371that only two subroutines are exported into your namespace, versus
372twenty-two in the constants interface. On the flip side, the constants
373interface has the advantage of better compile time error checking, since
374misspelled names of colors or attributes in calls to color() and colored()
c23d8173 375won't be caught until runtime whereas misspelled names of constants will
376be caught at compile time. So, pollute your namespace with almost two
377dozen subroutines that you may not even use that often, or risk a silly
378bug by mistyping an attribute. Your choice, TMTOWTDI after all.
379
380As of Term::ANSIColor 2.0, you can import C<:pushpop> and maintain a stack
381of colors using PUSHCOLOR, POPCOLOR, and LOCALCOLOR. PUSHCOLOR takes the
382attribute string that starts its argument and pushes it onto a stack of
383attributes. POPCOLOR removes the top of the stack and restores the
384previous attributes set by the argument of a prior PUSHCOLOR. LOCALCOLOR
385surrounds its argument in a PUSHCOLOR and POPCOLOR so that the color
386resets afterward.
387
388When using PUSHCOLOR, POPCOLOR, and LOCALCOLOR, it's particularly
389important to not put commas between the constants.
390
391 print PUSHCOLOR BLUE "Text\n";
392
393will correctly push BLUE onto the top of the stack.
394
395 print PUSHCOLOR, BLUE, "Text\n"; # wrong!
396
397will not, and a subsequent pop won't restore the correct attributes.
398PUSHCOLOR pushes the attributes set by its argument, which is normally a
399string of color constants. It can't ask the terminal what the current
400attributes are.
e3e5e1ea 401
402=head1 DIAGNOSTICS
403
404=over 4
405
110e9fb0 406=item Bad escape sequence %s
407
408(F) You passed an invalid ANSI escape sequence to uncolor().
409
410=item Bareword "%s" not allowed while "strict subs" in use
411
412(F) You probably mistyped a constant color name such as:
413
414 $Foobar = FOOBAR . "This line should be blue\n";
415
416or:
417
418 @Foobar = FOOBAR, "This line should be blue\n";
419
420This will only show up under use strict (another good reason to run under
421use strict).
422
e3e5e1ea 423=item Invalid attribute name %s
424
f63addff 425(F) You passed an invalid attribute name to either color() or colored().
e3e5e1ea 426
f63addff 427=item Name "%s" used only once: possible typo
e3e5e1ea 428
f63addff 429(W) You probably mistyped a constant color name such as:
e3e5e1ea 430
431 print FOOBAR "This text is color FOOBAR\n";
432
433It's probably better to always use commas after constant names in order to
434force the next error.
435
436=item No comma allowed after filehandle
437
f63addff 438(F) You probably mistyped a constant color name such as:
e3e5e1ea 439
440 print FOOBAR, "This text is color FOOBAR\n";
441
442Generating this fatal compile error is one of the main advantages of using
443the constants interface, since you'll immediately know if you mistype a
444color name.
445
110e9fb0 446=item No name for escape sequence %s
e3e5e1ea 447
110e9fb0 448(F) The ANSI escape sequence passed to uncolor() contains escapes which
449aren't recognized and can't be translated to names.
e3e5e1ea 450
110e9fb0 451=back
e3e5e1ea 452
110e9fb0 453=head1 ENVIRONMENT
e3e5e1ea 454
110e9fb0 455=over 4
e3e5e1ea 456
110e9fb0 457=item ANSI_COLORS_DISABLED
458
459If this environment variable is set, all of the functions defined by this
c23d8173 460module (color(), colored(), and all of the constants not previously used
461in the program) will not output any escape sequences and instead will just
110e9fb0 462return the empty string or pass through the original text as appropriate.
463This is intended to support easy use of scripts using this module on
464platforms that don't support ANSI escape sequences.
465
466For it to have its proper effect, this environment variable must be set
467before any color constants are used in the program.
e3e5e1ea 468
469=back
470
471=head1 RESTRICTIONS
472
473It would be nice if one could leave off the commas around the constants
474entirely and just say:
475
476 print BOLD BLUE ON_WHITE "Text\n" RESET;
477
478but the syntax of Perl doesn't allow this. You need a comma after the
479string. (Of course, you may consider it a bug that commas between all the
c23d8173 480constants aren't required, in which case you may feel free to insert
481commas unless you're using $Term::ANSIColor::AUTORESET or
482PUSHCOLOR/POPCOLOR.)
e3e5e1ea 483
3c4b39be 484For easier debugging, you may prefer to always use the commas when not
c23d8173 485setting $Term::ANSIColor::AUTORESET or PUSHCOLOR/POPCOLOR so that you'll
486get a fatal compile error rather than a warning.
e3e5e1ea 487
f63addff 488=head1 NOTES
489
110e9fb0 490The codes generated by this module are standard terminal control codes,
c23d8173 491complying with ECMA-048 and ISO 6429 (generally referred to as "ANSI
492color" for the color codes). The non-color control codes (bold, dark,
493italic, underline, and reverse) are part of the earlier ANSI X3.64
494standard for control sequences for video terminals and peripherals.
110e9fb0 495
496Note that not all displays are ISO 6429-compliant, or even X3.64-compliant
c23d8173 497(or are even attempting to be so). This module will not work as expected
498on displays that do not honor these escape sequences, such as cmd.exe,
4994nt.exe, and command.com under either Windows NT or Windows 2000. They
500may just be ignored, or they may display as an ESC character followed by
501some apparent garbage.
110e9fb0 502
f63addff 503Jean Delvare provided the following table of different common terminal
c23d8173 504emulators and their support for the various attributes and others have
505helped me flesh it out:
f63addff 506
c23d8173 507 clear bold faint under blink reverse conceal
f63addff 508 ------------------------------------------------------------------------
509 xterm yes yes no yes bold yes yes
510 linux yes yes yes bold yes yes no
511 rxvt yes yes no yes bold/black yes no
512 dtterm yes yes yes yes reverse yes yes
513 teraterm yes reverse no yes rev/red yes no
514 aixterm kinda normal no yes no yes yes
2d1e314f 515 PuTTY yes color no yes no yes no
516 Windows yes no no no no yes no
517 Cygwin SSH yes yes no color color color yes
92c7d2a2 518 Mac Terminal yes yes no yes yes yes yes
519
520Windows is Windows telnet, Cygwin SSH is the OpenSSH implementation under
c23d8173 521Cygwin on Windows NT, and Mac Terminal is the Terminal application in Mac
522OS X. Where the entry is other than yes or no, that emulator displays the
92c7d2a2 523given attribute as something else instead. Note that on an aixterm, clear
c23d8173 524doesn't reset colors; you have to explicitly set the colors back to what
525you want. More entries in this table are welcome.
526
527Note that codes 3 (italic), 6 (rapid blink), and 9 (strike-through) are
528specified in ANSI X3.64 and ECMA-048 but are not commonly supported by
529most displays and emulators and therefore aren't supported by this module
530at the present time. ECMA-048 also specifies a large number of other
531attributes, including a sequence of attributes for font changes, Fraktur
532characters, double-underlining, framing, circling, and overlining. As
533none of these attributes are widely supported or useful, they also aren't
534currently supported by this module.
110e9fb0 535
536=head1 SEE ALSO
537
538ECMA-048 is available on-line (at least at the time of this writing) at
2d1e314f 539L<http://www.ecma-international.org/publications/standards/ECMA-048.HTM>.
110e9fb0 540
c23d8173 541ISO 6429 is available from ISO for a charge; the author of this module
542does not own a copy of it. Since the source material for ISO 6429 was
543ECMA-048 and the latter is available for free, there seems little reason
544to obtain the ISO standard.
f63addff 545
c23d8173 546The current version of this module is always available from its web site
547at L<http://www.eyrie.org/~eagle/software/ansicolor/>. It is also part of
548the Perl core distribution as of 5.6.0.
135dda52 549
e3e5e1ea 550=head1 AUTHORS
551
110e9fb0 552Original idea (using constants) by Zenin, reimplemented using subs by Russ
c23d8173 553Allbery <rra@stanford.edu>, and then combined with the original idea by
554Russ with input from Zenin. Russ Allbery now maintains this module.
110e9fb0 555
135dda52 556=head1 COPYRIGHT AND LICENSE
110e9fb0 557
c23d8173 558Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2005, 2006, 2008, 2009 Russ
559Allbery <rra@stanford.edu> and Zenin. This program is free software; you
560may redistribute it and/or modify it under the same terms as Perl itself.
561
562PUSHCOLOR, POPCOLOR, and LOCALCOLOR were contributed by openmethods.com
563voice solutions.
e3e5e1ea 564
565=cut