mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
new port p5-HTML-Table
HTML::Table is used to generate HTML tables for CGI scripts. By using the methods provided fairly complex tables can be created, manipulated, then printed from Perl scripts. The module also greatly simplifies creating tables within tables from Perl. It is possible to create an entire table using the methods provided and never use an HTML tag. HTML::Table also allows for creating dynamically sized tables via its addRow and addCol methods. These methods automatically resize the table if passed more cell values than will fit in the current table grid. Methods are provided for nearly all valid table, row, and cell tags specified for HTML 3.0. WWW: http://www.chime.ucl.ac.uk/~rmhiajp/htmltable.htm
This commit is contained in:
parent
ea31f9c605
commit
d8406966d6
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=39789
6 changed files with 46 additions and 0 deletions
|
@ -172,6 +172,7 @@
|
|||
SUBDIR += p5-HTML-QuickCheck
|
||||
SUBDIR += p5-HTML-Stream
|
||||
SUBDIR += p5-HTML-Summary
|
||||
SUBDIR += p5-HTML-Table
|
||||
SUBDIR += p5-HTML-TableExtract
|
||||
SUBDIR += p5-HTML-TableLayout
|
||||
SUBDIR += p5-HTML-Tagset
|
||||
|
|
22
www/p5-HTML-Table/Makefile
Normal file
22
www/p5-HTML-Table/Makefile
Normal file
|
@ -0,0 +1,22 @@
|
|||
# New ports collection makefile for: p5-HTML-Table
|
||||
# Date created: Di 13 Mär 2001 19:37:25 CET
|
||||
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= HTML-Table
|
||||
PORTVERSION= 1.07b
|
||||
CATEGORIES= www perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= HTML
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
||||
PERL_CONFIGURE= YES
|
||||
|
||||
MAN3= HTML::Table.3
|
||||
MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||
|
||||
.include <bsd.port.mk>
|
1
www/p5-HTML-Table/distinfo
Normal file
1
www/p5-HTML-Table/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (HTML-Table-1.07b.tar.gz) = eae407a30e78a56b0c63da3e69c0f90c
|
1
www/p5-HTML-Table/pkg-comment
Normal file
1
www/p5-HTML-Table/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Generate HTML tables for CGI scripts
|
16
www/p5-HTML-Table/pkg-descr
Normal file
16
www/p5-HTML-Table/pkg-descr
Normal file
|
@ -0,0 +1,16 @@
|
|||
HTML::Table is used to generate HTML tables for CGI scripts. By
|
||||
using the methods provided fairly complex tables can be created,
|
||||
manipulated, then printed from Perl scripts. The module also greatly
|
||||
simplifies creating tables within tables from Perl. It is possible
|
||||
to create an entire table using the methods provided and never use
|
||||
an HTML tag.
|
||||
|
||||
HTML::Table also allows for creating dynamically sized tables via
|
||||
its addRow and addCol methods. These methods automatically resize
|
||||
the table if passed more cell values than will fit in the current
|
||||
table grid.
|
||||
|
||||
Methods are provided for nearly all valid table, row, and cell tags
|
||||
specified for HTML 3.0.
|
||||
|
||||
WWW: http://www.chime.ucl.ac.uk/~rmhiajp/htmltable.htm
|
5
www/p5-HTML-Table/pkg-plist
Normal file
5
www/p5-HTML-Table/pkg-plist
Normal file
|
@ -0,0 +1,5 @@
|
|||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/HTML/Table/.packlist
|
||||
lib/perl5/site_perl/%%PERL_VER%%/HTML/Table.pm
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/HTML/Table
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/HTML
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/HTML
|
Loading…
Add table
Reference in a new issue