/[Frey]/trunk/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 /trunk/lib/Frey/Web.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 160 by dpavlin, Thu Jul 17 19:11:01 2008 UTC revision 385 by dpavlin, Mon Nov 17 20:14:12 2008 UTC
# Line 4  use Moose::Role; Line 4  use Moose::Role;
4  use Continuity::Widget::DomNode;  use Continuity::Widget::DomNode;
5  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
6  use Carp qw/confess/;  use Carp qw/confess/;
7    use File::Slurp;
8    
9  has 'head' => (  has 'head' => (
10          is => 'rw',          is => 'rw',
# Line 11  has 'head' => ( Line 12  has 'head' => (
12          default => sub { [ 'static/frey.css' ] },          default => sub { [ 'static/frey.css' ] },
13  );  );
14    
15    =head2 inline_smaller_than
16    
17    Inline JavaScript and CSS smaller than this size into page reducing
18    round-trips to server.
19    
20    =cut
21    
22    has 'inline_smaller_than' => (
23            is => 'rw',
24            isa => 'Int',
25            default => 10240,
26    );
27    
28  sub dom2html {  sub dom2html {
29  #       warn "## dom2html ",dump( @_ );  #       warn "## dom2html ",dump( @_ );
30          return Continuity::Widget::DomNode->create( @_ )->to_string;          return Continuity::Widget::DomNode->create( @_ )->to_string;
31  }  }
32    
33    sub _inline_path {
34            my ( $self, $path ) = @_;
35            -s $path < $self->inline_smaller_than;
36    }
37    
38  sub _head_html {  sub _head_html {
39          my $self = shift;          my $self = shift;
40          my $out = '';          my $out = '';
41          foreach my $path ( @{ $self->head } ) {          foreach my $path ( @{ $self->head } ) {
42                  $path =~ s!^/!!;                  $path =~ s!^/!!;
43                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
44                          $out .= qq|<script type="text/javascript" src="/$path"></script>|;                          $out .= $self->_inline_path( $path ) ?
45                                    qq|<!-- $path --><script type="text/javascript">\n| . read_file($path) . qq|\n</script>| :
46                                    qq|<script type="text/javascript" src="/$path"></script>|;
47                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
48                          $out .= qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                          $out .= $self->_inline_path( $path ) ?
49                                    qq|<!-- $path --><style type="text/css">\n| . read_file( $path ) . qq|\n</style>| :
50                                    qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
51                  } else {                  } else {
52                          confess "don't know how to render $path";                          confess "don't know how to render $path";
53                  }                  }
54                    $out .= "\n";
55          }          }
56          return $out;          return $out;
57  }  }
# Line 60  sub add_head { Line 84  sub add_head {
84    
85  our $reload_counter = 0;  our $reload_counter = 0;
86    
87    
88    =head2 page
89    
90      $self->page(
91            title => 'page title',
92            head  => '<!-- optional head markup -->',
93            body  => '<b>Page Body</b>',
94      );
95    
96    =cut
97    
98    use Frey::Bookmarklet;
99    use Frey::ClassBrowser;
100    
101  sub page {  sub page {
102          my $self = shift;          my $self = shift;
103          my $a = {@_};          my $a = {@_};
# Line 69  sub page { Line 107  sub page {
107          my $html = qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|          my $html = qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|
108          . $self->_head_html          . $self->_head_html
109          . '<title>' . ( $a->{title} || ref($self) ) . '</title>'          . '<title>' . ( $a->{title} || ref($self) ) . '</title>'
110            . '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">'
111          . ( $a->{head} || '' )          . ( $a->{head} || '' )
112          . '</head><body>'          . '</head><body>'
113          . ( $a->{body} || '<!-- no body -->' )          . ( $a->{body} || '<!-- no body -->' )
114          . qq|<div class="frey-status-line"> <a href="/">Frey</a> $Frey::VERSION <a href="?reload=$reload_counter">reload</a> </div>|          . qq|<div class="frey-status-line">
115          . '</body></html>'                  <a href="/">Frey</a> $Frey::VERSION
116          ;                  <a href="?reload=$reload_counter"><code>| . dump( $ENV{'REQUEST_URI'} ) . qq|</code></a>
117                    <span class="frey-popup">Bookmarklets<span>| . Frey::Bookmarklet->markup . qq|</span></span>
118                    <span class="frey-popup">ClassBrowser<span>| . Frey::ClassBrowser->markup . qq|</span></span>
119                    <span class="frey-popup">ENV<span><code>| . dump( %ENV ) . qq|</code></span></span>
120                    </div>
121                </body></html>
122            |;
123    
124          warn "## >>> page ",length($html), " bytes\n" if $self->debug;          warn "## >>> page ",length($html), " bytes\n" if $self->debug;
125    
126          return $html;          return $html;
127  }  }
128    
129    sub error {
130            my ( $self, $error ) = @_;
131            warn $error;
132            $error =~ s{at\s+(\S+)\s+line\s+(\d+)}{ <a href="/editor$1+$2" target="editor">$1</a> line $2}gsm;
133            return qq|<pre class="frey-error">$error</pre>|;
134    }
135    
136  1;  1;

Legend:
Removed from v.160  
changed lines
  Added in v.385

  ViewVC Help
Powered by ViewVC 1.1.26