~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to online_help/urls.py

  • Committer: Holger Rapp
  • Date: 2009-02-26 22:38:49 UTC
  • Revision ID: sirver@kallisto.local-20090226223849-1563ij0uuw0lz0zu
First version of widelands online help

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python -tt
 
2
# encoding: utf-8
 
3
#
 
4
# File: ../../urls.py
 
5
#
 
6
# Created by Holger Rapp on 2009-02-26.
 
7
# Copyright (c) 2009 HolgerRapp@gmx.net. All rights reserved.
 
8
#
 
9
# Last Modified: $Date$
 
10
#
 
11
 
 
12
from django.conf.urls.defaults import *
 
13
from views import * 
 
14
 
 
15
urlpatterns= patterns('',
 
16
    url(r'^wares/$', wares, name="help_wares"),
 
17
    url(r'^(?P<tribe>\w+)/buildings/$', buildings, name="help_buildings"),
 
18
)