Re: deprecating ipaddressfield (at some time)

2013-08-31 Thread Some Developer
On 25/08/2013 11:25, Aymeric Augustin wrote: On 18 mai 2013, at 14:07, Erik Romijn wrote: As far as I know, IPAddressField has no current features that are not also available in a GenericIPAddressField. Therefore, I suggest that we, some time from now, deprecate IPAddressField, in favour of

Re: #20739 - Making LiveServerTestCase not depend on staticfiles?

2013-08-31 Thread Ramiro Morales
On Tue, Aug 13, 2013 at 8:01 PM, Ramiro Morales wrote: > > Guys, I've updated the PR with further work on this: > > https://github.com/django/django/pull/1354 FYI This has landed on master with commit: https://github.com/django/django/commit/e909ceae9b3e72b72e0a2baaa92bba9714f18cd2 Regards,

A help for development

2013-08-31 Thread Navneet Sinha
I am planning to make an attendance app for my college. We already have one which runs on JVM. But there's a lot of server issues and stuff. So i just came across Django and Jython. I wanted to know if its possible to be done. This app will have a very basic frontend displaying student name and

Re: A help for development

2013-08-31 Thread Karen Tracey
Please ask questions about using Django on django-users. The topic of this list is the development of Django itself. Thanks, Karen -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this group and stop receiving emails fro

Re: get_cache and multiple caches

2013-08-31 Thread Curtis Maloney
I've a possible solution - https://github.com/funkybob/django/compare/simple_caches Basically, the existing API and behaviours are still available through get_cache, but you can avoid duplicate instances of caches using django.core.cache.caches[name] -- Curtis On 31 August 2013 15:44, Curtis Ma