/[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 524 by dpavlin, Wed Nov 26 00:45:52 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  sub page {  sub page {
146          my $self = shift;          my $self = shift;
147          my $a = {@_};          my $a = {@_};
148    
149            warn "## page ",dump($a);
150    
151          $reload_counter++;          $reload_counter++;
152    
153          my $status_line = '';          my $status_line = '';
154          foreach my $part ( @{ $self->status } ) {  
155                  if ( ref($part) ne 'HASH' ) {          unshift @status, { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup };
156                          warn "part not hash ",dump( $part ) ;          unshift @status, { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup };
157                          #$self->status( $part );  
158                          next;          foreach my $part ( @status ) {
                 }  
159                  foreach my $name ( keys %$part ) {                  foreach my $name ( keys %$part ) {
160                          my $content = $part->{$name};                          my $content = $part->{$name};
161                          if ( ref($content) ) {                          if ( ref($content) ) {
# Line 216  sub page { Line 211  sub page {
211          my $right =          my $right =
212                  qq|                  qq|
213                          <span class="right">                          <span class="right">
214                          <a title="reload"  href="/reload$url"><code>$url</code></a>                          <a title="reload $url"  href="/reload$url">reload</a>
215                          <a title="$description" href="/exit$url">$exit</a>                          <a title="$description" href="/exit$url">$exit</a>
216                          </span>                          </span>
217                  |;                  |;
218    
219            my $info = Frey::SVK->info;
220            my $revision = Frey::SVK->info->{Revision} || '';
221            $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};
222    
223            $self->add_icon;
224    
225          my $html = join("\n",          my $html = join("\n",
226                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
227                  $self->_head_html,                  $self->_head_html,
# Line 231  sub page { Line 232  sub page {
232                  </head><body>                  </head><body>
233                  $body                  $body
234                  <div class="frey-status-line">                  <div class="frey-status-line">
235                          <a href="/">Frey</a> $Frey::VERSION                          <a href="/">Frey</a> $Frey::VERSION $revision
236                          $status_line                          $status_line
237                          $right                          $right
238                  </div>                  </div>
# Line 255  Create HTML editor link with optional li Line 256  Create HTML editor link with optional li
256  sub editor {  sub editor {
257          my ( $self, $class, $line, $title ) = @_;          my ( $self, $class, $line, $title ) = @_;
258          confess "need class" unless $class;          confess "need class" unless $class;
259          $line ||= 1;          if ( ! defined $title ) {
260                    $title  = "edit $class";
261                    $title .= " line $line" if $line;
262            }
263            $line  ||= 1;
264          qq|<a target="editor" href="/editor+$class+$line"| .          qq|<a target="editor" href="/editor+$class+$line"| .
265          ( $title ? qq| title="$title"| : '' ) .          ( $title ? qq| title="$title"| : '' ) .
266          qq|>$class</a>|;          qq|>$class</a>|;
# Line 296  sub error { Line 301  sub error {
301                  ;                  ;
302  }  }
303    
304    sub add_status {
305            my ( $self, $data ) = @_;
306            push @status, $data;
307    }
308    
309    sub clean_status {
310            @status = ();
311    }
312    
313    sub status_parts {
314            warn "## status parts ", dump( map { keys %$_ } @status );
315    }
316    
317    sub DEMOLISH {
318            my ( $self ) = @_;
319            cluck "## DEMOLISH status ", $#status + 1, " elements ", dump( map { keys %$_ } @status ) if @status;
320    }
321    
322    sub add_icon {
323            my $self = shift;
324            my $icon = ref($self);
325            $icon = $self->class if $self->can('class');
326            $icon =~ s{::}{/}g;
327    
328            my $icon_path = "static/icons/$icon.png";
329    
330            if ( -e $icon_path ) {
331                    $self->add_head( qq|<link rel="icon" type="image/png" href="/$icon_path" />| );
332                    warn "# using icon $icon_path";
333    
334                    # FIXME http://en.wikipedia.org/wiki/Favicon suggest just rel="icon" but that doesn't seem to work!
335                    my $ico_path = $icon_path;
336                    $ico_path =~ s{png$}{ico};
337                    if ( ! -e $ico_path ) {
338                            system "convert $icon_path $ico_path";
339                            warn "# convert $icon_path $ico_path : $@";
340                    }
341                    $self->add_head( qq|<link rel="shortcut icon" type="image/x-icon" href="/$ico_path" />| ) if -e $ico_path;
342    
343            } else {
344                    warn "can't find $icon_path";
345            }
346    }
347    
348  1;  1;

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

  ViewVC Help
Powered by ViewVC 1.1.26