Re: help with Error was: No module named io

2011-08-29 Thread Russell Keith-Magee
On Mon, Aug 29, 2011 at 9:41 PM, CrabbyPete wrote: > I'm posting it here because my understanding is that django 1.3 > supports python 2.5., however this code runs perfectly well on 2.6 but > not on 2.5 and I get this error > I have posted it on the django user group and I

Re: Subversion + Django

2011-08-29 Thread Kevin Sarmiento
Thanks for such a quick answer. So I'll have to create the website in Django and learn how to connect it with Subversion... That sound hard XD, but I like the challenges. 2011/8/29 Jirka Vejrazka > > My issue is that I have a PC that I' considering to use it as a

Re: Subversion + Django

2011-08-29 Thread Jirka Vejrazka
> My issue is that I have a PC that I' considering to use it as a server. I'm currently learning Django and My friends and I are working in a Software Project. My Question is: ¿Can I mix Subversion and Django in my server like http://www.assembla.com/ or other? I mean, I'd like to create a

Subversion + Django

2011-08-29 Thread K'eSt Mkdir
Hi! This is my first post (Please ignore my poor english =)) My issue is that I have a PC that I' considering to use it as a server. I'm currently learning Django and My friends and I are working in a Software Project. My Question is: ¿Can I mix Subversion and Django in my server like

Re: help with Error was: No module named io

2011-08-29 Thread David Stanek
Looking at the traceback below it looks like your base.views module is importing io and not django. Can you check and see if that's the case? I'm running django on 2.5 and it doesn't appear broken. On Mon, Aug 29, 2011 at 9:41 AM, CrabbyPete wrote: > I'm posting it here

Re: help with Error was: No module named io

2011-08-29 Thread CrabbyPete
I'm posting it here because my understanding is that django 1.3 supports python 2.5., however this code runs perfectly well on 2.6 but not on 2.5 and I get this error I have posted it on the django user group and I got this reply which I believe is correct.

Re: authentication by email

2011-08-29 Thread Wim Feijen
For the record and as an answer to the previous question, I'd like to quote Russell who wrote the following in reponse to a ticket of mine: " The core-endorsed ticket for this problem is #3011. The patch on that ticket isn't endorsed, but it points at the real problem - a need to be able to

Re: #13024 Signal sent on application startup

2011-08-29 Thread Russell Keith-Magee
On Mon, Aug 29, 2011 at 5:47 PM, Thomas Guettler wrote: > Hi, > > I am missing a signal on application startup since a long time. > > Ticket: https://code.djangoproject.com/ticket/13024 You won't get any argument from me, or, I suspect, most of the core team, that there is a

#13024 Signal sent on application startup

2011-08-29 Thread Thomas Guettler
Hi, I am missing a signal on application startup since a long time. Ticket: https://code.djangoproject.com/ticket/13024 My usecase: If there are some settings missing, I want add default values. I know that I could use this. settings.configure(default_settings=myapp_defaults, DEBUG=True)