/[Frey]/branches/mojo/lib/Frey/Pod.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 /branches/mojo/lib/Frey/Pod.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 258 - (show annotations)
Tue Nov 4 20:26:59 2008 UTC (15 years, 5 months ago) by dpavlin
File size: 1268 byte(s)
make Frey::Introspect default action if there is no
method specified in url, resulting in major reduction of
html everywhere which is nice
1 package Frey::Pod;
2 use Moose;
3
4 =head1 NAME
5
6 Frey::Pod - display documentation
7
8 =cut
9
10 extends 'Frey::ClassLoader';
11 with 'Frey::Web';
12
13 has 'class' => (
14 is => 'rw',
15 isa => 'Str',
16 required => 1,
17 );
18
19 use File::Slurp;
20 use Data::Dump qw/dump/;
21
22 sub request {
23 my ( $self, $req ) = @_;
24 my $f = { $req->params };
25 my $class = delete( $f->{class} ) || $self->class;
26 $req->print( $self->page( title => $class, body => $self->markup( $class ) ) );
27 }
28
29 sub markup {
30 my $self = shift;
31 my $class = $self->class;
32 use Pod::Simple::HTML;
33 my $path = eval { $self->package_path( $class ) };
34 if ( $@ ) {
35 warn $@;
36 return;
37 }
38 my $pod = read_file( $path );
39 my $converter = Pod::Simple::HTML->new();
40 my $body;
41 my $my_classes = join('|', $self->classes);
42 $converter->output_string( \$body );
43 $converter->parse_string_document($pod);
44 $body =~ s{.*?<body [^>]+>}{}s;
45 $body =~ s{</body>\s*</html>\s*$}{};
46 $body =~ s!%3A%3A!::!g;
47 $body =~ s{<a href="http://search\.cpan\.org/perldoc\?($my_classes)"([^>]*)>}{<a href="/$1"$2>}g;
48 $body =~ s{<a href="http://(search\.cpan\.org)/([^"]+)"([^>]*)>}{<a target="$1" href="http://$1/$2"$3>}g;
49 $body =~ s!</li>\n\t<ul>!<ul>!;
50 $body =~ s!</ul>!</ul></li>!;
51 $body =~ s!<p></p>!!;
52 $body =~ s!__index__!index!g;
53 return $body;
54 }
55
56 1;
57

  ViewVC Help
Powered by ViewVC 1.1.26