Django

Code

Show
Ignore:
Timestamp:
07/09/07 21:34:42 (1 year ago)
Author:
gwilson
Message:

Fixed #4817 -- Removed leading forward slashes from some urlconf examples in the documentation.

Files:

Legend:

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

    r4420 r5638  
    104104 
    105105    urlpatterns = patterns('', 
    106         (r'^/articles/2003/$', 'news.views.special_case_2003'), 
    107         (r'^/articles/(?P<year>\d{4})/$', 'news.views.year_archive'), 
    108         (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'news.views.month_archive'), 
    109         (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d+)/$', 'news.views.article_detail'), 
     106        (r'^articles/2003/$', 'news.views.special_case_2003'), 
     107        (r'^articles/(?P<year>\d{4})/$', 'news.views.year_archive'), 
     108        (r'^articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'news.views.month_archive'), 
     109        (r'^articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d+)/$', 'news.views.article_detail'), 
    110110    ) 
    111111