user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
* [PATCH] examples/cgit-commit-filter: improve quoted text handling
@ 2021-02-13  2:15 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2021-02-13  2:15 UTC (permalink / raw)
  To: meta

With an example such as:

	something before "quoted phrase" something after

The Xapian will now see:

	[ "something before", "quoted phrase", "something after" ]

whereas before it would see:

	[ "something before", "quoted", "phrase", "something after" ]

which should improve search results accuracy when looking
up commits by commit title (subject).
---
 examples/cgit-commit-filter.lua | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/examples/cgit-commit-filter.lua b/examples/cgit-commit-filter.lua
index 8f9d3eb5..9614c944 100644
--- a/examples/cgit-commit-filter.lua
+++ b/examples/cgit-commit-filter.lua
@@ -32,7 +32,8 @@ function filter_close()
 			html(buffer)
 		else
 			html('<a href="' .. u .. '?x=t&amp;q=')
-			html_url_arg('"' .. buffer .. '"')
+			s = string.gsub(buffer, '"', '""')
+			html_url_arg('"' .. s .. '"')
 			html('"><tt>')
 			html_txt(buffer)
 			html('</tt></a>')

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-02-13  2:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-13  2:15 [PATCH] examples/cgit-commit-filter: improve quoted text handling Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).