Repository: oozie Updated Branches: refs/heads/master 9650a728d -> 4669d295f
OOZIE-2565 [Oozie web Console] Make the timezones in settings tab to be sorted by default (meetchandan via jaydeepvishwakarma) Project: http://git-wip-us.apache.org/repos/asf/oozie/repo Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/4669d295 Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/4669d295 Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/4669d295 Branch: refs/heads/master Commit: 4669d295f0089845fbe3af14e63e311494281ade Parents: 9650a72 Author: jvishwakarma <[email protected]> Authored: Sat Jul 30 18:48:20 2016 +0530 Committer: jvishwakarma <[email protected]> Committed: Sat Jul 30 18:48:20 2016 +0530 ---------------------------------------------------------------------- release-log.txt | 1 + webapp/src/main/webapp/oozie-console.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oozie/blob/4669d295/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 617c814..cef2405 100644 --- a/release-log.txt +++ b/release-log.txt @@ -1,5 +1,6 @@ -- Oozie 4.3.0 release (trunk - unreleased) +OOZIE-2565 [Oozie web Console] Make the timezones in settings tab to be sorted by default (meetchandan via jaydeepvishwakarma) OOZIE-2520 SortBy filter for ordering the jobs query results (abhishekbafna via jaydeepvishwakarma) OOZIE-2506 Add logs into RecoverService for logging information about queued commands (abhishekbafna via jaydeepvishwakarma) OOZIE-2515 Duplicate information for "Changing endtime/pausetime of a Bundle Job" in CommandLineTool wiki (abhishekbafna via jaydeepvishwakarma) http://git-wip-us.apache.org/repos/asf/oozie/blob/4669d295/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 b351704..11c6940 100644 --- a/webapp/src/main/webapp/oozie-console.js +++ b/webapp/src/main/webapp/oozie-console.js @@ -2532,7 +2532,8 @@ var timeZones_store = new Ext.data.JsonStore({ fields: ['timezoneDisplayName','timezoneId'], proxy: new Ext.data.HttpProxy({ url: getOozieBase() + 'admin' + "/available-timezones" - }) + }), + sortInfo : {field: "timezoneDisplayName", direction: "ASC"} }); timeZones_store.proxy.conn.timeout = 300000; timeZones_store.proxy.conn.method = "GET";
