From crosseyedpenguin at yahoo.com Thu Mar 28 09:52:44 2024 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Thu, 28 Mar 2024 13:52:44 +0000 (UTC) Subject: [moin-user] Moin 2.0.0a1 released References: <392299705.2775317.1711633964007.ref@mail.yahoo.com> Message-ID: <392299705.2775317.1711633964007@mail.yahoo.com> Moinmoin 2.0.0a1 has been released on https://pypi.org/project/moin/#history?and https://github.com/moinwiki/moin/releases. See https://moin-20.readthedocs.io/en/latest/,use https://github.com/moinwiki/moin/issues to report bugs. Roger Haase -------------- next part -------------- An HTML attachment was scrubbed... URL: From renato.pontefice at gmail.com Fri Mar 29 09:28:04 2024 From: renato.pontefice at gmail.com (Renato Pontefice) Date: Fri, 29 Mar 2024 14:28:04 +0100 Subject: [moin-user] Moin2: how to create account Message-ID: <3BA6CBEC-0E9B-4A0B-9D0B-8939A4E7B5D1@gmail.com> Hi, yesterday I?ve quick rapidly downloaded moin2 (I?m waiting for it from a while), installed on my Mac and start to study it. But I was blocked on the Login page. Reading the doc I?ve found that I have to create account and to do that I?ve to go to login button etc. But I can?t find the button for create the first account. I?ve already tried with 3 browser, but nothin. What I do wrong? Thank you Renato From crosseyedpenguin at yahoo.com Fri Mar 29 09:57:26 2024 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Fri, 29 Mar 2024 13:57:26 +0000 (UTC) Subject: [moin-user] Moin2: how to create account In-Reply-To: <3BA6CBEC-0E9B-4A0B-9D0B-8939A4E7B5D1@gmail.com> References: <3BA6CBEC-0E9B-4A0B-9D0B-8939A4E7B5D1@gmail.com> Message-ID: <160880999.3259403.1711720646258@mail.yahoo.com> You must edit wikiconfig.py to relax the ACL settings. An alternative is to add a user via the command line: ? ??moin account-create --name MyName --email MyName at x.x --password ******** but if you use the command line, you will likely still want to edit wikiconfig.py. On Friday, March 29, 2024 at 06:28:15 AM MST, Renato Pontefice wrote: Hi, yesterday I?ve quick rapidly downloaded moin2 (I?m waiting for it from a while), installed on my Mac and start to study it. But I was blocked on the Login page. Reading the doc I?ve found that I have to create account and to do that I?ve to go to login button etc. But I can?t find the button for create the first account. I?ve already tried with 3 browser, but nothin. What I do wrong? Thank you Renato _______________________________________________ moin-user mailing list moin-user at python.org https://mail.python.org/mailman/listinfo/moin-user -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul at boddie.org.uk Fri Mar 29 14:32:50 2024 From: paul at boddie.org.uk (Paul Boddie) Date: Fri, 29 Mar 2024 19:32:50 +0100 Subject: [moin-user] Moin 2.0.0a1 released In-Reply-To: <392299705.2775317.1711633964007@mail.yahoo.com> References: <392299705.2775317.1711633964007.ref@mail.yahoo.com> <392299705.2775317.1711633964007@mail.yahoo.com> Message-ID: <3764218.l3cMcm2LzE@jason> On Thursday, 28 March 2024 14:52:44 CET Roger Haase via moin-user wrote: > Moinmoin 2.0.0a1 has been released on > https://pypi.org/project/moin/#history and > https://github.com/moinwiki/moin/releases. See > https://moin-20.readthedocs.io/en/latest/,use > https://github.com/moinwiki/moin/issues to report bugs. Is there a documented way of preparing a Python package from the sources now that setup.py has been removed? I found the following repository commit message: commit 59f28b0550e8da4f9ec27ba37fe844d78457be1b Author: Thomas Waldmann Date: Fri Feb 23 03:01:32 2024 +0100 remove setup.py - not needed any more. install -> pip install ... sdist / bdist -> python -m build upload -> twine ... translations -> pybabel ... It looks like "python -m build" might be appropriate, but well... $ python3 -m build /usr/bin/python3: No module named build If I am going to continue building Debian packages, I need to have a way of preparing them, so any advice about the latest and greatest in Python-centric packaging would be very welcome. Paul