/[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 865 by dpavlin, Tue Dec 16 21:09:32 2008 UTC
# Line 94  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+)|[^>]+)/?>}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 116  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;          warn "# _inline $path";
122            -e $path && -s $path < $self->inline_smaller_than && -s $path;
123  }  }
124    
125  sub _head_html {  sub _head_html {
# Line 127  sub _head_html { Line 128  sub _head_html {
128          foreach my $path ( @head ) {          foreach my $path ( @head ) {
129                  $path =~ s!^/!!;                  $path =~ s!^/!!;
130                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
131                          $out .= $self->_inline_path( $path ) ?                          my $size;
132                                  qq|<script type="text/javascript">\n/* inline $path */\n\n| . read_file($path) . qq|\n</script>| :                          $out .= $size = _inline( $path ) ?
133                                    qq|<script type="text/javascript">\n/* inline $path $size bytes */\n\n| . read_file($path) . qq|\n</script>| :
134                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
135                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
136                          $out .= $self->_inline_path( $path ) ?                          my $size;
137                                  qq|<style type="text/css">\n/* inline $path */\n\n| . read_file( $path ) . qq|\n</style>| :                          $out .= $size = _inline( $path ) ?
138                                    qq|<style type="text/css">\n/* inline $path $size bytes */\n\n| . read_file( $path ) . qq|\n</style>| :
139                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
140                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
141                          $out .= $path;                          $out .= $path;
# Line 174  sub add_head { Line 177  sub add_head {
177    
178  }  }
179    
180    sub _add_css_js {
181            my ( $self, $what, $content ) = @_;
182    
183            my $tag  = $what eq 'css' ? 'style'    : 'script';
184            my $type = $what eq 'css' ? 'text/css' : 'text/javascript';
185            my $head;
186    
187            my ( $package, $path, $line ) = caller(1);
188    
189            if ( $content =~ m{\.(js|css)} ) {
190                    $content = "/$content" if -e $content;
191                    if ( $content =~ $re_html ) {
192                            $head = qq|
193                                    $content
194                                    <!-- $type via $package at $path line $line -->
195                            |;
196                    } elsif ( $what eq 'js' ) {
197                            $head = qq|
198                                    <$tag type="$type" src="$content">
199                                    /* $what via $package at $path line $line */
200                                    </$tag>
201                            |;
202                    } else {
203                            $head = qq|
204                                    <link rel="stylesheet" type="$type" href="$content">
205                                    <!-- $what via $package at $path line $line -->
206                            |;
207                    }
208            } else {
209                    $head = qq|
210                            <$tag type="$type">
211                            /* via $package at $path line $line */
212                            $content
213                            </$tag>
214                    |;
215            };
216            $self->add_head( $head );
217    }
218    
219  sub add_css {  sub add_css {
220          my ($self,$css) = @_;          my ($self,$css) = @_;
221          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>  
         | );  
222  }  }
223    
224  sub add_js {  sub add_js {
225          my ($self,$js) = @_;          my ($self,$js) = @_;
226          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>  
                 | );  
         };  
227  }  }
228    
229  our $reload_counter = 0;  our $reload_counter = 0;
# Line 246  sub page { Line 267  sub page {
267          if ( ! $body ) {          if ( ! $body ) {
268                  my $run = $a->{run} || 'as_markup';                  my $run = $a->{run} || 'as_markup';
269                  warn "# no body, invoke $self->$run on ", ref($self);                  warn "# no body, invoke $self->$run on ", ref($self);
270                  eval {                  $body = $self->$run;
                         $body = $self->$run;  
                 };  
                 $body = $self->error( $@, '' ) if $@;  
271          }          }
272          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
273                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
# Line 365  sub html_links { Line 383  sub html_links {
383          return $error;          return $error;
384  }  }
385    
386    sub html_self {
387            my $self = shift;
388            my $html = $self;
389            $html =~ s{([\w:]+)=}{<a target="$1" href="/$1" title="introspect $1">$1</a>=}gsm;
390            return $html;
391    }
392    
393  =head2 error  =head2 error
394    
395  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 402  sub error {
402          my $error = join(" ", @_);          my $error = join(" ", @_);
403    
404          my $fatal = '';          my $fatal = '';
405            my $backtrace = '';
406    
407          if ( $error !~ m{\n$} ) {          if ( $error !~ m{\n$} ) {
408                  if ( my @backtrace = $self->backtrace ) {                  if ( my @backtrace = $self->backtrace ) {
409                          $error .= "\n\t" . join( "\n\t", @backtrace );                          $backtrace =
410                                      "\n" . $self->html_self . "->error backtrace\n\t"
411                                    . $self->html_links( join( "\n\t", @backtrace ) )
412                                    ;
413                          $fatal = qq| frey-fatal|;                          $fatal = qq| frey-fatal|;
414                  }                  }
415          }          }
416    
417          warn "ERROR: $error\n";          warn "ERROR: $error\n";
418          return          $self->add_icon('error');
419                  qq|<pre class="frey-error$fatal">|          $error = $self->html_links( $error );
420                  . $self->html_links( $error ) .          return qq|<pre class="frey-error$fatal">$error $backtrace</pre>| ;
                 qq|</pre>|  
                 ;  
421  }  }
422    
423  =head1 Status line  =head1 Status line
# Line 466  sub DEMOLISH { Line 493  sub DEMOLISH {
493    
494  sub icon_path {  sub icon_path {
495          my ($self,$class,$variant) = @_;          my ($self,$class,$variant) = @_;
 #       $class ||= $self->title;  
496    
497          sub icon_exists {          sub icon_exists {
498                  my $class = shift;                  my $class = shift;
# Line 478  sub icon_path { Line 504  sub icon_path {
504          }          }
505    
506          my $path = icon_exists( $class );          my $path = icon_exists( $class );
507            if ( ! $path ) {
508          while ( $class =~ s{::[^:]+$}{} && ! $path ) {                  my $super_class = $class;
509                  $path = icon_exists( $class ) unless $class eq 'Frey'; # don't default on Frey icon                  while ( $super_class =~ s{::[^:]+$}{} && ! $path ) {
510                            $path = icon_exists( $super_class ) unless $super_class eq 'Frey'; # don't default on Frey icon
511                    }
512          }          }
513    
514          if ( -e $path ) {          if ( ! $path ) {
515                  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" );  
516                  return undef;                  return undef;
517          }          }
518    
519            warn "# $class from $self icon_path $path" if $self->debug;
520            return $path;
521  }  }
522    
523  sub add_icon {  sub add_icon {
524          my ($self,$variant) = @_;          my ($self,$variant) = @_;
525    
526          my $class = ref($self);          my $class = $self->class if $self->can('class');
527          $class = $self->class if $self->can('class');          #$class ||= $self->title;
528            $class ||= ref($self);
529          my $icon_path = $self->icon_path( $class, $variant ) || return;          my $icon_path = $self->icon_path( $class, $variant ) || return;
530    
531          $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 696  sub backtrace {
696          my ($self) = @_;          my ($self) = @_;
697    
698          my @backtrace;          my @backtrace;
699          foreach ( 0 .. 5 ) {          foreach ( 1 .. 5 ) { # 0 = backtrace
700                  my (                  my (
701                          $package,$path,$line                          $package,$path,$line
702                          # subroutine hasargs                          # subroutine hasargs

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

  ViewVC Help
Powered by ViewVC 1.1.26