/[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 482 by dpavlin, Thu Nov 20 15:23:13 2008 UTC revision 837 by dpavlin, Sun Dec 14 15:13:55 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/;  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  has 'head' => (  use Frey::SVK;
         is => 'rw',  
         isa => 'ArrayRef[Str]',  
         default => sub { [ 'static/frey.css' ] },  
 );  
21    
22  has 'status' => (  our @head;
23          is => 'rw',  sub head { @head }
         isa => 'ArrayRef[HashRef[Str]]',  
         lazy => 1,  
         default => sub { [  
                 { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },  
                 { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },  
         ] },  
 );  
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 56  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    
 =head2 inline_smaller_than  
   
 Inline JavaScript and CSS smaller than this size into page reducing  
 round-trips to server.  
   
 =cut  
   
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',
64    );
65    
66    has 'html_dump_width' => (
67            documentation => 'crop longer lines in dumps',
68            is => 'rw',
69            isa => 'Int',
70    #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them
71            default => 250,
72  );  );
73    
74  sub dom2html {  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
75  #       warn "## dom2html ",dump( @_ );  my $escape_re  = join '|' => keys %escape;
76          return Continuity::Widget::DomNode->create( @_ )->to_string;  
77    sub html_escape {
78            my ( $self, $html ) = @_;
79            $html =~ s/($escape_re)/$escape{$1}/g;
80            return $html;
81    }
82    
83    sub html_dump {
84            my ( $self, $dump ) = @_;
85            $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 popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }
95    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
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 85  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 120  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 135  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 148  our $reload_counter = 0; Line 218  our $reload_counter = 0;
218    
219  =cut  =cut
220    
221    our @status;
222    sub status { @status };
223    
224    our $icon_html;
225    
226  sub page {  sub page {
227          my $self = shift;          my $self = shift;
228          my $a = {@_};          my $a = {@_};
229    
230            warn "## page ",dump($a);
231    
232          $reload_counter++;          $reload_counter++;
233    
234          my $status_line = '';          my $status_line = '';
235          foreach my $part ( @{ $self->status } ) {  
236                  if ( ref($part) ne 'HASH' ) {          foreach my $part ( @status ) {
                         warn "part not hash ",dump( $part ) ;  
                         #$self->status( $part );  
                         next;  
                 }  
237                  foreach my $name ( keys %$part ) {                  foreach my $name ( keys %$part ) {
238                          my $content = $part->{$name};                          $status_line .= $self->popup( $name, $part->{$name} );
                         if ( ref($content) ) {  
                                 $content = '<code>' . dump($content) . '</code>';  
                                 my $l = length($content);  
                                 $content = qq|<span>$l bytes</span>| if $l > $self->dump_max_bytes;  
                         } else {  
                                 $content = qq|<span>$content</span>|;  
                         }  
                         warn "### part [$name] = ", length( $content ), " bytes" if $self->debug;  
                         $status_line .= qq|<span class="frey-popup">$name $content</span>\n|;  
239                  }                  }
240          }          }
241    
# Line 179  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                    $body = $self->$run;
250            }
251          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
252                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
253                  return $body                  return $body
# Line 188  sub page { Line 256  sub page {
256                  $body = '<!-- no body -->';                  $body = '<!-- no body -->';
257          }          }
258    
259          my $warn_colors = {          $status_line .= $self->warnings_html;
                 '#'  => '#444',  
                 '##' => '#888',  
         };  
   
         $status_line  
                 .= qq|<span class="frey-popup">warn<span>|  
                 . $self->editor_links(  
                         join("", map {  
                                 warn "# $_";  
                                 my $style = '';  
                                 $style = $warn_colors->{$1}  
                                         ? ' style="color:' . $warn_colors->{$1} . '"'  
                                         : ''  
                                         if m{^(#+)};  
                                 qq|<tt$style>$_</tt><br/>|; # XXX <tt> should be <code> but CSS hates me  
                         } $self->warnings )  
                 )  
                 . qq|</span></span>|  
                 if $self->warnings;  
260    
261          my      ($exit,$description) = ('exit','stop server');          my      ($exit,$description) = ('exit','stop server');
262                  ($exit,$description) = ('restart','restart server')                  ($exit,$description) = ('restart','restart server')
# Line 216  sub page { Line 265  sub page {
265          my $right =          my $right =
266                  qq|                  qq|
267                          <span class="right">                          <span class="right">
268                          <a title="reload"  href="/reload$url"><code>$url</code></a>                          <a title="reload $url"  href="/reload$url">reload</a>
269                          <a title="$description" href="/exit$url">$exit</a>                          <a title="$description" href="/exit$url" target="exit">$exit</a>
270                          </span>                          </span>
271                  |;                  |;
272    
273            my $svk = Frey::SVK->new;
274            my $info = $svk->info;
275            my $revision = $svk->info->{Revision} || '';
276            $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};
277    
278            $self->add_icon unless $icon_html;
279    
280          my $html = join("\n",          my $html = join("\n",
281                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
282                  $self->_head_html,                  $self->_head_html,
283                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',
284                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
285                    ( $icon_html || '<!-- no icon -->' ),
286                  ( $a->{head} || '' ),                  ( $a->{head} || '' ),
287                  qq|                  qq|
288                  </head><body>                  </head><body>
289                  $body                  $body
290                  <div class="frey-status-line">                  <div class="frey-status-line">
291                          <a href="/">Frey</a> $Frey::VERSION                          <a href="/">Frey</a> $Frey::VERSION $revision
292                          $status_line                          $status_line
293                          $right                          $right
294                  </div>                  </div>
# Line 255  Create HTML editor link with optional li Line 312  Create HTML editor link with optional li
312  sub editor {  sub editor {
313          my ( $self, $class, $line, $title ) = @_;          my ( $self, $class, $line, $title ) = @_;
314          confess "need class" unless $class;          confess "need class" unless $class;
315          $line ||= 1;          if ( ! defined $title ) {
316                    $title  = "edit $class";
317                    $title .= " line $line" if $line;
318            }
319            $line  ||= 1;
320          qq|<a target="editor" href="/editor+$class+$line"| .          qq|<a target="editor" href="/editor+$class+$line"| .
321          ( $title ? qq| title="$title"| : '' ) .          ( $title ? qq| title="$title"| : '' ) .
322          qq|>$class</a>|;          qq|>$class</a>|;
323  }  }
324    
325  =head2 editor_links  =head2 html_links
326    
327  Create HTML links to editor for perl error message  Create HTML links to editor for perl error message
328    
329    my $html = $self->editor_links( $error )    my $html = $self->html_links( $error )
330    
331  =cut  =cut
332    
333  sub editor_links {  sub html_links {
334          my ( $self, $error ) = @_;          my ( $self, $error ) = @_;
335    
336            $error = $self->strip_full_path( $error );
337    
338    #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
339    
340            # perl's backtrace
341          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
342                  {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;
343    
344            $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}
345                    {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm
346            || # or anything that looks like "Class::Name"
347            $error =~ s{"(\w+(?:::\w+)+)"}
348                    {"<a target="$1" href="/$1" title="introspect $1">$1</a>"}gsm;
349    
350            # method error messages
351            # FIXME replace with link to Frey::Introspect data
352            $error =~ s{(method ")(\w+)(" via)}
353                    {$1<a target="$2" href="/Frey::Shell::Grep/as_markup?pattern=$2" title="grep $2">$2</a>$3}gsm;
354    
355            # link paths to editor
356            $error =~ s{((?:lib|t)/[\S]+)\s+(\d+\s+bytes)}
357                    {<a target="editor" href="/editor+$1+1" title="vi $1 [$2]">$1</a>}gsm;
358    
359          $error =~ s{(via package ")([\w:]+)(")}          $error =~ s{(class ")([\w:]+)(")}
360                  {$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;
361    
362          return $error;          return $error;
363  }  }
364    
365    sub html_self {
366            my $self = shift;
367            my $html = $self;
368            $html =~ s{([\w:]+)=}{<a target="$1" href="/$1" title="introspect $1">$1</a>=}gsm;
369            return $html;
370    }
371    
372    =head2 error
373    
374    This method will return error to browser and backtrace unless
375    error message ends with LF C<\n> just like L<warn>
376    
377    =cut
378    
379  sub error {  sub error {
380          my $self = shift;          my $self = shift;
381          my $error = join(" ", @_);          my $error = join(" ", @_);
382    
383          my @backtrace = $self->backtrace;          my $fatal = '';
384          $error .= "\n\t" . join( "\n\t", @backtrace ) if @backtrace;          my $backtrace = '';
385    
386            if ( $error !~ m{\n$} ) {
387                    if ( my @backtrace = $self->backtrace ) {
388                            $backtrace =
389                                      "\n" . $self->html_self . "->error backtrace\n\t"
390                                    . $self->html_links( join( "\n\t", @backtrace ) )
391                                    ;
392                            $fatal = qq| frey-fatal|;
393                    }
394            }
395    
396          warn "ERROR: $error\n";          warn "ERROR: $error\n";
397            $self->add_icon('error');
398            $error = $self->html_links( $error );
399            return qq|<pre class="frey-error$fatal">$error $backtrace</pre>| ;
400    }
401    
402    =head1 Status line
403    
404    =head2 add_status
405    
406      $self->add_status( { name => { some => 'data' } } );
407    
408      $self->add_status( "append to last status popup" );
409    
410    =cut
411    
412    sub add_status {
413            my ( $self, $data ) = @_;
414            push @status, { 'X' => [ $self->backtrace ] };
415            if ( ref($data) ) {
416                    push @status, $data;
417            } else {
418                    if ( defined $status[ $#status ] ) {
419                            $status[ $#status ]->{ '+' } = $data;
420                    } else {
421                            push @status, { '+' => $data };
422                    }
423            }
424    }
425    
426    =head2 clean_status
427    
428    Called at beginning of each request
429    
430      $self->clean_status;
431    
432    =cut
433    
434    sub clean_status {
435            my ($self) = shift;
436            @head = ( 'static/frey.css' );
437            @status = (
438                    { 'ClassBrowser' => Frey::Class::Browser->new( usage_sort => 1, usage_on_top => 0 )->as_markup },
439                    { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
440                    { 'INC' => Frey::INC->new->as_markup },
441            );
442            $icon_html = '';
443    }
444    
445    =head2 status_parts
446    
447    Dump all status line parts
448    
449      $self->status_parts
450    
451    =cut
452    
453    sub status_parts {
454            warn "## status parts ", dump( map { keys %$_ } @status );
455    }
456    
457    =for debug
458    
459    sub DEMOLISH {
460            my ( $self ) = @_;
461            warn "## $self DEMOLISH status ", $#status + 1, " elements ", dump( map { keys %$_ } @status ) if @status;
462    }
463    
464    =cut
465    
466    =head2 add_icon
467    
468      Frey::Foo->add_icon;            # /static/icons/Frey/Foo.png
469      Frey::Foo->add_icon('warning'); # /static/icons/Frey/Foo/warning.png
470    
471    =cut
472    
473    sub icon_path {
474            my ($self,$class,$variant) = @_;
475    
476            sub icon_exists {
477                    my $class = shift;
478                    $class =~ s{::}{/}g;
479                    $class .= "/$variant" if $variant;
480                    my $icon_path = 'static/icons/' . $class . '.png';
481                    return $icon_path if -e $icon_path;
482                    return;
483            }
484    
485            my $path = icon_exists( $class );
486            if ( ! $path ) {
487                    my $super_class = $class;
488                    while ( $super_class =~ s{::[^:]+$}{} && ! $path ) {
489                            $path = icon_exists( $super_class ) unless $super_class eq 'Frey'; # don't default on Frey icon
490                    }
491            }
492    
493            if ( ! $path ) {
494                    $self->TODO( "add icon for $class" . ( $variant ? " variant $variant" : '' ) );
495                    return undef;
496            }
497    
498            warn "# $class from $self icon_path $path" if $self->debug;
499            return $path;
500    }
501    
502    sub add_icon {
503            my ($self,$variant) = @_;
504    
505            my $class = $self->class if $self->can('class');
506            #$class ||= $self->title;
507            $class ||= ref($self);
508            my $icon_path = $self->icon_path( $class, $variant ) || return;
509    
510            $icon_html .= qq|<link rel="icon" type="image/png" href="/$icon_path">|;
511            warn "# using icon $icon_path";
512    
513    =for later
514    
515            # FIXME http://en.wikipedia.org/wiki/Favicon suggest just rel="icon" but that doesn't seem to work!
516            my $ico_path = $icon_path;
517            $ico_path =~ s{png$}{ico};
518            if ( ! -e $ico_path ) {
519                    system "convert $icon_path $ico_path";
520                    warn "# convert $icon_path $ico_path : $@";
521            }
522            $icon_html .= qq|<link rel="shortcut icon" type="image/x-icon" href="/$ico_path">| if -e $ico_path;
523    
524    =cut
525    
526    }
527    
528    my $warn_colors = {
529            '#'  => '#444',
530            '##' => '#888',
531    };
532    
533    my $multiline_markers = {
534            '(' => ')',
535            '{' => '}',
536            '[' => ']',
537            '"' => '"',
538    };
539    
540    =for later
541    
542    my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
543    warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
544    
545    =cut
546    
547    sub log_path {
548            $Frey::Bootstrap::log_path || die "no log_path?";
549    }
550    
551    our $pwd = `pwd`;
552    chomp $pwd;
553    
554    sub strip_full_path {
555            my ($self, $msg) = @_;
556            # Mojo seems to expand warn messages to full path which is annoying
557            $msg =~ s{/[^/]+/\.\./}{/}gs;
558            $msg =~ s{$pwd/*}{}gs;
559            return $msg;
560    }
561    
562    our $last_log_pos  = 0;
563    our $last_log_line = 0;
564    
565    sub warnings_html {
566            my ($self,$level) = shift;
567            $level ||= $self->debug,
568            my $path = $self->log_path;
569    
570            my $max = 30;
571            my $pos = 0;
572            my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
573            my $line = $last_log_line;
574            my $multiline_end;
575    
576            # XXX do we really want to do this every time?
577            my $css = qq|/* short css classes for levels */\n|;
578            my $level_to_class;
579            foreach ( keys %$warn_colors ) {
580                    my $l = length($_);
581                    my $class = 'l' . $l;
582                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
583                    $level_to_class->{ $_ } = $class;
584            }
585            $self->add_css( $css );
586    
587            open(my $log, '<', $path)    || die "can't open $path: $!";
588            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
589            while(<$log>) {
590                    chomp;
591                    $line++;
592    
593                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
594    
595                    my $style = '';
596    
597    =for filter
598    
599                    if ( $multiline_end ) {
600                            if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {
601    #                               warn "## $line end of $multiline_end in '$_'\n";
602                                    undef $multiline_end;
603                            } else {
604    #                               warn "## $line skipped\n";
605                            }
606                    } elsif ( m{^(#*)\s+} ) {
607                            my $l = $1 ? length($1) : 0;
608                            if ( $l > $level ) {
609                                    undef $multiline_end;
610                                    $multiline_end = $multiline_markers->{$1} if m{($multiline_re)$};
611    #                               warn "## $line start $1 .. $multiline_end level $l > $level for '$_'\n" if $multiline_end;
612                                    next;
613                            }
614    
615    =cut
616                    if ( m{^(#*)} ) {
617    
618                            my $level = $1;
619                            my $msg = $self->strip_full_path( $_ );
620    
621                            my $spacer = ' ';
622                            my $real_msg = expand( $msg );
623                            if ( length($real_msg) > $self->html_dump_width ) {
624                                    
625                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
626                                    $msg = unexpand( $real_msg );
627                                    $spacer = '&hellip;'
628                            }
629    
630                            $msg = $self->html_escape( $msg );
631    
632                            if ( my $class = $level_to_class->{ $level } ) {
633                                    $msg = qq|<span class="$class">$msg</span>|;
634                            }
635    
636                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
637                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
638                                    . ( $spacer ? $spacer : '' )
639                                    . "\n"; # XXX <pre> needs this
640    
641                            $warnings[ $pos++ % $max ] = $msg;
642                    }
643            }
644            $last_log_pos = tell($log);
645            $last_log_line = $line;
646            warn "log has $line lines tell position $last_log_pos";
647            close($log) || die "can't close $path: $!";
648    
649            my $size = -s $path;
650    
651            my $warnings = join("",
652                    map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
653            );
654    
655            my $s = length($warnings);
656    
657          return          return
658                  qq|<pre class="frey-error">|                  # need to wrap editor link into span so we can have links in warnings
659                  . $self->editor_links( $error ) .                    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>|
660                  qq|</pre>|                  . $self->html_links( $warnings )
661                    . qq|</code></span>|
662                  ;                  ;
663  }  }
664    
665    
666    =head2 backtrace
667    
668    Show backtrace with links to editor
669    
670      my @backtrace = $self->backtrace;
671    
672    =cut
673    
674    sub backtrace {
675            my ($self) = @_;
676    
677            my @backtrace;
678            foreach ( 1 .. 5 ) { # 0 = backtrace
679                    my (
680                            $package,$path,$line
681                            # subroutine hasargs
682                            # wantarray evaltext is_require
683                            # hints bitmask hinthash
684                    ) = caller($_) or last;
685    
686                    push @backtrace,
687                            qq|via "$package" at $path line $line|;
688            }
689            #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
690            return @backtrace;
691    }
692    
693    =head2 checkbox
694    
695    Generate checkbox html markup from some attribute
696    
697      my $html = $self->checkbox('attribute_name', $value);
698    
699    =cut
700    
701    sub checkbox {
702            my ($self,$name,$value) = @_;
703            my $checked = '';
704            my $all_checkboxes = eval { $self->$name };
705            warn "ERROR tried to get checkbox value for '$name' which is unknown: $@" if $@;
706            $all_checkboxes = [ $all_checkboxes ] unless ref($all_checkboxes) eq 'ARRAY'; # sigh, too chatty
707            $checked = ' checked' if grep { defined $_ && $_ eq $value } @$all_checkboxes;
708            warn "# checkbox $name $value $checked\t", $self->dump( $self->$name );
709            qq|<input name="$name" value="$value" type="checkbox"$checked>|;
710    }
711    
712    =head2 strip
713    
714    Strip whitespace around content
715    
716      my $stripped = strip('  no more whitespace around this   ');
717    
718    =cut
719    
720    sub strip {
721            my $t = shift;
722            $t =~ s{^\s+}{}gs;
723            $t =~ s{>\s+<}{><}gs;
724            $t =~ s{\s+$}{}gs;
725            return $t;
726    }
727    
728  1;  1;

Legend:
Removed from v.482  
changed lines
  Added in v.837

  ViewVC Help
Powered by ViewVC 1.1.26