On Wed, Sep 24, 2008 at 6:37 PM, djandrow <[EMAIL PROTECTED]> wrote:

>
> So after messing around a for a couple of minutes I discovered the
> urlencode changes About Me to About%20Me, (if you are using firefox 3
> or above it will still display "About Me" in the address bar, that
> confused me for a while).
>
> But now if i put in:
>
> url.net/blog/About%20Me/,
>
> it doesn't match this url pattern:
>
> ^blog/(?P<category>\w+)/$
>
> So how can i get this to match the patter?
>

I think rather you need to make the pattern match all possible values of
category.  Since you want to take the value from the url and look it up in
the database, and since you allow spaces in category, your pattern has to
allow spaces.  (Note that the percent-encoding in the url is automatically
undone before url mathicng is attempted.  Similarly your view code will get
the variable passed in with spaces, not '%20' in place of spaces.)  So, if
your category field can contain any character, then your urlpattern to match
it should be something like:

^blog/(?P<category>.+)/$

instead of the \w which disallows spaces (among other characters).

Karen

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