Reshuffling the Evennia package into the new template paradigm.
This commit is contained in:
parent
2846e64833
commit
2b3a32e447
371 changed files with 17250 additions and 304 deletions
1
game_template/server/web/examples/__init__.py
Normal file
1
game_template/server/web/examples/__init__.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
__author__ = 'kelketek'
|
||||
28
game_template/server/web/examples/urls.py
Normal file
28
game_template/server/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