From 5c46cd1b3aa2421ef1e1b794b1c2358898cdf37a Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Fri, 20 Dec 2019 06:58:27 +0000 Subject: searchview: save a column in &x=t thread skeleton Displaying "100%" wastes a precious column. Show "99%" instead since there's little practical difference and states: Note that these generally aren't percentages of anything meaningful (unless you use a custom weighting formula where they are!) And we're not using a custom weighting formula. --- lib/PublicInbox/SearchView.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'lib/PublicInbox/SearchView.pm') diff --git a/lib/PublicInbox/SearchView.pm b/lib/PublicInbox/SearchView.pm index 566808e1..7afb0754 100644 --- a/lib/PublicInbox/SearchView.pm +++ b/lib/PublicInbox/SearchView.pm @@ -113,7 +113,7 @@ sub mset_summary { my $obfs_ibx = $ibx->{obfuscate} ? $ibx : undef; foreach my $m ($mset->items) { my $rank = sprintf("%${pad}d", $m->get_rank + 1); - my $pct = $m->get_percent; + my $pct = get_pct($m); my $smsg = load_doc_retry($srch, $m); unless ($smsg) { eval { @@ -264,6 +264,14 @@ sub sort_relevance { } @{$_[0]} ] }; } +sub get_pct ($) { + # Capped at "99%" since "100%" takes an extra column in the + # thread skeleton view. says the value isn't + # very meaningful, anyways. + my $n = $_[0]->get_percent; + $n > 99 ? 99 : $n; +} + sub mset_thread { my ($ctx, $mset, $q) = @_; my %pct; @@ -271,7 +279,7 @@ sub mset_thread { my $msgs = $ibx->search->retry_reopen(sub { [ map { my $i = $_; my $smsg = PublicInbox::SearchMsg->load_doc($i->get_document); - $pct{$smsg->mid} = $i->get_percent; + $pct{$smsg->mid} = get_pct($i); $smsg; } ($mset->items) ]}); my $r = $q->{r}; -- cgit v1.2.3-24-ge0c7