/[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 816 by dpavlin, Thu Dec 11 21:36:04 2008 UTC revision 961 by dpavlin, Wed Jan 7 19:41:48 2009 UTC
# Line 71  has 'html_dump_width' => ( Line 71  has 'html_dump_width' => (
71          default => 250,          default => 250,
72  );  );
73    
74    has 'wrap_in_page' => (
75            documentation => 'wrap full html page with status bar around content',
76            is => 'rw',
77            isa => 'Bool',
78            default => 1,
79    );
80    
81  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
82  my $escape_re  = join '|' => keys %escape;  my $escape_re  = join '|' => keys %escape;
83    
# Line 80  sub html_escape { Line 87  sub html_escape {
87          return $html;          return $html;
88  }  }
89    
90    # from Mojo::ByteStream
91    sub url_escape {
92            my ( $self, $url, $pattern ) = @_;
93            $pattern ||= 'A-Za-z0-9\-\.\_\~';
94            $url =~ s/([^$pattern])/sprintf('%%%02X',ord($1))/ge;
95            return $url;
96    }
97    
98  sub html_dump {  sub html_dump {
99          my ( $self, $dump ) = @_;          my ( $self, $dump ) = @_;
100          $dump = dump( $dump ) if ref($dump);          $dump = dump( $dump ) if ref($dump);
# Line 94  sub html_dump { Line 109  sub html_dump {
109  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }
110  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }
111    
112  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
113    
114  sub popup_dropdown {  sub popup_dropdown {
115          my ( $self, $type, $name, $content, $full ) = @_;          my ( $self, $type, $name, $content, $full ) = @_;
# Line 116  sub popup_dropdown { Line 131  sub popup_dropdown {
131          }          }
132  }  }
133    
134  sub _inline_path {  sub _inline {
135          my ( $self, $path ) = @_;          my ( $self, $path ) = @_;
136          -s $path < $self->inline_smaller_than;          return unless defined $path;
137            warn "# _inline $path";
138            -e $path && -s $path < $self->inline_smaller_than && -s $path;
139  }  }
140    
141  sub _head_html {  sub _head_html {
# Line 127  sub _head_html { Line 144  sub _head_html {
144          foreach my $path ( @head ) {          foreach my $path ( @head ) {
145                  $path =~ s!^/!!;                  $path =~ s!^/!!;
146                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
147                          $out .= $self->_inline_path( $path ) ?                          my $size;
148                                  qq|<script type="text/javascript">\n/* inline $path */\n\n| . read_file($path) . qq|\n</script>| :                          $out .= $size = _inline( $path ) ?
149                                    qq|<script type="text/javascript">\n/* inline $path $size bytes */\n\n| . read_file($path) . qq|\n</script>| :
150                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
151                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
152                          $out .= $self->_inline_path( $path ) ?                          my $size;
153                                  qq|<style type="text/css">\n/* inline $path */\n\n| . read_file( $path ) . qq|\n</style>| :                          $out .= $size = _inline( $path ) ?
154                                    qq|<style type="text/css">\n/* inline $path $size bytes */\n\n| . read_file( $path ) . qq|\n</style>| :
155                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
156                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
157                          $out .= $path;                          $out .= $path;
# Line 174  sub add_head { Line 193  sub add_head {
193    
194  }  }
195    
196    sub _add_css_js {
197            my ( $self, $what, $content ) = @_;
198    
199            my $tag  = $what eq 'css' ? 'style'    : 'script';
200            my $type = $what eq 'css' ? 'text/css' : 'text/javascript';
201            my $head;
202    
203            my ( $package, $path, $line ) = caller(1);
204    
205            $content = "/$content" if $content !~ m{[\n\r]} && -e $content;
206            if ( $content =~ $re_html ) {
207                    $head = qq|
208                            $content
209                            <!-- $type via $package at $path line $line -->
210                    |;
211            } elsif ( $content =~ m{^(/\w+|https?://)} && $content !~ m{[\n\r]} ) {
212                    if ( $what eq 'js' ) {
213                            $head = qq|
214                                    <$tag type="$type" src="$content">
215                                    /* $what via $package at $path line $line */
216                                    </$tag>
217                            |;
218                    } else {
219                            $head = qq|
220                                    <link rel="stylesheet" type="$type" href="$content">
221                                    <!-- $what via $package at $path line $line -->
222                            |;
223                    }
224            } else {
225                    $head = qq|
226                            <$tag type="$type">
227                            /* via $package at $path line $line */
228                            $content
229                            </$tag>
230                    |;
231            };
232            $self->add_head( $head );
233    }
234    
235  sub add_css {  sub add_css {
236          my ($self,$css) = @_;          my ($self,$css) = @_;
237          my ( $package, $path, $line ) = caller;          $self->_add_css_js( 'css', $css );
         $self->add_head( qq|  
         <style type="text/css">  
         /* via $package at $path line $line */  
         $css  
         </style>  
         | );  
238  }  }
239    
240  sub add_js {  sub add_js {
241          my ($self,$js) = @_;          my ($self,$js) = @_;
242          my ( $package, $path, $line ) = caller;          $self->_add_css_js( 'js', $js );
   
         if ( $js =~ m{http.*\.js} ) {  
                 $self->add_head( qq|  
                         <script type="text/javascript" src="$js">  
                         /* via $package at $path line $line */  
                         </script>  
                 |);  
         } else {  
                 $self->add_head( qq|  
                         <script type="text/javascript">  
                         /* via $package at $path line $line */  
                         $js  
                         </script>  
                 | );  
         };  
243  }  }
244    
245  our $reload_counter = 0;  our $reload_counter = 0;
246    
247    
248  =head2 page  =head2 html_page
249    
250    $self->page(    $self->html_page(
251          title => 'page title',          title => 'page title',
252          head  => '<!-- optional head markup -->',          head  => '<!-- optional head markup -->',
253          body  => '<b>Page Body</b>',          body  => '<b>Page Body</b>',
# Line 223  sub status { @status }; Line 260  sub status { @status };
260    
261  our $icon_html;  our $icon_html;
262    
263  sub page {  sub html_page {
264          my $self = shift;          my $self = shift;
265          my $a = {@_};          my $a = {@_};
266    
         warn "## page ",dump($a);  
   
267          $reload_counter++;          $reload_counter++;
268    
269          my $status_line = '';          my $status_line = '';
# Line 246  sub page { Line 281  sub page {
281          if ( ! $body ) {          if ( ! $body ) {
282                  my $run = $a->{run} || 'as_markup';                  my $run = $a->{run} || 'as_markup';
283                  warn "# no body, invoke $self->$run on ", ref($self);                  warn "# no body, invoke $self->$run on ", ref($self);
284                  eval {                  $body = $self->$run;
                         $body = $self->$run;  
                 };  
                 $body = $self->error( $@, '' ) if $@;  
285          }          }
286          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} || ! $self->wrap_in_page ) {
287                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
288                  return $body                  return $body
289          } elsif ( ! defined $body ) {          } elsif ( ! defined $body ) {
# Line 280  sub page { Line 312  sub page {
312    
313          $self->add_icon unless $icon_html;          $self->add_icon unless $icon_html;
314    
315            my $title = undef
316                    || $a->{title}
317                    || $self->title
318                    || ref($self)
319                    ;
320    
321    #       $title =~ s{(\w)\w+::}{$1:}g; # XXX compress names of classes
322    
323          my $html = join("\n",          my $html = join("\n",
324                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
325                  $self->_head_html,                  $self->_head_html,
326                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',                  qq|<title>$title</title>|,
327                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
328                  ( $icon_html || '<!-- no icon -->' ),                  ( $icon_html || '<!-- no icon -->' ),
329                  ( $a->{head} || '' ),                  ( $a->{head} || '' ),
# Line 365  sub html_links { Line 405  sub html_links {
405          return $error;          return $error;
406  }  }
407    
408    sub html_self {
409            my $self = shift;
410            my $html = $self;
411            $html =~ s{([\w:]+)=}{<a target="$1" href="/$1" title="introspect $1">$1</a>=}gsm;
412            return $html;
413    }
414    
415  =head2 error  =head2 error
416    
417  This method will return error to browser and backtrace unless  This method will return error to browser and backtrace unless
# Line 377  sub error { Line 424  sub error {
424          my $error = join(" ", @_);          my $error = join(" ", @_);
425    
426          my $fatal = '';          my $fatal = '';
427            my $backtrace = '';
428    
429          if ( $error !~ m{\n$} ) {          if ( $error !~ m{\n$} ) {
430                  if ( my @backtrace = $self->backtrace ) {                  if ( my @backtrace = $self->backtrace ) {
431                          $error .= "\n\t" . join( "\n\t", @backtrace );                          $backtrace =
432                                      "\n" . $self->html_self . "->error backtrace\n\t"
433                                    . $self->html_links( join( "\n\t", @backtrace ) )
434                                    ;
435                          $fatal = qq| frey-fatal|;                          $fatal = qq| frey-fatal|;
436                  }                  }
437          }          }
438    
439          warn "ERROR: $error\n";          warn "ERROR: $error\n";
440          return          $self->add_icon('error');
441                  qq|<pre class="frey-error$fatal">|          $error = $self->html_links( $error );
442                  . $self->html_links( $error ) .          return qq|<pre class="frey-error$fatal">$error $backtrace</pre>| ;
                 qq|</pre>|  
                 ;  
443  }  }
444    
445  =head1 Status line  =head1 Status line
# Line 405  sub error { Line 454  sub error {
454    
455  sub add_status {  sub add_status {
456          my ( $self, $data ) = @_;          my ( $self, $data ) = @_;
457          push @status, { 'X' => [ $self->backtrace ] };          die "no data" unless $data;
458          if ( ref($data) ) {          if ( ref $data  ) {
459                  push @status, $data;                  push @status, $data;
460          } else {          } else {
461                  if ( defined $status[ $#status ] ) {                  if ( defined $status[ $#status ] ) {
# Line 466  sub DEMOLISH { Line 515  sub DEMOLISH {
515    
516  sub icon_path {  sub icon_path {
517          my ($self,$class,$variant) = @_;          my ($self,$class,$variant) = @_;
 #       $class ||= $self->title;  
518    
519          sub icon_exists {          sub icon_exists {
520                  my $class = shift;                  my $class = shift;
# Line 478  sub icon_path { Line 526  sub icon_path {
526          }          }
527    
528          my $path = icon_exists( $class );          my $path = icon_exists( $class );
529            if ( ! $path ) {
530          while ( $class =~ s{::[^:]+$}{} && ! $path ) {                  my $super_class = $class;
531                  $path = icon_exists( $class ) unless $class eq 'Frey'; # don't default on Frey icon                  while ( $super_class =~ s{::[^:]+$}{} && ! $path ) {
532                            $path = icon_exists( $super_class ) unless $super_class eq 'Frey'; # don't default on Frey icon
533                    }
534          }          }
535    
536          if ( -e $path ) {          if ( ! $path ) {
537                  warn "# $class from $self icon_path $path" if $self->debug;                  $self->TODO( "add icon for $class" . ( $variant ? " variant $variant" : '' ) );
                 return $path;  
         } else {  
                 $self->TODO( "add $path icon for $class $variant" );  
538                  return undef;                  return undef;
539          }          }
540    
541            warn "# $class from $self icon_path $path" if $self->debug;
542            return $path;
543  }  }
544    
545  sub add_icon {  sub add_icon {
546          my ($self,$variant) = @_;          my ($self,$variant) = @_;
547    
548          my $class = ref($self);          my $class = $self->class if $self->can('class');
549          $class = $self->class if $self->can('class');          #$class ||= $self->title;
550            $class ||= ref($self);
551          my $icon_path = $self->icon_path( $class, $variant ) || return;          my $icon_path = $self->icon_path( $class, $variant ) || return;
552    
553          $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 667  sub backtrace { Line 718  sub backtrace {
718          my ($self) = @_;          my ($self) = @_;
719    
720          my @backtrace;          my @backtrace;
721          foreach ( 0 .. 5 ) {          foreach ( 1 .. 5 ) { # 0 = backtrace
722                  my (                  my (
723                          $package,$path,$line                          $package,$path,$line
724                          # subroutine hasargs                          # subroutine hasargs

Legend:
Removed from v.816  
changed lines
  Added in v.961

  ViewVC Help
Powered by ViewVC 1.1.26