/[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 596 by dpavlin, Fri Nov 28 17:20:05 2008 UTC revision 648 by dpavlin, Sun Nov 30 19:21:52 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 }  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                    cluck "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 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 218  sub page { Line 224  sub page {
224          my $body = $a->{body};          my $body = $a->{body};
225          if ( ! $body ) {          if ( ! $body ) {
226                  my $run = $a->{run} || 'as_markup';                  my $run = $a->{run} || 'as_markup';
227                  warn "# no body, invoke $self->$run";                  warn "# no body, invoke $self->$run on ", ref($self);
228                  $body = $self->$run;                  $body = $self->$run;
229          }          }
230          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
# Line 239  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 367  Called at beginning of each request Line 373  Called at beginning of each request
373  sub clean_status {  sub clean_status {
374          my ($self) = shift;          my ($self) = shift;
375          @head = ( 'static/frey.css' );          @head = ( 'static/frey.css' );
376            my $params = { request_url => $self->request_url };
377          @status = (          @status = (
378                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },                  { 'ClassBrowser' => Frey::ClassBrowser->new( %$params, usage_on_top => 0 )->as_markup },
379                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new( %$params )->as_markup },
380                  { 'INC' => Frey::INC->new->as_markup },                  { 'INC' => Frey::INC->new( %$params )->as_markup },
381          );          );
382          $icon_html = '';          $icon_html = '';
383  }  }
# Line 459  my $multiline_re = '[\\' . join('\\', ke Line 466  my $multiline_re = '[\\' . join('\\', ke
466  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
467    
468  sub log_path {  sub log_path {
469          $Frey::Bootstrap::log_path || warn "no log_path?";          $Frey::Bootstrap::log_path || die "no log_path?";
470  }  }
471    
472    our $last_log_pos  = 0;
473    our $last_log_line = 0;
474    
475  sub warnings_html {  sub warnings_html {
476          my ($self,$level) = shift;          my ($self,$level) = shift;
477          $level ||= $self->debug,          $level ||= $self->debug,
478          my $path = $self->log_path;          my $path = $self->log_path;
479    
480          my $max = 50;          my $max = 30;
481          my $pos = 0;          my $pos = 0;
482          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
483          my $line = 0;          my $line = $last_log_line;
484          my $multiline_end;          my $multiline_end;
485    
486          open(my $log, '<', $path) || die "can't open $path: $!";          # XXX do we really want to do this every time?
487            my $css = qq|/* short css classes for levels */\n|;
488            my $level_to_class;
489            foreach ( keys %$warn_colors ) {
490                    my $l = length($_);
491                    my $class = 'l' . $l;
492                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
493                    $level_to_class->{ $_ } = $class;
494            }
495            $self->add_css( $css );
496    
497            open(my $log, '<', $path)    || die "can't open $path: $!";
498            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
499          while(<$log>) {          while(<$log>) {
500                  chomp;                  chomp;
501                  $line++;                  $line++;
502    
503                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
504    
505                  my $style = '';                  my $style = '';
506    
507  =for filter  =for filter
# Line 499  sub warnings_html { Line 523  sub warnings_html {
523                          }                          }
524    
525  =cut  =cut
526                  if ( m{^(#*)\s+} ) { # FIXME                  if ( m{^(#*)} ) {
527    
528                          $style = $warn_colors->{$1}                          my $level = $1;
529                                  ? ' style="color:' . $warn_colors->{$1} . '"'                          my $msg = $_;
                                 : '';  
530    
                         my $msg = $self->html_escape( $_ );  
531                          my $spacer = ' ';                          my $spacer = ' ';
532                          if ( length($msg) > $self->html_dump_width ) {                          my $real_msg = expand( $msg );
533                                  $msg = substr( $msg, 0, $self->html_dump_width );                          if ( length($real_msg) > $self->html_dump_width ) {
534                                    
535                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
536                                    $msg = unexpand( $real_msg );
537                                  $spacer = '&hellip;'                                  $spacer = '&hellip;'
538                          }                          }
539                          $warnings[ $pos++ % $max ]  
540                                  = $msg                          $msg = $self->html_escape( $msg );
541  #                               = ( $style ? qq|<span$style>$msg</span>| : $msg )  
542                                  . $spacer                          if ( my $class = $level_to_class->{ $level } ) {
543                                  . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">+$line</a><br/>|;                                  $msg = qq|<span class="$class">$msg</span>|;
544                          # FIXME <tt> should be <code> but CSS hates me                          }
545    
546                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
547                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
548                                    . ( $spacer ? $spacer : '' )
549                                    . "\n"; # XXX <pre> needs this
550    
551                            $warnings[ $pos++ % $max ] = $msg;
552                  }                  }
553          }          }
554            $last_log_pos = tell($log);
555            $last_log_line = $line;
556            warn "log has $line lines tell position $last_log_pos";
557          close($log) || die "can't close $path: $!";          close($log) || die "can't close $path: $!";
558    
559          my $size = -s $path;          my $size = -s $path;
560    
561          my $warnings = join('',          my $warnings = join("",
562                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. $max                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
563          );          );
564    
565          my $s = length($warnings);          my $s = length($warnings);
566    
567          return          return
568                  # 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
569                    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>|
570                  . $warnings                  . $self->editor_links( $warnings )
571  #               . $self->editor_links( $warnings )                  . qq|</code></span>|
                 . qq|</code></span></a>|  
572                  ;                  ;
573  }  }
574    

Legend:
Removed from v.596  
changed lines
  Added in v.648

  ViewVC Help
Powered by ViewVC 1.1.26