Remove comments referencing encryption. Django doesn't do encryption.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17012 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
14d24eb438
commit
67565a5379
|
@ -220,7 +220,7 @@ class User(models.Model):
|
||||||
def check_password(self, raw_password):
|
def check_password(self, raw_password):
|
||||||
"""
|
"""
|
||||||
Returns a boolean of whether the raw_password was correct. Handles
|
Returns a boolean of whether the raw_password was correct. Handles
|
||||||
encryption formats behind the scenes.
|
hashing formats behind the scenes.
|
||||||
"""
|
"""
|
||||||
# Backwards-compatibility check. Older passwords won't include the
|
# Backwards-compatibility check. Older passwords won't include the
|
||||||
# algorithm or salt.
|
# algorithm or salt.
|
||||||
|
|
|
@ -41,7 +41,7 @@ def get_random_string(length=12, allowed_chars='abcdefghijklmnopqrstuvwxyzABCDEF
|
||||||
def check_password(raw_password, enc_password):
|
def check_password(raw_password, enc_password):
|
||||||
"""
|
"""
|
||||||
Returns a boolean of whether the raw_password was correct. Handles
|
Returns a boolean of whether the raw_password was correct. Handles
|
||||||
encryption formats behind the scenes.
|
hashing formats behind the scenes.
|
||||||
"""
|
"""
|
||||||
parts = enc_password.split('$')
|
parts = enc_password.split('$')
|
||||||
if len(parts) != 3:
|
if len(parts) != 3:
|
||||||
|
|
|
@ -358,7 +358,7 @@ class BaseForm(StrAndUnicode):
|
||||||
|
|
||||||
def is_multipart(self):
|
def is_multipart(self):
|
||||||
"""
|
"""
|
||||||
Returns True if the form needs to be multipart-encrypted, i.e. it has
|
Returns True if the form needs to be multipart-encoded, i.e. it has
|
||||||
FileInput. Otherwise, False.
|
FileInput. Otherwise, False.
|
||||||
"""
|
"""
|
||||||
for field in self.fields.values():
|
for field in self.fields.values():
|
||||||
|
|
|
@ -325,7 +325,7 @@ class BaseFormSet(StrAndUnicode):
|
||||||
|
|
||||||
def is_multipart(self):
|
def is_multipart(self):
|
||||||
"""
|
"""
|
||||||
Returns True if the formset needs to be multipart-encrypted, i.e. it
|
Returns True if the formset needs to be multipart, i.e. it
|
||||||
has FileInput. Otherwise, False.
|
has FileInput. Otherwise, False.
|
||||||
"""
|
"""
|
||||||
return self.forms and self.forms[0].is_multipart()
|
return self.forms and self.forms[0].is_multipart()
|
||||||
|
|
|
@ -140,7 +140,7 @@ class MediaDefiningClass(type):
|
||||||
class Widget(object):
|
class Widget(object):
|
||||||
__metaclass__ = MediaDefiningClass
|
__metaclass__ = MediaDefiningClass
|
||||||
is_hidden = False # Determines whether this corresponds to an <input type="hidden">.
|
is_hidden = False # Determines whether this corresponds to an <input type="hidden">.
|
||||||
needs_multipart_form = False # Determines does this widget need multipart-encrypted form
|
needs_multipart_form = False # Determines does this widget need multipart form
|
||||||
is_localized = False
|
is_localized = False
|
||||||
is_required = False
|
is_required = False
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue