Mercurial > p > roundup > code
view tools/base64 @ 5065:47ab150b7325
Allow multiple file uploads
If the html template specifies multiple="multiple" for a file upload
the user can attach multiple files and the form parser now handles this.
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Mon, 30 May 2016 17:23:35 +0200 |
| 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()))
