Mercurial > p > roundup > code
view tools/base64 @ 6112:6059218287d3
Don't display Organiation or Phone on registration form.
We don't need them for registration. They are still available if
the user edits their entry. People that are using them can change
the fields, or add them if it is useful.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 28 Feb 2020 22:56:49 -0500 |
| parents | c75defc1c2f0 |
| children | 9c3ec0a5c7fc |
line wrap: on
line source
#!/usr/bin/env python from __future__ import print_function import zlib, base64, sys print(base64.encodestring(zlib.compress(sys.stdin.read())))
