/[Frey]/trunk/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 /trunk/lib/Frey/Web.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 535 by dpavlin, Wed Nov 26 16:17:17 2008 UTC revision 546 by dpavlin, Wed Nov 26 20:48:07 2008 UTC
# Line 1  Line 1 
1  package Frey::Web;  package Frey::Web;
2  use Moose::Role;  use Moose::Role;
3    
 with 'Frey::Backtrace';  
   
4  use Frey::Types;  use Frey::Types;
5    
6  use Continuity::Widget::DomNode;  use Continuity::Widget::DomNode;
# Line 12  use File::Slurp; Line 10  use File::Slurp;
10    
11  use Frey::Bookmarklet;  use Frey::Bookmarklet;
12  use Frey::ClassBrowser;  use Frey::ClassBrowser;
13    use Frey::INC;
14    
15  use Frey::SVK;  use Frey::SVK;
16    
17  has 'head' => (  has 'head' => (
# Line 47  has 'dump_max_bytes' => ( Line 47  has 'dump_max_bytes' => (
47          is => 'rw',          is => 'rw',
48          isa => 'Int',          isa => 'Int',
49          default => 4096,          default => 4096,
50          documentation => 'Maximum dump size sent to browser before truncation',          documentation => 'maximum dump size sent to browser before truncation',
51  );  );
52    
53  has 'inline_smaller_than' => (  has 'inline_smaller_than' => (
54          is => 'rw',          is => 'rw',
55          isa => 'Int',          isa => 'Int',
56          default => 10240,          default => 10240,
57          documentation => 'Inline JavaScript and CSS to reduce round-trips',          documentation => 'inline JavaScript and CSS to reduce round-trips',
58  );  );
59    
60  has 'chop_warning' => (  has 'html_dump_width' => (
61            documentation => 'crop longer lines in dumps',
62          is => 'rw',          is => 'rw',
63          isa => 'Int',          isa => 'Int',
64          default => 80,  #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them
65          documentation => 'Crop lines longer',          default => 128,
66  );  );
67    
68  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
# Line 74  sub html_escape { Line 75  sub html_escape {
75  }  }
76    
77  sub html_dump {  sub html_dump {
78          my $self = shift;          my ( $self, $dump ) = @_;
79          $self->html_escape( dump( @_ ) );          $dump = dump( $dump ) if ref($dump);
80            my $width = $self->html_dump_width;
81            $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;
82            $dump = $self->html_escape( $dump );
83            $dump =~ s{\Q...\E}{&hellip;}gs;
84            return "<code>$dump</code>";
85    }
86    
87    sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }
88    sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }
89    
90    our $re_html = qr{<(?:!--.+?--|(\w+).+?/\1)>}s; # relaxed html check for one semi-valid tag
91    
92    sub popup_dropdown {
93            my ( $self, $type, $name, $content, $full ) = @_;
94    
95            $content = $self->html_dump($content) if ref $content;
96    
97            $content = qq|<span>$content</span>| unless $content =~ m{^\s*<(span|a|code).+?/\1>\s*};
98    
99            warn "## $type [$name] = ", length( $content ), " bytes" if $self->debug;
100    
101            if ( $name =~ m{::} && $name !~ $re_html ) {
102                    return qq|<a class="frey-$type" target="$name" href="/$name">$name $content</a>\n|;
103            } else {
104                    return qq|<span class="frey-$type">$name $content</span>\n|;
105            }
106  }  }
107    
108  sub dom2html {  sub dom2html {
# Line 126  sub add_head { Line 153  sub add_head {
153          return if ! defined $path || $path eq '';          return if ! defined $path || $path eq '';
154          $path =~ s!^/!!;          $path =~ s!^/!!;
155    
156          if ( $path =~ m{<.*>}s ) {          if ( $path =~ $re_html ) {
157                  push @{ $self->head }, $path;                  push @{ $self->head }, $path;
158          } elsif ( -e $path ) {          } elsif ( -e $path ) {
159                  if ( $path =~ m/\.(?:js|css)$/ ) {                  if ( $path =~ m/\.(?:js|css)$/ ) {
# Line 170  sub page { Line 197  sub page {
197          my $status_line = '';          my $status_line = '';
198    
199          unshift @status, { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup };          unshift @status, { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup };
200          unshift @status, { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup };  #       unshift @status, { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup };
201            unshift @status, { 'INC' => Frey::INC->new->as_markup };
202    
203          foreach my $part ( @status ) {          foreach my $part ( @status ) {
204                  foreach my $name ( keys %$part ) {                  foreach my $name ( keys %$part ) {
205                          my $content = $part->{$name};                          $status_line .= $self->popup( $name, $part->{$name} );
                         if ( ref($content) ) {  
                                 $content = '<code>' . dump($content) . '</code>';  
                                 my $l = length($content);  
                                 $content = qq|<span>$l bytes</span>| if $l > $self->dump_max_bytes;  
                         } else {  
                                 $content = qq|<span>$content</span>|;  
                         }  
                         warn "### part [$name] = ", length( $content ), " bytes" if $self->debug;  
                         $status_line .= qq|<span class="frey-popup">$name $content</span>\n|;  
206                  }                  }
207          }          }
208    
# Line 403  sub warnings_html { Line 422  sub warnings_html {
422    
423                  if ( $multiline_end ) {                  if ( $multiline_end ) {
424                          if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {                          if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {
425                                  warn "## $line end of $multiline_end in '$_'\n";  #                               warn "## $line end of $multiline_end in '$_'\n";
426                                  undef $multiline_end;                                  undef $multiline_end;
427                          } else {                          } else {
428                                  warn "## $line skipped\n";  #                               warn "## $line skipped\n";
429                          }                          }
430                  } elsif ( m{^(#*)\s+} ) {                  } elsif ( m{^(#*)\s+} ) {
431                          my $l = $1 ? length($1) : 0;                          my $l = $1 ? length($1) : 0;
432                          if ( $l > $level ) {                          if ( $l > $level ) {
433                                  undef $multiline_end;                                  undef $multiline_end;
434                                  $multiline_end = $multiline_markers->{$1} if m{($multiline_re)$};                                  $multiline_end = $multiline_markers->{$1} if m{($multiline_re)$};
435                                  warn "## $line start $1 .. $multiline_end level $l > $level for '$_'\n" if $multiline_end;  #                               warn "## $line start $1 .. $multiline_end level $l > $level for '$_'\n" if $multiline_end;
436                                  next;                                  next;
437                          }                          }
438    
# Line 423  sub warnings_html { Line 442  sub warnings_html {
442    
443                          my $msg = $self->html_escape( $_ );                          my $msg = $self->html_escape( $_ );
444                          my $spacer = ' ';                          my $spacer = ' ';
445                          if ( length($msg) > $self->chop_warning ) {                          if ( length($msg) > $self->html_dump_width ) {
446                                  $msg = substr( $msg, 0, $self->chop_warning );                                  $msg = substr( $msg, 0, $self->html_dump_width );
447                                  $spacer = '&hellip;'                                  $spacer = '&hellip;'
448                          }                          }
449                          $msg =~ s{^\s}{&nbsp;}g;                          $msg =~ s{^\s}{&nbsp;}g;
# Line 441  sub warnings_html { Line 460  sub warnings_html {
460                  ;                  ;
461  }  }
462    
463    
464    =head2 backtrace
465    
466    Show backtrace with links to editor
467    
468      my @backtrace = $self->backtrace;
469    
470    =cut
471    
472    sub backtrace {
473            my ($self) = @_;
474    
475            my @backtrace;
476            foreach ( 0 .. 5 ) {
477                    my (
478                            $package,$path,$line
479                            # subroutine hasargs
480                            # wantarray evaltext is_require
481                            # hints bitmask hinthash
482                    ) = caller($_) or last;
483    
484                    push @backtrace,
485                            qq|via $package from $path <a target="editor" href="/editor+$path+$line">$path</a>|;
486            }
487            warn "# backtrace: ", dump( @backtrace ) if @backtrace;
488            return @backtrace;
489    }
490    
491  1;  1;

Legend:
Removed from v.535  
changed lines
  Added in v.546

  ViewVC Help
Powered by ViewVC 1.1.26