/[Frey]/trunk/lib/Frey/Action.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/Frey/Action.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 509 by dpavlin, Tue Nov 25 01:00:16 2008 UTC revision 595 by dpavlin, Fri Nov 28 17:18:56 2008 UTC
# Line 125  sub params_form { Line 125  sub params_form {
125                  my $attr = $class->meta->get_attribute( $name );                  my $attr = $class->meta->get_attribute( $name );
126                  $attr_type = $attr->type_constraint->name if $attr->has_type_constraint;                  $attr_type = $attr->type_constraint->name if $attr->has_type_constraint;
127    
128                    $value = $attr->default( $name ) if ! $value && $attr->has_default;
129    
130                  if ( ref($config_params) eq 'HASH' ) {                  if ( ref($config_params) eq 'HASH' ) {
131                          $value = $config_params->{$name};                          $value = $config_params->{$name};
132                  } elsif ( ref($config_params) eq 'ARRAY' ) {                  } elsif ( ref($config_params) eq 'ARRAY' ) {
# Line 136  sub params_form { Line 138  sub params_form {
138                                  $value_html = qq|<textarea name="$name" title="$attr_type">$value</textarea>|;                                  $value_html = qq|<textarea name="$name" title="$attr_type">$value</textarea>|;
139                  }                  }
140                                    
                 $value = $attr->default( $name ) if ! $value && $attr->has_default;  
141                  $label_title = qq| title="| . $attr->documentation . qq|"| if $attr->has_documentation;                  $label_title = qq| title="| . $attr->documentation . qq|"| if $attr->has_documentation;
142    
143                  $default->{$name} = $value unless defined $default->{$name};                  $default->{$name} = $value unless defined $default->{$name};
# Line 155  sub params_form { Line 156  sub params_form {
156          }          }
157          my $html = qq|<h1>$class params</h1><form method="post">$form<input type="submit" value="Run $class"></form>|;          my $html = qq|<h1>$class params</h1><form method="post">$form<input type="submit" value="Run $class"></form>|;
158          $self->add_status({          $self->add_status({
159                  $self->editor( $self->class ) => {                  $self->class => {
160                          params  => $self->params,                          params  => $self->params,
161                          config_params  => $config_params,                          config_params  => $config_params,
162                          default => $default                          default => $default

Legend:
Removed from v.509  
changed lines
  Added in v.595

  ViewVC Help
Powered by ViewVC 1.1.26