Mercurial > p > roundup > code
view tools/base64 @ 8351:e775cd258763
docs: fix canonical link for www.roundup-tracker.org index page
the index page canonical link was:
https://www...org/index.html
change the template so the canonical is set to
https://www...org/
as that is how it's listed by crawlers.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 02 Jul 2025 12:26:21 -0400 |
| 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())))
