Re: Cleanup Signal

2010-07-01 Thread Jeremy Dunck
Note that the project is no longer active here; see this repo: http://github.com/django-extensions/django-extensions/ On Fri, Jul 2, 2010 at 2:44 PM, hcarvalhoalves wrote: > I guess you'll like the jobs abstraction from django-command- > extensions [1] > > Besides that, I don't see the need for a

Re: Cleanup Signal

2010-07-01 Thread hcarvalhoalves
I guess you'll like the jobs abstraction from django-command- extensions [1] Besides that, I don't see the need for anything to integrate inside a single "clean" command. It's not like the management commands provided by Django are hooks, you can and should be making yours for each specific need.

Re: Google App Engine and Facebook

2010-07-01 Thread Jan Schotsmans
This question belongs in Django-users, Django-developers is only for development of the django framework, not development with the framework. 2010/7/2 Binh > Hi, > > Has anyone here built a facebook canvas application using Django 1.* > and got it working on Google App Engine? > > If so, can you

Google App Engine and Facebook

2010-07-01 Thread Binh
Hi, Has anyone here built a facebook canvas application using Django 1.* and got it working on Google App Engine? If so, can you give pointers on where I can learn this? -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this grou

Re: What is the correct behavior? [was: new backend: unit test ...]

2010-07-01 Thread Russell Keith-Magee
On Thu, Jul 1, 2010 at 8:05 PM, Mark Bucciarelli wrote: > On Wed, Jun 30, 2010 at 7:14 PM, Russell Keith-Magee > wrote: >> >> It appears that MonetDB is behaving the same way as PostgreSQL. The >> right approach in the test is to catch the exception and roll back the >> cursor. >> > > In 1.2 I se

Re: django changes some chracters in on my website

2010-07-01 Thread Jeremy Dunck
Django loves all characters equally, including umlauts. I suspect you're seeing the effects of auto-escaping: http://docs.djangoproject.com/en/1.2/topics/templates/#id2 You've mailed the django-developers list which is for development *of Django itself*. The proper mailing list about *using* Dja

django changes some chracters in on my website

2010-07-01 Thread davidgp
i'm sure this question has been asked before but i couldn't find it on google.. in my database: name=models.CharField(max_length=200) i'm storing names, but some names have an umlaut or another special character, this is stored in the database as for example this: ü but django changes this into: &

Re: What is the correct behavior? [was: new backend: unit test ...]

2010-07-01 Thread Mark Bucciarelli
On Wed, Jun 30, 2010 at 7:14 PM, Russell Keith-Magee wrote: > > It appears that MonetDB is behaving the same way as PostgreSQL. The > right approach in the test is to catch the exception and roll back the > cursor. > In 1.2 I see full_clean() and ValidationError let's me handle this in applicatio

[1.3 Proposal] Cleanup Signal

2010-07-01 Thread Gregor Müllegger
Hi, its very convenient for most projects to have cleanup-tasks that run out of a request-response cycle. The best example is in django core. The `cleanup` management command deletes expired session instances. But in most cases there are more tasks like this: deleting expired registrations/email v