-
Notifications
You must be signed in to change notification settings - Fork 0
/
urls.py
executable file
·21 lines (18 loc) · 1.27 KB
/
urls.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# app specific urls
from django.conf.urls.defaults import *
urlpatterns = patterns('geonode.datamanager.views',
url(r'^$', 'datamanager', name='datamanager'),
url(r'^createconnection$', 'dataconnection_create', name='dataconnection_create'),
url(r'^refreshall$', 'dataconnection_checkrefresh', name="dataconnection_checkrefresh"),
url(r'^(?P<id>[^/]*)$', 'dataconnection_details', name="dataconnection_details"),
url(r'^(?P<id>[^/]*)/edit$', 'dataconnection_edit', name="dataconnection_edit"),
url(r'^(?P<id>[^/]*)/refresh$', 'dataconnection_refresh', name="dataconnection_refresh"),
url(r'^(?P<id>[^/]*)/delete$', 'dataconnection_delete', name="dataconnection_delete"),
#url(r'^html$', 'search_page', {'template': 'search/search_content.html'}, name='search_content'),
#url(r'^api$', 'search_api', name='search_api'),
#url(r'^api/data$', 'search_api', kwargs={'type':'layer'}, name='layer_search_api'),
#url(r'^api/maps$', 'search_api', kwargs={'type':'map'}, name='maps_search_api'),
#url(r'^api/documents$', 'search_api', kwargs={'type':'document'}, name='document_search_api'),
#url(r'^api/authors$', 'author_list', name='search_api_author_list'),
#url(r'^form/$', 'advanced_search', name='advanced_search'),
)