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

Diff of /trunk/lib/Frey/HTML.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 23 by dpavlin, Sun Jun 29 16:24:41 2008 UTC revision 40 by dpavlin, Mon Jun 30 20:02:12 2008 UTC
# Line 5  use warnings; Line 5  use warnings;
5    
6  use Time::HiRes qw/time/;  use Time::HiRes qw/time/;
7  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
8  use Carp qw/confess/;  use Carp qw/confess carp/;
9    
10    #use Template::Declare;
11    use base qw/Template::Declare/;
12    use Template::Declare::Tags; # defaults to 'HTML'
13    
14  =head1 NAME  =head1 NAME
15    
# Line 19  Frey::HTML - generate html pages Line 23  Frey::HTML - generate html pages
23    
24  our @view_classes = qw(  our @view_classes = qw(
25          Frey::View          Frey::View
         Frey::REST  
26          Strix::View          Strix::View
27  );  );
28    
# Line 30  foreach ( @view_classes ) { Line 33  foreach ( @view_classes ) {
33          $path =~ s!::!/!g;          $path =~ s!::!/!g;
34          $path .= '.pm';          $path .= '.pm';
35          require $path or warn "Can't require $_ from $path: $!";          require $path or warn "Can't require $_ from $path: $!";
36            # this will import templates as fully qualified paths
37            import_templates $_ under "/$_/";
38  }  }
39    
40  warn "available templates = ",dump( Template::Declare->templates );  warn "available templates = ",dump( Template::Declare->templates );
# Line 37  warn "available templates = ",dump( Temp Line 42  warn "available templates = ",dump( Temp
42  our @javascript;  our @javascript;
43  our $debug = 0;  our $debug = 0;
44    
 use Template::Declare;  
 use Template::Declare::Tags; # defaults to 'HTML'  
45  Template::Declare->init( roots => \@view_classes, around_template => sub {  Template::Declare->init( roots => \@view_classes, around_template => sub {
46          my ($orig, $path, $args, $code) = @_;          my ($orig, $path, $args, $code) = @_;
47            my $from = (caller(1))[3];
48            my $package = __PACKAGE__;
49            if ( $from !~ m/$package/ ) {
50                    warn "SKIP around_template for $path from $from\n";
51                    return $orig->();
52            } else {
53                    warn "WRAP around_temolate for $path from $from\n";
54            }
55    
56          my $t = time;          my $t = time;
57          html {          html {
58                  head {                  head {
59                          title { $path }                          title { $path }
60                          link {                          link {
61                                  { rel is 'stylesheet' }                                  { rel is 'stylesheet' }
62                                  { href is 'static/app.css' }                                  { href is '/static/app.css' }
63                                  { type is 'text/css' }                                  { type is 'text/css' }
64                                  { media is 'screen' }                                  { media is 'screen' }
65                          };                          };
66                          foreach my $js ( @javascript ) {                          foreach my $js ( @javascript ) {
67                                  script {                                  script {
68                                          { type is 'text/javascript' }                                          { type is 'text/javascript' }
69                                          { src is $js }                                          { src is "/$js" }
70                                  }                                  }
71                          }                          };
72                  }                  }
73                  body {                  body {
74                          $orig->();                          $orig->();
# Line 74  Wrap template into html page Line 86  Wrap template into html page
86  =cut  =cut
87    
88  sub page {  sub page {
89          my $self = shift;          my ( $self, $page, $req, $args ) = @_;
90          warn "## page $_[0]\n";          warn "## buffer_stack ",dump( Template::Declare->buffer_stack );
91          return Template::Declare->show( @_ );          Template::Declare->buffer->clear; # XXX we need to manually do this!
92            warn "## page $page ",dump($args),"\n";
93            my $out = eval { Template::Declare->show( $page, $req, $args ) };
94            if ( $@ ) {
95                    carp "ERROR: $@";
96                    $out = Template::Declare->show( 'error', $req, "page $page " . dump($args) . ": $@" );
97            }
98            return $out;
99  }  }
100    
101  =head2 add_javascript  =head2 add_javascript
# Line 94  sub add_javascript { Line 113  sub add_javascript {
113          warn "Added javascript $js\n";          warn "Added javascript $js\n";
114          push @javascript, $js;          push @javascript, $js;
115  }  }
116    
117    1;

Legend:
Removed from v.23  
changed lines
  Added in v.40

  ViewVC Help
Powered by ViewVC 1.1.26