]> Sergey Matveev's repositories - public-inbox.git/commitdiff
www_listing: drop "sort options + mbox downloads" bit
authorEric Wong <e@80x24.org>
Wed, 14 Dec 2022 22:34:15 +0000 (22:34 +0000)
committerEric Wong <e@80x24.org>
Thu, 15 Dec 2022 00:16:42 +0000 (00:16 +0000)
The sort options and mbox downloads only apply to individual
inbox search endpoints, and they make no sense for the listing
of inboxes themselves.

lib/PublicInbox/SearchView.pm
lib/PublicInbox/WwwListing.pm

index 8932c73da5671429e23ca60cabf9801d296c2f04..aeee2a2adf08fa5433b6cf0ae8dbbf7b0e0aa61d 100644 (file)
@@ -134,7 +134,7 @@ sub mset_summary {
                $q->{-min_pct} = $min;
                $q->{-max_pct} = $max;
        }
-       $$res .= search_nav_bot($mset, $q);
+       $$res .= search_nav_bot($ctx, $mset, $q);
        undef;
 }
 
@@ -225,7 +225,7 @@ EOM
 }
 
 sub search_nav_bot { # also used by WwwListing for searching extindex miscidx
-       my ($mset, $q) = @_;
+       my ($ctx, $mset, $q) = @_;
        my $total = $mset->get_matches_estimated;
        my $l = $q->{l};
        my $rv = '</pre><hr><pre id=t>';
@@ -274,9 +274,10 @@ sub search_nav_bot { # also used by WwwListing for searching extindex miscidx
        $rv .= qq{<a\nhref="?$prev"\nrel=prev>prev $pd</a>} if $prev;
 
        my $rev = $q->qs_html(o => $o < 0 ? 0 : -1);
-       $rv .= qq{ | <a\nhref="?$rev">reverse</a>} .
-               q{ | sort options + mbox downloads } .
-               q{<a href=#d>above</a></pre>};
+       $rv .= qq{ | <a\nhref="?$rev">reverse</a>};
+       exists($ctx->{ibx}) and
+               $rv .= q{ | sort options + mbox downloads <a href=#d>above</a></pre>};
+       $rv;
 }
 
 sub sort_relevance {
@@ -301,7 +302,7 @@ sub mset_thread {
        my $rootset = PublicInbox::SearchThread::thread($msgs,
                $r ? \&sort_relevance : \&PublicInbox::View::sort_ds,
                $ctx);
-       my $skel = search_nav_bot($mset, $q).
+       my $skel = search_nav_bot($ctx, $mset, $q).
                "<pre>-- links below jump to the message on this page --\n";
 
        $ctx->{-upfx} = '';
index 72c940ddc406184cc938d48ce649f319bfac6e65..21e5b8bc8121040e9bd467d4cd30d7ca0baa654e 100644 (file)
@@ -162,7 +162,7 @@ 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 {