Re: Creating new apps

2006-08-29 Thread Guillermo Fernandez Castellanos
Hi, > I have been on your SVN, but how do i tell Django that each little app has > its own urls.py? is putting it in the directory enough to automatically let > django know that each little app has its own urls.py? Afterwards you can define a urls.py for each project. Check for those urls.py in:

Re: Creating new apps

2006-08-29 Thread Corey Oordt
Charles,I've always seen a Project as a Site. Although there are situations that that may not be true, for most of us, it probably is.I've seen an App as a grouping of functionality. Examples would be Blog, Forums, News, Gallery, etc.Good design practices should keep as much internal within each

Re: Creating new apps

2006-08-29 Thread charles sibbald
Hi Guillermo,Thanks for the help.I have been on your SVN, but how do i tell Django that each little app has its own urls.py? is putting it in the directory enough to automatically let django know that each little app has its own urls.py?Also for authenticating users, do i use django.contrib.auth,

Re: Creating new apps

2006-08-29 Thread Guillermo Fernandez Castellanos
Hi, I did my own homepage (www.haruki.eu) where I have several "applications" done together. As I understood after asking in the list and looking at several project svn trees, the 2nd way seems to be prefered for a sizable application. It allows modularity and reusability. What I do is have a