Author: yusaku
Date: Tue Apr 23 23:15:47 2013
New Revision: 1471201
URL: http://svn.apache.org/r1471201
Log:
AMBARI-2002. Dashboard: remove "Version" row from HDFS, MapReduce, and HBase
dashboard summary. (yusaku)
Modified:
incubator/ambari/trunk/CHANGES.txt
incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/hbase.hbs
incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/hdfs.hbs
incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/mapreduce.hbs
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/hbase.js
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/hdfs.js
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/mapreduce.js
Modified: incubator/ambari/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1471201&r1=1471200&r2=1471201&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Tue Apr 23 23:15:47 2013
@@ -269,6 +269,9 @@ Trunk (unreleased changes):
IMPROVEMENTS
+ AMBARI-2002. Dashboard: remove "Version" row from HDFS, MapReduce, and
+ HBase dashboard summary. (yusaku)
+
AMBARI-1982. Disallow editing Hadoop log/PID directories post install.
(yusaku)
Modified:
incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/hbase.hbs
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/hbase.hbs?rev=1471201&r1=1471200&r2=1471201&view=diff
==============================================================================
---
incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/hbase.hbs
(original)
+++
incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/hbase.hbs
Tue Apr 23 23:15:47 2013
@@ -60,11 +60,6 @@
<td>{{t dashboard.services.hbase.regionServers}}</td>
<td><a href="#" {{action filterHosts
view.regionServerComponent}}>{{view.service.regionServers.length}} {{t
dashboard.services.hbase.regionServers}}</a></td>
</tr>
- <!-- Version -->
- <tr>
- <td>{{t dashboard.services.hbase.version}}</td>
- <td>{{view.version}} {{view.service.revision}}</td>
- </tr>
<!-- HBaseMaster Web UI -->
<tr>
<td>{{t dashboard.services.hbase.masterWebUI}}</td>
Modified:
incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/hdfs.hbs
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/hdfs.hbs?rev=1471201&r1=1471200&r2=1471201&view=diff
==============================================================================
---
incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/hdfs.hbs
(original)
+++
incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/hdfs.hbs
Tue Apr 23 23:15:47 2013
@@ -59,11 +59,6 @@
<a href="#" {{action filterHosts
view.dataNodeComponent}}>{{view.service.dataNodes.length}} {{t
dashboard.services.hdfs.datanodes}}</a>
</td>
</tr>
- <!-- Version -->
- <tr>
- <td>{{t dashboard.services.hdfs.version}}</td>
- <td>{{view.version}}</td>
- </tr>
<!-- NameNode Web UI -->
<tr>
<td>{{t dashboard.services.hdfs.nameNodeWebUI}}</td>
Modified:
incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/mapreduce.hbs
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/mapreduce.hbs?rev=1471201&r1=1471200&r2=1471201&view=diff
==============================================================================
---
incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/mapreduce.hbs
(original)
+++
incubator/ambari/trunk/ambari-web/app/templates/main/dashboard/service/mapreduce.hbs
Tue Apr 23 23:15:47 2013
@@ -51,11 +51,6 @@
<td>{{t dashboard.services.mapreduce.taskTrackers}}</td>
<td><a href="#" {{action filterHosts
view.taskTrackerComponent}}>{{view.service.taskTrackers.length}} {{t
dashboard.services.mapreduce.taskTrackers}}</a></td>
</tr>
- <!-- Version -->
- <tr>
- <td>{{t dashboard.services.hdfs.version}}</td>
- <td>{{view.version}}</td>
- </tr>
<!-- JobTracker Web UI -->
<tr>
<td>{{t services.service.summary.jobTrackerWebUI}}</td>
Modified:
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/hbase.js
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/hbase.js?rev=1471201&r1=1471200&r2=1471201&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/hbase.js
(original)
+++ incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/hbase.js
Tue Apr 23 23:15:47 2013
@@ -70,10 +70,6 @@ App.MainDashboardServiceHbaseView = App.
return
this.t('dashboard.services.hbase.masterServerHeap.summary').format(heapString,
heapMaxString, percent.toFixed(1));
}.property('service.heapMemoryUsed', 'service.heapMemoryMax'),
- version: function () {
- return this.formatUnavailable(this.get('service.version'));
- }.property('service.version'),
-
summaryHeader: function () {
var avgLoad = this.get('service.averageLoad');
if (avgLoad == null) {
Modified:
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/hdfs.js
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/hdfs.js?rev=1471201&r1=1471200&r2=1471201&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/hdfs.js
(original)
+++ incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/hdfs.js
Tue Apr 23 23:15:47 2013
@@ -36,9 +36,6 @@ App.MainDashboardServiceHdfsView = App.M
}.property('service.capacityUsed', 'service.capacityTotal')
}),
- version: function(){
- return this.formatUnavailable(this.get('service.version'));
- }.property('service.version'),
dfsTotalBlocks: function(){
return this.formatUnavailable(this.get('service.dfsTotalBlocks'));
}.property('service.dfsTotalBlocks'),
Modified:
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/mapreduce.js
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/mapreduce.js?rev=1471201&r1=1471200&r2=1471201&view=diff
==============================================================================
---
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/mapreduce.js
(original)
+++
incubator/ambari/trunk/ambari-web/app/views/main/dashboard/service/mapreduce.js
Tue Apr 23 23:15:47 2013
@@ -31,10 +31,6 @@ App.MainDashboardServiceMapreduceView =
}.property('_parentView.data.chart')
}),
- version: function(){
- return this.formatUnavailable(this.get('service.version'));
- }.property('service.version'),
-
jobTrackerUptime: function () {
var uptime = this.get('service').get('jobTrackerStartTime');
if (uptime && uptime > 0){