/[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 839 by dpavlin, Sun Dec 14 22:47:48 2008 UTC
# Line 174  sub add_head { Line 174  sub add_head {
174    
175  }  }
176    
177    sub _add_css_js {
178            my ( $self, $what, $content ) = @_;
179    
180            my $tag  = $what eq 'css' ? 'style'    : 'script';
181            my $type = $what eq 'css' ? 'text/css' : 'text/javascript';
182            my $head;
183    
184            my ( $package, $path, $line ) = caller(1);
185    
186            if ( $content =~ m{\.(js|css)} ) {
187                    $content = "/$content" if -e $content;
188                    if ( $what eq 'js' ) {
189                            $head = qq|
190                                    <$tag type="$type" src="$content">
191                                    /* via $package at $path line $line */
192                                    </$tag>
193                            |;
194                    } else {
195                            $head = qq|
196                                    <link rel="stylesheet" type="$type" href="$content">
197                                    <!-- via $package at $path line $line -->
198                            |;
199                    }
200            } else {
201                    $head = qq|
202                            <$tag type="$type">
203                            /* via $package at $path line $line */
204                            $content
205                            </$tag>
206                    |;
207            };
208            $self->add_head( $head );
209    }
210    
211  sub add_css {  sub add_css {
212          my ($self,$css) = @_;          my ($self,$css) = @_;
213          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>  
         | );  
214  }  }
215    
216  sub add_js {  sub add_js {
217          my ($self,$js) = @_;          my ($self,$js) = @_;
218          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>  
                 | );  
         };  
219  }  }
220    
221  our $reload_counter = 0;  our $reload_counter = 0;
# Line 362  sub html_links { Line 375  sub html_links {
375          return $error;          return $error;
376  }  }
377    
378    sub html_self {
379            my $self = shift;
380            my $html = $self;
381            $html =~ s{([\w:]+)=}{<a target="$1" href="/$1" title="introspect $1">$1</a>=}gsm;
382            return $html;
383    }
384    
385  =head2 error  =head2 error
386    
387  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 394  sub error {
394          my $error = join(" ", @_);          my $error = join(" ", @_);
395    
396          my $fatal = '';          my $fatal = '';
397            my $backtrace = '';
398    
399          if ( $error !~ m{\n$} ) {          if ( $error !~ m{\n$} ) {
400                  if ( my @backtrace = $self->backtrace ) {                  if ( my @backtrace = $self->backtrace ) {
401                          $error .= "\n\t" . join( "\n\t", @backtrace );                          $backtrace =
402                                      "\n" . $self->html_self . "->error backtrace\n\t"
403                                    . $self->html_links( join( "\n\t", @backtrace ) )
404                                    ;
405                          $fatal = qq| frey-fatal|;                          $fatal = qq| frey-fatal|;
406                  }                  }
407          }          }
408    
409          warn "ERROR: $error\n";          warn "ERROR: $error\n";
410          $self->add_icon('error');          $self->add_icon('error');
411          return          $error = $self->html_links( $error );
412                  qq|<pre class="frey-error$fatal">|          return qq|<pre class="frey-error$fatal">$error $backtrace</pre>| ;
                 . $self->html_links( $error ) .  
                 qq|</pre>|  
                 ;  
413  }  }
414    
415  =head1 Status line  =head1 Status line
# Line 667  sub backtrace { Line 688  sub backtrace {
688          my ($self) = @_;          my ($self) = @_;
689    
690          my @backtrace;          my @backtrace;
691          foreach ( 0 .. 5 ) {          foreach ( 1 .. 5 ) { # 0 = backtrace
692                  my (                  my (
693                          $package,$path,$line                          $package,$path,$line
694                          # subroutine hasargs                          # subroutine hasargs

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

  ViewVC Help
Powered by ViewVC 1.1.26