Next | Query returned 36 messages, browsing 21 to 30 | Previous

History of commit frequency

CVS Commit History:


   2014-11-06 07:57:48 by Wen Heping | Files touched by this commit (2) | Package updated
Log message:
Update to 2.01

Upstream changes:
2.01 2014-05-05

    - Avoid uninitialized warning

2.00 2014-04-11

    - New layout() method for customizing output of fields.
      Any custom elements which override string() will likely need modified.

    - Deprecated: reverse_single() and reverse_multi() are deprecated,
      and warn when used.
      If the new layout() is used, and there is no simple way to replicate
      the behaviour, these methods will have no affect.

    - TT template files changed - update them if you use a local copy.
      Files updated: field
      New files: field_layout, field_layout_block,
        field_layout_checkboxgroup_field, field_layout_comment,
        field_layout_contentbutton_field, field_layout_errors,
        field_layout_field, field_layout_javascript, field_layout_label,
        field_layout_label_field, field_layout_label_text,
        field_layout_multi_field, field_layout_parser,
        field_layout_select_field, field_layout_textarea_field.
      Files deleted due to layout() changes: checkboxgroup_tag,
        content_button, errors, input, input_tag, label, label_element,
        multi, select_tag, textarea_tag
      Unused files deleted: checkboxgroup.

    - New Filter::ForceListValue addresses rt bug #90813

    - render_label() and render_field() no longer require TT.
      Include render_label() in tests.

    - Fix typo in I18N::ja (Yusuke Watase).

    - Bundle our own (renamed) copy of MooseX::Attribute::Chained to avoid
      warnings under perl 5.19.x
   2014-10-09 16:07:17 by Thomas Klausner | Files touched by this commit (1163)
Log message:
Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.
   2014-05-31 14:56:55 by Thomas Klausner | Files touched by this commit (15)
Log message:
Don't expect perl to provide p5-Module-Pluggable (removed in 5.20).
Bump PKGREVISION.
   2014-05-30 01:38:20 by Thomas Klausner | Files touched by this commit (3049)
Log message:
Bump for perl-5.20.0.
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
   2014-02-24 04:09:51 by Wen Heping | Files touched by this commit (1)
Log message:
Fix build by add missing DEPENDS
Spotted by joerg@(Thanks !)
   2014-02-23 12:32:17 by Wen Heping | Files touched by this commit (2) | Package updated
Log message:
Update to 1.00
Add missing DEPENDS

Upstream changes:
1.00 2013-12-16

    - TT template files changed - update them if you use a local copy.
      Template file 'label_tag' renamed to 'label_element' - old file can
      be deleted. 'field' file changed. New 'errors' file.

    - TT no longer listed as a prerequisite. If you use the TT files,
      you must add 'Template' to your own app's prereqs.

    - Element::reCAPTCHA and Constraint::reCAPTCHA moved out to separate
      distribution.

    - HTML::FormFu::MultiForm moved out to separate distribution.

    - auto_container_class(), auto_label_class(), auto_comment_class(),
      auto_container_error_class(), auto_container_per_error_class(),
      auto_error_class() no longer have default values.
      See "RESTORING LEGACY HTML CLASSES" in HTML::FormFu docs to restore
      previous behaviour.

    - auto_label_class() no longer adds class to container.
      auto_label_class() now adds class to label tag.
      new auto_container_label_class() adds class to container.
      See "RESTORING LEGACY HTML CLASSES" in HTML::FormFu docs to restore
      previous behaviour.

    - auto_comment_class() no longer adds class to both container and comment.
      auto_comment_class() now only adds class to comment tag.
      new auto_container_comment_class() adds class to container.
      See "RESTORING LEGACY HTML CLASSES" in HTML::FormFu docs to restore
      previous behaviour.

    - Bug fix: param_value() form method now matches documented behaviour -
      returns undef when field has errors. (Reported by Hailin Hu).

    - New Element::Email and Element::URL HTML5 input fields.

    - Role::Element::Input has new datalist_options(), datalist_values(),
      datalist_id() and auto_datalist_id() methods to support HTML5 datalists.
      auto_datalist_id() is an inherited accessor which can be set on the
      Form, MultiForm, or Block.

    - Form and Elements has new title() attribute short-cut.

    - Constraint::Regex has new anchored() accessor.

    - New Input attribute accessors: placeholder(), pattern(), autocomplete().

    - New Input boolean attribute accessors: autofocus(), multiple(), required().

    - New Field inherited accessors: auto_container_per_error_class(),
      auto_error_container_class(), auto_error_container_per_error_class(),
      error_tag(), error_container_tag

    - Constraints have new experimental method fetch_error_message().

    - All field elements have new method error_filename().

    - default_args() now supports 'Block', 'Field', 'Input' pseudo-elements,
      '|' alternatives, and '+' and '-' ancestor modifiers.

    - New Czech (cs) I18N translation by Jan Grmela.

    - mk_inherited_accessors() now also creates a *_no_inherit() method.

    - Experimental new roles() form method.

    - form methods start(), end() now respect render_method - no longer
      force use of tt templates.

    - Bug fix: del_attribute() on empty attribute no longer sets the attribute.

    - All attribute accessors generated with mk_attrs() now have *_loc variants.

    - form methods start(), end() now respect render_method - no longer
      force use of tt templates.

    - Tests now always require Test::Aggregate::Nested.
      Re-enable aggregate tests on Win32.
      Don't run all tests twice under both aggregate and t/ (doh!)
   2013-10-27 14:31:04 by Wen Heping | Files touched by this commit (2) | Package updated
Log message:
Update to 0.09010
Update DEPENDS

Upstream changes:
0.09010 2012-10-05

    - Internal changes - all Repeatable/nested_name munging is moved out of
      HTML::FormFu::Element::Repeatable into individual constraints

0.09009 2012-09-29
    - Make sure object can('checked') before calling checked() (colinnewell)
    - Updated Repeatable control to update id_field on DBIC::Unique if present
    - Added support for arbitrary elements within Multi blocks so that they
      don't need to support methods like _striing_field and label etc.
    - ComboBox new get_select_field_nested_name(), get_text_field_nested_name()
      accessors.
    - Fieldset new legend_attributes() method.
    - New form_error_message_class() method.
    - Constraint 'when' callback now receives $constraint as 2nd argument.

0.09007 2012-01-23
    - bump MooseX::Attribute::Chained version

0.09006 2012-01-23
    - fixed deprecation warnings of MX::Attribute::Chained (bricas)
    - Added placeholder attributes for types Text and Textarea with L10N support.
    - Added L10N support for 'prefix' attributes for types Date and DateTime.
    - Added 'attributes' support to types Date and DateTime.
   2013-05-31 14:42:58 by Thomas Klausner | Files touched by this commit (2880)
Log message:
Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package

Like last time, where this caused no complaints.
   2012-10-28 07:31:10 by Aleksej Saushev | Files touched by this commit (600)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
   2012-10-03 23:59:10 by Thomas Klausner | Files touched by this commit (2798)
Log message:
Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.

Next | Query returned 36 messages, browsing 21 to 30 | Previous