summaryrefslogtreecommitdiff
path: root/django/contrib/comments
AgeCommit message (Expand)Author
2008-10-05Fixed #8963 -- Use the require_POST decorator instead of doing things manuall...Malcolm Tredinnick
2008-10-05Fixed #9100 -- Added a missing CSS class to a submit button.Malcolm Tredinnick
2008-10-05Add internationalisation support to the comment templates. Fixed #8868, #8905Malcolm Tredinnick
2008-10-05Fixed #8803 -- Allow authenticated users without first_name/last_name values ...Malcolm Tredinnick
2008-10-05Fixed #8869 -- Fixed comments templates to be well-formed XHTML.Malcolm Tredinnick
2008-10-05Fixed #8879 -- Used ungettext instead of ngettext in the comments framework.Malcolm Tredinnick
2008-10-05Fixed #9141 -- Removed two templates from django.contrib.comments that were n...Malcolm Tredinnick
2008-09-28Use correct m2m join table name in LatestCommentsFeedJames Bennett
2008-09-28Fixed #9203: Restore correct ordering for LatestCommentsFeedJames Bennett
2008-09-16Fixed #8870 -- Changed django.contrib.comments templates to use lowercase 'po...Adrian Holovaty
2008-09-16Fixed #8917 -- Comments are now displayed in reverse order by submit_date in ...Wilson Miner
2008-09-10Fixed #8959 -- Removed redundant calls to the 'escape' template filter in the...Adrian Holovaty
2008-09-03Fixed two XHTML errors pointed out by Jarek Zgoda. Refs #8855.Malcolm Tredinnick
2008-09-03Fixed #8614 -- Typo fix.Malcolm Tredinnick
2008-09-02Avoid a deprecation warning when running on Python 2.6. Patch from Karen Tracey.Malcolm Tredinnick
2008-09-01Added a related name to the ForeignKey in the abstract base class of theMalcolm Tredinnick
2008-09-01Make sure to use force_unicode when looking up comment objects by `object_pk`...Jacob Kaplan-Moss
2008-08-30Fixed #8716: correctly handle name and email in comments from authenticated u...Jacob Kaplan-Moss
2008-08-28Fixed #8608: corrected doc link in comment 400 error page.Jacob Kaplan-Moss
2008-08-28Updated a few save() methods on models to accept force_insert and force_updateMalcolm Tredinnick
2008-08-27Fixed #8601: a small typo in comment views.Jacob Kaplan-Moss
2008-08-27Fixed #8544: correctly cast `Comment.object_pk` to string when doing lookups....Jacob Kaplan-Moss
2008-08-27Removed oldforms, validators, and related code:Gary Wilson Jr
2008-08-27Fixed get_absolute_url() for comments. Previously, it relied on "view on site"Malcolm Tredinnick
2008-08-26Updated comment signals to provide enough information to actually act on. Thi...Jacob Kaplan-Moss
2008-08-26The comments app was unconditionally accessing various settings that didn'tMalcolm Tredinnick
2008-08-25Refactored Django's comment system.Jacob Kaplan-Moss
2008-08-02Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use hashl...Gary Wilson Jr
2008-07-18Merged the newforms-admin branch into trunk.Brian Rosner
2008-01-28Fixed #6324 -- Fixed `get()` call in `UserFlagManager.flag()`.Gary Wilson Jr
2008-01-28Style fixes.Gary Wilson Jr
2007-11-29Fixed #5909 -- Made the various django.contrib.comment models more robust inMalcolm Tredinnick
2007-10-19Fixed docstring style.Gary Wilson Jr
2007-09-21Fixed #3453: introduced a new template variable resolution system by Brian Ha...Jacob Kaplan-Moss
2007-09-14Fixed #3091 -- django.contrib.comments views now accept extra_context and con...Adrian Holovaty
2007-08-11Fixed #4189 -- Fixed crashes in a couple of corner cases in the comments app....Malcolm Tredinnick
2007-08-05Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `For...Gary Wilson Jr
2007-07-16Fixed #4887 -- Fixed another place where template tag arguments are usedMalcolm Tredinnick
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-06-22Backed out the changes in [5482] for a bit whilst some more investigation intoMalcolm Tredinnick
2007-06-17Fixed #4565 -- Changed template rendering to use iterators, rather thanMalcolm Tredinnick
2007-06-01Fixed #4404 -- Fixed LatestCommentsFeed query problem. Thanks, SmileyChris.Malcolm Tredinnick
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2007-04-25Fixed #3185 -- Made values for login, logout and post-login redirect URLsMalcolm Tredinnick
2007-03-31Fixed #3473 -- Corrected access to get in manager (probably introduced as par...Russell Keith-Magee
2007-02-11Revert [4485] in order to fix accidental mod_python breakage. Refs #2920.Malcolm Tredinnick
2007-02-11Refs #2920 -- Replaced implicit uses of _() with explicit imports or calls to...Russell Keith-Magee
2006-12-15Copied django.forms to django.oldforms and changed all code to reference djan...Adrian Holovaty
2006-11-07Fixed #2848: broken doctest in comment app. Thanks, dummy@habmalnefrage.deJacob Kaplan-Moss
2006-10-25Fixed ngettext bug in comments post viewJacob Kaplan-Moss