Re: dot can't match in url configuration

2006-01-21 Thread Antonio Cavedoni
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'^us

dot can't match in url configuration

2006-01-21 Thread [EMAIL PROTECTED]
Hi guys. 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.*)$', 'test.fav.index'), Any suggestion?