Opened 12 years ago

Closed 12 years ago

#17598 closed Cleanup/optimization (wontfix)

django-admin documentation wrong versionadded link

Reported by: Lehych Owned by: nobody
Component: Documentation Version: 1.2
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

django-admin.py support --exclude particular models according to 1.3 documentation since 1.3 and according to 1.2 documentation since 1.1
As I know it appears in 1.3
(here is code from 1.2.7 dumpdata command)

Change History (2)

comment:1 by Ramiro Morales, 12 years ago

Triage Stage: UnreviewedAccepted
Type: BugCleanup/optimization

No, nothing related to the --exclude option was added in Django 1.1.

What the text in the 1.2 documentation says is that such option got added in Django 1.0 and allows to exclude entire applications by passing appname [appname...] arguments.

And what the 1.3 docs says is that in such version this functionality was extended so the user can also exclude models by using appname.ModelName [appname.ModelName...] arguments. Also, older versionaded notes (<= version 1.1) got removed before the 1.3 release so the above note isn't there anymore.

But I agree all this could be made mode clear.

Last edited 12 years ago by Ramiro Morales (previous) (diff)

comment:2 by Tim Graham, 12 years ago

Resolution: wontfix
Status: newclosed

Docs for 1.3 aren't being updated any more and these versionadded/changed annotations will be removed.

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