/[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 158 - (show annotations)
Thu Jul 17 18:00:55 2008 UTC (15 years, 9 months ago) by dpavlin
File size: 995 byte(s)
generate "static" html pages from methods with markup call [0.14]
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 $html .= qq|</td><td>|;
25 $html .= qq|<a href="/ob/$package">collection</a>| if $package->can('collection_table');
26 $html .= qq|<a href="/markup/$package">markup</a>| if $package->can('markup');
27 $html .= qq|</td></tr>|;
28 }
29 $html = "<table>$html</table>" if $html;
30 $markup = $html;
31 }
32
33 sub html {
34 my ( $self, $req ) = @_;
35 my $html = $self->page( body => qq|<h1>Classes</h1>| . $self->markup );
36 $req->print( $html );
37 }
38
39 1;

  ViewVC Help
Powered by ViewVC 1.1.26