/[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 588 by dpavlin, Fri Nov 28 15:07:03 2008 UTC revision 653 by dpavlin, Sun Nov 30 23:49:32 2008 UTC
# Line 7  use Frey::Types; Line 7  use Frey::Types;
7    
8  #use Continuity::Widget::DomNode;  #use Continuity::Widget::DomNode;
9  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
10  use Carp qw/confess cluck/;  use Carp qw/confess cluck carp/;
11  use File::Slurp;  use File::Slurp;
12    
13  use Frey::Bookmarklet;  use Frey::Bookmarklet;
# 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 }  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 => sub {
29                    carp "undefined request_url";
30                    '/';
31            },
32  );  );
33    
34  has 'title' => (  has 'title' => (
# Line 61  has 'html_dump_width' => ( Line 67  has 'html_dump_width' => (
67          is => 'rw',          is => 'rw',
68          isa => 'Int',          isa => 'Int',
69  #       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
70          default => 128,          default => 250,
71  );  );
72    
73  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
# Line 87  sub html_dump { Line 93  sub html_dump {
93  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }
94  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }
95    
96  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
97    
98  sub popup_dropdown {  sub popup_dropdown {
99          my ( $self, $type, $name, $content, $full ) = @_;          my ( $self, $type, $name, $content, $full ) = @_;
# Line 98  sub popup_dropdown { Line 104  sub popup_dropdown {
104    
105          $content =~ s{<span>(<code>[^<]+</code>)</span>}{$1} && $self->TODO("code wrapped in span");          $content =~ s{<span>(<code>[^<]+</code>)</span>}{$1} && $self->TODO("code wrapped in span");
106    
107          warn "## $type [$name] = ", length( $content ), " bytes" if $self->debug;          warn "## $type [$name] = ", length( $content ), " bytes"; # if $self->debug; # FIXME
108    
109          if ( $name =~ m{::} && $name !~ $re_html ) {          if ( $name =~ m{::} && $name !~ $re_html ) {
110                  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|;
# Line 121  sub _head_html { Line 127  sub _head_html {
127                  $path =~ s!^/!!;                  $path =~ s!^/!!;
128                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
129                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
130                                  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>| :
131                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
132                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
133                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
134                                  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>| :
135                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
136                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
137                          $out .= $path;                          $out .= $path;
# Line 216  sub page { Line 222  sub page {
222          $url =~ s{\?reload=\d+}{};          $url =~ s{\?reload=\d+}{};
223    
224          my $body = $a->{body};          my $body = $a->{body};
225          $body ||= $self->as_markup if $self->can('as_markup');          if ( ! $body ) {
226                    my $run = $a->{run} || 'as_markup';
227                    warn "# no body, invoke $self->$run on ", ref($self);
228                    $body = $self->$run;
229            }
230          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
231                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
232                  return $body                  return $body
# Line 235  sub page { Line 245  sub page {
245                  qq|                  qq|
246                          <span class="right">                          <span class="right">
247                          <a title="reload $url"  href="/reload$url">reload</a>                          <a title="reload $url"  href="/reload$url">reload</a>
248                          <a title="$description" href="/exit$url">$exit</a>                          <a title="$description" href="/exit$url" target="exit">$exit</a>
249                          </span>                          </span>
250                  |;                  |;
251    
# Line 302  Create HTML links to editor for perl err Line 312  Create HTML links to editor for perl err
312  sub editor_links {  sub editor_links {
313          my ( $self, $error ) = @_;          my ( $self, $error ) = @_;
314    
315    #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
316    
317          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
318                  {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;
319    
# Line 364  sub clean_status { Line 376  sub clean_status {
376          @status = (          @status = (
377                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },
378                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
379                  { 'INC' => Frey::INC->new->as_markup },                  { 'INC' => Frey::INC->new->as_markup },
380          );          );
381          $icon_html = '';          $icon_html = '';
382  }  }
# Line 453  my $multiline_re = '[\\' . join('\\', ke Line 465  my $multiline_re = '[\\' . join('\\', ke
465  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
466    
467  sub log_path {  sub log_path {
468          $Frey::Bootstrap::log_path || warn "no log_path?";          $Frey::Bootstrap::log_path || die "no log_path?";
469  }  }
470    
471    our $last_log_pos  = 0;
472    our $last_log_line = 0;
473    
474    our $pwd = `pwd`;
475    chomp $pwd;
476    
477  sub warnings_html {  sub warnings_html {
478          my ($self,$level) = shift;          my ($self,$level) = shift;
479          $level ||= $self->debug,          $level ||= $self->debug,
480          my $path = $self->log_path;          my $path = $self->log_path;
481    
482          my $max = 50;          my $max = 30;
483          my $pos = 0;          my $pos = 0;
484          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
485          my $line = 0;          my $line = $last_log_line;
486          my $multiline_end;          my $multiline_end;
487    
488          open(my $log, '<', $path) || die "can't open $path: $!";          # XXX do we really want to do this every time?
489            my $css = qq|/* short css classes for levels */\n|;
490            my $level_to_class;
491            foreach ( keys %$warn_colors ) {
492                    my $l = length($_);
493                    my $class = 'l' . $l;
494                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
495                    $level_to_class->{ $_ } = $class;
496            }
497            $self->add_css( $css );
498    
499            open(my $log, '<', $path)    || die "can't open $path: $!";
500            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
501          while(<$log>) {          while(<$log>) {
502                  chomp;                  chomp;
503                  $line++;                  $line++;
504    
505                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
506    
507                  my $style = '';                  my $style = '';
508    
509  =for filter  =for filter
# Line 493  sub warnings_html { Line 525  sub warnings_html {
525                          }                          }
526    
527  =cut  =cut
528                  if ( m{^(#*)\s+} ) { # FIXME                  if ( m{^(#*)} ) {
529    
530                          $style = $warn_colors->{$1}                          my $level = $1;
531                                  ? ' style="color:' . $warn_colors->{$1} . '"'                          my $msg = $_;
532                                  : '';  
533                            # Mojo seems to expand warn messages to full path which is annoying
534                            $msg =~ s{/[^/]+/\.\./}{/}gs;
535                            $msg =~ s{$pwd/*}{}gs;
536    
                         my $msg = $self->html_escape( $_ );  
537                          my $spacer = ' ';                          my $spacer = ' ';
538                          if ( length($msg) > $self->html_dump_width ) {                          my $real_msg = expand( $msg );
539                                  $msg = substr( $msg, 0, $self->html_dump_width );                          if ( length($real_msg) > $self->html_dump_width ) {
540                                    
541                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
542                                    $msg = unexpand( $real_msg );
543                                  $spacer = '&hellip;'                                  $spacer = '&hellip;'
544                          }                          }
545                          $warnings[ $pos++ % $max ]  
546                                  = $msg                          $msg = $self->html_escape( $msg );
547  #                               = ( $style ? qq|<span$style>$msg</span>| : $msg )  
548                                  . $spacer                          if ( my $class = $level_to_class->{ $level } ) {
549                                  . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">+$line</a><br/>|;                                  $msg = qq|<span class="$class">$msg</span>|;
550                          # FIXME <tt> should be <code> but CSS hates me                          }
551    
552                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
553                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
554                                    . ( $spacer ? $spacer : '' )
555                                    . "\n"; # XXX <pre> needs this
556    
557                            $warnings[ $pos++ % $max ] = $msg;
558                  }                  }
559          }          }
560            $last_log_pos = tell($log);
561            $last_log_line = $line;
562            warn "log has $line lines tell position $last_log_pos";
563          close($log) || die "can't close $path: $!";          close($log) || die "can't close $path: $!";
564    
565          my $size = -s $path;          my $size = -s $path;
566    
567          my $warnings = join('',          my $warnings = join("",
568                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. $max                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
569          );          );
570    
571          my $s = length($warnings);          my $s = length($warnings);
572    
573          return          return
574                  # need to wrap into span so we can have links in warnings                  # need to wrap editor link into span so we can have links in warnings
575                    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>|                    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>|
576                  . $warnings                  . $self->editor_links( $warnings )
577  #               . $self->editor_links( $warnings )                  . qq|</code></span>|
                 . qq|</code></span></a>|  
578                  ;                  ;
579  }  }
580    
# Line 556  sub backtrace { Line 602  sub backtrace {
602                  push @backtrace,                  push @backtrace,
603                          qq|via $package at $path line $line|;                          qq|via $package at $path line $line|;
604          }          }
605          warn "# backtrace: ", dump( @backtrace ) if @backtrace;          #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
606          return @backtrace;          return @backtrace;
607  }  }
608    

Legend:
Removed from v.588  
changed lines
  Added in v.653

  ViewVC Help
Powered by ViewVC 1.1.26