38 lines
1.6 KiB
Python
38 lines
1.6 KiB
Python
from django.conf import settings
|
|
from django.conf.urls import include, url
|
|
from django.contrib.staticfiles.urls import urlpatterns
|
|
from django.views.generic import RedirectView
|
|
|
|
from openslides.core import views as core_views
|
|
from openslides.mediafiles.views import protected_serve
|
|
from openslides.utils.plugins import get_all_plugin_urlpatterns
|
|
from openslides.utils.rest_api import router
|
|
|
|
|
|
urlpatterns += get_all_plugin_urlpatterns()
|
|
|
|
urlpatterns += [
|
|
url(r'^%s(?P<path>.*)$' % settings.MEDIA_URL.lstrip('/'), protected_serve, {'document_root': settings.MEDIA_ROOT}),
|
|
url(r'^(?P<url>.*[^/])$', RedirectView.as_view(url='/%(url)s/', permanent=True)),
|
|
url(r'^rest/', include(router.urls)),
|
|
url(r'^agenda/', include('openslides.agenda.urls')),
|
|
url(r'^motions/', include('openslides.motions.urls')),
|
|
url(r'^users/', include('openslides.users.urls')),
|
|
url(r'^core/', include('openslides.core.urls')),
|
|
# The old angular webclient
|
|
# TODO: Change me or at least my comment
|
|
url(r'^webclient/(?P<realm>site|projector)/$',
|
|
core_views.WebclientJavaScriptView.as_view(),
|
|
name='core_webclient_javascript'),
|
|
|
|
# View for the projectors are handled by angular.
|
|
url(r'^projector/(\d+)/$', core_views.ProjectorView.as_view()),
|
|
|
|
# Original view without resolutioncontrol for the projectors are handled by angular.
|
|
url(r'^real-projector/(\d+)/$', core_views.RealProjectorView.as_view()),
|
|
|
|
# Main entry point for all angular pages.
|
|
# Has to be the last entry in the urls.py
|
|
url(r'^.*$', core_views.IndexView.as_view(), name="index"),
|
|
]
|