Re: URL Method

2008-01-12 Thread [EMAIL PROTECTED]
This is a fairly recent addition to the development trunk, it allows for named URL patterns. It is explained in detail at http://www.djangoproject.com/documentation/url_dispatch/#naming-url-patterns In terms of whether you should start writing your url expressions like that, it's up to you. If

URL Method

2008-01-12 Thread Chris
HI I was tinkering around with this django app called basic blog (http://code.google.com/p/django-basic-blog/) and I noticed that the author uses a method called URL() to define his URL patterns, views, and template objects. Should I start writing my url expressions like this? Is it a new standard