Statistics
| Branch: | Revision:

root / urls.py @ 63:cf646349ba3e

History | View | Annotate | Download (439 Bytes)

1 0:b88aaf284554 apollon
from django.conf.urls.defaults import *
2 0:b88aaf284554 apollon
3 0:b88aaf284554 apollon
urlpatterns = patterns('',
4 63:cf646349ba3e apollon
    (r'^support/?$', 'grnet_aai.aai.views.support'),
5 63:cf646349ba3e apollon
    (r'^help/?$', 'grnet_aai.aai.views.support',{ 'mode': 'help' }),
6 63:cf646349ba3e apollon
    (r'^debug/?$', 'grnet_aai.aai.views.debug'),
7 63:cf646349ba3e apollon
    (r'^/?$', 'grnet_aai.aai.views.index'),
8 63:cf646349ba3e apollon
    (r'^wayf/?$', 'grnet_aai.wayf.views.wayf'),
9 63:cf646349ba3e apollon
    (r'^setlanguage/(.*)', 'grnet_aai.aai.views.setlanguage'),
10 63:cf646349ba3e apollon
    (r'.*', 'grnet_aai.aai.views.static'),
11 0:b88aaf284554 apollon
)