From 979f5901af8410ff138de0aa41013bfb193060d6 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 23 Sep 2008 18:52:55 -0700 Subject: 1.0 --- bn_django/git_wiki/views.py | 5 +-- .../photos/templates/photos/photo_detail.html | 14 ++----- bn_django/templates/comments/form.html | 36 ----------------- bn_django/templates/comments/free_preview.html | 46 ---------------------- bn_django/templates/comments/freeform.html | 10 ----- bn_django/templates/comments/posted.html | 13 ------ bn_django/templates/comments/preview.html | 46 ---------------------- bn_django/templates/newcomments_table | 16 +------- bn_django/urls.py | 14 +++---- 9 files changed, 14 insertions(+), 186 deletions(-) delete mode 100644 bn_django/templates/comments/form.html delete mode 100644 bn_django/templates/comments/free_preview.html delete mode 100644 bn_django/templates/comments/freeform.html delete mode 100644 bn_django/templates/comments/posted.html delete mode 100644 bn_django/templates/comments/preview.html (limited to 'bn_django') diff --git a/bn_django/git_wiki/views.py b/bn_django/git_wiki/views.py index 58d4194..f16ea84 100644 --- a/bn_django/git_wiki/views.py +++ b/bn_django/git_wiki/views.py @@ -7,7 +7,7 @@ import os, commands from models import * from settings import * -from django.contrib.comments.models import Comment,FreeComment +from django.contrib.comments.models import Comment # Create your views here. @@ -16,10 +16,9 @@ def frontpage(request): t.update() #TODO: doesn't display free comments unless there's a comment lc = Comment.objects.filter(content_type__name="item").order_by('-submit_date')[:6] - lfc = FreeComment.objects.filter(content_type__name="item").order_by('-submit_date')[:6] return render_to_response('git_wiki/frontpage.html', \ dict(shortlog=shortlog(), tree=t, - latest_comments=lc, latest_freecomments=lfc, + latest_comments=lc, newitems=newest_items())) def tree(request, reqslug, tree=None): diff --git a/bn_django/photos/templates/photos/photo_detail.html b/bn_django/photos/templates/photos/photo_detail.html index 5d02710..1278bda 100644 --- a/bn_django/photos/templates/photos/photo_detail.html +++ b/bn_django/photos/templates/photos/photo_detail.html @@ -1,5 +1,6 @@ {% extends "photos/base.html" %} {# {% load markup %} #} + {% load comments %} {% block path %} @@ -101,17 +102,10 @@ by {{ object.photographer }}.

{% endblock %} {% block commentary %} -
-{% load comments %} +

Post a comment

-{% if user.is_authenticated %} -{% comment_form for photos.photo object.id with is_public true %} -{% else %} -{% free_comment_form for photos.photo object.id with is_public true %} -{% endif %} -
-{% get_comment_list for photos.photo object.id as comments %} -{% get_free_comment_list for photos.photo object.id as free_comments %} +{% render_comment_form for object %} +{% get_comment_list for object as comments %} {% include "comment_list" %}
{% endblock %} diff --git a/bn_django/templates/comments/form.html b/bn_django/templates/comments/form.html deleted file mode 100644 index a2af1be..0000000 --- a/bn_django/templates/comments/form.html +++ /dev/null @@ -1,36 +0,0 @@ -{% load i18n %} -
- -

- -{% if user.is_authenticated %} -

 {% trans "Username:" %} {{ user.username }} ({% trans "Log out" %}) -{% else %} -


{% trans "Password:" %} ({% trans "Forgotten your password?" %}) -{% endif %} -

- -{% if ratings_optional or ratings_required %} -

{% trans "Ratings" %} ({% if ratings_required %}{% trans "Required" %}{% else %}{% trans "Optional" %}{% endif %}):

- -{% for value in rating_range %}{% endfor %} -{% for rating in rating_choices %} -{% for value in rating_range %}{% endfor %} -{% endfor %} -
 {{ value }}
{{ rating }}
- -{% endif %} - -{% if photos_optional or photos_required %} -

({% if photos_required %}{% trans "Required" %}{% else %}{% trans "Optional" %}{% endif %}): -

- -{% endif %} - - -

- - - -

-
diff --git a/bn_django/templates/comments/free_preview.html b/bn_django/templates/comments/free_preview.html deleted file mode 100644 index 3c212c0..0000000 --- a/bn_django/templates/comments/free_preview.html +++ /dev/null @@ -1,46 +0,0 @@ -{% extends "base.html" %} - - -{% block title %}Preview your comment{% endblock %} - -{% block content %} - -
- {% if comment_form.has_errors %} -

Please correct the following errors.

- {% else %} -
- {{ comment.comment|escape|urlizetrunc:"40"|linebreaks }} -

Posted by {{ comment.person_name }}

-
- -

- -

Or edit it again

- {% endif %} - - {% if comment_form.person_name.errors %} - {{ comment_form.person_name.html_error_list }} - {% endif %} - -

{{ comment_form.person_name }}

- - {% if comment_form.comment.errors %} - {{ comment_form.comment.error_list }} - {% endif %} - -

- -
- {{ comment_form.comment }} -

- - - - - -

- -

-
-{% endblock %} diff --git a/bn_django/templates/comments/freeform.html b/bn_django/templates/comments/freeform.html deleted file mode 100644 index 3d3678e..0000000 --- a/bn_django/templates/comments/freeform.html +++ /dev/null @@ -1,10 +0,0 @@ -{% load i18n %} -
-

- -

  - - - -

-
diff --git a/bn_django/templates/comments/posted.html b/bn_django/templates/comments/posted.html deleted file mode 100644 index 07bdb67..0000000 --- a/bn_django/templates/comments/posted.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} - -{% block title %}Comment posted successfully{% endblock %} - -{% block content %} -

Thanks for contributing.

- -{% if object %} - -{% endif %} -{% endblock %} diff --git a/bn_django/templates/comments/preview.html b/bn_django/templates/comments/preview.html deleted file mode 100644 index 052b373..0000000 --- a/bn_django/templates/comments/preview.html +++ /dev/null @@ -1,46 +0,0 @@ -{% extends "base.html" %} - - -{% block title %}Preview your comment{% endblock %} - -{% block content %} - -
- {% if comment_form.has_errors %} -

Please correct the following errors.

- {% else %} -
- {{ comment.comment|escape|urlizetrunc:"40"|linebreaks }} -

Posted by {{ comment.person_name }}

-
- -

- -

Or edit it again

- {% endif %} - - {% if comment_form.person_name.errors %} - {{ comment_form.person_name.html_error_list }} - {% endif %} - -

{{ comment_form.person_name }}

- - {% if comment_form.comment.errors %} - {{ comment_form.comment.html_error_list }} - {% endif %} - -

- -
- {{ comment_form.comment }} -

- - - - - -

- -

-
-{% endblock %} diff --git a/bn_django/templates/newcomments_table b/bn_django/templates/newcomments_table index 6c38d10..ab50b7c 100644 --- a/bn_django/templates/newcomments_table +++ b/bn_django/templates/newcomments_table @@ -5,21 +5,9 @@ {{ c.submit_date|date:"F jS" }} {% if c.user.username %}{{ c.user.username }} - {% else %}anonymous{% endif%} + {% else %}c.user_name{% endif%} - - {{ c.content_type.name }} - -{% endfor %} -{% for c in latest_freecomments %} - - - {{ c.submit_date|date:"F jS" }} - - {% if c.person_name %}{{c.person_name}}{% else %}anonymous{% endif %} - - - + {{ c.content_type.name }} {% endfor %} diff --git a/bn_django/urls.py b/bn_django/urls.py index f37eca0..fa8b083 100644 --- a/bn_django/urls.py +++ b/bn_django/urls.py @@ -1,6 +1,6 @@ from django.conf.urls.defaults import * from photos.models import Photo -from django.contrib.comments.models import Comment,FreeComment +from django.contrib.comments.models import Comment from django.contrib import admin import git_wiki.models @@ -14,9 +14,7 @@ urlpatterns = patterns('', 'latest_photos':Photo.objects.order_by('-date')[:2], \ #'latest_comments':Photo.objects.order_by('date')[:4] \ 'latest_knowledge':git_wiki.models.shortlog(), \ - 'latest_comments':Comment.objects.order_by('-submit_date')[:4], \ - 'latest_freecomments': \ - FreeComment.objects.order_by('-submit_date')[:4], \ + 'latest_comments':Comment.objects.order_by('-submit_date')[:8], \ 'newitems':git_wiki.models.newest_items(), \ })}), (r'^about/$', 'django.views.generic.simple.direct_to_template', @@ -35,12 +33,12 @@ urlpatterns = patterns('', #(r'^code/', include('bn_django.git_browse.urls')), (r'^photos/', include('bn_django.photos.urls')), - (r'^search/', include('bn_django.search.urls')), + #(r'^search/', include('bn_django.search.urls')), # Uncomment this for admin: - (r'^admin/doc/', include('django.contrib.admindocs.urls')), - (r'^admin/(.*)', admin.site.root), - (r'^comments/', include('django.contrib.comments.urls.comments')), + (r'^admin/doc/', include('django.contrib.admindocs.urls')), + (r'^admin/(.*)', admin.site.root), + (r'^comments/', include('django.contrib.comments.urls')), (r'^static/(?P.*)$', 'django.views.static.serve', {'document_root': '/home/bnewbold/bn-project/static', -- cgit v1.2.3