aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2012-12-05 21:36:04 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2012-12-05 21:36:04 +0100
commit96ece63c936f8b7d3f52590278be8e8cd4b51219 (patch)
treea4db77b1d922881d1c45d4c6ffde697eef8738d1 /source
parentNew template for confirmation message. (diff)
downloadnewspipe-96ece63c936f8b7d3f52590278be8e8cd4b51219.tar.gz
newspipe-96ece63c936f8b7d3f52590278be8e8cd4b51219.tar.bz2
newspipe-96ece63c936f8b7d3f52590278be8e8cd4b51219.zip
Updated comments.
Diffstat (limited to 'source')
-rwxr-xr-xsource/pyAggr3g470r.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index eeef1ef6..9bc53b3e 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -28,7 +28,7 @@ __license__ = "GPLv3"
#
# This file contains the "Root" class which describes
-# all pages of pyAggr3g470r. These pages are:
+# all pages (views) of pyAggr3g470r. These pages are:
# - main page;
# - management;
# - history;
@@ -36,6 +36,8 @@ __license__ = "GPLv3"
# - notifications;
# - unread;
# - feed summary.
+# Templates are described in ./templates with the Mako
+# template library.
#
import os
@@ -874,4 +876,4 @@ if __name__ == '__main__':
root = pyAggr3g470r()
root.favicon_ico = cherrypy.tools.staticfile.handler(filename=os.path.join(conf.path + "/img/favicon.png"))
cherrypy.config.update({'error_page.404': error_404})
- cherrypy.quickstart(root, "/" ,config=conf.path + "/cfg/cherrypy.cfg") \ No newline at end of file
+ cherrypy.quickstart(root, "/" ,config=conf.path + "/cfg/cherrypy.cfg")
bgstack15