From 0050e2fcd957cd037e25c3ef68322a6204de7450 Mon Sep 17 00:00:00 2001 From: Endi DeWata Date: Wed, 8 Sep 2010 19:25:14 -0400 Subject: Services adds the Service tab: search, details, add, associations It also contains the sample data for some service operations --- install/static/navigation.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'install/static/navigation.js') diff --git a/install/static/navigation.js b/install/static/navigation.js index 94fe47a9..ed190778 100644 --- a/install/static/navigation.js +++ b/install/static/navigation.js @@ -24,6 +24,7 @@ function getParentTabs(){ host : "identity", hostgroup: "identity", netgroup : "identity", + service : "identity", policy : "policy", config : "config" }; @@ -54,7 +55,8 @@ function buildNavigation(){ {name:"Hostgroups", tab:"hostgroup", setup: setupHostgroup}, - {name:"Netgroups",tab:"netgroup", setup:setupNetgroup} + {name:"Netgroups",tab:"netgroup", setup:setupNetgroup}, + {name:"Services",tab:"service", setup:setupService} ]}, {name:"POLICY", tab:"policy", setup: unimplemented}, {name:"CONFIG", tab:"config", setup: unimplemented }]; @@ -139,6 +141,7 @@ function getSetupFunctions(){ host: setupHost, hostgroup:setupHostgroup, netgroup:setupNetgroup, + service:setupService, }; } return setupFunctions; @@ -236,4 +239,4 @@ function showDetails(){ function showAssociations(){ clearOld(); $('#associations').css("display","block"); -} \ No newline at end of file +} -- cgit