More uniform obfuscation.

This commit is contained in:
Eric S. Raymond 2009-10-30 10:29:25 +00:00
parent e3178c51c7
commit b83aa74ae0
2 changed files with 2 additions and 2 deletions

View file

@ -888,7 +888,7 @@
[/entry]
[entry]
name = "Karl Miller (karlm)"
email = "karl_dot_miller_dot_km_at_gmail_dot_com"
email = "karl_DOT_miller_DOT_km_at_gmail_DOT_com"
[/entry]
[entry]
name = "Laurent Birtz"

View file

@ -59,7 +59,7 @@ if __name__ == "__main__":
# Mask email names from spammers
email = email.replace("@", "@").replace(".", ".")
# Interpret our local conventions for obfuscsting in SVN files
email = email.replace("_AT_", "@").replace("_dot_", ".")
email = email.replace("_AT_", "@").replace("_DOT_", ".")
section.lines.append((name, comment, wikiuser, email))
if section.title: sections.append(section)
chapters.append((arg, sections))