~widelands-dev/widelands-website/trunk

147 by Holger Rapp
Added a first version of a screenshot application
1
#!/usr/bin/env python -tt
2
# encoding: utf-8
404.2.2 by franku
test install
3
from django.conf.urls import *
147 by Holger Rapp
Added a first version of a screenshot application
4
5
urlpatterns = patterns('',
438.1.6 by franku
run the script
6
                       # 3rd party, modified for widelands
7
                       (r'^wiki/', include('wiki.urls')),
8
                       (r'^forum/', include('pybb.urls')),
9
10
                       # WL specific:
11
                       url(r'^$', lambda *args, **kwargs: None, name='mainpage'),
12
                       url(r'^webchat/', include('wlwebchat.urls')),
13
                       url(r'^maps/', include('wlmaps.urls')),
14
                       url(r'^screenshots/', include('wlscreens.urls')),
15
                       url(r'^wlscreens/', include('wlscreens.urls')),
16
                       )