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

Commit

Permalink
CLOSES OOZIE-17 Group column for Coordinate jobs in Oozie Web Console
Browse files Browse the repository at this point in the history
  • Loading branch information
kirann authored and Mohammad Kamrul Islam committed Aug 18, 2011
1 parent e7e3adb commit b595e85
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
1 change: 1 addition & 0 deletions release-log.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
-- Oozie 3.1.0 release

OOZIE-17 Group column for coordinator jobs in Oozie Web Console
OOZIE-11 Adding Distcp Action.
OOZIE-6 Custom filters option and User information column added to Coordinator jobs section of Oozie Web Console
OOZIE-124 Update documentation for job-type in WS API
Expand Down
22 changes: 19 additions & 3 deletions webapp/src/main/webapp/oozie-console.js
Original file line number Diff line number Diff line change
Expand Up @@ -595,9 +595,15 @@ function coordJobDetailsPopup(response, request) {
}, {
fieldLabel: 'User',
editable: false,
name: 'status',
name: 'user',
width: 200,
value: jobDetails["user"]
}, {
fieldLabel: 'Group',
editable: false,
name: 'group',
width: 200,
value: jobDetails["group"]
}, {
fieldLabel: 'Frequency',
editable: false,
Expand Down Expand Up @@ -879,7 +885,7 @@ function bundleJobDetailsPopup(response, request) {
var bundleJobName = jobDetails["bundleJobName"];
var jobActionStatus = new Ext.data.JsonStore({
data: jobDetails["bundleCoordJobs"],
fields: ['coordJobId', 'coordJobName', 'coordJobPath', 'frequency', 'timeUnit', 'nextMaterializedTime', 'status', 'startTime', 'endTime', 'pauseTime','user']
fields: ['coordJobId', 'coordJobName', 'coordJobPath', 'frequency', 'timeUnit', 'nextMaterializedTime', 'status', 'startTime', 'endTime', 'pauseTime','user','group']
});

var formFieldSet = new Ext.form.FieldSet({
Expand Down Expand Up @@ -978,6 +984,11 @@ function bundleJobDetailsPopup(response, request) {
width: 80,
sortable: true,
dataIndex: 'user'
}, {
header: "Group",
width: 80,
sortable: true,
dataIndex: 'group'
}, {
header: "Frequency",
width: 80,
Expand Down Expand Up @@ -1134,7 +1145,7 @@ var coord_jobs_store = new Ext.data.JsonStore({
totalProperty: 'total',
autoLoad: true,
root: 'coordinatorjobs',
fields: ['coordJobId', 'coordJobName', 'status', 'user', 'frequency', 'timeUnit', 'startTime', 'nextMaterializedTime'],
fields: ['coordJobId', 'coordJobName', 'status', 'user', 'group', 'frequency', 'timeUnit', 'startTime', 'nextMaterializedTime'],
proxy: new Ext.data.HttpProxy({
url: getOozieBase() + 'jobs'
})
Expand Down Expand Up @@ -1691,6 +1702,11 @@ function initConsole() {
width: 80,
sortable: true,
dataIndex: 'user'
}, {
header: "Group",
width: 80,
sortable: true,
dataIndex: 'group'
}, {
header: "frequency",
width: 70,
Expand Down

0 comments on commit b595e85

Please sign in to comment.