<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>sql/001_newcomments_migration.sql</filename>
    </added>
    <added>
      <filename>templates/comments/form.html</filename>
    </added>
    <added>
      <filename>templates/comments/preview.html</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -7,7 +7,6 @@ from django.utils.translation import ugettext_lazy as _
 from tagging.models import Tag
 from tagging.fields import TagField
 
-from comment_utils.moderation import CommentModerator, moderator
 
 class PostManager(models.Manager):
     def active(self):
@@ -40,7 +39,3 @@ class Post(models.Model):
             &quot;slug&quot;: self.slug,
         })
     get_absolute_url = models.permalink(get_absolute_url)
-
-class PostModerator(CommentModerator):
-    akismet = True
-moderator.register(Post, PostModerator)</diff>
      <filename>blog/models.py</filename>
    </modified>
    <modified>
      <diff>@@ -78,7 +78,6 @@ INSTALLED_APPS = (
    &quot;oebfare.aggregator&quot;,
    
    &quot;tagging&quot;,
-   &quot;comment_utils&quot;,
    
    &quot;django.contrib.admin&quot;,
    &quot;django.contrib.auth&quot;,</diff>
      <filename>conf/global_settings.py</filename>
    </modified>
    <modified>
      <diff>@@ -1,9 +1,9 @@
 {% load tagging_tags %}
 {% load blog_utils %}
-{% load moderated_comments %}
+{% load comments %}
 &lt;div id=&quot;entry_{{ post.pk }}&quot; class=&quot;entry-brief{% if last %} entry-last{% endif %}&quot;&gt;
     &lt;h2&gt;&lt;a href=&quot;{{ post.get_absolute_url }}&quot;&gt;{{ post.title }}&lt;/a&gt;&lt;/h2&gt;
-    {% get_public_free_comment_count for blog.post post.pk as comment_count %}
+    {% get_comment_count for post as comment_count %}
     &lt;div class=&quot;published small&quot;&gt;Published {{ post.pub_date|date:&quot;M j, Y&quot; }} at {{ post.pub_date|time:&quot;f A&quot; }}. &lt;a href=&quot;{{ post.get_absolute_url }}#c&quot;&gt;{{ comment_count }} comment{{ comment_count|pluralize }}&lt;/a&gt;&lt;/div&gt;
     &lt;p&gt;{% if can_edit %}&lt;a href=&quot;/admin/blog/post/{{ post.pk }}/&quot;&gt;Edit Post&lt;/a&gt; | {% endif %}&lt;a href=&quot;{{ post.get_absolute_url }}&quot;&gt;Read Full Entry ...&lt;/a&gt;&lt;/p&gt;
     {% tags_for_object post as tags %}</diff>
      <filename>templates/blog/post_brief.html</filename>
    </modified>
    <modified>
      <diff>@@ -11,22 +11,21 @@
 
 &lt;hr /&gt;
 
-{% load moderated_comments %}
 {% load comments %}
-{% get_public_free_comment_list for blog.post post.pk as comment_list %}
+{% get_comment_list for post as comment_list %}
 {% if comment_list %}
 &lt;h2 id=&quot;c&quot;&gt;Comments&lt;/h2&gt;
 {% for comment in comment_list %}
 &lt;div class=&quot;comment&quot; id=&quot;c{{ comment.pk }}&quot;&gt;
     &lt;div class=&quot;{% cycle odd,even %}&quot;&gt;
     {{ comment.comment|urlizetrunc:&quot;40&quot;|linebreaks }}
-    &lt;p class=&quot;small&quot;&gt;Posted by &lt;strong&gt;{{ comment.person_name }}&lt;/strong&gt; on &lt;strong&gt;{{ comment.submit_date|date:&quot;M j, Y&quot; }}&lt;/strong&gt; at &lt;strong&gt;{{ comment.submit_date|time:&quot;f A&quot; }}&lt;/strong&gt;&lt;/p&gt;
+    &lt;p class=&quot;small&quot;&gt;Posted by &lt;strong&gt;{{ comment.user_name }}&lt;/strong&gt; on &lt;strong&gt;{{ comment.submit_date|date:&quot;M j, Y&quot; }}&lt;/strong&gt; at &lt;strong&gt;{{ comment.submit_date|time:&quot;f A&quot; }}&lt;/strong&gt;&lt;/p&gt;
     &lt;/div&gt;
 &lt;/div&gt;
 {% endfor %}
 {% endif %}
 &lt;h2&gt;Add Your Comment&lt;/h2&gt;
-{% free_comment_form for blog.post post.pk %}
+{% render_comment_form for post %}
 {% endblock %}
 
 {% block sr %}</diff>
      <filename>templates/blog/post_detail.html</filename>
    </modified>
    <modified>
      <diff>@@ -14,7 +14,7 @@ urlpatterns = patterns(&quot;&quot;,
     }),
     url(r&quot;^admin/(.*)&quot;, admin.site.root),
     url(r&quot;^blog/&quot;, include(&quot;oebfare.blog.urls&quot;)),
-    url(r&quot;^comments/&quot;, include(&quot;django.contrib.comments.urls.comments&quot;)),
+    url(r&quot;^comments/&quot;, include(&quot;django.contrib.comments.urls&quot;)),
     url(r&quot;^links/&quot;, include(&quot;oebfare.links.urls&quot;)),
     url(r&quot;^$&quot;, &quot;oebfare.blog.views.homepage&quot;, name=&quot;oebfare_home&quot;),
 )</diff>
      <filename>urls.py</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>templates/comments/free_preview.html</filename>
    </removed>
    <removed>
      <filename>templates/comments/freeform.html</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>3c2085117d7c323e43ac15ce35c152d1094dd30c</id>
    </parent>
  </parents>
  <author>
    <name>brosner</name>
    <email>brosner@gmail.com</email>
  </author>
  <url>http://github.com/brosner/oebfare/commit/a411cc372e038eb7de2d023a34b53e802dd56a8f</url>
  <id>a411cc372e038eb7de2d023a34b53e802dd56a8f</id>
  <committed-date>2008-09-16T12:17:56-07:00</committed-date>
  <authored-date>2008-09-16T12:17:56-07:00</authored-date>
  <message>Initial update to 1.0 compatibility. Fixed comments.</message>
  <tree>9743dc3c0826ac7c7f9be569f915d7efd1946e1e</tree>
  <committer>
    <name>brosner</name>
    <email>brosner@gmail.com</email>
  </committer>
</commit>
