aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--docs/index.rst9
-rwxr-xr-xsource/pyAggr3g470r.py4
3 files changed, 12 insertions, 2 deletions
diff --git a/README.md b/README.md
index 70cb3598..e74ad42e 100644
--- a/README.md
+++ b/README.md
@@ -15,6 +15,7 @@ A documentation is available [here](https://pyaggr3g470r.readthedocs.org/).
Features
------------
* articles are stored in a [MongoDB](http://www.mongodb.org/) database (local or remote);
+* HTTP proxy support;
* fast full-text indexing and searching thanks the [Whoosh](https://bitbucket.org/mchaput/whoosh) library;
* e-mail notification;
* export articles to HTML, EPUB, PDF or raw text;
diff --git a/docs/index.rst b/docs/index.rst
index c651654b..50ce635f 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -21,6 +21,7 @@ Features
--------
* articles are stored in a MongoDB_ database (local or remote);
+* HTTP proxy support;
* fast full-text indexing and searching thanks the Whoosh_ library;
* e-mail notification;
* export articles to HTML, EPUB, PDF or raw text;
@@ -177,9 +178,17 @@ section of the configuration file:
password = your_password
[misc]
diaspora_pod = joindiaspora.com
+ feed_list = ./var/feed.lst
+ http_proxy = 127.0.0.1:8118
Then just click on "Stay tuned" for the desired feed(s) at the main page of pyAggr3g470r in your browser.
+HTTP proxy
+``````````
+You can specify the address of a proxy in the configuration file (in the *misc* section).
+For example `127.0.0.1:8118` if you are using Privoxy/Tor. If you are not using a proxy just
+leave the value of `http_proxy` to blank.
+
Launch
------
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 4a99ce2d..3de1dfa6 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -20,9 +20,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 4.0 $"
+__version__ = "$Revision: 4.1 $"
__date__ = "$Date: 2010/01/29 $"
-__revision__ = "$Date: 2013/06/25 $"
+__revision__ = "$Date: 2013/08/11 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
bgstack15