Opened 15 years ago

Closed 15 years ago

#11723 closed (duplicate)

Missed word to be removed.

Reported by: freenity Owned by: nobody
Component: Documentation Version: 1.1
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Alex Gaynor)

The last example at the bottom, showing the urls.py:

urlpatterns = patterns('mysite.polls.views',
    (r'^$', 'index'),
    (r'^(?P<poll_id>\d+)/$', 'detail'),
    (r'^(?P<poll_id>\d+)/results/$', 'results'),
    (r'^(?P<poll_id>\d+)/vote/$', 'vote'),
)

should not contain mysite. The correct would be:

urlpatterns = patterns('polls.views',
    (r'^$', 'index'),
    (r'^(?P<poll_id>\d+)/$', 'detail'),
    (r'^(?P<poll_id>\d+)/results/$', 'results'),
    (r'^(?P<poll_id>\d+)/vote/$', 'vote'),
)

as for decoupling.

Change History (3)

comment:1 by freenity, 15 years ago

Sorry, the code wasn't formatted.

The last example at the bottom, showing the urls.py:

urlpatterns = patterns('mysite.polls.views',
    (r'^$', 'index'),
    (r'^(?P<poll_id>\d+)/$', 'detail'),
    (r'^(?P<poll_id>\d+)/results/$', 'results'),
    (r'^(?P<poll_id>\d+)/vote/$', 'vote'),
)

should not contain mysite. The correct would be:

urlpatterns = patterns('polls.views',
    (r'^$', 'index'),
    (r'^(?P<poll_id>\d+)/$', 'detail'),
    (r'^(?P<poll_id>\d+)/results/$', 'results'),
    (r'^(?P<poll_id>\d+)/vote/$', 'vote'),
)

as for decoupling.

comment:2 by Alex Gaynor, 15 years ago

Description: modified (diff)

Please use preview.

comment:3 by Russell Keith-Magee, 15 years ago

Resolution: duplicate
Status: newclosed

"Last example at the bottom" of what?

I'm going to assume you mean the tutorial, in which case this is a duplicate of something that is regularly (and incorrectly) reported - see #11464, #11272, #9860, and about a dozen others.

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