Re: [PATCH v2] models: Use database constraints to prevent split Series

2019-10-21 Thread Stephen Finucane
On Sat, 2019-10-19 at 00:57 +1100, Daniel Axtens wrote: > > Closes: #241 > > I'm not sure this is quite correct, sadly. Using the parallel parser I > posted, I see a difference in the number of series created by parsing in > parallel and parsing serially. > > # serial (-j1) > > > >

[PATCH 1/2] [PW3] tests: Fix escaping in bundle tests on Django 3.0

2019-10-21 Thread Andrew Donnellan
Django 3.0 switches to using Python 3's built-in HTML escaper, which prefers to escape entities using hex rather than decimal. Some of our tests check rendered HTML output against pre-escaped strings, and fail because '' is now ''. Fix this by using the escape function so we get consistent

[PATCH 2/2] [PW3] tox: Add Django 3.0b1

2019-10-21 Thread Andrew Donnellan
Now that we've dropped Python 2, we can get ready for Django 3.0. Add Django 3.0b1 as a tox environment. Closes: #311 ("Django 3.0 support") Signed-off-by: Andrew Donnellan --- Not adding upper bounds on the version numbers until 3.0 actually drops. I'm considering this as closing the issue

Re: RFE: use patchwork to submit a patch

2019-10-21 Thread Laurent Pinchart
Hi Steven, On Tue, Oct 15, 2019 at 12:47:49PM -0400, Steven Rostedt wrote: > On Tue, 15 Oct 2019 19:37:04 +0300 Laurent Pinchart wrote: > > > But how far could we push this reasoning ? I've worked for a company > > whose corporate policy was that all source code had to be stored in SVN, > > not

RE: [PATCH] sql: Fix table lists

2019-10-21 Thread Ali Alnubani
Hi Stephen, > -Original Message- > From: Stephen Finucane > Sent: Sunday, September 8, 2019 8:51 PM > To: Ali Alnubani ; patchwork@lists.ozlabs.org > Cc: Thomas Monjalon > Subject: Re: [PATCH] sql: Fix table lists > > On Sun, 2019-09-08 at 07:13 +, Ali Alnubani wrote: > > Thanks

[PATCH] docs: Fix link to deployment guide

2019-10-21 Thread Ali Alnubani
The old format redirects to a nonexistent page when there are multiple versions of the docs. Signed-off-by: Ali Alnubani --- docs/development/installation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/development/installation.rst

[PATCH] docs: Fix note about the required Postfix rights

2019-10-21 Thread Ali Alnubani
The permissions for the user running the postfix process are not the ones used for external file or command delivery by default. The ones defined by default_privs are (in case the aliases(5) file that is owned by root was being used). A privileged user or the postfix owner should not be used in

[PATCH 1/2] templates: Move download buttons outside h1 tag

2019-10-21 Thread Andrew Donnellan
It's not valid to put a inside an . Move the download buttons in the submission template outside the tag. Signed-off-by: Andrew Donnellan --- patchwork/templates/patchwork/submission.html | 9 +++-- 1 file changed, 3 insertions(+), 6 deletions(-) diff --git

[PATCH 2/2] templates: Fix mismatched close tags

2019-10-21 Thread Andrew Donnellan
There's a rather than in the bundle list. Fix it. Signed-off-by: Andrew Donnellan --- patchwork/templates/patchwork/bundles.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patchwork/templates/patchwork/bundles.html b/patchwork/templates/patchwork/bundles.html index