22 lines
743 B
Python
22 lines
743 B
Python
#
|
|
# 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
|
|
#
|
|
|
|
from django.urls import path, include
|
|
from django.views.generic import RedirectView
|
|
|
|
# Setup the root url tree from /
|
|
|
|
urlpatterns = [
|
|
# Front page (note that we shouldn't specify namespace here since we will
|
|
# not be able to load django-auth/admin stuff (will probably work in Django>1.9)
|
|
path("", include("evennia.web.website.urls")),
|
|
# webclient
|
|
path("webclient/", include("evennia.web.webclient.urls")),
|
|
# favicon
|
|
path("favicon.ico", RedirectView.as_view(url="/media/images/favicon.ico", permanent=False)),
|
|
]
|