# HG changeset patch # User souliane # Date 1387349153 -3600 # Node ID 5943eaa6f422cf5bcf413de30b5c34a10e44a3eb # Parent 4f221f34bdc799df7662cb0307f3dee9ffe15dfc browser_side (plugin radiocol): set the upload limit to 10 MB instead of 5 diff -r 4f221f34bdc7 -r 5943eaa6f422 browser_side/radiocol.py --- 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()