Re: newb URL mapping problem

2008-07-09 Thread JeffH
Thanks. I can live with it. The main thing is knowing I'm not crazy. ;-) On Jul 9, 8:00 am, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Wed, 2008-07-09 at 04:51 -0700, JeffH wrote: > > I have a URL mapping problem, running 0.96.2 on Windows. > > > The problem: I have to specify the site

Re: newb URL mapping problem

2008-07-09 Thread Malcolm Tredinnick
On Wed, 2008-07-09 at 04:51 -0700, JeffH wrote: > I have a URL mapping problem, running 0.96.2 on Windows. > > The problem: I have to specify the site name in the urls.py or else I > get 404s. > > For example: > urlpatterns = patterns('', > (r'^/$', home), > (r'^/home/$', theview), >

newb URL mapping problem

2008-07-09 Thread JeffH
I have a URL mapping problem, running 0.96.2 on Windows. The problem: I have to specify the site name in the urls.py or else I get 404s. For example: urlpatterns = patterns('', (r'^/$', home), (r'^/home/$', theview), (r'^SouthHavenReservations/home1/$', theview1),