aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-09-15 09:08:12 +0200
committercedricbonhomme <devnull@localhost>2012-09-15 09:08:12 +0200
commit40655597b3e94c32108b395ed131fad91a9b549c (patch)
tree3c0d15e8ffba4501fcbfbbbee5bcd0c56a918120 /docs
parentAdded initial files for the documentation. (diff)
downloadnewspipe-40655597b3e94c32108b395ed131fad91a9b549c.tar.gz
newspipe-40655597b3e94c32108b395ed131fad91a9b549c.tar.bz2
newspipe-40655597b3e94c32108b395ed131fad91a9b549c.zip
Updated index.rst with the content of the README.
Diffstat (limited to 'docs')
-rw-r--r--docs/index.rst91
1 files changed, 89 insertions, 2 deletions
diff --git a/docs/index.rst b/docs/index.rst
index f1f260af..b36479a5 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -6,12 +6,99 @@
Welcome to pyAggr3g470r's documentation!
========================================
-Contents:
-
.. toctree::
:maxdepth: 2
+Presentation
+------------
+
+pyAggr3g470r_ is a multi-threaded news aggregator with a web interface
+based on CherryPy_. Articles are stored in a MongoDB_ base.
+
+
+
+Features
+------------
+
+* articles are stored in a MongoDB_ database;
+* find an article with history;
+* e-mail notification;
+* export articles to HTML, EPUB, PDF or raw text;
+* mark or unmark articles as favorites;
+* share articles with Diaspora, Google Buzz, Pinboard, delicious, Identi.ca, Digg, reddit, Scoopeo, Blogmarks and Twitter;
+* generation of QR code with the content or URL of an article. So you can read an article later on your smartphone (or share with friends).
+
+
+
+Requierements
+-------------
+Software required
+~~~~~~~~~~~~~~~~~
+
+* Python_ 2.7.*;
+* MongoDB_ and PyMongo_;
+* feedparser_;
+* CherryPy_ (version 3 and up);
+* BeautifulSoup_.
+
+
+Optional module
+~~~~~~~~~~~~~~~
+
+These modules are not required but enables more features:
+* lxml and Genshi;
+* Python Imaging Library for the generation of QR codes.
+
+
+If you want to install these modules:
+
+.. code-block:: bash
+
+ $ sudo aptitude install python-lxml python-genshi
+
+
+Backup
+------
+
+If you want to backup your database:
+
+.. code-block:: bash
+
+ $ su
+ $ /etc/init.d/mongodb stop
+ $ cp /var/lib/mongodb/pyaggr3g470r.* ~
+
+
+
+Donnation
+---------
+If you wish and if you like pyAggr3g470r, you can donate via bitcoin. My bitcoin address: 1GVmhR9fbBeEh7rP1qNq76jWArDdDQ3otZ
+Thank you!
+
+
+
+License
+------------
+pyAggr3g470r_ is under GPLv3_ license.
+
+
+
+
+
+
+
+.. _Python: http://python.org/
+.. _pyAggr3g470r: https://bitbucket.org/cedricbonhomme/pyaggr3g470r/
+.. _feedparser: http://feedparser.org/
+.. _MongoDB: http://www.mongodb.org/
+.. _PyMongo: https://github.com/mongodb/mongo-python-driver
+.. _CherryPy: http://cherrypy.org/
+.. _BeautifulSoup: http://www.crummy.com/software/BeautifulSoup/
+.. _GPLv3: http://www.gnu.org/licenses/gpl-3.0.txt
+
+
+
Indices and tables
==================
bgstack15