[Jifty-commit] r2124 - in jifty/trunk: lib/Jifty/Web/Form

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Thu Nov 9 13:46:38 EST 2006


Author: schwern
Date: Thu Nov  9 13:46:35 2006
New Revision: 2124

Modified:
   jifty/trunk/   (props changed)
   jifty/trunk/lib/Jifty/Web/Form/Field.pm

Log:
 r25455 at windhund:  schwern | 2006-11-09 13:45:49 -0500
 Revert merging the properties list in the Jifty::Web::Form::Field POD into
 the list of generated accessors.


Modified: jifty/trunk/lib/Jifty/Web/Form/Field.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Web/Form/Field.pm	(original)
+++ jifty/trunk/lib/Jifty/Web/Form/Field.pm	Thu Nov  9 13:46:35 2006
@@ -1,3 +1,25 @@
+=begin properties
+
+constructor
+canonicalizer
+available_values
+ajax_validates
+autocompleter
+
+default_value
+valid_values
+validator
+render_as
+label
+hints
+placeholder
+length
+mandatory
+
+=end properties
+
+=cut
+
 use warnings;
 use strict;
  
@@ -83,41 +105,27 @@
 =cut
 
 use constant ACCESSORS => qw(
-  ajax_canonicalizes
-  ajax_validates
-
-  constructor
-  canonicalizer
-  validator
-  autocompleter
-
-  available_values
-  default_value
-  valid_values
-
-  render_as
-  render_mode
-
   name
-  input_name
   label
-
+  input_name
   type
-
   sticky
   sticky_value
-
-  hints
-  placeholder
-  length
-  mandatory
+  default_value
   action
+  mandatory
+  ajax_validates
+  ajax_canonicalizes
+  autocompleter
   preamble
+  hints
+  placeholder
   focus
+  render_mode
+  length
   element_id
 );
 
-
 sub accessors { shift->SUPER::accessors(), ACCESSORS }
 __PACKAGE__->mk_accessors(ACCESSORS);
 


More information about the Jifty-commit mailing list