8
0

- updated to 0.36003

Bug rendering fields with hidden widget where label is rendered.
      Switch back to no wrapping of hidden fields.
   Fixed bug introduced in last release where rendering roles are overwritten
      by HTML::FormHandler::Render::Simple being applied on top.
   Add skip to t/config.t test for Config::Any
   Set language handle in t/render_errors.t test.
   Add two more widget tags: 'no_auto_fieldset' and 'no_compound_wrapper'
   Remove automatic addition of 'class="label"' to labels; if you want that
      behavior, add it in with form sub field_html_attributes.
   Add 'SKIP' to t/config.t test for Template.
   Update Captcha so it might actually work.
   Switch to using 'process_attrs' function to process attributes in rendering;
   *** There were lots of updates to rendering. You should verify your custom
       rendering, to make sure that nothing has broken. The '_add_html_attributes'
       method is no longer used.
   Add shorthand method for setting defaults in fields
   Add widget_tags 'label_no_colon' & 'wrapper_tag'
   Update and reorganize TT templates
   Add flags 'use_defaults_over_obj' & 'use_init_obj_over_item'
   Add 'num_extra' to Repeatable
   Update Turkish message file; add Float field
   Add lazy to 'html' attribute in Display field
   Add 'label_attr' and 'wrapper_attr' to Field
   Add 'Array' trait to field_name_space and widget_name_space
   Bug with selected/checked hash key in Multiple; switch to creating default
   Bug with repeatable contains; not using full name for accessor.
   Die if using HTML::FormHandler::Moose without HTML::FormHandler
   Field::TextArea extends Field::Text to reuse its validations (min/max length)
   Add is_html5 attribute to forms which causes forms to have the additional

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-HTML-FormHandler?expand=0&rev=13
This commit is contained in:
Stephan Kulow
2012-02-15 12:12:40 +00:00
committed by Git OBS Bridge
parent 5fff72b018
commit a94fc98a0b
4 changed files with 102 additions and 7 deletions

View File

@@ -1,3 +1,41 @@
-------------------------------------------------------------------
Wed Feb 15 12:05:40 UTC 2012 - coolo@suse.com
- updated to 0.36003
Bug rendering fields with hidden widget where label is rendered.
Switch back to no wrapping of hidden fields.
Fixed bug introduced in last release where rendering roles are overwritten
by HTML::FormHandler::Render::Simple being applied on top.
Add skip to t/config.t test for Config::Any
Set language handle in t/render_errors.t test.
Add two more widget tags: 'no_auto_fieldset' and 'no_compound_wrapper'
Remove automatic addition of 'class="label"' to labels; if you want that
behavior, add it in with form sub field_html_attributes.
Add 'SKIP' to t/config.t test for Template.
Update Captcha so it might actually work.
Switch to using 'process_attrs' function to process attributes in rendering;
*** There were lots of updates to rendering. You should verify your custom
rendering, to make sure that nothing has broken. The '_add_html_attributes'
method is no longer used.
Add shorthand method for setting defaults in fields
Add widget_tags 'label_no_colon' & 'wrapper_tag'
Update and reorganize TT templates
Add flags 'use_defaults_over_obj' & 'use_init_obj_over_item'
Add 'num_extra' to Repeatable
Update Turkish message file; add Float field
Add lazy to 'html' attribute in Display field
Add 'label_attr' and 'wrapper_attr' to Field
Add 'Array' trait to field_name_space and widget_name_space
Bug with selected/checked hash key in Multiple; switch to creating default
Bug with repeatable contains; not using full name for accessor.
Die if using HTML::FormHandler::Moose without HTML::FormHandler
Field::TextArea extends Field::Text to reuse its validations (min/max length)
Add is_html5 attribute to forms which causes forms to have the additional
HTML 5 attributes which can be used by HTML 5 capable clients for validation
-------------------------------------------------------------------
Fri Nov 18 18:32:44 UTC 2011 - coolo@suse.com