/[Frey]/trunk/lib/Frey/Run.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/Run.pm

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

revision 317 by dpavlin, Wed Nov 5 22:05:02 2008 UTC revision 336 by dpavlin, Sat Nov 8 23:03:35 2008 UTC
# Line 1  Line 1 
1  package Frey::Run;  package Frey::Run;
2  use Moose;  use Moose;
3  extends 'Frey::ClassLoader';  #extends 'Frey::ClassLoader';
4    extends 'Frey::PPI';
5  with 'Frey::Web';  with 'Frey::Web';
6  with 'Frey::Config';  with 'Frey::Config';
7  with 'Frey::Escape';  with 'Frey::Escape';
8    
9    use Data::Dump qw/dump/;
10    use Frey::Dumper;
11    
12  =head1 NAME  =head1 NAME
13    
14  Frey::Run - display required form field for Class and run it  Frey::Run - display required form field for Class and run it
# Line 30  has 'params' => ( Line 34  has 'params' => (
34          default => sub { {} },          default => sub { {} },
35  );  );
36    
 use Data::Dump qw/dump/;  
   
37  sub html {  sub html {
38          my ( $self ) = @_;          my ( $self ) = @_;
39    
# Line 52  sub html { Line 54  sub html {
54    
55          my $html;          my $html;
56          my $values = {};          my $values = {};
57          $values = $self->config($class) if $self->can('config');          $values = $self->config($class);
58            warn "# $class config = ",dump( $values );
59    
60          if ( @required ) {          if ( @required ) {
61                  $html = qq|<h1>Required params for $class</h1><form method="post">|;                  $html = qq|<h1>$class params</h1><form method="post">|;
62                  foreach my $attr ( @required ) {  
63                          my $name = $attr->name;                  my $a;
64                    my @attrs = map {  $a->{$_}++; $_ } $self->attribute_order;
65                    push @attrs, $_ foreach grep { ! $a->{$_} } map { $_->name } @required;
66                    warn "# attrs = ",dump( @attrs );
67    
68                    foreach my $name ( @attrs ) {
69                            my $attr = $class->meta->get_attribute( $name );
70                          my $type = $name =~ m/^pass/ ? 'password' : 'text';                          my $type = $name =~ m/^pass/ ? 'password' : 'text';
71                          my $value =                          my $value =
72                                  $values ? $values->{$name} :                                  $values ? $values->{$name} :
# Line 79  sub html { Line 88  sub html {
88                          }                          }
89                          warn ">>> markup $class ",length( $html ), " bytes\n";                          warn ">>> markup $class ",length( $html ), " bytes\n";
90                  } elsif ( $o->can('data') ) {                  } elsif ( $o->can('data') ) {
91                          $html = '<code>' . $self->html_escape( dump( $o->data ) ) . '</code>';                          my $data = $o->data;
92                            $html .= Frey::Dumper->new( data => $data )->markup;
93                            $html .= '<hr/><code>' . $self->html_dump( $data ) . '</code>';
94                  } else {                  } else {
95                          $html = "IGNORE: $class ", $o->dump;                          $html = "IGNORE: $class ", $o->dump;
96                          warn $html;                          warn $html;

Legend:
Removed from v.317  
changed lines
  Added in v.336

  ViewVC Help
Powered by ViewVC 1.1.26