Actions
Feature #25198
openAdd rank in search result as data attribute
Status:
New
Priority:
Normal
Assignee:
-
Category:
Search engine
Target version:
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Description
I'm developing full text search plugin for Redmine1.
I want to add rank (score) to search result to check search result rank(score) easily.
(It it very hard to read debug log in real time.)
Currently I need overwrite app/views/search/index.html.erb and app/views/search/index.api.rsb completely to add rank to search result.
But I don't want to keep maintaining views in my plugin because it is very annoying to keep following upstream changes.
This tiny patch provides functionality to display rank(score) in search result.
I don't add CSS to display data-rank attribute in search result html by default.
We can display data-rank value in search result using following CSS:
#search-results dt a::after {
content: " (" attr(data-rank) ")";
color: gray;
font-size: x-small;
};
Files
Actions