aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-11-23 22:51:44 +0100
committercedricbonhomme <devnull@localhost>2010-11-23 22:51:44 +0100
commit64109aa3881b3f447278c359979031770013a8af (patch)
tree655fd41043d96c8a0f798439744c9e771eb397bf /README
parentSyntax improvement. (diff)
downloadnewspipe-64109aa3881b3f447278c359979031770013a8af.tar.gz
newspipe-64109aa3881b3f447278c359979031770013a8af.tar.bz2
newspipe-64109aa3881b3f447278c359979031770013a8af.zip
Updated README.
Diffstat (limited to 'README')
-rw-r--r--README26
1 files changed, 22 insertions, 4 deletions
diff --git a/README b/README
index 7f44f572..e8e45ab4 100644
--- a/README
+++ b/README
@@ -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
bgstack15