Mercurial > p > roundup > code
view tools/base64 @ 2389:2ff93cee9c63
StaticTranslationService got methods gettext() and ngettext()...
...to be usable instead of 'i18n' module;
added module-level variable 'translationService';
DateHTMLProperty and IntervalHTMLProperty
apply templates translation service to their values
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Sat, 05 Jun 2004 12:07:47 +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()))
