fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'master' into sunburnt
[wolnelektury.git]
/
apps
/
search
/
views.py
diff --git
a/apps/search/views.py
b/apps/search/views.py
index
11ce8e8
..
72852d0
100644
(file)
--- a/
apps/search/views.py
+++ b/
apps/search/views.py
@@
-116,6
+116,9
@@
def main(request):
context_instance=RequestContext(request))
search = Search()
context_instance=RequestContext(request))
search = Search()
+ theme_terms = search.index.analyze(text=query, field="themes_pl") \
+ + search.index.analyze(text=query, field="themes")
+
# change hints
tags = search.hint_tags(query, pdcounter=True, prefix=False)
tags = split_tags(tags)
# change hints
tags = search.hint_tags(query, pdcounter=True, prefix=False)
tags = split_tags(tags)
@@
-125,7
+128,7
@@
def main(request):
# Boost main author/title results with mixed search, and save some of its results for end of list.
# boost author, title results
# Boost main author/title results with mixed search, and save some of its results for end of list.
# boost author, title results
- author_title_mixed = search.search_some(query, ['authors', 'title', 'tags'])
+ author_title_mixed = search.search_some(query, ['authors', 'title', 'tags']
, query_terms=theme_terms
)
author_title_rest = []
for b in author_title_mixed:
author_title_rest = []
for b in author_title_mixed:
@@
-139,9
+142,9
@@
def main(request):
# Because the query is using only one field.
text_phrase = SearchResult.aggregate(
search.search_phrase(query, 'text', snippets=True, book=False),
# Because the query is using only one field.
text_phrase = SearchResult.aggregate(
search.search_phrase(query, 'text', snippets=True, book=False),
- search.search_some(query, ['text'], snippets=True, book=False))
+ search.search_some(query, ['text'], snippets=True, book=False
, query_terms=theme_terms
))
- everywhere = search.search_everywhere(query)
+ everywhere = search.search_everywhere(query
, query_terms=theme_terms
)
def already_found(results):
def f(e):
def already_found(results):
def f(e):
@@
-165,17
+168,9
@@
def main(request):
('text', text_phrase),
('text', everywhere)]:
res.sort(reverse=True)
('text', text_phrase),
('text', everywhere)]:
res.sort(reverse=True)
- print "get snips %s, res size %d" % (field, len(res))
for r in res:
for r in res:
- print "Get snippets for %s" % r
search.get_snippets(r, query, field, 3)
search.get_snippets(r, query, field, 3)
- # for r in res:
- # for h in r.hits:
- # h['snippets'] = map(lambda s:
- # re.subn(r"(^[ \t\n]+|[ \t\n]+$)", u"",
- # re.subn(r"[ \t\n]*\n[ \t\n]*", u"\n", s)[0])[0], h['snippets'])
- # suggestion = did_you_mean(query, search.get_tokens(toks, field="SIMPLE"))
suggestion = u''
def ensure_exists(r):
suggestion = u''
def ensure_exists(r):