From d033dfd894dfecd674f7afae17dc695324a14e68 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sun, 17 Jan 2010 22:29:50 +0000 Subject: [PATCH] Added a few more versionadded directives to the documentation. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12248 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/contrib/comments/example.txt | 2 ++ docs/ref/contrib/comments/index.txt | 2 ++ 2 files changed, 4 insertions(+) diff --git a/docs/ref/contrib/comments/example.txt b/docs/ref/contrib/comments/example.txt index ec600f7219..d4ce623bb0 100644 --- a/docs/ref/contrib/comments/example.txt +++ b/docs/ref/contrib/comments/example.txt @@ -39,6 +39,8 @@ available in the context, then you can refer to it directly:: {% get_comment_count for entry as comment_count %}

{{ comment_count }} comments have been posted.

+.. versionadded:: 1.2 + Next, we can use the :ttag:`render_comment_list` tag, to render all comments to the given instance (``entry``) by using the ``comments/list.html`` template. diff --git a/docs/ref/contrib/comments/index.txt b/docs/ref/contrib/comments/index.txt index 319dadff08..9f1d3cd6e4 100644 --- a/docs/ref/contrib/comments/index.txt +++ b/docs/ref/contrib/comments/index.txt @@ -132,6 +132,8 @@ details. Linking to comments ------------------- +.. versionadded:: 1.2 + To provide a permalink to a specific comment, use :ttag:`get_comment_permalink`:: {% get_comment_permalink comment_obj [format_string] %}