Skip to content

Commit 7e2e007

Browse files
committed
update doc, remove /timeside/ URL prefix (WARNING), cleanup
1 parent 0303c7e commit 7e2e007

30 files changed

Lines changed: 161 additions & 2942 deletions

.readthedocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ build:
3939
- libavresample-dev
4040
- libcairo2-dev
4141
- libyaml-dev
42+
- libhdf5-dev
4243
- vamp-examples
4344
- vamp-plugin-sdk
4445

app/urls.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from django.conf.urls import include, url
22
from django.contrib.auth.views import LoginView, LogoutView
3-
from django.views.generic import RedirectView
43
import django.contrib.auth.urls
54
# Uncomment the next two lines to enable the admin:
65
from django.contrib import admin
@@ -11,8 +10,7 @@
1110
admin.autodiscover()
1211

1312
urlpatterns = [
14-
url(r'^$', RedirectView.as_view(url='/timeside/')),
15-
url(r'^timeside/', include('timeside.server.urls')),
13+
url(r'^', include('timeside.server.urls')),
1614

1715
# Uncomment the admin/doc line below to enable admin documentation:
1816
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

0 commit comments

Comments
 (0)