diff --git a/MANIFEST.in b/MANIFEST.in
index 885c1393..24c384ba 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,4 +1,2 @@
include setup.py
-recursive-include magnum_ui/bay/templates *
-recursive-include magnum_ui/baymodel/templates *
-recursive-include magnum_ui/static *
+recursive-include magnum_ui/templates *
diff --git a/README.rst b/README.rst
index 23ae6cdb..5286b5ce 100644
--- a/README.rst
+++ b/README.rst
@@ -41,7 +41,12 @@ Install Magnum UI with all dependencies in your virtual environment::
And enable it in Horizon::
- cp ../magnum-ui/enabled/_50_add_containers_dashboard.py openstack_dashboard/local/enabled
+ cp ../magnum-ui/enabled/_50_project_containers_panelgroup.py openstack_dashboard/local/enabled
+ cp ../magnum-ui/enabled/_51_project_containers_bays_panel.py openstack_dashboard/local/enabled
+ cp ../magnum-ui/enabled/_52_project_containers_baymodels_panel.py openstack_dashboard/local/enabled
+ cp ../magnum-ui/enabled/_53_project_containers_containers_panel.py openstack_dashboard/local/enabled
+
+
To run horizon with the newly enabled Magnum UI plugin run::
diff --git a/doc/source/index.rst b/doc/source/index.rst
index e302dd1f..5886fd91 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -41,7 +41,10 @@ Install Magnum UI with all dependencies in your virtual environment::
And enable it in Horizon::
- cp ../magnum-ui/enabled/_50_add_containers_dashboard.py openstack_dashboard/local/enabled
+ cp ../magnum-ui/enabled/_50_project_containers_panelgroup.py openstack_dashboard/local/enabled
+ cp ../magnum-ui/enabled/_51_project_containers_bays_panel.py openstack_dashboard/local/enabled
+ cp ../magnum-ui/enabled/_52_project_containers_baymodels_panel.py openstack_dashboard/local/enabled
+ cp ../magnum-ui/enabled/_53_project_containers_containers_panel.py openstack_dashboard/local/enabled
Release Notes
=============
diff --git a/enabled/_50_add_containers_dashboard.py b/enabled/_50_project_containers_panelgroup.py
similarity index 71%
rename from enabled/_50_add_containers_dashboard.py
rename to enabled/_50_project_containers_panelgroup.py
index 84964f7d..8137f6c0 100644
--- a/enabled/_50_add_containers_dashboard.py
+++ b/enabled/_50_project_containers_panelgroup.py
@@ -11,8 +11,15 @@
# 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.utils.translation import ugettext_lazy as _
+
+# The slug of the panel group to be added to HORIZON_CONFIG. Required.
+PANEL_GROUP = 'containers'
+# The display name of the PANEL_GROUP. Required.
+PANEL_GROUP_NAME = _('Containers')
+# The slug of the dashboard the PANEL_GROUP associated with. Required.
+PANEL_GROUP_DASHBOARD = 'project'
-DASHBOARD = 'containers'
ADD_INSTALLED_APPS = ['magnum_ui']
ADD_ANGULAR_MODULES = [
diff --git a/enabled/_51_project_containers_bays_panel.py b/enabled/_51_project_containers_bays_panel.py
new file mode 100644
index 00000000..00192534
--- /dev/null
+++ b/enabled/_51_project_containers_bays_panel.py
@@ -0,0 +1,23 @@
+# Copyright 2015 NEC Corporation, 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.
+
+# The slug of the panel to be added to HORIZON_CONFIG. Required.
+PANEL = 'bays'
+# The slug of the panel group the PANEL is associated with.
+PANEL_GROUP = 'containers'
+# The slug of the dashboard the PANEL associated with. Required.
+PANEL_DASHBOARD = 'project'
+
+# Python panel class of the PANEL to be added.
+ADD_PANEL = 'magnum_ui.content.bays.panel.Bays'
diff --git a/enabled/_52_project_containers_baymodels_panel.py b/enabled/_52_project_containers_baymodels_panel.py
new file mode 100644
index 00000000..0370e13a
--- /dev/null
+++ b/enabled/_52_project_containers_baymodels_panel.py
@@ -0,0 +1,23 @@
+# Copyright 2015 NEC Corporation, 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.
+
+# The slug of the panel to be added to HORIZON_CONFIG. Required.
+PANEL = 'baymodels'
+# The slug of the panel group the PANEL is associated with.
+PANEL_GROUP = 'containers'
+# The slug of the dashboard the PANEL associated with. Required.
+PANEL_DASHBOARD = 'project'
+
+# Python panel class of the PANEL to be added.
+ADD_PANEL = 'magnum_ui.content.baymodels.panel.BayModels'
diff --git a/enabled/_53_project_containers_containers_panel.py b/enabled/_53_project_containers_containers_panel.py
new file mode 100644
index 00000000..c4c1fce1
--- /dev/null
+++ b/enabled/_53_project_containers_containers_panel.py
@@ -0,0 +1,23 @@
+# Copyright 2015 NEC Corporation, 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.
+
+# The slug of the panel to be added to HORIZON_CONFIG. Required.
+PANEL = 'bays.containers'
+# The slug of the panel group the PANEL is associated with.
+PANEL_GROUP = 'containers'
+# The slug of the dashboard the PANEL associated with. Required.
+PANEL_DASHBOARD = 'project'
+
+# Python panel class of the PANEL to be added.
+ADD_PANEL = 'magnum_ui.content.bays.containers.panel.Containers'
diff --git a/magnum_ui/containers/tests.py b/magnum_ui/containers/tests.py
deleted file mode 100644
index 66bb2307..00000000
--- a/magnum_ui/containers/tests.py
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 2015 Cisco Systems, 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.core.urlresolvers import reverse
-import horizon
-from magnum_ui.containers.panel import Containers as containers_panel
-from openstack_dashboard.test import helpers as test
-
-
-class ContainerTests(test.TestCase):
- def test_registration(self):
- dashboard = horizon.get_dashboard('containers')
- registered_panel = dashboard.get_panel('containers')
- self.assertEqual(registered_panel.slug, containers_panel.slug)
-
- def test_index(self):
- index = reverse('horizon:containers:containers:index')
- res = self.client.get(index)
- self.assertTemplateUsed(res, 'containers/containers/index.html')
diff --git a/magnum_ui/bay/__init__.py b/magnum_ui/content/__init__.py
similarity index 100%
rename from magnum_ui/bay/__init__.py
rename to magnum_ui/content/__init__.py
diff --git a/magnum_ui/baymodel/__init__.py b/magnum_ui/content/baymodels/__init__.py
similarity index 100%
rename from magnum_ui/baymodel/__init__.py
rename to magnum_ui/content/baymodels/__init__.py
diff --git a/magnum_ui/baymodel/panel.py b/magnum_ui/content/baymodels/panel.py
similarity index 84%
rename from magnum_ui/baymodel/panel.py
rename to magnum_ui/content/baymodels/panel.py
index 098ad46e..8694c471 100644
--- a/magnum_ui/baymodel/panel.py
+++ b/magnum_ui/content/baymodels/panel.py
@@ -13,14 +13,9 @@
# under the License.
from django.utils.translation import ugettext_lazy as _
-from magnum_ui import dashboard
-
import horizon
-class BayModel(horizon.Panel):
+class BayModels(horizon.Panel):
name = _("Bay Models")
- slug = "baymodel"
-
-
-dashboard.Containers.register(BayModel)
+ slug = "baymodels"
diff --git a/magnum_ui/baymodel/tests.py b/magnum_ui/content/baymodels/tests.py
similarity index 100%
rename from magnum_ui/baymodel/tests.py
rename to magnum_ui/content/baymodels/tests.py
diff --git a/magnum_ui/baymodel/urls.py b/magnum_ui/content/baymodels/urls.py
similarity index 93%
rename from magnum_ui/baymodel/urls.py
rename to magnum_ui/content/baymodels/urls.py
index b923e7f6..1fae56b1 100644
--- a/magnum_ui/baymodel/urls.py
+++ b/magnum_ui/content/baymodels/urls.py
@@ -14,8 +14,7 @@
from django.conf.urls import patterns
from django.conf.urls import url
-
-from magnum_ui.baymodel.views import IndexView
+from magnum_ui.content.baymodels.views import IndexView
urlpatterns = patterns(
diff --git a/magnum_ui/baymodel/views.py b/magnum_ui/content/baymodels/views.py
similarity index 87%
rename from magnum_ui/baymodel/views.py
rename to magnum_ui/content/baymodels/views.py
index c1106919..e69af348 100644
--- a/magnum_ui/baymodel/views.py
+++ b/magnum_ui/content/baymodels/views.py
@@ -14,9 +14,7 @@
from horizon import views
-from magnum_ui.api.rest import magnum # noqa
-
class IndexView(views.APIView):
# A very simple class-based view...
- template_name = 'containers/baymodel/index.html'
+ template_name = 'baymodels/index.html'
diff --git a/magnum_ui/containers/__init__.py b/magnum_ui/content/bays/__init__.py
similarity index 100%
rename from magnum_ui/containers/__init__.py
rename to magnum_ui/content/bays/__init__.py
diff --git a/magnum_ui/static/dashboard/containers/bay/bay.scss b/magnum_ui/content/bays/containers/__init__.py
similarity index 100%
rename from magnum_ui/static/dashboard/containers/bay/bay.scss
rename to magnum_ui/content/bays/containers/__init__.py
diff --git a/magnum_ui/containers/panel.py b/magnum_ui/content/bays/containers/panel.py
similarity index 88%
rename from magnum_ui/containers/panel.py
rename to magnum_ui/content/bays/containers/panel.py
index 46d7d663..598fc340 100644
--- a/magnum_ui/containers/panel.py
+++ b/magnum_ui/content/bays/containers/panel.py
@@ -14,12 +14,8 @@
from django.utils.translation import ugettext_lazy as _
import horizon
-from magnum_ui import dashboard
class Containers(horizon.Panel):
name = _("Containers")
- slug = "containers"
-
-
-dashboard.Containers.register(Containers)
+ slug = "bays.containers"
diff --git a/magnum_ui/content/bays/containers/tests.py b/magnum_ui/content/bays/containers/tests.py
new file mode 100644
index 00000000..00105503
--- /dev/null
+++ b/magnum_ui/content/bays/containers/tests.py
@@ -0,0 +1,36 @@
+# Copyright 2015 Cisco Systems, 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.core.urlresolvers import reverse
+# import horizon
+# from magnum_ui.containers.containers.panel import Containers
+from openstack_dashboard.test import helpers as test
+
+
+class ContainerTests(test.TestCase):
+ def test_me(self):
+ self.assertTrue(1 + 1 == 2)
+
+# FIXME(shu-mutou): this tests seems not to work in new Horizon's plugin
+# registration system
+# def test_registration(self):
+# dashboard = horizon.get_dashboard('project')
+# registered_panel = dashboard.get_panel('containers.containers')
+# self.assertEqual(registered_panel.slug, Containers.slug)
+
+# def test_index(self):
+# index = reverse('horizon:bays:containers:index')
+# res = self.client.get(index)
+# self.assertTemplateUsed(
+# res, 'project/bays/containers/index.html')
diff --git a/magnum_ui/containers/urls.py b/magnum_ui/content/bays/containers/urls.py
similarity index 79%
rename from magnum_ui/containers/urls.py
rename to magnum_ui/content/bays/containers/urls.py
index 19a90bdd..f4313c75 100644
--- a/magnum_ui/containers/urls.py
+++ b/magnum_ui/content/bays/containers/urls.py
@@ -14,12 +14,11 @@
from django.conf.urls import patterns
from django.conf.urls import url
-
-from magnum_ui.containers.views import IndexView
+from magnum_ui.content.bays.containers import views
urlpatterns = patterns(
'',
- url(r'^[0-9a-f\-]{36}$', IndexView.as_view(), name='detail'),
- url(r'^$', IndexView.as_view(), name='index'),
+ url(r'^[0-9a-f\-]{36}$', views.IndexView.as_view(), name='detail'),
+ url(r'^$', views.IndexView.as_view(), name='index'),
)
diff --git a/magnum_ui/containers/views.py b/magnum_ui/content/bays/containers/views.py
similarity index 86%
rename from magnum_ui/containers/views.py
rename to magnum_ui/content/bays/containers/views.py
index bf811ec8..5cbda1b4 100644
--- a/magnum_ui/containers/views.py
+++ b/magnum_ui/content/bays/containers/views.py
@@ -14,8 +14,6 @@
from horizon import views
-from magnum_ui.api.rest import magnum # noqa
-
class IndexView(views.APIView):
- template_name = 'containers/containers/index.html'
+ template_name = 'bays.containers/index.html'
diff --git a/magnum_ui/bay/panel.py b/magnum_ui/content/bays/panel.py
similarity index 86%
rename from magnum_ui/bay/panel.py
rename to magnum_ui/content/bays/panel.py
index 41322cf5..3879fe15 100644
--- a/magnum_ui/bay/panel.py
+++ b/magnum_ui/content/bays/panel.py
@@ -13,14 +13,9 @@
# under the License.
from django.utils.translation import ugettext_lazy as _
-from magnum_ui import dashboard
-
import horizon
-class Bay(horizon.Panel):
+class Bays(horizon.Panel):
name = _("Bays")
- slug = "bay"
-
-
-dashboard.Containers.register(Bay)
+ slug = "bays"
diff --git a/magnum_ui/bay/tests.py b/magnum_ui/content/bays/tests.py
similarity index 100%
rename from magnum_ui/bay/tests.py
rename to magnum_ui/content/bays/tests.py
diff --git a/magnum_ui/bay/urls.py b/magnum_ui/content/bays/urls.py
similarity index 78%
rename from magnum_ui/bay/urls.py
rename to magnum_ui/content/bays/urls.py
index 544c3801..4e96a6ed 100644
--- a/magnum_ui/bay/urls.py
+++ b/magnum_ui/content/bays/urls.py
@@ -12,14 +12,16 @@
# License for the specific language governing permissions and limitations
# under the License.
+from django.conf.urls import include
from django.conf.urls import patterns
from django.conf.urls import url
-
-from magnum_ui.bay.views import IndexView
+from magnum_ui.content.bays.containers import urls as containers_urls
+from magnum_ui.content.bays.views import IndexView
urlpatterns = patterns(
'',
+ url(r'^containers/', include(containers_urls, namespace='containers')),
url(r'^[0-9a-f\-]{36}$', IndexView.as_view(), name='detail'),
url(r'^$', IndexView.as_view(), name='index'),
)
diff --git a/magnum_ui/bay/views.py b/magnum_ui/content/bays/views.py
similarity index 94%
rename from magnum_ui/bay/views.py
rename to magnum_ui/content/bays/views.py
index aed7c7c5..4aa5ea3d 100644
--- a/magnum_ui/bay/views.py
+++ b/magnum_ui/content/bays/views.py
@@ -19,4 +19,4 @@ from magnum_ui.api.rest import magnum # noqa
class IndexView(views.APIView):
# A very simple class-based view...
- template_name = 'containers/bay/index.html'
+ template_name = 'bays/index.html'
diff --git a/magnum_ui/dashboard.py b/magnum_ui/dashboard.py
deleted file mode 100644
index d2591df8..00000000
--- a/magnum_ui/dashboard.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2015 Cisco Systems.
-#
-# 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.utils.translation import ugettext_lazy as _
-
-import horizon
-
-
-class Containers(horizon.Dashboard):
- name = _("Containers")
- slug = "containers"
- panels = ('bay', 'baymodel', 'containers')
- default_panel = 'bay'
-
-horizon.register(Containers)
diff --git a/magnum_ui/static/dashboard/containers/baymodel/baymodel.module.js b/magnum_ui/static/dashboard/containers/baymodels/baymodels.module.js
similarity index 88%
rename from magnum_ui/static/dashboard/containers/baymodel/baymodel.module.js
rename to magnum_ui/static/dashboard/containers/baymodels/baymodels.module.js
index a720e4c2..cdbf1199 100644
--- a/magnum_ui/static/dashboard/containers/baymodel/baymodel.module.js
+++ b/magnum_ui/static/dashboard/containers/baymodels/baymodels.module.js
@@ -19,7 +19,7 @@
/**
* @ngdoc overview
- * @name horizon.dashboard.containers.baymodel
+ * @name horizon.dashboard.containers.baymodels
* @ngModule
*
* @description
@@ -27,6 +27,5 @@
* panel
*/
angular
- .module('horizon.dashboard.containers.baymodel', []);
-
+ .module('horizon.dashboard.containers.baymodels', []);
})();
diff --git a/magnum_ui/static/dashboard/containers/baymodel/baymodel.module.spec.js b/magnum_ui/static/dashboard/containers/baymodels/baymodels.module.spec.js
similarity index 89%
rename from magnum_ui/static/dashboard/containers/baymodel/baymodel.module.spec.js
rename to magnum_ui/static/dashboard/containers/baymodels/baymodels.module.spec.js
index fce813d7..bc40a8e0 100644
--- a/magnum_ui/static/dashboard/containers/baymodel/baymodel.module.spec.js
+++ b/magnum_ui/static/dashboard/containers/baymodels/baymodels.module.spec.js
@@ -16,9 +16,9 @@
(function() {
'use strict';
- describe('horizon.dashboard.containers.baymodel', function() {
+ describe('horizon.dashboard.containers.baymodels', function() {
it('should exist', function() {
- expect(angular.module('horizon.dashboard.containers.baymodel')).toBeDefined();
+ expect(angular.module('horizon.dashboard.containers.baymodels')).toBeDefined();
});
});
diff --git a/magnum_ui/static/dashboard/containers/bay/create/modal.spec.js b/magnum_ui/static/dashboard/containers/baymodels/baymodels.scss
similarity index 100%
rename from magnum_ui/static/dashboard/containers/bay/create/modal.spec.js
rename to magnum_ui/static/dashboard/containers/baymodels/baymodels.scss
diff --git a/magnum_ui/static/dashboard/containers/baymodel/detail/detail.controller.js b/magnum_ui/static/dashboard/containers/baymodels/detail/detail.controller.js
similarity index 96%
rename from magnum_ui/static/dashboard/containers/baymodel/detail/detail.controller.js
rename to magnum_ui/static/dashboard/containers/baymodels/detail/detail.controller.js
index 4df956bc..2564c9ce 100644
--- a/magnum_ui/static/dashboard/containers/baymodel/detail/detail.controller.js
+++ b/magnum_ui/static/dashboard/containers/baymodels/detail/detail.controller.js
@@ -17,7 +17,7 @@
"use strict";
angular
- .module('horizon.dashboard.containers')
+ .module('horizon.dashboard.containers.baymodels')
.controller('BayModelDetailController', BayModelDetailController);
BayModelDetailController.$inject = [
diff --git a/magnum_ui/static/dashboard/containers/baymodel/detail/detail.html b/magnum_ui/static/dashboard/containers/baymodels/detail/detail.html
similarity index 93%
rename from magnum_ui/static/dashboard/containers/baymodel/detail/detail.html
rename to magnum_ui/static/dashboard/containers/baymodels/detail/detail.html
index 23f2ce23..4dfcaf08 100644
--- a/magnum_ui/static/dashboard/containers/baymodel/detail/detail.html
+++ b/magnum_ui/static/dashboard/containers/baymodels/detail/detail.html
@@ -1,7 +1,7 @@