Actually, there is a character class \D; it matches any NON-digit. As such this should match title, as long as it contains non digits.
But looking at this line from the error message: 8. ^plugin/ ^(?P<pluginTitle>\d+)/$ [name='detail'] It appears that you are actually using the little \d, contrary to the url pattern that you quoted. That would only match titles that were composed entirely of digits. Be sure which one is there. You may actually want \w, or even [^/]. Bill On Tue, Oct 15, 2013 at 4:38 AM, Tom Evans <tevans...@googlemail.com> wrote: > On Mon, Oct 14, 2013 at 11:58 PM, Mark Strickland > <smsm...@roadrunner.com> wrote: > > > > I am new to using Django and I can get one urls to work, but I cannot > get another. I am running Django 1.5 > > > > This url works. > > > > url(r'^$', views.index, name='index'), > > > > > > But if I try to follow this one. > > > > url(r'^(?P<pluginTitle>\D+)/$', views.detail, name='detail'), > > > > > > I get the following error.when I try > > http://127.0.0.1:8000/plugin/titlewhere title is a unique key in the > > database. > > > > Page not found (404) > > Your regular expression is bogus. Presumably (given the error messages > I've chopped) that URL is in a urlconf that has a prefix of > "/plugin/", so ignore what Tom Lockhart said about that. > > Your regexp is: > > r'^(?P<pluginTitle>\D+)/$' > > This says "From the beginning of the string, capture a grouping of 1 > or more characters from the class '\D' as the parameter 'pluginTitle', > followed by a '/' character, followed by the end of the string. > > The main problem is that there is no such character class '\D'. There > is '\d', it means the digits 0-9, but you are trying to match the word > 'title'. Work out what are valid characters for your title and write > the regular expression accordingly. > > Cheers > > Tom > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CAFHbX1KAh%3DCyc_DApJ48R-Yvsx-grCrQY%2BYQ53Caxt4Krf%3DxmA%40mail.gmail.com > . > For more options, visit https://groups.google.com/groups/opt_out. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAB%2BAj0vfQ1qSB7vDTFaZY%3D6PtSOeTfEdp057fvTqULrVnDh_SA%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.