File: 0001.patch

package info (click to toggle)
public-inbox 1.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,152 kB
  • sloc: perl: 52,771; sh: 302; ansic: 106; makefile: 37
file content (46 lines) | stat: -rw-r--r-- 1,328 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
From: Eric Wong <e@80x24.org>
Date: Fri, 20 Jul 2018 07:21:41 +0000
To: test@example.com
Subject: [PATCH] search: use boolean prefix for filenames in diffs, too
Message-ID: <20180720072141.GA15957@example>

Filenames within a project tend to be reasonably stable within a
project and I plan on having automated searches hit these.

Also, using no term prefix at all (the default for searching)
still allows probabilistic searches on everything that's in a
"git diff", including the blob names which were just made
boolean.

Note, attachment filenames ("n:" prefix) will still use
probabilistic search, as they're hardly standardized.
---
 lib/PublicInbox/Search.pm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/PublicInbox/Search.pm b/lib/PublicInbox/Search.pm
index 090d998b6c2c..6e006fd73b1d 100644
--- a/lib/PublicInbox/Search.pm
+++ b/lib/PublicInbox/Search.pm
@@ -53,6 +53,9 @@ my %bool_pfx_external = (
 	dfpre => 'XDFPRE',
 	dfpost => 'XDFPOST',
 	dfblob => 'XDFPRE XDFPOST',
+	dfn => 'XDFN',
+	dfa => 'XDFA',
+	dfb => 'XDFB',
 );
 
 my $non_quoted_body = 'XNQ XDFN XDFA XDFB XDFHH XDFCTX XDFPRE XDFPOST';
@@ -72,9 +75,6 @@ my %prob_prefix = (
 
 	q => 'XQUOT',
 	nq => $non_quoted_body,
-	dfn => 'XDFN',
-	dfa => 'XDFA',
-	dfb => 'XDFB',
 	dfhh => 'XDFHH',
 	dfctx => 'XDFCTX',
 
-- 
^_^