--- trunk/lib/Frey/Web.pm 2008/11/18 00:30:29 389 +++ trunk/lib/Frey/Web.pm 2008/11/19 01:21:31 434 @@ -1,6 +1,8 @@ package Frey::Web; use Moose::Role; +#with 'Frey::Escape'; + use Frey::Types; use Continuity::Widget::DomNode; @@ -8,6 +10,9 @@ use Carp qw/confess/; use File::Slurp; +use Frey::Bookmarklet; +use Frey::ClassBrowser; + has 'head' => ( is => 'rw', isa => 'ArrayRef[Str]', @@ -19,17 +24,27 @@ isa => 'ArrayRef[HashRef[Str]]', lazy => 1, default => sub { [ - { 'Bookmarklets' => Frey::Bookmarklet->markup }, - { 'ClassBrowser' => Frey::ClassBrowser->markup }, + { 'Bookmarklets' => Frey::Bookmarklet->new->markup }, + { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->markup }, ] }, ); -has 'urequest_url' => ( +has 'request_url' => ( is => 'rw', isa => 'Uri', coerce => 1, default => '/', ); +has 'title' => ( + is => 'rw', + isa => 'Str', + lazy => 1, + default => sub { + my ($self) = @_; + ref($self); + }, +); + =head2 inline_smaller_than Inline JavaScript and CSS smaller than this size into page reducing @@ -113,9 +128,6 @@ =cut -use Frey::Bookmarklet; -use Frey::ClassBrowser; - sub page { my $self = shift; my $a = {@_}; @@ -124,24 +136,37 @@ my $status_line = ''; foreach my $part ( @{ $self->status } ) { + if ( ref($part) ne 'HASH' ) { + warn "part not hash ",dump( $part ) ; + #$self->status( $part ); + next; + } foreach my $name ( keys %$part ) { - warn "### part [$name] = ", length( $part->{name} ), " bytes" if $self->debug; - $status_line .= qq|$name| . $part->{$name} . qq||; + 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) ) . '', + '' . ( $self->title || $a->{title} || ref($self) ) . '', '', ( $a->{head} || '' ), '', - ( $a->{body} || '' ), + ( $a->{body} || $self->markup || '' ), qq|
Frey $Frey::VERSION - | . $self->urequest_url . qq| + | . $self->request_url . qq| $status_line
@@ -154,11 +179,13 @@ } sub error { - my ( $self, $error ) = @_; + my $self = shift; + my $error = join(" ", @_); my ($package, $filename, $line) = caller; - $error .= " at $filename line $line"; + $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; + $error =~ s{at\s+(\S+)\s+line\s+(\d+)}{at $1 line $2}gsm; + $error =~ s{(via package ")([\w:]+)(")}{$1$2$3}gsm; return qq|
$error
|; }