Skip to content

Commit 6bb0e16

Browse files
committed
Remove django.contrib.comments references from README
1 parent 7feb0f8 commit 6bb0e16

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

README.rst

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ django-threadedcomments
44
*threadedcomments* is a Django application which allows for the simple creation of a threaded commenting system.
55
Commenters can reply both to the original item, and reply to other comments as well.
66

7-
The application is (as of 0.9) built on top of django_comments_ (or django.contrib.comments_),
7+
The application is built on top of django_comments_,
88
which allows it to be easily extended by other modules.
99

1010

@@ -33,16 +33,12 @@ Add the following to ``settings.py``::
3333
By placing the ``threadedcomments`` app above the ``django.contrib.comments`` application,
3434
the placeholder ``comments/list.html`` template will already be replaced by a threaded view.
3535

36-
Make sure django.contrib.comments_ is configured in ``urls.py``::
36+
Make sure django_comments_ is configured in ``urls.py``::
3737

3838
urlpatterns += patterns('',
3939
url(r'^articles/comments/', include('django_comments.urls')),
4040
)
4141

42-
.. note::
43-
For older Django versions (up till 1.6), you can also use django.contrib.comments_ in the ``INSTALLED_APPS``.
44-
This packages uses either one of those packages, depending on what is installed.
45-
4642
Provide a template that displays the comments for the ``object`` (e.g. article or blog entry)::
4743

4844
{% load threadedcomments_tags %}
@@ -61,8 +57,8 @@ Template design
6157
Naturally, it's desirable to write your own version of ``comments/list.html`` in your project,
6258
or use one of the ``comments/app/list.html`` or ``comments/app/model/list.html`` overrides.
6359

64-
Make sure to override ``comments/base.html`` as well, so the other views of django.contrib.comments_
65-
are displayed using your web site design. The other templates of django.contrib.comments_ are
60+
Make sure to override ``comments/base.html`` as well, so the other views of django_comments_
61+
are displayed using your web site design. The other templates of django_comments_ are
6662
very plain as well on purpose (for example ``comments/posted.html``),
6763
since these pages depend on the custom design of the web site.
6864

@@ -75,7 +71,7 @@ Template tags
7571

7672
The ``threadedcomments_tags`` library is a drop-in replacement for the ``comments`` library
7773
that is required for the plain comments. The tags are forwards compatible;
78-
they support the same syntax as django_comments_ (or django.contrib.comments_) provides,
74+
they support the same syntax as django_comments_ provides,
7975
and they add a few extra parameters.
8076

8177
Fetching comment counts::
@@ -134,7 +130,7 @@ The ``annotate_tree`` filter adds the ``open`` and ``close`` properties to the c
134130
Extending the module
135131
====================
136132

137-
The application is built on top of the standard django_comments_ (or django.contrib.comments_) framework,
133+
The application is built on top of the standard django_comments_ framework,
138134
which supports various signals, and template overrides to customize the comments.
139135

140136
To customize django-threadedcomments, override the proper templates, or include the apps that provide the missing features.
@@ -144,9 +140,9 @@ The same applies to social media logins, comment subscriptions, spam protection
144140

145141
Note that the standard framework also supports moderation, flagging, and RSS feeds too. More documentation can be found at:
146142

147-
* `Django's comments framework <https://django-contrib-comments.readthedocs.org/>`_
148-
* `Customizing the comments framework <https://django-contrib-comments.readthedocs.org/en/latest/custom.html>`_
149-
* `Example of using the in-built comments app <https://django-contrib-comments.readthedocs.org/en/latest/example.html>`_
143+
* `Django's comments framework <https://django-contrib-comments.readthedocs.io/>`_
144+
* `Customizing the comments framework <https://django-contrib-comments.readthedocs.io/en/latest/custom.html>`_
145+
* `Example of using the in-built comments app <https://django-contrib-comments.readthedocs.io/en/latest/example.html>`_
150146

151147
Some of the modules worth looking at are:
152148

@@ -158,7 +154,6 @@ These modules can enhance the comments system even further.
158154

159155

160156
.. _django_comments: https://github.com/django/django-contrib-comments
161-
.. _django.contrib.comments: https://docs.djangoproject.com/en/1.7/ref/contrib/comments/
162157
.. _django-fluent-comments: https://github.com/edoburu/django-fluent-comments/
163158
.. _django-myrecaptcha: https://bitbucket.org/pelletier/django-myrecaptcha/
164159
.. _django-comments-spamfighter: https://github.com/bartTC/django-comments-spamfighter/

0 commit comments

Comments
 (0)