Hey Chris,

On 21 Jan 2006, at 15:30, [EMAIL PROTECTED] wrote:
The default django url configuration system seems does not allow url with "dot", i.e. I need url like "http://mysite.com/user/ favorate/web2.0", but this url con't match any url configuration even I use following config:

(r'^user/favorate/(?P<name>.*)$', 'test.fav.index'),

how about something like this?

(r'^user/favorate/(?P<name>[a-zA-Z0-9\.]*)$', 'test.fav.index'),

Also: shouldn’t favorate be spelled “favorite”?
--
Antonio


Reply via email to