app/django/conf/urls/i18n.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 14 Feb 2009 14:10:56 +0000
changeset 1309 ba51a0cd311d
parent 54 03e267d67478
permissions -rw-r--r--
Fix a bug if you have no roles at all This could not happen currently, but might happen later on if a group is defined that does not have an 'anybody' membership. Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

urlpatterns = patterns('',
    (r'^setlang/$', 'django.views.i18n.set_language'),
)