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

Contents of /trunk/lib/Frey/ClassBrowser.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 217 - (show annotations)
Fri Oct 31 22:41:34 2008 UTC (15 years, 5 months ago) by dpavlin
File size: 993 byte(s)
we don't really need request handler here, since we don't have
internal state
1 package Frey::ClassBrowser;
2 use Moose;
3
4 extends 'Frey';
5 with 'Frey::Web';
6
7 use Frey::ClassLoader;
8
9 our $markup;
10
11 sub markup {
12 return $markup if $markup;
13 my $f = Frey::ClassLoader->new;
14 my $html;
15 foreach my $package ( $f->classes ) {
16 $html .= qq|<tr><td><a href="/~/$package" title="| . $f->package_path( $package ) . qq|">$package</a></td><td>|;
17 if ( $package->can('meta') ) {
18 if ( $package->meta->isa('Moose::Meta::Role') ) {
19 $html .= qq|role|;
20 } else {
21 $html .= qq|<a href="/od/$package">design</a>| if $package->can('collection');
22 }
23 }
24 my @inspect;
25 push @inspect, qq|<a href="/ob/$package">collection</a>| if $package->can('collection_table');
26 push @inspect, qq|<a href="/markup/$package">markup</a>| if $package->can('markup');
27 push @inspect, qq|<a href="/request/$package">request</a>| if $package->can('request');
28 $html .= qq|</td><td>| . join('&nbsp;', @inspect) . qq|</td></tr>|;
29 }
30 $html = "<table>$html</table>" if $html;
31 $markup = $html;
32 }
33
34 1;

  ViewVC Help
Powered by ViewVC 1.1.26