Update to 1.08.

Changes:	http://search.cpan.org/dist/HTML-SuperForm/Changes
This commit is contained in:
Anton Berezin 2009-10-20 10:21:24 +00:00
parent 03a93dab3a
commit 2e3876cd54
3 changed files with 26 additions and 24 deletions

View file

@ -6,9 +6,10 @@
#
PORTNAME= HTML-SuperForm
PORTVERSION= 1.06
PORTVERSION= 1.08
CATEGORIES= textproc perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= ../../authors/id/J/JA/JALLWINE
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
@ -20,16 +21,15 @@ WRKSRC= ${WRKDIR}/${PORTNAME}
MAN3= HTML::SuperForm.3 \
HTML::SuperForm::Field.3\
HTML::SuperForm::Field::Checkbox.3\
HTML::SuperForm::Field::CheckboxGroup.3\
HTML::SuperForm::Field::Hidden.3\
HTML::SuperForm::Field::Password.3\
HTML::SuperForm::Field::Radio.3\
HTML::SuperForm::Field::RadioGroup.3\
HTML::SuperForm::Field::Select.3\
HTML::SuperForm::Field::Submit.3\
HTML::SuperForm::Field::Text.3\
HTML::SuperForm::Field::Textarea.3
HTML::SuperForm::Field::Checkbox.3\
HTML::SuperForm::Field::CheckboxGroup.3\
HTML::SuperForm::Field::Hidden.3\
HTML::SuperForm::Field::Password.3\
HTML::SuperForm::Field::Radio.3\
HTML::SuperForm::Field::RadioGroup.3\
HTML::SuperForm::Field::Select.3\
HTML::SuperForm::Field::Submit.3\
HTML::SuperForm::Field::Text.3\
HTML::SuperForm::Field::Textarea.3
.include <bsd.port.mk>

View file

@ -1,3 +1,3 @@
MD5 (HTML-SuperForm-1.06.tar.gz) = d9fd53c1700473e0526d40ea384b5bcf
SHA256 (HTML-SuperForm-1.06.tar.gz) = 61aaef8672d2261cf6c7275777397ffbd8de015b1da7e5e0cd228f88ba1c2260
SIZE (HTML-SuperForm-1.06.tar.gz) = 15633
MD5 (HTML-SuperForm-1.08.tar.gz) = 6e1a7735eb8a4b7d47e812c82aec88fe
SHA256 (HTML-SuperForm-1.08.tar.gz) = 557a1bd31a2937305a347bc9317d4dff7d6f52d46569b459378661f2f38adf35
SIZE (HTML-SuperForm-1.08.tar.gz) = 22977

View file

@ -1,11 +1,13 @@
Used in its basic form, this module provides an interface for generating basic
HTML form elements much like HTML::StickyForms does. The main difference is
HTML::SuperForm returns HTML::SuperForm::Field objects rather than plain HTML.
This allows for more flexibilty when generating forms for a complex application.
Used in its basic form, this module provides an interface for generating
basic HTML form elements much like HTML::StickyForms does. The main
difference is HTML::SuperForm returns HTML::SuperForm::Field objects
rather than plain HTML. This allows for more flexibilty when generating
forms for a complex application.
To get the most out of this module, use it as a base (Super) class for your own
form object which generates your own custom fields. If you don't use it this way,
I guess there's really nothing Super about it. Example are shown later in the document.
To get the most out of this module, use it as a base (Super) class for
your own form object which generates your own custom fields. If you
don't use it this way, I guess there's really nothing Super about it.
Example are shown later in the document.
The interface was designed with mod_perl and the Template Toolkit in mind,
but it works equally well in any cgi environment.
The interface was designed with mod_perl and the Template Toolkit in
mind, but it works equally well in any cgi environment.