You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by sa...@apache.org on 2014/03/23 22:04:04 UTC

git commit: Fixing variable names issue in patch given by Chanaka in STRATOS-555

Repository: incubator-stratos
Updated Branches:
  refs/heads/master b333a2a7c -> b44546a5a


Fixing variable names issue in patch given by Chanaka in STRATOS-555


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

Branch: refs/heads/master
Commit: b44546a5aae8a9a0350ffe0fa6e5c8d26aab0a44
Parents: b333a2a
Author: Sajith Kariyawasam <sa...@wso2.com>
Authored: Mon Mar 24 02:33:42 2014 +0530
Committer: Sajith Kariyawasam <sa...@wso2.com>
Committed: Mon Mar 24 02:33:42 2014 +0530

----------------------------------------------------------------------
 .../console/themes/theme1/partials/cartridge_info.hbs            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/b44546a5/components/org.apache.stratos.manager.console/console/themes/theme1/partials/cartridge_info.hbs
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.manager.console/console/themes/theme1/partials/cartridge_info.hbs b/components/org.apache.stratos.manager.console/console/themes/theme1/partials/cartridge_info.hbs
index d20ae99..3a17e79 100644
--- a/components/org.apache.stratos.manager.console/console/themes/theme1/partials/cartridge_info.hbs
+++ b/components/org.apache.stratos.manager.console/console/themes/theme1/partials/cartridge_info.hbs
@@ -13,9 +13,9 @@
         <div style="margin-bottom:20px;">{{cartridgeInfo.description}}</div>
 
         <div class="data-title">Access URLs:</div>
-        {{#each cartridgeInfo.portMapping}}
+        {{#each cartridgeInfo.portMappings}}
         <div>
-            <a target="_blank" href="{{protocol}}://{{../cartridgeInfo.hostName}}:{{proxyport}}">{{protocol}}://{{../cartridgeInfo.hostName}}:{{proxyport}}</a>
+            <a target="_blank" href="{{protocol}}://{{../cartridgeInfo.hostName}}:{{proxyPort}}">{{protocol}}://{{../cartridgeInfo.hostName}}:{{proxyPort}}</a>
         </div>
         {{/each}}