You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ab...@apache.org on 2014/02/05 16:45:44 UTC

[1/2] git commit: AMBARI-4533 Hosts Table shift when filtering that results in "no hosts". (ababiichuk)

Updated Branches:
  refs/heads/trunk 8e1817415 -> d4387a0ef


AMBARI-4533 Hosts Table shift when filtering that results in "no hosts". (ababiichuk)


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

Branch: refs/heads/trunk
Commit: d4330ad2fae3c02009cd6ad4dc49997a4e355a82
Parents: 8e18174
Author: aBabiichuk <ab...@cybervisiontech.com>
Authored: Wed Feb 5 17:39:30 2014 +0200
Committer: aBabiichuk <ab...@cybervisiontech.com>
Committed: Wed Feb 5 17:39:30 2014 +0200

----------------------------------------------------------------------
 ambari-web/app/styles/application.less | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/d4330ad2/ambari-web/app/styles/application.less
----------------------------------------------------------------------
diff --git a/ambari-web/app/styles/application.less b/ambari-web/app/styles/application.less
index 859b46c..1ffcfb9 100644
--- a/ambari-web/app/styles/application.less
+++ b/ambari-web/app/styles/application.less
@@ -2872,6 +2872,7 @@ table.graphs {
     width:70%;
   }
   .table {
+    table-layout: fixed;
     th {
       border-top: none;
     }
@@ -2884,21 +2885,19 @@ table.graphs {
     th:first-child,
     td:first-child + td,
     th:first-child + th{
-      width: 1.5%;
-      min-width:13px!important;
+      width: 13px;
     }
     .col2,
     td:first-child + td + td,
     th:first-child + th + th{
-      width: 18%;
+      width: 22%;
     }
     .col3, .col4,
     td:first-child + td + td + td,
     th:first-child + th + th + th,
     td:first-child + td + td + td + td,
     th:first-child + th + th + th + th{
-      width:1.5%;
-      min-width:13px!important;
+      width: 13px;
     }
     .col5,.col6,.col7,.col8,.col9,
     td:first-child + td + td + td + td + td,
@@ -2923,7 +2922,7 @@ table.graphs {
     }
 
     td.name {
-      overflow: auto;
+      overflow: inherit;
       overflow-wrap: break-word;
       white-space: nowrap;
     }
@@ -3025,7 +3024,7 @@ background: url(	data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByU
     a.ui-icon-circle-close {
       float: right;
       opacity: 0.2;
-      padding: 1px;
+      padding: 1px 0;
       position: relative;
       right: 0px;
       margin-top: 3px;


[2/2] git commit: AMBARI-4534 Add ability to delete individual DataNode, TaskTracker, NodeManager, and RegionServer from Host Details page. (ababiichuk)

Posted by ab...@apache.org.
AMBARI-4534 Add ability to delete individual DataNode, TaskTracker, NodeManager, and RegionServer from Host Details page. (ababiichuk)


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

Branch: refs/heads/trunk
Commit: d4387a0efcf3753e65d42f7c891f804930324511
Parents: d4330ad
Author: aBabiichuk <ab...@cybervisiontech.com>
Authored: Wed Feb 5 17:41:31 2014 +0200
Committer: aBabiichuk <ab...@cybervisiontech.com>
Committed: Wed Feb 5 17:41:31 2014 +0200

----------------------------------------------------------------------
 ambari-web/app/app.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/d4387a0e/ambari-web/app/app.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/app.js b/ambari-web/app/app.js
index 9d834af..06797f2 100644
--- a/ambari-web/app/app.js
+++ b/ambari-web/app/app.js
@@ -76,7 +76,7 @@ module.exports = Em.Application.create({
   components: Ember.Object.create({
     reassignable: ['NAMENODE', 'SECONDARY_NAMENODE', 'JOBTRACKER', 'RESOURCEMANAGER'],
     restartable: ['APP_TIMELINE_SERVER'],
-    deletable: ['SUPERVISOR', 'HBASE_MASTER'],
+    deletable: ['SUPERVISOR', 'HBASE_MASTER', 'DATANODE', 'TASKTRACKER', 'NODEMANAGER', 'HBASE_REGIONSERVER'],
     rollinRestartAllowed: ["DATANODE", "TASKTRACKER", "NODEMANAGER", "HBASE_REGIONSERVER", "SUPERVISOR"],
     slaves: function() {
       return require('data/service_components').filter(function(component){