forked from scattering/dataflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
urls.py
36 lines (28 loc) · 1.12 KB
/
urls.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from django.conf.urls.defaults import patterns, include, url
#from tracks.views import xhr_test, mytest, home
# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()
## PULLS VIEWS FROM TRACKS/VIEWS
## WE WOULD LIKE IT TO PULL FROM APPS/TRACKS/VIEWS
import ROOT_URL
urlpatterns = patterns(ROOT_URL.REPO_ROOT + '.apps.tracks.views',
('^hello/$', 'xhr_test'),
('^test/$','mytest'),
('^listWirings/$', 'listWirings'),
# Wiring editor display urls
('^editor/$', 'displayEditor'),
('^editor/langSelect/$', 'languageSelect'),
# Wiring editor adapter urls
('^editor/listWirings/$', 'listWirings'),
('^editor/saveWiring/$', 'saveWiring'),
('^editor/runReduction/$', 'runReduction'),
('', 'home'),
# Examples:
# url(r'^$', 'dataflow.views.home', name='home'),
# url(r'^dataflow/', include('dataflow.foo.urls')),
# Uncomment the admin/doc line below to enable admin documentation:
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
# url(r'^admin/', include(admin.site.urls)),
)