Re: Inline Formsets Again

2009-10-29 Thread mrts
On Oct 28, 9:43 am, John Debs wrote: > I've written a creaky hack to work around the issue in my own projects > but after seeing this thread I'm going to take a shot at implementing > FormSetField (or something like it) myself. If anyone has any code - > or more arguments for or against that have

Re: non-relational DB

2009-10-29 Thread Alex Gaynor
On Thu, Oct 29, 2009 at 2:44 PM, Waldemar Kornewald wrote: > > Hi, > Russell and Alex, did you already look at QueryGlue? We really need to > discuss which branch the new query_class() should be in. > > Bye, > Waldemar Kornewald > > > > I haven't had a chance to look at it, and I probably won't

Re: non-relational DB

2009-10-29 Thread Waldemar Kornewald
Hi, Russell and Alex, did you already look at QueryGlue? We really need to discuss which branch the new query_class() should be in. Bye, Waldemar Kornewald --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django dev

Re: Bug in django\template\__init__.py ??

2009-10-29 Thread mrts
On Oct 29, 4:50 pm, Russell Keith-Magee wrote: > Django's dependence on DJANGO_SETTINGS_MODULE is an oft-lamented > problem. Suggestions on how to address this constraint are most > welcome. With an explicit main (i.e. a single explicit entry point to code). Would also fix the "where can I initi

Re: Bug in django\template\__init__.py ??

2009-10-29 Thread Johan
Thanks. This link is exactly what i need. On Oct 29, 5:07 pm, Waylan Limberg wrote: > On Thu, Oct 29, 2009 at 10:37 AM, Johan wrote: > > >  I am > > wanting to use the template engine outside the context of a django > > project so I would not have a settings file anywhere on my path. > > This i

Re: Bug in django\template\__init__.py ??

2009-10-29 Thread Johan
Thanks for the quick reply. I discovered exactly what you said about 2 seconds after pressing the submit on my query. On Oct 29, 4:50 pm, Russell Keith-Magee wrote: > On Thu, Oct 29, 2009 at 10:37 PM, Johan wrote: > > > Hi. In django\template\__init__.py on line 54 there is a line of > > code :

Re: Bug in django\template\__init__.py ??

2009-10-29 Thread Waylan Limberg
On Thu, Oct 29, 2009 at 11:07 AM, Waylan Limberg wrote: > On Thu, Oct 29, 2009 at 10:37 AM, Johan wrote: >> >>  I am >> wanting to use the template engine outside the context of a django >> project so I would not have a settings file anywhere on my path. > > This is documented here: > > http://d

Re: Bug in django\template\__init__.py ??

2009-10-29 Thread Waylan Limberg
On Thu, Oct 29, 2009 at 10:37 AM, Johan wrote: > > I am > wanting to use the template engine outside the context of a django > project so I would not have a settings file anywhere on my path. This is documented here: http://docs.djangoproject.com/en/dev/topics/settings/#using-settings-without-

Re: Bug in django\template\__init__.py ??

2009-10-29 Thread Russell Keith-Magee
On Thu, Oct 29, 2009 at 10:37 PM, Johan wrote: > > Hi. In django\template\__init__.py on line 54 there is a line of > code : from django.conf import settings. Firstly there is no > settings.py file in django\conf, ther is however a file called > global_settings.py. In my context the is issue is f

Bug in django\template\__init__.py ??

2009-10-29 Thread Johan
Hi. In django\template\__init__.py on line 54 there is a line of code : from django.conf import settings. Firstly there is no settings.py file in django\conf, ther is however a file called global_settings.py. In my context the is issue is fxed by changing the line to from django.conf import global