/[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 206 by dpavlin, Thu Oct 30 22:35:11 2008 UTC revision 819 by dpavlin, Fri Dec 12 18:01:02 2008 UTC
# Line 1  Line 1 
1  package Frey::Web;  package Frey::Web;
2  use Moose::Role;  use Moose::Role;
3    
4  use Continuity::Widget::DomNode;  with 'Frey::Session';
5    
6    #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;
17    use Frey::Class::Browser;
18    use Frey::INC;
19    
20    use Frey::SVK;
21    
22  has 'head' => (  our @head;
23    sub head { @head }
24    
25    has 'request_url' => (
26          is => 'rw',          is => 'rw',
27          isa => 'ArrayRef[Str]',          isa => 'Uri', coerce => 1,
28          default => sub { [ 'static/frey.css' ] },          required => 1,
29            default => sub {
30                    carp "undefined request_url";
31                    '/';
32            },
33  );  );
34    
35  =head2 inline_smaller_than  has 'title' => (
36            is => 'rw',
37            isa => 'Str',
38            lazy => 1,
39            default => sub {
40                    my ($self) = @_;
41                    ref($self);
42            },
43    );
44    
45  Inline JavaScript and CSS smaller than this size into page reducing  has 'content_type' => (
46  round-trips to server.          is => 'rw',
47            isa => 'Str',
48            default => 'text/html',
49            documentation => 'Content-type header',
50    );
51    
52  =cut  has 'dump_max_bytes' => (
53            is => 'rw',
54            isa => 'Int',
55            default => 4096,
56            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',
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 38  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 ) {
138                            $out .= $path;
139                  } else {                  } else {
140                          confess "don't know how to render $path";                          confess "don't know how to render $path";
141                  }                  }
# Line 62  sub _head_html { Line 150  sub _head_html {
150    
151    my $size = $o->add_head( 'path/to/external.css' );    my $size = $o->add_head( 'path/to/external.css' );
152    
153      $o->add_head( '<!-- html content -->' );
154    
155  =cut  =cut
156    
157  sub add_head {  sub add_head {
# Line 69  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 ( -e $path ) {          if ( $path =~ $re_html ) {
163                    push @head, $path;
164            } 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                  }                  }
170                    return -s $path;
171          } else {          } else {
172                  confess "can't find $path: $!";                  confess "can't find $path: $!";
173          }          }
174    
175          return -s $path;  }
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;
# Line 95  our $reload_counter = 0; Line 218  our $reload_counter = 0;
218    
219  =cut  =cut
220    
221  use Frey::Bookmarklet;  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 $html = qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|          my $status_line = '';
235          . $self->_head_html  
236          . '<title>' . ( $a->{title} || ref($self) ) . '</title>'          foreach my $part ( @status ) {
237          . ( $a->{head} || '' )                  foreach my $name ( keys %$part ) {
238          . '</head><body>'                          $status_line .= $self->popup( $name, $part->{$name} );
239          . ( $a->{body} || '<!-- no body -->' )                  }
240          . qq|<div class="frey-status-line">          }
241                  <a href="/">Frey</a> $Frey::VERSION  
242                  <a href="?reload=$reload_counter">reload</a>          my $url = $self->request_url;
243                  <span class="frey-popup">Bookmarklets<span>| . Frey::Bookmarklet->markup . qq|</span>|          $url =~ s{\?reload=\d+}{};
244          . '</body></html>'  
245          ;          my $body = $a->{body};
246            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} ) {
255                    warn "# return only $self body ", $self->content_type;
256                    return $body
257            } elsif ( ! defined $body ) {
258                    warn "# no body";
259                    $body = '<!-- no body -->';
260            }
261    
262            $status_line .= $self->warnings_html;
263    
264            my      ($exit,$description) = ('exit','stop server');
265                    ($exit,$description) = ('restart','restart server')
266                    if $ENV{FREY_RESTART}; # tune labels on exit link
267    
268            my $right =
269                    qq|
270                            <span class="right">
271                            <a title="reload $url"  href="/reload$url">reload</a>
272                            <a title="$description" href="/exit$url" target="exit">$exit</a>
273                            </span>
274                    |;
275    
276            my $svk = Frey::SVK->new;
277            my $info = $svk->info;
278            my $revision = $svk->info->{Revision} || '';
279            $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};
280    
281            $self->add_icon unless $icon_html;
282    
283            my $html = join("\n",
284                    qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
285                    $self->_head_html,
286                    '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',
287                    '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
288                    ( $icon_html || '<!-- no icon -->' ),
289                    ( $a->{head} || '' ),
290                    qq|
291                    </head><body>
292                    $body
293                    <div class="frey-status-line">
294                            <a href="/">Frey</a> $Frey::VERSION $revision
295                            $status_line
296                            $right
297                    </div>
298                </body></html>
299                    |,
300            );
301    
302          warn "## >>> page ",length($html), " bytes\n" if $self->debug;          warn "## >>> page ",length($html), " bytes\n" if $self->debug;
303    
304          return $html;          return $html;
305  }  }
306    
307    =head2 editor
308    
309    Create HTML editor link with optional line and title
310    
311      my $html = $self->editor( $class, $line, $title );
312    
313    =cut
314    
315    sub editor {
316            my ( $self, $class, $line, $title ) = @_;
317            confess "need class" unless $class;
318            if ( ! defined $title ) {
319                    $title  = "edit $class";
320                    $title .= " line $line" if $line;
321            }
322            $line  ||= 1;
323            qq|<a target="editor" href="/editor+$class+$line"| .
324            ( $title ? qq| title="$title"| : '' ) .
325            qq|>$class</a>|;
326    }
327    
328    =head2 html_links
329    
330    Create HTML links to editor for perl error message
331    
332      my $html = $self->html_links( $error )
333    
334    =cut
335    
336    sub html_links {
337            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+)}
345                    {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{(class ")([\w:]+)(")}
363                    {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm;
364    
365            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 {
376            my $self = shift;
377            my $error = join(" ", @_);
378    
379            my $fatal = '';
380    
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";
389            return
390                    qq|<pre class="frey-error$fatal">|
391                    . $self->html_links( $error ) .
392                    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 {
407            my ( $self, $data ) = @_;
408            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 {
429            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 = '';
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 {
448            warn "## status parts ", dump( map { keys %$_ } @status );
449    }
450    
451    =for debug
452    
453    sub DEMOLISH {
454            my ( $self ) = @_;
455            warn "## $self DEMOLISH status ", $#status + 1, " elements ", dump( map { keys %$_ } @status ) if @status;
456    }
457    
458    =cut
459    
460    =head2 add_icon
461    
462      Frey::Foo->add_icon;            # /static/icons/Frey/Foo.png
463      Frey::Foo->add_icon('warning'); # /static/icons/Frey/Foo/warning.png
464    
465    =cut
466    
467    sub icon_path {
468            my ($self,$class,$variant) = @_;
469    #       $class ||= $self->title;
470    
471            sub icon_exists {
472                    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            if ( ! $path ) {
482                    my $super_class = $class;
483                    while ( $super_class =~ s{::[^:]+$}{} && ! $path ) {
484                            $path = icon_exists( $super_class ) unless $super_class eq 'Frey'; # don't default on Frey icon
485                    }
486            }
487    
488            if ( ! $path ) {
489                    $self->TODO( "add icon for $class" . ( $variant ? " variant $variant" : '' ) );
490                    return undef;
491            }
492    
493            warn "# $class from $self icon_path $path" if $self->debug;
494            return $path;
495    }
496    
497    sub add_icon {
498            my ($self,$variant) = @_;
499    
500            my $class = ref($self);
501            $class = $self->class if $self->can('class');
502            my $icon_path = $self->icon_path( $class, $variant ) || return;
503    
504            $icon_html .= qq|<link rel="icon" type="image/png" href="/$icon_path">|;
505            warn "# using icon $icon_path";
506    
507    =for later
508    
509            # FIXME http://en.wikipedia.org/wiki/Favicon suggest just rel="icon" but that doesn't seem to work!
510            my $ico_path = $icon_path;
511            $ico_path =~ s{png$}{ico};
512            if ( ! -e $ico_path ) {
513                    system "convert $icon_path $ico_path";
514                    warn "# convert $icon_path $ico_path : $@";
515            }
516            $icon_html .= qq|<link rel="shortcut icon" type="image/x-icon" href="/$ico_path">| if -e $ico_path;
517    
518    =cut
519    
520    }
521    
522    my $warn_colors = {
523            '#'  => '#444',
524            '##' => '#888',
525    };
526    
527    my $multiline_markers = {
528            '(' => ')',
529            '{' => '}',
530            '[' => ']',
531            '"' => '"',
532    };
533    
534    =for later
535    
536    my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
537    warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
538    
539    =cut
540    
541    sub log_path {
542            $Frey::Bootstrap::log_path || die "no log_path?";
543    }
544    
545    our $pwd = `pwd`;
546    chomp $pwd;
547    
548    sub strip_full_path {
549            my ($self, $msg) = @_;
550            # Mojo seems to expand warn messages to full path which is annoying
551            $msg =~ s{/[^/]+/\.\./}{/}gs;
552            $msg =~ s{$pwd/*}{}gs;
553            return $msg;
554    }
555    
556    our $last_log_pos  = 0;
557    our $last_log_line = 0;
558    
559    sub warnings_html {
560            my ($self,$level) = shift;
561            $level ||= $self->debug,
562            my $path = $self->log_path;
563    
564            my $max = 30;
565            my $pos = 0;
566            my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
567            my $line = $last_log_line;
568            my $multiline_end;
569    
570            # XXX do we really want to do this every time?
571            my $css = qq|/* short css classes for levels */\n|;
572            my $level_to_class;
573            foreach ( keys %$warn_colors ) {
574                    my $l = length($_);
575                    my $class = 'l' . $l;
576                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
577                    $level_to_class->{ $_ } = $class;
578            }
579            $self->add_css( $css );
580    
581            open(my $log, '<', $path)    || die "can't open $path: $!";
582            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
583            while(<$log>) {
584                    chomp;
585                    $line++;
586    
587                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
588    
589                    my $style = '';
590    
591    =for filter
592    
593                    if ( $multiline_end ) {
594                            if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {
595    #                               warn "## $line end of $multiline_end in '$_'\n";
596                                    undef $multiline_end;
597                            } else {
598    #                               warn "## $line skipped\n";
599                            }
600                    } elsif ( m{^(#*)\s+} ) {
601                            my $l = $1 ? length($1) : 0;
602                            if ( $l > $level ) {
603                                    undef $multiline_end;
604                                    $multiline_end = $multiline_markers->{$1} if m{($multiline_re)$};
605    #                               warn "## $line start $1 .. $multiline_end level $l > $level for '$_'\n" if $multiline_end;
606                                    next;
607                            }
608    
609    =cut
610                    if ( m{^(#*)} ) {
611    
612                            my $level = $1;
613                            my $msg = $self->strip_full_path( $_ );
614    
615                            my $spacer = ' ';
616                            my $real_msg = expand( $msg );
617                            if ( length($real_msg) > $self->html_dump_width ) {
618                                    
619                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
620                                    $msg = unexpand( $real_msg );
621                                    $spacer = '&hellip;'
622                            }
623    
624                            $msg = $self->html_escape( $msg );
625    
626                            if ( my $class = $level_to_class->{ $level } ) {
627                                    $msg = qq|<span class="$class">$msg</span>|;
628                            }
629    
630                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
631                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
632                                    . ( $spacer ? $spacer : '' )
633                                    . "\n"; # XXX <pre> needs this
634    
635                            $warnings[ $pos++ % $max ] = $msg;
636                    }
637            }
638            $last_log_pos = tell($log);
639            $last_log_line = $line;
640            warn "log has $line lines tell position $last_log_pos";
641            close($log) || die "can't close $path: $!";
642    
643            my $size = -s $path;
644    
645            my $warnings = join("",
646                    map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
647            );
648    
649            my $s = length($warnings);
650    
651            return
652                    # need to wrap editor link into span so we can have links in warnings
653                      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>|
654                    . $self->html_links( $warnings )
655                    . qq|</code></span>|
656                    ;
657    }
658    
659    
660    =head2 backtrace
661    
662    Show backtrace with links to editor
663    
664      my @backtrace = $self->backtrace;
665    
666    =cut
667    
668    sub backtrace {
669            my ($self) = @_;
670    
671            my @backtrace;
672            foreach ( 0 .. 5 ) {
673                    my (
674                            $package,$path,$line
675                            # subroutine hasargs
676                            # wantarray evaltext is_require
677                            # hints bitmask hinthash
678                    ) = caller($_) or last;
679    
680                    push @backtrace,
681                            qq|via "$package" at $path line $line|;
682            }
683            #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
684            return @backtrace;
685    }
686    
687    =head2 checkbox
688    
689    Generate checkbox html markup from some attribute
690    
691      my $html = $self->checkbox('attribute_name', $value);
692    
693    =cut
694    
695    sub checkbox {
696            my ($self,$name,$value) = @_;
697            my $checked = '';
698            my $all_checkboxes = eval { $self->$name };
699            warn "ERROR tried to get checkbox value for '$name' which is unknown: $@" if $@;
700            $all_checkboxes = [ $all_checkboxes ] unless ref($all_checkboxes) eq 'ARRAY'; # sigh, too chatty
701            $checked = ' checked' if grep { defined $_ && $_ eq $value } @$all_checkboxes;
702            warn "# checkbox $name $value $checked\t", $self->dump( $self->$name );
703            qq|<input name="$name" value="$value" type="checkbox"$checked>|;
704    }
705    
706    =head2 strip
707    
708    Strip whitespace around content
709    
710      my $stripped = strip('  no more whitespace around this   ');
711    
712    =cut
713    
714    sub strip {
715            my $t = shift;
716            $t =~ s{^\s+}{}gs;
717            $t =~ s{>\s+<}{><}gs;
718            $t =~ s{\s+$}{}gs;
719            return $t;
720    }
721    
722  1;  1;

Legend:
Removed from v.206  
changed lines
  Added in v.819

  ViewVC Help
Powered by ViewVC 1.1.26