id summary reporter owner description type status priority component severity resolution keywords cc release 8503 Cannot use all as file extenstion anonymous Radek Bartoň "I would like to allow download of all files, no matter extension.[[br]] I can see in code that there is a special treatment of 'all' extension. Intention was probably to allow all downloads if all was configured.[[br]] But, as it is implemented, if all is added to the list of allowed extensions, all uploads are denied [[br]] api.py: {{{ 791 name, ext = os.path.splitext(download['file']) 792 if not 'all' in self.ext: 793 self.log.debug('file_ext: %s ext: %s' % (ext, self.ext)) 794 if not ext[1:].lower() in self.ext: 795 raise TracError('Unsupported file type.') 796 else: 797 raise TracError('Unsupported file type.') }}} If 796-797 are removed, it should work as intended, i.e. if all is in list, all extensions are allowed." defect closed normal DownloadsPlugin normal fixed 0.12