Updated Branches: refs/heads/master f62381222 -> f31533987
fixing wizard issue Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/f3153398 Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/f3153398 Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/f3153398 Branch: refs/heads/master Commit: f315339871d31c10b275417d189f08c4405631cd Parents: f623812 Author: rekathiru <[email protected]> Authored: Fri Feb 14 23:52:23 2014 +0530 Committer: rekathiru <[email protected]> Committed: Fri Feb 14 23:52:23 2014 +0530 ---------------------------------------------------------------------- .../console/themes/theme1/renderers/configure_stratos.js | 1 - .../themes/theme1/renderers/configure_stratos_wizard.js | 1 - .../console/util/utility.jag | 6 ++---- 3 files changed, 2 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/f3153398/components/org.apache.stratos.manager.console/console/themes/theme1/renderers/configure_stratos.js ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.manager.console/console/themes/theme1/renderers/configure_stratos.js b/components/org.apache.stratos.manager.console/console/themes/theme1/renderers/configure_stratos.js index 07f86bf..8291d7e 100644 --- a/components/org.apache.stratos.manager.console/console/themes/theme1/renderers/configure_stratos.js +++ b/components/org.apache.stratos.manager.console/console/themes/theme1/renderers/configure_stratos.js @@ -40,7 +40,6 @@ var render = function (theme, data, meta, require) { } else { isErrDeply = true; err_message = deploy_status; - step_data = "[]"; } if(list_status == "succeeded") { http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/f3153398/components/org.apache.stratos.manager.console/console/themes/theme1/renderers/configure_stratos_wizard.js ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.manager.console/console/themes/theme1/renderers/configure_stratos_wizard.js b/components/org.apache.stratos.manager.console/console/themes/theme1/renderers/configure_stratos_wizard.js index 52fe3a0..e51f9f7 100644 --- a/components/org.apache.stratos.manager.console/console/themes/theme1/renderers/configure_stratos_wizard.js +++ b/components/org.apache.stratos.manager.console/console/themes/theme1/renderers/configure_stratos_wizard.js @@ -27,7 +27,6 @@ var render = function (theme, data, meta, require) { } else { isErrDeply = true; err_message = deploy_status; - step_data = "[]"; } if(list_status == "succeeded") { http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/f3153398/components/org.apache.stratos.manager.console/console/util/utility.jag ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.manager.console/console/util/utility.jag b/components/org.apache.stratos.manager.console/console/util/utility.jag index 7ab8890..e9656d6 100644 --- a/components/org.apache.stratos.manager.console/console/util/utility.jag +++ b/components/org.apache.stratos.manager.console/console/util/utility.jag @@ -193,7 +193,7 @@ consoleAppUtil = new function(){ if(par_res.partition.length == 0){ configStatus.first_use = true; }else{ - var car_res = this.sendReceive("GET","/cartridge/list",{}).data; + var car_res = this.sendReceive("GET","/cartridge/available/list",{}).data; var get_status = session.get("get-status"); if(get_status == "succeeded") { @@ -201,15 +201,13 @@ consoleAppUtil = new function(){ configStatus.first_use = false; configStatus.not_complete = true; }else{ + configStatus.not_complete = false; configStatus.first_use = false; } } } - } else { - } - return configStatus; };
