Re: Saving deleted code from Django source code

2014-01-05 Thread Vajrasky Kok
On Friday, December 27, 2013 8:23:06 AM UTC+8, Russell Keith-Magee wrote: > > > Django itself is licensed under the BSD license. This license allows you > to produce derivative works, provided you comply with the terms of the BSD > license. That means you can apply whatever *additional* terms you

Saving deleted code from Django source code

2013-12-25 Thread Vajrasky Kok
I'll nuke the recipe. Thanks. Vajrasky Kok -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-developers+unsubscr...@googlegroups.

Should we care about performance in not-so-updated Python3 (Python 3.2)?

2013-11-12 Thread Vajrasky Kok
Greetings, friends! We just added lru_cache in Django. https://github.com/django/django/commit/9b7455e918a437c3db91e88dcbf6d9c93fef96f8 As you can see in django/utils/lru_cache.py, if Python is not shipped with lru_cache (Python 3.1 for example), we provide lru_cache for them. This lru_cache i

Should AdminSite be able to handle different namespace?

2013-11-09 Thread Vajrasky Kok
Greetings, friends! This is related with this ticket: https://code.djangoproject.com/ticket/21132 While working on this ticket, I was pondering whether we should really fix this or not because one of the core developers said, "The whole admin is currently built on the idea that the app is name

Asking input for changing documentation how to change site header in tutorial02 (1.7 version)

2013-11-07 Thread Vajrasky Kok
Greetings, friends! I found a bug (https://code.djangoproject.com/ticket/21378) in tutorial02 (dev/1.7 version) which can be found here: https://docs.djangoproject.com/en/dev/intro/tutorial02/. To change site header, I was told to override the "generic Django text" in the template. But in Djan