Mercurial > public > sg101
view gpp/smiley/urls.py @ 296:0eed8161ca39
Fixing #138. Shoutbox scroller breaks down if there aren't at least 2 things to scroll. Added some dummy shouts on the client side if the shout database is empty.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 09 Jan 2011 20:53:00 +0000 |
parents | 3ae999b0c53b |
children | ddd69a8e07c7 |
line wrap: on
line source
""" Urls for the Smiley application. """ from django.conf.urls.defaults import * urlpatterns = patterns('smiley.views', url(r'^farm/$', 'farm', name='smiley-farm'), url(r'^farm/extra/$', 'farm', kwargs={'extra': True}, name='smiley-farm_extra'), )