/[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 532 by dpavlin, Wed Nov 26 07:57:12 2008 UTC
# Line 7  use Frey::Types; Line 7  use Frey::Types;
7    
8  use Continuity::Widget::DomNode;  use Continuity::Widget::DomNode;
9  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
10  use Carp qw/confess/;  use Carp qw/confess cluck/;
11  use File::Slurp;  use File::Slurp;
12    
13  use Frey::Bookmarklet;  use Frey::Bookmarklet;
14  use Frey::ClassBrowser;  use Frey::ClassBrowser;
15    use Frey::SVK;
16    
17  has 'head' => (  has 'head' => (
18          is => 'rw',          is => 'rw',
# Line 19  has 'head' => ( Line 20  has 'head' => (
20          default => sub { [ 'static/frey.css' ] },          default => sub { [ 'static/frey.css' ] },
21  );  );
22    
 has 'status' => (  
         is => 'rw',  
         isa => 'ArrayRef[HashRef[Str]]',  
         lazy => 1,  
         default => sub { [  
                 { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },  
                 { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },  
         ] },  
 );  
   
23  has 'request_url' => (  has 'request_url' => (
24          is => 'rw',          is => 'rw',
25          isa => 'Uri', coerce => 1,          isa => 'Uri', coerce => 1,
# Line 148  our $reload_counter = 0; Line 139  our $reload_counter = 0;
139    
140  =cut  =cut
141    
142    our @status;
143    sub status { @status };
144    
145    our $icon_html;
146    
147  sub page {  sub page {
148          my $self = shift;          my $self = shift;
149          my $a = {@_};          my $a = {@_};
150    
151            warn "## page ",dump($a);
152    
153          $reload_counter++;          $reload_counter++;
154    
155          my $status_line = '';          my $status_line = '';
156          foreach my $part ( @{ $self->status } ) {  
157                  if ( ref($part) ne 'HASH' ) {          unshift @status, { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup };
158                          warn "part not hash ",dump( $part ) ;          unshift @status, { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup };
159                          #$self->status( $part );  
160                          next;          foreach my $part ( @status ) {
                 }  
161                  foreach my $name ( keys %$part ) {                  foreach my $name ( keys %$part ) {
162                          my $content = $part->{$name};                          my $content = $part->{$name};
163                          if ( ref($content) ) {                          if ( ref($content) ) {
# Line 188  sub page { Line 185  sub page {
185                  $body = '<!-- no body -->';                  $body = '<!-- no body -->';
186          }          }
187    
188          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;  
189    
190          my      ($exit,$description) = ('exit','stop server');          my      ($exit,$description) = ('exit','stop server');
191                  ($exit,$description) = ('restart','restart server')                  ($exit,$description) = ('restart','restart server')
# Line 216  sub page { Line 194  sub page {
194          my $right =          my $right =
195                  qq|                  qq|
196                          <span class="right">                          <span class="right">
197                          <a title="reload"  href="/reload$url"><code>$url</code></a>                          <a title="reload $url"  href="/reload$url">reload</a>
198                          <a title="$description" href="/exit$url">$exit</a>                          <a title="$description" href="/exit$url">$exit</a>
199                          </span>                          </span>
200                  |;                  |;
201    
202            my $info = Frey::SVK->info;
203            my $revision = Frey::SVK->info->{Revision} || '';
204            $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};
205    
206            $self->add_icon unless $icon_html;
207    
208          my $html = join("\n",          my $html = join("\n",
209                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
210                  $self->_head_html,                  $self->_head_html,
211                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',
212                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
213                    ( $icon_html || '<!-- no icon -->' ),
214                  ( $a->{head} || '' ),                  ( $a->{head} || '' ),
215                  qq|                  qq|
216                  </head><body>                  </head><body>
217                  $body                  $body
218                  <div class="frey-status-line">                  <div class="frey-status-line">
219                          <a href="/">Frey</a> $Frey::VERSION                          <a href="/">Frey</a> $Frey::VERSION $revision
220                          $status_line                          $status_line
221                          $right                          $right
222                  </div>                  </div>
# Line 255  Create HTML editor link with optional li Line 240  Create HTML editor link with optional li
240  sub editor {  sub editor {
241          my ( $self, $class, $line, $title ) = @_;          my ( $self, $class, $line, $title ) = @_;
242          confess "need class" unless $class;          confess "need class" unless $class;
243          $line ||= 1;          if ( ! defined $title ) {
244                    $title  = "edit $class";
245                    $title .= " line $line" if $line;
246            }
247            $line  ||= 1;
248          qq|<a target="editor" href="/editor+$class+$line"| .          qq|<a target="editor" href="/editor+$class+$line"| .
249          ( $title ? qq| title="$title"| : '' ) .          ( $title ? qq| title="$title"| : '' ) .
250          qq|>$class</a>|;          qq|>$class</a>|;
# Line 296  sub error { Line 285  sub error {
285                  ;                  ;
286  }  }
287    
288    sub add_status {
289            my ( $self, $data ) = @_;
290            push @status, $data;
291    }
292    
293    sub clean_status {
294            @status = ();
295            $icon_html = '';
296    }
297    
298    sub status_parts {
299            warn "## status parts ", dump( map { keys %$_ } @status );
300    }
301    
302    sub DEMOLISH {
303            my ( $self ) = @_;
304            warn "## $self DEMOLISH status ", $#status + 1, " elements ", dump( map { keys %$_ } @status ) if @status;
305    }
306    
307    =head2 add_icon
308    
309      Frey::Foo->add_icon;            # /static/icons/Frey/Foo.png
310      Frey::Foo->add_icon('warning'); # /static/icons/Frey/Foo/warning.png
311    
312    =cut
313    
314    sub icon_path {
315            my ($self,$class,$variant) = @_;
316            my $icon = $class;
317            $icon =~ s{::}{/}g;
318            $icon .= "/$variant" if $variant;
319            my $path = 'static/icons/' . $icon . '.png';
320            if ( -e $path ) {
321                    warn "# $class from $self icon_path $path";
322                    return $path;
323            } else {
324                    warn "TODO: add $path icon for $class";
325                    return undef;
326            }
327    }
328    
329    sub add_icon {
330            my ($self,$variant) = @_;
331    
332            my $class = ref($self);
333            $class = $self->class if $self->can('class');
334            my $icon_path = $self->icon_path( $class, $variant ) || return;
335    
336            $icon_html .= qq|<link rel="icon" type="image/png" href="/$icon_path">|;
337            warn "# using icon $icon_path";
338    
339    =for later
340    
341            # FIXME http://en.wikipedia.org/wiki/Favicon suggest just rel="icon" but that doesn't seem to work!
342            my $ico_path = $icon_path;
343            $ico_path =~ s{png$}{ico};
344            if ( ! -e $ico_path ) {
345                    system "convert $icon_path $ico_path";
346                    warn "# convert $icon_path $ico_path : $@";
347            }
348            $icon_html .= qq|<link rel="shortcut icon" type="image/x-icon" href="/$ico_path">| if -e $ico_path;
349    
350    =cut
351    
352    }
353    
354    my $warn_colors = {
355            '#'  => '#444',
356            '##' => '#888',
357    };
358    
359    my $multiline_markers = {
360            '(' => '\)',
361            '{' => '}',
362            '[' => '\]',
363            '"' => '"',
364    };
365    
366    my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
367    warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
368    
369    sub log_path {
370            $Frey::Bootstrap::log_path || warn "no log_path?";
371    }
372    
373    sub warnings_html {
374            my ($self,$level) = shift;
375            $level ||= $self->debug;
376            my $path = $self->log_path;
377    
378            my $warnings;
379            my $line = 0;
380            my $multiline_end;
381    
382            open(my $log, '<', $path) || die "can't open $path: $!";
383            while(<$log>) {
384                    chomp;
385                    $line++;
386    
387                    if ( $multiline_end ) {
388                            undef $multiline_end if m{^$multiline_end};
389                            next;
390                    }
391    
392                    my $style = '';
393    
394                    if ( m{^(#*)\s+} ) {
395                            my $l = $1 ? length($1) : 0;
396                            $multiline_end = $multiline_markers->{$1} if m{($multiline_re)$};
397                            next if $l > $level;
398                            warn "## multiline_end: $multiline_end $l > $level for '$_'" if $multiline_end;
399                            undef $multiline_end;
400    
401                            $style = $warn_colors->{$1}
402                                    ? ' style="color:' . $warn_colors->{$1} . '"'
403                                    : '';
404    
405                            $warnings .= qq|<tt$style>$_</tt> <small> <a target="editor" href="/editor+$path+$line">+$line</a> </small> <br/>|;
406                            # FIXME <tt> should be <code> but CSS hates me
407                    }
408            }
409            close($log) || die "can't close $path: $!";
410    
411            return
412                      qq|<span class="frey-popup"><a target="editor" href="/editor+$path+$line" title="open $path level $level">warn</a><span>|
413                    . $self->editor_links( $warnings )
414                    . qq|</span></span>|
415                    ;
416    }
417    
418  1;  1;

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

  ViewVC Help
Powered by ViewVC 1.1.26