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