Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#15942 closed Bug (fixed)

duplicate id "module-django.contrib.auth.views" in the topics/auth.txt doc

Reported by: Mathieu Agopian Owned by: nobody
Component: Documentation Version: 1.3
Severity: Normal Keywords:
Cc: mathieu.agopian@… Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

The documentation patch applied to fix #6581 ([16130] on trunk and [16131] on 1.3.X, git commit f3163a64b3940e3145090f6493849222ec052d0e) introduced a sphinx warning about a duplicate id module-django.contrib.auth.views.

Indeed, the .. module:: django.contrib.auth.views id is present twice in the same file (line 879 and 1026 in docs/topics/auth.txt).

I believe the second occurrence of the id should be replaced by .. currentmodule:: django.contrib.auth.views, and i added a patch that does just that.

Attachments (1)

15942-remove_doc_duplicate_id.diff (417 bytes ) - added by Mathieu Agopian 13 years ago.

Download all attachments as: .zip

Change History (5)

by Mathieu Agopian, 13 years ago

comment:1 by Mathieu Agopian, 13 years ago

Cc: mathieu.agopian@… added

comment:2 by Jannis Leidel, 13 years ago

Triage Stage: UnreviewedReady for checkin

comment:3 by Tim Graham, 13 years ago

Resolution: fixed
Status: newclosed

In [16142]:

Fixed #15942 - removed duplicate module id in docs; thanks magopian.

comment:4 by Tim Graham, 13 years ago

In [16143]:

[1.3.X] Fixed #15942 - removed duplicate module id in docs; thanks magopian.

Backport of r16142 from trunk.

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