Changes between Initial Version and Version 4 of Ticket #21023


Ignore:
Timestamp:
Sep 2, 2013, 6:39:33 PM (11 years ago)
Author:
Ramiro Morales
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21023

    • Property Type UncategorizedCleanup/optimization
    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #21023 – Description

    initial v4  
    22
    33URLS:
    4 
     4{{{
    55from django.conf.urls import patterns, url
    66
     
    1010    url(r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'news.views.article_detail'),
    1111)
    12 
     12}}}
    1313You go line by line and say r = raw. This means no escape characters, the compiler processes what it sees.
    14 Next: ^ from Regular expressions means the beginning of the line beginning with the word articles?
     14Next: `^` from Regular expressions means the beginning of the line beginning with the word articles?
    1515The slash is:
    1616Then you put parenthesis because?: GET IT?
Back to Top