Noticed this while reading source - I don't know if it has any impact on running code - I'm still marveling too much to write anything...

--- FormFu.pm.395       Tue Sep 18 21:11:57 2007
+++ FormFu.pm.395_      Tue Sep 18 21:38:11 2007
@@ -82,7 +82,7 @@

 __PACKAGE__->mk_get_one_methods(
     qw/
-        deflator filter constraint inflator validator tranformer /
+        deflator filter constraint inflator validator transformer /
 );

 *elements          = \&element;


That's the bare fix, though I'd think it nice to emphasize the parallel declarations of these five mk_* calls in row, thus:

--- FormFu.pm.395       Tue Sep 18 21:11:57 2007
+++ FormFu.pm   Tue Sep 18 21:35:46 2007
@@ -61,8 +61,8 @@

 __PACKAGE__->mk_add_methods(
     qw/
-        element deflator filter constraint inflator validator transformer
-        output_processor /
+        deflator filter constraint inflator validator transformer
+        output_processor element /
 );

 __PACKAGE__->mk_single_methods(
@@ -72,7 +72,8 @@

 __PACKAGE__->mk_require_methods(
     qw/
-        deflator filter inflator validator transformer output_processor /
+        deflator filter            inflator validator transformer
+               output_processor /
 );

 __PACKAGE__->mk_get_methods(
@@ -82,7 +83,7 @@

 __PACKAGE__->mk_get_one_methods(
     qw/
-        deflator filter constraint inflator validator tranformer /
+        deflator filter constraint inflator validator transformer /
 );

 *elements          = \&element;

_______________________________________________
HTML-FormFu mailing list
HTML-FormFu@lists.scsys.co.uk
http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/html-formfu

Reply via email to