# Copyright (c) 2014 Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. from django.conf.urls import patterns, url from muranodashboard.catalog import views from muranodashboard.catalog import image from muranodashboard.dynamic_ui import services VIEW_MOD = 'muranodashboard.catalog.views' wizard_view = views.Wizard.as_view( services.get_app_forms, condition_dict=services.condition_getter) urlpatterns = patterns( VIEW_MOD, url(r'^index$', views.IndexView.as_view(), name='index'), url(r'^index/(?P[^/]+)/(?P\d+)$', views.IndexView.as_view(), name='index'), url(r'^switch_environment/(?P[^/]+)$', 'switch', name='switch_env'), url(r'^add/(?P[^/]+)/(?P[^/]+)$', wizard_view, name='add'), url(r'^add/(?P[^/]+)/(?P[^/]+)/' r'(?P[^/]+)/(?P[^/]+)$', wizard_view, name='add_many'), url(r'^quick-add/(?P[^/]+)$', 'quick_deploy', name='quick_add'), url(r'^details/(?P[^/]+)$', views.AppDetailsView.as_view(), name='application_details'), url(r'^images/(?P[^/]*)', image.get_image, name="images") )