1 # -*- coding: utf-8 -*-
3 # debug/urls.py: URL mappings for the debug application
4 # This file is part of the Manifold project.
7 # Jordan Augé <jordan.auge@lip6.fr>
8 # Copyright 2013, UPMC Sorbonne Universités / LIP6
10 # This program is free software; you can redistribute it and/or modify it under
11 # the terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 3, or (at your option) any later version.
14 # This program is distributed in the hope that it will be useful, but WITHOUT
15 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
19 # You should have received a copy of the GNU General Public License along with
20 # this program; see the file COPYING. If not, write to the Free Software
21 # Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 from django.conf.urls import patterns, include, url
24 from debug_platform.views import PlatformView
25 from portal.dashboardview import DashboardView
27 urlpatterns = patterns('',
28 #(r'platform/(?P<platform_name>[\w\.]+)/?$', 'debug.platform'),
29 url(r'^platform/?$', PlatformView.as_view(), name='debugplatform'),
30 #url(r'^platform/(?P<platform_name>[\w\.]+)/?$', PlatformView.as_view(), name='debug_platform'),