/[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 445 by dpavlin, Wed Nov 19 03:00:46 2008 UTC revision 482 by dpavlin, Thu Nov 20 15:23:13 2008 UTC
# Line 1  Line 1 
1  package Frey::Web;  package Frey::Web;
2  use Moose::Role;  use Moose::Role;
3    
4    with 'Frey::Backtrace';
5    
6  use Frey::Types;  use Frey::Types;
7    
8  use Continuity::Widget::DomNode;  use Continuity::Widget::DomNode;
# Line 22  has 'status' => ( Line 24  has 'status' => (
24          isa => 'ArrayRef[HashRef[Str]]',          isa => 'ArrayRef[HashRef[Str]]',
25          lazy => 1,          lazy => 1,
26          default => sub { [          default => sub { [
27                  { 'Bookmarklets' => Frey::Bookmarklet->new->markup },                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },
28                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
29          ] },          ] },
30  );  );
31    
# Line 43  has 'title' => ( Line 45  has 'title' => (
45          },          },
46  );  );
47    
48    has 'content_type' => (
49            is => 'rw',
50            isa => 'Str',
51            default => 'text/html',
52            documentation => 'Content-type header',
53    );
54    
55    has 'dump_max_bytes' => (
56            is => 'rw',
57            isa => 'Int',
58            default => 4096,
59            documentation => 'Maximum dump size sent to browser before truncation',
60    );
61    
62  =head2 inline_smaller_than  =head2 inline_smaller_than
63    
64  Inline JavaScript and CSS smaller than this size into page reducing  Inline JavaScript and CSS smaller than this size into page reducing
# Line 79  sub _head_html { Line 95  sub _head_html {
95                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
96                                  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>| :
97                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
98                  } elsif ( $path =~ m{<.+>} ) {                  } elsif ( $path =~ m{<.+>}s ) {
99                          $out .= $path;                          $out .= $path;
100                  } else {                  } else {
101                          confess "don't know how to render $path";                          confess "don't know how to render $path";
# Line 104  sub add_head { Line 120  sub add_head {
120          return if ! defined $path || $path eq '';          return if ! defined $path || $path eq '';
121          $path =~ s!^/!!;          $path =~ s!^/!!;
122    
123          if ( $path =~ m{<.*>} ) {          if ( $path =~ m{<.*>}s ) {
124                  push @{ $self->head }, $path;                  push @{ $self->head }, $path;
125          } elsif ( -e $path ) {          } elsif ( -e $path ) {
126                  if ( $path =~ m/\.(?:js|css)$/ ) {                  if ( $path =~ m/\.(?:js|css)$/ ) {
# Line 150  sub page { Line 166  sub page {
166                          if ( ref($content) ) {                          if ( ref($content) ) {
167                                  $content = '<code>' . dump($content) . '</code>';                                  $content = '<code>' . dump($content) . '</code>';
168                                  my $l = length($content);                                  my $l = length($content);
169                                  $content = qq|<span>$l bytes</span>| if $l > 1024;                                  $content = qq|<span>$l bytes</span>| if $l > $self->dump_max_bytes;
170                          } else {                          } else {
171                                  $content = qq|<span>$content</span>|;                                  $content = qq|<span>$content</span>|;
172                          }                          }
# Line 162  sub page { Line 178  sub page {
178          my $url = $self->request_url;          my $url = $self->request_url;
179          $url =~ s{\?reload=\d+}{};          $url =~ s{\?reload=\d+}{};
180    
181            my $body = $a->{body};
182            $body ||= $self->as_markup if $self->can('as_markup');
183            if ( $self->content_type !~ m{html} ) {
184                    warn "# return only $self body ", $self->content_type;
185                    return $body
186            } elsif ( ! defined $body ) {
187                    warn "# no body";
188                    $body = '<!-- no body -->';
189            }
190    
191            my $warn_colors = {
192                    '#'  => '#444',
193                    '##' => '#888',
194            };
195    
196            $status_line
197                    .= qq|<span class="frey-popup">warn<span>|
198                    . $self->editor_links(
199                            join("", map {
200                                    warn "# $_";
201                                    my $style = '';
202                                    $style = $warn_colors->{$1}
203                                            ? ' style="color:' . $warn_colors->{$1} . '"'
204                                            : ''
205                                            if m{^(#+)};
206                                    qq|<tt$style>$_</tt><br/>|; # XXX <tt> should be <code> but CSS hates me
207                            } $self->warnings )
208                    )
209                    . qq|</span></span>|
210                    if $self->warnings;
211    
212            my      ($exit,$description) = ('exit','stop server');
213                    ($exit,$description) = ('restart','restart server')
214                    if $ENV{FREY_RESTART}; # tune labels on exit link
215    
216            my $right =
217                    qq|
218                            <span class="right">
219                            <a title="reload"  href="/reload$url"><code>$url</code></a>
220                            <a title="$description" href="/exit$url">$exit</a>
221                            </span>
222                    |;
223    
224          my $html = join("\n",          my $html = join("\n",
225                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
226                  $self->_head_html,                  $self->_head_html,
227                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',
228                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
229                  ( $a->{head} || '' ),                  ( $a->{head} || '' ),
                 '</head><body>',  
                 ( $a->{body} || $self->markup || '<!-- no body -->' ),  
230                  qq|                  qq|
231                    </head><body>
232                    $body
233                  <div class="frey-status-line">                  <div class="frey-status-line">
234                          <a href="/">Frey</a> $Frey::VERSION                          <a href="/">Frey</a> $Frey::VERSION
                         <a href="?reload=$reload_counter"><code>$url</code></a>  
235                          $status_line                          $status_line
236                            $right
237                  </div>                  </div>
238              </body></html>              </body></html>
239                  |,                  |,
# Line 185  sub page { Line 244  sub page {
244          return $html;          return $html;
245  }  }
246    
247    =head2 editor
248    
249    Create HTML editor link with optional line and title
250    
251      my $html = $self->editor( $class, $line, $title );
252    
253    =cut
254    
255    sub editor {
256            my ( $self, $class, $line, $title ) = @_;
257            confess "need class" unless $class;
258            $line ||= 1;
259            qq|<a target="editor" href="/editor+$class+$line"| .
260            ( $title ? qq| title="$title"| : '' ) .
261            qq|>$class</a>|;
262    }
263    
264    =head2 editor_links
265    
266    Create HTML links to editor for perl error message
267    
268      my $html = $self->editor_links( $error )
269    
270    =cut
271    
272    sub editor_links {
273            my ( $self, $error ) = @_;
274    
275            $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
276                    {at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;
277    
278            $error =~ s{(via package ")([\w:]+)(")}
279                    {$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;
280    
281            return $error;
282    }
283    
284  sub error {  sub error {
285          my $self = shift;          my $self = shift;
286          my $error = join(" ", @_);          my $error = join(" ", @_);
287          my ($package, $filename, $line) = caller;  
288          $error .= " at $filename line $line" if $error !~ m{ at };          my @backtrace = $self->backtrace;
289          warn "WARN: $error\n";          $error .= "\n\t" . join( "\n\t", @backtrace ) if @backtrace;
290          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}{at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;  
291          $error =~ s{(via package ")([\w:]+)(")}{$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;          warn "ERROR: $error\n";
292          return qq|<pre class="frey-error">$error</pre>|;          return
293                    qq|<pre class="frey-error">|
294                    . $self->editor_links( $error ) .
295                    qq|</pre>|
296                    ;
297  }  }
298    
299  1;  1;

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

  ViewVC Help
Powered by ViewVC 1.1.26