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

incubator-ignite git commit: # ignite-843 Fixed summary page.

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-843 d07bb11d2 -> 55f7e077b


# ignite-843 Fixed summary page.


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

Branch: refs/heads/ignite-843
Commit: 55f7e077b646b68cc0ad55e0433e44981585c25d
Parents: d07bb11
Author: Andrey <an...@gridgain.com>
Authored: Wed Jul 15 15:41:59 2015 +0700
Committer: Andrey <an...@gridgain.com>
Committed: Wed Jul 15 15:41:59 2015 +0700

----------------------------------------------------------------------
 .../web-control-center/nodejs/views/configuration/caches.jade   | 2 +-
 .../web-control-center/nodejs/views/configuration/clusters.jade | 2 +-
 .../web-control-center/nodejs/views/configuration/metadata.jade | 2 +-
 .../nodejs/views/configuration/persistence.jade                 | 2 +-
 .../web-control-center/nodejs/views/configuration/summary.jade  | 5 +----
 5 files changed, 5 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/55f7e077/modules/web-control-center/nodejs/views/configuration/caches.jade
----------------------------------------------------------------------
diff --git a/modules/web-control-center/nodejs/views/configuration/caches.jade b/modules/web-control-center/nodejs/views/configuration/caches.jade
index ae4b2d4..d0803ca 100644
--- a/modules/web-control-center/nodejs/views/configuration/caches.jade
+++ b/modules/web-control-center/nodejs/views/configuration/caches.jade
@@ -29,7 +29,7 @@ block content
         .block-callout
             p(ng-bind-html='joinTip(screenTip)')
         .links(ng-hide='caches.length == 0')
-            table.col-sm-12(st-table='caches')
+            table(st-table='caches')
                 tbody
                     tr(ng-repeat='row in caches track by row._id')
                         td.col-sm-6(ng-class='{active: row._id == selectedItem._id}')

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/55f7e077/modules/web-control-center/nodejs/views/configuration/clusters.jade
----------------------------------------------------------------------
diff --git a/modules/web-control-center/nodejs/views/configuration/clusters.jade b/modules/web-control-center/nodejs/views/configuration/clusters.jade
index aa22784..f5915f1 100644
--- a/modules/web-control-center/nodejs/views/configuration/clusters.jade
+++ b/modules/web-control-center/nodejs/views/configuration/clusters.jade
@@ -29,7 +29,7 @@ block content
         .block-callout
             p(ng-bind-html='joinTip(screenTip)')
         .links(ng-hide='clusters.length == 0')
-            table.col-sm-12(st-table='clusters')
+            table(st-table='clusters')
                 tbody
                     tr(ng-repeat='row in clusters track by row._id')
                         td.col-sm-6(ng-class='{active: row._id == selectedItem._id}')

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/55f7e077/modules/web-control-center/nodejs/views/configuration/metadata.jade
----------------------------------------------------------------------
diff --git a/modules/web-control-center/nodejs/views/configuration/metadata.jade b/modules/web-control-center/nodejs/views/configuration/metadata.jade
index ff64692..8c213c6 100644
--- a/modules/web-control-center/nodejs/views/configuration/metadata.jade
+++ b/modules/web-control-center/nodejs/views/configuration/metadata.jade
@@ -29,7 +29,7 @@ block content
         .block-callout
             p(ng-bind-html='joinTip(screenTip)')
         .links(ng-hide='metadata.length == 0')
-            table.col-sm-12(st-table='metadata')
+            table(st-table='metadata')
                 tbody
                     tr(ng-repeat='row in metadata track by row._id')
                         td.col-sm-6(ng-class='{active: row._id == selectedItem._id}')

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/55f7e077/modules/web-control-center/nodejs/views/configuration/persistence.jade
----------------------------------------------------------------------
diff --git a/modules/web-control-center/nodejs/views/configuration/persistence.jade b/modules/web-control-center/nodejs/views/configuration/persistence.jade
index 3a276f8..b8973d7 100644
--- a/modules/web-control-center/nodejs/views/configuration/persistence.jade
+++ b/modules/web-control-center/nodejs/views/configuration/persistence.jade
@@ -30,7 +30,7 @@ block content
         hr
     .docs-body(ng-controller='persistenceController')
         .links(ng-hide='persistences.length == 0')
-            table.col-sm-12(st-table='persistences')
+            table(st-table='persistences')
                 tbody
                     tr(ng-repeat='row in persistences track by row._id')
                         td.col-sm-6(ng-class='{active: row._id == selectedItem._id}')

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/55f7e077/modules/web-control-center/nodejs/views/configuration/summary.jade
----------------------------------------------------------------------
diff --git a/modules/web-control-center/nodejs/views/configuration/summary.jade b/modules/web-control-center/nodejs/views/configuration/summary.jade
index 6875110..1281783 100644
--- a/modules/web-control-center/nodejs/views/configuration/summary.jade
+++ b/modules/web-control-center/nodejs/views/configuration/summary.jade
@@ -47,14 +47,11 @@ block content
         div(ng-if='clusters.length > 0')
             p Following cluster configurations were created, you can download them as XML, java code or as docker file.
             .links
-                table.col-sm-12(st-table='clusters')
+                table(st-table='clusters')
                     tbody
                         tr(ng-repeat='row in clusters track by row._id')
                             td.col-sm-6(ng-class='{active: row._id == selectedItem._id}')
                                 a(ng-click='selectItem(row)') {{$index + 1}}) {{row.name}}
-        br
-        br
-        br
         div(ng-show='selectedItem && generated' role="tab" method='post' action='summary/download')
             div(bs-collapse data-start-collapsed='false')
                 .panel.panel-default