/[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 674 by dpavlin, Tue Dec 2 01:49:49 2008 UTC revision 881 by dpavlin, Fri Dec 19 14:10:03 2008 UTC
# Line 3  use Moose::Role; Line 3  use Moose::Role;
3    
4  with 'Frey::Session';  with 'Frey::Session';
5    
 use Frey::Types;  
   
6  #use Continuity::Widget::DomNode;  #use Continuity::Widget::DomNode;
7  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
8  use Carp qw/confess cluck carp/;  use Carp qw/confess cluck carp/;
9  use File::Slurp;  use File::Slurp;
10    use Text::Tabs; # expand, unexpand
11    
12    use lib 'lib';
13    
14    use Frey::Types;
15    
16  use Frey::Bookmarklet;  use Frey::Bookmarklet;
17  use Frey::ClassBrowser;  use Frey::Class::Browser;
18  use Frey::INC;  use Frey::INC;
19    
20  use Frey::SVK;  use Frey::SVK;
21    
 use Text::Tabs; # expand, unexpand  
   
22  our @head;  our @head;
23  sub head { @head }  sub head { @head }
24    
# Line 86  sub html_dump { Line 87  sub html_dump {
87          $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;          $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;
88          $dump = $self->html_escape( $dump );          $dump = $self->html_escape( $dump );
89          $dump =~ s{\Q...\E}{…}gs;          $dump =~ s{\Q...\E}{…}gs;
90  #       $dump =~ $self->editor_links( $dump ); # FIXME include this  #       $dump =~ $self->html_links( $dump ); # FIXME include this
91          return "<code>$dump</code>";          return "<code>$dump</code>";
92  }  }
93    
94  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }
95  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }
96    
97  our $re_html = qr{<(?:!--.+?--|(\w+).+?/\1|[^>]+/)>}s; # relaxed html check for one semi-valid tag  our $re_html = qr{<(?:!--|(\w+)|[^>]+)/?>}s; # relaxed html check for one semi-valid tag
98    
99  sub popup_dropdown {  sub popup_dropdown {
100          my ( $self, $type, $name, $content, $full ) = @_;          my ( $self, $type, $name, $content, $full ) = @_;
# Line 115  sub popup_dropdown { Line 116  sub popup_dropdown {
116          }          }
117  }  }
118    
119  sub _inline_path {  sub _inline {
120          my ( $self, $path ) = @_;          my ( $self, $path ) = @_;
121          -s $path < $self->inline_smaller_than;          return unless defined $path;
122            warn "# _inline $path";
123            -e $path && -s $path < $self->inline_smaller_than && -s $path;
124  }  }
125    
126  sub _head_html {  sub _head_html {
# Line 126  sub _head_html { Line 129  sub _head_html {
129          foreach my $path ( @head ) {          foreach my $path ( @head ) {
130                  $path =~ s!^/!!;                  $path =~ s!^/!!;
131                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
132                          $out .= $self->_inline_path( $path ) ?                          my $size;
133                                  qq|<script type="text/javascript">\n/* inline $path */\n\n| . read_file($path) . qq|\n</script>| :                          $out .= $size = _inline( $path ) ?
134                                    qq|<script type="text/javascript">\n/* inline $path $size bytes */\n\n| . read_file($path) . qq|\n</script>| :
135                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
136                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
137                          $out .= $self->_inline_path( $path ) ?                          my $size;
138                                  qq|<style type="text/css">\n/* inline $path */\n\n| . read_file( $path ) . qq|\n</style>| :                          $out .= $size = _inline( $path ) ?
139                                    qq|<style type="text/css">\n/* inline $path $size bytes */\n\n| . read_file( $path ) . qq|\n</style>| :
140                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
141                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
142                          $out .= $path;                          $out .= $path;
# Line 173  sub add_head { Line 178  sub add_head {
178    
179  }  }
180    
181    sub _add_css_js {
182            my ( $self, $what, $content ) = @_;
183    
184            my $tag  = $what eq 'css' ? 'style'    : 'script';
185            my $type = $what eq 'css' ? 'text/css' : 'text/javascript';
186            my $head;
187    
188            my ( $package, $path, $line ) = caller(1);
189    
190            if ( $content =~ m{\.(js|css)} ) {
191                    $content = "/$content" if -e $content;
192                    if ( $content =~ $re_html ) {
193                            $head = qq|
194                                    $content
195                                    <!-- $type via $package at $path line $line -->
196                            |;
197                    } elsif ( $what eq 'js' ) {
198                            $head = qq|
199                                    <$tag type="$type" src="$content">
200                                    /* $what via $package at $path line $line */
201                                    </$tag>
202                            |;
203                    } else {
204                            $head = qq|
205                                    <link rel="stylesheet" type="$type" href="$content">
206                                    <!-- $what via $package at $path line $line -->
207                            |;
208                    }
209            } else {
210                    $head = qq|
211                            <$tag type="$type">
212                            /* via $package at $path line $line */
213                            $content
214                            </$tag>
215                    |;
216            };
217            $self->add_head( $head );
218    }
219    
220  sub add_css {  sub add_css {
221          my ($self,$css) = @_;          my ($self,$css) = @_;
222          my ( $package, $path, $line ) = caller;          $self->_add_css_js( 'css', $css );
223          $self->add_head( qq|  }
224          <style type="text/css">  
225          /* via $package at $path line $line */  sub add_js {
226          $css          my ($self,$js) = @_;
227          </style>          $self->_add_css_js( 'js', $js );
         | );  
228  }  }
229    
230  our $reload_counter = 0;  our $reload_counter = 0;
# Line 225  sub page { Line 268  sub page {
268          if ( ! $body ) {          if ( ! $body ) {
269                  my $run = $a->{run} || 'as_markup';                  my $run = $a->{run} || 'as_markup';
270                  warn "# no body, invoke $self->$run on ", ref($self);                  warn "# no body, invoke $self->$run on ", ref($self);
271                  eval {                  $body = $self->$run;
                         $body = $self->$run;  
                 };  
                 $body = $self->error( $@, '' ) if $@;  
272          }          }
273          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
274                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
# Line 304  sub editor { Line 344  sub editor {
344          qq|>$class</a>|;          qq|>$class</a>|;
345  }  }
346    
347  =head2 editor_links  =head2 html_links
348    
349  Create HTML links to editor for perl error message  Create HTML links to editor for perl error message
350    
351    my $html = $self->editor_links( $error )    my $html = $self->html_links( $error )
352    
353  =cut  =cut
354    
355  sub editor_links {  sub html_links {
356          my ( $self, $error ) = @_;          my ( $self, $error ) = @_;
357    
358            $error = $self->strip_full_path( $error );
359    
360  #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back  #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
361    
362          # perl's backtrace          # perl's backtrace
363          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
364                  {at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;                  {at <a target="editor" href="/editor+$1+$2" title="vi $1 +$2">$1</a> line $2}gsm;
365    
366          $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}          $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}
367                  {$1<a target="$2" href="/$2">$2</a>$3}gsm;                  {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm
368            || # or anything that looks like "Class::Name"
369            $error =~ s{"(\w+(?:::\w+)+)"}
370                    {"<a target="$1" href="/$1" title="introspect $1">$1</a>"}gsm;
371    
372          # method error messages          # method error messages
373  #       $error =~ s{(method ")(\w+)"}          # FIXME replace with link to Frey::Introspect data
374  #               {$1<a target="/Frey::Shell::Grep?pattern=$2">$2</a>"}gsm; # FIXME replace with link to Frey::Introspect data          $error =~ s{(method ")(\w+)(" via)}
375                    {$1<a target="$2" href="/Frey::Shell::Grep/as_markup?pattern=$2" title="grep $2">$2</a>$3}gsm;
376    
377            # link paths to editor
378            $error =~ s{((?:lib|t)/[\S]+)\s+(\d+\s+bytes)}
379                    {<a target="editor" href="/editor+$1+1" title="vi $1 [$2]">$1</a>}gsm;
380    
381          # anything that looks like "Class::Name"          $error =~ s{(class ")([\w:]+)(")}
382          $error =~ s{"(\w+(?:::\w+)+)"}                  {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm;
                 {"<a target="$1" href="/$1">$1</a>"}gsm;  
383    
384          return $error;          return $error;
385  }  }
386    
387    sub html_self {
388            my $self = shift;
389            my $html = $self;
390            $html =~ s{([\w:]+)=}{<a target="$1" href="/$1" title="introspect $1">$1</a>=}gsm;
391            return $html;
392    }
393    
394  =head2 error  =head2 error
395    
396  This method will return error to browser and backtrace unless  This method will return error to browser and backtrace unless
# Line 347  sub error { Line 403  sub error {
403          my $error = join(" ", @_);          my $error = join(" ", @_);
404    
405          my $fatal = '';          my $fatal = '';
406            my $backtrace = '';
407    
408          if ( $error !~ m{\n$} ) {          if ( $error !~ m{\n$} ) {
409                  if ( my @backtrace = $self->backtrace ) {                  if ( my @backtrace = $self->backtrace ) {
410                          $error .= "\n\t" . join( "\n\t", @backtrace );                          $backtrace =
411                          $fatal = qq| class="fatal"|;                                    "\n" . $self->html_self . "->error backtrace\n\t"
412                                    . $self->html_links( join( "\n\t", @backtrace ) )
413                                    ;
414                            $fatal = qq| frey-fatal|;
415                  }                  }
416          }          }
417    
418          warn "ERROR: $error\n";          warn "ERROR: $error\n";
419          return          $self->add_icon('error');
420                  qq|<pre class="frey-error$fatal">|          $error = $self->html_links( $error );
421                  . $self->editor_links( $error ) .          return qq|<pre class="frey-error$fatal">$error $backtrace</pre>| ;
                 qq|</pre>|  
                 ;  
422  }  }
423    
424  =head1 Status line  =head1 Status line
# Line 399  sub clean_status { Line 457  sub clean_status {
457          my ($self) = shift;          my ($self) = shift;
458          @head = ( 'static/frey.css' );          @head = ( 'static/frey.css' );
459          @status = (          @status = (
460                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },                  { 'ClassBrowser' => Frey::Class::Browser->new( usage_sort => 1, usage_on_top => 0 )->as_markup },
461                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
462                  { 'INC' => Frey::INC->new->as_markup },                  { 'INC' => Frey::INC->new->as_markup },
463          );          );
# Line 436  sub DEMOLISH { Line 494  sub DEMOLISH {
494    
495  sub icon_path {  sub icon_path {
496          my ($self,$class,$variant) = @_;          my ($self,$class,$variant) = @_;
497          my $icon = $class;  
498          $icon =~ s{::}{/}g;          sub icon_exists {
499          $icon .= "/$variant" if $variant;                  my $class = shift;
500          my $path = 'static/icons/' . $icon . '.png';                  $class =~ s{::}{/}g;
501          if ( -e $path ) {                  $class .= "/$variant" if $variant;
502                  warn "# $class from $self icon_path $path" if $self->debug;                  my $icon_path = 'static/icons/' . $class . '.png';
503                  return $path;                  return $icon_path if -e $icon_path;
504          } else {                  return;
505                  $self->TODO( "add $path icon for $class" );          }
506    
507            my $path = icon_exists( $class );
508            if ( ! $path ) {
509                    my $super_class = $class;
510                    while ( $super_class =~ s{::[^:]+$}{} && ! $path ) {
511                            $path = icon_exists( $super_class ) unless $super_class eq 'Frey'; # don't default on Frey icon
512                    }
513            }
514    
515            if ( ! $path ) {
516                    $self->TODO( "add icon for $class" . ( $variant ? " variant $variant" : '' ) );
517                  return undef;                  return undef;
518          }          }
519    
520            warn "# $class from $self icon_path $path" if $self->debug;
521            return $path;
522  }  }
523    
524  sub add_icon {  sub add_icon {
525          my ($self,$variant) = @_;          my ($self,$variant) = @_;
526    
527          my $class = ref($self);          my $class = $self->class if $self->can('class');
528          $class = $self->class if $self->can('class');          #$class ||= $self->title;
529            $class ||= ref($self);
530          my $icon_path = $self->icon_path( $class, $variant ) || return;          my $icon_path = $self->icon_path( $class, $variant ) || return;
531    
532          $icon_html .= qq|<link rel="icon" type="image/png" href="/$icon_path">|;          $icon_html .= qq|<link rel="icon" type="image/png" href="/$icon_path">|;
# Line 497  sub log_path { Line 570  sub log_path {
570          $Frey::Bootstrap::log_path || die "no log_path?";          $Frey::Bootstrap::log_path || die "no log_path?";
571  }  }
572    
 our $last_log_pos  = 0;  
 our $last_log_line = 0;  
   
573  our $pwd = `pwd`;  our $pwd = `pwd`;
574  chomp $pwd;  chomp $pwd;
575    
576    sub strip_full_path {
577            my ($self, $msg) = @_;
578            # Mojo seems to expand warn messages to full path which is annoying
579            $msg =~ s{/[^/]+/\.\./}{/}gs;
580            $msg =~ s{$pwd/*}{}gs;
581            return $msg;
582    }
583    
584    our $last_log_pos  = 0;
585    our $last_log_line = 0;
586    
587  sub warnings_html {  sub warnings_html {
588          my ($self,$level) = shift;          my ($self,$level) = shift;
589          $level ||= $self->debug,          $level ||= $self->debug,
# Line 557  sub warnings_html { Line 638  sub warnings_html {
638                  if ( m{^(#*)} ) {                  if ( m{^(#*)} ) {
639    
640                          my $level = $1;                          my $level = $1;
641                          my $msg = $_;                          my $msg = $self->strip_full_path( $_ );
   
                         # Mojo seems to expand warn messages to full path which is annoying  
                         $msg =~ s{/[^/]+/\.\./}{/}gs;  
                         $msg =~ s{$pwd/*}{}gs;  
642    
643                          my $spacer = ' ';                          my $spacer = ' ';
644                          my $real_msg = expand( $msg );                          my $real_msg = expand( $msg );
# Line 602  sub warnings_html { Line 679  sub warnings_html {
679          return          return
680                  # need to wrap editor link into span so we can have links in warnings                  # need to wrap editor link into span so we can have links in warnings
681                    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>|
682                  . $self->editor_links( $warnings )                  . $self->html_links( $warnings )
683                  . qq|</code></span>|                  . qq|</code></span>|
684                  ;                  ;
685  }  }
# Line 620  sub backtrace { Line 697  sub backtrace {
697          my ($self) = @_;          my ($self) = @_;
698    
699          my @backtrace;          my @backtrace;
700          foreach ( 0 .. 5 ) {          foreach ( 1 .. 5 ) { # 0 = backtrace
701                  my (                  my (
702                          $package,$path,$line                          $package,$path,$line
703                          # subroutine hasargs                          # subroutine hasargs
# Line 635  sub backtrace { Line 712  sub backtrace {
712          return @backtrace;          return @backtrace;
713  }  }
714    
715    =head2 checkbox
716    
717    Generate checkbox html markup from some attribute
718    
719      my $html = $self->checkbox('attribute_name', $value);
720    
721    =cut
722    
723    sub checkbox {
724            my ($self,$name,$value) = @_;
725            my $checked = '';
726            my $all_checkboxes = eval { $self->$name };
727            warn "ERROR tried to get checkbox value for '$name' which is unknown: $@" if $@;
728            $all_checkboxes = [ $all_checkboxes ] unless ref($all_checkboxes) eq 'ARRAY'; # sigh, too chatty
729            $checked = ' checked' if grep { defined $_ && $_ eq $value } @$all_checkboxes;
730            warn "# checkbox $name $value $checked\t", $self->dump( $self->$name );
731            qq|<input name="$name" value="$value" type="checkbox"$checked>|;
732    }
733    
734    =head2 strip
735    
736    Strip whitespace around content
737    
738      my $stripped = strip('  no more whitespace around this   ');
739    
740    =cut
741    
742    sub strip {
743            my $t = shift;
744            $t =~ s{^\s+}{}gs;
745            $t =~ s{>\s+<}{><}gs;
746            $t =~ s{\s+$}{}gs;
747            return $t;
748    }
749    
750  1;  1;

Legend:
Removed from v.674  
changed lines
  Added in v.881

  ViewVC Help
Powered by ViewVC 1.1.26