]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/WwwListing.pm
www_listing: drop "sort options + mbox downloads" bit
[public-inbox.git] / lib / PublicInbox / WwwListing.pm
index 79c0a8ec209ff37081086f6a301114538e7a8ef4..21e5b8bc8121040e9bd467d4cd30d7ca0baa654e 100644 (file)
@@ -162,24 +162,22 @@ sub mset_footer ($$) {
        # no footer if too few matches
        return '' if $mset->get_matches_estimated == $mset->size;
        require PublicInbox::SearchView;
-       PublicInbox::SearchView::search_nav_bot($mset, $ctx->{-sq});
+       PublicInbox::SearchView::search_nav_bot($ctx, $mset, $ctx->{-sq});
 }
 
 sub mset_nav_top {
        my ($ctx, $mset) = @_;
        my $q = $ctx->{-sq};
        my $qh = $q->{'q'} // '';
-       utf8::decode($qh);
-       $qh = ascii_html($qh);
-       $qh = qq[\nvalue="$qh"] if $qh ne '';
-       my $rv = <<EOM;
-<form
-action="./"><pre><input name=q type=text$qh
-/><input type=submit value="locate inbox"
-/><input type=submit name=a value="search all inboxes"
-/></pre></form><pre>
+       if ($qh ne '') {
+               utf8::decode($qh);
+               $qh = qq[\nvalue="].ascii_html($qh).'"';
+       }
+       chop(my $rv = <<EOM);
+<form action="./"><pre><input name=q type=text$qh/><input
+type=submit value="locate inbox"/><input type=submit name=a
+value="search all inboxes"/></pre></form><pre>
 EOM
-       chomp $rv;
        if (defined($q->{'q'})) {
                my $initial_q = $ctx->{-uxs_retried};
                if (defined $initial_q) {
@@ -210,28 +208,28 @@ sub psgi_triple {
        my $h = [ 'Content-Type', 'text/html; charset=UTF-8',
                        'Content-Length', undef ];
        my $gzf = gzf_maybe($h, $ctx->{env});
-       $gzf->zmore('<html><head><title>public-inbox listing</title>' .
-                       $ctx->{www}->style('+/') .
-                       '</head><body>');
+       my $zfh = $gzf->zfh;
+       print $zfh '<html><head><title>public-inbox listing</title>',
+                       $ctx->{www}->style('+/'),
+                       '</head><body>';
        my $code = 404;
        if (my $list = delete $ctx->{-list}) {
                my $mset = delete $ctx->{-mset};
                $code = 200;
                if ($mset) { # already sorted, so search bar:
-                       $gzf->zmore(mset_nav_top($ctx, $mset));
+                       print $zfh mset_nav_top($ctx, $mset);
                } else { # sort config dump by ->modified
                        @$list = map { $_->[1] }
                                sort { $b->[0] <=> $a->[0] } @$list;
                }
-               $gzf->zmore('<pre>');
-               $gzf->zmore(join("\n", @$list));
-               $gzf->zmore(mset_footer($ctx, $mset)) if $mset;
+               print $zfh '<pre>', join("\n", @$list); # big
+               print $zfh mset_footer($ctx, $mset) if $mset;
        } elsif (my $mset = delete $ctx->{-mset}) {
-               $gzf->zmore(mset_nav_top($ctx, $mset));
-               $gzf->zmore('<pre>no matching inboxes');
-               $gzf->zmore(mset_footer($ctx, $mset));
+               print $zfh mset_nav_top($ctx, $mset),
+                               '<pre>no matching inboxes',
+                               mset_footer($ctx, $mset);
        } else {
-               $gzf->zmore('<pre>no inboxes, yet');
+               print $zfh '<pre>no inboxes, yet';
        }
        my $out = $gzf->zflush('</pre><hr><pre>'.
 qq(This is a listing of public inboxes, see the `mirror' link of each inbox