blob: 0ba1f5fb5d02413d0ceb44277fb41cf135faeb78 [file] [log] [blame]
srikanth116e6e82014-08-19 07:22:37 -07001#
2# Copyright (c) 2013 Big Switch Networks, Inc.
3#
4# Licensed under the Eclipse Public License, Version 1.0 (the
5# "License"); you may not use this file except in compliance with the
6# License. You may obtain a copy of the License at
7#
8# http://www.eclipse.org/legal/epl-v10.html
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13# implied. See the License for the specific language governing
14# permissions and limitations under the License.
15#
16
17from django.conf.urls.defaults import *
18import os
19
20# Add the URLs that you need here e.g.:
21
22urlpatterns = patterns('',
23# (r'^tab_mytab/', 'views.mytab'),
24)
25
26# Uncomment this if you have bundeled in static resources (e.g. javascript) or images
27# They will be served from:
28# app-name/static
29# app-name/img
30
31urlpatterns += patterns('',
32 (r'^static/(?P<path>.*)$', 'django.views.static.serve', \
33 {'document_root': os.path.join(os.path.dirname(__file__),'static')}),
34# (r'^img/(?P<path>.*)$', 'django.views.static.serve', \
35# {'document_root': os.path.join(os.path.dirname(__file__),'img')}),
36)
37
38urlpatterns += patterns('logs.views',
39(r'^rest/v1/controller-log-data-all/(?P<cluster>[A-Za-z0-9_:.\-]+)/(?P<controller>[A-Za-z0-9_\.\-]+)/?$', 'controller_log_data_all'),
40(r'^rest/v1/controller-log-data-controller/(?P<cluster>[A-Za-z0-9_:.\-]+)/(?P<controller>[A-Za-z0-9_\.\-]+)/?$', 'controller_log_data_controller'),
41(r'^rest/v1/controller-log-data-db/(?P<cluster>[A-Za-z0-9_:.\-]+)/(?P<controller>[A-Za-z0-9_\.\-]+)/?$', 'controller_log_data_db'),
42(r'^rest/v1/controller-log-data-sdncon/(?P<cluster>[A-Za-z0-9_:.\-]+)/(?P<controller>[A-Za-z0-9_\.\-]+)/?$', 'controller_log_data_sdncon'),
43)
44