Re: Why is GeoDjango in core ?

2013-02-06 Thread Jacob Kaplan-Moss
The only historically-accurate answer is: "because it seemed like a good idea at the time." Remember, this was 2008. So one problem was that Django's DB APIs weren't very polished, so GeoDjango had to do a bunch of trickery. Bringing it into core gave a good way towards pushing that flexibility do

Why is GeoDjango in core ?

2013-02-06 Thread Maxime Haineault
I've seen lot of talk about removing the admin and many other contribs from core. For some I think it make sense, for others like the admin I'm not so sure. However, I have not seen any talk about removing GeoDjango and I'm wondering about the rational of keeping this relatively huge domain sp

Maintenance on djangoproject.com tomorrow

2013-02-06 Thread Aymeric Augustin
Hi folks, We've scheduled maintenance operations on djangoproject.com tomorrow, starting at 09:00 UTC. The website and the docs may be temporarily unavailable. Please use the mirror of the docs at Read The Docs in the meantime: http://django.readthedocs.org/ Thanks, -- Aymeric. -- You r

Re: Problem with Custom Manage.py command and Crontab

2013-02-06 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

Problem with Custom Manage.py command and Crontab

2013-02-06 Thread Jesús Lucas Flores
Hey guys, I need a little bit help with a custom manage.py command called *test* I am using it in a virtualenv on a shell script *script.sh*, if i execute *python manage.py script.sh * All is OK, but if the script is on the crontab give a *Unknown command: 'test'* . Here is the code: htt

Re: Ticket 19237

2013-02-06 Thread Stephen Burrows
... if we're concerned about strip_tags' ability to hit this kind of edge case, why are we using regex? http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454 Or more generally http://www.codinghorror.com/blog/2009/11/parsing-html-the-

Re: Could prefetch_related be modified to utilize select_related for ForeignKey relations?

2013-02-06 Thread Marc Tamlyn
A better way of achieving this functionality would be the API proposed in https://code.djangoproject.com/ticket/17001 Marc On Wednesday, 6 February 2013 00:29:15 UTC, Michal Novotný wrote: > > Hey, what about this > one: qs.prefetch_related('best_pizza__toppings__topping_type_*') > > It is intu