/[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 418 by dpavlin, Tue Nov 18 16:54:10 2008 UTC revision 460 by dpavlin, Wed Nov 19 17:57:48 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 24  has 'status' => ( Line 22  has 'status' => (
22          isa => 'ArrayRef[HashRef[Str]]',          isa => 'ArrayRef[HashRef[Str]]',
23          lazy => 1,          lazy => 1,
24          default => sub { [          default => sub { [
25                  { 'Bookmarklets' => Frey::Bookmarklet->new->markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
26                  { 'ClassBrowser' => Frey::ClassBrowser->new->markup },                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },
27          ] },          ] },
28  );  );
29    
# Line 45  has 'title' => ( Line 43  has 'title' => (
43          },          },
44  );  );
45    
46    has 'content_type' => (
47            is => 'rw',
48            isa => 'Str',
49            default => 'text/html',
50    );
51    
52  =head2 inline_smaller_than  =head2 inline_smaller_than
53    
54  Inline JavaScript and CSS smaller than this size into page reducing  Inline JavaScript and CSS smaller than this size into page reducing
# Line 81  sub _head_html { Line 85  sub _head_html {
85                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
86                                  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>| :
87                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
88                    } elsif ( $path =~ m{<.+>}s ) {
89                            $out .= $path;
90                  } else {                  } else {
91                          confess "don't know how to render $path";                          confess "don't know how to render $path";
92                  }                  }
# Line 95  sub _head_html { Line 101  sub _head_html {
101    
102    my $size = $o->add_head( 'path/to/external.css' );    my $size = $o->add_head( 'path/to/external.css' );
103    
104      $o->add_head( '<!-- html content -->' );
105    
106  =cut  =cut
107    
108  sub add_head {  sub add_head {
# Line 102  sub add_head { Line 110  sub add_head {
110          return if ! defined $path || $path eq '';          return if ! defined $path || $path eq '';
111          $path =~ s!^/!!;          $path =~ s!^/!!;
112    
113          if ( -e $path ) {          if ( $path =~ m{<.*>}s ) {
114                    push @{ $self->head }, $path;
115            } elsif ( -e $path ) {
116                  if ( $path =~ m/\.(?:js|css)$/ ) {                  if ( $path =~ m/\.(?:js|css)$/ ) {
117                          push @{ $self->head }, $path;                          push @{ $self->head }, $path;
118                  } else {                  } else {
119                          confess "can't add_head( $path ) it's not js or css";                          confess "can't add_head( $path ) it's not js or css";
120                  }                  }
121                    return -s $path;
122          } else {          } else {
123                  confess "can't find $path: $!";                  confess "can't find $path: $!";
124          }          }
125    
         return -s $path;  
126  }  }
127    
128  our $reload_counter = 0;  our $reload_counter = 0;
# Line 136  sub page { Line 146  sub page {
146    
147          my $status_line = '';          my $status_line = '';
148          foreach my $part ( @{ $self->status } ) {          foreach my $part ( @{ $self->status } ) {
149                  confess "part not hash ",dump( $part ) unless ref($part) eq 'HASH';                  if ( ref($part) ne 'HASH' ) {
150                            warn "part not hash ",dump( $part ) ;
151                            #$self->status( $part );
152                            next;
153                    }
154                  foreach my $name ( keys %$part ) {                  foreach my $name ( keys %$part ) {
155                          my $content = $part->{$name};                          my $content = $part->{$name};
156                          if ( ref($content) ) {                          if ( ref($content) ) {
# Line 151  sub page { Line 165  sub page {
165                  }                  }
166          }          }
167    
168            my $url = $self->request_url;
169            $url =~ s{\?reload=\d+}{};
170    
171            my $body = $a->{body};
172            $body ||= $self->as_markup if $self->can('as_markup');
173            if ( $self->content_type !~ m{html} ) {
174                    warn "# return only $self body ", $self->content_type;
175                    return $body
176            } elsif ( ! defined $body ) {
177                    warn "# no body";
178                    $body = '<!-- no body -->';
179            }
180    
181          my $html = join("\n",          my $html = join("\n",
182                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
183                  $self->_head_html,                  $self->_head_html,
184                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',
185                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
186                  ( $a->{head} || '' ),                  ( $a->{head} || '' ),
                 '</head><body>',  
                 ( $a->{body} || $self->markup || '<!-- no body -->' ),  
187                  qq|                  qq|
188                    </head><body>
189                    $body
190                  <div class="frey-status-line">                  <div class="frey-status-line">
191                          <a href="/">Frey</a> $Frey::VERSION                          <a href="/">Frey</a> $Frey::VERSION
192                          <a href="?reload=$reload_counter"><code>| . $self->request_url . qq|</code></a>                          <a href="?reload=$reload_counter"><code>$url</code></a>
193                          $status_line                          $status_line
194                  </div>                  </div>
195              </body></html>              </body></html>
# Line 177  sub page { Line 204  sub page {
204  sub error {  sub error {
205          my $self = shift;          my $self = shift;
206          my $error = join(" ", @_);          my $error = join(" ", @_);
207          my ($package, $filename, $line) = caller;  
208          $error .= " at $filename line $line" if $error !~ m{ at };          my @backtrace;
209          warn "WARN: $error\n";          foreach ( 0 .. 5 ) {
210                    my @caller = caller($_) or last;
211                    my @description = ( qw/
212                            package filename line
213                            subroutine hasargs
214                            wantarray evaltext is_require
215                            hints bitmask hinthash
216                    /);
217                    push @backtrace, join(' ',
218                            map {
219                                    $description[$_] . ': ' . dump $caller[$_]
220                            } ( 0 .. $#caller )
221                    );
222            }
223            if ( @backtrace ) {
224                    warn "# append backtrace: ", dump( @backtrace );
225                    $error .= "\n\t" . join( "\n\t", @backtrace );
226            }
227    
228            warn "ERROR: $error\n";
229          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}{at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}{at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;
230          $error =~ s{(via package ")([\w:]+)(")}{$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;          $error =~ s{(via package ")([\w:]+)(")}{$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;
231          return qq|<pre class="frey-error">$error</pre>|;          return qq|<pre class="frey-error">$error</pre>|;

Legend:
Removed from v.418  
changed lines
  Added in v.460

  ViewVC Help
Powered by ViewVC 1.1.26