mirror of
https://github.com/django/django.git
synced 2024-12-28 12:06:22 +00:00
[1.8.x] Removed contrib.auth.forms.mask_password()
This function is unused sincedce820ff70
after being introduced in718a5ba1a1
Backport ofa53541852d
from master
This commit is contained in:
parent
ef90ca5f42
commit
3af1e7860e
@ -20,15 +20,6 @@ from django.contrib.auth.tokens import default_token_generator
|
|||||||
from django.contrib.sites.shortcuts import get_current_site
|
from django.contrib.sites.shortcuts import get_current_site
|
||||||
|
|
||||||
|
|
||||||
UNMASKED_DIGITS_TO_SHOW = 6
|
|
||||||
|
|
||||||
|
|
||||||
def mask_password(password):
|
|
||||||
shown = password[:UNMASKED_DIGITS_TO_SHOW]
|
|
||||||
masked = "*" * max(len(password) - UNMASKED_DIGITS_TO_SHOW, 0)
|
|
||||||
return shown + masked
|
|
||||||
|
|
||||||
|
|
||||||
class ReadOnlyPasswordHashWidget(forms.Widget):
|
class ReadOnlyPasswordHashWidget(forms.Widget):
|
||||||
def render(self, name, value, attrs):
|
def render(self, name, value, attrs):
|
||||||
encoded = value
|
encoded = value
|
||||||
|
Loading…
Reference in New Issue
Block a user