/[Frey]/trunk/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 /trunk/lib/Frey/Web.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 538 by dpavlin, Wed Nov 26 17:36:02 2008 UTC revision 674 by dpavlin, Tue Dec 2 01:49:49 2008 UTC
# Line 1  Line 1 
1  package Frey::Web;  package Frey::Web;
2  use Moose::Role;  use Moose::Role;
3    
4  with 'Frey::Backtrace';  with 'Frey::Session';
5    
6  use Frey::Types;  use Frey::Types;
7    
8  use Continuity::Widget::DomNode;  #use Continuity::Widget::DomNode;
9  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
10  use Carp qw/confess cluck/;  use Carp qw/confess cluck carp/;
11  use File::Slurp;  use File::Slurp;
12    
13  use Frey::Bookmarklet;  use Frey::Bookmarklet;
14  use Frey::ClassBrowser;  use Frey::ClassBrowser;
15    use Frey::INC;
16    
17  use Frey::SVK;  use Frey::SVK;
18    
19  has 'head' => (  use Text::Tabs; # expand, unexpand
20          is => 'rw',  
21          isa => 'ArrayRef[Str]',  our @head;
22          default => sub { [ 'static/frey.css' ] },  sub head { @head }
 );  
23    
24  has 'request_url' => (  has 'request_url' => (
25          is => 'rw',          is => 'rw',
26          isa => 'Uri', coerce => 1,          isa => 'Uri', coerce => 1,
27          default => '/',          required => 1,
28            default => sub {
29                    carp "undefined request_url";
30                    '/';
31            },
32  );  );
33    
34  has 'title' => (  has 'title' => (
# Line 47  has 'dump_max_bytes' => ( Line 52  has 'dump_max_bytes' => (
52          is => 'rw',          is => 'rw',
53          isa => 'Int',          isa => 'Int',
54          default => 4096,          default => 4096,
55          documentation => 'Maximum dump size sent to browser before truncation',          documentation => 'maximum dump size sent to browser before truncation',
56  );  );
57    
58  has 'inline_smaller_than' => (  has 'inline_smaller_than' => (
59          is => 'rw',          is => 'rw',
60          isa => 'Int',          isa => 'Int',
61          default => 10240,          default => 10240,
62          documentation => 'Inline JavaScript and CSS to reduce round-trips',          documentation => 'inline JavaScript and CSS to reduce round-trips',
63  );  );
64    
65  has 'chop_warning' => (  has 'html_dump_width' => (
66            documentation => 'crop longer lines in dumps',
67          is => 'rw',          is => 'rw',
68          isa => 'Int',          isa => 'Int',
69          default => 80,  #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them
70          documentation => 'Crop lines longer',          default => 250,
71  );  );
72    
73  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
# Line 74  sub html_escape { Line 80  sub html_escape {
80  }  }
81    
82  sub html_dump {  sub html_dump {
83          my $self = shift;          my ( $self, $dump ) = @_;
84          $self->html_escape( dump( @_ ) );          $dump = dump( $dump ) if ref($dump);
85            my $width = $self->html_dump_width;
86            $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;
87            $dump = $self->html_escape( $dump );
88            $dump =~ s{\Q...\E}{&hellip;}gs;
89    #       $dump =~ $self->editor_links( $dump ); # FIXME include this
90            return "<code>$dump</code>";
91  }  }
92    
93  sub dom2html {  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }
94  #       warn "## dom2html ",dump( @_ );  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }
95          return Continuity::Widget::DomNode->create( @_ )->to_string;  
96    our $re_html = qr{<(?:!--.+?--|(\w+).+?/\1|[^>]+/)>}s; # relaxed html check for one semi-valid tag
97    
98    sub popup_dropdown {
99            my ( $self, $type, $name, $content, $full ) = @_;
100    
101            $content = $self->html_dump($content) if ref $content;
102    
103            $content = qq|<span>$content</span>| unless $content =~ m{^\s*<(span|a|code).+?/\1>\s*};
104    
105            $content =~ s{<span>(<code>[^<]+</code>)</span>}{$1} && $self->TODO("code wrapped in span");
106    
107            warn "## $type [$name] = ", length( $content ), " bytes"; # if $self->debug; # FIXME
108    
109            if ( $name =~ m{::} && $name !~ $re_html ) {
110                    return qq|<a class="frey-$type" target="$name" href="/$name">$name $content</a>\n|;
111            } elsif ( $name =~ s{^\s*(<a)\s+}{$1 class="frey-$type"} ) {
112                    return qq|$name $content\n|;
113            } else {
114                    return qq|<span class="frey-$type">$name $content</span>\n|;
115            }
116  }  }
117    
118  sub _inline_path {  sub _inline_path {
# Line 91  sub _inline_path { Line 123  sub _inline_path {
123  sub _head_html {  sub _head_html {
124          my $self = shift;          my $self = shift;
125          my $out = '';          my $out = '';
126          foreach my $path ( @{ $self->head } ) {          foreach my $path ( @head ) {
127                  $path =~ s!^/!!;                  $path =~ s!^/!!;
128                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
129                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
130                                  qq|<!-- $path --><script type="text/javascript">\n| . read_file($path) . qq|\n</script>| :                                  qq|<script type="text/javascript">\n/* inline $path */\n\n| . read_file($path) . qq|\n</script>| :
131                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
132                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
133                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
134                                  qq|<!-- $path --><style type="text/css">\n| . read_file( $path ) . qq|\n</style>| :                                  qq|<style type="text/css">\n/* inline $path */\n\n| . read_file( $path ) . qq|\n</style>| :
135                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
136                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
137                          $out .= $path;                          $out .= $path;
# Line 126  sub add_head { Line 158  sub add_head {
158          return if ! defined $path || $path eq '';          return if ! defined $path || $path eq '';
159          $path =~ s!^/!!;          $path =~ s!^/!!;
160    
161          if ( $path =~ m{<.*>}s ) {          if ( $path =~ $re_html ) {
162                  push @{ $self->head }, $path;                  push @head, $path;
163          } elsif ( -e $path ) {          } elsif ( -e $path ) {
164                  if ( $path =~ m/\.(?:js|css)$/ ) {                  if ( $path =~ m/\.(?:js|css)$/ ) {
165                          push @{ $self->head }, $path;                          push @head, $path;
166                  } else {                  } else {
167                          confess "can't add_head( $path ) it's not js or css";                          confess "can't add_head( $path ) it's not js or css";
168                  }                  }
# Line 141  sub add_head { Line 173  sub add_head {
173    
174  }  }
175    
176    sub add_css {
177            my ($self,$css) = @_;
178            my ( $package, $path, $line ) = caller;
179            $self->add_head( qq|
180            <style type="text/css">
181            /* via $package at $path line $line */
182            $css
183            </style>
184            | );
185    }
186    
187  our $reload_counter = 0;  our $reload_counter = 0;
188    
189    
# Line 159  sub status { @status }; Line 202  sub status { @status };
202    
203  our $icon_html;  our $icon_html;
204    
 sub popup {  
         my ( $self, $name, $content, $full ) = @_;  
   
         if ( ref($content) ) {  
                 $content = '<code>' . dump($content) . '</code>';  
                 my $l = length($content);  
                 $content = qq|<span>$l bytes</span>| if ! $full && $l > $self->dump_max_bytes;  
         } else {  
                 $content = qq|<span>$content</span>|;  
         }  
   
         warn "## popup [$name] = ", length( $content ), " bytes" if $self->debug;  
         return qq|<span class="frey-popup">$name $content</span>\n|;  
 }  
   
205  sub page {  sub page {
206          my $self = shift;          my $self = shift;
207          my $a = {@_};          my $a = {@_};
# Line 184  sub page { Line 212  sub page {
212    
213          my $status_line = '';          my $status_line = '';
214    
         unshift @status, { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup };  
 #       unshift @status, { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup };  
   
215          foreach my $part ( @status ) {          foreach my $part ( @status ) {
216                  foreach my $name ( keys %$part ) {                  foreach my $name ( keys %$part ) {
217                          $status_line .= $self->popup( $name, $part->{$name} );                          $status_line .= $self->popup( $name, $part->{$name} );
# Line 197  sub page { Line 222  sub page {
222          $url =~ s{\?reload=\d+}{};          $url =~ s{\?reload=\d+}{};
223    
224          my $body = $a->{body};          my $body = $a->{body};
225          $body ||= $self->as_markup if $self->can('as_markup');          if ( ! $body ) {
226                    my $run = $a->{run} || 'as_markup';
227                    warn "# no body, invoke $self->$run on ", ref($self);
228                    eval {
229                            $body = $self->$run;
230                    };
231                    $body = $self->error( $@, '' ) if $@;
232            }
233          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
234                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
235                  return $body                  return $body
# Line 208  sub page { Line 240  sub page {
240    
241          $status_line .= $self->warnings_html;          $status_line .= $self->warnings_html;
242    
         my $inc_html;  
         {  
                 my $inc;  
                 map {  
                         s{.pm$}{};  
                         my $class = $_;  
                         s[/][}->{]g;  
                         $class =~ s[/][::]g;  
                         eval '$inc->{' . $_ . '} = $class';  
                 } sort keys %INC;  
                 $inc_html = dump( $inc );  
                 $inc_html =~ s{\s+=>\s+\d+}{}gs;  
                 $inc_html =~ s{(['"]?)(\w+)\1\s+=>\s+(['"]?)([\w:]*\2)\3}{<a target="$4" href="/$4" title="$4">$2</a>}gs;  
                 $inc_html =~ s{\s+=>\s+}{ }gs;  
                 $inc_html =~ s{,}{}gs;  
         }  
   
         $status_line .= $self->popup( INC => "<small>$inc_html</small>" );  
   
243          my      ($exit,$description) = ('exit','stop server');          my      ($exit,$description) = ('exit','stop server');
244                  ($exit,$description) = ('restart','restart server')                  ($exit,$description) = ('restart','restart server')
245                  if $ENV{FREY_RESTART}; # tune labels on exit link                  if $ENV{FREY_RESTART}; # tune labels on exit link
# Line 235  sub page { Line 248  sub page {
248                  qq|                  qq|
249                          <span class="right">                          <span class="right">
250                          <a title="reload $url"  href="/reload$url">reload</a>                          <a title="reload $url"  href="/reload$url">reload</a>
251                          <a title="$description" href="/exit$url">$exit</a>                          <a title="$description" href="/exit$url" target="exit">$exit</a>
252                          </span>                          </span>
253                  |;                  |;
254    
255          my $info = Frey::SVK->info;          my $svk = Frey::SVK->new;
256          my $revision = Frey::SVK->info->{Revision} || '';          my $info = $svk->info;
257            my $revision = $svk->info->{Revision} || '';
258          $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};          $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};
259    
260          $self->add_icon unless $icon_html;          $self->add_icon unless $icon_html;
# Line 301  Create HTML links to editor for perl err Line 315  Create HTML links to editor for perl err
315  sub editor_links {  sub editor_links {
316          my ( $self, $error ) = @_;          my ( $self, $error ) = @_;
317    
318    #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
319    
320            # perl's backtrace
321          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
322                  {at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;                  {at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;
323    
324          $error =~ s{(via package ")([\w:]+)(")}          $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}
325                  {$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;                  {$1<a target="$2" href="/$2">$2</a>$3}gsm;
326    
327            # method error messages
328    #       $error =~ s{(method ")(\w+)"}
329    #               {$1<a target="/Frey::Shell::Grep?pattern=$2">$2</a>"}gsm; # FIXME replace with link to Frey::Introspect data
330    
331            # anything that looks like "Class::Name"
332            $error =~ s{"(\w+(?:::\w+)+)"}
333                    {"<a target="$1" href="/$1">$1</a>"}gsm;
334    
335          return $error;          return $error;
336  }  }
337    
338    =head2 error
339    
340    This method will return error to browser and backtrace unless
341    error message ends with LF C<\n> just like L<warn>
342    
343    =cut
344    
345  sub error {  sub error {
346          my $self = shift;          my $self = shift;
347          my $error = join(" ", @_);          my $error = join(" ", @_);
348    
349          my @backtrace = $self->backtrace;          my $fatal = '';
350          $error .= "\n\t" . join( "\n\t", @backtrace ) if @backtrace;  
351            if ( $error !~ m{\n$} ) {
352                    if ( my @backtrace = $self->backtrace ) {
353                            $error .= "\n\t" . join( "\n\t", @backtrace );
354                            $fatal = qq| class="fatal"|;
355                    }
356            }
357    
358          warn "ERROR: $error\n";          warn "ERROR: $error\n";
359          return          return
360                  qq|<pre class="frey-error">|                  qq|<pre class="frey-error$fatal">|
361                  . $self->editor_links( $error ) .                  . $self->editor_links( $error ) .
362                  qq|</pre>|                  qq|</pre>|
363                  ;                  ;
364  }  }
365    
366    =head1 Status line
367    
368    =head2 add_status
369    
370      $self->add_status( { name => { some => 'data' } } );
371    
372      $self->add_status( "append to last status popup" );
373    
374    =cut
375    
376  sub add_status {  sub add_status {
377          my ( $self, $data ) = @_;          my ( $self, $data ) = @_;
378          push @status, $data;          push @status, { 'X' => [ $self->backtrace ] };
379            if ( ref($data) ) {
380                    push @status, $data;
381            } else {
382                    if ( defined $status[ $#status ] ) {
383                            $status[ $#status ]->{ '+' } = $data;
384                    } else {
385                            push @status, { '+' => $data };
386                    }
387            }
388  }  }
389    
390    =head2 clean_status
391    
392    Called at beginning of each request
393    
394      $self->clean_status;
395    
396    =cut
397    
398  sub clean_status {  sub clean_status {
399          @status = ();          my ($self) = shift;
400            @head = ( 'static/frey.css' );
401            @status = (
402                    { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },
403                    { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
404                    { 'INC' => Frey::INC->new->as_markup },
405            );
406          $icon_html = '';          $icon_html = '';
407  }  }
408    
409    =head2 status_parts
410    
411    Dump all status line parts
412    
413      $self->status_parts
414    
415    =cut
416    
417  sub status_parts {  sub status_parts {
418          warn "## status parts ", dump( map { keys %$_ } @status );          warn "## status parts ", dump( map { keys %$_ } @status );
419  }  }
420    
421    =for debug
422    
423  sub DEMOLISH {  sub DEMOLISH {
424          my ( $self ) = @_;          my ( $self ) = @_;
425          warn "## $self DEMOLISH status ", $#status + 1, " elements ", dump( map { keys %$_ } @status ) if @status;          warn "## $self DEMOLISH status ", $#status + 1, " elements ", dump( map { keys %$_ } @status ) if @status;
426  }  }
427    
428    =cut
429    
430  =head2 add_icon  =head2 add_icon
431    
432    Frey::Foo->add_icon;            # /static/icons/Frey/Foo.png    Frey::Foo->add_icon;            # /static/icons/Frey/Foo.png
# Line 358  sub icon_path { Line 441  sub icon_path {
441          $icon .= "/$variant" if $variant;          $icon .= "/$variant" if $variant;
442          my $path = 'static/icons/' . $icon . '.png';          my $path = 'static/icons/' . $icon . '.png';
443          if ( -e $path ) {          if ( -e $path ) {
444                  warn "# $class from $self icon_path $path";                  warn "# $class from $self icon_path $path" if $self->debug;
445                  return $path;                  return $path;
446          } else {          } else {
447                  warn "TODO: add $path icon for $class";                  $self->TODO( "add $path icon for $class" );
448                  return undef;                  return undef;
449          }          }
450  }  }
# Line 403  my $multiline_markers = { Line 486  my $multiline_markers = {
486          '"' => '"',          '"' => '"',
487  };  };
488    
489    =for later
490    
491  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
492  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
493    
494    =cut
495    
496  sub log_path {  sub log_path {
497          $Frey::Bootstrap::log_path || warn "no log_path?";          $Frey::Bootstrap::log_path || die "no log_path?";
498  }  }
499    
500    our $last_log_pos  = 0;
501    our $last_log_line = 0;
502    
503    our $pwd = `pwd`;
504    chomp $pwd;
505    
506  sub warnings_html {  sub warnings_html {
507          my ($self,$level) = shift;          my ($self,$level) = shift;
508          $level ||= $self->debug,          $level ||= $self->debug,
509          my $path = $self->log_path;          my $path = $self->log_path;
510    
511          my $warnings;          my $max = 30;
512          my $line = 0;          my $pos = 0;
513            my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
514            my $line = $last_log_line;
515          my $multiline_end;          my $multiline_end;
516    
517          open(my $log, '<', $path) || die "can't open $path: $!";          # XXX do we really want to do this every time?
518            my $css = qq|/* short css classes for levels */\n|;
519            my $level_to_class;
520            foreach ( keys %$warn_colors ) {
521                    my $l = length($_);
522                    my $class = 'l' . $l;
523                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
524                    $level_to_class->{ $_ } = $class;
525            }
526            $self->add_css( $css );
527    
528            open(my $log, '<', $path)    || die "can't open $path: $!";
529            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
530          while(<$log>) {          while(<$log>) {
531                  chomp;                  chomp;
532                  $line++;                  $line++;
533    
534                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
535    
536                  my $style = '';                  my $style = '';
537    
538    =for filter
539    
540                  if ( $multiline_end ) {                  if ( $multiline_end ) {
541                          if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {                          if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {
542  #                               warn "## $line end of $multiline_end in '$_'\n";  #                               warn "## $line end of $multiline_end in '$_'\n";
# Line 442  sub warnings_html { Line 553  sub warnings_html {
553                                  next;                                  next;
554                          }                          }
555    
556                          $style = $warn_colors->{$1}  =cut
557                                  ? ' style="color:' . $warn_colors->{$1} . '"'                  if ( m{^(#*)} ) {
558                                  : '';  
559                            my $level = $1;
560                            my $msg = $_;
561    
562                            # Mojo seems to expand warn messages to full path which is annoying
563                            $msg =~ s{/[^/]+/\.\./}{/}gs;
564                            $msg =~ s{$pwd/*}{}gs;
565    
                         my $msg = $self->html_escape( $_ );  
566                          my $spacer = ' ';                          my $spacer = ' ';
567                          if ( length($msg) > $self->chop_warning ) {                          my $real_msg = expand( $msg );
568                                  $msg = substr( $msg, 0, $self->chop_warning );                          if ( length($real_msg) > $self->html_dump_width ) {
569                                    
570                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
571                                    $msg = unexpand( $real_msg );
572                                  $spacer = '&hellip;'                                  $spacer = '&hellip;'
573                          }                          }
574                          $msg =~ s{^\s}{&nbsp;}g;  
575                          $warnings .= qq|<tt$style>$msg</tt>$spacer<small><a target="editor" href="/editor+$path+$line">+$line</a></small><br/>|;                          $msg = $self->html_escape( $msg );
576                          # FIXME <tt> should be <code> but CSS hates me  
577                            if ( my $class = $level_to_class->{ $level } ) {
578                                    $msg = qq|<span class="$class">$msg</span>|;
579                            }
580    
581                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
582                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
583                                    . ( $spacer ? $spacer : '' )
584                                    . "\n"; # XXX <pre> needs this
585    
586                            $warnings[ $pos++ % $max ] = $msg;
587                  }                  }
588          }          }
589            $last_log_pos = tell($log);
590            $last_log_line = $line;
591            warn "log has $line lines tell position $last_log_pos";
592          close($log) || die "can't close $path: $!";          close($log) || die "can't close $path: $!";
593    
594            my $size = -s $path;
595    
596            my $warnings = join("",
597                    map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
598            );
599    
600            my $s = length($warnings);
601    
602          return          return
603                    qq|<span class="frey-popup"><a target="editor" href="/editor+$path+$line" title="open $path level $level">warn</a><span>|                  # need to wrap editor link into span so we can have links in warnings
604                      qq|<span class="frey-popup"><a target="editor" href="/editor+$path+$line" title="$path \| $size -> $s bytes \| $line -> $pos lines \| level $level">warn</a><code>|
605                  . $self->editor_links( $warnings )                  . $self->editor_links( $warnings )
606                  . qq|</span></span>|                  . qq|</code></span>|
607                  ;                  ;
608  }  }
609    
610    
611    =head2 backtrace
612    
613    Show backtrace with links to editor
614    
615      my @backtrace = $self->backtrace;
616    
617    =cut
618    
619    sub backtrace {
620            my ($self) = @_;
621    
622            my @backtrace;
623            foreach ( 0 .. 5 ) {
624                    my (
625                            $package,$path,$line
626                            # subroutine hasargs
627                            # wantarray evaltext is_require
628                            # hints bitmask hinthash
629                    ) = caller($_) or last;
630    
631                    push @backtrace,
632                            qq|via "$package" at $path line $line|;
633            }
634            #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
635            return @backtrace;
636    }
637    
638  1;  1;

Legend:
Removed from v.538  
changed lines
  Added in v.674

  ViewVC Help
Powered by ViewVC 1.1.26