http://www.perlmonks.org?node_id=80957


in reply to proposal for HTML::FormValidator upgrade

I have now prepared a patch to the code and POD of HTML::FormValidator with the following changes. I would appreciate your review and feedback of these changes. The patched module can be downloaded here:

http://mark.stosberg.com/tech/perl/form-validation/FormValidator.pm

Changes:

I have tested all my changes, but I would appreciate your reality checks as well.

I have a few more features I'd like to add to round out support for dynamic form field generation, but I thought it would be good to send this version out for review already. Here are the features I want to add:

require_suffixes
optional_suffixes
require_prefixes
optional_prefixes
require_regex
optional_regex

The basic idea to specific whether some fields are required or optional based on there suffix, prefix, or a regular expression.

-mark