Re: Exiting view to continue urls.py

2009-09-29 Thread sunn
Wonderful. Thanks! On Sep 29, 8:26 pm, Daniel Roseman wrote: > On Sep 29, 2:04 pm, sunn wrote: > > > > > Dear Django users, > > > I am trying to create a simple redirect app (useful when rewriting a > > page that was previously not written in Django or when switching > > domains). > > > The app

Re: Exiting view to continue urls.py

2009-09-29 Thread Daniel Roseman
On Sep 29, 2:04 pm, sunn wrote: > Dear Django users, > > I am trying to create a simple redirect app (useful when rewriting a > page that was previously not written in Django or when switching > domains). > > The app would just collect all URLs not found so I put it at the end > of urls.py > > (r

Exiting view to continue urls.py

2009-09-29 Thread sunn
Dear Django users, I am trying to create a simple redirect app (useful when rewriting a page that was previously not written in Django or when switching domains). The app would just collect all URLs not found so I put it at the end of urls.py (r'(?P.*)', 'project.app.views.redirect') Problem i