On 4/19/21 10:43 PM, Mark Dale via Mailman-Users wrote:
> 
> François -- as seen in the mm_cfg modified download txt: the cedille replace 
> by odd characters.

How are you viewing the .txt file? The two bytes C3 A7 are the utf-8
representation of the c-cedilla character. If you view that file as
iso-8859-1 (latin-1 or western) encoding, you will see those two bytes
as ç, but if you view it as uf-8 encoding, you will see the c-cedilla.

In short, the file contains just what it should, but there is a
Content-Transfer-Encoding issue. If you are viewing it in a browser, the
issue is the default content character set in your web server. For
example with Apache something like

AddCharset utf-8 .txt

will do what you want, or perhaps your browser has a selection. E.g.,
Firefox has a text encoding selection in the View menu and you want
Unicode, not Western.

If you are actually downloading the file and viewing it with something
else, the issue is with whatever you are viewing it with.

> In short, no joy.
> 
> So I'm thinking that if the part of HyperArch.py that does the email address 
> obfuscation (and back again) is removed, would that be a step in the 
> direction I want to go?
> 
> My Python foo is way less than zero but I'm looking at lines 563 -- 600. Or 
> is my thinking completely bonkers? 


That won't help. As I said, the file is no correct and no unrecognized
characters have been replaced, so modifying that code by say deleting
lines 587-599 won't change anything.


-- 
Mark Sapiro <m...@msapiro.net>        The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan
------------------------------------------------------
Mailman-Users mailing list -- mailman-users@python.org
To unsubscribe send an email to mailman-users-le...@python.org
https://mail.python.org/mailman3/lists/mailman-users.python.org/
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: https://www.mail-archive.com/mailman-users@python.org/
    https://mail.python.org/archives/list/mailman-users@python.org/

Reply via email to