diff options
author | miwi <miwi@FreeBSD.org> | 2009-12-26 03:26:19 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-12-26 03:26:19 +0800 |
commit | 1524d476add79d46da5551c865546bf280fa2ce7 (patch) | |
tree | 04b1e0cfa31df72d0511a87d8d563098b90c3fd2 /www | |
parent | 0c40ce28bf3d57e54bb2d140b1b0dbc00769bfcf (diff) | |
download | freebsd-ports-gnome-1524d476add79d46da5551c865546bf280fa2ce7.tar.gz freebsd-ports-gnome-1524d476add79d46da5551c865546bf280fa2ce7.tar.zst freebsd-ports-gnome-1524d476add79d46da5551c865546bf280fa2ce7.zip |
The HTML::Field set of modules creates objects that represent HTML form fields
which try to make it easier to interact with CGI objects, databases, and
HTML::Template objects.
The objective of an HTML::Field object is to know how to write its own HTML,
how to get its value out of a CGI object or from a hash,
how to add their value to a hash suitable for passing into a HTML::Template
or into a SQL::Abstract object, for example, and thus re-use some of the code
which is typically repeated several times in a CGI script.
This bundle includes also HTML::FieldForm, which is a very simple module to
manage sets of HTML::Field objects.
WWW: http://search.cpan.org/dist/HTML-Field/
PR: ports/140982
Submitted by: Sahil Tandon <sahil at tandon.net>
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/p5-HTML-Field/Makefile | 22 | ||||
-rw-r--r-- | www/p5-HTML-Field/distinfo | 3 | ||||
-rw-r--r-- | www/p5-HTML-Field/pkg-descr | 14 | ||||
-rw-r--r-- | www/p5-HTML-Field/pkg-plist | 6 |
5 files changed, 46 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 26b0e99cf746..bcb402fdc48f 100644 --- a/www/Makefile +++ b/www/Makefile @@ -878,6 +878,7 @@ SUBDIR += p5-HTML-Element-Library SUBDIR += p5-HTML-Encoding SUBDIR += p5-HTML-ExtractContent + SUBDIR += p5-HTML-Field SUBDIR += p5-HTML-FillInForm SUBDIR += p5-HTML-FillInForm-ForceUTF8 SUBDIR += p5-HTML-FormFu diff --git a/www/p5-HTML-Field/Makefile b/www/p5-HTML-Field/Makefile new file mode 100644 index 000000000000..588c28e74c02 --- /dev/null +++ b/www/p5-HTML-Field/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: HTML::Field +# Date created: 28 November 2009 +# Whom: Sahil Tandon <sahil@tandon.net> +# +# $FreeBSD$ +# + +PORTNAME= HTML-Field +PORTVERSION= 1.19 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sahil@tandon.net +COMMENT= A perl module to generate HTML form elements + +MAN3= HTML::Field.3 \ + HTML::FieldForm.3 + +PERL_CONFIGURE= yes + +.include <bsd.port.mk> diff --git a/www/p5-HTML-Field/distinfo b/www/p5-HTML-Field/distinfo new file mode 100644 index 000000000000..166438031d34 --- /dev/null +++ b/www/p5-HTML-Field/distinfo @@ -0,0 +1,3 @@ +MD5 (HTML-Field-1.19.tar.gz) = 60d122a87239557711a4ca62d177a5a5 +SHA256 (HTML-Field-1.19.tar.gz) = 9b4ec3a463c8707b90ff2e4326f44fc062b6bc9683fb847b8fba5513957a4994 +SIZE (HTML-Field-1.19.tar.gz) = 19036 diff --git a/www/p5-HTML-Field/pkg-descr b/www/p5-HTML-Field/pkg-descr new file mode 100644 index 000000000000..86450b526828 --- /dev/null +++ b/www/p5-HTML-Field/pkg-descr @@ -0,0 +1,14 @@ +The HTML::Field set of modules creates objects that represent HTML form fields +which try to make it easier to interact with CGI objects, databases, and +HTML::Template objects. + +The objective of an HTML::Field object is to know how to write its own HTML, +how to get its value out of a CGI object or from a hash, +how to add their value to a hash suitable for passing into a HTML::Template +or into a SQL::Abstract object, for example, and thus re-use some of the code +which is typically repeated several times in a CGI script. + +This bundle includes also HTML::FieldForm, which is a very simple module to +manage sets of HTML::Field objects. + +WWW: http://search.cpan.org/dist/HTML-Field/ diff --git a/www/p5-HTML-Field/pkg-plist b/www/p5-HTML-Field/pkg-plist new file mode 100644 index 000000000000..7492f25cc737 --- /dev/null +++ b/www/p5-HTML-Field/pkg-plist @@ -0,0 +1,6 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/Field/.packlist +%%SITE_PERL%%/HTML/Field.pm +%%SITE_PERL%%/HTML/FieldForm.pm +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/Field +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML +@dirrmtry %%SITE_PERL%%/HTML |