X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FView.pm;h=27dd15541a34eed0e4b9c0bd6eaf45f5c8013274;hb=e158d56a54d3c6d4890aa6ac4caa28a834279af0;hp=db2bd20f3a8e9b8920bb6042ffbeb4c51a97d122;hpb=2c69f7bc34a2b12dc7f55e2bb24fa28565f24f03;p=public-inbox.git diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index db2bd20f..27dd1554 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -27,7 +27,7 @@ sub msg_html { my ($ctx, $mime, $footer) = @_; my $hdr = $mime->header_obj; my $tip = _msg_html_prepare($hdr, $ctx); - PublicInbox::WwwStream->new($ctx, sub { + PublicInbox::WwwStream->response($ctx, 200, sub { my ($nr, undef) = @_; if ($nr == 1) { $tip . multipart_text_as_html($mime, '') . @@ -129,7 +129,7 @@ sub index_entry { my $mapping = $ctx->{mapping}; if (!$mapping && $irt) { - my $mirt = PublicInbox::Hval->msgid($irt); + my $mirt = PublicInbox::Hval->new_msgid($irt); my $href = $upfx . $mirt->as_href . '/'; my $html = $mirt->as_html; $rv .= qq(In-Reply-To: <$html>\n) @@ -278,7 +278,7 @@ sub stream_thread ($$) { $mime = Email::MIME->new($mime); $ctx->{-title_html} = ascii_html($mime->header('Subject')); $ctx->{-html_tip} = thread_index_entry($ctx, $level, $mime); - my $body = PublicInbox::WwwStream->new($ctx, sub { + PublicInbox::WwwStream->response($ctx, 200, sub { return unless $ctx; while (@q) { $level = shift @q; @@ -297,7 +297,6 @@ sub stream_thread ($$) { $ctx = undef; $ret; }); - [ 200, ['Content-Type', 'text/html; charset=UTF-8'], $body ]; } sub thread_html { @@ -339,7 +338,7 @@ sub thread_html { $ctx->{-title_html} = ascii_html($mime->header('Subject')); $ctx->{-html_tip} = '
'.index_entry($mime, $ctx, scalar @$msgs);
 	$mime = undef;
-	my $body = PublicInbox::WwwStream->new($ctx, sub {
+	PublicInbox::WwwStream->response($ctx, 200, sub {
 		return unless $msgs;
 		while ($mime = shift @$msgs) {
 			$mid = mid_clean(mid_mime($mime));
@@ -352,7 +351,6 @@ sub thread_html {
 		$msgs = undef;
 		'
'.$skel; }); - [ 200, ['Content-Type', 'text/html; charset=UTF-8'], $body ]; } sub multipart_text_as_html {