Changeset 55 in text-formbuilder for trunk/lib/Text
- Timestamp:
- 01/13/05 14:32:57 (20 years ago)
- Location:
- trunk/lib/Text
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Text/FormBuilder.pm
r53 r55 7 7 use vars qw($VERSION @EXPORT); 8 8 9 $VERSION = '0.0 8';9 $VERSION = '0.09_01'; 10 10 @EXPORT = qw(create_form); 11 11 -
trunk/lib/Text/FormBuilder/grammar
r50 r55 191 191 hint: '[' /[^\]]+/ ']' { $item[2] } 192 192 193 type: ':' /textarea|text|password|file|checkbox|radio|select|hidden|static/ 193 # TODO: differentiate between builtins and custom field groups 194 type: ':' ( builtin_field | var_name { warn "[Text::FormBuilder] Using field group names directly is not (yet) supported (input line $thisline)\n"; 'text' } ) 195 196 builtin_field: /textarea|text|password|file|checkbox|radio|select|hidden|static/ 197 194 198 195 199 default: '=' (simple_multiword | quoted_string) { $item[2] }
Note: See TracChangeset
for help on using the changeset viewer.