aboutsummaryrefslogtreecommitdiff
path: root/textproc/p5-HTML-SuperForm
Commit message (Collapse)AuthorAgeFilesLines
* Change the way Perl modules are installed, update the default Perl to 5.18.Mathieu Arnold2014-11-262-6/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, we had: site_perl : lib/perl5/site_perl/5.18 site_perl/perl_arch : lib/perl5/site_perl/5.18/mach perl_man3 : lib/perl5/5.18/man/man3 Now we have: site_perl : lib/perl5/site_perl site_arch : lib/perl5/site_perl/mach/5.18 perl_man3 : lib/perl5/site_perl/man/man3 Modules without any .so will be installed at the same place regardless of the Perl version, minimizing the upgrade when the major Perl version is changed. It uses a version dependent directory for modules with compiled bits. As PERL_ARCH is no longer needed in plists, it has been removed from PLIST_SUB. The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now always removed, as is perllocal.pod. The old site_perl and site_perl/arch directories have been kept in the default Perl @INC for all Perl ports, and will be phased out as these old Perl versions expire. PR: 194969 Differential Revision: https://reviews.freebsd.org/D1019 Exp-run by: antoine Reviewed by: perl@ Approved by: portmgr Notes: svn path=/head/; revision=373448
* Support STAGEDIR.Vanilla I. Shu2013-11-072-20/+18
| | | | Notes: svn path=/head/; revision=333056
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-1/+1
| | | | | | | textproc) Notes: svn path=/head/; revision=327773
* - Convert to new perl frameworkMathieu Arnold2013-08-021-6/+3
| | | | | | | | - Trim Makefile header - Remove MAKE_JOBS_SAFE=yes, it's the default. Notes: svn path=/head/; revision=324174
* - Replace ../../authors in MASTER_SITE_SUBDIR with CPAN:CPANID macro.Andrej Zverev2011-06-201-1/+1
| | | | | | | | | See http://wiki.freebsd.org/Perl for details. - Change maintainership from ports@ to perl@ for ports in this changeset. - Remove MD5 checksum Notes: svn path=/head/; revision=275887
* - Cleaning MD5 in perl@'s portsPhilippe Audeoud2011-05-171-1/+0
| | | | | | | Approved by: erwin@ (portmgr) Notes: svn path=/head/; revision=274222
* - Update to 1.09Andrej Zverev2009-11-263-5/+10
| | | | | | | | | | | | | - Changes: http://cpansearch.perl.org/src/JALLWINE/HTML-SuperForm-1.09/Changes While i'm here fix comment section which was stolen from textproc/p5-Template-Plugin-Lingua-EN-Inflect :-) PR: ports/140889 Submitted by: Sahil Tandon <sahil@tandon.net> Notes: svn path=/head/; revision=244762
* Update to 1.08.Anton Berezin2009-10-203-24/+26
| | | | | | | Changes: http://search.cpan.org/dist/HTML-SuperForm/Changes Notes: svn path=/head/; revision=243100
* - Update to 1.06Wen Heping2009-10-192-4/+4
| | | | | | | Approved by: mentors(implicit) Notes: svn path=/head/; revision=243028
* Used in its basic form, this module provides an interface for generating basicPhilip M. Gollucci2009-07-144-0/+67
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. The interface was designed with mod_perl and the Template Toolkit in mind, but it works equally well in any cgi environment. A dep for www/p5-Gantry Reported by: Cezary Morga <cm@therek.net> Notes: svn path=/head/; revision=237825