Re: django design methods

2009-01-09 Thread chiggsy
On Jan 8, 5:55 pm, bruno desthuilliers wrote: > On 8 jan, 19:33,chiggsy wrote: > > > A meta question about django:  how do people design dango apps? > > Like any other. Domain analysis to get the models (database schema, > mostly), functional analysis to get the use cases (urls and views), > an

Re: django design methods

2009-01-08 Thread bruno desthuilliers
On 8 jan, 19:33, chiggsy wrote: > A meta question about django: how do people design dango apps? Like any other. Domain analysis to get the models (database schema, mostly), functional analysis to get the use cases (urls and views), and common sense to fill the gaps. > I understand that the ur

django design methods

2009-01-08 Thread chiggsy
A meta question about django: how do people design dango apps? I understand that the urlconf really is a map of the application, and that works for me. As for applications, I think that they are pieces of functionality and i have few problems with that. However: when i try to mix and match ap