Changeset 380
- Timestamp:
- 08/01/05 16:35:55 (3 years ago)
- Files:
-
- django/trunk/docs/overview.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/overview.txt
r360 r380 169 169 urlpatterns = patterns('', 170 170 (r'^/articles/(?P<year>\d{4})/$', 'myproject.news.views.articles.year_archive'), 171 (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'myproject.news.views.articles.month_archive'),172 171 (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'myproject.news.views.articles.month_archive'), 173 172 (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d+)/$', 'myproject.news.views.articles.article_detail'),
