Changeset 1709 for trunk/pylucid/PyLucid/plugins_internal/blog/blog.py
- Timestamp:
- 07/23/08 13:10:41 (20 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/PyLucid/plugins_internal/blog/blog.py
r1705 r1709 28 28 from django.http import HttpResponse 29 29 from django.core.mail import send_mail 30 #from django.utils.safestring import mark_safe31 30 #from django.utils.encoding import force_unicode 32 31 from django.utils.translation import ugettext as _ … … 94 93 # Change the page title. 95 94 self.current_page.title = self.preferences["blog_title"] 96 97 95 98 96 def _add_comment_admin_urls(self, comments): … … 131 129 else: 132 130 comments = comments.filter(is_public = True).all() 131 133 132 entry.all_comments = comments 134 133 else: