Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#1811 closed defect (fixed)

Small inconsistency in the Django overview [documentation issue]

Reported by: quarkcool@… Owned by: Jacob
Component: Documentation Version: dev
Severity: normal 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

There is a small inconsistency in the Django overview (in the documentation : the overview.txt file).

In the Design your URLs section, the view to call given the example URL "/articles/2005/05/39323/" is mysite.views.article_detail, not myproject.news.views.article_detail.

And in the section Design your templates, I don't know if that's intended but the code that is given is for the article_detail.html template, not year_archive.html; and I would say we expect to see the latter.

Change History (3)

comment:1 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [2867]) Fixed #1811 -- Fixed some inconsistencies in docs/overview.txt. Thanks, quarkcool@…

comment:2 by anonymous, 18 years ago

Resolution: fixed
Status: closedreopened

The view is not mysite.news.views.article_detail, it's mysite.views.article_detail (without the news bit).

And now the description shouldn't mention article.get_reporter as a function call, because it isn't there anymore.

:)

comment:3 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: reopenedclosed

(In [2871]) Fixed #1811 -- Fixed inconsistencies in docs/overview.txt

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