diff options
author | cedricbonhomme <devnull@localhost> | 2010-11-23 22:51:44 +0100 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2010-11-23 22:51:44 +0100 |
commit | 64109aa3881b3f447278c359979031770013a8af (patch) | |
tree | 655fd41043d96c8a0f798439744c9e771eb397bf | |
parent | Syntax improvement. (diff) | |
download | newspipe-64109aa3881b3f447278c359979031770013a8af.tar.gz newspipe-64109aa3881b3f447278c359979031770013a8af.tar.bz2 newspipe-64109aa3881b3f447278c359979031770013a8af.zip |
Updated README.
-rw-r--r-- | README | 26 |
1 files changed, 22 insertions, 4 deletions
@@ -30,7 +30,7 @@ based on CherryPy. Articles are stored in a SQLite base. Features ------------ * notification of new articles by e-mail for selected feeds; -* export articles (HTML and raw text); +* export articles (HTML, EPUB and raw text); * mark or unmark an article as favorites; * share an article on Google Buzz, del.icio.us, Digg, reddit, Scoopeo and Blogmarks; * language detection and search articles by language. @@ -50,13 +50,31 @@ Software required Optional module ~~~~~~~~~~~~~~~ -These modules are not required but provides better features. -These modules are: -* oice.langdet +These modules are not required but provides better features: +* lxml and Genshi; +* oice.langdet; * gamin. If you want to install these modules: +EPUB generation +^^^^^^^^^^^^^^^^^^ +wget http://codespeak.net/lxml/lxml-2.2.8.tgz +tar -xzvf lxml-2.2.8.tgz +rm -f lxml-2.2.8.tgz +cd lxml +sudo python setup.py install +cd .. +rm -Rf lxml + +wget http://ftp.edgewall.com/pub/genshi/Genshi-0.6.tar.gz +tar -xzvf Genshi-0.6.tar.gz +rm -f Genshi-0.6.tar.gz +cd Genshi +sudo python setup.py install +cd .. +rm -Rf Genshi + Language detection ^^^^^^^^^^^^^^^^^^ Name: oice.langdet |