On 10/16/07, Pythoni <[EMAIL PROTECTED]> wrote:
...
> so I have in urls.py
> (r'^Myscript/(?P<Name>\w+)/','miproject.apps.mi.views.mi.Myscript'),
>
> it works only if    Name    is one word, e.g. John.

You'll see documentation of python's re syntax here:
http://docs.python.org/lib/re-syntax.html

Based on that, \w is indeed only these chars:
[a-zA-Z0-9_]

You can extend the character class to accept spaces as well like so:
[\w ]+

So this would work for your purpose:
(r'^Myscript/(?P<Name>[\w ]+)/','miproject.apps.mi.views.mi.Myscript'),

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