--- trunk/lib/Frey/Web.pm 2008/10/31 19:53:50 214 +++ trunk/lib/Frey/Web.pm 2008/11/18 13:57:52 410 @@ -1,17 +1,40 @@ package Frey::Web; use Moose::Role; +#with 'Frey::Escape'; + +use Frey::Types; + use Continuity::Widget::DomNode; use Data::Dump qw/dump/; use Carp qw/confess/; use File::Slurp; +use Frey::Bookmarklet; +use Frey::ClassBrowser; + has 'head' => ( is => 'rw', isa => 'ArrayRef[Str]', default => sub { [ 'static/frey.css' ] }, ); +has 'status' => ( + is => 'rw', + isa => 'ArrayRef[HashRef[Str]]', + lazy => 1, + default => sub { [ + { 'Bookmarklets' => Frey::Bookmarklet->new->markup }, + { 'ClassBrowser' => Frey::ClassBrowser->new->markup }, + ] }, +); + +has 'request_url' => ( + is => 'rw', + isa => 'Uri', coerce => 1, + default => '/', +); + =head2 inline_smaller_than Inline JavaScript and CSS smaller than this size into page reducing @@ -95,33 +118,60 @@ =cut -use Frey::Bookmarklet; -use Frey::ClassBrowser; - sub page { my $self = shift; my $a = {@_}; $reload_counter++; - my $html = qq|| - . $self->_head_html - . '' . ( $a->{title} || ref($self) ) . '' - . ( $a->{head} || '' ) - . '' - . ( $a->{body} || '' ) - . qq|
- Frey $Frey::VERSION - reload - Bookmarklets| . Frey::Bookmarklet->markup . qq| - ClassBrowser| . Frey::ClassBrowser->markup . qq| + my $status_line = ''; + foreach my $part ( @{ $self->status } ) { + confess "part not hash ",dump( $part ) unless ref($part) eq 'HASH'; + foreach my $name ( keys %$part ) { + my $content = $part->{$name}; + if ( ref($content) ) { + $content = '' . dump($content) . ''; + my $l = length($content); + $content = qq|$l bytes| if $l > 1024; + } else { + $content = qq|$content|; + } + warn "### part [$name] = ", length( $content ), " bytes" if $self->debug; + $status_line .= qq|$name $content\n|; + } + } + + my $html = join("\n", + qq||, + $self->_head_html, + '' . ( $a->{title} || ref($self) ) . '', + '', + ( $a->{head} || '' ), + '', + ( $a->{body} || '' ), + qq| +
+ Frey $Frey::VERSION + | . $self->request_url . qq| + $status_line
- |; + |, + ); warn "## >>> page ",length($html), " bytes\n" if $self->debug; return $html; } +sub error { + my $self = shift; + my $error = join(" ", @_); + my ($package, $filename, $line) = caller; + $error .= " at $filename line $line" if $error !~ m{ at }; + warn "WARN: $error\n"; + $error =~ s{at\s+(\S+)\s+line\s+(\d+)}{at $1 line $2}gsm; + return qq|
$error
|; +} + 1;