Changeset 73 in text-formbuilder for trunk/lib/Text/FormBuilder/grammar


Ignore:
Timestamp:
03/16/05 13:55:22 (19 years ago)
Author:
peichman
Message:

updated Changes file
can have a hint comment on group fields (displayed after all the subfields)
'#' comments can appear at the end of lines in group field lines

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Text/FormBuilder/grammar

    r68 r73  
    152152group_name: /%[A-Z_]+/ 
    153153 
    154 field_group: name label(?) group_type 
    155     {  
     154field_group: name label(?) hint(?) group_type comment(?) 
     155    { 
     156        warn "[$thisline] comment = $item{'hint(?)'}[0]\n" if $item{'hint(?)'}[0]; 
    156157        #warn "[$thisline] field $item{name} is $item{group_type}\n"; 
    157         push @lines, [ 'group', { name => $item{name}, label => $item{'label(?)'}[0], group => $item{group_type} } ]; 
     158        push @lines, [ 'group', { 
     159            name    => $item{name}, 
     160            label   => $item{'label(?)'}[0], 
     161            comment => $item{'hint(?)'}[0], 
     162            group   => $item{group_type}, 
     163        } ]; 
    158164    } 
    159165 
Note: See TracChangeset for help on using the changeset viewer.