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