/[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 578 by dpavlin, Fri Nov 28 00:42:35 2008 UTC revision 625 by dpavlin, Sat Nov 29 17:48:54 2008 UTC
# Line 16  use Frey::INC; Line 16  use Frey::INC;
16    
17  use Frey::SVK;  use Frey::SVK;
18    
19    use Text::Tabs; # expand, unexpand
20    
21  our @head;  our @head;
22    sub head { @head }
23    
24  has 'request_url' => (  has 'request_url' => (
25          is => 'rw',          is => 'rw',
26          isa => 'Uri', coerce => 1,          isa => 'Uri', coerce => 1,
27          default => '/',          required => 1,
28    #       default => '/',
29  );  );
30    
31  has 'title' => (  has 'title' => (
# Line 60  has 'html_dump_width' => ( Line 64  has 'html_dump_width' => (
64          is => 'rw',          is => 'rw',
65          isa => 'Int',          isa => 'Int',
66  #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them  #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them
67          default => 128,          default => 120,
68  );  );
69    
70  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
# Line 79  sub html_dump { Line 83  sub html_dump {
83          $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;          $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;
84          $dump = $self->html_escape( $dump );          $dump = $self->html_escape( $dump );
85          $dump =~ s{\Q...\E}{&hellip;}gs;          $dump =~ s{\Q...\E}{&hellip;}gs;
86    #       $dump =~ $self->editor_links( $dump ); # FIXME include this
87          return "<code>$dump</code>";          return "<code>$dump</code>";
88  }  }
89    
90  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }
91  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }
92    
93  our $re_html = qr{<(?:!--.+?--|(\w+).+?/\1)>}s; # relaxed html check for one semi-valid tag  our $re_html = qr{<(?:!--.+?--|(\w+).+?/\1|[^>]+/)>}s; # relaxed html check for one semi-valid tag
94    
95  sub popup_dropdown {  sub popup_dropdown {
96          my ( $self, $type, $name, $content, $full ) = @_;          my ( $self, $type, $name, $content, $full ) = @_;
# Line 94  sub popup_dropdown { Line 99  sub popup_dropdown {
99    
100          $content = qq|<span>$content</span>| unless $content =~ m{^\s*<(span|a|code).+?/\1>\s*};          $content = qq|<span>$content</span>| unless $content =~ m{^\s*<(span|a|code).+?/\1>\s*};
101    
102          warn "## $type [$name] = ", length( $content ), " bytes" if $self->debug;          $content =~ s{<span>(<code>[^<]+</code>)</span>}{$1} && $self->TODO("code wrapped in span");
103    
104            warn "## $type [$name] = ", length( $content ), " bytes"; # if $self->debug; # FIXME
105    
106          if ( $name =~ m{::} && $name !~ $re_html ) {          if ( $name =~ m{::} && $name !~ $re_html ) {
107                  return qq|<a class="frey-$type" target="$name" href="/$name">$name $content</a>\n|;                  return qq|<a class="frey-$type" target="$name" href="/$name">$name $content</a>\n|;
108            } elsif ( $name =~ s{^\s*(<a)\s+}{$1 class="frey-$type"} ) {
109                    return qq|$name $content\n|;
110          } else {          } else {
111                  return qq|<span class="frey-$type">$name $content</span>\n|;                  return qq|<span class="frey-$type">$name $content</span>\n|;
112          }          }
# Line 115  sub _head_html { Line 124  sub _head_html {
124                  $path =~ s!^/!!;                  $path =~ s!^/!!;
125                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
126                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
127                                  qq|<!-- $path --><script type="text/javascript">\n| . read_file($path) . qq|\n</script>| :                                  qq|<script type="text/javascript">\n/* inline $path */\n\n| . read_file($path) . qq|\n</script>| :
128                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
129                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
130                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
131                                  qq|<!-- $path --><style type="text/css">\n| . read_file( $path ) . qq|\n</style>| :                                  qq|<style type="text/css">\n/* inline $path */\n\n| . read_file( $path ) . qq|\n</style>| :
132                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
133                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
134                          $out .= $path;                          $out .= $path;
# Line 166  sub add_css { Line 175  sub add_css {
175          my ( $package, $path, $line ) = caller;          my ( $package, $path, $line ) = caller;
176          $self->add_head( qq|          $self->add_head( qq|
177          <style type="text/css">          <style type="text/css">
178          /* via package $package at $path line $line */          /* via $package at $path line $line */
179          $css          $css
180          </style>          </style>
181          | );          | );
# Line 200  sub page { Line 209  sub page {
209    
210          my $status_line = '';          my $status_line = '';
211    
         unshift @status, { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup };  
 #       unshift @status, { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup };  
         unshift @status, { 'INC' => Frey::INC->new->as_markup };  
   
212          foreach my $part ( @status ) {          foreach my $part ( @status ) {
213                  foreach my $name ( keys %$part ) {                  foreach my $name ( keys %$part ) {
214                          $status_line .= $self->popup( $name, $part->{$name} );                          $status_line .= $self->popup( $name, $part->{$name} );
# Line 214  sub page { Line 219  sub page {
219          $url =~ s{\?reload=\d+}{};          $url =~ s{\?reload=\d+}{};
220    
221          my $body = $a->{body};          my $body = $a->{body};
222          $body ||= $self->as_markup if $self->can('as_markup');          if ( ! $body ) {
223                    my $run = $a->{run} || 'as_markup';
224                    warn "# no body, invoke $self->$run on ", ref($self);
225                    $body = $self->$run;
226            }
227          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
228                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
229                  return $body                  return $body
# Line 300  Create HTML links to editor for perl err Line 309  Create HTML links to editor for perl err
309  sub editor_links {  sub editor_links {
310          my ( $self, $error ) = @_;          my ( $self, $error ) = @_;
311    
312    #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
313    
314          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
315                  {at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;                  {at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;
316    
317          $error =~ s{(via package ")([\w:]+)(")}          $error =~ s{(via (?:package) "?)([\w:]+)("?)}
318                  {$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;                  {$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;
319    
320          return $error;          return $error;
# Line 328  sub error { Line 339  sub error {
339    
340  =head2 add_status  =head2 add_status
341    
342    $self->add_status( name => { some => 'data' } );    $self->add_status( { name => { some => 'data' } } );
343    
344    $self->add_status( "append to last status popup" );    $self->add_status( "append to last status popup" );
345    
# Line 336  sub error { Line 347  sub error {
347    
348  sub add_status {  sub add_status {
349          my ( $self, $data ) = @_;          my ( $self, $data ) = @_;
350            push @status, { 'X' => [ $self->backtrace ] };
351          if ( ref($data) ) {          if ( ref($data) ) {
352                  push @status, $data;                  push @status, $data;
353          } else {          } else {
354                  $status[ $#status ]->{added} = $data;                  if ( defined $status[ $#status ] ) {
355                            $status[ $#status ]->{ '+' } = $data;
356                    } else {
357                            push @status, { '+' => $data };
358                    }
359          }          }
360  }  }
361    
# Line 354  Called at beginning of each request Line 370  Called at beginning of each request
370  sub clean_status {  sub clean_status {
371          my ($self) = shift;          my ($self) = shift;
372          @head = ( 'static/frey.css' );          @head = ( 'static/frey.css' );
373          @status = ();          my $params = { request_url => $self->request_url };
374            @status = (
375                    { 'ClassBrowser' => Frey::ClassBrowser->new( %$params, usage_on_top => 0 )->as_markup },
376                    { 'Bookmarklets' => Frey::Bookmarklet->new( %$params )->as_markup },
377                    { 'INC' => Frey::INC->new( %$params )->as_markup },
378            );
379          $icon_html = '';          $icon_html = '';
380  }  }
381    
# Line 450  sub warnings_html { Line 471  sub warnings_html {
471          $level ||= $self->debug,          $level ||= $self->debug,
472          my $path = $self->log_path;          my $path = $self->log_path;
473    
474          my $warnings;          my $max = 30;
475            my $pos = 0;
476            my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
477          my $line = 0;          my $line = 0;
478          my $multiline_end;          my $multiline_end;
479    
480            # XXX do we really want to do this every time?
481            my $css = qq|/* short css classes for levels */\n|;
482            my $level_to_class;
483            foreach ( keys %$warn_colors ) {
484                    my $l = length($_);
485                    my $class = 'l' . $l;
486                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
487                    $level_to_class->{ $_ } = $class;
488            }
489            $self->add_css( $css );
490    
491          open(my $log, '<', $path) || die "can't open $path: $!";          open(my $log, '<', $path) || die "can't open $path: $!";
492          while(<$log>) {          while(<$log>) {
493                  chomp;                  chomp;
# Line 461  sub warnings_html { Line 495  sub warnings_html {
495    
496                  my $style = '';                  my $style = '';
497    
498    =for filter
499    
500                  if ( $multiline_end ) {                  if ( $multiline_end ) {
501                          if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {                          if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {
502  #                               warn "## $line end of $multiline_end in '$_'\n";  #                               warn "## $line end of $multiline_end in '$_'\n";
# Line 477  sub warnings_html { Line 513  sub warnings_html {
513                                  next;                                  next;
514                          }                          }
515    
516                          $style = $warn_colors->{$1}  =cut
517                                  ? ' style="color:' . $warn_colors->{$1} . '"'                  if ( m{^(#*)} ) {
518                                  : '';  
519                            my $level = $1;
520                            my $msg = $_;
521    
                         my $msg = $self->html_escape( $_ );  
522                          my $spacer = ' ';                          my $spacer = ' ';
523                          if ( length($msg) > $self->html_dump_width ) {                          my $real_msg = expand( $msg );
524                                  $msg = substr( $msg, 0, $self->html_dump_width );                          if ( length($real_msg) > $self->html_dump_width ) {
525                                    
526                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
527                                    $msg = unexpand( $real_msg );
528                                  $spacer = '&hellip;'                                  $spacer = '&hellip;'
529                          }                          }
530                          $msg =~ s{^\s}{&nbsp;}g;  
531                          $warnings .= qq|<tt$style>$msg</tt>$spacer<small><a target="editor" href="/editor+$path+$line">+$line</a></small><br/>|;                          $msg = $self->html_escape( $msg );
532                          # FIXME <tt> should be <code> but CSS hates me  
533                            if ( my $class = $level_to_class->{ $level } ) {
534                                    $msg = qq|<span class="$class">$msg</span>|;
535                            }
536    
537                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
538                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
539                                    . ( $spacer ? $spacer : '' )
540                                    . "\n"; # XXX <pre> needs this
541    
542                            $warnings[ $pos++ % $max ] = $msg;
543                  }                  }
544          }          }
545            warn "log has $line lines tell position ",tell($log);
546          close($log) || die "can't close $path: $!";          close($log) || die "can't close $path: $!";
547    
548            my $size = -s $path;
549    
550            my $warnings = join("",
551                    map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
552            );
553    
554            my $s = length($warnings);
555    
556          return          return
557                    qq|<span class="frey-popup"><a target="editor" href="/editor+$path+$line" title="open $path level $level">warn</a><span>|                  # need to wrap editor link into span so we can have links in warnings
558                      qq|<span class="frey-popup"><a target="editor" href="/editor+$path+$line" title="$path \| $size -> $s bytes \| $line -> $pos lines \| level $level">warn</a><code>|
559                  . $self->editor_links( $warnings )                  . $self->editor_links( $warnings )
560                  . qq|</span></span>|                  . qq|</code></span></a>|
561                  ;                  ;
562  }  }
563    
# Line 523  sub backtrace { Line 583  sub backtrace {
583                  ) = caller($_) or last;                  ) = caller($_) or last;
584    
585                  push @backtrace,                  push @backtrace,
586                          qq|via package $package at $path line $line|;                          qq|via $package at $path line $line|;
587          }          }
588          warn "# backtrace: ", dump( @backtrace ) if @backtrace;          #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
589          return @backtrace;          return @backtrace;
590  }  }
591    

Legend:
Removed from v.578  
changed lines
  Added in v.625

  ViewVC Help
Powered by ViewVC 1.1.26