2018-05-16 22:00:37 +02:00
|
|
|
#!/bin/env python3
|
|
|
|
|
|
|
|
# A set of extension that aren't supported, despite matching a supported mimetype
|
2018-06-10 00:28:43 +02:00
|
|
|
unsupported_extensions = {
|
|
|
|
'.asc',
|
|
|
|
'.bat',
|
|
|
|
'.brf',
|
|
|
|
'.c',
|
|
|
|
'.h',
|
|
|
|
'.ksh',
|
|
|
|
'.pl',
|
|
|
|
'.pot',
|
|
|
|
'.rdf',
|
|
|
|
'.srt',
|
|
|
|
'.text',
|
|
|
|
'.txt',
|
|
|
|
'.wsdl',
|
|
|
|
'.xpdl',
|
|
|
|
'.xsd',
|
|
|
|
'.xsl',
|
|
|
|
}
|