/[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 538 by dpavlin, Wed Nov 26 17:36:02 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 159  sub status { @status }; Line 186  sub status { @status };
186    
187  our $icon_html;  our $icon_html;
188    
 sub popup {  
         my ( $self, $name, $content, $full ) = @_;  
   
         if ( ref($content) ) {  
                 $content = '<code>' . dump($content) . '</code>';  
                 my $l = length($content);  
                 $content = qq|<span>$l bytes</span>| if ! $full && $l > $self->dump_max_bytes;  
         } else {  
                 $content = qq|<span>$content</span>|;  
         }  
   
         warn "## popup [$name] = ", length( $content ), " bytes" if $self->debug;  
         return qq|<span class="frey-popup">$name $content</span>\n|;  
 }  
   
189  sub page {  sub page {
190          my $self = shift;          my $self = shift;
191          my $a = {@_};          my $a = {@_};
# Line 186  sub page { Line 198  sub page {
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 ) {
# Line 208  sub page { Line 221  sub page {
221    
222          $status_line .= $self->warnings_html;          $status_line .= $self->warnings_html;
223    
         my $inc_html;  
         {  
                 my $inc;  
                 map {  
                         s{.pm$}{};  
                         my $class = $_;  
                         s[/][}->{]g;  
                         $class =~ s[/][::]g;  
                         eval '$inc->{' . $_ . '} = $class';  
                 } sort keys %INC;  
                 $inc_html = dump( $inc );  
                 $inc_html =~ s{\s+=>\s+\d+}{}gs;  
                 $inc_html =~ s{(['"]?)(\w+)\1\s+=>\s+(['"]?)([\w:]*\2)\3}{<a target="$4" href="/$4" title="$4">$2</a>}gs;  
                 $inc_html =~ s{\s+=>\s+}{ }gs;  
                 $inc_html =~ s{,}{}gs;  
         }  
   
         $status_line .= $self->popup( INC => "<small>$inc_html</small>" );  
   
224          my      ($exit,$description) = ('exit','stop server');          my      ($exit,$description) = ('exit','stop server');
225                  ($exit,$description) = ('restart','restart server')                  ($exit,$description) = ('restart','restart server')
226                  if $ENV{FREY_RESTART}; # tune labels on exit link                  if $ENV{FREY_RESTART}; # tune labels on exit link
# Line 448  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 466  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.538  
changed lines
  Added in v.546

  ViewVC Help
Powered by ViewVC 1.1.26