django1/django/contrib/comments
Malcolm Tredinnick cf7a078774 Added a related name to the ForeignKey in the abstract base class of the
comment models. You'll never need to use this name, but it will lead to invalid
models if not present.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@8803 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-01 17:56:22 +00:00
..
templates/comments Fixed #8608: corrected doc link in comment 400 error page. 2008-08-28 19:46:33 +00:00
templatetags Fixed #8544: correctly cast `Comment.object_pk` to string when doing lookups. This really only papers over a bigger problem related to casting the RHS of GFKs, but that larger change can wait for a more systematic fix. 2008-08-27 22:51:24 +00:00
views Fixed #8716: correctly handle name and email in comments from authenticated users. 2008-08-30 21:30:02 +00:00
__init__.py The comments app was unconditionally accessing various settings that didn't 2008-08-26 06:58:43 +00:00
admin.py Refactored Django's comment system. 2008-08-25 22:14:22 +00:00
feeds.py Refactored Django's comment system. 2008-08-25 22:14:22 +00:00
forms.py Make sure to use force_unicode when looking up comment objects by `object_pk`. Fixes #8762, and one other bug that nobody's reported yet. 2008-09-01 17:23:09 +00:00
managers.py Make sure to use force_unicode when looking up comment objects by `object_pk`. Fixes #8762, and one other bug that nobody's reported yet. 2008-09-01 17:23:09 +00:00
models.py Added a related name to the ForeignKey in the abstract base class of the 2008-09-01 17:56:22 +00:00
signals.py Updated comment signals to provide enough information to actually act on. This was uncovered when working on the documentation, which'll be committed shortly. 2008-08-26 18:53:52 +00:00
urls.py Fixed get_absolute_url() for comments. Previously, it relied on "view on site" 2008-08-27 07:04:58 +00:00