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, Ronny Haryanto <[EMAIL PROTECTED]> wrote:
>
>  Try:
>
>     r'^test/fullpath/(?P<path_name>[\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:
>  >
>  >  urlpatterns = patterns('',
>  >                    (r'^test/fullpath/$',"test.browse.views.index"),
>  >
>  >  (r'^test/fullpath/(?P<path_name>\w+)/$',"test.browse.views.index"),
>  >  )
>  >
>  >  What I would like to happen is this:
>  >
>  >  url = http://localhost:8000/test/fullpath                           :
>  >  path_name = ""
>  >  url = http://localhost:8000/test/fullpath/private                 :
>  >  path_name = private
>  >  url = http://localhost:8000/test/fullpath/private/images     :
>  >  path_name = private/images
>  >
>  >  I'm having trouble figuring out the correct regexp to get that third
>  >  case going. I have tried things like
>  >  "r'^test/fullpath/(?P<path_name>\w+)/+",
>  >  "r'^test/fullpath/(?P<path_name>\w+)+",
>  >  "r'^test/fullpath/(?P<path_name>\w+)+/+" but none of these or the
>  >  other combinations that I have tried have worked. They all just return
>  >  private (in the 3'rd case) or throw a 404 error.
>  >
>  >  Is it the case that urls with "/" in them will automatically be cut
>  >  apart by Django or am I just screwing up my regexp real bad here (BTW,
>  >  I am a novice at writing regexp's).
>  >
>  >  Some help would be highly appreciated.
>  >
>  >  Best,
>  >
>  >  R
>  >
>  >  >
>  >
>
>  >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to