aboutsummaryrefslogtreecommitdiff
path: root/source/feedgetter.py
Commit message (Collapse)AuthorAge
* Removed all .py files.Cédric Bonhomme2013-10-13
|
* Fixed comments.Cédric Bonhomme2013-10-13
|
* Bug fix in feedgetter.py when a fix does not exist.Cédric Bonhomme2013-09-10
|
* Log erros in feedgetter.pyCédric Bonhomme2013-09-08
|
* Added a function which opens a URL safely.Cédric Bonhomme2013-09-08
|
* detect_url_erros() now uses the proxy.Cédric Bonhomme2013-09-08
|
* It is now possible to set the user-agent used by the feed parser.Cédric Bonhomme2013-08-15
|
* proxy object is now instancied in the __init__ function of feedgetter class.Cédric Bonhomme2013-08-11
|
* It is now possible to fetch articles with feedparser through a HTTP proxy, ↵Cédric Bonhomme2013-08-11
| | | | for example privoxy/tor. The address of the proxy is specified in the configuration file.
* Bugfix when checking if an article is already in the database.Cédric Bonhomme2013-07-24
|
* AsyncWriter is used to prevent whoosh.store.LockError error. And we only try ↵Cédric Bonhomme2013-07-24
| | | | to add new articles to the index.
* added add_to_index function, to add an article to the Whoosh index.Cédric Bonhomme2013-07-24
|
* Changed header information in feedgetter.py.Cédric Bonhomme2013-06-10
|
* Now using 'with' statement with a context manager in order to catch i/o ↵Cédric Bonhomme2013-06-10
| | | | exceptions when opening the list of feeds.
* Changed the message whe BeautifulSoup fails to sanitize the description of ↵Cédric Bonhomme2013-04-03
| | | | the article.
* Updated revision date.Cédric Bonhomme2013-04-02
|
* Test if BeautifulSoup failed to sanitize the HTML content.Cédric Bonhomme2013-04-02
|
* Get Unicode string of the output of BeautifulSoup.Cédric Bonhomme2013-03-26
|
* Now using html.parser for BeautifulSoup since this parser makes no attempt ↵Cédric Bonhomme2013-03-26
| | | | to create a well-formed HTML document by adding a <body> tag. Unlike lxml, it doesn’t even bother to add an <html> tag.
* syncCédric Bonhomme2013-02-10
|
* Added a new option to specify if e-mail notification is activated.Cédric Bonhomme2013-01-21
|
* Test if the article is present in the database before sending it via mail.Cédric Bonhomme2013-01-21
|
* Update revesion date for feedgetter.py.Cédric Bonhomme2013-01-20
|
* Send mail for a subscribed feed and then add to database.Cédric Bonhomme2013-01-20
|
* Re-enabled mail notification.Cédric Bonhomme2013-01-20
|
* Updated comment.Cédric Bonhomme2013-01-20
|
* Test if the MongoDB collection exist before the creation.Cédric Bonhomme2013-01-20
|
* Added some tricks to get all posts of a blog.Cédric Bonhomme2013-01-20
|
* The path of the feeds list is now set in pyAggr3g470r.cfg.Cédric Bonhomme2013-01-14
|
* Updated copyrights years.Cédric Bonhomme2013-01-01
|
* Updated the feedgetter accordingly issues 310 and 328 of feedparser: "To ↵Cédric Bonhomme2012-11-20
| | | | avoid breaking existing software while fixing issue 310, a temporary mapping has been created from `updated_parsed` to `published_parsed` if `updated_parsed` doesn't exist. This fallback will be removed in a future version of feedparser".
* Updated revision date and version number.cedricbonhomme2012-11-08
|
* Porting to Python 3.2. Better, faster, stronger.cedricbonhomme2012-11-08
|
* Distant MongoDB connection working (tested with AlwaysData).cedricbonhomme2012-05-03
|
* Authentication to the MongoDB database when retrieving feeds.cedricbonhomme2012-05-02
|
* urlsafe_b64encode is replaced by SHA1 for id of articles.cedricbonhomme2012-05-01
|
* Added conf.py which is responsible of the load of the configuration.cedricbonhomme2012-04-22
|
* Minor refactoring with pylint.cedricbonhomme2012-04-22
|
* Added comments.cedricbonhomme2012-04-22
|
* SHA1 is replaced by urlsafe_b64encode for id of articles.cedricbonhomme2012-04-20
|
* Reorganization of folders.cedricbonhomme2012-04-15
bgstack15