On Mon, 2016-06-13 at 11:41 +0100, Stephen Finucane wrote: > Add a series model. This model is intentionally very minimal to allow > as much dynaminism as possible. It is expected that patches will be > migrated between series as new data is provided. > > Signed-off-by: Stephen Finucane <[email protected]> > ---
<snip> > diff --git a/patchwork/models.py b/patchwork/models.py > index 9ad2bcb..67ea012 100644 > --- a/patchwork/models.py > +++ b/patchwork/models.py > @@ -37,6 +37,9 @@ from django.utils.six.moves import filter > from patchwork.fields import HashField > from patchwork.parser import extract_tags, hash_patch > > +SERIES_REVISION_DEFAULT_NAME = 'Unnamed Series Revision' > +SERIES_DEFAULT_NAME = 'Unnamed Series' > + > Having multiple series revisions without a cover letter appear the same is a problem. If there are multiple series next to each other in the patch view, it's visually difficult to tell them apart, even though they link to different places. Perhaps series without a cover letter could instead be named after the first patch in the series, prefixed with "Series starting with" or "[Missing cover letter]", or something? _______________________________________________ Patchwork mailing list [email protected] https://lists.ozlabs.org/listinfo/patchwork
