--- trunk/lib/Frey/ClassBrowser.pm 2008/09/13 15:31:54 187 +++ trunk/lib/Frey/ClassBrowser.pm 2008/11/05 20:18:33 314 @@ -1,40 +1,34 @@ package Frey::ClassBrowser; use Moose; -extends 'Frey'; -with 'Frey::Web'; +extends 'Frey::ClassLoader'; -use Frey::ClassLoader; +use Frey::Run; our $markup; sub markup { + my $self = shift; return $markup if $markup; - my $f = Frey::ClassLoader->new; my $html; - foreach my $package ( $f->classes ) { - $html .= qq|$package|; - if ( $package->can('meta') ) { - if ( $package->meta->isa('Moose::Meta::Role') ) { + foreach my $class ( $self->classes ) { + $html .= qq|$class|; + if ( $class->can('meta') ) { + if ( $class->meta->isa('Moose::Meta::Role') ) { $html .= qq|role|; } else { - $html .= qq|design| if $package->can('collection'); + $html .= qq|design| if $class->can('collection'); } } my @inspect; - push @inspect, qq|collection| if $package->can('collection_table'); - push @inspect, qq|markup| if $package->can('markup'); - push @inspect, qq|html| if $package->can('html'); + push @inspect, qq|collection| if $class->can('collection_table'); + foreach my $try ( Frey::Run->runnable ) { + push @inspect, qq|$try| if $class->can($try); + } $html .= qq|| . join(' ', @inspect) . qq||; } $html = "$html
" if $html; $markup = $html; } -sub html { - my ( $self, $req ) = @_; - my $html = $self->page( body => qq|

Classes

| . $self->markup ); - $req->print( $html ); -} - 1;