python-ideas is now running on Mailman 3
On Wed, 5 Jun 2019 at 10:52 PM, Brett Cannon <brett@python.org> 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-leave@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
On Wed, 5 Jun 2019 at 20:05, Pradyun Gedam <pradyunsg@gmail.com> wrote:
On Wed, 5 Jun 2019 at 10:52 PM, Brett Cannon <brett@python.org> 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-leave@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-sig@python.org/message/YN3DH... 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
On Thu, Jun 6, 2019 at 2:15 AM Paul Moore <p.f.moore@gmail.com> wrote:
On Wed, 5 Jun 2019 at 20:05, Pradyun Gedam <pradyunsg@gmail.com> wrote:
On Wed, 5 Jun 2019 at 10:52 PM, Brett Cannon <brett@python.org> 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-leave@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-sig@python.org/message/YN3DH...
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. If someone wants to propose a new footer then they can email me or start a new thread and hash one out. The allowed variables are: $hyperkitty_url: Permalink to archived message in Hyperkitty $listname: Name of the Mailing List e.g. ant@example.com $list_id: The List-ID header e.g. ant.example.com $display_name: Display name of the mailing list e.g. Ant $short_listname: Local part of the listname e.g. ant $domain: The domain part of the listname e.g. example.com $info: The mailing list's longer descriptive text $request_email: The email address for -request address $owner_email: The email address for -owner address $site_email: The email address to reach the owners of the site $language: The two letter language code for list's preferred language e.g. fr, en, de
On 6/6/19 12:32 PM, Brett Cannon wrote:
On Thu, Jun 6, 2019 at 2:15 AM Paul Moore <p.f.moore@gmail.com wrote:
Also, on the distutils-sig setup, an extra footer:
Message archived at https://mail.python.org/archives/list/distutils-sig@python.org/message/YN3DH...
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 <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
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?
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
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.
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
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
participants (7)
-
Abhilash Raj
-
Brett Cannon
-
Christoph Groth
-
Mark Sapiro
-
Paul Moore
-
Pradyun Gedam
-
Stephen J. Turnbull