I have middleware where I dynamically load (request.urlconf) urls.py
for each subdomain (application)..if I used (r'^(?P<user>[a-zA-Z0-9-]
{4,20})/$', 'user'), its work with end slash and without, but (r'^(?
P<user>[a-zA-Z0-9-]{4,20})/new/$', 'new'), works only with end
slash..why? I really dont understand why?
I would like get same output to user/new and user/new/..
thanks a lot :)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---