/[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 837 by dpavlin, Sun Dec 14 15:13:55 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 184  sub add_css { Line 185  sub add_css {
185          | );          | );
186  }  }
187    
188    sub add_js {
189            my ($self,$js) = @_;
190            my ( $package, $path, $line ) = caller;
191    
192            if ( $js =~ m{http.*\.js} ) {
193                    $self->add_head( qq|
194                            <script type="text/javascript" src="$js">
195                            /* via $package at $path line $line */
196                            </script>
197                    |);
198            } else {
199                    $self->add_head( qq|
200                            <script type="text/javascript">
201                            /* via $package at $path line $line */
202                            $js
203                            </script>
204                    | );
205            };
206    }
207    
208  our $reload_counter = 0;  our $reload_counter = 0;
209    
210    
# Line 225  sub page { Line 246  sub page {
246          if ( ! $body ) {          if ( ! $body ) {
247                  my $run = $a->{run} || 'as_markup';                  my $run = $a->{run} || 'as_markup';
248                  warn "# no body, invoke $self->$run on ", ref($self);                  warn "# no body, invoke $self->$run on ", ref($self);
249                  eval {                  $body = $self->$run;
                         $body = $self->$run;  
                 };  
                 $body = $self->error( $@, '' ) if $@;  
250          }          }
251          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
252                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
# Line 344  sub html_links { Line 362  sub html_links {
362          return $error;          return $error;
363  }  }
364    
365    sub html_self {
366            my $self = shift;
367            my $html = $self;
368            $html =~ s{([\w:]+)=}{<a target="$1" href="/$1" title="introspect $1">$1</a>=}gsm;
369            return $html;
370    }
371    
372  =head2 error  =head2 error
373    
374  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 381  sub error {
381          my $error = join(" ", @_);          my $error = join(" ", @_);
382    
383          my $fatal = '';          my $fatal = '';
384            my $backtrace = '';
385    
386          if ( $error !~ m{\n$} ) {          if ( $error !~ m{\n$} ) {
387                  if ( my @backtrace = $self->backtrace ) {                  if ( my @backtrace = $self->backtrace ) {
388                          $error .= "\n\t" . join( "\n\t", @backtrace );                          $backtrace =
389                                      "\n" . $self->html_self . "->error backtrace\n\t"
390                                    . $self->html_links( join( "\n\t", @backtrace ) )
391                                    ;
392                          $fatal = qq| frey-fatal|;                          $fatal = qq| frey-fatal|;
393                  }                  }
394          }          }
395    
396          warn "ERROR: $error\n";          warn "ERROR: $error\n";
397          return          $self->add_icon('error');
398                  qq|<pre class="frey-error$fatal">|          $error = $self->html_links( $error );
399                  . $self->html_links( $error ) .          return qq|<pre class="frey-error$fatal">$error $backtrace</pre>| ;
                 qq|</pre>|  
                 ;  
400  }  }
401    
402  =head1 Status line  =head1 Status line
# Line 408  sub clean_status { Line 435  sub clean_status {
435          my ($self) = shift;          my ($self) = shift;
436          @head = ( 'static/frey.css' );          @head = ( 'static/frey.css' );
437          @status = (          @status = (
438                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },                  { 'ClassBrowser' => Frey::Class::Browser->new( usage_sort => 1, usage_on_top => 0 )->as_markup },
439                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
440                  { 'INC' => Frey::INC->new->as_markup },                  { 'INC' => Frey::INC->new->as_markup },
441          );          );
# Line 445  sub DEMOLISH { Line 472  sub DEMOLISH {
472    
473  sub icon_path {  sub icon_path {
474          my ($self,$class,$variant) = @_;          my ($self,$class,$variant) = @_;
475          my $icon = $class;  
476          $icon ||= $self->title;          sub icon_exists {
477          $icon =~ s{::}{/}g;                  my $class = shift;
478          $icon .= "/$variant" if $variant;                  $class =~ s{::}{/}g;
479          my $path = 'static/icons/' . $icon . '.png';                  $class .= "/$variant" if $variant;
480          if ( -e $path ) {                  my $icon_path = 'static/icons/' . $class . '.png';
481                  warn "# $class from $self icon_path $path" if $self->debug;                  return $icon_path if -e $icon_path;
482                  return $path;                  return;
483          } else {          }
484                  $self->TODO( "add $path icon for $class" );  
485            my $path = icon_exists( $class );
486            if ( ! $path ) {
487                    my $super_class = $class;
488                    while ( $super_class =~ s{::[^:]+$}{} && ! $path ) {
489                            $path = icon_exists( $super_class ) unless $super_class eq 'Frey'; # don't default on Frey icon
490                    }
491            }
492    
493            if ( ! $path ) {
494                    $self->TODO( "add icon for $class" . ( $variant ? " variant $variant" : '' ) );
495                  return undef;                  return undef;
496          }          }
497    
498            warn "# $class from $self icon_path $path" if $self->debug;
499            return $path;
500  }  }
501    
502  sub add_icon {  sub add_icon {
503          my ($self,$variant) = @_;          my ($self,$variant) = @_;
504    
505          my $class = ref($self);          my $class = $self->class if $self->can('class');
506          $class = $self->class if $self->can('class');          #$class ||= $self->title;
507            $class ||= ref($self);
508          my $icon_path = $self->icon_path( $class, $variant ) || return;          my $icon_path = $self->icon_path( $class, $variant ) || return;
509    
510          $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 675  sub backtrace {
675          my ($self) = @_;          my ($self) = @_;
676    
677          my @backtrace;          my @backtrace;
678          foreach ( 0 .. 5 ) {          foreach ( 1 .. 5 ) { # 0 = backtrace
679                  my (                  my (
680                          $package,$path,$line                          $package,$path,$line
681                          # subroutine hasargs                          # subroutine hasargs
# Line 668  sub checkbox { Line 709  sub checkbox {
709          qq|<input name="$name" value="$value" type="checkbox"$checked>|;          qq|<input name="$name" value="$value" type="checkbox"$checked>|;
710  }  }
711    
712    =head2 strip
713    
714    Strip whitespace around content
715    
716      my $stripped = strip('  no more whitespace around this   ');
717    
718    =cut
719    
720    sub strip {
721            my $t = shift;
722            $t =~ s{^\s+}{}gs;
723            $t =~ s{>\s+<}{><}gs;
724            $t =~ s{\s+$}{}gs;
725            return $t;
726    }
727    
728  1;  1;

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

  ViewVC Help
Powered by ViewVC 1.1.26