Skip to content

Commit

Permalink
newforms-admin: Cleaned up imports, refs #6083.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7525 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
gdub committed May 13, 2008
1 parent f987575 commit 4e5681c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions django/contrib/comments/views/comments.py
@@ -1,3 +1,6 @@
import base64
import datetime

from django.core import validators
from django import oldforms
from django.core.mail import mail_admins, mail_managers
Expand All @@ -8,16 +11,19 @@
from django.contrib.comments.models import Comment, FreeComment, RATINGS_REQUIRED, RATINGS_OPTIONAL, IS_PUBLIC
from django.contrib.contenttypes.models import ContentType
from django.contrib.auth import authenticate
from django.contrib.auth.forms import AuthenticationForm
from django.http import HttpResponseRedirect
from django.utils.text import normalize_newlines
from django.conf import settings
from django.utils.translation import ungettext, ugettext as _
from django.utils.encoding import smart_unicode
import base64, datetime

COMMENTS_PER_PAGE = 20

# TODO: This is a copy of the manipulator-based form that used to live in
# contrib.auth.forms. It should be replaced with the newforms version that
# has now been added to contrib.auth.forms when the comments app gets updated
# for newforms.

class AuthenticationForm(oldforms.Manipulator):
"""
Base class for authenticating users. Extend this to get a form that accepts
Expand Down

0 comments on commit 4e5681c

Please sign in to comment.