1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
|
require 5.004;
use strict;
package HTML::FromText;
use Carp;
use Exporter;
use Text::Tabs 'expand';
use vars qw($RCSID $VERSION $QUIET @EXPORT @ISA);
@ISA = qw(Exporter);
@EXPORT = qw(text2html);
$RCSID = q$Id: FromText.pm,v 1.14 1999/10/06 10:53:37 garethr Exp $;
$VERSION = '1.005';
$QUIET = 0;
# This list of protocols is taken from RFC 1630: "Universal Resource
# Identifiers in WWW". The protocol "file" is omitted because
# experience suggests that it results in many false positives; "https"
# postdates RFC 1630. The protocol "mailto" is handled separately, by
# the email address matching code.
my $protocol = join '|',
qw(afs cid ftp gopher http https mid news nntp prospero telnet wais);
# The regular expressions matching email addresses use the following
# syntax elements from RFC 822. I can't use the full details of
# structured field bodies, because that would give too many false
# positives. (See Tom Christiansen's ckaddr.gz for a full
# implementation of the RFC 822.)
#
# addr-spec = local-part "@" domain
# local-part = word *("." word)
# word = atom
# domain = sub-domain *("." sub-domain)
# sub-domain = domain-ref
# domain-ref = atom
# atom = 1*<any CHAR except specials, SPACE and CTLs>
# specials = "(" / ")" / "<" / ">" / "@" / "," / ";" / ":" / "\"
# / <"> / "." / "[" / "]"
#
# I have ignored quoting, domain literals and comments.
#
# Note that '&' can legally appear in email addresses (for example,
# 'fred&barney@stonehenge.com'). If the 'metachars' option is passed to
# text2html then I must use '&' to recognize '&'. Thus the regular
# expression $atom[0] recognizes an atom in the case where the option
# 'metachars' is false; $atom[1] recognizes an atom in the case where
# 'metachars' is true. Similarly for the regular expressions $email[0]
# and $email[1], which recognize email addresses.
my @atom =
( '[!#$%&\'*+\\-/0123456789=?ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz{|}~]+',
'(?:&|[!#$%\'*+\\-/0123456789=?ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz{|}~])+' );
my @email = ( "$atom[0](\\.$atom[0])*\@$atom[0](\\.$atom[0])*",
"$atom[1](\\.$atom[1])*\@$atom[1](\\.$atom[1])*" );
my @alignments = ( '', '', ' ALIGN="RIGHT"', ' ALIGN="CENTER"' );
sub string2html ($$) {
my $options = $_[1];
for ($_[0]) { # Modify in-place.
# METACHARS: mark up HTML metacharacters as corresponding entities.
if ($options->{metachars}) {
s/&/&/g;
s/</</g;
s/>/>/g;
s/\"/"/g;
}
# EMAIL, URLS: spot electronic mail addresses and turn them into
# links. Note (1) if `urls' is set but not `email', then only
# addresses prefixed by `mailto:' will be marked up; (2) that we leave
# the `mailto:' prefix in the anchor text.
if ($options->{email} or $options->{urls}) {
s|((?:mailto:)?)($email[$options->{metachars}?1:0])|
($options->{email} or $1)
? "<TT><A HREF=\"mailto:$2\">$1$2</A></TT>" : $2|gex;
}
# URLS: mark up URLs as links (note that `mailto' links are handled
# above).
if ($options->{urls}) {
s|\b((?:$protocol):\S+[\w/])|<TT><A HREF="$1">$1</A></TT>|g;
}
# BOLD: mark up words in *asterisks* as bold.
if ($options->{bold}) {
s#(^|\s)\*([^*]+)\*(?=\s|$)#$1<B>$2</B>#g;
}
# UNDERLINE: mark up words in _underscores_ as underlined.
if ($options->{underline}) {
s#(^|\s)_([^_]+?)_(?=\s|$)#$1<U>$2</U>#g;
}
}
return $_[0];
}
sub text2html {
local $_ = shift; # Take a copy; don't modify in-place.
return $_ unless $_;
my %options = ( metachars => 1, @_ );
# Check options for sanity.
unless ($QUIET) {
carp "text2html: `spaces' will be ignored since `lines' is not specified"
if $options{spaces} and not $options{lines};
if ($options{paras}) {
if ($options{blockparas}) {
foreach my $o (qw(blockquotes blockcode)) {
carp "text2html: `$o' will be ignored since `blockparas' is specified" if $options{$o};
}
} elsif ($options{blockcode} and $options{blockquotes}) {
carp "text2html: `blockquotes' will be ignored since `blockcode' is specified";
}
} else {
foreach my $o (qw(bullets numbers blockquotes blockparas blockcode
title headings tables)) {
carp "text2html: `$o' will be ignored since `paras' is not specified"
if $options{$o};
}
}
}
# Expand tabs.
$_ = join "\n", expand(split /\r?\n/);
# PRE: put text in <PRE> element.
if ($options{pre}) {
string2html($_, \%options);
s|^|<PRE>|;
s|$|</PRE>|;
}
# LINES: preserve line breaks from original text.
elsif ($options{lines}) {
string2html($_, \%options);
s/\n/<BR>\n/gm;
# SPACES: preserve spaces from original text.
s/ / /g if $options{spaces};
}
# PARAS: treat text as sequence of paragraphs.
elsif ($options{paras}) {
my @paras;
# Remove initial and final blank lines.
s/^(?:\s*?\n)+//;
s/(?:\n\s*?)+$//;
# Split on a different regexp depending on what kinds of paragraphs
# will be recognised later. The idea is that bulleted lists like
# this:
#
# * item 1
# * item 2
#
# will be recognised as multiple paragraphs if the 'bullets' option
# is supplied, but as a single paragraph otherwise. (Similarly for
# numbered lists).
if ($options{bullets} and $options{numbers}) {
@paras = split
/(?:\s*\n)+ # (0 or more blank lines, followed by LF)
(?:\s*\n # Either 1 or more blank lines, or
|(?=\s*[*-]\s+ # bulleted item follows, or
|\s*(?:\d+)[.\)\]]?\s+)) # numbered item follows
/x;
} elsif ($options{bullets}) {
@paras = split
/(?:\s*\n)+ # (0 or more blank lines, followed by LF)
(?:\s*\n # Either 1 or more blank lines, or
|(?=\s*[*-]\s+)) # bulleted item follows.
/x;
} elsif ($options{numbers}) {
@paras = split
/(?:\s*\n)+ # (0 or more blank lines, followed by LF)
(?:\s*\n # Either 1 or more blank lines, or
|(?=\s*(?:\d+)[.\)\]]?\s+)) # numbered item follows.
/x;
} else {
@paras = split
/\s*\n(?:\s*\n)+ # 1 or more blank lines.
/x;
}
my $last = ''; # List type (OL/UL) of last paragraph
my $this; # List type (OL/UL) of this paragraph
my $first = 1; # True if this is first paragraph
foreach (@paras) {
my (@rows,@starts,@ends);
$this = '';
# TITLE: mark up first paragraph as level-1 heading.
if ($options{title} and $first) {
string2html($_,\%options);
s|^|<H1>|;
s|$|</H1>|;
}
# HEADINGS: mark up paragraphs with numbers at the start of the
# first line as headings.
elsif ($options{headings} and /^(\d+(\.\d+)*)\.?\s/) {
my $number = $1;
my $level = 1 + ($number =~ tr/././);
$level = 6 if $level > 6;
string2html($_,\%options);
s|^|<H$level>|;
s|$|</H$level>|;
}
# BULLETS: mark up paragraphs starting with bullets as items in an
# unnumbered list.
elsif ($options{bullets} and /^\s*[*-]\s+/) {
string2html($_,\%options);
s/^\s*[*-]\s+/<LI><P>/;
s|$|</P>|;
$this = 'UL';
}
# NUMBERS: mark up paragraphs starting with numbers as items in a
# numbered list.
elsif ($options{numbers} and /^\s*(\d+)[.\)\]]?\s+/) {
string2html($_,\%options);
s/^\s*(\d+)[.\)\]]?\s+/<LI VALUE="$1"><P>/;
s|$|</P>|;
$this = 'OL';
}
# TABLES: spot and mark up tables. We combine the lines of the
# paragraph using the string bitwise or (|) operator, the result
# being in $spaces. A character in $spaces is a space only if
# there was a space at that position in every line of the
# paragraph. $space can be used to search for contiguous spaces
# that occur on all lines of the paragraph. If this results in at
# least two columns, the paragraph is identified as a table.
#
# Note that this option appears before the various 'blockquotes'
# options because a table may well have whitespace to the left, in
# which case it must not be incorrectly recognised as a
# blockquote.
elsif ($options{tables} and do {
@rows = split /\n/, $_;
my $spaces;
my $max = 0;
my $min = length;
foreach my $row (@rows) {
($spaces |= $row) =~ tr/ /\xff/c;
$min = length $row if length $row < $min;
$max = length $row if $max < length $row;
}
$spaces = substr $spaces, 0, $min;
push(@starts, 0) unless $spaces =~ /^ /;
while ($spaces =~ /((?:^| ) +)(?=[^ ])/g) {
push @ends, pos($spaces) - length $1;
push @starts, pos($spaces);
}
shift(@ends) if $spaces =~ /^ /;
push(@ends, $max);
# Two or more rows and two or more columns indicate a table.
2 <= @rows and 2 <= @starts
}) {
# For each column, guess whether it should be left, centre or
# right aligned by examining all cells in that column for space
# to the left or the right. A simple majority among those cells
# that actually have space to one side or another decides (if no
# alignment gets a majority, left alignment wins by default).
my @align;
foreach my $col (0 .. $#starts) {
my @count = (0, 0, 0, 0);
foreach my $row (@rows) {
my $width = $ends[$col] - $starts[$col];
my $cell = substr $row, $starts[$col], $width;
++ $count[($cell =~ /^ / ? 2 : 0)
+ ($cell =~ / $/ || length($cell) < $width ? 1 : 0)];
}
$align[$col] = 0;
my $population = $count[1] + $count[2] + $count[3];
foreach (1 .. 3) {
if ($count[$_] * 2 > $population) {
$align[$col] = $_;
last;
}
}
}
foreach my $row (@rows) {
$row = join '', '<TR>', (map {
my $cell = substr $row, $starts[$_], $ends[$_] - $starts[$_];
$cell =~ s/^ +//;
$cell =~ s/ +$//;
string2html($cell,\%options);
('<TD', $alignments[$align[$_]], '>', $cell, '</TD>')
} 0 .. $#starts), '</TR>';
}
my $tag = $starts[0] == 0 ? 'P' : 'BLOCKQUOTE';
$_ = join "\n", "<$tag><TABLE>", @rows, "</TABLE></$tag>";
}
# BLOCKPARAS, BLOCKCODE, BLOCKQUOTES: mark up indented paragraphs
# as block quotes of various kinds.
elsif (($options{blockparas} or $options{blockquotes}
or $options{blockcode}) and /^(\s+).*(?:\n\1.*)*$/) {
string2html($_,\%options);
# Every line in the paragraph starts with at white space, the common
# whitespace being in $1. Remove the common initial whitespace,
s/^$1//gm;
# BLOCKPARAS: treat as a paragraph.
if ($options{blockparas}) {
s|^|<P>|;
s|$|</P>|;
}
# BLOCKCODE, BLOCKQUOTES: preserve line breaks.
else {
s/\n/<BR>\n/gm;
# BLOCKCODE: preserve spaces, use fixed-width font.
if ($options{blockcode}) {
s| | |g;
s|^|<TT>|;
s|$|</TT>|;
}
}
s|^|<BLOCKQUOTE>|;
s|$|</BLOCKQUOTE>|;
}
# Didn't match any of the above, so just an ordinary paragraph.
else {
string2html($_,\%options);
s|^|<P>|;
s|$|</P>|;
}
# Insert <UL>, </UL>, <OL> or </OL> if this paragraph belongs to a
# different list type than the previous one.
if ($this ne $last) {
s|^|<$this>| if ($this ne '');
s|^|</$last>| if ($last ne '');
}
$last = $this;
$first = 0;
}
if ($this ne '') {
push @paras, "</$this>";
}
$_ = join "\n", @paras;
}
# None of PRE, LINES, PARAS specified: apply basic transformations.
else {
string2html($_,\%options);
}
return $_;
}
1;
__END__
=head1 NAME
HTML::FromText - mark up text as HTML
=head1 SYNOPSIS
use HTML::FromText;
print text2html($text, urls => 1, paras => 1, headings => 1);
=head1 DESCRIPTION
The C<text2html> function marks up plain text as HTML. By default it
expands tabs and converts HTML metacharacters into the corresponding
entities. More complicated transformations, such as splitting the text
into paragraphs or marking up bulleted lists, can be carried out by
setting the appropriate options.
=head1 SUMMARY OF OPTIONS
These options always apply:
metachars Convert HTML metacharacters to entity references
urls Convert URLs to links
email Convert email addresses to links
bold Mark up words with *asterisks* in bold
underline Mark up words with _underscores_ as underlined
You can then choose to treat the text according to one of these options:
pre Treat text as preformatted
lines Treat text as line-oriented
paras Treat text as paragraph-oriented
(If more than one of these is specified, C<pre> takes precedence over
C<lines> which takes precedence over C<paras>.) The following option
applies when the C<lines> option is specified:
spaces Preserve spaces from the original text
The following options apply when the C<paras> option is specified:
blockparas Mark up indented paragraphs as block quote
blockquotes Ditto, also preserve lines from original
blockcode Ditto, also preserve spaces from original
bullets Mark up bulleted paragraphs as unordered list
headings Mark up headings
numbers Mark up numbered paragraphs as ordered list
tables Mark up tables
title Mark up first paragraph as level 1 heading
C<text2html> will issue a warning if it is passed nonsensical options,
for example C<headings> but not C<paras>. These warnings can be
supressed by setting $HTML::FromText::QUIET to true.
=head1 OPTIONS
=over 4
=item blockparas
=item blockquotes
=item blockcode
These options cause to C<text2html> to spot paragraphs where every line
begins with whitespace, and mark them up as block quotes. If more than
one of these options is specified, C<blockparas> takes precedence over
C<blockcode>, which takes precedence over C<blockquotes>. All three
options are ignored unless the C<paras> option is also set.
The C<blockparas> option marks up the paragraph as a block quote with no
other changes. For example,
Turing wrote,
I propose to consider the question,
"Can machines think?"
becomes
<P>Turing wrote,</P>
<BLOCKQUOTE>I propose to consider the question,
"Can machines think?"</BLOCKQUOTE>
The C<blockquotes> option preserves line breaks in the original text.
For example,
From "The Waste Land":
Phlebas the Phoenecian, a fortnight dead,
Forgot the cry of gulls, and the deep sea swell
becomes
<P>From "The Waste Land":</P>
<BLOCKQUOTE>Phlebas the Phoenecian, a fortnight dead,<BR>
Forgot the cry of gulls, and the deep sea swell</BLOCKQUOTE>
The C<blockcode> option preserves line breaks and spaces in the original
text and renders the paragraph in a fixed-width font. For example:
Here's how to output numbers with commas:
sub commify {
local $_ = shift;
1 while s/^(-?\d+)(\d{3})/$1,$2/;
$_;
}
becomes
<P>Here's how to output numbers with commas:</P>
<BLOCKQUOTE><TT>sub commify {<BR>
local $_ = shift;<BR>
1 while s/^(-?\d+)(\d{3})/$1,$2/;<BR>
$_;<BR>
}</TT></BLOCKQUOTE>
=item bold
Words surrounded with asterisks are marked up in bold, so C<*abc*>
becomes C<E<lt>BE<gt>abcE<lt>/BE<gt>>.
=item bullets
Spots bulleted paragraphs (beginning with optional whitespace, an
asterisk or hyphen, and whitespace) and marks them up as an unordered
list. Bulleted paragraphs don't have to be separated by blank lines.
For example,
Shopping list:
* apples
* pears
becomes
<P>Shopping list:</P>
<UL><LI><P>apples</P>
<LI><P>pears</P>
</UL>
This option is ignored unless the C<paras> option is set.
=item email
Spots email addresses in the text and converts them to links. For example
Mail me at web@perl.com.
becomes
Mail me at <TT><A HREF="mailto:web@perl.com">web@perl.com</A></TT>.
=item headings
Spots headings (paragraphs starting with numbers) and marks them up as
headings of the appropriate level. For example,
1. Introduction
1.1 Background
1.1.1 Previous work
2. Conclusion
becomes
<H1>1. Introduction</H1>
<H2>1.1 Background</H2>
<H3>1.1.1 Previous work</H3>
<H1>2. Conclusion</H1>
This option is ignored unless the C<paras> option is set.
=item lines
Formats the text so as to preserve line breaks. For example,
Line 1
Line 2
becomes
Line 1<BR>
Line 2
If two or more of the options C<pre>, C<lines> and C<paras> are set,
then C<pre> takes precedence over C<lines>, which takes precedence over
C<paras>.
=item metachars
Converts HTML metacharacters into their corresponding entity references.
Ampersand (C<E<amp>>) becomes C<E<amp>amp;>, less than (C<E<lt>>)
becomes C<E<amp>lt;>, greater than (C<E<gt>>) becomes C<E<amp>gt;>, and
quote (") becomes C<E<amp>quot;>. This option is 1 by default.
=item numbers
Spots numbered paragraphs (beginning with whitespace, digits, an
optional period/parenthesis/bracket, and whitespace) and marks them up
as an ordered list. Numbered paragraphs don't have to be separated by
blank lines. For example,
To do:
1. Write thesis
2. Submit it
3. Celebrate
becomes
<P>To do:</P>
<OL><LI VALUE="1"><P>Write thesis</P>
<LI VALUE="2"><P>Submit it</P>
<LI VALUE="3"><P>Celebrate</P>
</OL>
This option is ignored unless the C<paras> option is set.
=item paras
Format the text into paragraphs. Paragraphs are separated by one or
more blank lines. For example,
Paragraph 1
Paragraph 2
becomes
<P>Paragraph 1</P>
<P>Paragraph 2</P>
If two or more of the options C<pre>, C<lines> and C<paras> are set,
then C<pre> takes precedence over C<lines>, which takes precedence over
C<paras>.
=item pre
Wrap the whole input in a C<E<lt>PREE<gt>> element. For example,
preformatted
text
becomes
<PRE>preformatted
text</PRE>
If two or more of the options C<pre>, C<lines> and C<paras> are set,
then C<pre> takes precedence over C<lines>, which takes precedence over
C<paras>.
=item spaces
Preserves spaces throughout the text. For example,
Line 1
Line 2
Line 3
becomes
Line 1<BR>
Line 2<BR>
Line 3
This option is ignored unless the C<lines> option is set.
=item tables
Spots tables and marks them up appropriately. Columns must be separated
by two or more spaces (this prevents accidental incorrect recognition of
a paragraph where interword spaces happen to line up). If there are two
or more rows in a paragraph and all rows share the same set of (two or
more) columns, the paragraph is assumed to be a table. For example
-e File exists.
-z File has zero size.
-s File has nonzero size (returns size).
becomes
<P><TABLE>
<TR><TD>-e</TD><TD>File exists.</TD></TR>
<TR><TD>-z</TD><TD>File has zero size.</TD></TR>
<TR><TD>-s</TD><TD>File has nonzero size (returns size).</TD></TR>
</TABLE></P>
C<text2html> guesses for each column whether it is intended to be left,
centre or right aligned.
This option is ignored unless the C<paras> option is set.
=item title
Formats the first paragraph of the text as a first-level heading.
For example,
Paragraph 1
Paragraph 2
becomes
<H1>Paragraph 1</H1>
<P>Paragraph 2</P>
This option is ignored unless the C<paras> option is set.
=item underline
Words surrounded with underscores are marked up with underline, so C<_abc_>
becomes C<E<lt>UE<gt>abcE<lt>/UE<gt>>.
=item urls
Spots Uniform Resource Locators (URLs) in the text and converts them
to links. For example
See https://perl.com/.
becomes
See <TT><A HREF="https://perl.com/">https://perl.com/</A></TT>.
=back
=head1 SEE ALSO
The C<HTML::Entities> module (part of the LWP package) provides
functions for encoding and decoding HTML entities.
Tom Christiansen has a complete implementation of RFC 822 structured
field bodies. See
C<http://www.perl.com/CPAN/authors/Tom_Christiansen/scripts/ckaddr.gz>.
Seth Golub's C<txt2html> utility does everything that C<HTML::FromText>
does, and a few things that it would like to do. See
C<http://www.thehouse.org/txt2html/>.
RFC 822: "Standard for the Format of ARPA Internet Text Messages"
describes the syntax of email addresses (the more esoteric features of
structured field bodies, in particular quoted-strings, domain literals
and comments, are not recognized by C<HTML::FromText>). See
C<ftp://src.doc.ic.ac.uk/rfc/rfc822.txt>.
RFC 1630: "Universal Resource Identifiers in WWW" lists the protocols
that may appear in URLs. C<HTML::FromText> also recognizes "https:",
but ignores "file:" because experience suggests that it results in too
many false positives. See C<ftp://src.doc.ic.ac.uk/rfc/rfc1630.txt>.
=head1 AUTHOR
Gareth Rees C<E<lt>garethr@cre.canon.co.ukE<gt>>.
=head1 COPYRIGHT
Copyright (c) 1999 Canon Research Centre Europe. All rights reserved.
This module is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
|