aboutsummaryrefslogtreecommitdiff
path: root/source/templates/search.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-11 18:35:50 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-11 18:35:50 +0100
commit216315958b8af26150562eee634bf4774904c0a6 (patch)
treeee4799e8f4a84a5c874aa4cd9d30e2c2536ea65d /source/templates/search.html
parentWe'll try a simple index searching algorithm. (diff)
downloadnewspipe-216315958b8af26150562eee634bf4774904c0a6.tar.gz
newspipe-216315958b8af26150562eee634bf4774904c0a6.tar.bz2
newspipe-216315958b8af26150562eee634bf4774904c0a6.zip
Search function now using MongoDB indexed fulltext searching.
Diffstat (limited to 'source/templates/search.html')
-rw-r--r--source/templates/search.html71
1 files changed, 35 insertions, 36 deletions
diff --git a/source/templates/search.html b/source/templates/search.html
index 01043f0e..30ec77c1 100644
--- a/source/templates/search.html
+++ b/source/templates/search.html
@@ -9,44 +9,43 @@ import utils
<br />
<%
html = ""
+ feed_id = None
%>
-%if feed_id is None:
- %for feed in feeds:
- <%
- new_feed_section = True
- for article in mongo.get_articles(feed["feed_id"]):
- article_content = utils.clear_string(article["article_content"])
- if not article_content:
- article_content = utils.clear_string(article["article_title"])
- if wordre.findall(article_content) != []:
- if new_feed_section is True:
- new_feed_section = False
- html += """<h2><a href="/articles/%s" rel="noreferrer" target="_blank">%s</a><a href="%s" rel="noreferrer" target="_blank"><img src="%s" width="28" height="28" /></a></h2>\n""" % \
- (feed["feed_id"], feed["feed_title"], feed["feed_link"], feed["feed_image"])
- if article["article_readed"] == False:
- # not readed articles are in bold
- not_read_begin, not_read_end = "<b>", "</b>"
- else:
- not_read_begin, not_read_end = "", ""
+%for feed_id in search_result.keys():
+ <%
+ new_feed_section = True
+ feed = mongo.get_feed(feed_id)
+ print(search_result[feed["feed_id"]].count())
+ for article in search_result[feed["feed_id"]]:
+ article_content = utils.clear_string(article["article_content"])
+ if new_feed_section is True:
+ new_feed_section = False
+ html += """<h2><a href="/articles/%s" rel="noreferrer" target="_blank">%s</a><a href="%s" rel="noreferrer" target="_blank"><img src="%s" width="28" height="28" /></a></h2>\n""" % \
+ (feed["feed_id"], feed["feed_title"], feed["feed_link"], feed["feed_image"])
- # display a heart for faved articles
- if article["article_like"] == True:
- like = """ <img src="/img/heart.png" title="I like this article!" />"""
- else:
- like = ""
+ if article["article_readed"] == False:
+ # not readed articles are in bold
+ not_read_begin, not_read_end = "<b>", "</b>"
+ else:
+ not_read_begin, not_read_end = "", ""
- # descrition for the CSS ToolTips
- description = " ".join(article_content[:500].split(' ')[:-1])
+ # display a heart for faved articles
+ if article["article_like"] == True:
+ like = """ <img src="/img/heart.png" title="I like this article!" />"""
+ else:
+ like = ""
- # a description line per article (date, title of the article and
- # CSS description tooltips on mouse over)
- html += article["article_date"].strftime('%Y-%m-%d %H:%M') + " - " + \
- """<a class="tooltip" href="/article/%s:%s" rel="noreferrer" target="_blank">%s%s%s<span class="classic">%s</span></a>""" % \
- (feed["feed_id"], article["article_id"], not_read_begin, \
- article["article_title"][:150], not_read_end, description) + like + "<br />\n"
- %>
- %endfor
-%endif
- ${html}
- \ No newline at end of file
+ # descrition for the CSS ToolTips
+ description = " ".join(article_content[:500].split(' ')[:-1])
+
+ # a description line per article (date, title of the article and
+ # CSS description tooltips on mouse over)
+ html += article["article_date"].strftime('%Y-%m-%d %H:%M') + " - " + \
+ """<a class="tooltip" href="/article/%s:%s" rel="noreferrer" target="_blank">%s%s%s<span class="classic">%s</span></a>""" % \
+ (feed["feed_id"], article["article_id"], not_read_begin, \
+ article["article_title"][:150], not_read_end, description) + like + "<br />\n"
+ %>
+%endfor
+
+${html} \ No newline at end of file
bgstack15