/[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 455 by dpavlin, Wed Nov 19 15:28:23 2008 UTC revision 456 by dpavlin, Wed Nov 19 15:35:34 2008 UTC
# Line 85  sub html { Line 85  sub html {
85    
86                          push @{ $self->status }, { qq|<a target="editor" href="/editor+$class+1">$class</a>| => $self->params };                          push @{ $self->status }, { qq|<a target="editor" href="/editor+$class+1">$class</a>| => $self->params };
87    
88                          if ( $self->run eq 'markup' ) {                          if ( $self->run eq 'as_markup' ) {
89                                  warn "## using ",ref($o), "->as_markup";                                  warn "## using ",ref($o), "->as_markup";
90                                  if ( $o->can('page') ) {                                  if ( $o->can('page') ) {
91                                          $html = $o->page;                                          $html = $o->page;
# Line 93  sub html { Line 93  sub html {
93                                  $body = $o->as_markup unless $html;                                  $body = $o->as_markup unless $html;
94    
95                                  warn ">>> markup $class ",length( $html || $body ), " ", $html ? 'html' : 'body', " bytes";                                  warn ">>> markup $class ",length( $html || $body ), " ", $html ? 'html' : 'body', " bytes";
96                          } elsif ( $self->run eq 'sponge' ) {                          } elsif ( $self->run eq 'as_sponge' ) {
97                                  $data = $o->as_sponge;                                  $data = $o->as_sponge;
98                                  confess "invalid data from sponge = ", dump( $data ) unless ref($data) eq 'HASH';                                  confess "invalid data from sponge = ", dump( $data ) unless ref($data) eq 'HASH';
99                                  if ( $self->format eq 'html' ) {                                  if ( $self->format eq 'html' ) {
# Line 105  sub html { Line 105  sub html {
105                                          $body .= '<tr><td>' . join('</td><td>', @$_ ) . '</td></tr>' foreach @{ $data->{rows} };                                          $body .= '<tr><td>' . join('</td><td>', @$_ ) . '</td></tr>' foreach @{ $data->{rows} };
106                                          $body .= '</table>';                                          $body .= '</table>';
107                                  }                                  }
108                          } elsif ( $self->run eq 'data' ) {                          } elsif ( $self->run eq 'as_data' ) {
109                                  $data = $o->as_data;                                  $data = $o->as_data;
110                          } else {                          } else {
111                                  $body = $self->error( "IGNORE: $class ", $o->dump );                                  $body = $self->error( "IGNORE: $class ", $o->dump );

Legend:
Removed from v.455  
changed lines
  Added in v.456

  ViewVC Help
Powered by ViewVC 1.1.26