/[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 538 by dpavlin, Wed Nov 26 17:36:02 2008 UTC revision 816 by dpavlin, Thu Dec 11 21:36:04 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 Continuity::Widget::DomNode;
   
 use Continuity::Widget::DomNode;  
7  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
8  use Carp qw/confess cluck/;  use Carp qw/confess cluck carp/;
9  use File::Slurp;  use File::Slurp;
10    use Text::Tabs; # expand, unexpand
11    
12    use lib 'lib';
13    
14    use Frey::Types;
15    
16  use Frey::Bookmarklet;  use Frey::Bookmarklet;
17  use Frey::ClassBrowser;  use Frey::Class::Browser;
18    use Frey::INC;
19    
20  use Frey::SVK;  use Frey::SVK;
21    
22  has 'head' => (  our @head;
23          is => 'rw',  sub head { @head }
         isa => 'ArrayRef[Str]',  
         default => sub { [ 'static/frey.css' ] },  
 );  
24    
25  has 'request_url' => (  has 'request_url' => (
26          is => 'rw',          is => 'rw',
27          isa => 'Uri', coerce => 1,          isa => 'Uri', coerce => 1,
28          default => '/',          required => 1,
29            default => sub {
30                    carp "undefined request_url";
31                    '/';
32            },
33  );  );
34    
35  has 'title' => (  has 'title' => (
# Line 47  has 'dump_max_bytes' => ( Line 53  has 'dump_max_bytes' => (
53          is => 'rw',          is => 'rw',
54          isa => 'Int',          isa => 'Int',
55          default => 4096,          default => 4096,
56          documentation => 'Maximum dump size sent to browser before truncation',          documentation => 'maximum dump size sent to browser before truncation',
57  );  );
58    
59  has 'inline_smaller_than' => (  has 'inline_smaller_than' => (
60          is => 'rw',          is => 'rw',
61          isa => 'Int',          isa => 'Int',
62          default => 10240,          default => 10240,
63          documentation => 'Inline JavaScript and CSS to reduce round-trips',          documentation => 'inline JavaScript and CSS to reduce round-trips',
64  );  );
65    
66  has 'chop_warning' => (  has 'html_dump_width' => (
67            documentation => 'crop longer lines in dumps',
68          is => 'rw',          is => 'rw',
69          isa => 'Int',          isa => 'Int',
70          default => 80,  #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them
71          documentation => 'Crop lines longer',          default => 250,
72  );  );
73    
74  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
# Line 74  sub html_escape { Line 81  sub html_escape {
81  }  }
82    
83  sub html_dump {  sub html_dump {
84          my $self = shift;          my ( $self, $dump ) = @_;
85          $self->html_escape( dump( @_ ) );          $dump = dump( $dump ) if ref($dump);
86            my $width = $self->html_dump_width;
87            $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;
88            $dump = $self->html_escape( $dump );
89            $dump =~ s{\Q...\E}{&hellip;}gs;
90    #       $dump =~ $self->html_links( $dump ); # FIXME include this
91            return "<code>$dump</code>";
92  }  }
93    
94  sub dom2html {  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }
95  #       warn "## dom2html ",dump( @_ );  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }
96          return Continuity::Widget::DomNode->create( @_ )->to_string;  
97    our $re_html = qr{<(?:!--.+?--|(\w+).+?/\1|[^>]+/?)>}s; # relaxed html check for one semi-valid tag
98    
99    sub popup_dropdown {
100            my ( $self, $type, $name, $content, $full ) = @_;
101    
102            $content = $self->html_dump($content) if ref $content;
103    
104            $content = qq|<span>$content</span>| unless $content =~ m{^\s*<(span|a|code).+?/\1>\s*};
105    
106            $content =~ s{<span>(<code>[^<]+</code>)</span>}{$1} && $self->TODO("code wrapped in span");
107    
108            warn "## $type [$name] = ", length( $content ), " bytes"; # if $self->debug; # FIXME
109    
110            if ( $name =~ m{::} && $name !~ $re_html ) {
111                    return qq|<a class="frey-$type" target="$name" href="/$name">$name $content</a>\n|;
112            } elsif ( $name =~ s{^\s*(<a)\s+}{$1 class="frey-$type"} ) {
113                    return qq|$name $content\n|;
114            } else {
115                    return qq|<span class="frey-$type">$name $content</span>\n|;
116            }
117  }  }
118    
119  sub _inline_path {  sub _inline_path {
# Line 91  sub _inline_path { Line 124  sub _inline_path {
124  sub _head_html {  sub _head_html {
125          my $self = shift;          my $self = shift;
126          my $out = '';          my $out = '';
127          foreach my $path ( @{ $self->head } ) {          foreach my $path ( @head ) {
128                  $path =~ s!^/!!;                  $path =~ s!^/!!;
129                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
130                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
131                                  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>| :
132                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
133                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
134                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
135                                  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>| :
136                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
137                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
138                          $out .= $path;                          $out .= $path;
# Line 126  sub add_head { Line 159  sub add_head {
159          return if ! defined $path || $path eq '';          return if ! defined $path || $path eq '';
160          $path =~ s!^/!!;          $path =~ s!^/!!;
161    
162          if ( $path =~ m{<.*>}s ) {          if ( $path =~ $re_html ) {
163                  push @{ $self->head }, $path;                  push @head, $path;
164          } elsif ( -e $path ) {          } elsif ( -e $path ) {
165                  if ( $path =~ m/\.(?:js|css)$/ ) {                  if ( $path =~ m/\.(?:js|css)$/ ) {
166                          push @{ $self->head }, $path;                          push @head, $path;
167                  } else {                  } else {
168                          confess "can't add_head( $path ) it's not js or css";                          confess "can't add_head( $path ) it's not js or css";
169                  }                  }
# Line 141  sub add_head { Line 174  sub add_head {
174    
175  }  }
176    
177    sub add_css {
178            my ($self,$css) = @_;
179            my ( $package, $path, $line ) = caller;
180            $self->add_head( qq|
181            <style type="text/css">
182            /* via $package at $path line $line */
183            $css
184            </style>
185            | );
186    }
187    
188    sub add_js {
189            my ($self,$js) = @_;
190            my ( $package, $path, $line ) = caller;
191    
192            if ( $js =~ m{http.*\.js} ) {
193                    $self->add_head( qq|
194                            <script type="text/javascript" src="$js">
195                            /* via $package at $path line $line */
196                            </script>
197                    |);
198            } else {
199                    $self->add_head( qq|
200                            <script type="text/javascript">
201                            /* via $package at $path line $line */
202                            $js
203                            </script>
204                    | );
205            };
206    }
207    
208  our $reload_counter = 0;  our $reload_counter = 0;
209    
210    
# Line 159  sub status { @status }; Line 223  sub status { @status };
223    
224  our $icon_html;  our $icon_html;
225    
 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|;  
 }  
   
226  sub page {  sub page {
227          my $self = shift;          my $self = shift;
228          my $a = {@_};          my $a = {@_};
# Line 184  sub page { Line 233  sub page {
233    
234          my $status_line = '';          my $status_line = '';
235    
         unshift @status, { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup };  
 #       unshift @status, { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup };  
   
236          foreach my $part ( @status ) {          foreach my $part ( @status ) {
237                  foreach my $name ( keys %$part ) {                  foreach my $name ( keys %$part ) {
238                          $status_line .= $self->popup( $name, $part->{$name} );                          $status_line .= $self->popup( $name, $part->{$name} );
# Line 197  sub page { Line 243  sub page {
243          $url =~ s{\?reload=\d+}{};          $url =~ s{\?reload=\d+}{};
244    
245          my $body = $a->{body};          my $body = $a->{body};
246          $body ||= $self->as_markup if $self->can('as_markup');          if ( ! $body ) {
247                    my $run = $a->{run} || 'as_markup';
248                    warn "# no body, invoke $self->$run on ", ref($self);
249                    eval {
250                            $body = $self->$run;
251                    };
252                    $body = $self->error( $@, '' ) if $@;
253            }
254          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
255                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
256                  return $body                  return $body
# Line 208  sub page { Line 261  sub page {
261    
262          $status_line .= $self->warnings_html;          $status_line .= $self->warnings_html;
263    
         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>" );  
   
264          my      ($exit,$description) = ('exit','stop server');          my      ($exit,$description) = ('exit','stop server');
265                  ($exit,$description) = ('restart','restart server')                  ($exit,$description) = ('restart','restart server')
266                  if $ENV{FREY_RESTART}; # tune labels on exit link                  if $ENV{FREY_RESTART}; # tune labels on exit link
# Line 235  sub page { Line 269  sub page {
269                  qq|                  qq|
270                          <span class="right">                          <span class="right">
271                          <a title="reload $url"  href="/reload$url">reload</a>                          <a title="reload $url"  href="/reload$url">reload</a>
272                          <a title="$description" href="/exit$url">$exit</a>                          <a title="$description" href="/exit$url" target="exit">$exit</a>
273                          </span>                          </span>
274                  |;                  |;
275    
276          my $info = Frey::SVK->info;          my $svk = Frey::SVK->new;
277          my $revision = Frey::SVK->info->{Revision} || '';          my $info = $svk->info;
278            my $revision = $svk->info->{Revision} || '';
279          $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};          $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};
280    
281          $self->add_icon unless $icon_html;          $self->add_icon unless $icon_html;
# Line 290  sub editor { Line 325  sub editor {
325          qq|>$class</a>|;          qq|>$class</a>|;
326  }  }
327    
328  =head2 editor_links  =head2 html_links
329    
330  Create HTML links to editor for perl error message  Create HTML links to editor for perl error message
331    
332    my $html = $self->editor_links( $error )    my $html = $self->html_links( $error )
333    
334  =cut  =cut
335    
336  sub editor_links {  sub html_links {
337          my ( $self, $error ) = @_;          my ( $self, $error ) = @_;
338    
339            $error = $self->strip_full_path( $error );
340    
341    #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
342    
343            # perl's backtrace
344          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
345                  {at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;                  {at <a target="editor" href="/editor+$1+$2" title="vi $1 +$2">$1</a> line $2}gsm;
346    
347            $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}
348                    {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm
349            || # or anything that looks like "Class::Name"
350            $error =~ s{"(\w+(?:::\w+)+)"}
351                    {"<a target="$1" href="/$1" title="introspect $1">$1</a>"}gsm;
352    
353            # method error messages
354            # FIXME replace with link to Frey::Introspect data
355            $error =~ s{(method ")(\w+)(" via)}
356                    {$1<a target="$2" href="/Frey::Shell::Grep/as_markup?pattern=$2" title="grep $2">$2</a>$3}gsm;
357    
358            # link paths to editor
359            $error =~ s{((?:lib|t)/[\S]+)\s+(\d+\s+bytes)}
360                    {<a target="editor" href="/editor+$1+1" title="vi $1 [$2]">$1</a>}gsm;
361    
362          $error =~ s{(via package ")([\w:]+)(")}          $error =~ s{(class ")([\w:]+)(")}
363                  {$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;                  {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm;
364    
365          return $error;          return $error;
366  }  }
367    
368    =head2 error
369    
370    This method will return error to browser and backtrace unless
371    error message ends with LF C<\n> just like L<warn>
372    
373    =cut
374    
375  sub error {  sub error {
376          my $self = shift;          my $self = shift;
377          my $error = join(" ", @_);          my $error = join(" ", @_);
378    
379          my @backtrace = $self->backtrace;          my $fatal = '';
380          $error .= "\n\t" . join( "\n\t", @backtrace ) if @backtrace;  
381            if ( $error !~ m{\n$} ) {
382                    if ( my @backtrace = $self->backtrace ) {
383                            $error .= "\n\t" . join( "\n\t", @backtrace );
384                            $fatal = qq| frey-fatal|;
385                    }
386            }
387    
388          warn "ERROR: $error\n";          warn "ERROR: $error\n";
389          return          return
390                  qq|<pre class="frey-error">|                  qq|<pre class="frey-error$fatal">|
391                  . $self->editor_links( $error ) .                  . $self->html_links( $error ) .
392                  qq|</pre>|                  qq|</pre>|
393                  ;                  ;
394  }  }
395    
396    =head1 Status line
397    
398    =head2 add_status
399    
400      $self->add_status( { name => { some => 'data' } } );
401    
402      $self->add_status( "append to last status popup" );
403    
404    =cut
405    
406  sub add_status {  sub add_status {
407          my ( $self, $data ) = @_;          my ( $self, $data ) = @_;
408          push @status, $data;          push @status, { 'X' => [ $self->backtrace ] };
409            if ( ref($data) ) {
410                    push @status, $data;
411            } else {
412                    if ( defined $status[ $#status ] ) {
413                            $status[ $#status ]->{ '+' } = $data;
414                    } else {
415                            push @status, { '+' => $data };
416                    }
417            }
418  }  }
419    
420    =head2 clean_status
421    
422    Called at beginning of each request
423    
424      $self->clean_status;
425    
426    =cut
427    
428  sub clean_status {  sub clean_status {
429          @status = ();          my ($self) = shift;
430            @head = ( 'static/frey.css' );
431            @status = (
432                    { 'ClassBrowser' => Frey::Class::Browser->new( usage_sort => 1, usage_on_top => 0 )->as_markup },
433                    { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
434                    { 'INC' => Frey::INC->new->as_markup },
435            );
436          $icon_html = '';          $icon_html = '';
437  }  }
438    
439    =head2 status_parts
440    
441    Dump all status line parts
442    
443      $self->status_parts
444    
445    =cut
446    
447  sub status_parts {  sub status_parts {
448          warn "## status parts ", dump( map { keys %$_ } @status );          warn "## status parts ", dump( map { keys %$_ } @status );
449  }  }
450    
451    =for debug
452    
453  sub DEMOLISH {  sub DEMOLISH {
454          my ( $self ) = @_;          my ( $self ) = @_;
455          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;
456  }  }
457    
458    =cut
459    
460  =head2 add_icon  =head2 add_icon
461    
462    Frey::Foo->add_icon;            # /static/icons/Frey/Foo.png    Frey::Foo->add_icon;            # /static/icons/Frey/Foo.png
# Line 353  sub DEMOLISH { Line 466  sub DEMOLISH {
466    
467  sub icon_path {  sub icon_path {
468          my ($self,$class,$variant) = @_;          my ($self,$class,$variant) = @_;
469          my $icon = $class;  #       $class ||= $self->title;
470          $icon =~ s{::}{/}g;  
471          $icon .= "/$variant" if $variant;          sub icon_exists {
472          my $path = 'static/icons/' . $icon . '.png';                  my $class = shift;
473                    $class =~ s{::}{/}g;
474                    $class .= "/$variant" if $variant;
475                    my $icon_path = 'static/icons/' . $class . '.png';
476                    return $icon_path if -e $icon_path;
477                    return;
478            }
479    
480            my $path = icon_exists( $class );
481    
482            while ( $class =~ s{::[^:]+$}{} && ! $path ) {
483                    $path = icon_exists( $class ) unless $class eq 'Frey'; # don't default on Frey icon
484            }
485    
486          if ( -e $path ) {          if ( -e $path ) {
487                  warn "# $class from $self icon_path $path";                  warn "# $class from $self icon_path $path" if $self->debug;
488                  return $path;                  return $path;
489          } else {          } else {
490                  warn "TODO: add $path icon for $class";                  $self->TODO( "add $path icon for $class $variant" );
491                  return undef;                  return undef;
492          }          }
493  }  }
# Line 403  my $multiline_markers = { Line 529  my $multiline_markers = {
529          '"' => '"',          '"' => '"',
530  };  };
531    
532    =for later
533    
534  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
535  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
536    
537    =cut
538    
539  sub log_path {  sub log_path {
540          $Frey::Bootstrap::log_path || warn "no log_path?";          $Frey::Bootstrap::log_path || die "no log_path?";
541    }
542    
543    our $pwd = `pwd`;
544    chomp $pwd;
545    
546    sub strip_full_path {
547            my ($self, $msg) = @_;
548            # Mojo seems to expand warn messages to full path which is annoying
549            $msg =~ s{/[^/]+/\.\./}{/}gs;
550            $msg =~ s{$pwd/*}{}gs;
551            return $msg;
552  }  }
553    
554    our $last_log_pos  = 0;
555    our $last_log_line = 0;
556    
557  sub warnings_html {  sub warnings_html {
558          my ($self,$level) = shift;          my ($self,$level) = shift;
559          $level ||= $self->debug,          $level ||= $self->debug,
560          my $path = $self->log_path;          my $path = $self->log_path;
561    
562          my $warnings;          my $max = 30;
563          my $line = 0;          my $pos = 0;
564            my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
565            my $line = $last_log_line;
566          my $multiline_end;          my $multiline_end;
567    
568          open(my $log, '<', $path) || die "can't open $path: $!";          # XXX do we really want to do this every time?
569            my $css = qq|/* short css classes for levels */\n|;
570            my $level_to_class;
571            foreach ( keys %$warn_colors ) {
572                    my $l = length($_);
573                    my $class = 'l' . $l;
574                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
575                    $level_to_class->{ $_ } = $class;
576            }
577            $self->add_css( $css );
578    
579            open(my $log, '<', $path)    || die "can't open $path: $!";
580            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
581          while(<$log>) {          while(<$log>) {
582                  chomp;                  chomp;
583                  $line++;                  $line++;
584    
585                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
586    
587                  my $style = '';                  my $style = '';
588    
589    =for filter
590    
591                  if ( $multiline_end ) {                  if ( $multiline_end ) {
592                          if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {                          if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {
593  #                               warn "## $line end of $multiline_end in '$_'\n";  #                               warn "## $line end of $multiline_end in '$_'\n";
# Line 442  sub warnings_html { Line 604  sub warnings_html {
604                                  next;                                  next;
605                          }                          }
606    
607                          $style = $warn_colors->{$1}  =cut
608                                  ? ' style="color:' . $warn_colors->{$1} . '"'                  if ( m{^(#*)} ) {
609                                  : '';  
610                            my $level = $1;
611                            my $msg = $self->strip_full_path( $_ );
612    
                         my $msg = $self->html_escape( $_ );  
613                          my $spacer = ' ';                          my $spacer = ' ';
614                          if ( length($msg) > $self->chop_warning ) {                          my $real_msg = expand( $msg );
615                                  $msg = substr( $msg, 0, $self->chop_warning );                          if ( length($real_msg) > $self->html_dump_width ) {
616                                    
617                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
618                                    $msg = unexpand( $real_msg );
619                                  $spacer = '&hellip;'                                  $spacer = '&hellip;'
620                          }                          }
621                          $msg =~ s{^\s}{&nbsp;}g;  
622                          $warnings .= qq|<tt$style>$msg</tt>$spacer<small><a target="editor" href="/editor+$path+$line">+$line</a></small><br/>|;                          $msg = $self->html_escape( $msg );
623                          # FIXME <tt> should be <code> but CSS hates me  
624                            if ( my $class = $level_to_class->{ $level } ) {
625                                    $msg = qq|<span class="$class">$msg</span>|;
626                            }
627    
628                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
629                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
630                                    . ( $spacer ? $spacer : '' )
631                                    . "\n"; # XXX <pre> needs this
632    
633                            $warnings[ $pos++ % $max ] = $msg;
634                  }                  }
635          }          }
636            $last_log_pos = tell($log);
637            $last_log_line = $line;
638            warn "log has $line lines tell position $last_log_pos";
639          close($log) || die "can't close $path: $!";          close($log) || die "can't close $path: $!";
640    
641            my $size = -s $path;
642    
643            my $warnings = join("",
644                    map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
645            );
646    
647            my $s = length($warnings);
648    
649          return          return
650                    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
651                  . $self->editor_links( $warnings )                    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>|
652                  . qq|</span></span>|                  . $self->html_links( $warnings )
653                    . qq|</code></span>|
654                  ;                  ;
655  }  }
656    
657    
658    =head2 backtrace
659    
660    Show backtrace with links to editor
661    
662      my @backtrace = $self->backtrace;
663    
664    =cut
665    
666    sub backtrace {
667            my ($self) = @_;
668    
669            my @backtrace;
670            foreach ( 0 .. 5 ) {
671                    my (
672                            $package,$path,$line
673                            # subroutine hasargs
674                            # wantarray evaltext is_require
675                            # hints bitmask hinthash
676                    ) = caller($_) or last;
677    
678                    push @backtrace,
679                            qq|via "$package" at $path line $line|;
680            }
681            #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
682            return @backtrace;
683    }
684    
685    =head2 checkbox
686    
687    Generate checkbox html markup from some attribute
688    
689      my $html = $self->checkbox('attribute_name', $value);
690    
691    =cut
692    
693    sub checkbox {
694            my ($self,$name,$value) = @_;
695            my $checked = '';
696            my $all_checkboxes = eval { $self->$name };
697            warn "ERROR tried to get checkbox value for '$name' which is unknown: $@" if $@;
698            $all_checkboxes = [ $all_checkboxes ] unless ref($all_checkboxes) eq 'ARRAY'; # sigh, too chatty
699            $checked = ' checked' if grep { defined $_ && $_ eq $value } @$all_checkboxes;
700            warn "# checkbox $name $value $checked\t", $self->dump( $self->$name );
701            qq|<input name="$name" value="$value" type="checkbox"$checked>|;
702    }
703    
704    =head2 strip
705    
706    Strip whitespace around content
707    
708      my $stripped = strip('  no more whitespace around this   ');
709    
710    =cut
711    
712    sub strip {
713            my $t = shift;
714            $t =~ s{^\s+}{}gs;
715            $t =~ s{>\s+<}{><}gs;
716            $t =~ s{\s+$}{}gs;
717            return $t;
718    }
719    
720  1;  1;

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

  ViewVC Help
Powered by ViewVC 1.1.26