From ba7e78982843d634b2ae1f095491d2d81b0fb106 Mon Sep 17 00:00:00 2001 From: Dean Hamstead Date: Fri, 3 Feb 2017 01:14:21 +1100 Subject: [PATCH 1/8] Move use strict so that perlcritic is happy, enable PkgVersion. Remove # VERSION. --- lib/HTML/FormFu/Validator.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/HTML/FormFu/Validator.pm b/lib/HTML/FormFu/Validator.pm index 9355799c..58a497e1 100644 --- a/lib/HTML/FormFu/Validator.pm +++ b/lib/HTML/FormFu/Validator.pm @@ -1,5 +1,4 @@ -use strict; - +#!perl package HTML::FormFu::Validator; # ABSTRACT: Validator Base Class From cb5b27ff76fbbbbf26eeaad30c0388112bca0ee6 Mon Sep 17 00:00:00 2001 From: Kivanc Yazan Date: Sun, 16 Oct 2016 19:02:43 -0700 Subject: [PATCH 2/8] Turkish translation --- lib/HTML/FormFu/I18N/tr.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/HTML/FormFu/I18N/tr.pm b/lib/HTML/FormFu/I18N/tr.pm index 64b476bd..58fd39a8 100644 --- a/lib/HTML/FormFu/I18N/tr.pm +++ b/lib/HTML/FormFu/I18N/tr.pm @@ -1,5 +1,4 @@ -use strict; - +#!perl package HTML::FormFu::I18N::tr; # ABSTRACT: Turkish From b4cb91724339f2191710c785f9b83e9754b3e312 Mon Sep 17 00:00:00 2001 From: Dean Hamstead Date: Sun, 7 May 2017 15:31:52 +1000 Subject: [PATCH 3/8] Update README file links etc --- README.pod | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.pod b/README.pod index a22da10c..655cc523 100644 --- a/README.pod +++ b/README.pod @@ -4,7 +4,7 @@ =head1 NAME -HTML::FormFu - HTML Form Creation, Rendering and Validation Framework +HTML::FormFu =head1 VERSION @@ -121,6 +121,10 @@ This documentation follows the convention that method arguments surrounded by square brackets C<[]> are I, and all other arguments are required. +=head1 NAME + +HTML::FormFu - HTML Form Creation, Rendering and Validation Framework + =head1 BUILDING A FORM =head2 new From a24edc00bc6c9c39f258a8f3736ce5bf3e9c7229 Mon Sep 17 00:00:00 2001 From: Dean Hamstead Date: Sat, 24 Mar 2018 18:57:51 +1100 Subject: [PATCH 4/8] Update README --- README.pod | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/README.pod b/README.pod index 655cc523..a9ba37cf 100644 --- a/README.pod +++ b/README.pod @@ -2,14 +2,6 @@ =encoding UTF-8 -=head1 NAME - -HTML::FormFu - -=head1 VERSION - -version 2.08 - =head1 SYNOPSIS Note: These examples make use of L. As of @@ -121,10 +113,6 @@ This documentation follows the convention that method arguments surrounded by square brackets C<[]> are I, and all other arguments are required. -=head1 NAME - -HTML::FormFu - HTML Form Creation, Rendering and Validation Framework - =head1 BUILDING A FORM =head2 new From c246a268f62f1895d36f857a75354d2fc8f0c6fd Mon Sep 17 00:00:00 2001 From: Dean Hamstead Date: Sat, 24 Mar 2018 23:39:02 +1100 Subject: [PATCH 5/8] Fixes for various perl testing --- README.pod | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.pod b/README.pod index a9ba37cf..b5b64b43 100644 --- a/README.pod +++ b/README.pod @@ -2,6 +2,14 @@ =encoding UTF-8 +=head1 NAME + +HTML::FormFu - HTML Form Creation, Rendering and Validation Framework + +=head1 VERSION + +version 2.06 + =head1 SYNOPSIS Note: These examples make use of L. As of From ddcd81a4d08ad50f68b97a3f6365b0a33714931a Mon Sep 17 00:00:00 2001 From: Dean Hamstead Date: Mon, 26 Mar 2018 00:42:44 +1100 Subject: [PATCH 6/8] Add Devel::Cover for COVERAGE --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index e69497ac..d67c005a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,5 +39,6 @@ before_install: install: - perl -M5.014 -e1 2>/dev/null || cpan-install Dist::Zilla@5.047 - cpan-install --deps + - if [ "$COVERAGE" ]; then cpanm Devel::Cover; fi # end From d265657b09fb41e0481503c7075bd9c4188d0f9c Mon Sep 17 00:00:00 2001 From: Dean Hamstead Date: Mon, 26 Mar 2018 20:23:53 +1100 Subject: [PATCH 7/8] COVERAGE testing takes too long for travis --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d67c005a..d6f3a673 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,9 +28,9 @@ matrix: allow_failures: - perl: blead # ignore failures for blead perl fast_finish: true - include: - - perl: "5.20" - env: COVERAGE=1 # enables coverage+coveralls reporting + # include: # takes too long for travis + # - perl: "5.20" + # env: COVERAGE=1 # enables coverage+coveralls reporting before_install: - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers From 89fc9ae3032623f5a77bc35fb9651d38e1f53d55 Mon Sep 17 00:00:00 2001 From: Dean Hamstead Date: Mon, 26 Mar 2018 09:27:07 +1100 Subject: [PATCH 8/8] That should get all the devel cover deps we need (hopefully) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d6f3a673..88900646 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,6 +39,6 @@ before_install: install: - perl -M5.014 -e1 2>/dev/null || cpan-install Dist::Zilla@5.047 - cpan-install --deps - - if [ "$COVERAGE" ]; then cpanm Devel::Cover; fi + - if [ "$COVERAGE" ]; then cpanm Devel::Cover::Report::Coveralls ; fi # end