[Python-ideas] Re: python-ideas is now running on Mailman 3

2019-06-06 Thread Mark Sapiro
On 6/6/19 12:32 PM, Brett Cannon wrote:
> 
> 
> On Thu, Jun 6, 2019 at 2:15 AM Paul Moore  
> Also, on the distutils-sig setup, an extra footer:
> 
> Message archived at
> 
> https://mail.python.org/archives/list/distutils-...@python.org/message/YN3DHLPXVH5RYLV2P4QJFSWHC6KKRGNH/
> 
> was added to the setup. This is really useful - is there any chance it
> could be added to the other lists as well (here, python-dev, etc)?
> 
> 
> I don't control python-dev, so that's up those admins.
> 
> I could add it, but I would have to reconstruct the footer for Mailman 3
> as the current ones are on-disk and not exposed to the UI, so I have to
> basically override what's currently there.

I have just added the

Message archived at ${hyperkitty_url}

line to the message (non-digest) footer for python-committers,
python-dev and python-ideas.

As Brett indicates, there is a hierarchy of list specific, domain
specific, site wide and default templates that is searched.  Editing any
of these requires sufficient access to mail.python.org.

Additionally, templates for a list can be specified by list admins via
the Postorius web UI, but at present if you want to create a custom
template via Postorius, you have to build it from scratch. It would be
better if Postorius gave you the current template as a starting point,
but it only does that if you are editing a previously created Postorius
template, not if you are creating a new one.

-- 
Mark Sapiro The highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan
___
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/HBBZF6DIPDISNPXPLGZ5XBUMJCBFHPJY/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-ideas] Re: python-ideas is now running on Mailman 3

2019-06-06 Thread Mark Sapiro
Christoph Groth wrote:
> 
> I noticed a small problem: it seems that identation of code snippets
> gets lost in the web view.  For example:
> 
> def inc(a):
> return a + 1
> 
> Could something be done about this?

See https://gitlab.com/mailman/hyperkitty/issues/239#note_178646125
Python-Ideas mailing list -- python-dev(a)python.org
To unsubscribe send an email to python-ideas-leave(a)python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/


[Python-ideas] Re: python-ideas is now running on Mailman 3

2019-06-06 Thread Stephen J. Turnbull


 > I'll consider doing that once I understand how Hyperkitty's richt text
 > support works.

*sigh*

Filed: https://gitlab.com/mailman/hyperkitty/issues/239

Reply-To set to Mailman Developers.  Discussion there if you want to
work on it.

Steve
Python-Ideas mailing list -- python-dev(a)python.org
To unsubscribe send an email to python-ideas-leave(a)python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/


[Python-ideas] Re: python-ideas is now running on Mailman 3

2019-06-06 Thread Paul Moore
On Wed, 5 Jun 2019 at 20:05, Pradyun Gedam  wrote:
>
> On Wed, 5 Jun 2019 at 10:52 PM, Brett Cannon  wrote:
>>
>> https://mail.python.org/mailman3/lists/python-ideas.python.org/
>> ___
>> Python-ideas mailing list -- python-ideas@python.org
>> To unsubscribe send an email to python-ideas-le...@python.org
>> %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s
>> Code of Conduct: http://python.org/psf/codeofconduct/
>
>
> This is great news! :D
>
> FWIW, it seems the trailing text added by mailman is not getting formatted 
> properly.
>
> Pradyun
>
> Python-Ideas mailing list -- python-dev(a)python.org
> To unsubscribe send an email to python-ideas-leave(a)python.org
> https://mail.python.org/mailman3/lists/python-ideas.python.org/

Indeed it is :-) I'm not 100% sure what incorrect formatting you were
referring to, but there seem to be 2 different issues - in Brett's
original email, the URL was not being formatted correctly, but in
Pradyun's, the trailer didn't have a separating line.

Also, on the distutils-sig setup, an extra footer:

Message archived at
https://mail.python.org/archives/list/distutils-...@python.org/message/YN3DHLPXVH5RYLV2P4QJFSWHC6KKRGNH/

was added to the setup. This is really useful - is there any chance it
could be added to the other lists as well (here, python-dev, etc)?

Paul
Python-Ideas mailing list -- python-dev(a)python.org
To unsubscribe send an email to python-ideas-leave(a)python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/


[Python-ideas] Re: python-ideas is now running on Mailman 3

2019-06-06 Thread Christoph Groth
Abhilash Raj wrote:

> There is rich text support on the way, but there are some quirks
> remaining to be fixed.

Is it documented anywhere?  I couldn't find anything, only your issue
https://gitlab.com/mailman/hyperkitty/issues/225.

>  You could open a bug report

I'll consider doing that once I understand how Hyperkitty's richt text
support works.
Python-Ideas mailing list -- python-dev(a)python.org
To unsubscribe send an email to python-ideas-leave(a)python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/


[Python-ideas] Re: python-ideas is now running on Mailman 3

2019-06-05 Thread Abhilash Raj
Hi,

You could open a bug report about it at 
https://gitlab.com/mailman/hyperkitty/issues

Would be nice if you could include the raw message that you sent, or if you 
posted from the web, then just mention that.

There is rich text support on the way, but there are some quirks remaining to 
be fixed.

Abhilash
Python-Ideas mailing list -- python-dev(a)python.org
To unsubscribe send an email to python-ideas-leave(a)python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/


[Python-ideas] Re: python-ideas is now running on Mailman 3

2019-06-05 Thread Christoph Groth
Thanks for moving python-ideas to Mailman 3.  To me this is the best of
two worlds.

I noticed a small problem: it seems that identation of code snippets
gets lost in the web view.  For example:

def inc(a):
return a + 1

Could something be done about this?
Python-Ideas mailing list -- python-dev(a)python.org
To unsubscribe send an email to python-ideas-leave(a)python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/


[Python-ideas] Re: python-ideas is now running on Mailman 3

2019-06-05 Thread Pradyun Gedam
On Wed, 5 Jun 2019 at 10:52 PM, Brett Cannon  wrote:

> https://mail.python.org/mailman3/lists/python-ideas.python.org/
> ___
> Python-ideas mailing list -- python-ideas@python.org
> To unsubscribe send an email to python-ideas-le...@python.org
> %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s
> Code of Conduct: http://python.org/psf/codeofconduct/


This is great news! :D

FWIW, it seems the trailing text added by mailman is not getting formatted
properly.

Pradyun

> 
Python-Ideas mailing list -- python-dev(a)python.org
To unsubscribe send an email to python-ideas-leave(a)python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/