Srikanth Vavilapalli | 1725e49 | 2014-12-01 17:50:52 -0800 | [diff] [blame^] | 1 | # |
| 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 | |
| 17 | from django.conf.urls.defaults import * |
| 18 | import os |
| 19 | |
| 20 | # Note: Looking for the views for top level tabs? Theya re added automagically in the global urls.py |
| 21 | |
| 22 | urlpatterns= patterns('', |
| 23 | # Serve static files (for development only - this should be a real webserver for production.) |
| 24 | (r'^static/(?P<path>.*)$', 'django.views.static.serve', \ |
| 25 | {'document_root': os.path.join(os.path.dirname(__file__),'static')}), |
| 26 | (r'^img/(?P<path>.*)$', 'django.views.static.serve', \ |
| 27 | {'document_root': os.path.join(os.path.dirname(__file__),'img')}), |
| 28 | ) |
| 29 | |