You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by ry...@apache.org on 2015/04/17 01:11:15 UTC

oozie git commit: Amendment for OOZIE-2140

Repository: oozie
Updated Branches:
  refs/heads/master a3606f203 -> c37738134


Amendment for OOZIE-2140


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

Branch: refs/heads/master
Commit: c377381347ed52f350f126b6166938b2cf71ceba
Parents: a3606f2
Author: egashira <ry...@yahoo.com>
Authored: Thu Apr 16 16:02:35 2015 -0700
Committer: egashira <ry...@yahoo.com>
Committed: Thu Apr 16 16:09:26 2015 -0700

----------------------------------------------------------------------
 webapp/src/main/webapp/oozie-console.js | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/oozie/blob/c3773813/webapp/src/main/webapp/oozie-console.js
----------------------------------------------------------------------
diff --git a/webapp/src/main/webapp/oozie-console.js b/webapp/src/main/webapp/oozie-console.js
index 16b2528..dae2194 100644
--- a/webapp/src/main/webapp/oozie-console.js
+++ b/webapp/src/main/webapp/oozie-console.js
@@ -1566,6 +1566,7 @@ function coordJobDetailsPopup(response, request) {
 function bundleJobDetailsPopup(response, request) {
 
     var isErrorLogLoaded = false;
+    var isAuditLogLoaded = false;
     var jobDefinitionArea = new Ext.form.TextArea({
         fieldLabel: 'Definition',
         editable: false,
@@ -1749,6 +1750,16 @@ function bundleJobDetailsPopup(response, request) {
         emptyText: ""
     });
 
+    var jobAuditLogArea = new Ext.form.TextArea({
+        fieldLabel: 'AuditLogs',
+        editable: false,
+        name: 'auditlogs',
+        width: 1035,
+        height: 400,
+        autoScroll: true,
+        emptyText: ""
+    });
+
     var searchFilter = new Ext.form.Label({
         text : 'Enter Search Filter'
     });