diff options
-rw-r--r-- | templates/public/irc.html | 5 | ||||
-rw-r--r-- | urls.py | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/templates/public/irc.html b/templates/public/irc.html index cbd00daa..9cfed49a 100644 --- a/templates/public/irc.html +++ b/templates/public/irc.html @@ -30,7 +30,10 @@ <td>Discussion (Spanish)</td> </tr><tr> <td><strong>#archlinux.br</strong></td> - <td>Discussion (Brazilian Community)</td> + <td>Discussion (Brazilian)</td> + </tr><tr> + <td><strong>#archlinux-it</strong></td> + <td>Discussion (Italian)</td> </tr> </table> </div> @@ -1,6 +1,7 @@ from django.conf.urls.defaults import * from archlinux.news.models import News from archlinux.feeds import PackageFeed, NewsFeed +from django.views.decorators.cache import cache_page feeds = { 'packages': PackageFeed, @@ -8,7 +9,7 @@ feeds = { } urlpatterns = patterns('', - (r'^media/(.*)$', 'django.views.static.serve', {'document_root': '/home/jvinet/shared/work/archlinux/media'}), + #(r'^media/(.*)$', 'django.views.static.serve', {'document_root': '/home/jvinet/shared/work/archlinux/media'}), # Dynamic Stuff (r'^packages/flag/(\d+)/$', 'archlinux.packages.views.flag'), |