Mercurial > p > roundup > code
view tools/base64 @ 5173:4f99aad7e8e8
Store template name with saved query
When storing user-defined queries we now store the template with the
query if the template name is different from 'index'. This allows stored
queries for templates different from the default 'index' template.
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Fri, 09 Dec 2016 09:49:25 +0100 |
| 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()))
