diff options
-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 |