Django

Code

Changeset 380

Show
Ignore:
Timestamp:
08/01/05 16:35:55 (3 years ago)
Author:
adrian
Message:

Fixed duplicate code bug in docs/overview.txt -- thanks, James Kew

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/overview.txt

    r360 r380  
    169169    urlpatterns = patterns('', 
    170170        (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'), 
    172171        (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'myproject.news.views.articles.month_archive'), 
    173172        (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d+)/$', 'myproject.news.views.articles.article_detail'),