On Fri, 2009-04-03 at 17:56 -0700, TheIvIaxx wrote:
> I have an object that will be viewed, edited, or added.  I would like
> to give a url for edit/add but default to view if nothing is given.
> For example:
> 
> http://www.example.com/page/edit --> Goes to edit page template
> http://www.example.com/page/ -- Goes to view template
> 
> however if i put an argument at the end of the regex, then django
> expects it and won't accept a null:
> 
> (r'^folder/(?P<obj_id>\d+)/$', 'content.views.page'),
> (r'^folder/(?P<obj_id>\d+)/(?P<method>\w+)$', 'content.views.page'),
> 
> If i leave of the <method> arg, then it won't match when this is
> present.  Are you supposed to have a url line for every single thing
> you want to do to an object?

No. You have the full power of the regular expression syntax at your
disposal. It's not about null or anything like that, it's about an
optional piece in the pattern. Using this will work (not the trailing
"?"):

        r'^folder/(?P<obj_id>\d+)/(?P<method>\w+)?$'
        
There are a lot of online tutorials about Python's regular expression
syntax if you're not familiar with that, although the best place to
start is the documentation for the "re" module in Python's own
documentation.

Regards,
Malcolm


--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to