Mercurial > p > roundup > code
view tools/base64 @ 3441:5791c9e6ab24
Fixes for SourceForge tracker items.
- favicon.ico image may be changed with server config option (patch [SF#1355661])
- Password objects initialized from plaintext remember plaintext value
(rfe [SF#1379447])
- use quoted printable encoding for nosy attachments that have MIME
type 'text/plain' but contain 8-bit characters [SF#1381559]
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Sun, 25 Dec 2005 16:24:11 +0000 |
| parents | 740102dfad1d |
| children | c75defc1c2f0 |
line wrap: on
line source
#!/usr/bin/env python import zlib, base64, sys print base64.encodestring(zlib.compress(sys.stdin.read()))
