Re: Proposal: OpenLayers.js and shipping it in django.contrib.gis statics

2013-06-01 Thread Kamil Gałuszka
Hi, Thanks for explanation. I think your reasoning make sense. Cheers Kamil Gałuszka On Monday, May 27, 2013 10:48:35 AM UTC+2, Claude Paroz wrote: > > > > Le lundi 27 mai 2013 07:38:54 UTC+2, Carl Meyer a écrit : >> >> Hi Kamil, >> >> On 05/26/2013 05:39 PM, Kamil Gałuszka wrote: >> > Hi

Re: SQL from Models

2013-06-01 Thread Josueh Machado
ok thk! -- 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.com. To post to this group, send email to

Re: SQL from Models

2013-06-01 Thread Florian Apolloner
Hi, this list is about the development of Django itself, please take your question to django-users. Thanks, Florian -- 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

SQL from Models

2013-06-01 Thread Josueh Machado
hi! is possible generate the SQL ("create table/index/ ") in hardcode? example: class Book(models.Model): title = models.CharField(...) price = models.DecimalField(...) print django_generate_sql_model( Book ) # <---here ?? anyway? idea? exists? -- You received this message

Re: Ticket #7220: Last_login in django.contrib.auth should have null=True

2013-06-01 Thread Marc Tamlyn
There's actually quite a good reason why you can't override model field in Subclasses in the general case - the parent model actually creates a table of its own. In the case of abstract parents this should be possible, even without an override flag. I'm not sure if there are some difficulties in

Ticket #7220: Last_login in django.contrib.auth should have null=True

2013-06-01 Thread Chris Wilson
Hi all, Regarding ticket #7220 , this is bugging me at the moment. I share a database with a non-django app, and need to insert test data, and having to set last_login to something is annoying. I understand @SmileyChris' point that there are no