|
|
@ -245,9 +245,9 @@ def get_valid_filename(value, replace_whitespace=True):
|
|
|
|
value=value.replace(u'ß',u'ss')
|
|
|
|
value=value.replace(u'ß',u'ss')
|
|
|
|
value = unicodedata.normalize('NFKD', value)
|
|
|
|
value = unicodedata.normalize('NFKD', value)
|
|
|
|
re_slugify = re.compile('[\W\s-]', re.UNICODE)
|
|
|
|
re_slugify = re.compile('[\W\s-]', re.UNICODE)
|
|
|
|
try:
|
|
|
|
if type(value) is str: #Python3 str, Python2 unicode
|
|
|
|
value = str(re_slugify.sub('', value).strip())
|
|
|
|
value = re_slugify.sub('', value).strip()
|
|
|
|
except UnicodeEncodeError as e: #will exception on Python2.7
|
|
|
|
else:
|
|
|
|
value = unicode(re_slugify.sub('', value).strip())
|
|
|
|
value = unicode(re_slugify.sub('', value).strip())
|
|
|
|
if replace_whitespace:
|
|
|
|
if replace_whitespace:
|
|
|
|
#*+:\"/<>? werden durch _ ersetzt
|
|
|
|
#*+:\"/<>? werden durch _ ersetzt
|
|
|
|