From mraivio at tbaytel.net Sat Feb 1 12:48:42 2020 From: mraivio at tbaytel.net (Martin) Date: Sat, 1 Feb 2020 12:48:42 -0500 Subject: [pydotorg-www] some existing applications Message-ID: <2ebcb37d-abcd-432b-b558-e39d6c9af7f4@tbaytel.net> I would like to? update my entry in the Some Existing Applications wiki. The entry is Murdkard etc. Apparently I have to ask to be an editor so I am doing that. My login there is now MurdochRavlin, Thank You. -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosuav at gmail.com Sat Feb 1 13:42:35 2020 From: rosuav at gmail.com (Chris Angelico) Date: Sun, 2 Feb 2020 05:42:35 +1100 Subject: [pydotorg-www] some existing applications In-Reply-To: <2ebcb37d-abcd-432b-b558-e39d6c9af7f4@tbaytel.net> References: <2ebcb37d-abcd-432b-b558-e39d6c9af7f4@tbaytel.net> Message-ID: On Sun, Feb 2, 2020 at 5:02 AM Martin wrote: > > I would like to update my entry in the Some Existing Applications wiki. The entry is Murdkard etc. > > Apparently I have to ask to be an editor so I am doing that. > > My login there is now MurdochRavlin, > > Thank You. > No problem! Go for it. ChrisA From vkopey at gmail.com Tue Feb 4 07:33:42 2020 From: vkopey at gmail.com (Volodymyr Kopey) Date: Tue, 4 Feb 2020 14:33:42 +0200 Subject: [pydotorg-www] UkrainianPythonBooks Message-ID: Hello! I am the author of a book https://github.com/vkopey/Python-for-engineers-and-scientists in Ukrainian. I want to add the following links on the page https://wiki.python.org/moin/UkrainianPythonBooks: Kopei V. B. "Python for engineers and scientists" https://github.com/vkopey/Python-for-engineers-and-scientists Yakovenko A.V. "Programming Fundamentals. Python. Part 1" https://ela.kpi.ua/bitstream/123456789/25111/1/Python.pdf Anisimov A. V. et al. "Programming numerical methods in Python" https://acts.kpi.ua/app/uploads/2017/05/%D0%94%D0%BE%D1%80%D0%BE%D0%B3%D0%B8%D0%B9_%D0%9F%D1%96%D0%B4%D1%80%D1%83%D1%87%D0%BD%D0%B8%D0%BA.pdf Please, let me editpage, or add the links yourself. My login is KopeiVolodymyr -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosuav at gmail.com Tue Feb 4 07:34:26 2020 From: rosuav at gmail.com (Chris Angelico) Date: Tue, 4 Feb 2020 23:34:26 +1100 Subject: [pydotorg-www] UkrainianPythonBooks In-Reply-To: References: Message-ID: On Tue, Feb 4, 2020 at 11:29 PM Volodymyr Kopey wrote: > > Hello! I am the author of a book https://github.com/vkopey/Python-for-engineers-and-scientists in Ukrainian. I want to add the following links on the page https://wiki.python.org/moin/UkrainianPythonBooks: > > Kopei V. B. "Python for engineers and scientists" > https://github.com/vkopey/Python-for-engineers-and-scientists > > Yakovenko A.V. "Programming Fundamentals. Python. Part 1" > https://ela.kpi.ua/bitstream/123456789/25111/1/Python.pdf > > Anisimov A. V. et al. "Programming numerical methods in Python" > https://acts.kpi.ua/app/uploads/2017/05/%D0%94%D0%BE%D1%80%D0%BE%D0%B3%D0%B8%D0%B9_%D0%9F%D1%96%D0%B4%D1%80%D1%83%D1%87%D0%BD%D0%B8%D0%BA.pdf > > Please, let me editpage, or add the links yourself. My login is KopeiVolodymyr Cool! Go for it. ChrisA From sh at changeset.nyc Mon Feb 10 10:50:29 2020 From: sh at changeset.nyc (Sumana Harihareswara) Date: Mon, 10 Feb 2020 10:50:29 -0500 Subject: [pydotorg-www] tip on converting reStructuredText to MoinMoin wiki format Message-ID: <104dddc9-a54f-43f9-1722-fa65d394b633@changeset.nyc> Here is a tip for anyone who is converting a complicated page on the wiki from reStructuredText to MoinMoin wiki format, as I just did https://wiki.python.org/psf/PackagingWG?action=diff&rev1=107&rev2=108 . I'd been looking for an rST-to-MoinMoin converter but hadn't found one, so I ended up using pandoc to get to an intermediate HTML state, then an HTML-to-MoinMoin format. (I did this so I could use the `<>` syntax to automatically get a table of contents and easy anchor tag links to page sections.) Cleaned up to remove backtracking, I: 1) copied the rST source text of the page into a local file, packagingwg.rst 2) removed the `#format rst` line from the start (but copied the rest of the hashmarked stuff from the start, like an #acl line, into a separate scratch pad to retain for later) 3) turned the rST into HTML using pandoc: `pandoc -o packagingwg.html packagingwg.rst` (this gave me a few errors, like "[WARNING] Reference not found for 'fundable packaging improvements' at chunk line 1 column 50", which meant it slightly misformatted a few internal wiki links 4) installed libhtml-wikiconverter-moinmoin-perl which is available as a Debian package 5) converted from HTML to MoinMoin using `html2wiki --dialect=MoinMoin packagingwg.html > packagingwg.wiki` 6) pasted the non-format-related hashmarked lines from my scratch pad into the start of packagingwg.wiki 7) corrected the "Reference not found" errors by removing the `|` in any hyperlinks that had turned into `[[|internal-pagename]` 8) replaced the contents of the page source with packagingwg.wiki Worked fine! Only on the revision AFTER that (so, knowing what format to use for the renderer, I suppose) will MoinMoin properly preview a table of contents for the page. So, heads-up. If there is an easier rst-to-MoinMoin path, or if there's a table of contents syntax available that works for reStructuredText-formatted pages on wiki.python.org, please let me know! I looked but I may have missed something. -- Sumana Harihareswara Changeset Consulting https://changeset.nyc From steve at holdenweb.com Mon Feb 10 11:21:01 2020 From: steve at holdenweb.com (Steve Holden) Date: Mon, 10 Feb 2020 16:21:01 +0000 Subject: [pydotorg-www] tip on converting reStructuredText to MoinMoin wiki format In-Reply-To: <104dddc9-a54f-43f9-1722-fa65d394b633@changeset.nyc> References: <104dddc9-a54f-43f9-1722-fa65d394b633@changeset.nyc> Message-ID: Hi Sumana, Thanks for your note. You should publish this on the Wiki, I haven't seen any similar content anywhere! Kind regards, Steve On Mon, Feb 10, 2020 at 3:51 PM Sumana Harihareswara wrote: > Here is a tip for anyone who is converting a complicated page on the > wiki from reStructuredText to MoinMoin wiki format, as I just did > https://wiki.python.org/psf/PackagingWG?action=diff&rev1=107&rev2=108 . > I'd been looking for an rST-to-MoinMoin converter but hadn't found one, > so I ended up using pandoc to get to an intermediate HTML state, then an > HTML-to-MoinMoin format. > > (I did this so I could use the `<>` syntax to > automatically get a table of contents and easy anchor tag links to page > sections.) > > Cleaned up to remove backtracking, I: > > 1) copied the rST source text of the page into a local file, > packagingwg.rst > > 2) removed the `#format rst` line from the start (but copied the rest of > the hashmarked stuff from the start, like an #acl line, into a separate > scratch pad to retain for later) > > 3) turned the rST into HTML using pandoc: `pandoc -o packagingwg.html > packagingwg.rst` (this gave me a few errors, like "[WARNING] Reference > not found for 'fundable packaging improvements' at chunk line 1 column > 50", which meant it slightly misformatted a few internal wiki links > > 4) installed libhtml-wikiconverter-moinmoin-perl which is available as a > Debian package > > 5) converted from HTML to MoinMoin using `html2wiki --dialect=MoinMoin > packagingwg.html > packagingwg.wiki` > > 6) pasted the non-format-related hashmarked lines from my scratch pad > into the start of packagingwg.wiki > > 7) corrected the "Reference not found" errors by removing the `|` in any > hyperlinks that had turned into `[[|internal-pagename]` > > 8) replaced the contents of the page source with packagingwg.wiki > > Worked fine! > > Only on the revision AFTER that (so, knowing what format to use for the > renderer, I suppose) will MoinMoin properly preview a table of contents > for the page. So, heads-up. > > If there is an easier rst-to-MoinMoin path, or if there's a table of > contents syntax available that works for reStructuredText-formatted > pages on wiki.python.org, please let me know! I looked but I may have > missed something. > > -- > Sumana Harihareswara > Changeset Consulting > https://changeset.nyc > _______________________________________________ > pydotorg-www mailing list > pydotorg-www at python.org > https://mail.python.org/mailman/listinfo/pydotorg-www > -------------- next part -------------- An HTML attachment was scrubbed... URL: From goodger at python.org Mon Feb 10 11:42:44 2020 From: goodger at python.org (David Goodger) Date: Mon, 10 Feb 2020 10:42:44 -0600 Subject: [pydotorg-www] tip on converting reStructuredText to MoinMoin wiki format In-Reply-To: <104dddc9-a54f-43f9-1722-fa65d394b633@changeset.nyc> References: <104dddc9-a54f-43f9-1722-fa65d394b633@changeset.nyc> Message-ID: FYI, you could have simply inserted: .. contents:: Details here: https://docutils.sourceforge.io/docs/ref/rst/directives.html#table-of-contents David Goodger On Mon, Feb 10, 2020 at 9:51 AM Sumana Harihareswara wrote: > Here is a tip for anyone who is converting a complicated page on the > wiki from reStructuredText to MoinMoin wiki format, as I just did > https://wiki.python.org/psf/PackagingWG?action=diff&rev1=107&rev2=108 . > I'd been looking for an rST-to-MoinMoin converter but hadn't found one, > so I ended up using pandoc to get to an intermediate HTML state, then an > HTML-to-MoinMoin format. > > (I did this so I could use the `<>` syntax to > automatically get a table of contents and easy anchor tag links to page > sections.) > > Cleaned up to remove backtracking, I: > > 1) copied the rST source text of the page into a local file, > packagingwg.rst > > 2) removed the `#format rst` line from the start (but copied the rest of > the hashmarked stuff from the start, like an #acl line, into a separate > scratch pad to retain for later) > > 3) turned the rST into HTML using pandoc: `pandoc -o packagingwg.html > packagingwg.rst` (this gave me a few errors, like "[WARNING] Reference > not found for 'fundable packaging improvements' at chunk line 1 column > 50", which meant it slightly misformatted a few internal wiki links > > 4) installed libhtml-wikiconverter-moinmoin-perl which is available as a > Debian package > > 5) converted from HTML to MoinMoin using `html2wiki --dialect=MoinMoin > packagingwg.html > packagingwg.wiki` > > 6) pasted the non-format-related hashmarked lines from my scratch pad > into the start of packagingwg.wiki > > 7) corrected the "Reference not found" errors by removing the `|` in any > hyperlinks that had turned into `[[|internal-pagename]` > > 8) replaced the contents of the page source with packagingwg.wiki > > Worked fine! > > Only on the revision AFTER that (so, knowing what format to use for the > renderer, I suppose) will MoinMoin properly preview a table of contents > for the page. So, heads-up. > > If there is an easier rst-to-MoinMoin path, or if there's a table of > contents syntax available that works for reStructuredText-formatted > pages on wiki.python.org, please let me know! I looked but I may have > missed something. > > -- > Sumana Harihareswara > Changeset Consulting > https://changeset.nyc > _______________________________________________ > pydotorg-www mailing list > pydotorg-www at python.org > https://mail.python.org/mailman/listinfo/pydotorg-www > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sh at changeset.nyc Mon Feb 10 11:57:33 2020 From: sh at changeset.nyc (Sumana Harihareswara) Date: Mon, 10 Feb 2020 11:57:33 -0500 Subject: [pydotorg-www] tip on converting reStructuredText to MoinMoin wiki format In-Reply-To: References: <104dddc9-a54f-43f9-1722-fa65d394b633@changeset.nyc> Message-ID: <7d371c14-524c-5f54-cbc1-e0077f2708f4@changeset.nyc> Well, phooey, wasn't I silly for missing that! I could swear I had tried that and it hadn't worked; perhaps I'd been messing something else up. Thanks for the tip, David. -Sumana On 2/10/20 11:42 AM, David Goodger wrote: > FYI, you could have simply inserted: > > .. contents:: > > Details here: > https://docutils.sourceforge.io/docs/ref/rst/directives.html#table-of-contents > > > David Goodger > > > > On Mon, Feb 10, 2020 at 9:51 AM Sumana Harihareswara > wrote: > >> Here is a tip for anyone who is converting a complicated page on the >> wiki from reStructuredText to MoinMoin wiki format, as I just did >> https://wiki.python.org/psf/PackagingWG?action=diff&rev1=107&rev2=108 . >> I'd been looking for an rST-to-MoinMoin converter but hadn't found one, >> so I ended up using pandoc to get to an intermediate HTML state, then an >> HTML-to-MoinMoin format. >> >> (I did this so I could use the `<>` syntax to >> automatically get a table of contents and easy anchor tag links to page >> sections.) >> >> Cleaned up to remove backtracking, I: >> >> 1) copied the rST source text of the page into a local file, >> packagingwg.rst >> >> 2) removed the `#format rst` line from the start (but copied the rest of >> the hashmarked stuff from the start, like an #acl line, into a separate >> scratch pad to retain for later) >> >> 3) turned the rST into HTML using pandoc: `pandoc -o packagingwg.html >> packagingwg.rst` (this gave me a few errors, like "[WARNING] Reference >> not found for 'fundable packaging improvements' at chunk line 1 column >> 50", which meant it slightly misformatted a few internal wiki links >> >> 4) installed libhtml-wikiconverter-moinmoin-perl which is available as a >> Debian package >> >> 5) converted from HTML to MoinMoin using `html2wiki --dialect=MoinMoin >> packagingwg.html > packagingwg.wiki` >> >> 6) pasted the non-format-related hashmarked lines from my scratch pad >> into the start of packagingwg.wiki >> >> 7) corrected the "Reference not found" errors by removing the `|` in any >> hyperlinks that had turned into `[[|internal-pagename]` >> >> 8) replaced the contents of the page source with packagingwg.wiki >> >> Worked fine! >> >> Only on the revision AFTER that (so, knowing what format to use for the >> renderer, I suppose) will MoinMoin properly preview a table of contents >> for the page. So, heads-up. >> >> If there is an easier rst-to-MoinMoin path, or if there's a table of >> contents syntax available that works for reStructuredText-formatted >> pages on wiki.python.org, please let me know! I looked but I may have >> missed something. >> >> -- >> Sumana Harihareswara >> Changeset Consulting >> https://changeset.nyc From howiestritz1 at gmail.com Tue Feb 18 06:03:50 2020 From: howiestritz1 at gmail.com (Howie Stritz) Date: Tue, 18 Feb 2020 06:03:50 -0500 Subject: [pydotorg-www] (no subject) Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: From howiestritz1 at gmail.com Tue Feb 18 06:18:17 2020 From: howiestritz1 at gmail.com (Howie Stritz) Date: Tue, 18 Feb 2020 06:18:17 -0500 Subject: [pydotorg-www] (no subject) Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve at holdenweb.com Fri Feb 21 13:21:25 2020 From: steve at holdenweb.com (Steve Holden) Date: Fri, 21 Feb 2020 18:21:25 +0000 Subject: [pydotorg-www] [Webmaster] Can't acces to *.python.org In-Reply-To: <4f1db9b6f8094409b04d124dbd9707f5@arte.tv> References: <4f1db9b6f8094409b04d124dbd9707f5@arte.tv> Message-ID: Hi Marc, I'm not aware of any filtering the infrastructure team does, but you may get an authoritative answer from the site's maintainers, who are copied on this reply. Kind regards, Steve On Fri, Feb 21, 2020 at 4:19 PM Saison Marc wrote: > Hello ; > > > > A part of our AS can?t reach www.python.org or docs.python.org > > Is their something with our IP range 185.95.8.0/24 (especially > 185.95.8.30 and 185.95.8.17) ? (the other ranges of our network can reach > the website without any problem) > > > > Thank you for your concern > > > > Best regards > > > > > > *Marc SAISON* > > *CHEF DE PROJET* > > *Service IT Broadcast / Infrastructure / Gestion* > > T +33 (0)3 90 14 21 41 > > marc.saison at arte.tv > > > > ARTE G.E.I.E - 4 quai du Chanoine Winterer > > CS 20035, 67080 Strasbourg cedex > > Postfach 1980, 77679 Kehl > > T +33 (0)3 90 14 22 22 > > www.arte.tv > > > > > _______________________________________________ > Webmaster mailing list > Webmaster at python.org > https://mail.python.org/mailman/listinfo/webmaster > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 2088 bytes Desc: not available URL: From mlazovjp at gmail.com Tue Feb 25 08:04:36 2020 From: mlazovjp at gmail.com (Jeremy Mlazovsky) Date: Tue, 25 Feb 2020 08:04:36 -0500 Subject: [pydotorg-www] Broken link at https://wiki.python.org/moin/TkInter Message-ID: I just created an account (JeremyMlazovsky) so I could try to edit https://wiki.python.org/moin/TkInter . The second bullet point in the TkInter Documentation section is: - Tkinter reference: a GUI for Python (online or pdf ) by John W. Shipman, New Mexico Tech Computer Center Both of those links are broken. I went to the Wayback Machine and it has been broken for at least 2-3 years, and Googling his name indicates he has passed away, so it is probably a safe bet that this is permanently inaccessible. I just wanted to notify the admins so you can update the page to reflect that. -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosuav at gmail.com Tue Feb 25 09:15:37 2020 From: rosuav at gmail.com (Chris Angelico) Date: Wed, 26 Feb 2020 01:15:37 +1100 Subject: [pydotorg-www] Broken link at https://wiki.python.org/moin/TkInter In-Reply-To: References: Message-ID: On Wed, Feb 26, 2020 at 12:04 AM Jeremy Mlazovsky wrote: > > I just created an account (JeremyMlazovsky) so I could try to edit > https://wiki.python.org/moin/TkInter . The second bullet point in the TkInter Documentation section is: > > > Tkinter reference: a GUI for Python (online or pdf) by John W. Shipman, New Mexico Tech Computer Center > > > Both of those links are broken. I went to the Wayback Machine and it has been broken for at least 2-3 years, and Googling his name indicates he has passed away, so it is probably a safe bet that this is permanently inaccessible. > > I just wanted to notify the admins so you can update the page to reflect that. > Ah, it's probably safest to just delete the link, then. But if you'd rather change it to point to the Wayback Machine, then go ahead. Either way, you should now have the ability to make such changes. Thanks for spotting this. ChrisA From dane at danehillard.com Fri Feb 28 09:56:41 2020 From: dane at danehillard.com (Dane Hillard) Date: Fri, 28 Feb 2020 09:56:41 -0500 Subject: [pydotorg-www] Wiki editing Message-ID: Hello! I'd love to add my recent book, *Practices of the Python Pro* , to the AdvancedBooks page if that's okay. I'm happy to make the edit if given access. Let me know if you need more information from me! Cheers, -- Dane Hillard -------------- next part -------------- An HTML attachment was scrubbed... URL: From dane at danehillard.com Fri Feb 28 09:57:53 2020 From: dane at danehillard.com (Dane Hillard) Date: Fri, 28 Feb 2020 09:57:53 -0500 Subject: [pydotorg-www] Wiki editing In-Reply-To: References: Message-ID: Apologies?my wiki name is DaneHillard On Fri, Feb 28, 2020 at 9:56 AM Dane Hillard wrote: > Hello! > > I'd love to add my recent book, *Practices of the Python Pro* > , to the AdvancedBooks > page if that's okay. I'm > happy to make the edit if given access. Let me know if you need more > information from me! > > Cheers, > > -- > > Dane Hillard > -- Dane Hillard -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosuav at gmail.com Fri Feb 28 13:47:21 2020 From: rosuav at gmail.com (Chris Angelico) Date: Sat, 29 Feb 2020 05:47:21 +1100 Subject: [pydotorg-www] Wiki editing In-Reply-To: References: Message-ID: On Sat, Feb 29, 2020 at 1:58 AM Dane Hillard wrote: > > Apologies?my wiki name is DaneHillard > > On Fri, Feb 28, 2020 at 9:56 AM Dane Hillard wrote: >> >> Hello! >> >> I'd love to add my recent book, Practices of the Python Pro, to the AdvancedBooks page if that's okay. I'm happy to make the edit if given access. Let me know if you need more information from me! >> Sounds good to me. Have at it! ChrisA