diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-07-24 14:24:54 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-07-24 14:24:54 +0200 |
commit | 7044f4676a083fc85c1092cf31eeda3dd279915d (patch) | |
tree | f36892898e2c06e1f4496f9c890d155252c1a48e /source/feedgetter.py | |
parent | Fixed an URL in the README. (diff) | |
download | newspipe-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-x | source/feedgetter.py | 4 |
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, \ |