Repository: stratos Updated Branches: refs/heads/master 24df9f470 -> e3209c758
update isgroupScalingEnabled to groupScalingEnabled on schemas Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/8d42f382 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/8d42f382 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/8d42f382 Branch: refs/heads/master Commit: 8d42f382c5cc6ec3b01b56b601144fe2b6dce8cf Parents: 0251ad3 Author: Dakshika Jayathilaka <[email protected]> Authored: Fri Jan 16 15:35:59 2015 +0530 Committer: Dakshika Jayathilaka <[email protected]> Committed: Fri Jan 16 15:35:59 2015 +0530 ---------------------------------------------------------------------- .../console/themes/theme0/js/custom/applications-editor.js | 6 +++--- .../themes/theme0/js/custom/applications_group_editor.js | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/8d42f382/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js b/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js index d3d4685..3c658fe 100644 --- a/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js +++ b/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js @@ -563,9 +563,9 @@ var groupBlockTemplate = { "default":1, "required":false }, - "isGroupScalingEnabled": { + "groupScalingEnabled": { "type":"boolean", - "id": "root/isGroupScalingEnabled", + "id": "root/groupScalingEnabled", "default": "false", "required":false } @@ -577,7 +577,7 @@ var groupBlockDefault = { "alias":"group2alias", "groupMinInstances":1, "groupMaxInstances":2, - "isGroupScalingEnabled":"false" + "groupScalingEnabled":"false" }; //create cartridge list http://git-wip-us.apache.org/repos/asf/stratos/blob/8d42f382/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications_group_editor.js ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications_group_editor.js b/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications_group_editor.js index 3c81c5f..fa5f100 100644 --- a/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications_group_editor.js +++ b/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications_group_editor.js @@ -281,10 +281,10 @@ var groupBlockTemplate = { "type": "string", "title": "Group Name: " }, - "isGroupScalingEnabled": { - "id": "root/isGroupScalingEnabled", + "groupScalingEnabled": { + "id": "root/groupScalingEnabled", "type": "boolean", - "title": "Is Group Scaling Enabled: " + "title": "Group Scaling Enabled: " }, "dependencies": { "id": "root/dependencies", @@ -335,7 +335,7 @@ var groupBlockTemplate = { var groupBlockDefault = { "name": "", - "isGroupScalingEnabled": "true", + "groupScalingEnabled": "true", "dependencies": { "startupOrders": [ "cartridge.type, group.name"
