Opened 11 years ago

Last modified 11 years ago

#21023 closed Cleanup/optimization

Your documentation is poor at best. — at Initial Version

Reported by: lam2015@… Owned by: nobody
Component: Documentation Version: 1.5
Severity: Normal Keywords: URL
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Here is how you do it:

URLS:

from django.conf.urls import patterns, url

urlpatterns = patterns(,

url(r'articles/(\d{4})/$', 'news.views.year_archive'),
url(r'
articles/(\d{4})/(\d{2})/$', 'news.views.month_archive'),
url(r'articles/(\d{4})/(\d{2})/(\d+)/$', 'news.views.article_detail'),

)

You go line by line and say r = raw. This means no escape characters, the compiler processes what it sees.
Next: from Regular expressions means the beginning of the line beginning with the word articles?
The slash is:
Then you put parenthesis because?: GET IT?
then there is another slash

AND SO ON!!!! ONE STEP at a time

THIS IS HOW YOU EXPLAIN THINGS. Make believe the person reading it doesnt know anything about Regular expressions. These are not standard Regex.. not like Perl

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top