Hi, I like django, but not models.FileField.
* I don't want to store the files in MEDIA_ROOT, since the access needs to go through django for authentication. * The containing directory should be given by the model of the FileField. Example: class MyFriend(models.Model): picture=models.NewFileField(...) if myfriend has id=1234 the file should be in .../myfriends/1234/ * Unicode filenames should be encoded in pure ascii in the filesystem. The encoding should be reversable, so that you can get the unicode string back. This could be done with utils.http.urlquote(). * The database should contain the unicode filename. Has someone the same problems? Has someone solved/coded this? Thomas PS: This patch only uses a better filename normalization: http://code.djangoproject.com/ticket/3119 The unicode name get's lost. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---