Jump to: navigation, search

Difference between revisions of "MuranoDashboardChanges"

 
Line 1: Line 1:
One very noticeable change in Murano Dashboard is coming in version 0.4: 'Murano' panel (currently resides at Project->Other->Environments) will be moved to a separate dashboard called 'Murano'. So the address for 'Environments' panel will be Murano->Deployment->Environments.
+
One very noticeable change in Murano Dashboard is coming in version 0.4: 'Murano' panel (currently resides at Project->Other->Environments) will be moved to a separate dashboard called 'Murano'. So the address for 'Environments' panel will be Murano->Deployment->Environments. Also we've got rid of 'djblets' package.
  
The following changes are to be made in Horizon config file settings.py. Lines:
+
So the lines in Horizon config  
HORIZON_CONFIG['dashboards'] += ('murano',)
 
HORIZON_CONFIG['default_dashboard'] = 'murano'
 
HORIZON_CONFIG['user_home'] = 'muranodashboard.views.get_user_home'
 
should be appended to settings.py, while the line:
 
 
  HORIZON_CONFIG['customization_module'] = 'muranodashboard.panel.overrides'
 
  HORIZON_CONFIG['customization_module'] = 'muranodashboard.panel.overrides'
should be removed.
+
INSTALLED_APPS += ('muranodashboard','djblets','djblets.datagrid','djblets.util','floppyforms',)
 +
should be changed to
 +
INSTALLED_APPS += ('muranodashboard','floppyforms',)
 +
HORIZON_CONFIG['dashboards']+=('murano',)

Latest revision as of 07:47, 6 November 2013

One very noticeable change in Murano Dashboard is coming in version 0.4: 'Murano' panel (currently resides at Project->Other->Environments) will be moved to a separate dashboard called 'Murano'. So the address for 'Environments' panel will be Murano->Deployment->Environments. Also we've got rid of 'djblets' package.

So the lines in Horizon config

HORIZON_CONFIG['customization_module'] = 'muranodashboard.panel.overrides'
INSTALLED_APPS += ('muranodashboard','djblets','djblets.datagrid','djblets.util','floppyforms',)

should be changed to

INSTALLED_APPS += ('muranodashboard','floppyforms',)
HORIZON_CONFIG['dashboards']+=('murano',)