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 2016/09/08 04:46:59 UTC

[42/50] [abbrv] ignite git commit: IGNITE-2047 Fixed tooltips

IGNITE-2047 Fixed tooltips


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

Branch: refs/heads/ignite-3629
Commit: 79175ab26a369cc1440d05a57178ec39bd70f911
Parents: 33581ba
Author: vsisko <vs...@gridgain.com>
Authored: Tue Sep 6 10:56:38 2016 +0700
Committer: vsisko <vs...@gridgain.com>
Committed: Tue Sep 6 10:56:38 2016 +0700

----------------------------------------------------------------------
 .../app/modules/states/configuration/caches/concurrency.jade   | 2 +-
 .../app/modules/states/configuration/caches/statistics.jade    | 6 ++++--
 2 files changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/79175ab2/modules/web-console/frontend/app/modules/states/configuration/caches/concurrency.jade
----------------------------------------------------------------------
diff --git a/modules/web-console/frontend/app/modules/states/configuration/caches/concurrency.jade b/modules/web-console/frontend/app/modules/states/configuration/caches/concurrency.jade
index 3918b91..37bd88d 100644
--- a/modules/web-console/frontend/app/modules/states/configuration/caches/concurrency.jade
+++ b/modules/web-console/frontend/app/modules/states/configuration/caches/concurrency.jade
@@ -35,7 +35,7 @@ include ../../../../../app/helpers/jade/mixins.jade
                         If <b>0</b> then number of concurrent asynchronous operations is unlimited')
                 .settings-row
                     +number('Default lock timeout:', model + '.defaultLockTimeout', '"defaultLockTimeout"', 'true', '0', '0',
-                        'Default lock acquisition timeout<br/>\
+                        'Default lock acquisition timeout in milliseconds<br/>\
                         If <b>0</b> then lock acquisition will never timeout')
                 .settings-row(ng-hide='#{model}.atomicityMode === "TRANSACTIONAL"')
                     +dropdown('Entry versioning:', model + '.atomicWriteOrderMode', '"atomicWriteOrderMode"', 'true', 'Choose versioning',

http://git-wip-us.apache.org/repos/asf/ignite/blob/79175ab2/modules/web-console/frontend/app/modules/states/configuration/caches/statistics.jade
----------------------------------------------------------------------
diff --git a/modules/web-console/frontend/app/modules/states/configuration/caches/statistics.jade b/modules/web-console/frontend/app/modules/states/configuration/caches/statistics.jade
index afb440d..027a2bd 100644
--- a/modules/web-console/frontend/app/modules/states/configuration/caches/statistics.jade
+++ b/modules/web-console/frontend/app/modules/states/configuration/caches/statistics.jade
@@ -30,8 +30,10 @@ include ../../../../../app/helpers/jade/mixins.jade
         .panel-body(ng-if='ui.isPanelLoaded("#{form}")')
             .col-sm-6
                 .settings-row
-                    +checkbox('Statistics enabled', model + '.statisticsEnabled', '"statisticsEnabled"', 'Flag indicating whether statistics gathering is enabled on a cache')
+                    +checkbox('Statistics enabled', model + '.statisticsEnabled', '"statisticsEnabled"', 'Flag indicating whether statistics gathering is enabled on this cache')
                 .settings-row
-                    +checkbox('Management enabled', model + '.managementEnabled', '"managementEnabled"', 'Flag indicating whether management is enabled on this cache')
+                    +checkbox('Management enabled', model + '.managementEnabled', '"managementEnabled"',
+                    'Flag indicating whether management is enabled on this cache<br/>\
+                    If enabled the CacheMXBean for each cache is registered in the platform MBean server')
             .col-sm-6
                 +preview-xml-java(model, 'cacheStatistics')