From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mail.openembedded.org (Postfix) with ESMTP id 4A38A6FFCD for ; Thu, 21 Jul 2016 15:58:57 +0000 (UTC) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga104.fm.intel.com with ESMTP; 21 Jul 2016 08:58:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,399,1464678000"; d="scan'208";a="999882833" Received: from linux.intel.com ([10.54.29.200]) by orsmga001.jf.intel.com with ESMTP; 21 Jul 2016 08:58:45 -0700 Received: from ed.fi.intel.com (ed.fi.intel.com [10.237.72.179]) by linux.intel.com (Postfix) with ESMTP id 1662A6A4006 for ; Thu, 21 Jul 2016 08:58:34 -0700 (PDT) From: Ed Bartosh To: bitbake-devel@lists.openembedded.org Date: Thu, 21 Jul 2016 18:58:37 +0300 Message-Id: X-Mailer: git-send-email 2.6.6 Subject: [PATCH 0/3] Prevent removal of all columns on tasks and recipe tables X-BeenThere: bitbake-devel@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussion that advance bitbake development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jul 2016 15:59:01 -0000 All of the columns for the tasks and recipes tables (sub-pages of the build-dashboard) are optional. This means you can remove all the columns for those tables and make them disappear from the page. Set the non-hideable columns and add some UI tests to check that those columns are disabled in the edit columns drop-down. The following changes since commit 0bf1a5a6c8d731a0f4f75091621dc999ee6d5ce1: toaster: fix download URL for task logs (2016-07-20 17:05:57 +0300) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ed/submit/elliot/toaster/9833-remove_columns http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/submit/elliot/toaster/9833-remove_columns Elliot Smith (3): toaster: set non-hideable columns for build tasks table toaster: set non-hideable columns for built recipes table toaster-tests: add tasks and recipes sub-page tests .../browser/test_builddashboard_page_recipes.py | 66 ++++++++++++++++++++++ .../browser/test_builddashboard_page_tasks.py | 65 +++++++++++++++++++++ bitbake/lib/toaster/toastergui/buildtables.py | 7 ++- 3 files changed, 137 insertions(+), 1 deletion(-) create mode 100644 bitbake/lib/toaster/tests/browser/test_builddashboard_page_recipes.py create mode 100644 bitbake/lib/toaster/tests/browser/test_builddashboard_page_tasks.py -- Regards, Ed From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 6F477E00C39; Thu, 21 Jul 2016 08:56:21 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -5.0 RCVD_IN_DNSWL_HI RBL: Sender listed at http://www.dnswl.org/, high * trust * [134.134.136.20 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 20D22E00C2D for ; Thu, 21 Jul 2016 08:56:19 -0700 (PDT) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 21 Jul 2016 08:56:19 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,399,1464678000"; d="scan'208";a="999881381" Received: from linux.intel.com ([10.54.29.200]) by orsmga001.jf.intel.com with ESMTP; 21 Jul 2016 08:56:19 -0700 Received: from ed.fi.intel.com (ed.fi.intel.com [10.237.72.179]) by linux.intel.com (Postfix) with ESMTP id 84FCD6A4006 for ; Thu, 21 Jul 2016 08:56:09 -0700 (PDT) From: Ed Bartosh To: toaster@yoctoproject.org Date: Thu, 21 Jul 2016 18:56:09 +0300 Message-Id: X-Mailer: git-send-email 2.6.6 Subject: [PATCH 0/3] Prevent removal of all columns on tasks and recipe tables X-BeenThere: toaster@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Web based interface for BitBake List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jul 2016 15:56:21 -0000 All of the columns for the tasks and recipes tables (sub-pages of the build-dashboard) are optional. This means you can remove all the columns for those tables and make them disappear from the page. Set the non-hideable columns and add some UI tests to check that those columns are disabled in the edit columns drop-down. The following changes since commit 0bf1a5a6c8d731a0f4f75091621dc999ee6d5ce1: toaster: fix download URL for task logs (2016-07-20 17:05:57 +0300) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ed/submit/elliot/toaster/9833-remove_columns http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/submit/elliot/toaster/9833-remove_columns Elliot Smith (3): toaster: set non-hideable columns for build tasks table toaster: set non-hideable columns for built recipes table toaster-tests: add tasks and recipes sub-page tests .../browser/test_builddashboard_page_recipes.py | 66 ++++++++++++++++++++++ .../browser/test_builddashboard_page_tasks.py | 65 +++++++++++++++++++++ bitbake/lib/toaster/toastergui/buildtables.py | 7 ++- 3 files changed, 137 insertions(+), 1 deletion(-) create mode 100644 bitbake/lib/toaster/tests/browser/test_builddashboard_page_recipes.py create mode 100644 bitbake/lib/toaster/tests/browser/test_builddashboard_page_tasks.py -- Regards, Ed