--- trunk/lib/Frey/ClassBrowser.pm 2008/10/31 23:17:56 222 +++ trunk/lib/Frey/ClassBrowser.pm 2008/11/01 00:14:05 223 @@ -4,6 +4,7 @@ extends 'Frey'; use Frey::ClassLoader; +use Frey::Run; our $markup; @@ -22,8 +23,9 @@ } my @inspect; push @inspect, qq|collection| if $package->can('collection_table'); - push @inspect, qq|markup| if $package->can('markup'); - push @inspect, qq|request| if $package->can('request'); + foreach my $try ( Frey::Run->execute ) { + push @inspect, qq|$try| if $package->can($try); + } $html .= qq|| . join(' ', @inspect) . qq||; } $html = "$html
" if $html;