/[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 835 by dpavlin, Sun Dec 14 14:13:35 2008 UTC revision 881 by dpavlin, Fri Dec 19 14:10:03 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;          return unless defined $path;
122            warn "# _inline $path";
123            -e $path && -s $path < $self->inline_smaller_than && -s $path;
124  }  }
125    
126  sub _head_html {  sub _head_html {
# Line 127  sub _head_html { Line 129  sub _head_html {
129          foreach my $path ( @head ) {          foreach my $path ( @head ) {
130                  $path =~ s!^/!!;                  $path =~ s!^/!!;
131                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
132                          $out .= $self->_inline_path( $path ) ?                          my $size;
133                                  qq|<script type="text/javascript">\n/* inline $path */\n\n| . read_file($path) . qq|\n</script>| :                          $out .= $size = _inline( $path ) ?
134                                    qq|<script type="text/javascript">\n/* inline $path $size bytes */\n\n| . read_file($path) . qq|\n</script>| :
135                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
136                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
137                          $out .= $self->_inline_path( $path ) ?                          my $size;
138                                  qq|<style type="text/css">\n/* inline $path */\n\n| . read_file( $path ) . qq|\n</style>| :                          $out .= $size = _inline( $path ) ?
139                                    qq|<style type="text/css">\n/* inline $path $size bytes */\n\n| . read_file( $path ) . qq|\n</style>| :
140                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
141                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
142                          $out .= $path;                          $out .= $path;
# Line 174  sub add_head { Line 178  sub add_head {
178    
179  }  }
180    
181    sub _add_css_js {
182            my ( $self, $what, $content ) = @_;
183    
184            my $tag  = $what eq 'css' ? 'style'    : 'script';
185            my $type = $what eq 'css' ? 'text/css' : 'text/javascript';
186            my $head;
187    
188            my ( $package, $path, $line ) = caller(1);
189    
190            if ( $content =~ m{\.(js|css)} ) {
191                    $content = "/$content" if -e $content;
192                    if ( $content =~ $re_html ) {
193                            $head = qq|
194                                    $content
195                                    <!-- $type via $package at $path line $line -->
196                            |;
197                    } elsif ( $what eq 'js' ) {
198                            $head = qq|
199                                    <$tag type="$type" src="$content">
200                                    /* $what via $package at $path line $line */
201                                    </$tag>
202                            |;
203                    } else {
204                            $head = qq|
205                                    <link rel="stylesheet" type="$type" href="$content">
206                                    <!-- $what via $package at $path line $line -->
207                            |;
208                    }
209            } else {
210                    $head = qq|
211                            <$tag type="$type">
212                            /* via $package at $path line $line */
213                            $content
214                            </$tag>
215                    |;
216            };
217            $self->add_head( $head );
218    }
219    
220  sub add_css {  sub add_css {
221          my ($self,$css) = @_;          my ($self,$css) = @_;
222          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>  
         | );  
223  }  }
224    
225  sub add_js {  sub add_js {
226          my ($self,$js) = @_;          my ($self,$js) = @_;
227          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>  
                 | );  
         };  
228  }  }
229    
230  our $reload_counter = 0;  our $reload_counter = 0;
# Line 362  sub html_links { Line 384  sub html_links {
384          return $error;          return $error;
385  }  }
386    
387    sub html_self {
388            my $self = shift;
389            my $html = $self;
390            $html =~ s{([\w:]+)=}{<a target="$1" href="/$1" title="introspect $1">$1</a>=}gsm;
391            return $html;
392    }
393    
394  =head2 error  =head2 error
395    
396  This method will return error to browser and backtrace unless  This method will return error to browser and backtrace unless
# Line 374  sub error { Line 403  sub error {
403          my $error = join(" ", @_);          my $error = join(" ", @_);
404    
405          my $fatal = '';          my $fatal = '';
406            my $backtrace = '';
407    
408          if ( $error !~ m{\n$} ) {          if ( $error !~ m{\n$} ) {
409                  if ( my @backtrace = $self->backtrace ) {                  if ( my @backtrace = $self->backtrace ) {
410                          $error .= "\n\t" . join( "\n\t", @backtrace );                          $backtrace =
411                                      "\n" . $self->html_self . "->error backtrace\n\t"
412                                    . $self->html_links( join( "\n\t", @backtrace ) )
413                                    ;
414                          $fatal = qq| frey-fatal|;                          $fatal = qq| frey-fatal|;
415                  }                  }
416          }          }
417    
418          warn "ERROR: $error\n";          warn "ERROR: $error\n";
419          $self->add_icon('error');          $self->add_icon('error');
420          return          $error = $self->html_links( $error );
421                  qq|<pre class="frey-error$fatal">|          return qq|<pre class="frey-error$fatal">$error $backtrace</pre>| ;
                 . $self->html_links( $error ) .  
                 qq|</pre>|  
                 ;  
422  }  }
423    
424  =head1 Status line  =head1 Status line
# Line 667  sub backtrace { Line 697  sub backtrace {
697          my ($self) = @_;          my ($self) = @_;
698    
699          my @backtrace;          my @backtrace;
700          foreach ( 0 .. 5 ) {          foreach ( 1 .. 5 ) { # 0 = backtrace
701                  my (                  my (
702                          $package,$path,$line                          $package,$path,$line
703                          # subroutine hasargs                          # subroutine hasargs

Legend:
Removed from v.835  
changed lines
  Added in v.881

  ViewVC Help
Powered by ViewVC 1.1.26