This is an automated email from the git hooks/post-receive script.

angel pushed a change to branch master
in repository libhtml-formhandler-perl.

      from  f4342ad   releasing package libhtml-formhandler-perl version 
0.40066-1
      adds  2372bfd   update messages file
      adds  b0fa47f   change order of processing 'input_without_param' and 
'use_fields_for_input_without_param' fixes problem with not using default for 
select field
      adds  ceca89f   delete description of feature that was described a little 
earlier
      adds  c7850ad   Merge pull request #119 from mjdominus/master
      adds  01c2cfe   Fix options processing and test rendering
      adds  8b943b1   Merge pull request #120 from tomhukins/fix_options
      adds  253e31b   Refer to earlier comprehensive documentation
      adds  8f0d9da   Merge pull request #121 from tomhukins/select_options_doc
      adds  631f13c   fix for deflation of undef value, from ether's pull 
request 122
      adds  7784721   switch from JSON.pm to JSON::MaybeXS
      adds  fe03f84   Merge pull request #124 from 
karenetheridge/topic/json_maybexs
      adds  c82f3ec   Text validations were being tested in input, not value!
      adds  2be81fd   Merge pull request #125 from 
karenetheridge/topic/fix_text_validation
      adds  1b1d3c5   remove meaningless VERSIONs
      adds  925d809   use coercion on 'options' instead of duplicate code in 
_load_options
      adds  d7ce62b   use [PkgVersion], insert blank lines for versions and 
remove old VERSIONs
      adds  0cae37c   fix bug in TextCSV field caused by setting error for 
multiple values in Text field
      adds  175ae39   update Changes and bump version to 0.40067
      adds  029eee8   New upstream version 0.40067
       new  82c1ce3   Merge tag 'upstream/0.40067'
       new  ba1d8e8   Update debian/changelog
       new  7863241   debian/copyright: Add upstream email.
       new  fe2c73e   debian/control: Add libjson-maybexs-perl to 
{Build}-Depends.
       new  f0eff3c   Update changelog.

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Changes                                            |  11 +
 MANIFEST                                           |   2 +
 META.json                                          |  11 +-
 META.yml                                           |  11 +-
 Makefile.PL                                        |  20 +-
 README                                             |   4 +-
 SIGNATURE                                          | 343 +++++++++++----------
 debian/changelog                                   |   8 +
 debian/control                                     |   2 +
 debian/copyright                                   |   4 +-
 dist.ini                                           |   5 +-
 lib/HTML/FormHandler.pm                            |   7 +-
 lib/HTML/FormHandler/Base.pm                       |   3 +-
 lib/HTML/FormHandler/Blocks.pm                     |   4 +-
 lib/HTML/FormHandler/BuildFields.pm                |   4 +-
 lib/HTML/FormHandler/BuildPages.pm                 |   4 +-
 lib/HTML/FormHandler/Field.pm                      |  20 +-
 lib/HTML/FormHandler/Field/AddElement.pm           |   3 +-
 lib/HTML/FormHandler/Field/BoolSelect.pm           |   4 +-
 lib/HTML/FormHandler/Field/Boolean.pm              |   5 +-
 lib/HTML/FormHandler/Field/Button.pm               |   4 +-
 lib/HTML/FormHandler/Field/Captcha.pm              |   4 +-
 lib/HTML/FormHandler/Field/Checkbox.pm             |   5 +-
 lib/HTML/FormHandler/Field/Compound.pm             |   4 +-
 lib/HTML/FormHandler/Field/Date.pm                 |   5 +-
 lib/HTML/FormHandler/Field/DateMDY.pm              |   4 +-
 lib/HTML/FormHandler/Field/DateTime.pm             |   5 +-
 lib/HTML/FormHandler/Field/Display.pm              |   4 +-
 lib/HTML/FormHandler/Field/Duration.pm             |   6 +-
 lib/HTML/FormHandler/Field/Email.pm                |   5 +-
 lib/HTML/FormHandler/Field/File.pm                 |   3 +-
 lib/HTML/FormHandler/Field/Float.pm                |   6 +-
 lib/HTML/FormHandler/Field/Hidden.pm               |   5 +-
 lib/HTML/FormHandler/Field/Hour.pm                 |   5 +-
 lib/HTML/FormHandler/Field/IntRange.pm             |   5 +-
 lib/HTML/FormHandler/Field/Integer.pm              |   5 +-
 lib/HTML/FormHandler/Field/Minute.pm               |   5 +-
 lib/HTML/FormHandler/Field/Money.pm                |   5 +-
 lib/HTML/FormHandler/Field/Month.pm                |   5 +-
 lib/HTML/FormHandler/Field/MonthDay.pm             |   5 +-
 lib/HTML/FormHandler/Field/MonthName.pm            |   5 +-
 lib/HTML/FormHandler/Field/Multiple.pm             |   4 +-
 lib/HTML/FormHandler/Field/Nested.pm               |   4 +-
 lib/HTML/FormHandler/Field/NoValue.pm              |   4 +-
 lib/HTML/FormHandler/Field/NonEditable.pm          |   4 +-
 lib/HTML/FormHandler/Field/Password.pm             |   5 +-
 lib/HTML/FormHandler/Field/PasswordConf.pm         |   5 +-
 lib/HTML/FormHandler/Field/PosInteger.pm           |   5 +-
 lib/HTML/FormHandler/Field/PrimaryKey.pm           |   4 +-
 lib/HTML/FormHandler/Field/Repeatable.pm           |   4 +-
 lib/HTML/FormHandler/Field/Repeatable/Instance.pm  |   2 +-
 lib/HTML/FormHandler/Field/Reset.pm                |   4 +-
 lib/HTML/FormHandler/Field/Result.pm               |   4 +-
 lib/HTML/FormHandler/Field/RmElement.pm            |   3 +-
 lib/HTML/FormHandler/Field/Second.pm               |   5 +-
 lib/HTML/FormHandler/Field/Select.pm               |  39 +--
 lib/HTML/FormHandler/Field/SelectCSV.pm            |   3 +-
 lib/HTML/FormHandler/Field/Submit.pm               |   4 +-
 lib/HTML/FormHandler/Field/Text.pm                 |  23 +-
 lib/HTML/FormHandler/Field/TextArea.pm             |   5 +-
 lib/HTML/FormHandler/Field/TextCSV.pm              |   3 +-
 lib/HTML/FormHandler/Field/Upload.pm               |   6 +-
 lib/HTML/FormHandler/Field/Weekday.pm              |   5 +-
 lib/HTML/FormHandler/Field/Year.pm                 |   6 +-
 lib/HTML/FormHandler/Fields.pm                     |   4 +-
 lib/HTML/FormHandler/Foo.pm                        |   3 +-
 lib/HTML/FormHandler/I18N.pm                       |   4 +-
 lib/HTML/FormHandler/I18N/ar_kw.pm                 |  12 +-
 lib/HTML/FormHandler/I18N/bg_bg.pm                 |   8 +-
 lib/HTML/FormHandler/I18N/ca_es.pm                 |   9 +-
 lib/HTML/FormHandler/I18N/cs_cz.pm                 |   8 +-
 lib/HTML/FormHandler/I18N/de_de.pm                 |   4 +-
 lib/HTML/FormHandler/I18N/en_us.pm                 |   4 +-
 lib/HTML/FormHandler/I18N/es_es.pm                 |   9 +-
 lib/HTML/FormHandler/I18N/hu_hu.pm                 |   4 +-
 lib/HTML/FormHandler/I18N/it_it.pm                 |   9 +-
 lib/HTML/FormHandler/I18N/ja_jp.pm                 |   4 +-
 lib/HTML/FormHandler/I18N/pt_br.pm                 |   8 +-
 lib/HTML/FormHandler/I18N/ru_ru.pm                 |   4 +-
 lib/HTML/FormHandler/I18N/sv_se.pm                 |   4 +-
 lib/HTML/FormHandler/I18N/tr_tr.pm                 |   8 +-
 lib/HTML/FormHandler/I18N/ua_ua.pm                 |   4 +-
 lib/HTML/FormHandler/InitResult.pm                 |   4 +-
 lib/HTML/FormHandler/Manual.pod                    |   2 +-
 lib/HTML/FormHandler/Manual/Catalyst.pod           |   2 +-
 lib/HTML/FormHandler/Manual/Cookbook.pod           |   2 +-
 lib/HTML/FormHandler/Manual/Database.pod           |   2 +-
 lib/HTML/FormHandler/Manual/Defaults.pod           |   2 +-
 lib/HTML/FormHandler/Manual/Errors.pod             |   2 +-
 lib/HTML/FormHandler/Manual/Fields.pod             |   2 +-
 lib/HTML/FormHandler/Manual/FromDFV.pod            |   2 +-
 lib/HTML/FormHandler/Manual/FromFF.pod             |   2 +-
 lib/HTML/FormHandler/Manual/InflationDeflation.pod |   2 +-
 lib/HTML/FormHandler/Manual/Intro.pod              |  12 +-
 lib/HTML/FormHandler/Manual/Reference.pod          |   2 +-
 lib/HTML/FormHandler/Manual/Rendering.pod          |   2 +-
 lib/HTML/FormHandler/Manual/RenderingCookbook.pod  |   2 +-
 lib/HTML/FormHandler/Manual/Templates.pod          |   2 +-
 lib/HTML/FormHandler/Manual/Testing.pod            |   2 +-
 lib/HTML/FormHandler/Manual/Tutorial.pod           |   2 +-
 lib/HTML/FormHandler/Manual/Validation.pod         |   2 +-
 lib/HTML/FormHandler/Merge.pm                      |   3 +-
 lib/HTML/FormHandler/Meta/Role.pm                  |   2 +-
 lib/HTML/FormHandler/Model.pm                      |   4 +-
 lib/HTML/FormHandler/Model/CDBI.pm                 |   4 +-
 lib/HTML/FormHandler/Model/Object.pm               |   4 +-
 lib/HTML/FormHandler/Moose.pm                      |   4 +-
 lib/HTML/FormHandler/Moose/Role.pm                 |   4 +-
 lib/HTML/FormHandler/Page.pm                       |   4 +-
 lib/HTML/FormHandler/Page/Simple.pm                |   4 +-
 lib/HTML/FormHandler/Pages.pm                      |   4 +-
 lib/HTML/FormHandler/Params.pm                     |   2 +-
 lib/HTML/FormHandler/Render/RepeatableJs.pm        |   5 +-
 lib/HTML/FormHandler/Render/Simple.pm              |   6 +-
 lib/HTML/FormHandler/Render/Table.pm               |   4 +-
 lib/HTML/FormHandler/Render/Util.pm                |   3 +-
 lib/HTML/FormHandler/Render/WithTT.pm              |   4 +-
 lib/HTML/FormHandler/Result.pm                     |   4 +-
 lib/HTML/FormHandler/Result/Role.pm                |   4 +-
 lib/HTML/FormHandler/Test.pm                       |   3 +-
 lib/HTML/FormHandler/TraitFor/Captcha.pm           |   4 +-
 lib/HTML/FormHandler/TraitFor/I18N.pm              |   4 +-
 lib/HTML/FormHandler/TraitFor/Types.pm             |   5 +-
 lib/HTML/FormHandler/Traits.pm                     |   3 +-
 lib/HTML/FormHandler/Types.pm                      |   6 +-
 lib/HTML/FormHandler/Validate.pm                   |   4 +-
 lib/HTML/FormHandler/Widget/ApplyRole.pm           |   4 +-
 lib/HTML/FormHandler/Widget/Block.pm               |   4 +-
 lib/HTML/FormHandler/Widget/Block/Bootstrap.pm     |   3 +-
 lib/HTML/FormHandler/Widget/Field/Button.pm        |   3 +-
 lib/HTML/FormHandler/Widget/Field/ButtonTag.pm     |   4 +-
 lib/HTML/FormHandler/Widget/Field/Captcha.pm       |   3 +-
 lib/HTML/FormHandler/Widget/Field/Checkbox.pm      |   3 +-
 lib/HTML/FormHandler/Widget/Field/CheckboxGroup.pm |   4 +-
 lib/HTML/FormHandler/Widget/Field/Compound.pm      |   3 +-
 lib/HTML/FormHandler/Widget/Field/Hidden.pm        |   3 +-
 .../FormHandler/Widget/Field/HorizCheckboxGroup.pm |   4 +-
 lib/HTML/FormHandler/Widget/Field/NoRender.pm      |   3 +-
 lib/HTML/FormHandler/Widget/Field/Password.pm      |   3 +-
 lib/HTML/FormHandler/Widget/Field/RadioGroup.pm    |   3 +-
 lib/HTML/FormHandler/Widget/Field/Repeatable.pm    |   3 +-
 lib/HTML/FormHandler/Widget/Field/Reset.pm         |   3 +-
 .../Widget/Field/Role/HTMLAttributes.pm            |   4 +-
 .../Widget/Field/Role/SelectedOption.pm            |   4 +-
 lib/HTML/FormHandler/Widget/Field/Select.pm        |   4 +-
 lib/HTML/FormHandler/Widget/Field/Span.pm          |   4 +-
 lib/HTML/FormHandler/Widget/Field/Submit.pm        |   3 +-
 lib/HTML/FormHandler/Widget/Field/Text.pm          |   3 +-
 lib/HTML/FormHandler/Widget/Field/Textarea.pm      |   4 +-
 lib/HTML/FormHandler/Widget/Field/Upload.pm        |   3 +-
 .../FormHandler/Widget/Form/Role/HTMLAttributes.pm |   4 +-
 lib/HTML/FormHandler/Widget/Form/Simple.pm         |   5 +-
 lib/HTML/FormHandler/Widget/Form/Table.pm          |   4 +-
 lib/HTML/FormHandler/Widget/Theme/Bootstrap.pm     |   4 +-
 lib/HTML/FormHandler/Widget/Theme/Bootstrap3.pm    |   4 +-
 .../Widget/Theme/BootstrapFormMessages.pm          |   4 +-
 lib/HTML/FormHandler/Widget/Wrapper/Base.pm        |   4 +-
 lib/HTML/FormHandler/Widget/Wrapper/Bootstrap.pm   |   4 +-
 lib/HTML/FormHandler/Widget/Wrapper/Bootstrap3.pm  |   4 +-
 lib/HTML/FormHandler/Widget/Wrapper/Fieldset.pm    |   4 +-
 lib/HTML/FormHandler/Widget/Wrapper/None.pm        |   4 +-
 lib/HTML/FormHandler/Widget/Wrapper/Simple.pm      |   4 +-
 .../FormHandler/Widget/Wrapper/SimpleInline.pm     |   4 +-
 lib/HTML/FormHandler/Widget/Wrapper/Table.pm       |   4 +-
 lib/HTML/FormHandler/Widget/Wrapper/TableInline.pm |   4 +-
 lib/HTML/FormHandler/Wizard.pm                     |   4 +-
 t/author-eol.t                                     |   5 +-
 t/fields/select.t                                  |   9 +-
 t/fields/textcsv.t                                 |   1 +
 t/form_setup/api.t                                 |  11 +
 t/infl_defl/undef_deflation.t                      |  35 +++
 t/release-no-tabs.t                                |   4 +-
 util/messages                                      | 227 +++++++-------
 173 files changed, 716 insertions(+), 707 deletions(-)
 create mode 100644 t/infl_defl/undef_deflation.t

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libhtml-formhandler-perl.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to