django-contrib-comments


Namedjango-contrib-comments JSON
Version 2.2.0 PyPI version JSON
download
home_pagehttps://github.com/django/django-contrib-comments
SummaryThe code formerly known as django.contrib.comments.
upload_time2022-01-31 19:40:27
maintainer
docs_urlNone
authorDjango Software Foundation
requires_python
licenseBSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===========================
Django "excontrib" Comments
===========================

.. image:: https://img.shields.io/pypi/v/django-contrib-comments.svg
   :target: https://pypi.python.org/pypi/django-contrib-comments

.. image:: https://img.shields.io/travis/django/django-contrib-comments.svg
    :target: http://travis-ci.org/django/django-contrib-comments

.. image:: https://img.shields.io/pypi/pyversions/django-contrib-comments.svg
   :target: https://pypi.python.org/pypi/django-contrib-comments

.. image:: https://img.shields.io/pypi/djversions/django-contrib-comments.svg
   :target: https://pypi.org/project/django-contrib-comments/

Django used to include a comments framework; since Django 1.6 it's been
separated to a separate project. This is that project.

This framework can be used to attach comments to any model, so you can use it
for comments on blog entries, photos, book chapters, or anything else.

For details, `consult the documentation`__.

__ https://django-contrib-comments.readthedocs.io/
.. :changelog:

History
=======

2.2.0 (2022-01-31)
------------------

* Confirmed support for Django 4.0.

2.1.0 (2021-03-03)
------------------

* Dropped support for Django 1.11, 2.0, and 2.1.
* Added the ``delete_stale_comments`` management command.
* Added db_index to ``object_pk`` and ``is_removed`` fields.
* Altered ``object_pk`` from ``TextField`` to ``CharField(max_length=64)``
  so that the field can be indexed on MySQL, too. **Warning:** if you attach
  comments to objects whose primary key is serialized to more than 64
  characters, you should provide a custom Comment model
  (more about that in the documentation) with an appropriate
  ``object_pk`` field.
* Confirmed support for Python 3.9.
* Added support for Django 3.2.

2.0.0 (2020-12-20)
------------------

* Removed support for Python 2.
* Renamed zh_CN to zh_Hans and zh_TW to zh_Hant to match
  Django Chinese translations naming.
* Confirmed support for Django 3.1 and avoid deprecation warnings.
* Confirmed support for Python 3.8.
* Updated Arabic and German translations.

1.9.2 (2019-12-03)
------------------

* WARNING: This *is* the last version supporting Python 2.
* Confirmed support for Django 3.0.
* Prevented deprecation warnings with Django 3.0.
* Updated Danish and Indonesian translations.

1.9.1 (2019-02-20)
------------------

* WARNING: This is most probably the last version supporting Python 2.
* Added testing for Python 3.7.
* Confirmed support for Django 2.2 (no code changes required).
* Updated translations.

1.9.0 (2018-08-04)
------------------

* Added testing for Python 3.6.
* Confirmed support for Django 2.0 and 2.1.
* Dropped support for Django < 1.11.
* ``ip_address`` is set to None when ``REMOTE_ADDR`` is empty (#93).

1.8.0 (2017-02-03)
------------------

* Fixed a packaging error which caused sub-packages of the tests to be
  distributed.
* Use ``get_current_site`` to look up the site instead of ``settings.SITE_ID``.
* Confirmed support for Django 1.11.
* Dropped Django 1.7 and Python 3.2/3.3 support.
* Added testing for Python 3.5.
* Updated translations.

1.7.3 (2016-09-13)
------------------

* Fixed a regression which prevented the ``Comment`` model
  from registering with the admin.
* Updated translations.

1.7.2 (2016-08-04)
------------------

* ``get_comment_list`` now returns a ``QuerySet`` instead of a ``list``.
* Fixed a Django 1.9+ compatibility issue with a customized comment app in
  ``INSTALLED_APPS`` (#87).
* Confirmed support for Django 1.10.

1.7.1 (2016-05-03)
------------------

* Isolated abstract models outside of models.py so they can be imported without
  triggering Django's deprecation warning about models living outside of a
  'models' module.
* Updated translations.

1.7.0 (2016-03-29)
------------------

* Dropped Django 1.6 and Python 2.6 support
* Improved usage of ``AppConfig`` functionality for custom models.
* Added ``CommentAbstractModel`` as another abstract model layer for easier
  customization.
* Avoided N+1 query problem for users on comments.
* Made the moderation email subject translatable.
* Added a database index to ``Comment.submit_date``, since it is used for the
  default ordering.
* Fixed packaging so locale files are distributed.
* Updated translations.

1.6.2 (2016-12-10)
------------------

* Fixed some Django deprecation warnings.
* Setup translation system using Transifex.
* Added missing South migration for the email length.
* Updated translations.

1.6.1 (2016-05-08)
------------------

* Fixed migrations not working when installed as an egg.


1.6.0 (2016-04-29)
------------------

* Made ``CommentSecurityForm`` pass keyword arguments to its parent class.
* Added ``COMMENTS_TIMEOUT`` setting to configure the timeout for
  ``CommentSecurityForm``.
* Migrated ``Comment.user_email`` to 254 characters.
* Moved South migrations to ``south_migrations`` folder so they can exist with
  Django 1.7 migrations.
* Added Django 1.9 compatibility, dropped support for Django 1.5.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/django/django-contrib-comments",
    "name": "django-contrib-comments",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Django Software Foundation",
    "author_email": "jacob@jacobian.org",
    "download_url": "https://files.pythonhosted.org/packages/34/93/eeca36fa4e380542ea8506c099da803b9439fc3c2c256924796898cfe17e/django-contrib-comments-2.2.0.tar.gz",
    "platform": "any",
    "description": "===========================\nDjango \"excontrib\" Comments\n===========================\n\n.. image:: https://img.shields.io/pypi/v/django-contrib-comments.svg\n   :target: https://pypi.python.org/pypi/django-contrib-comments\n\n.. image:: https://img.shields.io/travis/django/django-contrib-comments.svg\n    :target: http://travis-ci.org/django/django-contrib-comments\n\n.. image:: https://img.shields.io/pypi/pyversions/django-contrib-comments.svg\n   :target: https://pypi.python.org/pypi/django-contrib-comments\n\n.. image:: https://img.shields.io/pypi/djversions/django-contrib-comments.svg\n   :target: https://pypi.org/project/django-contrib-comments/\n\nDjango used to include a comments framework; since Django 1.6 it's been\nseparated to a separate project. This is that project.\n\nThis framework can be used to attach comments to any model, so you can use it\nfor comments on blog entries, photos, book chapters, or anything else.\n\nFor details, `consult the documentation`__.\n\n__ https://django-contrib-comments.readthedocs.io/\n.. :changelog:\n\nHistory\n=======\n\n2.2.0 (2022-01-31)\n------------------\n\n* Confirmed support for Django 4.0.\n\n2.1.0 (2021-03-03)\n------------------\n\n* Dropped support for Django 1.11, 2.0, and 2.1.\n* Added the ``delete_stale_comments`` management command.\n* Added db_index to ``object_pk`` and ``is_removed`` fields.\n* Altered ``object_pk`` from ``TextField`` to ``CharField(max_length=64)``\n  so that the field can be indexed on MySQL, too. **Warning:** if you attach\n  comments to objects whose primary key is serialized to more than 64\n  characters, you should provide a custom Comment model\n  (more about that in the documentation) with an appropriate\n  ``object_pk`` field.\n* Confirmed support for Python 3.9.\n* Added support for Django 3.2.\n\n2.0.0 (2020-12-20)\n------------------\n\n* Removed support for Python 2.\n* Renamed zh_CN to zh_Hans and zh_TW to zh_Hant to match\n  Django Chinese translations naming.\n* Confirmed support for Django 3.1 and avoid deprecation warnings.\n* Confirmed support for Python 3.8.\n* Updated Arabic and German translations.\n\n1.9.2 (2019-12-03)\n------------------\n\n* WARNING: This *is* the last version supporting Python 2.\n* Confirmed support for Django 3.0.\n* Prevented deprecation warnings with Django 3.0.\n* Updated Danish and Indonesian translations.\n\n1.9.1 (2019-02-20)\n------------------\n\n* WARNING: This is most probably the last version supporting Python 2.\n* Added testing for Python 3.7.\n* Confirmed support for Django 2.2 (no code changes required).\n* Updated translations.\n\n1.9.0 (2018-08-04)\n------------------\n\n* Added testing for Python 3.6.\n* Confirmed support for Django 2.0 and 2.1.\n* Dropped support for Django < 1.11.\n* ``ip_address`` is set to None when ``REMOTE_ADDR`` is empty (#93).\n\n1.8.0 (2017-02-03)\n------------------\n\n* Fixed a packaging error which caused sub-packages of the tests to be\n  distributed.\n* Use ``get_current_site`` to look up the site instead of ``settings.SITE_ID``.\n* Confirmed support for Django 1.11.\n* Dropped Django 1.7 and Python 3.2/3.3 support.\n* Added testing for Python 3.5.\n* Updated translations.\n\n1.7.3 (2016-09-13)\n------------------\n\n* Fixed a regression which prevented the ``Comment`` model\n  from registering with the admin.\n* Updated translations.\n\n1.7.2 (2016-08-04)\n------------------\n\n* ``get_comment_list`` now returns a ``QuerySet`` instead of a ``list``.\n* Fixed a Django 1.9+ compatibility issue with a customized comment app in\n  ``INSTALLED_APPS`` (#87).\n* Confirmed support for Django 1.10.\n\n1.7.1 (2016-05-03)\n------------------\n\n* Isolated abstract models outside of models.py so they can be imported without\n  triggering Django's deprecation warning about models living outside of a\n  'models' module.\n* Updated translations.\n\n1.7.0 (2016-03-29)\n------------------\n\n* Dropped Django 1.6 and Python 2.6 support\n* Improved usage of ``AppConfig`` functionality for custom models.\n* Added ``CommentAbstractModel`` as another abstract model layer for easier\n  customization.\n* Avoided N+1 query problem for users on comments.\n* Made the moderation email subject translatable.\n* Added a database index to ``Comment.submit_date``, since it is used for the\n  default ordering.\n* Fixed packaging so locale files are distributed.\n* Updated translations.\n\n1.6.2 (2016-12-10)\n------------------\n\n* Fixed some Django deprecation warnings.\n* Setup translation system using Transifex.\n* Added missing South migration for the email length.\n* Updated translations.\n\n1.6.1 (2016-05-08)\n------------------\n\n* Fixed migrations not working when installed as an egg.\n\n\n1.6.0 (2016-04-29)\n------------------\n\n* Made ``CommentSecurityForm`` pass keyword arguments to its parent class.\n* Added ``COMMENTS_TIMEOUT`` setting to configure the timeout for\n  ``CommentSecurityForm``.\n* Migrated ``Comment.user_email`` to 254 characters.\n* Moved South migrations to ``south_migrations`` folder so they can exist with\n  Django 1.7 migrations.\n* Added Django 1.9 compatibility, dropped support for Django 1.5.\n\n\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "The code formerly known as django.contrib.comments.",
    "version": "2.2.0",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79b4edf27735bf586e20ef87e1c8e931d01aa5caeedfe3447bb6d77e30d09c67",
                "md5": "0115b678313187af7d45e1da82bdd9bf",
                "sha256": "2ca79060bbc8fc5b636981ef6e50f35ab83649af75fc1be47bf770636be3271c"
            },
            "downloads": -1,
            "filename": "django_contrib_comments-2.2.0-py3-none-any.whl",
            "has_sig": true,
            "md5_digest": "0115b678313187af7d45e1da82bdd9bf",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 416426,
            "upload_time": "2022-01-31T19:40:24",
            "upload_time_iso_8601": "2022-01-31T19:40:24.866282Z",
            "url": "https://files.pythonhosted.org/packages/79/b4/edf27735bf586e20ef87e1c8e931d01aa5caeedfe3447bb6d77e30d09c67/django_contrib_comments-2.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3493eeca36fa4e380542ea8506c099da803b9439fc3c2c256924796898cfe17e",
                "md5": "7404007c1ed60b8c515c17e727a4eaa2",
                "sha256": "48de00f15677e016a216aeff205d6e00e4391c9a5702136c64119c472b7356da"
            },
            "downloads": -1,
            "filename": "django-contrib-comments-2.2.0.tar.gz",
            "has_sig": true,
            "md5_digest": "7404007c1ed60b8c515c17e727a4eaa2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 870169,
            "upload_time": "2022-01-31T19:40:27",
            "upload_time_iso_8601": "2022-01-31T19:40:27.913255Z",
            "url": "https://files.pythonhosted.org/packages/34/93/eeca36fa4e380542ea8506c099da803b9439fc3c2c256924796898cfe17e/django-contrib-comments-2.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-01-31 19:40:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "django",
    "github_project": "django-contrib-comments",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "django-contrib-comments"
}
        
Elapsed time: 0.04783s