Port details |
- p5-HTML-SuperForm HTML form generator
- 1.09_1 textproc =2 1.09_1Version of this port present on the latest quarterly branch.
- Maintainer: perl@FreeBSD.org
- Port Added: 2009-07-14 23:18:02
- Last Update: 2021-04-07 08:09:01
- Commit Hash: cf118cc
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- Also Listed In: perl5
- License: not specified in port
- Description:
- 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.
The interface was designed with mod_perl and the Template Toolkit in
mind, but it works equally well in any cgi environment.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- p5-HTML-SuperForm>0:textproc/p5-HTML-SuperForm
- To install the port:
- cd /usr/ports/textproc/p5-HTML-SuperForm/ && make install clean
- To add the package, run one of these commands:
- pkg install textproc/p5-HTML-SuperForm
- pkg install p5-HTML-SuperForm
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: p5-HTML-SuperForm
- Flavors: there is no flavor information for this port.
- distinfo:
- SHA256 (HTML-SuperForm-1.09.tar.gz) = 11c4b74be704a2ef1a87040d9e50dba740b7302e34671e21e878b1d1faf6f95e
SIZE (HTML-SuperForm-1.09.tar.gz) = 23455
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- perl5>=5.32.r0<5.33 : lang/perl5.32
- Runtime dependencies:
-
- perl5>=5.32.r0<5.33 : lang/perl5.32
- This port is required by:
- for Build
-
- textproc/p5-Template-Plugin-HTML-SuperForm
- for Run
-
- textproc/p5-Template-Plugin-HTML-SuperForm
Configuration Options:
- No options to configure
- Options name:
- textproc_p5-HTML-SuperForm
- USES:
- perl5
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.09_1 07 Apr 2021 08:09:01 |
Mathieu Arnold (mat) |
One more small cleanup, forgotten yesterday.
Reported by: lwhsu |
1.09_1 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
1.09_1 13 Mar 2015 17:29:59 |
adamw |
Clean up the rest of the perl@ Makefiles a bit.
- Remove dependencies on modules distributed as part of perl core
- Remove references to FreeBSD < 8 and perl < 5.16
- Ensure that DOCS and EXAMPLES options exist for ports installing
PORTDOCS or PORTEXAMPLES
- Reduce unnecessary inclusions of bsd.port.options.mk by using
OPTIONS helpers and the like
- Fix some cases where dependencies were only assigned to BUILD_DEPENDS
- Fix a few of the cases where dependencies were only assigned to RUN_DEPENDS.
This one happens in many, many ports. I only applied it in cases where
it interfered with 'make test' but it should maybe be done more generally.
- Mute ${MKDIR} in installation
- Parethesize compound commands
- In www/p5-URI-Fetch, remove the ZLIB option that wasn't used |
1.09_1 26 Nov 2014 13:08:38 |
mat |
Change the way Perl modules are installed, update the default Perl to 5.18.
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 (Only the first 15 lines of the commit message are shown above ) |
1.09 07 Nov 2013 03:52:42 |
vanilla |
Support STAGEDIR. |
1.09 20 Sep 2013 23:17:32 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
textproc) |
1.09 02 Aug 2013 18:52:11 |
mat |
- Convert to new perl framework
- Trim Makefile header
- Remove MAKE_JOBS_SAFE=yes, it's the default. |
1.09 20 Jun 2011 09:03:27 |
az |
- Replace ../../authors in MASTER_SITE_SUBDIR with CPAN:CPANID macro.
See http://wiki.freebsd.org/Perl for details.
- Change maintainership from ports@ to perl@ for ports in this changeset.
- Remove MD5 checksum |
1.09 17 May 2011 11:13:00 |
jadawin |
- Cleaning MD5 in perl@'s ports
Approved by: erwin@ (portmgr) |
1.09 26 Nov 2009 08:46:29 |
az |
- Update to 1.09
- 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> |
1.08 20 Oct 2009 10:21:24 |
tobez |
Update to 1.08.
Changes: http://search.cpan.org/dist/HTML-SuperForm/Changes |
1.06 19 Oct 2009 00:56:08 |
wen |
- Update to 1.06
Approved by: mentors(implicit) |
1.05 14 Jul 2009 23:17:36 |
pgollucci |
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.
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> |