On Mon, Jul 27, 2009 at 7:58 AM, Kenneth Gonsalves <law...@thenilgiris.com>wrote:
> > On Monday 27 Jul 2009 5:21:46 pm Kenneth Gonsalves wrote: > > > can't handle anything except the outermost capturing groups in a > > > reg-exp. > > > > > > I suspect you intend your pattern to be > > > > > > r'^addlandmark/(?:(?P<id>\d+)/)?$' > > > > > > changing the optional portion to be a non-capturing group. Then your > > > pattern only takes (and captures) a single keyword argument parameter: > > > id. > > > > yes, I suppose so. I am now working around having two patterns - one for > no > > id and the other with id. > > but will work with your suggestion once I get the deadline monkey off my > back > -- > regards > kg > http://lawgon.livejournal.com > You could make the regex simpler (not nested at all): r'^addlandmark/?(?P<id>\d+)?/$' Hope that helps, good luck with your deadline, Michael --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---