Mercurial > libervia-web
changeset 301:5943eaa6f422
browser_side (plugin radiocol): set the upload limit to 10 MB instead of 5
author | souliane <souliane@mailoo.org> |
---|---|
date | Wed, 18 Dec 2013 07:45:53 +0100 |
parents | 4f221f34bdc7 |
children | 6e36b44cbd34 |
files | browser_side/radiocol.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/browser_side/radiocol.py Tue Dec 17 19:37:47 2013 +0100 +++ b/browser_side/radiocol.py Wed Dec 18 07:45:53 2013 +0100 @@ -88,7 +88,7 @@ types = [('audio/ogg', '*.ogg', 'Ogg Vorbis Audio'), ('video/ogg', '*.ogv', 'Ogg Vorbis Video'), ('application/ogg', '*.ogx', 'Ogg Vorbis Multiplex')] - self.file_upload = FilterFileUpload("song", 5, types) + self.file_upload = FilterFileUpload("song", 10, types) vPanel.add(self.file_upload) hPanel = HorizontalPanel()