Author: yusaku
Date: Tue Jan 15 21:31:17 2013
New Revision: 1433662
URL: http://svn.apache.org/viewvc?rev=1433662&view=rev
Log:
AMBARI-1189. Add App.Job class. (yusaku)
Modified:
incubator/ambari/trunk/CHANGES.txt
incubator/ambari/trunk/ambari-web/app/mappers/jobs_mapper.js
Modified: incubator/ambari/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1433662&r1=1433661&r2=1433662&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Tue Jan 15 21:31:17 2013
@@ -17,6 +17,8 @@ Trunk (unreleased changes):
IMPROVEMENTS
+ AMBARI-1189. Add App.Job class. (yusaku)
+
AMBARI-1188. Refactor isClient computed property for HostComponent class.
(yusaku)
Modified: incubator/ambari/trunk/ambari-web/app/mappers/jobs_mapper.js
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/mappers/jobs_mapper.js?rev=1433662&r1=1433661&r2=1433662&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/mappers/jobs_mapper.js (original)
+++ incubator/ambari/trunk/ambari-web/app/mappers/jobs_mapper.js Tue Jan 15
21:31:17 2013
@@ -38,7 +38,6 @@ App.jobsMapper = App.QuickDataMapper.cre
job_name:'jobName',
workflow_entity_name:'workflowEntityName',
user_name:'userName',
- conf_path:'confPath',
submit_time:'submitTime',
maps:'maps',
reduces:'reduces',
@@ -50,6 +49,7 @@ App.jobsMapper = App.QuickDataMapper.cre
});
App.jobTimeLineMapper = App.QuickDataMapper.create({
+ model: null, //model will be set outside of mapper
config:{
map:'map',
shuffle:'shuffle',
@@ -66,6 +66,7 @@ App.jobTimeLineMapper = App.QuickDataMap
});
App.jobTasksMapper = App.QuickDataMapper.create({
+ model: null, //model will be set outside of mapper
config:{
mapNodeLocal:'mapNodeLocal',
mapRackLocal:'mapRackLocal',