Re: Handling large applications

2005-11-19 Thread Andreas Stuhlmüller
Adrian Holovaty wrote: > * All the model modules have to live *directly* within the models > directory -- so the multi-level example you gave wouldn't work. Thanks, that's what I wanted to know. Multi-level models would have been nice, but judging from the open tickets there are much more importa

Re: Handling large applications

2005-11-19 Thread Adrian Holovaty
On 11/19/05, Andreas Stuhlmüller <[EMAIL PROTECTED]> wrote: > Are there any guidelines for managing large applications with Django? > Most of the time it is possible to split those into several smaller > apps, but sometimes it isn't - what is the recommended way to handle > large apps? For example

Re: Handling large applications

2005-11-19 Thread Jeffrey E. Forcier
You seem to be pretty on top of things since you're already poking at the internals of the model module magic, but just in case, I want to make sure you've seen this: http://www.djangoproject.com/documentation/model_api/#models-across- files and the section immediately following it. Als

Re: Handling large applications

2005-11-19 Thread Emanuele
I can't help you on the whole problem (managing large applications), but restricting to having a model in multiple files, see here: http://www.djangoproject.com/documentation/model_api/#models-in-multiple-files Basically it's more or less the first option you proposed. Cheers, Emanuele

Handling large applications

2005-11-19 Thread Andreas Stuhlmüller
Are there any guidelines for managing large applications with Django? Most of the time it is possible to split those into several smaller apps, but sometimes it isn't - what is the recommended way to handle large apps? For example, does Django support splitting the models file into several package