You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ak...@apache.org on 2015/12/30 10:41:07 UTC

ignite git commit: IGNITE-2283 Minor fixes.

Repository: ignite
Updated Branches:
  refs/heads/ignite-843-rc2 756e5d80d -> 8ad83b9b3


IGNITE-2283 Minor fixes.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/8ad83b9b
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/8ad83b9b
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/8ad83b9b

Branch: refs/heads/ignite-843-rc2
Commit: 8ad83b9b37981ef6a9fb22596111d535519c4a04
Parents: 756e5d8
Author: Alexey Kuznetsov <ak...@apache.org>
Authored: Wed Dec 30 16:40:58 2015 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Wed Dec 30 16:40:58 2015 +0700

----------------------------------------------------------------------
 .../states/configuration/summary/summary.controller.js | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/8ad83b9b/modules/control-center-web/src/main/js/app/modules/states/configuration/summary/summary.controller.js
----------------------------------------------------------------------
diff --git a/modules/control-center-web/src/main/js/app/modules/states/configuration/summary/summary.controller.js b/modules/control-center-web/src/main/js/app/modules/states/configuration/summary/summary.controller.js
index 3a9d42f..5d7bf8e 100644
--- a/modules/control-center-web/src/main/js/app/modules/states/configuration/summary/summary.controller.js
+++ b/modules/control-center-web/src/main/js/app/modules/states/configuration/summary/summary.controller.js
@@ -86,6 +86,10 @@ export default [
             ]
         };
 
+        const clnCfg = { type: 'file', name: 'client.xml' };
+
+        const srvCfg = { type: 'file', name: 'server.xml' };
+
         const projectStructureRoot = {
             type: 'folder',
             name: 'project.zip',
@@ -93,10 +97,7 @@ export default [
                 {
                     type: 'folder',
                     name: 'config',
-                    children: [
-                        { type: 'file', name: 'ServerConfig.xml' },
-                        { type: 'file', name: 'ClientConfig.xml' }
-                    ]
+                    children: [clnCfg, srvCfg]
                 },
                 {
                     type: 'folder',
@@ -196,7 +197,9 @@ export default [
                 });
             });
 
-
+            projectStructureRoot.name = cluster.name + '-configuration.zip';
+            clnCfg.name = cluster.name + '-client.xml';
+            srvCfg.name = cluster.name + '-server.xml';
         };
 
         const updateTab = (cluster) => {