/[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 857 by dpavlin, Tue Dec 16 14:10:09 2008 UTC revision 961 by dpavlin, Wed Jan 7 19:41:48 2009 UTC
# Line 71  has 'html_dump_width' => ( Line 71  has 'html_dump_width' => (
71          default => 250,          default => 250,
72  );  );
73    
74    has 'wrap_in_page' => (
75            documentation => 'wrap full html page with status bar around content',
76            is => 'rw',
77            isa => 'Bool',
78            default => 1,
79    );
80    
81  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
82  my $escape_re  = join '|' => keys %escape;  my $escape_re  = join '|' => keys %escape;
83    
# Line 80  sub html_escape { Line 87  sub html_escape {
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 94  sub html_dump { Line 109  sub html_dump {
109  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }
110  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }
111    
112  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
113    
114  sub popup_dropdown {  sub popup_dropdown {
115          my ( $self, $type, $name, $content, $full ) = @_;          my ( $self, $type, $name, $content, $full ) = @_;
# Line 116  sub popup_dropdown { Line 131  sub popup_dropdown {
131          }          }
132  }  }
133    
134  sub _inline_path_size {  sub _inline {
135          my ( $self, $path ) = @_;          my ( $self, $path ) = @_;
136          -s $path < $self->inline_smaller_than && -s $path;          return unless defined $path;
137            warn "# _inline $path";
138            -e $path && -s $path < $self->inline_smaller_than && -s $path;
139  }  }
140    
141  sub _head_html {  sub _head_html {
# Line 126  sub _head_html { Line 143  sub _head_html {
143          my $out = '';          my $out = '';
144          foreach my $path ( @head ) {          foreach my $path ( @head ) {
145                  $path =~ s!^/!!;                  $path =~ s!^/!!;
                 my $size = $self->_inline_path_size( $path );  
146                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
147                          $out .= $size ?                          my $size;
148                            $out .= $size = _inline( $path ) ?
149                                  qq|<script type="text/javascript">\n/* inline $path $size bytes */\n\n| . read_file($path) . qq|\n</script>| :                                  qq|<script type="text/javascript">\n/* inline $path $size bytes */\n\n| . read_file($path) . qq|\n</script>| :
150                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
151                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
152                          $out .= $size ?                          my $size;
153                            $out .= $size = _inline( $path ) ?
154                                  qq|<style type="text/css">\n/* inline $path $size bytes */\n\n| . read_file( $path ) . qq|\n</style>| :                                  qq|<style type="text/css">\n/* inline $path $size bytes */\n\n| . read_file( $path ) . qq|\n</style>| :
155                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
156                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
# Line 184  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          if ( $content =~ m{\.(js|css)} ) {          $content = "/$content" if $content !~ m{[\n\r]} && -e $content;
206                  $content = "/$content" if -e $content;          if ( $content =~ $re_html ) {
207                    $head = qq|
208                            $content
209                            <!-- $type via $package at $path line $line -->
210                    |;
211            } 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">
215                                  /* via $package at $path line $line */                                  /* $what via $package at $path line $line */
216                                  </$tag>                                  </$tag>
217                          |;                          |;
218                  } else {                  } else {
219                          $head = qq|                          $head = qq|
220                                  <link rel="stylesheet" type="$type" href="$content">                                  <link rel="stylesheet" type="$type" href="$content">
221                                  <!-- via $package at $path line $line -->                                  <!-- $what via $package at $path line $line -->
222                          |;                          |;
223                  }                  }
224          } else {          } else {
# Line 222  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 237  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    
         warn "## page ",dump($a);  
   
267          $reload_counter++;          $reload_counter++;
268    
269          my $status_line = '';          my $status_line = '';
# Line 262  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 291  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          my $html = join("\n",          my $html = join("\n",
324                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
325                  $self->_head_html,                  $self->_head_html,
326                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',                  qq|<title>$title</title>|,
327                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
328                  ( $icon_html || '<!-- no icon -->' ),                  ( $icon_html || '<!-- no icon -->' ),
329                  ( $a->{head} || '' ),                  ( $a->{head} || '' ),
# Line 425  sub error { Line 454  sub error {
454    
455  sub add_status {  sub add_status {
456          my ( $self, $data ) = @_;          my ( $self, $data ) = @_;
457          push @status, { 'X' => [ $self->backtrace ] };          die "no data" unless $data;
458          if ( ref($data) ) {          if ( ref $data  ) {
459                  push @status, $data;                  push @status, $data;
460          } else {          } else {
461                  if ( defined $status[ $#status ] ) {                  if ( defined $status[ $#status ] ) {

Legend:
Removed from v.857  
changed lines
  Added in v.961

  ViewVC Help
Powered by ViewVC 1.1.26