libcgi-formbuilder-perl 3.10-5 source package in Ubuntu

Changelog

libcgi-formbuilder-perl (3.10-5) unstable; urgency=medium

  [ Debian Janitor ]
  * Bump debhelper dependency to >= 9, since that's what is used in
    debian/compat.
  * Bump debhelper from old 9 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Submit.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata
    (already present in machine-readable debian/copyright).
  * Update standards version to 4.4.1, no changes needed.
  * Update standards version to 4.5.0, no changes needed.
  * Bump debhelper from old 12 to 13.
  * Update standards version to 4.5.1, no changes needed.
  * Update standards version to 4.6.0, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Mon, 04 Jul 2022 17:41:47 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libcgi-formbuilder-perl_3.10-5.dsc 2.2 KiB a8e94aa30a39843a3b338ca3079f13b98d1082d7be3fc97b43b465084db4e7d3
libcgi-formbuilder-perl_3.10.orig.tar.gz 158.5 KiB aec99be0c0f067a7e7269c5378e5ae6c8d7dd39b368b4f12c0d8463b13ee7198
libcgi-formbuilder-perl_3.10-5.debian.tar.xz 10.5 KiB ff0fec0e23f6d8b610322981bcee75cad848dc8c26159ed35ea8ef037e70932e

Available diffs

No changes file available.

Binary packages built by this source

libcgi-formbuilder-perl: Easily generate and process stateful CGI forms

 CGI::FormBuilder is a Perl module for generating, processing, and validating
 CGI forms. It's an extremely fast and robust module with a ridiculous set of
 features.
 .
 Highlights:
 .
  * DWIMmery
 FormBuilder tries to do what you mean. Tell it the fields you care
 about, and it takes care of all the stupid HTML and JavaScript
 generation and processing for you. It also gives you back the correct
 values that you want. It will even label your fields automatically with
 human-readable names.
 .
  * Input field abstraction
 Simply define your fields and their options, and FormBuilder will
 take care of figuring out what the best HTML representation is. It will
 then generate the appropriate input fields (text, select, radio, etc),
 even changing any JavaScript actions appropriately.
 .
  * Easy handling of defaults
 Just specify a hash of values to use as the defaults for your fields.
 This will be searched case-insensitively and displayed in the form.
 What's more, if the user enters something via the CGI that overrides a
 default, when you use the field() method to get the data you'll get the
 correct value.
 .
  * Correct stickiness
 Stickiness is a PITA. FormBuilder correctly handles even multiple
 values selected in a multiple select list, completely integrated with
 proper handling of defaults.
 .
  * Robust field validation
 Form validation sucks, and this is where FormBuilder is a big help. It
 has tons of builtin patterns, and will even generate gobs of JavaScript
 validation code for you. It is possible to specify your own regexps as well,
 and FormBuilder will even check multivalued select lists correctly.
 .
  * Multiple submit mode support
 FormBuilder allows one to reliably tell whether the person clicked on
 the "Update" or "Delete" button of your form, normally a big pain.
 .
  * Template driver support
 FormBuilder can natively "drive" several major templating engines:
  * HTML::Template
  * CGI::FastTemplate
  * Text::Template
  * Template Toolkit
 FormBuilder can help building a complete form application with a template in
 less that 20 lines of Perl.
 .
  * Internationalized, Customizable Messaging
 FormBuilder allows customization of every single message that outputs for
 given locale.
 .
  * Simple Interface
 The author has specialized in User Interface Design.
 .
  * Extensive Documentation