aboutsummaryrefslogtreecommitdiff
path: root/source
Commit message (Collapse)AuthorAge
* Test if the database has not been indexed.Cédric Bonhomme2013-06-25
|
* Added a button to reindex the database on the /search page.Cédric Bonhomme2013-06-24
|
* Removed the limit of results for the search with whoosh.Cédric Bonhomme2013-06-24
|
* Integration of the new search module.Cédric Bonhomme2013-06-24
|
* Added index_base view in order to launch the indexing.Cédric Bonhomme2013-06-24
|
* Updated the /management template.Cédric Bonhomme2013-06-24
|
* Added missing import.Cédric Bonhomme2013-06-24
|
* First functional version of the indexed full-text search.Cédric Bonhomme2013-06-24
|
* A test of the whoosh libraryCédric Bonhomme2013-06-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.
* Minor changes to the tempate of the /unread page.Cédric Bonhomme2013-06-07
|
* Updated login page CSS.Cédric Bonhomme2013-05-02
|
* The qrcode module has been ported to Python 3.3 and the qrcode image is ↵Cédric Bonhomme2013-04-15
| | | | horizontally centered in /article page.
* Improvement of the display of the /article view.Cédric Bonhomme2013-04-15
|
* Don't append <br/> tag after the content of the article.Cédric Bonhomme2013-04-15
|
* Improvements in the article.html template.Cédric Bonhomme2013-04-15
|
* The plan text version of an article is now between a <p> HTML tag.Cédric Bonhomme2013-04-15
|
* Released version 3.9.Cédric Bonhomme2013-04-14
|
* The heart pict wasn't any more present in the /history page.Cédric Bonhomme2013-04-14
|
* A picto was not displayed in the /articles page.Cédric Bonhomme2013-04-12
|
* Minor bugfix: the link to the heart picto was wrong.Cédric Bonhomme2013-04-12
|
* Added a link to the page of unread article in the /feed page.Cédric Bonhomme2013-04-10
|
* Minor bugfix when setting the title of the generated epubCédric Bonhomme2013-04-08
|
* Changed sample configuration file.Cédric Bonhomme2013-04-08
|
* Default Python version is now 3.3.Cédric Bonhomme2013-04-06
|
* Don't try to authenticate is no password is given by the user in the ↵cedricbonhomme2013-04-03
| | | | configuration file.
* THe code for the QR Code generation is now in utils.py.Cédric Bonhomme2013-04-03
|
* Removed some useless regular expression.Cédric Bonhomme2013-04-03
|
* 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
|
* Index are generated in background at database initialization.Cédric Bonhomme2013-04-02
|
* Test if ids of the feed/articles exists.Cédric Bonhomme2013-04-01
|
* If feed id is not valid, return directly the error page.Cédric Bonhomme2013-04-01
|
* Test if the id of the feed is valid.Cédric Bonhomme2013-04-01
|
* The original epoch time (time.gmtime(0)) is now used as last_post_date when ↵Cédric Bonhomme2013-03-29
| | | | there is no article in a feed.
* Added the case when the feed is empty for the /articles view.Cédric Bonhomme2013-03-28
|
* Minor fix to the /inactives view when a feed has no articles.Cédric Bonhomme2013-03-28
|
* Minor fix to the /feed view when a feed has no articles.Cédric Bonhomme2013-03-28
|
* don't print the tree.Cédric Bonhomme2013-03-27
|
* Chech if there is any subscription.Cédric Bonhomme2013-03-27
|
* THe /management page points now to the /subsciptions page.Cédric Bonhomme2013-03-27
|
* Minor changes to the format of the /management page.Cédric Bonhomme2013-03-27
|
* Removed the 'Add feed' form from the page /subscriptions.Cédric Bonhomme2013-03-27
|
* 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.
* The /subscriptions page refers now to the appropriate feeds page.Cédric Bonhomme2013-03-24
|
* Added default value for the root of the tree.Cédric Bonhomme2013-03-23
|
* Improvement to the binarytree implementation: the root is now given to the ↵Cédric Bonhomme2013-03-23
| | | | __init__ function.
bgstack15