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

..03-May-2022-

lib/HTML/H02-Jul-2005-838205

t/H02-Jul-2005-214162

ChangesH A D30-Jun-2005591 2819

MANIFESTH A D02-Jul-2005294 1413

META.ymlH A D02-Jul-2005404 1311

Makefile.PLH A D02-Dec-2004532 2515

READMEH A D27-Mar-20041.5 KiB5739

README

1HTML::TableTiler README File
2============================
3
4
5Description
6-----------
7
8HTML::TableTiler uses a minimum HTML table as a tile to generate a complete
9HTML table from a bidimensional array of data. It can easily produce simple or
10complex graphic styled tables with minimum effort and maximum speed.
11
12Think about the table tile as a sort of tile that automatically expands itself
13to contain the whole data. You can control the final look of a table by choosing
14either the HORIZONTAL and the VERTICAL tiling mode among: PULL, TILE and TRIM.
15
16The main advantages to use it are:
17
18* automatic table generation
19  Pass only a bidimensional array of data to generate a complete HTML table.
20  No worry to decide in advance the quantity of cells (or rows) in the table.
21
22* complex graphic patterns generation without coding
23  Just prepare a simple table tile in your preferred WYSIWYG HTML editor
24  and let the module do the job for you.
25
26* simple to maintain
27  You can indipendently change the table tile or the code, and everything
28  will go as you would expect.
29
30
31Installation
32------------
33
340. Prerequisites:
35- Perl version >= 5.005
36- HTML::PullParser >= 1.0
37- IO::Util >= 1.2
38
39
401. Standard installation
41- from the directory where this file is located, type:
42
43	perl Makefile.PL
44	make
45	make test
46	make install
47
48
492. Manual installation
50- if your OS does not have any 'make' support, just copy the
51  content of the /lib dir into perl installation site dir, maintaining the
52  same hierarchy
53
54--
55Domizio Demichelis perl.4pro.net
562004-03-27
57