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

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

revision 417 by dpavlin, Tue Nov 18 16:39:13 2008 UTC revision 445 by dpavlin, Wed Nov 19 03:00:46 2008 UTC
# Line 1  Line 1 
1  package Frey::Web;  package Frey::Web;
2  use Moose::Role;  use Moose::Role;
3    
 #with 'Frey::Escape';  
   
4  use Frey::Types;  use Frey::Types;
5    
6  use Continuity::Widget::DomNode;  use Continuity::Widget::DomNode;
# Line 25  has 'status' => ( Line 23  has 'status' => (
23          lazy => 1,          lazy => 1,
24          default => sub { [          default => sub { [
25                  { 'Bookmarklets' => Frey::Bookmarklet->new->markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new->markup },
26                  { 'ClassBrowser' => Frey::ClassBrowser->new->markup },                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->markup },
27          ] },          ] },
28  );  );
29    
# Line 35  has 'request_url' => ( Line 33  has 'request_url' => (
33          default => '/',          default => '/',
34  );  );
35    
36    has 'title' => (
37            is => 'rw',
38            isa => 'Str',
39            lazy => 1,
40            default => sub {
41                    my ($self) = @_;
42                    ref($self);
43            },
44    );
45    
46  =head2 inline_smaller_than  =head2 inline_smaller_than
47    
48  Inline JavaScript and CSS smaller than this size into page reducing  Inline JavaScript and CSS smaller than this size into page reducing
# Line 71  sub _head_html { Line 79  sub _head_html {
79                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
80                                  qq|<!-- $path --><style type="text/css">\n| . read_file( $path ) . qq|\n</style>| :                                  qq|<!-- $path --><style type="text/css">\n| . read_file( $path ) . qq|\n</style>| :
81                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
82                    } elsif ( $path =~ m{<.+>} ) {
83                            $out .= $path;
84                  } else {                  } else {
85                          confess "don't know how to render $path";                          confess "don't know how to render $path";
86                  }                  }
# Line 85  sub _head_html { Line 95  sub _head_html {
95    
96    my $size = $o->add_head( 'path/to/external.css' );    my $size = $o->add_head( 'path/to/external.css' );
97    
98      $o->add_head( '<!-- html content -->' );
99    
100  =cut  =cut
101    
102  sub add_head {  sub add_head {
# Line 92  sub add_head { Line 104  sub add_head {
104          return if ! defined $path || $path eq '';          return if ! defined $path || $path eq '';
105          $path =~ s!^/!!;          $path =~ s!^/!!;
106    
107          if ( -e $path ) {          if ( $path =~ m{<.*>} ) {
108                    push @{ $self->head }, $path;
109            } elsif ( -e $path ) {
110                  if ( $path =~ m/\.(?:js|css)$/ ) {                  if ( $path =~ m/\.(?:js|css)$/ ) {
111                          push @{ $self->head }, $path;                          push @{ $self->head }, $path;
112                  } else {                  } else {
113                          confess "can't add_head( $path ) it's not js or css";                          confess "can't add_head( $path ) it's not js or css";
114                  }                  }
115                    return -s $path;
116          } else {          } else {
117                  confess "can't find $path: $!";                  confess "can't find $path: $!";
118          }          }
119    
         return -s $path;  
120  }  }
121    
122  our $reload_counter = 0;  our $reload_counter = 0;
# Line 126  sub page { Line 140  sub page {
140    
141          my $status_line = '';          my $status_line = '';
142          foreach my $part ( @{ $self->status } ) {          foreach my $part ( @{ $self->status } ) {
143                  confess "part not hash ",dump( $part ) unless ref($part) eq 'HASH';                  if ( ref($part) ne 'HASH' ) {
144                            warn "part not hash ",dump( $part ) ;
145                            #$self->status( $part );
146                            next;
147                    }
148                  foreach my $name ( keys %$part ) {                  foreach my $name ( keys %$part ) {
149                          my $content = $part->{$name};                          my $content = $part->{$name};
150                          if ( ref($content) ) {                          if ( ref($content) ) {
# Line 141  sub page { Line 159  sub page {
159                  }                  }
160          }          }
161    
162            my $url = $self->request_url;
163            $url =~ s{\?reload=\d+}{};
164    
165          my $html = join("\n",          my $html = join("\n",
166                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
167                  $self->_head_html,                  $self->_head_html,
168                  '<title>' . ( $a->{title} || ref($self) ) . '</title>',                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',
169                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
170                  ( $a->{head} || '' ),                  ( $a->{head} || '' ),
171                  '</head><body>',                  '</head><body>',
172                  ( $a->{body} || '<!-- no body -->' ),                  ( $a->{body} || $self->markup || '<!-- no body -->' ),
173                  qq|                  qq|
174                  <div class="frey-status-line">                  <div class="frey-status-line">
175                          <a href="/">Frey</a> $Frey::VERSION                          <a href="/">Frey</a> $Frey::VERSION
176                          <a href="?reload=$reload_counter"><code>| . $self->request_url . qq|</code></a>                          <a href="?reload=$reload_counter"><code>$url</code></a>
177                          $status_line                          $status_line
178                  </div>                  </div>
179              </body></html>              </body></html>

Legend:
Removed from v.417  
changed lines
  Added in v.445

  ViewVC Help
Powered by ViewVC 1.1.26