/[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 588 by dpavlin, Fri Nov 28 15:07:03 2008 UTC revision 1109 by dpavlin, Mon Jun 29 16:54:02 2009 UTC
# Line 2  package Frey::Web; Line 2  package Frey::Web;
2  use Moose::Role;  use Moose::Role;
3    
4  with 'Frey::Session';  with 'Frey::Session';
5    with 'Frey::Class::Icon';
6    
 use Frey::Types;  
   
 #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    use Digest::MD5 qw/md5/;
12    
13    use lib 'lib';
14    
15    use Frey::Types;
16    
17  use Frey::Bookmarklet;  use Frey::Bookmarklet;
18  use Frey::ClassBrowser;  use Frey::Class::Browser;
19  use Frey::INC;  use Frey::INC;
20    
21  use Frey::SVK;  use Frey::SVK;
# Line 22  sub head { @head } Line 26  sub head { @head }
26  has 'request_url' => (  has 'request_url' => (
27          is => 'rw',          is => 'rw',
28          isa => 'Uri', coerce => 1,          isa => 'Uri', coerce => 1,
29          default => '/',          required => 1,
30            default => sub {
31                    carp "undefined request_url";
32                    '/';
33            },
34  );  );
35    
36  has 'title' => (  has 'title' => (
# Line 61  has 'html_dump_width' => ( Line 69  has 'html_dump_width' => (
69          is => 'rw',          is => 'rw',
70          isa => 'Int',          isa => 'Int',
71  #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them  #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them
72          default => 128,          default => 250,
73    );
74    
75    has 'wrap_in_page' => (
76            documentation => 'wrap full html page with status bar around content',
77            is => 'rw',
78            isa => 'Bool',
79            default => 1,
80  );  );
81    
82  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
# Line 69  my $escape_re  = join '|' => keys %escap Line 84  my $escape_re  = join '|' => keys %escap
84    
85  sub html_escape {  sub html_escape {
86          my ( $self, $html ) = @_;          my ( $self, $html ) = @_;
87            return '' unless defined $html;
88          $html =~ s/($escape_re)/$escape{$1}/g;          $html =~ s/($escape_re)/$escape{$1}/g;
89          return $html;          return $html;
90  }  }
91    
92    # from Mojo::ByteStream
93    sub url_escape {
94            my ( $self, $url, $pattern ) = @_;
95            $pattern ||= 'A-Za-z0-9\-\.\_\~';
96            $url =~ s/([^$pattern])/sprintf('%%%02X',ord($1))/ge;
97            return $url;
98    }
99    
100  sub html_dump {  sub html_dump {
101          my ( $self, $dump ) = @_;          my ( $self, $dump ) = @_;
102          $dump = dump( $dump ) if ref($dump);          $dump = dump( $dump ) if ref($dump);
# Line 80  sub html_dump { Line 104  sub html_dump {
104          $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;          $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;
105          $dump = $self->html_escape( $dump );          $dump = $self->html_escape( $dump );
106          $dump =~ s{\Q...\E}{&hellip;}gs;          $dump =~ s{\Q...\E}{&hellip;}gs;
107  #       $dump =~ $self->editor_links( $dump ); # FIXME include this  #       $dump =~ $self->html_links( $dump ); # FIXME include this
108          return "<code>$dump</code>";          return "<code>$dump</code>";
109  }  }
110    
111  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }
112  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }
113    
114  our $re_html = qr{<(?:!--.+?--|(\w+).+?/\1)>}s; # relaxed html check for one semi-valid tag  our $re_html = qr{<(?:!--|(\w+)|[^>]+)/?>}s; # relaxed html check for one semi-valid tag
115    
116  sub popup_dropdown {  sub popup_dropdown {
117          my ( $self, $type, $name, $content, $full ) = @_;          my ( $self, $type, $name, $content, $full ) = @_;
# Line 98  sub popup_dropdown { Line 122  sub popup_dropdown {
122    
123          $content =~ s{<span>(<code>[^<]+</code>)</span>}{$1} && $self->TODO("code wrapped in span");          $content =~ s{<span>(<code>[^<]+</code>)</span>}{$1} && $self->TODO("code wrapped in span");
124    
125          warn "## $type [$name] = ", length( $content ), " bytes" if $self->debug;          warn "## $type [$name] = ", length( $content ), " bytes"; # if $self->debug; # FIXME
126    
127          if ( $name =~ m{::} && $name !~ $re_html ) {          if ( $name =~ m{::} && $name !~ $re_html ) {
128                  return qq|<a class="frey-$type" target="$name" href="/$name">$name $content</a>\n|;                  return qq|<a class="frey-$type" target="$name" href="/$name">$name $content</a>\n|;
# Line 109  sub popup_dropdown { Line 133  sub popup_dropdown {
133          }          }
134  }  }
135    
136  sub _inline_path {  sub _inline {
137          my ( $self, $path ) = @_;          my ( $self, $path ) = @_;
138          -s $path < $self->inline_smaller_than;          return unless defined $path;
139            warn "# _inline $path";
140            -e $path && -s $path < $self->inline_smaller_than && -s $path;
141  }  }
142    
143  sub _head_html {  sub _head_html {
# Line 120  sub _head_html { Line 146  sub _head_html {
146          foreach my $path ( @head ) {          foreach my $path ( @head ) {
147                  $path =~ s!^/!!;                  $path =~ s!^/!!;
148                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
149                          $out .= $self->_inline_path( $path ) ?                          my $size;
150                                  qq|<!-- $path --><script type="text/javascript">\n| . read_file($path) . qq|\n</script>| :                          $out .= $size = _inline( $path ) ?
151                                    qq|<script type="text/javascript">\n/* inline $path $size bytes */\n\n| . read_file($path) . qq|\n</script>| :
152                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
153                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
154                          $out .= $self->_inline_path( $path ) ?                          my $size;
155                                  qq|<!-- $path --><style type="text/css">\n| . read_file( $path ) . qq|\n</style>| :                          $out .= $size = _inline( $path ) ?
156                                    qq|<style type="text/css">\n/* inline $path $size bytes */\n\n| . read_file( $path ) . qq|\n</style>| :
157                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
158                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
159                          $out .= $path;                          $out .= $path;
# Line 167  sub add_head { Line 195  sub add_head {
195    
196  }  }
197    
198    sub _add_css_js {
199            my ( $self, $what, $content ) = @_;
200    
201            my $md5 = md5( $content );
202            return if $self->{_add_css_js_seen}->{$what}->{$md5}++;
203    
204            my $tag  = $what eq 'css' ? 'style'    : 'script';
205            my $type = $what eq 'css' ? 'text/css' : 'text/javascript';
206            my $head;
207    
208            my ( $package, $path, $line ) = caller(1);
209    
210            $content = "/$content" if $content !~ m{[\n\r]} && -e $content;
211            if ( $content =~ $re_html && $what ne 'js' ) {
212                    $head = qq|
213                            $content
214                            <!-- $type via $package at $path line $line -->
215                    |;
216            } elsif ( $content =~ m{^(/\w+|https?://)} && $content !~ m{[\n\r]} ) {
217                    if ( $what eq 'js' ) {
218                            $head = qq|
219                                    <$tag type="$type" src="$content">
220                                    /* $what via $package at $path line $line */
221                                    </$tag>
222                            |;
223                    } else {
224                            $head = qq|
225                                    <link rel="stylesheet" type="$type" href="$content">
226                                    <!-- $what via $package at $path line $line -->
227                            |;
228                    }
229            } else {
230                    $head = qq|
231                            <$tag type="$type">
232                            /* via $package at $path line $line */
233                            $content
234                            </$tag>
235                    |;
236            };
237            $self->add_head( $head );
238    }
239    
240  sub add_css {  sub add_css {
241          my ($self,$css) = @_;          my ($self,$css) = @_;
242          my ( $package, $path, $line ) = caller;          $self->_add_css_js( 'css', $css );
243          $self->add_head( qq|  }
244          <style type="text/css">  
245          /* via $package at $path line $line */  sub add_js {
246          $css          my ($self,$js) = @_;
247          </style>          $self->_add_css_js( 'js', $js );
         | );  
248  }  }
249    
250  our $reload_counter = 0;  our $reload_counter = 0;
251    
252    
253  =head2 page  =head2 html_page
254    
255    $self->page(    $self->html_page(
256          title => 'page title',          title => 'page title',
257          head  => '<!-- optional head markup -->',          head  => '<!-- optional head markup -->',
258          body  => '<b>Page Body</b>',          body  => '<b>Page Body</b>',
# Line 194  our $reload_counter = 0; Line 263  our $reload_counter = 0;
263  our @status;  our @status;
264  sub status { @status };  sub status { @status };
265    
266  our $icon_html;  sub html_page {
   
 sub page {  
267          my $self = shift;          my $self = shift;
268          my $a = {@_};          my $a = {@_};
269    
         warn "## page ",dump($a);  
   
270          $reload_counter++;          $reload_counter++;
271    
272          my $status_line = '';          my $status_line = '';
# Line 216  sub page { Line 281  sub page {
281          $url =~ s{\?reload=\d+}{};          $url =~ s{\?reload=\d+}{};
282    
283          my $body = $a->{body};          my $body = $a->{body};
284          $body ||= $self->as_markup if $self->can('as_markup');          if ( ! $body ) {
285          if ( $self->content_type !~ m{html} ) {                  my $run = $a->{run} || 'as_markup';
286                    warn "# no body, invoke $self->$run on ", ref($self);
287                    $body = $self->$run;
288            }
289            if ( $self->content_type !~ m{html} || ! $self->wrap_in_page ) {
290                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
291                  return $body                  return $body
292          } elsif ( ! defined $body ) {          } elsif ( ! defined $body ) {
# Line 233  sub page { Line 302  sub page {
302    
303          my $right =          my $right =
304                  qq|                  qq|
305                          <span class="right">                          <span class="frey-status-right">
306                          <a title="reload $url"  href="/reload$url">reload</a>                          <a title="reload $url"  href="/reload$url">reload</a>
307                          <a title="$description" href="/exit$url">$exit</a>                          <a title="$description" href="/exit$url" target="exit">$exit</a>
308                          </span>                          </span>
309                  |;                  |;
310    
# Line 244  sub page { Line 313  sub page {
313          my $revision = $svk->info->{Revision} || '';          my $revision = $svk->info->{Revision} || '';
314          $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};          $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};
315    
316          $self->add_icon unless $icon_html;          $self->add_icon;
317    
318            my $title = undef
319                    || $a->{title}
320                    || $self->title
321                    || ref($self)
322                    ;
323    
324    #       $title =~ s{(\w)\w+::}{$1:}g; # XXX compress names of classes
325    
326            $self->add_css(qq|
327                    body {
328                            padding-bottom: 3em; /* don't overlap status line */
329                    }
330            |);
331    
332          my $html = join("\n",          my $html = join("\n",
333                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
334                  $self->_head_html,                  $self->_head_html,
335                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',                  qq|<title>$title</title>|,
336                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
337                  ( $icon_html || '<!-- no icon -->' ),                  ( $self->icon_html ),
338                  ( $a->{head} || '' ),                  ( $a->{head} || '' ),
339                  qq|                  qq|
340                  </head><body>                  </head><body>
# Line 291  sub editor { Line 374  sub editor {
374          qq|>$class</a>|;          qq|>$class</a>|;
375  }  }
376    
377  =head2 editor_links  =head2 html_links
378    
379  Create HTML links to editor for perl error message  Create HTML links to editor for perl error message
380    
381    my $html = $self->editor_links( $error )    my $html = $self->html_links( $error )
382    
383  =cut  =cut
384    
385  sub editor_links {  sub html_links {
386          my ( $self, $error ) = @_;          my ( $self, $error ) = @_;
387    
388            $error = $self->strip_full_path( $error );
389    
390    #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
391    
392            # perl's backtrace
393          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
394                  {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;
395    
396          $error =~ s{(via (?:package) "?)([\w:]+)("?)}          $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}
397                  {$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
398            || # or anything that looks like "Class::Name"
399            $error =~ s{"(\w+(?:::\w+)+)"}
400                    {"<a target="$1" href="/$1" title="introspect $1">$1</a>"}gsm;
401    
402            # method error messages
403            # FIXME replace with link to Frey::Introspect data
404            $error =~ s{(method ")(\w+)(" via)}
405                    {$1<a target="$2" href="/Frey::Shell::Grep/as_markup?pattern=$2" title="grep $2">$2</a>$3}gsm;
406    
407            # link paths to editor
408            $error =~ s{((?:lib|t)/[\S]+)\s+(\d+\s+bytes)}
409                    {<a target="editor" href="/editor+$1+1" title="vi $1 [$2]">$1</a>}gsm;
410    
411            $error =~ s{(class ")([\w:]+)(")}
412                    {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm;
413    
414          return $error;          return $error;
415  }  }
416    
417    sub html_self {
418            my $self = shift;
419            my $html = $self;
420            $html =~ s{([\w:]+)=}{<a target="$1" href="/$1" title="introspect $1">$1</a>=}gsm;
421            return $html;
422    }
423    
424    =head2 error
425    
426    This method will return error to browser and backtrace unless
427    error message ends with LF C<\n> just like L<warn>
428    
429    =cut
430    
431  sub error {  sub error {
432          my $self = shift;          my $self = shift;
433          my $error = join(" ", @_);          my $error = join(" ", @_);
434    
435          my @backtrace = $self->backtrace;          my $fatal = '';
436          $error .= "\n\t" . join( "\n\t", @backtrace ) if @backtrace;          my $backtrace = '';
437    
438            if ( $error !~ m{\n$} ) {
439                    if ( my @backtrace = $self->backtrace ) {
440                            $backtrace =
441                                      "\n" . $self->html_self . "->error backtrace\n\t"
442                                    . $self->html_links( join( "\n\t", @backtrace ) )
443                                    ;
444                            $fatal = qq| frey-fatal|;
445                    }
446            }
447    
448          warn "ERROR: $error\n";          warn "ERROR: $error\n";
449          return          $self->add_icon('error');
450                  qq|<pre class="frey-error">|          $error = $self->html_links( $error );
451                  . $self->editor_links( $error ) .          return qq|<pre class="frey-error$fatal">$error $backtrace</pre>| ;
                 qq|</pre>|  
                 ;  
452  }  }
453    
454  =head1 Status line  =head1 Status line
# Line 338  sub error { Line 463  sub error {
463    
464  sub add_status {  sub add_status {
465          my ( $self, $data ) = @_;          my ( $self, $data ) = @_;
466          push @status, { 'X' => [ $self->backtrace ] };          die "no data" unless $data;
467          if ( ref($data) ) {          if ( ref $data  ) {
468                  push @status, $data;                  push @status, $data;
469          } else {          } else {
470                  if ( defined $status[ $#status ] ) {                  if ( defined $status[ $#status ] ) {
# Line 360  Called at beginning of each request Line 485  Called at beginning of each request
485    
486  sub clean_status {  sub clean_status {
487          my ($self) = shift;          my ($self) = shift;
488            warn "## clean_status";
489          @head = ( 'static/frey.css' );          @head = ( 'static/frey.css' );
490          @status = (          @status = (
491                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },                  { 'ClassBrowser' => Frey::Class::Browser->new( usage_sort => 1, usage_on_top => 0 )->as_markup },
492                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
493                  { 'INC' => Frey::INC->new->as_markup },                  { 'INC' => Frey::INC->new->as_markup },
494          );          );
         $icon_html = '';  
495  }  }
496    
497  =head2 status_parts  =head2 status_parts
# Line 390  sub DEMOLISH { Line 515  sub DEMOLISH {
515    
516  =cut  =cut
517    
 =head2 add_icon  
   
   Frey::Foo->add_icon;            # /static/icons/Frey/Foo.png  
   Frey::Foo->add_icon('warning'); # /static/icons/Frey/Foo/warning.png  
   
 =cut  
   
 sub icon_path {  
         my ($self,$class,$variant) = @_;  
         my $icon = $class;  
         $icon =~ s{::}{/}g;  
         $icon .= "/$variant" if $variant;  
         my $path = 'static/icons/' . $icon . '.png';  
         if ( -e $path ) {  
                 warn "# $class from $self icon_path $path" if $self->debug;  
                 return $path;  
         } else {  
                 $self->TODO( "add $path icon for $class" );  
                 return undef;  
         }  
 }  
   
 sub add_icon {  
         my ($self,$variant) = @_;  
   
         my $class = ref($self);  
         $class = $self->class if $self->can('class');  
         my $icon_path = $self->icon_path( $class, $variant ) || return;  
   
         $icon_html .= qq|<link rel="icon" type="image/png" href="/$icon_path">|;  
         warn "# using icon $icon_path";  
   
 =for later  
   
         # FIXME http://en.wikipedia.org/wiki/Favicon suggest just rel="icon" but that doesn't seem to work!  
         my $ico_path = $icon_path;  
         $ico_path =~ s{png$}{ico};  
         if ( ! -e $ico_path ) {  
                 system "convert $icon_path $ico_path";  
                 warn "# convert $icon_path $ico_path : $@";  
         }  
         $icon_html .= qq|<link rel="shortcut icon" type="image/x-icon" href="/$ico_path">| if -e $ico_path;  
   
 =cut  
   
 }  
   
518  my $warn_colors = {  my $warn_colors = {
519          '#'  => '#444',          '#'  => '#444',
520          '##' => '#888',          '##' => '#888',
# Line 449  my $multiline_markers = { Line 527  my $multiline_markers = {
527          '"' => '"',          '"' => '"',
528  };  };
529    
530    =for later
531    
532  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
533  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
534    
535    =cut
536    
537  sub log_path {  sub log_path {
538          $Frey::Bootstrap::log_path || warn "no log_path?";          $Frey::Bootstrap::log_path || die "no log_path?";
539    }
540    
541    our $pwd = `pwd`;
542    chomp $pwd;
543    
544    sub strip_full_path {
545            my ($self, $msg) = @_;
546            # Mojo seems to expand warn messages to full path which is annoying
547            $msg =~ s{/[^/]+/\.\./}{/}gs;
548            $msg =~ s{$pwd/*}{}gs;
549            return $msg;
550  }  }
551    
552    our $last_log_pos  = 0;
553    our $last_log_line = 0;
554    
555  sub warnings_html {  sub warnings_html {
556          my ($self,$level) = shift;          my ($self,$level) = shift;
557          $level ||= $self->debug,          $level ||= $self->debug,
558          my $path = $self->log_path;          my $path = $self->log_path;
559    
560          my $max = 50;          my $max = 30;
561          my $pos = 0;          my $pos = 0;
562          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
563          my $line = 0;          my $line = $last_log_line;
564          my $multiline_end;          my $multiline_end;
565    
566          open(my $log, '<', $path) || die "can't open $path: $!";          # XXX do we really want to do this every time?
567            my $css = qq|/* short css classes for levels */\n|;
568            my $level_to_class;
569            foreach ( keys %$warn_colors ) {
570                    my $l = length($_);
571                    my $class = 'l' . $l;
572                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
573                    $level_to_class->{ $_ } = $class;
574            }
575            $self->add_css( $css );
576    
577            open(my $log, '<', $path)    || die "can't open $path: $!";
578            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
579          while(<$log>) {          while(<$log>) {
580                  chomp;                  chomp;
581                  $line++;                  $line++;
582    
583                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
584    
585                  my $style = '';                  my $style = '';
586    
587  =for filter  =for filter
# Line 493  sub warnings_html { Line 603  sub warnings_html {
603                          }                          }
604    
605  =cut  =cut
606                  if ( m{^(#*)\s+} ) { # FIXME                  if ( m{^(#*)} ) {
607    
608                          $style = $warn_colors->{$1}                          my $level = $1;
609                                  ? ' style="color:' . $warn_colors->{$1} . '"'                          my $msg = $self->strip_full_path( $_ );
                                 : '';  
610    
                         my $msg = $self->html_escape( $_ );  
611                          my $spacer = ' ';                          my $spacer = ' ';
612                          if ( length($msg) > $self->html_dump_width ) {                          my $real_msg = expand( $msg );
613                                  $msg = substr( $msg, 0, $self->html_dump_width );                          if ( length($real_msg) > $self->html_dump_width ) {
614                                    
615                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
616                                    $msg = unexpand( $real_msg );
617                                  $spacer = '&hellip;'                                  $spacer = '&hellip;'
618                          }                          }
619                          $warnings[ $pos++ % $max ]  
620                                  = $msg                          $msg = $self->html_escape( $msg );
621  #                               = ( $style ? qq|<span$style>$msg</span>| : $msg )  
622                                  . $spacer                          if ( my $class = $level_to_class->{ $level } ) {
623                                  . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">+$line</a><br/>|;                                  $msg = qq|<span class="$class">$msg</span>|;
624                          # FIXME <tt> should be <code> but CSS hates me                          }
625    
626                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
627                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
628                                    . ( $spacer ? $spacer : '' )
629                                    . "\n"; # XXX <pre> needs this
630    
631                            $warnings[ $pos++ % $max ] = $msg;
632                  }                  }
633          }          }
634            $last_log_pos = tell($log);
635            $last_log_line = $line;
636            warn "log has $line lines tell position $last_log_pos";
637          close($log) || die "can't close $path: $!";          close($log) || die "can't close $path: $!";
638    
639          my $size = -s $path;          my $size = -s $path;
640    
641          my $warnings = join('',          my $warnings = join("",
642                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. $max                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
643          );          );
644    
645          my $s = length($warnings);          my $s = length($warnings);
646    
647          return          return
648                  # need to wrap into span so we can have links in warnings                  # need to wrap editor link into span so we can have links in warnings
649                    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>|                    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>|
650                  . $warnings                  . $self->html_links( $warnings )
651  #               . $self->editor_links( $warnings )                  . qq|</code></span>|
                 . qq|</code></span></a>|  
652                  ;                  ;
653  }  }
654    
# Line 545  sub backtrace { Line 665  sub backtrace {
665          my ($self) = @_;          my ($self) = @_;
666    
667          my @backtrace;          my @backtrace;
668          foreach ( 0 .. 5 ) {          foreach ( 1 .. 5 ) { # 0 = backtrace
669                  my (                  my (
670                          $package,$path,$line                          $package,$path,$line
671                          # subroutine hasargs                          # subroutine hasargs
# Line 554  sub backtrace { Line 674  sub backtrace {
674                  ) = caller($_) or last;                  ) = caller($_) or last;
675    
676                  push @backtrace,                  push @backtrace,
677                          qq|via $package at $path line $line|;                          qq|via "$package" at $path line $line|;
678          }          }
679          warn "# backtrace: ", dump( @backtrace ) if @backtrace;          #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
680          return @backtrace;          return @backtrace;
681  }  }
682    
683    =head2 checkbox
684    
685    Generate checkbox html markup from some attribute
686    
687      my $html = $self->checkbox('attribute_name', $value);
688    
689    =cut
690    
691    sub checkbox {
692            my ($self,$name,$value) = @_;
693            my $checked = '';
694            my $all_checkboxes = eval { $self->$name };
695            warn "ERROR tried to get checkbox value for '$name' which is unknown: $@" if $@;
696            $all_checkboxes = [ $all_checkboxes ] unless ref($all_checkboxes) eq 'ARRAY'; # sigh, too chatty
697            $checked = ' checked' if grep { defined $_ && $_ eq $value } @$all_checkboxes;
698            warn "# checkbox $name $value $checked\t", $self->dump( $self->$name );
699            qq|<input name="$name" value="$value" type="checkbox"$checked>|;
700    }
701    
702    =head2 strip
703    
704    Strip whitespace around content
705    
706      my $stripped = strip('  no more whitespace around this   ');
707    
708    =cut
709    
710    sub strip {
711            my $t = shift;
712            $t =~ s{^\s+}{}gs;
713            $t =~ s{>\s+<}{><}gs;
714            $t =~ s{\s+$}{}gs;
715            return $t;
716    }
717    
718  1;  1;

Legend:
Removed from v.588  
changed lines
  Added in v.1109

  ViewVC Help
Powered by ViewVC 1.1.26