Updated the game template, renaming subdir typeclasses rather than types since the latter collides with the python library module of the same name.
This commit is contained in:
parent
3fbc9acc51
commit
c96c5a1fc7
112 changed files with 456 additions and 229 deletions
1
game_template/web/examples/__init__.py
Normal file
1
game_template/web/examples/__init__.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
__author__ = 'kelketek'
|
||||
28
game_template/web/examples/urls.py
Normal file
28
game_template/web/examples/urls.py
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
from django.conf.urls import url, include
|
||||
|
||||
from src.web.urls import urlpatterns
|
||||
|
||||
#
|
||||
# File that determines what each URL points to. This uses _Python_ regular
|
||||
# expressions, not Perl's.
|
||||
#
|
||||
# See:
|
||||
# http://diveintopython.org/regular_expressions/street_addresses.html#re.matching.2.3
|
||||
#
|
||||
|
||||
# Copy this file into your web directory in gamesrc, and add this line to settings.py:
|
||||
# ROOT_URLCONF = 'game.gamesrc.web.urls'
|
||||
|
||||
# Add your own URL patterns to the patterns variable below, and then change
|
||||
#
|
||||
# These are Django URL patterns, so you should look up how to use these at
|
||||
# https://docs.djangoproject.com/en/1.6/topics/http/urls/
|
||||
|
||||
# Follow the full Django tutorial to learn how to create web views for Evennia.
|
||||
# https://docs.djangoproject.com/en/1.6/intro/tutorial01/
|
||||
|
||||
patterns = [
|
||||
# url(r'/desired/url/', view, name='example'),
|
||||
]
|
||||
|
||||
urlpatterns = patterns + urlpatterns
|
||||
Loading…
Add table
Add a link
Reference in a new issue