/[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 839 by dpavlin, Sun Dec 14 22:47:48 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+).+?/\1|[^>]+/?)>}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 173  sub add_head { Line 174  sub add_head {
174    
175  }  }
176    
177    sub _add_css_js {
178            my ( $self, $what, $content ) = @_;
179    
180            my $tag  = $what eq 'css' ? 'style'    : 'script';
181            my $type = $what eq 'css' ? 'text/css' : 'text/javascript';
182            my $head;
183    
184            my ( $package, $path, $line ) = caller(1);
185    
186            if ( $content =~ m{\.(js|css)} ) {
187                    $content = "/$content" if -e $content;
188                    if ( $what eq 'js' ) {
189                            $head = qq|
190                                    <$tag type="$type" src="$content">
191                                    /* via $package at $path line $line */
192                                    </$tag>
193                            |;
194                    } else {
195                            $head = qq|
196                                    <link rel="stylesheet" type="$type" href="$content">
197                                    <!-- via $package at $path line $line -->
198                            |;
199                    }
200            } else {
201                    $head = qq|
202                            <$tag type="$type">
203                            /* via $package at $path line $line */
204                            $content
205                            </$tag>
206                    |;
207            };
208            $self->add_head( $head );
209    }
210    
211  sub add_css {  sub add_css {
212          my ($self,$css) = @_;          my ($self,$css) = @_;
213          my ( $package, $path, $line ) = caller;          $self->_add_css_js( 'css', $css );
214          $self->add_head( qq|  }
215          <style type="text/css">  
216          /* via $package at $path line $line */  sub add_js {
217          $css          my ($self,$js) = @_;
218          </style>          $self->_add_css_js( 'js', $js );
         | );  
219  }  }
220    
221  our $reload_counter = 0;  our $reload_counter = 0;
# Line 225  sub page { Line 259  sub page {
259          if ( ! $body ) {          if ( ! $body ) {
260                  my $run = $a->{run} || 'as_markup';                  my $run = $a->{run} || 'as_markup';
261                  warn "# no body, invoke $self->$run on ", ref($self);                  warn "# no body, invoke $self->$run on ", ref($self);
262                  eval {                  $body = $self->$run;
                         $body = $self->$run;  
                 };  
                 $body = $self->error( $@, '' ) if $@;  
263          }          }
264          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
265                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
# Line 304  sub editor { Line 335  sub editor {
335          qq|>$class</a>|;          qq|>$class</a>|;
336  }  }
337    
338  =head2 editor_links  =head2 html_links
339    
340  Create HTML links to editor for perl error message  Create HTML links to editor for perl error message
341    
342    my $html = $self->editor_links( $error )    my $html = $self->html_links( $error )
343    
344  =cut  =cut
345    
346  sub editor_links {  sub html_links {
347          my ( $self, $error ) = @_;          my ( $self, $error ) = @_;
348    
349            $error = $self->strip_full_path( $error );
350    
351  #       $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
352    
353          # perl's backtrace          # perl's backtrace
354          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
355                  {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;
356    
357          $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}          $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}
358                  {$1<a target="$2" href="/$2">$2</a>$3}gsm;                  {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm
359            || # or anything that looks like "Class::Name"
360            $error =~ s{"(\w+(?:::\w+)+)"}
361                    {"<a target="$1" href="/$1" title="introspect $1">$1</a>"}gsm;
362    
363          # method error messages          # method error messages
364  #       $error =~ s{(method ")(\w+)"}          # FIXME replace with link to Frey::Introspect data
365  #               {$1<a target="/Frey::Shell::Grep?pattern=$2">$2</a>"}gsm; # FIXME replace with link to Frey::Introspect data          $error =~ s{(method ")(\w+)(" via)}
366                    {$1<a target="$2" href="/Frey::Shell::Grep/as_markup?pattern=$2" title="grep $2">$2</a>$3}gsm;
367    
368            # link paths to editor
369            $error =~ s{((?:lib|t)/[\S]+)\s+(\d+\s+bytes)}
370                    {<a target="editor" href="/editor+$1+1" title="vi $1 [$2]">$1</a>}gsm;
371    
372          # anything that looks like "Class::Name"          $error =~ s{(class ")([\w:]+)(")}
373          $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;  
374    
375          return $error;          return $error;
376  }  }
377    
378    sub html_self {
379            my $self = shift;
380            my $html = $self;
381            $html =~ s{([\w:]+)=}{<a target="$1" href="/$1" title="introspect $1">$1</a>=}gsm;
382            return $html;
383    }
384    
385  =head2 error  =head2 error
386    
387  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 394  sub error {
394          my $error = join(" ", @_);          my $error = join(" ", @_);
395    
396          my $fatal = '';          my $fatal = '';
397            my $backtrace = '';
398    
399          if ( $error !~ m{\n$} ) {          if ( $error !~ m{\n$} ) {
400                  if ( my @backtrace = $self->backtrace ) {                  if ( my @backtrace = $self->backtrace ) {
401                          $error .= "\n\t" . join( "\n\t", @backtrace );                          $backtrace =
402                          $fatal = qq| class="fatal"|;                                    "\n" . $self->html_self . "->error backtrace\n\t"
403                                    . $self->html_links( join( "\n\t", @backtrace ) )
404                                    ;
405                            $fatal = qq| frey-fatal|;
406                  }                  }
407          }          }
408    
409          warn "ERROR: $error\n";          warn "ERROR: $error\n";
410          return          $self->add_icon('error');
411                  qq|<pre class="frey-error$fatal">|          $error = $self->html_links( $error );
412                  . $self->editor_links( $error ) .          return qq|<pre class="frey-error$fatal">$error $backtrace</pre>| ;
                 qq|</pre>|  
                 ;  
413  }  }
414    
415  =head1 Status line  =head1 Status line
# Line 399  sub clean_status { Line 448  sub clean_status {
448          my ($self) = shift;          my ($self) = shift;
449          @head = ( 'static/frey.css' );          @head = ( 'static/frey.css' );
450          @status = (          @status = (
451                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },                  { 'ClassBrowser' => Frey::Class::Browser->new( usage_sort => 1, usage_on_top => 0 )->as_markup },
452                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
453                  { 'INC' => Frey::INC->new->as_markup },                  { 'INC' => Frey::INC->new->as_markup },
454          );          );
# Line 436  sub DEMOLISH { Line 485  sub DEMOLISH {
485    
486  sub icon_path {  sub icon_path {
487          my ($self,$class,$variant) = @_;          my ($self,$class,$variant) = @_;
488          my $icon = $class;  
489          $icon =~ s{::}{/}g;          sub icon_exists {
490          $icon .= "/$variant" if $variant;                  my $class = shift;
491          my $path = 'static/icons/' . $icon . '.png';                  $class =~ s{::}{/}g;
492          if ( -e $path ) {                  $class .= "/$variant" if $variant;
493                  warn "# $class from $self icon_path $path" if $self->debug;                  my $icon_path = 'static/icons/' . $class . '.png';
494                  return $path;                  return $icon_path if -e $icon_path;
495          } else {                  return;
496                  $self->TODO( "add $path icon for $class" );          }
497    
498            my $path = icon_exists( $class );
499            if ( ! $path ) {
500                    my $super_class = $class;
501                    while ( $super_class =~ s{::[^:]+$}{} && ! $path ) {
502                            $path = icon_exists( $super_class ) unless $super_class eq 'Frey'; # don't default on Frey icon
503                    }
504            }
505    
506            if ( ! $path ) {
507                    $self->TODO( "add icon for $class" . ( $variant ? " variant $variant" : '' ) );
508                  return undef;                  return undef;
509          }          }
510    
511            warn "# $class from $self icon_path $path" if $self->debug;
512            return $path;
513  }  }
514    
515  sub add_icon {  sub add_icon {
516          my ($self,$variant) = @_;          my ($self,$variant) = @_;
517    
518          my $class = ref($self);          my $class = $self->class if $self->can('class');
519          $class = $self->class if $self->can('class');          #$class ||= $self->title;
520            $class ||= ref($self);
521          my $icon_path = $self->icon_path( $class, $variant ) || return;          my $icon_path = $self->icon_path( $class, $variant ) || return;
522    
523          $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 561  sub log_path {
561          $Frey::Bootstrap::log_path || die "no log_path?";          $Frey::Bootstrap::log_path || die "no log_path?";
562  }  }
563    
 our $last_log_pos  = 0;  
 our $last_log_line = 0;  
   
564  our $pwd = `pwd`;  our $pwd = `pwd`;
565  chomp $pwd;  chomp $pwd;
566    
567    sub strip_full_path {
568            my ($self, $msg) = @_;
569            # Mojo seems to expand warn messages to full path which is annoying
570            $msg =~ s{/[^/]+/\.\./}{/}gs;
571            $msg =~ s{$pwd/*}{}gs;
572            return $msg;
573    }
574    
575    our $last_log_pos  = 0;
576    our $last_log_line = 0;
577    
578  sub warnings_html {  sub warnings_html {
579          my ($self,$level) = shift;          my ($self,$level) = shift;
580          $level ||= $self->debug,          $level ||= $self->debug,
# Line 557  sub warnings_html { Line 629  sub warnings_html {
629                  if ( m{^(#*)} ) {                  if ( m{^(#*)} ) {
630    
631                          my $level = $1;                          my $level = $1;
632                          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;  
633    
634                          my $spacer = ' ';                          my $spacer = ' ';
635                          my $real_msg = expand( $msg );                          my $real_msg = expand( $msg );
# Line 602  sub warnings_html { Line 670  sub warnings_html {
670          return          return
671                  # 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
672                    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>|
673                  . $self->editor_links( $warnings )                  . $self->html_links( $warnings )
674                  . qq|</code></span>|                  . qq|</code></span>|
675                  ;                  ;
676  }  }
# Line 620  sub backtrace { Line 688  sub backtrace {
688          my ($self) = @_;          my ($self) = @_;
689    
690          my @backtrace;          my @backtrace;
691          foreach ( 0 .. 5 ) {          foreach ( 1 .. 5 ) { # 0 = backtrace
692                  my (                  my (
693                          $package,$path,$line                          $package,$path,$line
694                          # subroutine hasargs                          # subroutine hasargs
# Line 635  sub backtrace { Line 703  sub backtrace {
703          return @backtrace;          return @backtrace;
704  }  }
705    
706    =head2 checkbox
707    
708    Generate checkbox html markup from some attribute
709    
710      my $html = $self->checkbox('attribute_name', $value);
711    
712    =cut
713    
714    sub checkbox {
715            my ($self,$name,$value) = @_;
716            my $checked = '';
717            my $all_checkboxes = eval { $self->$name };
718            warn "ERROR tried to get checkbox value for '$name' which is unknown: $@" if $@;
719            $all_checkboxes = [ $all_checkboxes ] unless ref($all_checkboxes) eq 'ARRAY'; # sigh, too chatty
720            $checked = ' checked' if grep { defined $_ && $_ eq $value } @$all_checkboxes;
721            warn "# checkbox $name $value $checked\t", $self->dump( $self->$name );
722            qq|<input name="$name" value="$value" type="checkbox"$checked>|;
723    }
724    
725    =head2 strip
726    
727    Strip whitespace around content
728    
729      my $stripped = strip('  no more whitespace around this   ');
730    
731    =cut
732    
733    sub strip {
734            my $t = shift;
735            $t =~ s{^\s+}{}gs;
736            $t =~ s{>\s+<}{><}gs;
737            $t =~ s{\s+$}{}gs;
738            return $t;
739    }
740    
741  1;  1;

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

  ViewVC Help
Powered by ViewVC 1.1.26