/[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 180 by dpavlin, Sun Aug 31 18:02:50 2008 UTC revision 204 by dpavlin, Thu Oct 30 22:20:02 2008 UTC
# Line 44  sub html { Line 44  sub html {
44          } else {          } else {
45                  my $o = $class->new( %params );                  my $o = $class->new( %params );
46                  $o->depends if $o->can('depends');                  $o->depends if $o->can('depends');
47                  $html = $o->markup;                  if ( $o->can('html') ) {
48                            warn "## turning over to $o->html";
49                            $o->html( $req );
50                    } elsif ( $o->can('markup') ) {
51                            warn "## using $o->markup";
52                            $html = $o->markup;
53                            warn ">>> markup $class ",length( $html ), " bytes\n";
54                    } else {
55                            $html = "IGNORE: $class ", $o->dump;
56                            warn $html;
57                    }
58          }          }
59    
         warn ">>> markup $class ",length( $html ), " bytes\n";  
60          $req->print( $self->page( title => $class, body => $html ) );          $req->print( $self->page( title => $class, body => $html ) );
61  }  }
62    

Legend:
Removed from v.180  
changed lines
  Added in v.204

  ViewVC Help
Powered by ViewVC 1.1.26