Return-Path: X-Original-To: apmail-climate-commits-archive@minotaur.apache.org Delivered-To: apmail-climate-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 67BA818533 for ; Thu, 3 Sep 2015 22:15:39 +0000 (UTC) Received: (qmail 39692 invoked by uid 500); 3 Sep 2015 22:15:39 -0000 Delivered-To: apmail-climate-commits-archive@climate.apache.org Received: (qmail 39649 invoked by uid 500); 3 Sep 2015 22:15:39 -0000 Mailing-List: contact commits-help@climate.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@climate.apache.org Delivered-To: mailing list commits@climate.apache.org Received: (qmail 39637 invoked by uid 99); 3 Sep 2015 22:15:39 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Sep 2015 22:15:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2B3A4E7E80; Thu, 3 Sep 2015 22:15:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: boustani@apache.org To: commits@climate.apache.org Date: Thu, 03 Sep 2015 22:15:39 -0000 Message-Id: <5c1999c6a0fc424d8dd4fce4083c92fd@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] climate git commit: take out two coming soon items from CLI processing page Repository: climate Updated Branches: refs/heads/master a63049bfb -> a3f3eafcc take out two coming soon items from CLI processing page Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/7b9a3a85 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/7b9a3a85 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/7b9a3a85 Branch: refs/heads/master Commit: 7b9a3a859618460aa2566ea52c93e1fd314f7096 Parents: a63049b Author: Maziyar Boustani Authored: Thu Sep 3 14:56:43 2015 -0700 Committer: Maziyar Boustani Committed: Thu Sep 3 14:56:43 2015 -0700 ---------------------------------------------------------------------- ocw-cli/cli_app.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/7b9a3a85/ocw-cli/cli_app.py ---------------------------------------------------------------------- diff --git a/ocw-cli/cli_app.py b/ocw-cli/cli_app.py index 5f622d4..a668b68 100644 --- a/ocw-cli/cli_app.py +++ b/ocw-cli/cli_app.py @@ -1122,13 +1122,13 @@ def settings_screen(header): screen.addstr(11, x/2, "6 - Change Target dataset/s") screen.addstr(12, x/2, "7 - Change Metric") screen.addstr(13, x/2, "8 - Change Working Directory") - screen.addstr(14, x/2, "9 - Change Plot Title [Coming Soon....]") - screen.addstr(15, x/2, "10 - Save the processed data [Coming Soon....]") - screen.addstr(16, x/2, "11 - Show Temporal Boundaries") - screen.addstr(17, x/2, "12 - Show Spatial Boundaries") - screen.addstr(18, x/2, "0 - Return to Main Menu") - screen.addstr(20, x/2, "r - Run Evaluation") - screen.addstr(22, x/2, "Select an option: ") + #screen.addstr(14, x/2, "9 - Change Plot Title [Coming Soon....]") + #screen.addstr(15, x/2, "10 - Save the processed data [Coming Soon....]") + screen.addstr(14, x/2, "9 - Show Temporal Boundaries") + screen.addstr(15, x/2, "10 - Show Spatial Boundaries") + screen.addstr(16, x/2, "0 - Return to Main Menu") + screen.addstr(18, x/2, "r - Run Evaluation") + screen.addstr(20, x/2, "Select an option: ") screen.refresh() option = screen.getstr() @@ -1322,7 +1322,7 @@ def settings_screen(header): # screen.addstr(25, x/2, "Please enter plot title:") # plot_title = screen.getstr() - if option == '11': + if option == '9': models_start_time, models_end_time = get_models_temp_bound() line = 25 for i, model in enumerate(model_datasets): @@ -1340,7 +1340,7 @@ def settings_screen(header): screen.addstr(line, x/2 + 3, "Start:{0} - End:{1}".format(observations_start_time[i], observations_end_time[i])) screen.getstr() - if option == '12': + if option == '10': models_bound = get_models_spatial_bound() line = 25 for i, model in enumerate(model_datasets):