On Fri, 2007-06-15 at 11:44 -0700, [EMAIL PROTECTED] wrote:
> I've got urls that could be /section/foo/slug/, /section/bar/slug/, /
> section/whatever/slug/, so I'm trying to use a wildcard selector
> (http://www.djangobook.com/en/beta/chapter03/#s-wildcard-urlpatterns)
> 
> I've tried lots of different ways, but the most promising seems to be
> 
> (r'^section/[^/]+/(?P<slug>[-w]+)/$', ... ),
> 
> If I'm reading right, that should match everything up to the next
> slash, but no matter what I seem to try, I 404.

It does. It's the slug that's not matching. [-w] will only match "-" or
"w".

Try:

(r'^section/[^/]+/(?P<slug>(\w|-)+)/$, ...),

and see if that works.

Todd


--~--~---------~--~----~------------~-------~--~----~
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