[libhtml-formhandler-perl] branch master updated (ffc6b60 -> f4342ad)

gregor herrmann gregoa at debian.org
Sun Sep 11 17:47:05 UTC 2016


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

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

      from  ffc6b60   update changelog
      adds  3f169fd   Ensure Text fields only contain a single value
      adds  cd062f0   Merge pull request #110 from tomhukins/text_field_single_value
      adds  021fd3b   Select field specifiction improvement
      adds  25ff822   Merge pull request #111 from tomhukins/select_options
      adds  57c547b   Fix an incorrectly documented class name
      adds  6618c9f   Document a method's syntax correctly
      adds  7427f1d   Merge pull request #109 from tomhukins/minor_doc_fixes
      adds  6220996   Add a README.md file
      adds  3c2a01d   Merge pull request #101 from jluis/master
      adds  3e79ab9   bump version to 0.40065
      adds  d02fe16   Improve Select field option list support
      adds  9e674e9   Fix a typo
      adds  ab603cf   Merge pull request #113 from tomhukins/select_option_sub
      adds  214f6ff   Add comma digit grouping and custom currency symbol
      adds  1343ed1   Test special cases of input for money field
      adds  308076c   fixed up test names
      adds  7b1d9ec   Add POD for currency_symbol and allow_commas attributes for Money field
      adds  1130364   Merge pull request #117 from abc-mikey/master
      adds  f7a2b02   Allow input_append_button to take input_append_button_element_class
      adds  8b27602   Allow attributes to be specified for input_append_button
      adds  50545fe   Merge pull request #116 from lilphil/master
      adds  b6ca969   included POD to document options_ref() method with Template Toolkit for select fields
      adds  07f4eb2   Merge pull request #115 from Edward-Francis/ed/included_comment_regarding_options_ref
      adds  95a7e82   Fix typo in url
      adds  3087b1c   Merge pull request #114 from rouzier/fix-typo
      adds  d55d3d2   Add init_contains to Repeatable doc
      adds  3129862   Merge pull request #112 from Altreus/master
      adds  9799848   bump version to 0.40066
      adds  a957f25   remove spaces at eol
      adds  4f0f83e   New upstream version 0.40066
       new  2b6baa3   Merge tag 'upstream/0.40066'
       new  51ce24b   Update debian/changelog
       new  d29c35b   Update years of packaging copyright.
       new  e725f51   autopkgtest: activate more smoke tests.
       new  f4342ad   releasing package libhtml-formhandler-perl version 0.40066-1

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                                            |   9 +
 META.json                                          |   2 +-
 META.yml                                           |   2 +-
 Makefile.PL                                        |   2 +-
 README                                             |   2 +-
 SIGNATURE                                          | 332 ++++++++++-----------
 debian/changelog                                   |   8 +-
 debian/copyright                                   |   2 +-
 debian/tests/pkg-perl/smoke-files                  |   2 +
 debian/tests/pkg-perl/smoke-tests                  |   2 +
 dist.ini                                           |   2 +-
 lib/HTML/FormHandler.pm                            |   4 +-
 lib/HTML/FormHandler/Base.pm                       |   2 +-
 lib/HTML/FormHandler/Blocks.pm                     |   2 +-
 lib/HTML/FormHandler/BuildFields.pm                |   2 +-
 lib/HTML/FormHandler/BuildPages.pm                 |   2 +-
 lib/HTML/FormHandler/Field.pm                      |   2 +-
 lib/HTML/FormHandler/Field/AddElement.pm           |   2 +-
 lib/HTML/FormHandler/Field/BoolSelect.pm           |   2 +-
 lib/HTML/FormHandler/Field/Boolean.pm              |   2 +-
 lib/HTML/FormHandler/Field/Button.pm               |   2 +-
 lib/HTML/FormHandler/Field/Captcha.pm              |   2 +-
 lib/HTML/FormHandler/Field/Checkbox.pm             |   2 +-
 lib/HTML/FormHandler/Field/Compound.pm             |   2 +-
 lib/HTML/FormHandler/Field/Date.pm                 |   2 +-
 lib/HTML/FormHandler/Field/DateMDY.pm              |   2 +-
 lib/HTML/FormHandler/Field/DateTime.pm             |   2 +-
 lib/HTML/FormHandler/Field/Display.pm              |   2 +-
 lib/HTML/FormHandler/Field/Duration.pm             |   2 +-
 lib/HTML/FormHandler/Field/Email.pm                |   2 +-
 lib/HTML/FormHandler/Field/File.pm                 |   2 +-
 lib/HTML/FormHandler/Field/Float.pm                |   2 +-
 lib/HTML/FormHandler/Field/Hidden.pm               |   2 +-
 lib/HTML/FormHandler/Field/Hour.pm                 |   2 +-
 lib/HTML/FormHandler/Field/IntRange.pm             |   2 +-
 lib/HTML/FormHandler/Field/Integer.pm              |   2 +-
 lib/HTML/FormHandler/Field/Minute.pm               |   2 +-
 lib/HTML/FormHandler/Field/Money.pm                |  69 ++++-
 lib/HTML/FormHandler/Field/Month.pm                |   2 +-
 lib/HTML/FormHandler/Field/MonthDay.pm             |   2 +-
 lib/HTML/FormHandler/Field/MonthName.pm            |   2 +-
 lib/HTML/FormHandler/Field/Multiple.pm             |   2 +-
 lib/HTML/FormHandler/Field/Nested.pm               |   2 +-
 lib/HTML/FormHandler/Field/NoValue.pm              |   2 +-
 lib/HTML/FormHandler/Field/NonEditable.pm          |   2 +-
 lib/HTML/FormHandler/Field/Password.pm             |   2 +-
 lib/HTML/FormHandler/Field/PasswordConf.pm         |   2 +-
 lib/HTML/FormHandler/Field/PosInteger.pm           |   2 +-
 lib/HTML/FormHandler/Field/PrimaryKey.pm           |   2 +-
 lib/HTML/FormHandler/Field/Repeatable.pm           |  21 +-
 lib/HTML/FormHandler/Field/Repeatable/Instance.pm  |   2 +-
 lib/HTML/FormHandler/Field/Reset.pm                |   2 +-
 lib/HTML/FormHandler/Field/Result.pm               |   2 +-
 lib/HTML/FormHandler/Field/RmElement.pm            |   2 +-
 lib/HTML/FormHandler/Field/Second.pm               |   2 +-
 lib/HTML/FormHandler/Field/Select.pm               |  18 +-
 lib/HTML/FormHandler/Field/SelectCSV.pm            |   2 +-
 lib/HTML/FormHandler/Field/Submit.pm               |   2 +-
 lib/HTML/FormHandler/Field/Text.pm                 |   2 +-
 lib/HTML/FormHandler/Field/TextArea.pm             |   2 +-
 lib/HTML/FormHandler/Field/TextCSV.pm              |   2 +-
 lib/HTML/FormHandler/Field/Upload.pm               |   2 +-
 lib/HTML/FormHandler/Field/Weekday.pm              |   2 +-
 lib/HTML/FormHandler/Field/Year.pm                 |   2 +-
 lib/HTML/FormHandler/Fields.pm                     |   2 +-
 lib/HTML/FormHandler/Foo.pm                        |   2 +-
 lib/HTML/FormHandler/I18N.pm                       |   2 +-
 lib/HTML/FormHandler/I18N/ar_kw.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/bg_bg.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/ca_es.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/cs_cz.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/de_de.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/en_us.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/es_es.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/hu_hu.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/it_it.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/ja_jp.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/pt_br.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/ru_ru.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/sv_se.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/tr_tr.pm                 |   2 +-
 lib/HTML/FormHandler/I18N/ua_ua.pm                 |   2 +-
 lib/HTML/FormHandler/InitResult.pm                 |   2 +-
 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              |   2 +-
 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                      |   2 +-
 lib/HTML/FormHandler/Meta/Role.pm                  |   2 +-
 lib/HTML/FormHandler/Model.pm                      |   2 +-
 lib/HTML/FormHandler/Model/CDBI.pm                 |   2 +-
 lib/HTML/FormHandler/Model/Object.pm               |   2 +-
 lib/HTML/FormHandler/Moose.pm                      |   2 +-
 lib/HTML/FormHandler/Moose/Role.pm                 |   2 +-
 lib/HTML/FormHandler/Page.pm                       |   2 +-
 lib/HTML/FormHandler/Page/Simple.pm                |   2 +-
 lib/HTML/FormHandler/Pages.pm                      |   2 +-
 lib/HTML/FormHandler/Params.pm                     |   2 +-
 lib/HTML/FormHandler/Render/RepeatableJs.pm        |   2 +-
 lib/HTML/FormHandler/Render/Simple.pm              |   2 +-
 lib/HTML/FormHandler/Render/Table.pm               |   2 +-
 lib/HTML/FormHandler/Render/Util.pm                |   2 +-
 lib/HTML/FormHandler/Render/WithTT.pm              |   2 +-
 lib/HTML/FormHandler/Result.pm                     |   2 +-
 lib/HTML/FormHandler/Result/Role.pm                |   2 +-
 lib/HTML/FormHandler/Test.pm                       |   2 +-
 lib/HTML/FormHandler/TraitFor/Captcha.pm           |   2 +-
 lib/HTML/FormHandler/TraitFor/I18N.pm              |   2 +-
 lib/HTML/FormHandler/TraitFor/Types.pm             |   2 +-
 lib/HTML/FormHandler/Traits.pm                     |   2 +-
 lib/HTML/FormHandler/Types.pm                      |   2 +-
 lib/HTML/FormHandler/Validate.pm                   |   2 +-
 lib/HTML/FormHandler/Widget/ApplyRole.pm           |   2 +-
 lib/HTML/FormHandler/Widget/Block.pm               |   2 +-
 lib/HTML/FormHandler/Widget/Block/Bootstrap.pm     |   2 +-
 lib/HTML/FormHandler/Widget/Field/Button.pm        |   2 +-
 lib/HTML/FormHandler/Widget/Field/ButtonTag.pm     |   2 +-
 lib/HTML/FormHandler/Widget/Field/Captcha.pm       |   2 +-
 lib/HTML/FormHandler/Widget/Field/Checkbox.pm      |   2 +-
 lib/HTML/FormHandler/Widget/Field/CheckboxGroup.pm |   2 +-
 lib/HTML/FormHandler/Widget/Field/Compound.pm      |   2 +-
 lib/HTML/FormHandler/Widget/Field/Hidden.pm        |   2 +-
 .../FormHandler/Widget/Field/HorizCheckboxGroup.pm |   2 +-
 lib/HTML/FormHandler/Widget/Field/NoRender.pm      |   2 +-
 lib/HTML/FormHandler/Widget/Field/Password.pm      |   2 +-
 lib/HTML/FormHandler/Widget/Field/RadioGroup.pm    |   2 +-
 lib/HTML/FormHandler/Widget/Field/Repeatable.pm    |   2 +-
 lib/HTML/FormHandler/Widget/Field/Reset.pm         |   2 +-
 .../Widget/Field/Role/HTMLAttributes.pm            |   2 +-
 .../Widget/Field/Role/SelectedOption.pm            |   2 +-
 lib/HTML/FormHandler/Widget/Field/Select.pm        |   2 +-
 lib/HTML/FormHandler/Widget/Field/Span.pm          |   2 +-
 lib/HTML/FormHandler/Widget/Field/Submit.pm        |   2 +-
 lib/HTML/FormHandler/Widget/Field/Text.pm          |   2 +-
 lib/HTML/FormHandler/Widget/Field/Textarea.pm      |   2 +-
 lib/HTML/FormHandler/Widget/Field/Upload.pm        |   2 +-
 .../FormHandler/Widget/Form/Role/HTMLAttributes.pm |   2 +-
 lib/HTML/FormHandler/Widget/Form/Simple.pm         |   2 +-
 lib/HTML/FormHandler/Widget/Form/Table.pm          |   2 +-
 lib/HTML/FormHandler/Widget/Theme/Bootstrap.pm     |   4 +-
 lib/HTML/FormHandler/Widget/Theme/Bootstrap3.pm    |   2 +-
 .../Widget/Theme/BootstrapFormMessages.pm          |   2 +-
 lib/HTML/FormHandler/Widget/Wrapper/Base.pm        |   2 +-
 lib/HTML/FormHandler/Widget/Wrapper/Bootstrap.pm   |   2 +-
 lib/HTML/FormHandler/Widget/Wrapper/Bootstrap3.pm  |  12 +-
 lib/HTML/FormHandler/Widget/Wrapper/Fieldset.pm    |   2 +-
 lib/HTML/FormHandler/Widget/Wrapper/None.pm        |   2 +-
 lib/HTML/FormHandler/Widget/Wrapper/Simple.pm      |   2 +-
 .../FormHandler/Widget/Wrapper/SimpleInline.pm     |   2 +-
 lib/HTML/FormHandler/Widget/Wrapper/Table.pm       |   2 +-
 lib/HTML/FormHandler/Widget/Wrapper/TableInline.pm |   2 +-
 lib/HTML/FormHandler/Wizard.pm                     |   2 +-
 t/fields/fields.t                                  |  22 +-
 t/fields/select.t                                  |  17 +-
 168 files changed, 480 insertions(+), 350 deletions(-)
 create mode 100644 debian/tests/pkg-perl/smoke-files
 create mode 100644 debian/tests/pkg-perl/smoke-tests

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



More information about the Pkg-perl-cvs-commits mailing list