You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bh...@apache.org on 2013/01/25 04:31:53 UTC

[6/50] [abbrv] git commit: CLOUDSTACK-537: cloudstack UI - Advanced SG-enabled zone - VM Wizard - step 5 - specify canusefordeploy parameter in listNetworks API when populating network list.

CLOUDSTACK-537: cloudstack UI - Advanced SG-enabled zone - VM Wizard - step 5 - specify canusefordeploy parameter in listNetworks API when populating network list.


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/bfdec24d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/bfdec24d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/bfdec24d

Branch: refs/heads/javelin
Commit: bfdec24de44b4aca47fdf78a22f710157a775701
Parents: 6e40c33
Author: Jessica Wang <je...@citrix.com>
Authored: Mon Jan 21 15:52:10 2013 -0800
Committer: Jessica Wang <je...@citrix.com>
Committed: Mon Jan 21 15:52:10 2013 -0800

----------------------------------------------------------------------
 ui/scripts/instanceWizard.js |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/bfdec24d/ui/scripts/instanceWizard.js
----------------------------------------------------------------------
diff --git a/ui/scripts/instanceWizard.js b/ui/scripts/instanceWizard.js
index f3fe6a5..8d064d8 100644
--- a/ui/scripts/instanceWizard.js
+++ b/ui/scripts/instanceWizard.js
@@ -329,7 +329,8 @@
       if(step5ContainerType == 'select-network' || step5ContainerType == 'select-advanced-sg') {
         var defaultNetworkArray = [], optionalNetworkArray = [];
         var networkData = {
-          zoneId: args.currentData.zoneid
+          zoneId: args.currentData.zoneid,
+					canusefordeploy: true
         };
 				
 				// step5ContainerType of Advanced SG-enabled zone is 'select-security-group', so won't come into this block