Re: [yocto] [PATCH V2] patchwork: Add a dockerfile for deploy patchwork and patchtest

2019-02-12 Thread Jose Lamego
Hi Randy, Sorry for the late response. I'm no longer involved with the Yocto Project. Last word I heard was that point of contact for Patchwork- related work was Paul Eggleton. Hope this helps. Jose On Mon, 2019-01-28 at 20:30 -0500, Randy MacLeod wrote: > On 1/16/19 12:37 AM,

[yocto] [rrs][PATCH] rrs_upstream_email: Update rrs maintainer info and logging

2017-10-17 Thread Jose Lamego
This change updates rrs maintainer contact data and adds script start and end log messages. Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- rrs/tools/rrs_upstream_email.py | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rrs/tools/rrs_upstream_email.py

[yocto] [rrs][PATCH] rrs_upstream_email: Update rrs maintainer info and logging

2017-10-17 Thread Jose Lamego
This change updates rrs maintainer contact data and adds script start and end log messages. Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- rrs/tools/rrs_upstream_email.py | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rrs/tools/rrs_upstream_email.py

[yocto] [rrs][PATCH] local.conf: inherit distrodata

2017-10-17 Thread Jose Lamego
complete recipe information is available from distrodata. This change inherits distrodata into RRS configuration. Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- conf/local.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/conf/local.conf b/conf/local.conf index b

[yocto] [rrs][PATCH] rrs_maintainer_history: update maintainers.inc path

2017-10-17 Thread Jose Lamego
maintainers.inc was moved to oe-core in commit 9559eee2a7facf871a718541836643b03fb66d9e This change updates maintainers.inc path to new location in meta directory. Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- rrs/tools/rrs_maintainer_history.py | 2 +- 1 file chan

[yocto] [rrs][PATCH] README.rrs: update rrs maintainer data

2017-10-17 Thread Jose Lamego
This change updates rrs maintainer contact data. Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- README.rrs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rrs b/README.rrs index d8dd926..a60b8c4 100644 --- a/README.rrs +++ b/README.rrs @@ -52,4

[yocto] [patchwork][PATCH] patchwork/templates/patchwork/series.html: Add link column

2017-09-07 Thread Jose Lamego
nd labeled with the patch id, that can be copied or clicked to displayed the patch detail on a new tab. [YOCTO #11888] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/templates/patchwork/series.html | 4 1 file changed, 4 insertions(+) diff --git a/patchwork/templates/patch

[yocto] [patchwork][PATCH] htdocs/js/series.js: Style active tab in series data bar

2017-09-06 Thread Jose Lamego
There is no visual indication on which is the active tab at the Series data bar, providing a poor UX. This change adds the "active" styling to the Series data bar. [YOCTO #11886] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- htdocs/js/series.js | 11 +--

[yocto] [patchwork][PATCH] htdocs/js/series.js: Default to cover letter view only if one is available

2017-09-06 Thread Jose Lamego
at the Series view and the Cover letter tab will include a "N/A" legend and an informative tooltip when hover over the mouse cursor. [YOCTO #11887] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- htdocs/js/series.js | 13 +++-- 1 file changed, 11 insertions

[yocto] [patchwork][PATCH] htdocs/css/style.css: fix select style in FF and IE

2017-09-06 Thread Jose Lamego
layed next to the "Revision" select element when using FF). This change hides the out-of-style items by using browser-specific css properties "moz-appearance" and "ms-expand". [YOCTO #11886] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- htdocs/

[yocto] [patchwork][PATCH] parsemail: keep branch name in subject for series

2017-09-06 Thread Jose Lamego
name list from the Yocto wiki and keeps the release name in the series naming/search, effectively creating individual series for patches targeted to diferent releases. [YOCTO #10716] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/bin/parsemail.p

[yocto] [patchwork][PATCH V2] tools/test-series: automate test-build process for series

2017-08-14 Thread Jose Lamego
be queried at the autobuilder api using the "reason" field, where the script includes the tested series' ID and the date when it was started as unique identifier. [YOCTO #8714] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- Notes: Changes in V2:

[yocto] [patchwork][RFC][PATCH] tools/test-series: automate test builds for series

2017-08-08 Thread Jose Lamego
as unique identifier. [YOCTO #8714] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- tools/test-series | 530 ++ 1 file changed, 530 insertions(+) create mode 100755 tools/test-series diff --git a/tools/test-series b/tools

Re: [yocto] [layerindex-web][PATCH v2] layerindex/views: support querying by layer name

2017-06-15 Thread Jose Lamego
ping On 05/31/2017 03:47 PM, Jose Lamego wrote: > This change supports querying recipes that belong to a specific layer > by using the prefix "layer:" + the desired layer name, for example: > "layer: openembedded-core" and this string can be used by itself or &g

[yocto] [yocto-autobuilder][PATCH] forcebuild: allow build with default options

2017-06-01 Thread Jose Lamego
From: Anibal Limon <anibal.li...@linux.intel.com> A forced build fails if no options are passed through command line (using "-o OPTIONS"). This change allows build to use default options if none are passed at the command line. Signed-off-by: Jose Lamego <jose.a.lam...@linux.

[yocto] [layerindex-web][PATCH v2] layerindex/views: support querying by layer name

2017-05-31 Thread Jose Lamego
ge is displayed when the query string has an unexpected formatting or a non-valid layer name is searched. [YOCTO #6618] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- layerindex/views.py | 17 - 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/layeri

[yocto] [patchwork][PATCH v5] models.py: Improve Series naming when no cover letter is provided

2017-05-04 Thread Jose Lamego
that may be present. [YOCTO #11305] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- Notes: Changes in V5: Fixed argument formatting in re.sub function Changes in V4: use group naming in regex instead of integer indexing for readibility purposes Changes

[yocto] [patchwork][PATCH v4] models.py: Improve Series naming when no cover letter is provided

2017-05-03 Thread Jose Lamego
that may be present. [YOCTO #11305] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- Notes: Changes in V4: use group naming in regex instead of integer indexing for readibility purposes Changes in V3: remove the number/order prefix without changing any other

[yocto] [patchwork][PATCH v3] models.py: Improve Series naming when no cover letter is provided

2017-05-02 Thread Jose Lamego
that may be present. [YOCTO #11305] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- Notes: Changes in V3: remove the number/order prefix without changing any other other existing prefix, as this may be required for mapping the patch to additional branches othe

[yocto] [patchwork][PATCH v2] models.py: Improve Series naming when no cover letter is provided

2017-04-17 Thread Jose Lamego
. [YOCTO #11305] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- Notes: Changes in v2: Ommit all of the prefixes that may be present in first patch to name the series patchwork/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patchwork/model

[yocto] [[patchwork][PATCH] models.py: Improve Series naming when no cover letter is provided

2017-04-07 Thread Jose Lamego
that may be present. [YOCTO #11305] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patchwork/models.py b/patchwork/models.py index ddc3254..8b72f4a 100644 --- a/patchwork/models.py

[yocto] [patchwork][PATCH v4] parsemail.py: Improve find_series_for_mail

2017-04-06 Thread Jose Lamego
by performing an additional patch-query and detecting cover letters that are replies to cover letters. [YOCTO #10959] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- Notes: Changes in version 4: Only consider messages with Subject starting with "[" as possible cover le

[yocto] [patchwork][PATCH v2] create-pull-request: add "-t in-reply-to" option

2017-04-05 Thread Jose Lamego
, but as a new thread instead. This change adds the "[-t in_reply_to]" option, where "in_reply_to" is the original cover letter's Message-Id, so this reference is added to the new cover letter to ensure the thread continuity. [YOCTO #11294] Signed-off-by: Jose Lamego <jose.a

[yocto] [patchwork][PATCH] parsemail.py: Improve clean_subject function

2017-04-04 Thread Jose Lamego
bject line is not sepparated from following word and adding a space between them. Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/bin/parsemail.py | 6 ++ 1 file changed, 6 insertions(+) diff --git a/patchwork/bin/parsemail.py b/patchwork/bin/parsemail.py index 3c3046d

[yocto] [patchwork][PATCH v2] parsemail.py: Improve find_series_for_mail

2017-03-30 Thread Jose Lamego
by performing an additional patch-query and detecting cover letters that are replies to cover letters. [YOCTO #10959] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/bin/parsemail.py | 20 +--- 1 file changed, 17 insertions(+), 3 deletions(-) diff

[yocto] [patchwork][PATCH] parsemail.py: Improve find_series_for_mail

2017-03-30 Thread Jose Lamego
by performing an additional patch-query and detecting cover letters that are replies to cover letters. [YOCTO #10959] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/bin/parsemail.py | 19 --- 1 file changed, 16 insertions(+), 3 deletions(-) diff

[yocto] [patchwork][PATCH] parsemail.py: Improve status-change-through-email

2017-03-28 Thread Jose Lamego
-generated message if an attempt was made through a message using an email address not recognized neither as project maintainer or series submitter in patchwork. [YOCTO #11027] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/bin/parsemail.p

[yocto] [patchwork][PATCH 2/2] pagination.html: Add archive parameter to links

2017-03-27 Thread Jose Lamego
paginator links do not include current "archive" status parameter, which may lead to inaccurate data displayed in next views. This change includes "archive" parameter from the paginator class to all of the pagination links. [YOCTO #11200] Signed-off-by: Jos

[yocto] [patchwork][PATCH 0/2] patchwork: keep archive query parameter in views

2017-03-27 Thread Jose Lamego
patchwork pagination links do not keep "archive" filtering parameter, which may lead to inaccurate data displayed in the next views. These changes read the "archive" parameter from current GET request and add it to the pagination links. [YOCTO #11200] Jose Lamego (2): pa

Re: [yocto] [layerindex-web][PATCH 2/2] views.py: Consider layer name in recipe search

2017-03-13 Thread Jose Lamego
Ping. On 01/18/2017 04:19 PM, Jose Lamego wrote: > From: Alex Franco <alejandro.fra...@linux.intel.com> > > Recipe search cannot be narrowed to a specific layer, producing > unnecessary results. > > This change allows including a layers name when searching for recipes

[yocto] [patchwork][PATCH] series.py: return bundle objects only when authenticated

2017-03-09 Thread Jose Lamego
of trying to access the database. Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/views/series.py | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/patchwork/views/series.py b/patchwork/views/series.py index cb3b721..765d2e5 100644 --- a/patchwork

[yocto] [patchwork][PATCH 3/3] patch-list: call tablecheckbox plugin from patch-list

2017-02-28 Thread Jose Lamego
This change calls the tablecheckbox.js plugin to add functionality in a patch-list to allow user to select single / multiple / all table row(s) by clicking. [YOCTO #10819] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/templates/patchwork/patch-list.html | 2 ++

[yocto] [patchwork][PATCH 2/3] jquery.tablecheckbox: add plugin for multiselect functionality

2017-02-28 Thread Jose Lamego
Selecting multiple items in a patch list must be done manually, one item at a time, resulting in a poor user experience. This change adds the jquery.tablecheckbox.js plugin that allows to select single / multiple / all table row(s) by clicking. [YOCTO #10819] Signed-off-by: Jose Lamego

[yocto] [patchwork][PATCH 1/3] series.js: support shift-select range

2017-02-28 Thread Jose Lamego
-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- htdocs/js/series.js | 31 +++ 1 file changed, 31 insertions(+) diff --git a/htdocs/js/series.js b/htdocs/js/series.js index c4bbb0e..6571b0e 100644 --- a/htdocs/js/series.js +++ b/htdocs/js/series.js @@ -82,6

[yocto] [patchwork][PATCH 0/3] Support range select in patch-list

2017-02-28 Thread Jose Lamego
specific to the series view is used to provide the mentioned feature too. [YOCTO #10819] Jose Lamego (3): series.js: support shift-select range jquery.tablecheckbox: add plugin for multiselect functionality patch-list: call tablecheckbox plugin from patch-list htdocs/js

[yocto] [patchwork][PATCH 2/3] series.html: add patch and bundle edition forms and checkboxes

2017-02-27 Thread Jose Lamego
This change adds patch and bundle edition forms, and patch selection checkboxes. [YOCTO #10822] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/templates/patchwork/series.html | 172 ++ 1 file changed, 130 insertions(+), 42 deletions(-)

[yocto] [patchwork][PATCH 3/3] series.js: add patch-selection-checkbox control functions

2017-02-27 Thread Jose Lamego
This change adds control functions for individual and multiple selection checkboxes. [YOCTO #10822] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- htdocs/js/series.js | 145 1 file changed, 125 insertions(+), 20 del

[yocto] [patchwork][PATCH 1/3] series.py: add patch and bundle edition actions to view

2017-02-27 Thread Jose Lamego
This change adds patch and bundle edition actions to the series view. [YOCTO # 10822] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/views/series.py | 88 --- 1 file changed, 52 insertions(+), 36 deletions(-) diff

[yocto] [patchwork][PATCH 0/3] Series: Add multiple select/change controls

2017-02-27 Thread Jose Lamego
and new bundle creation. [YOCTO #10822] Jose Lamego (3): series.py: add patch and bundle edition actions to view series.html: add patch and bundle edition forms and checkboxes series.js: add patch-selection-checkbox control functions htdocs/js/series.js | 145

[yocto] [patchwork][PATCH] parsemail: Split PATCH prefix if not single

2017-02-10 Thread Jose Lamego
is not sepparated from following word and adding a space between them. [YOCTO #10823] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/bin/parsemail.py | 7 +++ 1 file changed, 7 insertions(+) diff --git a/patchwork/bin/parsemail.py b/patchwork/bin/parsemail.py

[yocto] [patchwork][PATCH] parsemail: Process email with duplicated message-id

2017-02-08 Thread Jose Lamego
email content in new message is different from that in the existing patch. [YOCTO #10756] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/bin/parsemail.py | 16 ++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/patchwork/bin/parsemai

[yocto] [patchwork][PATCH v2 0/2] Series-view: Enable status/bundle edition

2017-02-07 Thread Jose Lamego
These changes enable patch status updating, adding a patch to an existing bundle and creating a new bundle from the series view. [YOCTO #10973] Changes in v2: Fixed javascript formatting and pep8 compliance. Jose Lamego (2): series.js: Get patch id and pass it to POST request series.py: Add

[yocto] [patchwork][PATCH v2 2/2] series.py: Add POST call

2017-02-07 Thread Jose Lamego
Current series view is missing a POST call, avoiding users to update or edit patch status or bundles. This change adds POST call to series view, including the target patch id, which is taken from request context. [YOCTO #10973] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.

[yocto] [patchwork][PATCH v2 1/2] series.js: Get patch id and pass it to POST request

2017-02-07 Thread Jose Lamego
] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- htdocs/js/series.js | 25 +++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/htdocs/js/series.js b/htdocs/js/series.js index 4f4f477..bd75790 100644 --- a/htdocs/js/series.js +++ b/htdocs/js/ser

[yocto] [patchwork][PATCH 2/2] series.py: Add POST call

2017-01-30 Thread Jose Lamego
Current view is missing a POST call, avoiding users to update or edit patch status or bundles. This change adds POST call to series view, including the target patch id, which is taken from request context. [YOCTO #10973] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- pat

[yocto] [patchwork][PATCH 1/2] series.js: Get patch id and pass it to POST request

2017-01-30 Thread Jose Lamego
] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- htdocs/js/series.js | 24 ++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/htdocs/js/series.js b/htdocs/js/series.js index 4f4f477..1795bc3 100644 --- a/htdocs/js/series.js +++ b/htdocs/js/ser

[yocto] [patchwork][PATCH 0/2] Series-view: Enable status/bundle edition

2017-01-30 Thread Jose Lamego
This changes enable patch status updating, adding a patch to an existing bundle and creating a new bundle from the series view. [YOCTO #10973] Jose Lamego (2): series.js: Get patch id and pass it to POST request series.py: Add POST call htdocs/js/series.js | 24

Re: [yocto] [layerindex-web][PATCH 2/2] views.py: Consider layer name in recipe search

2017-01-24 Thread Jose Lamego
ping On 01/18/2017 04:31 PM, Jose Lamego wrote: > From: Alex Franco <alejandro.fra...@linux.intel.com> > > Recipe search cannot be narrowed to a specific layer, producing > unnecessary results. > > This change allows including a layers name when searching for recipes

Re: [yocto] [layerindex-web][PATCH 1/2] views.py: Redirect to recipe details for single results

2017-01-24 Thread Jose Lamego
ping On 01/18/2017 04:31 PM, Jose Lamego wrote: > From: Alex Franco <alejandro.fra...@linux.intel.com> > > When a recipe search returns only one result, clicking the single > result at the results view is still required to view further > recipe detail. > > This cha

[yocto] [patchwork][PATCH] parsemail: Set patch state from email metadata

2017-01-24 Thread Jose Lamego
"[Patchwork-Status: ]" [YOCTO #10624] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/bin/parsemail.py | 31 +++ 1 file changed, 31 insertions(+) diff --git a/patchwork/bin/parsemail.py b/patchwork/bin/parsemail.py index

Re: [yocto] [OE-core] [Openembedded-architecture] Patchwork and incoming patch testing

2017-01-18 Thread Jose Lamego
I was replying to the wrong mailing list. Sorry for the spam. :( On 01/18/2017 04:40 PM, Jose Lamego wrote: > > On 01/18/2017 08:52 AM, Leonardo Sandoval wrote: >> + Jose Lamego >> >> >> Jose is doing recent work on the patchwork UI, perhaps there are already >&g

[yocto] [layerindex-web][PATCH 1/2] views.py: Redirect to recipe details for single results

2017-01-18 Thread Jose Lamego
eturns a single result. [YOCTO #6618] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- layerindex/views.py | 8 1 file changed, 8 insertions(+) diff --git a/layerindex/views.py b/layerindex/views.py index 0f73e93..03fadbb 100644 --- a/layerindex/views.py +++ b/layerin

[yocto] [layerindex-web][PATCH 2/2] views.py: Consider layer name in recipe search

2017-01-18 Thread Jose Lamego
y call in the recipe search view. [YOCTO #6618] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- layerindex/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/layerindex/views.py b/layerindex/views.py index 03fadbb..5db6fbc 100644 --- a/layerindex/vi

[yocto] [layerindex-web][PATCH 0/2] Improvements to recipe search

2017-01-18 Thread Jose Lamego
These changes improve recipe searches in the OpenEmbedded Layer Index by allowing the layer name to be include as parameter to search and automatically redirecting to the recipe details view when a single result is yielded. [YOCTO #6618] Alex Franco (2): views.py: Redirect to recipe details

[yocto] [patchwork][PATCH] patchwork/bin/parsemail: Improve new patch filtering

2017-01-11 Thread Jose Lamego
From: Jose Lamego <jose.a.lam...@intel.com> Patchwork may incorrectly identify emails containing patch-like content or that are replies/forwards from a previous message as patches, thus wrongly creating a new series revision. This change makes "[PATCH" prefix in subject mand

Re: [yocto] [patchwork][PATCH] patchwork/bin/parsemail: Make "[PATCH" prefix mandatory

2017-01-09 Thread Jose Lamego
"How to submit a patch to OpenEmbedded": http://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded Please provide feedback on this approach before I implement a test in the staging instance. -- Jose Lamego | OTC Embedded Platforms & Tools | GDC signature.asc Description: OpenPGP digita

Re: [yocto] [patchwork][PATCH] patchwork/templates/patchwork/series: Improve series view

2017-01-09 Thread Jose Lamego
On 01/09/2017 02:30 PM, Khem Raj wrote: > On Mon, Jan 9, 2017 at 12:21 PM, Jose Lamego > <jose.a.lam...@linux.intel.com> wrote: >> >> >> On 01/09/2017 12:44 PM, Khem Raj wrote: >>> On Fri, Jan 6, 2017 at 6:50 AM, Jose Lamego >>> <jose.a.la

Re: [yocto] [patchwork][PATCH] patchwork/templates/patchwork/series: Improve series view

2017-01-09 Thread Jose Lamego
On 01/09/2017 12:44 PM, Khem Raj wrote: > On Fri, Jan 6, 2017 at 6:50 AM, Jose Lamego > <jose.a.lam...@linux.intel.com> wrote: >> From: Jose Lamego <jose.a.lam...@intel.com> >> >> Reviewing patches from a series requires heavy usage of the >> brows

[yocto] [patchwork][PATCH] patchwork/bin/parsemail: Make "[PATCH" prefix mandatory

2017-01-06 Thread Jose Lamego
Patchwork may incorrectly identify emails containing patch-like content as patches. This change makes "[PATCH" prefix in subject mandatory for emails to be considered as new patches. [YOCTO #10764] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/bin/

[yocto] [patchwork][PATCH] patchwork/templates/patchwork/series: Improve series view

2017-01-06 Thread Jose Lamego
From: Jose Lamego <jose.a.lam...@intel.com> Reviewing patches from a series requires heavy usage of the browser navigation buttons, providing a poor UX. This changes allows viewing content from each patch in a series, without leaving the series view. [YOCTO #10627] Signed-off-by: Jose

Re: [yocto] [patchwork][PATCH v4] patchwork.models: Include first patch's name in series name

2016-12-05 Thread Jose Lamego
On 12/05/2016 02:30 AM, Patrick Ohly wrote: > On Fri, 2016-12-02 at 14:29 -0600, Jose Lamego wrote: >> Patch Series created without a cover letter are named using a >> non-descriptive generic string. >> >> This change names the series using either the first 30 cha

[yocto] [patchwork][PATCH v4] patchwork.models: Include first patch's name in series name

2016-12-02 Thread Jose Lamego
Patch Series created without a cover letter are named using a non-descriptive generic string. This change names the series using either the first 30 characters in patch #1 plus the remaining patches number, or the patch name for one-patch (1/1) series. [YOCTO #10625] Signed-off-by: Jose Lamego

[yocto] [patchwork][PATCH v3] patchwork.models: Include first patch's name in series name

2016-11-30 Thread Jose Lamego
Patch Series created without a cover letter are named using a non-descriptive generic string. This change names the series using either the first 30 characters in patch #1 plus the remaining patches number, or the patch name for one-patch (1/1) series. [YOCTO #10625] Signed-off-by: Jose Lamego

[yocto] [patchwork][PATCH v2] patchwork/models: Include first patch's name in series name

2016-11-30 Thread Jose Lamego
Patch Series created without a cover letter are named using a non-descriptive generic string. This change names the series using either the first 30 characters in patch #1 plus the remaining patches number, or the patch name for one-patch (1/1) series. [Yocto #10625] Signed-off-by: Jose Lamego

[yocto] [patchwork][PATCH] README: Describe repository and links

2016-11-25 Thread Jose Lamego
This change creates the README file with repository description and links. Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- README | 17 + 1 file changed, 17 insertions(+) create mode 100644 README diff --git a/README b/README new file mode 100644 index 0

[yocto] [patchwork][PATCH] patchwork.models: Include first patch's name in series name

2016-11-24 Thread Jose Lamego
Patch Series created without a cover letter are named using a non-descriptive generic string. This change names the series using the first 30 characters in patch #1 and the remaining patches number. [Yocto #10625] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- pat

[yocto] [patchwork][PATCH 2/2] patchwork.bin.parsemail: Improve pull-request regex

2016-11-24 Thread Jose Lamego
Some patch messages containinig pull-request information are being skipped due to formatting variations. This change improves the pull-request search to include those small variants. Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/bin/parsemail.py | 4 ++--

[yocto] [patchwork][PATCH 1/2] patchwork.bin.parsemail: Use oldest header references

2016-11-24 Thread Jose Lamego
-request script to be appropriately appended to last revision. [Yocto #9941] Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- patchwork/bin/parsemail.py | 15 --- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/patchwork/bin/parsemail.py b/patchwo

[yocto] [patchwork][PATCH 0/2] Parsemail: Improve references/pull-request search

2016-11-24 Thread Jose Lamego
These changes are to improve the way email-chain references are created and pull-request information to be included even with small formatting variations. Jose Lamego (2): patchwork.bin.parsemail: Use oldest header references patchwork.bin.parsemail: Improve pull-request regex patchwork/bin

Re: [yocto] [PATCH 1/3][eclipse-poky][mars] systemtap: Add button to browse to build folder.

2016-03-19 Thread Jose Lamego
Ping On 03/09/2016 05:22 PM, Jose Lamego wrote: > From: Adrian Dudau <adrian.du...@enea.com> > > Fixes [Yocto 4423] > Porting commit a80114b5d1c8d774fd9271da48a38654321d4817 from > the Juno branch. > > Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com>

[yocto] [PATCH 3/3][eclipse-poky][kepler] systemtap: Add button to browse to build folder.

2016-03-09 Thread Jose Lamego
From: Adrian Dudau <adrian.du...@enea.com> Fixes [Yocto 4423] Porting commit a80114b5d1c8d774fd9271da48a38654321d4817 from the Juno branch. Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- .../src/org/yocto/remote/utils/ShellSession.java | 6 +++-- .../src/o

[yocto] [PATCH 2/3][eclipse-poky][luna] systemtap: Add button to browse to build folder.

2016-03-09 Thread Jose Lamego
From: Adrian Dudau <adrian.du...@enea.com> Fixes [Yocto 4423] Porting commit a80114b5d1c8d774fd9271da48a38654321d4817 from the Juno branch. Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- .../src/org/yocto/remote/utils/ShellSession.java | 6 +++-- .../src/o

[yocto] [PATCH 1/3][eclipse-poky][mars] systemtap: Add button to browse to build folder.

2016-03-09 Thread Jose Lamego
From: Adrian Dudau <adrian.du...@enea.com> Fixes [Yocto 4423] Porting commit a80114b5d1c8d774fd9271da48a38654321d4817 from the Juno branch. Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- .../src/org/yocto/remote/utils/ShellSession.java | 6 +++-- .../src/o

[yocto] [eclipse-poky][PATCH] OptionsPage.java: Allow BC Project name to be other than poky folder

2015-11-30 Thread Jose Lamego
Fixes [Yocto 8407] This change allows a new Yocto Project Bitbake Commander project to be named as desired, not as the poky folder. Signed-off-by: Jose Lamego <jose.a.lam...@linux.intel.com> --- .../src/org/yocto/bc/ui/wizards/install/OptionsPage.java | 12 1 file chan