Re: some help with urls

2008-03-31 Thread Rishabh Manocha
Thanks, That works :). Are there any good (django specific) resources to learn up on regexp's??I have looked through the regexp page on wikipedia and the python website itself, but i'm still as bad at them as I was before. Anyways, thanks again for your help, R On Mon, Mar 31, 2008 at 3:46 PM

Re: some help with urls

2008-03-31 Thread Ronny Haryanto
Try: r'^test/fullpath/(?P[\w/]+) Ronny On Mon, Mar 31, 2008 at 4:08 PM, Rishabh Manocha <[EMAIL PROTECTED]> wrote: > > Hey guys, > > I'm trying to setup my urls.py file and am having trouble getting the > args to be passed correctly to my view. I basically have something > link this: >

some help with urls

2008-03-31 Thread Rishabh Manocha
Hey guys, I'm trying to setup my urls.py file and am having trouble getting the args to be passed correctly to my view. I basically have something link this: urlpatterns = patterns('', (r'^test/fullpath/$',"test.browse.views.index"), (r'^test/fullpath/(?P\w+)/$',"test.browse.