remove mismatched html tags
[redakcja.git] / apps / fileupload / views.py
index 08aa323..cfaedc8 100644 (file)
@@ -9,6 +9,8 @@ from django.utils.decorators import method_decorator
 from django.utils.encoding import force_unicode
 from django.views.decorators.vary import vary_on_headers
 from django.views.generic import FormView, RedirectView
+from unidecode import unidecode
+
 from .forms import UploadForm
 
 
@@ -43,7 +45,6 @@ class UploadViewMixin(object):
 
         """
         path = os.path.abspath(os.path.join(settings.MEDIA_ROOT, self.get_directory(), filename))
-        # WTF how would that be possible?
         if not path.startswith(os.path.abspath(settings.MEDIA_ROOT)):
             raise Http404
         if filename:
@@ -133,6 +134,7 @@ class UploadView(UploadViewMixin, FormView):
             os.makedirs(path)
         data = []
         for f in flist:
+            f.name = unidecode(f.name)
             with open(self.get_safe_path(f.name), 'w') as destination:
                 for chunk in f.chunks():
                     destination.write(chunk)