/[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 418 - (show annotations)
Tue Nov 18 16:54:10 2008 UTC (15 years, 5 months ago) by dpavlin
File size: 1165 byte(s)
Add title to Frey::Web and use it
1 package Frey::ClassBrowser;
2 use Moose;
3
4 extends 'Frey::ClassLoader';
5 with 'Frey::Web';
6
7 use Frey::Run;
8
9 our $markup;
10
11 sub markup {
12 my $self = shift;
13 return $markup if $markup;
14 my $html;
15 foreach my $class ( $self->classes ) {
16 $html .= qq|<tr><td><a href="/$class" title="| . $self->class_path( $class ) . qq|">$class</a></td><td>|;
17 if ( $class->can('meta') ) {
18 if ( $class->meta->isa('Moose::Meta::Role') ) {
19 $html .= qq|role|;
20 } else {
21 $html .= qq|<a href="/Frey-ObjectDesigner?class=$class">design</a>| if $class->can('collection');
22 }
23 }
24 my @run;
25 my @input;
26 push @run, qq|<a href="/Frey-ObjectBrowser?class=$class">collection</a>| if $class->can('collection_table');
27 my $class_method = $self->class_methods( $class );
28 foreach my $try ( Frey::Run->runnable ) {
29 next unless $class->can($try);
30 if ( $class_method->{ $try } ) {
31 push @run, qq|<a href="/$class/$try">$try</a>|;
32 } else {
33 push @input, $try;
34 }
35 }
36 $html .= qq|</td><td>| . join(' ', @run) . qq|</td><td>| .
37 ( @input ? '&larr; ' . join(' ', @input) : '' ) .
38 qq|</td></tr>|;
39 }
40 $html = "<table>$html</table>" if $html;
41 $markup = $html;
42 }
43
44 1;

  ViewVC Help
Powered by ViewVC 1.1.26