<dt> and <dd> tags in hz-detail-row.html contains no translatable strings.
They are unnecessary.
Change-Id: Ic0a687fb3266b02de7dab3e4079c391a45cf95d7
Closes-Bug: #1624730
Releasenote translation publishing is being prepared.
'locale_dirs' needs to be defined in conf.py to generate
translated version of the release notes.
Change-Id: I674deb86cc15ab8898ee87c5a0744d9edb3a76ee
Including the contrib enabled files was causing a ton of warnings in the
test runs about the 'Developer' dashboard not being registered. We
should remove it from test settings; we can also disable the
theme_preview test (which didn't have much value anyway) as it is
covered by a check in developer/tests.py
Change-Id: Ib03a13f289eca6a7565a7a6f1a9a3ab6c90d56c9
Closes-Bug: 1630298
When creating a folder in swift ui with the following
name format "f1;/f2" swift ui is not able to pick the
objects/floders for "f1;" and when this folder is
selected the ui ends in an infinite loop of "f1;"
folders
Change-Id: I8e2d8fdb5fb3b67dfd14bbdd1b100f13e84222eb
Closes-Bug: #1624546
Sample policy file is out of sync with Glance repo; we should update it
to make dev/deployer work easier.
Change-Id: I4891e13a387729660e43f476796731937da0aa6e
We should finally get rid of run_tests and just move to tox. Adds a
deprecation warning to give this change more visibility.
Change-Id: I4cfd8f031e49ae302ceee18496cc68bcec42c821
Implements: blueprint enhance-tox
The browser support page should be part of the docs. This change
moves the content of the wiki page into its own file that is accessible
from the index. References to the wiki page have consequently been
removed from the FAQ.
Change-Id: I340203771cb2b0dfa534ad3f8926e599a727e1e9
Partial-Bug: #1625514
This change filters out ports presented to the topology view which
are connected to networks which are not visible to the tenant. Such
ports can be present when an admin creates an instance and ties and instance
into two networks.
Change-Id: Ib0e7ea38b42b580a65455c344f100e5aad67954e
Closes-bug: #1494358
While using openstack_dashboard/test for the path of SECRET_KEY works
perfectly for building Horizon, including when building the pacakge for
Debian, this is a no-go for Horizon plugins in the Debian context. Indeed,
ironic-ui, manila-ui and sahara-dashboard are all doing:
from openstack_dashboard.test.settings import
While this works in devstack, as it is using a clone of the Horizon git
repository which is writable, it doesn't work in the context of Debian
(or other distro) packaging. Indeed, in this case, the folder becomes
/usr/lib/python2.7/dist-packages/openstack_dashboard/test. This folder,
in all reasonableness, is owned by root, and read only by the user who
is building the package. So at import time, doing this:
SECRET_KEY = secret_key.generate_or_read_from_file(
os.path.join(TEST_DIR, '.secret_key_store'))
just fails miserably when the horizon plugin packages are building.
Simply using /tmp instead of TEST_DIR fixes the issue. This patch makes
it in a portable way using tempfile.gettempdir() to find /tmp. Though
it isn't completely safe, as the file in /tmp is predictable (and then
there can be a symlink attack), though for unit testing we probably
don't care.
Please allow this patch to go through, so we don't have to carry it
at the distribution level.
Change-Id: Iadf0c2bffe19e2c33083a257102e846886d7680f