Changes between Initial Version and Version 4 of Ticket #9944


Ignore:
Timestamp:
Mar 30, 2009, 1:49:20 PM (15 years ago)
Author:
Gary Wilson
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9944

    • Property Milestone1.1
    • Property Triage Stage UnreviewedReady for checkin
    • Property Has patch set
    • Property Keywords kkmegapatch added
    • Property Owner changed from nobody to Gary Wilson
    • Property Status newassigned
  • Ticket #9944 – Description

    initial v4  
    55... is the following text:
    66
    7 ''Now, let's create a Django view that handles the submitted data and does something with it. Remember, in Tutorial 3, we created a URLconf for the polls application that includes this line:
     7''Now, let's create a Django view that handles the submitted data and does something with it. Remember, in Tutorial 3, we created a URLconf for the polls application that includes this line:''
    88
    9 '' (r'^(?P<poll_id>\d+)/vote/$', 'mysite.polls.views.vote'),
     9{{{(r'^(?P<poll_id>\d+)/vote/$', 'mysite.polls.views.vote'),}}}
    1010
    1111
    1212However, if you follow the instructions at the end of the previous chapter under "Decoupling the URLconfs", then the line reads as follows at the current point in the tutorial:
    1313
    14 ''    (r'^(?P<poll_id>\d+)/vote/$', 'vote'),
     14{{{(r'^(?P<poll_id>\d+)/vote/$', 'vote'),}}}
    1515
    1616I imagine that someone added the "Decoupling the URLconfs" section later and didn't fully harmonize Tutorial 4 with this change.
Back to Top