/[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 725 by dpavlin, Fri Dec 5 17:33:00 2008 UTC revision 838 by dpavlin, Sun Dec 14 22:15:51 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 93  sub html_dump { Line 94  sub html_dump {
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_something {
178            my ( $self, $regex, $tag, $type, $content ) = @_;
179    
180            my ( $package, $path, $line ) = caller(1);
181    
182            warn "# $regex $tag $type $content caller $package $path $line";
183    
184            if ( $content =~ $regex ) {
185                    $content = "/$content" if -e $content;
186                    $self->add_head( strip ( qq|
187                            <$tag type="$type"  src="$content">
188                            /* via $package at $path line $line */
189                            </$tag>
190                    | ) );
191            } else {
192                    $self->add_head(qq|
193                            <$tag type="$type">
194                            /* via $package at $path line $line */
195                            $content
196                            </$tag>
197                    |);
198            };
199    }
200    
201  sub add_css {  sub add_css {
202          my ($self,$css) = @_;          my ($self,$css) = @_;
203          my ( $package, $path, $line ) = caller;          $self->_add_something( qr{\.css$}, qw{style text/css}, $css );
204          $self->add_head( qq|  }
205          <style type="text/css">  
206          /* via $package at $path line $line */  sub add_js {
207          $css          my ($self,$js) = @_;
208          </style>          $self->_add_something( qr{\.js$}, qw{script text/javascript}, $js );
         | );  
209  }  }
210    
211  our $reload_counter = 0;  our $reload_counter = 0;
# Line 225  sub page { Line 249  sub page {
249          if ( ! $body ) {          if ( ! $body ) {
250                  my $run = $a->{run} || 'as_markup';                  my $run = $a->{run} || 'as_markup';
251                  warn "# no body, invoke $self->$run on ", ref($self);                  warn "# no body, invoke $self->$run on ", ref($self);
252                  eval {                  $body = $self->$run;
                         $body = $self->$run;  
                 };  
                 $body = $self->error( $@, '' ) if $@;  
253          }          }
254          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
255                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
# Line 344  sub html_links { Line 365  sub html_links {
365          return $error;          return $error;
366  }  }
367    
368    sub html_self {
369            my $self = shift;
370            my $html = $self;
371            $html =~ s{([\w:]+)=}{<a target="$1" href="/$1" title="introspect $1">$1</a>=}gsm;
372            return $html;
373    }
374    
375  =head2 error  =head2 error
376    
377  This method will return error to browser and backtrace unless  This method will return error to browser and backtrace unless
# Line 356  sub error { Line 384  sub error {
384          my $error = join(" ", @_);          my $error = join(" ", @_);
385    
386          my $fatal = '';          my $fatal = '';
387            my $backtrace = '';
388    
389          if ( $error !~ m{\n$} ) {          if ( $error !~ m{\n$} ) {
390                  if ( my @backtrace = $self->backtrace ) {                  if ( my @backtrace = $self->backtrace ) {
391                          $error .= "\n\t" . join( "\n\t", @backtrace );                          $backtrace =
392                                      "\n" . $self->html_self . "->error backtrace\n\t"
393                                    . $self->html_links( join( "\n\t", @backtrace ) )
394                                    ;
395                          $fatal = qq| frey-fatal|;                          $fatal = qq| frey-fatal|;
396                  }                  }
397          }          }
398    
399          warn "ERROR: $error\n";          warn "ERROR: $error\n";
400          return          $self->add_icon('error');
401                  qq|<pre class="frey-error$fatal">|          $error = $self->html_links( $error );
402                  . $self->html_links( $error ) .          return qq|<pre class="frey-error$fatal">$error $backtrace</pre>| ;
                 qq|</pre>|  
                 ;  
403  }  }
404    
405  =head1 Status line  =head1 Status line
# Line 408  sub clean_status { Line 438  sub clean_status {
438          my ($self) = shift;          my ($self) = shift;
439          @head = ( 'static/frey.css' );          @head = ( 'static/frey.css' );
440          @status = (          @status = (
441                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },                  { 'ClassBrowser' => Frey::Class::Browser->new( usage_sort => 1, usage_on_top => 0 )->as_markup },
442                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
443                  { 'INC' => Frey::INC->new->as_markup },                  { 'INC' => Frey::INC->new->as_markup },
444          );          );
# Line 445  sub DEMOLISH { Line 475  sub DEMOLISH {
475    
476  sub icon_path {  sub icon_path {
477          my ($self,$class,$variant) = @_;          my ($self,$class,$variant) = @_;
478          my $icon = $class;  
479          $icon ||= $self->title;          sub icon_exists {
480          $icon =~ s{::}{/}g;                  my $class = shift;
481          $icon .= "/$variant" if $variant;                  $class =~ s{::}{/}g;
482          my $path = 'static/icons/' . $icon . '.png';                  $class .= "/$variant" if $variant;
483          if ( -e $path ) {                  my $icon_path = 'static/icons/' . $class . '.png';
484                  warn "# $class from $self icon_path $path" if $self->debug;                  return $icon_path if -e $icon_path;
485                  return $path;                  return;
486          } else {          }
487                  $self->TODO( "add $path icon for $class" );  
488            my $path = icon_exists( $class );
489            if ( ! $path ) {
490                    my $super_class = $class;
491                    while ( $super_class =~ s{::[^:]+$}{} && ! $path ) {
492                            $path = icon_exists( $super_class ) unless $super_class eq 'Frey'; # don't default on Frey icon
493                    }
494            }
495    
496            if ( ! $path ) {
497                    $self->TODO( "add icon for $class" . ( $variant ? " variant $variant" : '' ) );
498                  return undef;                  return undef;
499          }          }
500    
501            warn "# $class from $self icon_path $path" if $self->debug;
502            return $path;
503  }  }
504    
505  sub add_icon {  sub add_icon {
506          my ($self,$variant) = @_;          my ($self,$variant) = @_;
507    
508          my $class = ref($self);          my $class = $self->class if $self->can('class');
509          $class = $self->class if $self->can('class');          #$class ||= $self->title;
510            $class ||= ref($self);
511          my $icon_path = $self->icon_path( $class, $variant ) || return;          my $icon_path = $self->icon_path( $class, $variant ) || return;
512    
513          $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 634  sub backtrace { Line 678  sub backtrace {
678          my ($self) = @_;          my ($self) = @_;
679    
680          my @backtrace;          my @backtrace;
681          foreach ( 0 .. 5 ) {          foreach ( 1 .. 5 ) { # 0 = backtrace
682                  my (                  my (
683                          $package,$path,$line                          $package,$path,$line
684                          # subroutine hasargs                          # subroutine hasargs
# Line 668  sub checkbox { Line 712  sub checkbox {
712          qq|<input name="$name" value="$value" type="checkbox"$checked>|;          qq|<input name="$name" value="$value" type="checkbox"$checked>|;
713  }  }
714    
715    =head2 strip
716    
717    Strip whitespace around content
718    
719      my $stripped = strip('  no more whitespace around this   ');
720    
721    =cut
722    
723    sub strip {
724            my $t = shift;
725            $t =~ s{^\s+}{}gs;
726            $t =~ s{>\s+<}{><}gs;
727            $t =~ s{\s+$}{}gs;
728            return $t;
729    }
730    
731  1;  1;

Legend:
Removed from v.725  
changed lines
  Added in v.838

  ViewVC Help
Powered by ViewVC 1.1.26