--- trunk/lib/Frey/Web.pm 2008/11/26 07:57:12 532 +++ trunk/lib/Frey/Web.pm 2008/11/26 16:17:17 535 @@ -50,19 +50,34 @@ documentation => 'Maximum dump size sent to browser before truncation', ); -=head2 inline_smaller_than - -Inline JavaScript and CSS smaller than this size into page reducing -round-trips to server. - -=cut - has 'inline_smaller_than' => ( is => 'rw', isa => 'Int', default => 10240, + documentation => 'Inline JavaScript and CSS to reduce round-trips', +); + +has 'chop_warning' => ( + is => 'rw', + isa => 'Int', + default => 80, + documentation => 'Crop lines longer', ); +my %escape = ('<'=>'<', '>'=>'>', '&'=>'&', '"'=>'"'); +my $escape_re = join '|' => keys %escape; + +sub html_escape { + my ( $self, $html ) = @_; + $html =~ s/($escape_re)/$escape{$1}/g; + return $html; +} + +sub html_dump { + my $self = shift; + $self->html_escape( dump( @_ ) ); +} + sub dom2html { # warn "## dom2html ",dump( @_ ); return Continuity::Widget::DomNode->create( @_ )->to_string; @@ -357,9 +372,9 @@ }; my $multiline_markers = { - '(' => '\)', + '(' => ')', '{' => '}', - '[' => '\]', + '[' => ']', '"' => '"', }; @@ -372,7 +387,7 @@ sub warnings_html { my ($self,$level) = shift; - $level ||= $self->debug; + $level ||= $self->debug, my $path = $self->log_path; my $warnings; @@ -384,25 +399,36 @@ chomp; $line++; - if ( $multiline_end ) { - undef $multiline_end if m{^$multiline_end}; - next; - } - my $style = ''; - if ( m{^(#*)\s+} ) { + if ( $multiline_end ) { + if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) { + warn "## $line end of $multiline_end in '$_'\n"; + undef $multiline_end; + } else { + warn "## $line skipped\n"; + } + } elsif ( m{^(#*)\s+} ) { my $l = $1 ? length($1) : 0; - $multiline_end = $multiline_markers->{$1} if m{($multiline_re)$}; - next if $l > $level; - warn "## multiline_end: $multiline_end $l > $level for '$_'" if $multiline_end; - undef $multiline_end; + if ( $l > $level ) { + undef $multiline_end; + $multiline_end = $multiline_markers->{$1} if m{($multiline_re)$}; + warn "## $line start $1 .. $multiline_end level $l > $level for '$_'\n" if $multiline_end; + next; + } $style = $warn_colors->{$1} ? ' style="color:' . $warn_colors->{$1} . '"' : ''; - $warnings .= qq|$_ +$line
|; + my $msg = $self->html_escape( $_ ); + my $spacer = ' '; + if ( length($msg) > $self->chop_warning ) { + $msg = substr( $msg, 0, $self->chop_warning ); + $spacer = '…' + } + $msg =~ s{^\s}{ }g; + $warnings .= qq|$msg$spacer+$line
|; # FIXME should be but CSS hates me } }