You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our method of filtering out files from search operations was a string comparison, which produced a lot of false positive hits. This comparison should be a path comparison that looks explicitly for os.path.join(doc_path, 'search.html') instead of using string comparison.
Filtering is disabled for now, we should clean up search results soon and reenable it.
It simply looked for paths ending search.html for example. This would incorrectly catch files like foo/search.html or foo_search.html.
If we can't use file operations for this query in some way, we should at least be more strict about the root path. We should more explicitly catch the default sphinx pages we're not looking to index.
Our method of filtering out files from search operations was a string comparison, which produced a lot of false positive hits. This comparison should be a path comparison that looks explicitly for
os.path.join(doc_path, 'search.html')
instead of using string comparison.Filtering is disabled for now, we should clean up search results soon and reenable it.
Refs #5246
The text was updated successfully, but these errors were encountered: