On Thu, 2007-06-28 at 18:46 +0000, Ryan K wrote:
> Hi. I'm trying to setup an re pattern for /search in my URL conf. How
> can I match an entire string like "red fox" e.g. 
> http://example.com/django/search/red%20fox?
> I noticed that Google replaces their query parameter q's spaces with
> '+'s using Javascript. Is that a better way to go?

One way, based on your example, would be

        r'^/search/(?P<param>.*)$'

which captures everything up to the end of the line and will pass it to
your view function as the "param" keyword argument.

Regards,
Malcolm

-- 
Depression is merely anger without enthusiasm. 
http://www.pointy-stick.com/blog/


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