Preventing the leaking of sensitive information in error logs

2011-05-28 Thread Julien Phalip
Hi, Recently I've been a bit embarrassed to receive a 500-error email report containing a client of mine's password displayed in clear because the admin login view had encountered an unhandled exception. This is probably OK in a debug environment but in production this can potentially have

Re: admin.site.register decorator

2011-05-28 Thread Russell Keith-Magee
On Saturday, May 28, 2011, Mateusz Harasymczuk wrote: > Recently, I had to make more than one admin class in admin.py file. > I have never had a situation like this before. > I keept my admin classes in separate files in admin module. > > It came to me that after each class

Re: jQuery.tmpl() and Django

2011-05-28 Thread Tiago Boldt Sousa
Hi, I've using this in Django. I've just substituted {{ }} for [[ ]] in my jquery templates and created a list of all the template ids I have. Then, on document ready, I do: for (var i in templates){ var newtext = $(templates[i]).text().replace(/\[\[/g, "{{").replace(/\]\]/g, "}}");

PhD ideas

2011-05-28 Thread Tiago Boldt Sousa
Hi, I'm now currently finishing my MsC [1] and am thinking about enrolling into the PhD program. I was wondering if any of you would like to suggest me some research topic that could benefit the scientific community, that might also result as a potential improvement for Django. I love everything

Re: Looking for similar site for learning django

2011-05-28 Thread Karen Tracey
Please ask questions about learning or using Django on django-users. The topic of this list is the development of Django itself. Karen -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to

Looking for similar site for learning django

2011-05-28 Thread kracekumar ramaraju
I have been trying to learn django,I followed django documentation,books snippets.I was really impressed and clear explanation of the site regarding rails Check out this site about Rails tutorial,i am looking forward for something similar for

Re: Django and the new EU anti-cookie law

2011-05-28 Thread andybak
Here's a good summary of the issues: http://www.torchbox.com/blog/eu-law-cookies-and-ico You can skip to the section titled: 'What enforcement have the ICO announced?' It looks like enforcement will lean towards the pragmatic. -- You received this message because you are subscribed to the

admin.site.register decorator

2011-05-28 Thread Mateusz Harasymczuk
Recently, I had to make more than one admin class in admin.py file. I have never had a situation like this before. I keept my admin classes in separate files in admin module. It came to me that after each class definition you have to make admin.site.register(Class, AdminClass) Hence: - Where