Skip to content
This repository has been archived by the owner on Jan 6, 2018. It is now read-only.

Commit

Permalink
CLOSES OOZIE-556 Sort on Web Console for non-string data type
Browse files Browse the repository at this point in the history
  • Loading branch information
kirann committed Sep 13, 2011
1 parent 8ab5e8d commit 2e686b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions release-log.txt
@@ -1,5 +1,6 @@
-- Oozie 3.1.0 release

OOZIE-556 Sort on Web Console for non-string data type
OOZIE-37 Documentation related modifications for "log -action" option
OOZIE-35 add auto-rerun for error codes JA008 and JA009 in action executor
OOZIE-21 Fixed bug forked subwf not returning status to the parent wf job
Expand Down
6 changes: 3 additions & 3 deletions webapp/src/main/webapp/oozie-console.js
Expand Up @@ -1151,7 +1151,7 @@ var coord_jobs_store = new Ext.data.JsonStore({
totalProperty: 'total',
autoLoad: true,
root: 'coordinatorjobs',
fields: ['coordJobId', 'coordJobName', 'status', 'user', 'group', 'frequency', 'timeUnit', 'startTime', 'nextMaterializedTime'],
fields: ['coordJobId', 'coordJobName', 'status', 'user', 'group', 'frequency', 'timeUnit', {name: 'startTime', sortType: Ext.data.SortTypes.asDate}, {name: 'nextMaterializedTime', sortType: Ext.data.SortTypes.asDate}],
proxy: new Ext.data.HttpProxy({
url: getOozieBase() + 'jobs'
})
Expand All @@ -1169,7 +1169,7 @@ var jobs_store = new Ext.data.JsonStore({
totalProperty: 'total',
autoLoad: true,
root: 'workflows',
fields: ['appPath', 'appName', 'id', 'conf', 'status', 'createdTime', 'startTime', 'lastModTime', 'endTime', 'user', 'group', 'run', 'actions'],
fields: ['appPath', 'appName', 'id', 'conf', 'status', {name: 'createdTime', sortType: Ext.data.SortTypes.asDate}, {name: 'startTime', sortType: Ext.data.SortTypes.asDate}, {name: 'lastModTime', sortType: Ext.data.SortTypes.asDate}, {name: 'endTime', sortType: Ext.data.SortTypes.asDate}, 'user', 'group', 'run', 'actions'],
proxy: new Ext.data.HttpProxy({
url: getOozieBase() + 'jobs'
})
Expand All @@ -1189,7 +1189,7 @@ var bundle_jobs_store = new Ext.data.JsonStore({
totalProperty: 'total',
autoLoad: true,
root: 'bundlejobs',
fields: ['bundleJobId', 'bundleJobName', 'bundleJobPath', 'conf', 'status', 'kickoffTime', 'startTime', 'endTime', 'pauseTime', 'createdTime', 'user', 'group', 'bundleCoordJobs'],
fields: ['bundleJobId', 'bundleJobName', 'bundleJobPath', 'conf', 'status', {name: 'kickoffTime', sortType: Ext.data.SortTypes.asDate}, {name: 'startTime', sortType: Ext.data.SortTypes.asDate}, {name: 'endTime', sortType: Ext.data.SortTypes.asDate}, {name: 'pauseTime', sortType: Ext.data.SortTypes.asDate}, {name: 'createdTime', sortType: Ext.data.SortTypes.asDate}, 'user', 'group', 'bundleCoordJobs'],
proxy: new Ext.data.HttpProxy({
url: getOozieBase() + 'jobs'
})
Expand Down

0 comments on commit 2e686b3

Please sign in to comment.