On Tue, 2007-02-27 at 11:40 -0800, yary wrote: > http://www.djangoproject.com/documentation/generic_views/ has this > example: > > ... redirects from /foo/<id>/ to /bar/<id>/: > > urlpatterns = patterns('django.views.generic.simple', > ('^foo/(?P<id>\d+)/$', 'redirect_to', {'url': '/bar/%(id)s/'}), > ) > > What replaces the '%(id)s' section, the generic view package, or the > URL dispatcher?
The generic view does the replacement. You are passing in a format string and all the generic view does is argument substitution. > Is there more documentation on this? In this case, the code is the documentation. The text docs give a straightforward example of how to use the thing, but if you want to know exactly how it works (which goes a bit beyond how to use it), nothing is going to beat looking at the source. It's only Python code, after all. The language is designed to be readable. :-) Cheers, 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---