diff --git a/requirements.txt b/requirements.txt index 7db88e1..7a74c5e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,21 +1,3 @@ pbr>=0.6,!=0.7,<1.0 -# Horizon Core Requirements -django>=1.4,<1.6 -django_compressor>=1.3 -django_openstack_auth>=1.1.3 -eventlet>=0.13.0 -kombu>=2.4.8 -iso8601>=0.1.8 -netaddr>=0.7.6 -python-cinderclient>=1.0.6 -python-glanceclient>=0.9.0 -python-heatclient>=0.2.3 -python-keystoneclient>=0.4.1 -python-novaclient>=2.15.0 -python-neutronclient>=2.3.0,<3 -python-swiftclient>=1.5 -python-ceilometerclient>=1.0.6 -pytz>=2010h -# Horizon Utility Requirements -# for SECURE_KEY generation -lockfile>=0.8 +horizon +tuskar-ui diff --git a/setup.cfg b/setup.cfg index b95ecd1..8f21fb4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [metadata] -name = tuskar-sat-ui +name = tuskar-ui-extras version = 2014.1 -summary = Tuskar Management Dashboard Satellite Plugin +summary = Tuskar Management Dashboard Extra Plugins description-file = README.rst author = OpenStack @@ -30,6 +30,7 @@ setup-hooks = [files] packages = tuskar_sat_ui + tuskar_boxes [build_sphinx] all_files = 1 diff --git a/tuskar_boxes/__init__.py b/tuskar_boxes/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tuskar_boxes/panel.py b/tuskar_boxes/panel.py new file mode 100644 index 0000000..fb5e303 --- /dev/null +++ b/tuskar_boxes/panel.py @@ -0,0 +1,27 @@ +# -*- coding: utf8 -*- +# +# 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 + +from tuskar_ui.infrastructure import dashboard + + +class Overview(horizon.Panel): + name = _("Overview") + slug = "overview" + + +dashboard.Infrastructure.register(Overview)