diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2007-10-12 02:57:19 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2007-10-12 02:57:19 +0000 |
commit | e6304c5121be62a41cb86cd9f51166aca6471c34 (patch) | |
tree | ba8e97642ad616698665ce366631ca38076d5808 | |
parent | Live site settings. (diff) | |
parent | Add category link. (diff) | |
download | packages-3-e6304c5121be62a41cb86cd9f51166aca6471c34.tar.gz packages-3-e6304c5121be62a41cb86cd9f51166aca6471c34.tar.bz2 packages-3-e6304c5121be62a41cb86cd9f51166aca6471c34.zip |
Merge branch 'finch' into live
-rw-r--r-- | web/controller.py | 2 | ||||
-rw-r--r-- | web/templates/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/web/controller.py b/web/controller.py index fd8c530..d7b2b3e 100644 --- a/web/controller.py +++ b/web/controller.py @@ -209,7 +209,7 @@ def setup_server(): # if something goes wrong, we get a log. cherrypy.config.update({'environment': 'production', 'log.screen': False, - 'log.error_file': 'site.log', + 'log.error_file': '/tmp/cherrypy_packages2.gentoo.log', 'show_tracebacks': False, 'tools.caching.on': True, 'tools.caching.cache_class': cherrypy.lib.caching.MemoryCache, diff --git a/web/templates/index.html b/web/templates/index.html index 78f0105..0494f29 100644 --- a/web/templates/index.html +++ b/web/templates/index.html @@ -60,7 +60,7 @@ ${pkg.meta.commitmsg} <td class="forums" rowspan="2"><a href="${pkg.bugzilla}">Forums</a></td> </tr> <tr> - <td class="category">${pkg.meta.atom.category}</td> + <td class="category"><a href="/category/${pkg.meta.atom.category}">${pkg.meta.atom.category}</a></td> <td class="license">${HTML(pkg.license)}</td> </tr> </table> |