Is django-syncr dead?

2012-02-12 Thread Kevin Harvey
in best practices. - If not, is there any interest in reviving this project? I'd be happy to contribute. - Any code out there that hasn't been committed that could be? - Anyone using django-syncr (particularly the YouTube parts) and new syncs are working properly? It seems to

Re: What Can I use?

2012-02-11 Thread Kevin Harvey
I always look at djangopackages.com for questions like this: http://djangopackages.com/grids/g/commenting/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/

Re: How do I sort choices by their localized label?

2012-02-11 Thread Kevin Harvey
Have you tried sorting them at the template level? A filter like dictsort might do the trick https://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs#dictsort -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discu

'IOError: [Errno 2] No such file or directory' when testing file uploads

2011-11-25 Thread Kevin Harvey
I'm trying to write a test for a FileField on a model Photo. The FieldField is inherited from an base class Asset. I need to save the dimensions of the photo in the database, so I've got my own save method on my Photo model: def save(self, *args, **kwargs): # save the instance, so we can use