• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/HTML/H23-Jun-2008-4,3131,964

ChangesH A D23-Jun-200811.4 KiB309234

MANIFESTH A D04-Feb-2008148 87

META.ymlH A D23-Jun-2008422 1413

Makefile.PLH A D23-Jun-2008385 118

READMEH A D15-Mar-20071.8 KiB5240

test.plH A D07-Jul-2000676 215

README

1NAME
2    HTML::Table - Create HTML tables using simple interface
3
4INSTALL
5    In order to install and use this package you will need Perl version
6    5.002 or better.  Installation as usual:
7
8        perl Makefile.PL
9        make
10        make test
11        make install
12
13DESCRIPTION
14    HTML::Table is used to generate HTML tables for
15    CGI scripts.  By using the methods provided fairly
16    complex tables can be created, manipulated, then printed
17    from Perl scripts.  The module also greatly simplifies
18    creating tables within tables from Perl.  It is possible
19    to create an entire table using the methods provided and
20    never use an HTML tag.
21
22    HTML::Table also allows for creating dynamically sized
23    tables via its addRow and addCol methods.  These methods
24    automatically resize the table if passed more cell values
25    than will fit in the current table grid.
26
27    Methods are provided for nearly all valid table, row, and
28    cell tags specified for HTML 3.0.
29
30HISTORY
31    This module was originally created in 1997 by Stacy Lacy and whose last
32	version was uploaded to CPAN in 1998.  The module was adopted in July 2000
33	by Anthony Peacock in order to distribute a revised version.  This adoption
34	took place without the explicit consent of Stacy Lacy as it proved impossible
35	to contact them at the time.  Explicit consent for the adoption has since been
36	received.
37
38AUTHOR
39    Anthony Peacock, a.peacock@chime.ucl.ac.uk
40    Stacy Lacy (Original author)
41
42    See the Changes file for a full listing of those authors who have
43    contributed patches.
44
45COPYRIGHT
46    Copyright (c) 1998-2007 Anthony Peacock, CHIME.
47    Copyright (c) 1997 Stacy Lacy
48
49    This library is free software; you can redistribute it and/or
50    modify it under the same terms as Perl itself.
51
52