thank you Ivan,

the problem with collapsing is that the 'name' parameter in my view
does not get the default value then if the url is empty. it just
receives the empty string because the group is the empty string and
not None. but i am new to python so may be i have missed something. of
course i can always check if my name is the empty string, but using
default values for parameters looks cleaner...

konstantin

On Mar 13, 11:19 am, Ivan Sagalaev <[EMAIL PROTECTED]> wrote:
> akonsu wrote:
> > i think the reason is two entries in the urlpatterns with the same
> > view. is this a bug?
>
> Well, not exactly a bug but a limitation of "reverse" function that {%
> url %} uses to do actual resolving. Incidentally there is a thread in
> django-developers[1] about solving a similar issue.
>
> But in your case I believe you can just collapse both url patterns into
> one since they point to the same view:
>
>      urlpatterns = patterns('',
>        (r'^(\w+)?/?$', 'path.to.myview'),
>      )


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