From 6a8f77de557897f923cae94de4a524ad0ed09605 Mon Sep 17 00:00:00 2001 From: Kristine Bujold Date: Wed, 5 Dec 2018 17:03:57 -0500 Subject: [PATCH] Move Starlingx branding from stx-horizon to stx-gui Moved themes/titanium/ and themes/starlingx/ folder from stx-horizon into stx-gui. Renamed titanium to starlingx and delete titanium. Story: 2004552 Task: 28310 Change-Id: I1e9e8bcd41b6b5bb32e40da8dfce6c4804ce5d37 Signed-off-by: Kristine Bujold --- openstack/python-horizon/centos/files/local_settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openstack/python-horizon/centos/files/local_settings.py b/openstack/python-horizon/centos/files/local_settings.py index 40d472b8..a656b9e1 100755 --- a/openstack/python-horizon/centos/files/local_settings.py +++ b/openstack/python-horizon/centos/files/local_settings.py @@ -986,9 +986,9 @@ SITE_BRANDING = "StarlingX" AVAILABLE_THEMES = [ ('default', 'Default', 'themes/default'), ('material', 'Material', 'themes/material'), - ('titanium', 'Titanium', 'themes/titanium'), + ('starlingx', 'StarlingX', 'themes/starlingx'), ] -DEFAULT_THEME = 'titanium' +DEFAULT_THEME = 'starlingx' for root, dirs, files in os.walk('/opt/branding/applied'): if 'manifest.py' in files: @@ -999,7 +999,7 @@ for root, dirs, files in os.walk('/opt/branding/applied'): AVAILABLE_THEMES = [ ('default', 'Default', 'themes/default'), ('material', 'Material', 'themes/material'), - ('titanium', 'Titanium', 'themes/titanium'), + ('starlingx', 'StarlingX', 'themes/starlingx'), ('custom', 'Custom', '/opt/branding/applied'), ] DEFAULT_THEME = 'custom'