aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-08-15 00:30:28 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-08-15 00:30:28 +0200
commite61c9e62f8965339edeb51337ceacc848c0fc123 (patch)
tree4e1d6d667f4c8acdef83cdd49cccb776902b1c3e
parentIt is now possible to set the user-agent used by the feed parser. (diff)
downloadnewspipe-e61c9e62f8965339edeb51337ceacc848c0fc123.tar.gz
newspipe-e61c9e62f8965339edeb51337ceacc848c0fc123.tar.bz2
newspipe-e61c9e62f8965339edeb51337ceacc848c0fc123.zip
Updated documentation.
-rw-r--r--docs/index.rst10
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/index.rst b/docs/index.rst
index 50ce635f..9eaad962 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -169,6 +169,10 @@ section of the configuration file:
dbname = bob_pyaggr3g470r
user = bob
password =
+ [feedparser]
+ http_proxy = 127.0.0.1:8118
+ user_agent = pyAggr3g470r (https://bitbucket.org/cedricbonhomme/pyaggr3g470r)
+ feed_list = ./var/feed.lst
[mail]
enabled = 0
mail_from = pyAggr3g470r@no-reply.com
@@ -178,15 +182,13 @@ 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
+You can specify the address of a proxy in the configuration file (in the *feedparser* 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.
bgstack15