aboutsummaryrefslogtreecommitdiff
path: root/source/feedgetter.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-07-24 14:24:54 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-07-24 14:24:54 +0200
commit7044f4676a083fc85c1092cf31eeda3dd279915d (patch)
treef36892898e2c06e1f4496f9c890d155252c1a48e /source/feedgetter.py
parentFixed an URL in the README. (diff)
downloadnewspipe-7044f4676a083fc85c1092cf31eeda3dd279915d.tar.gz
newspipe-7044f4676a083fc85c1092cf31eeda3dd279915d.tar.bz2
newspipe-7044f4676a083fc85c1092cf31eeda3dd279915d.zip
added add_to_index function, to add an article to the Whoosh index.
Diffstat (limited to 'source/feedgetter.py')
-rwxr-xr-xsource/feedgetter.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/feedgetter.py b/source/feedgetter.py
index 31a02d4b..bd9cacc9 100755
--- a/source/feedgetter.py
+++ b/source/feedgetter.py
@@ -34,6 +34,7 @@ from datetime import datetime
from contextlib import contextmanager
import conf
+import search
import utils
import mongodb
@@ -177,6 +178,9 @@ class FeedGetter(object):
articles.append(article)
+ # add the article to the Whoosh index
+ #search.add_to_index([article], feed)
+
if conf.MAIL_ENABLED and feed["mail"] and self.articles.get_articles(feed_id, article_id) == False:
# if subscribed to the feed AND if article not already in the database
threading.Thread(None, utils.send_mail, None, (conf.mail_from, conf.mail_to, \
bgstack15