X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FSearchView.pm;h=b025ec964b8060157e881272701ebd6a9dd94424;hb=23af251dd607c4e75ab1e68063f2c885c48cc035;hp=c0c801b321c6bc389ee1a28bd651e92276b9a3ca;hpb=520be116e8a686cb223b48fad1de29201dee45be;p=public-inbox.git diff --git a/lib/PublicInbox/SearchView.pm b/lib/PublicInbox/SearchView.pm index c0c801b3..b025ec96 100644 --- a/lib/PublicInbox/SearchView.pm +++ b/lib/PublicInbox/SearchView.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2015-2021 all contributors +# Copyright (C) all contributors # License: AGPL-3.0+ # # Displays search results for the web interface @@ -102,11 +102,8 @@ sub mset_summary { foreach my $m ($mset->items) { my $num = shift @nums; - my $smsg = delete($num2msg{$num}) or do { - eval { - $m = "$m $num expired\n"; - $ctx->{env}->{'psgi.errors'}->print($m); - }; + my $smsg = delete($num2msg{$num}) // do { + warn "$m $num expired\n"; next; }; my $mid = $smsg->{mid}; @@ -122,7 +119,7 @@ sub mset_summary { $min = $pct; my $s = ascii_html($smsg->{subject}); - my $f = ascii_html($smsg->{from_name}); + my $f = ascii_html(delete $smsg->{from_name}); if ($obfs_ibx) { obfuscate_addrs($obfs_ibx, $s); obfuscate_addrs($obfs_ibx, $f); @@ -170,7 +167,7 @@ sub err_txt { sub search_nav_top { my ($mset, $q, $ctx) = @_; my $m = $q->qs_html(x => 'm', r => undef, t => undef); - my $rv = qq{
};
+	my $rv = qq{
};
 	my $initial_q = $ctx->{-uxs_retried};
 	if (defined $initial_q) {
 		my $rewritten = $q->{'q'};
@@ -195,17 +192,25 @@ sub search_nav_top {
 	$rv .= ']  view[';
 
 	my $x = $q->{x};
-	if ($x eq '') {
-		my $t = $q->qs_html(x => 't');
-		$rv .= qq{summary|nested}
-	} elsif ($q->{x} eq 't') {
+	my $pfx = "\t\t\t";
+	if ($x eq 't') {
 		my $s = $q->qs_html(x => '');
 		$rv .= qq{summary|nested};
+		$pfx = "thread overview below | ";
+	} else {
+		my $t = $q->qs_html(x => 't');
+		$rv .= qq{summary|nested}
 	}
 	my $A = $q->qs_html(x => 'A', r => undef);
-	$rv .= qq{|Atom feed]};
+	$rv .= qq{|Atom feed]\n};
+	$rv .= <{t};
+*** "t=1" collapses threads in summary, "full threads" requires mbox.gz ***
+EOM
+	$rv .= <{ibx}->isrch->has_threadid) {
-		$rv .= qq{\n\t\t\tdownload mbox.gz: } .
+		$rv .= qq{${pfx}download mbox.gz: } .
 			# we set name=z w/o using it since it seems required for
 			# lynx (but works fine for w3m).
 			qq{};
 	} else { # BOFH needs to --reindex
-		$rv .= qq{\n\t\t\t\t\t\tdownload: } .
+		$rv .= qq{${pfx}download: } .
 			qq{}
 	}
 	$rv .= qq{
};
@@ -269,14 +274,16 @@ sub search_nav_bot { # also used by WwwListing for searching extindex miscidx
 	$rv .= qq{prev $pd} if $prev;
 
 	my $rev = $q->qs_html(o => $o < 0 ? 0 : -1);
-	$rv .= qq{ | reverse
}; + $rv .= qq{ | reverse} . + q{ | sort options + mbox downloads } . + q{above
}; } sub sort_relevance { - [ sort { + @{$_[0]} = sort { (eval { $b->topmost->{pct} } // 0) <=> (eval { $a->topmost->{pct} } // 0) - } @{$_[0]} ] + } @{$_[0]}; } sub mset_thread { @@ -294,7 +301,9 @@ 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($mset, $q).
+		"
-- links below jump to the message on this page --\n";
+
 	$ctx->{-upfx} = '';
 	$ctx->{anchor_idx} = 1;
 	$ctx->{cur_level} = 0;