/[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 908 by dpavlin, Fri Jan 2 13:22:13 2009 UTC revision 1045 by dpavlin, Thu Mar 12 20:56:04 2009 UTC
# Line 3  use Moose::Role; Line 3  use Moose::Role;
3    
4  with 'Frey::Session';  with 'Frey::Session';
5    
 #use Continuity::Widget::DomNode;  
6  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
7  use Carp qw/confess cluck carp/;  use Carp qw/confess cluck carp/;
8  use File::Slurp;  use File::Slurp;
# Line 71  has 'html_dump_width' => ( Line 70  has 'html_dump_width' => (
70          default => 250,          default => 250,
71  );  );
72    
73    has 'wrap_in_page' => (
74            documentation => 'wrap full html page with status bar around content',
75            is => 'rw',
76            isa => 'Bool',
77            default => 1,
78    );
79    
80  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
81  my $escape_re  = join '|' => keys %escape;  my $escape_re  = join '|' => keys %escape;
82    
83  sub html_escape {  sub html_escape {
84          my ( $self, $html ) = @_;          my ( $self, $html ) = @_;
85            return '' unless defined $html;
86          $html =~ s/($escape_re)/$escape{$1}/g;          $html =~ s/($escape_re)/$escape{$1}/g;
87          return $html;          return $html;
88  }  }
89    
90    # from Mojo::ByteStream
91    sub url_escape {
92            my ( $self, $url, $pattern ) = @_;
93            $pattern ||= 'A-Za-z0-9\-\.\_\~';
94            $url =~ s/([^$pattern])/sprintf('%%%02X',ord($1))/ge;
95            return $url;
96    }
97    
98  sub html_dump {  sub html_dump {
99          my ( $self, $dump ) = @_;          my ( $self, $dump ) = @_;
100          $dump = dump( $dump ) if ref($dump);          $dump = dump( $dump ) if ref($dump);
# Line 187  sub _add_css_js { Line 202  sub _add_css_js {
202    
203          my ( $package, $path, $line ) = caller(1);          my ( $package, $path, $line ) = caller(1);
204    
205          $content = "/$content" if -e $content;          $content = "/$content" if $content !~ m{[\n\r]} && -e $content;
206          if ( $content =~ $re_html ) {          if ( $content =~ $re_html && $what ne 'js' ) {
207                  $head = qq|                  $head = qq|
208                          $content                          $content
209                          <!-- $type via $package at $path line $line -->                          <!-- $type via $package at $path line $line -->
210                  |;                  |;
211          } elsif ( $content =~ m{^(/|https?://)} ) {          } elsif ( $content =~ m{^(/\w+|https?://)} && $content !~ m{[\n\r]} ) {
212                  if ( $what eq 'js' ) {                  if ( $what eq 'js' ) {
213                          $head = qq|                          $head = qq|
214                                  <$tag type="$type" src="$content">                                  <$tag type="$type" src="$content">
# Line 230  sub add_js { Line 245  sub add_js {
245  our $reload_counter = 0;  our $reload_counter = 0;
246    
247    
248  =head2 page  =head2 html_page
249    
250    $self->page(    $self->html_page(
251          title => 'page title',          title => 'page title',
252          head  => '<!-- optional head markup -->',          head  => '<!-- optional head markup -->',
253          body  => '<b>Page Body</b>',          body  => '<b>Page Body</b>',
# Line 245  sub status { @status }; Line 260  sub status { @status };
260    
261  our $icon_html;  our $icon_html;
262    
263  sub page {  sub html_page {
264          my $self = shift;          my $self = shift;
265          my $a = {@_};          my $a = {@_};
266    
# Line 268  sub page { Line 283  sub page {
283                  warn "# no body, invoke $self->$run on ", ref($self);                  warn "# no body, invoke $self->$run on ", ref($self);
284                  $body = $self->$run;                  $body = $self->$run;
285          }          }
286          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} || ! $self->wrap_in_page ) {
287                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
288                  return $body                  return $body
289          } elsif ( ! defined $body ) {          } elsif ( ! defined $body ) {
# Line 284  sub page { Line 299  sub page {
299    
300          my $right =          my $right =
301                  qq|                  qq|
302                          <span class="right">                          <span class="frey-status-right">
303                          <a title="reload $url"  href="/reload$url">reload</a>                          <a title="reload $url"  href="/reload$url">reload</a>
304                          <a title="$description" href="/exit$url" target="exit">$exit</a>                          <a title="$description" href="/exit$url" target="exit">$exit</a>
305                          </span>                          </span>
# Line 297  sub page { Line 312  sub page {
312    
313          $self->add_icon unless $icon_html;          $self->add_icon unless $icon_html;
314    
315            my $title = undef
316                    || $a->{title}
317                    || $self->title
318                    || ref($self)
319                    ;
320    
321    #       $title =~ s{(\w)\w+::}{$1:}g; # XXX compress names of classes
322    
323            $self->add_css(qq|
324                    body {
325                            padding-bottom: 3em; /* don't overlap status line */
326                    }
327            |);
328    
329          my $html = join("\n",          my $html = join("\n",
330                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
331                  $self->_head_html,                  $self->_head_html,
332                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',                  qq|<title>$title</title>|,
333                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
334                  ( $icon_html || '<!-- no icon -->' ),                  ( $icon_html || '<!-- no icon -->' ),
335                  ( $a->{head} || '' ),                  ( $a->{head} || '' ),
# Line 431  sub error { Line 460  sub error {
460    
461  sub add_status {  sub add_status {
462          my ( $self, $data ) = @_;          my ( $self, $data ) = @_;
463          push @status, { 'X' => [ $self->backtrace ] };          die "no data" unless $data;
464          if ( ref($data) ) {          if ( ref $data  ) {
465                  push @status, $data;                  push @status, $data;
466          } else {          } else {
467                  if ( defined $status[ $#status ] ) {                  if ( defined $status[ $#status ] ) {

Legend:
Removed from v.908  
changed lines
  Added in v.1045

  ViewVC Help
Powered by ViewVC 1.1.26