aboutsummaryrefslogtreecommitdiff
path: root/source
Commit message (Collapse)AuthorAge
* 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.
* Bugfix: wrong function call in the recursive tree walking function.Cédric Bonhomme2013-03-23
|
* Updated description.Cédric Bonhomme2013-03-23
|
* Minor changes in testbinarytree.py.Cédric Bonhomme2013-03-20
|
* Renamed class named in binarytree.pyCédric Bonhomme2013-03-20
|
* MongoDB index.Cédric Bonhomme2013-03-19
|
* Added new views: subscriptions in order to list subscribed feeds.Cédric Bonhomme2013-03-19
|
* MongoDB index.Cédric Bonhomme2013-03-19
|
* In and Post order depth traversal.Cédric Bonhomme2013-03-19
|
* Restored favicon.Cédric Bonhomme2013-03-19
|
* Added authentication to the MongoDB database for testbinarytree script.Cédric Bonhomme2013-03-19
|
* Typo.Cédric Bonhomme2013-03-18
|
* Updated comments in binary tree.py.Cédric Bonhomme2013-03-18
|
* Ported binary tree implementation to Python 3.Cédric Bonhomme2013-03-18
|
* Experience: test to load all articles in an ordered binary tree.Cédric Bonhomme2013-03-18
|
* It is now possible to switch between the plain text and the HTML version of ↵Cédric Bonhomme2013-03-18
| | | | the article.
* The plain_text views and plain_text template has been removed. There is now ↵Cédric Bonhomme2013-03-18
| | | | alink in the /article page to see the content of the article in plain text.
* Updated link to the picture in the authentication page.Cédric Bonhomme2013-03-15
|
* Updated templates.Cédric Bonhomme2013-03-15
|
* Updated CherryPy configuration.Cédric Bonhomme2013-03-15
|
* Updated template lookup directory.Cédric Bonhomme2013-03-15
|
* Reaorganization of folders for the CSS, templates and pictures.Cédric Bonhomme2013-03-15
|
* Updated revision dateCédric Bonhomme2013-03-15
|
* Removed useless variable declarationCédric Bonhomme2013-03-15
|
* Creation of an index when creating a new collection.Cédric Bonhomme2013-03-15
|
bgstack15