--- trunk/lib/Frey/SVK.pm 2008/11/28 13:26:08 585 +++ trunk/lib/Frey/SVK.pm 2008/11/28 16:39:37 591 @@ -61,6 +61,7 @@ $self->add_css( qq| pre.l a { text-decoration: none; } | ); $status = qq|
$status
|; $self->add_status( $status ); + warn "status_as_markup ",length($status)," bytes"; return $status; } @@ -79,6 +80,7 @@ $diff =~ s{^(===\s+)(\S+)$}{$1$2}gm; $diff = qq|
$diff
|; + warn "diff_as_markup ",length($diff)," bytes"; return $diff; } @@ -91,7 +93,7 @@ } my $html = $self->status_as_markup . $self->diff_as_markup; - warn "html ",length($html)," bytes"; + warn "as_markup ",length($html)," bytes"; return $html; }