Re: [PATCH v2 2/4] nmbug-status: Add meta.message-url config setting

2016-03-23 Thread W. Trevor King
On Wed, Mar 23, 2016 at 08:19:34AM -0300, David Bremner wrote: > W. Trevor King writes: > > from __future__ import print_function > > @@ -232,6 +232,10 @@ class Page (object): > > class HtmlPage (Page): > > _slug_regexp = re.compile('\W+') > > > > +def __init__(self, message_url_template

Re: [PATCH v2 2/4] nmbug-status: Add meta.message-url config setting

2016-03-23 Thread David Bremner
"W. Trevor King" writes: > from __future__ import print_function > @@ -232,6 +232,10 @@ class Page (object): > class HtmlPage (Page): > _slug_regexp = re.compile('\W+') > > +def __init__(self, message_url_template, **kwargs): > +self.message_url_template = message_url_templat

[PATCH v2 2/4] nmbug-status: Add meta.message-url config setting

2016-01-01 Thread W. Trevor King
So you can link to archives other than Gmane. For example, I'm doing this in [1]. [1]: https://github.com/wking/nmbug-oci --- NEWS | 20 devel/nmbug/nmbug-status | 13 ++--- 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/NEWS b/NE