Re: FileField cannot save file with chinese filenames.

2009-04-01 Thread 夏恺
Karen Tracey 写道: > On Wed, Apr 1, 2009 at 5:12 AM, 夏恺 > wrote: > > > Hi all! > > I wrote a model to hold files uploaded by users, it goes like this: > > > This is ticket #10254: http://code.djangoproject.com/ticket/10254 > > It has a patch you can try. I'm waitin

Re: FileField cannot save file with chinese filenames.

2009-04-01 Thread Karen Tracey
On Wed, Apr 1, 2009 at 5:12 AM, 夏恺 wrote: > > Hi all! > > I wrote a model to hold files uploaded by users, it goes like this: > > [snip] > and when I try to add an mp3 file with chinese filename through the > admin interface, the files are not saved correctly, their names are > changed to somethi

FileField cannot save file with chinese filenames.

2009-04-01 Thread 夏恺
Hi all! I wrote a model to hold files uploaded by users, it goes like this: Model: class Userfiles(models.Model): user = models.ForeignKey( User, verbose_name="user name", ) upload_file = models.FileField( u"file", upload_to='user/%Y/%m/%d', ) upload_d