aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-09 22:47:39 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-09 22:47:39 +0200
commitf38f3387a5a82141878bef40e02d21d6c853d07e (patch)
tree6998bc2cc695431db47eaa3002bb2b5c59471594
parentUpdated README. (diff)
downloadnewspipe-f38f3387a5a82141878bef40e02d21d6c853d07e.tar.gz
newspipe-f38f3387a5a82141878bef40e02d21d6c853d07e.tar.bz2
newspipe-f38f3387a5a82141878bef40e02d21d6c853d07e.zip
Updated README.
-rw-r--r--README.rst12
-rw-r--r--pyaggr3g470r/views.py3
2 files changed, 11 insertions, 4 deletions
diff --git a/README.rst b/README.rst
index 948d1e08..1ab47b3e 100644
--- a/README.rst
+++ b/README.rst
@@ -47,6 +47,7 @@ Deploying the application on Heroku
$ heroku run init
$ heroku ps:scale web=1
+An instance of pyAggr3g470r is running `here <https://pyaggr3g470r.herokuapp.com/>`_ .
Deploying the application on a traditional server
'''''''''''''''''''''''''''''''''''''''''''''''''
@@ -76,20 +77,23 @@ Deploying the application on a traditional server
Configuration (email, proxy, user agent, etc.) is done via the file *conf/conf.cfg*.
For example if you want to use pyAggr3g470r with Tor/Privoxy, you just have to set the value of
-*http_proxy* (most of the time: ``http_proxy = 127.0.0.1:8118``). Else leave the value blank.
+*http_proxy* (most of the time: *http_proxy = 127.0.0.1:8118**). Else leave the value blank.
Automatic updates
-----------------
-You can fetch new articles with [cron](https://en.wikipedia.org/wiki/Cron) and the script *fetch.py*.
-For example if you want to check for updates every 30 minutes, add this line to your cron rules (``crontab -e``):
+You can fetch new articles with `cron <https://en.wikipedia.org/wiki/Cron>`_ and the script *fetch.py*.
+For example if you want to check for updates every 30 minutes, add this line to your cron rules (*crontab -e*):
+
+.. code:: bash
*/30 * * * * cd ~/.pyaggr3g470r/ ; python fetch.py firstname.lastname@mail.com
You must give the email address you use to login to pyAggr3g470r.
+
Donation
========
@@ -97,12 +101,14 @@ If you wish and if you like *pyAggr3g470r*, you can donate via bitcoin
`1GVmhR9fbBeEh7rP1qNq76jWArDdDQ3otZ <https://blockexplorer.com/address/1GVmhR9fbBeEh7rP1qNq76jWArDdDQ3otZ>`_.
Thank you!
+
License
=======
`pyAggr3g470r <https://bitbucket.org/cedricbonhomme/pyaggr3g470r>`_
is under the `GNU Affero General Public License version 3 <https://www.gnu.org/licenses/agpl-3.0.html>`_.
+
Contact
=======
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index 99f84ac5..8e3d56a0 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -167,7 +167,8 @@ def home():
The home page lists most recent articles of all feeds.
"""
user = User.query.filter(User.email == g.user.email).first()
- return render_template('home.html', user=user, head_title="nb unread")
+ #return render_template('home.html', user=user, head_title="nb unread")
+ return render_template('home.html', user=user)
@app.route('/fetch/', methods=['GET'])
@app.route('/fetch/<feed_id>', methods=['GET'])
bgstack15