diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-06-21 14:42:52 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-06-21 14:42:52 +0000 |
| commit | a159f660fef417d3f165e72678db8e3b90153006 (patch) | |
| tree | 84fdabb90320797c6f7d5ca0ece27b5e7edbbbe1 | |
| parent | 68cfd446a3f3fd82cee85a1567ffbe7a8d1e3139 (diff) | |
Reverted [3184]. There's no such thing as models.PasswordField.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3189 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/model-api.txt | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/docs/model-api.txt b/docs/model-api.txt index 5934b7fdd0..0dc98416a3 100644 --- a/docs/model-api.txt +++ b/docs/model-api.txt @@ -322,19 +322,6 @@ instead of a ``BooleanField`` with ``null=True``. The admin represents this as a ``<select>`` box with "Unknown", "Yes" and "No" choices. -``PasswordField`` -~~~~~~~~~~~~~~~~~ - -A ``PasswordField`` is like a ``TextField`` but the characters that are -entered are masked, typically by asterisks (*), when entered into a form. Note -that though the data is masked on entry, it is sent as clear text to the -server and stored as plain text in the database. Additional measures (such as -using HTTPS) are needed to ensure the security of data sent from a form. This -field is probably more useful when used in a `custom manipulator`_ than -directly in a model. - -.. _custom manipulator: http://www.djangoproject.com/documentation/forms/#custom-forms-and-manipulators - ``PhoneNumberField`` ~~~~~~~~~~~~~~~~~~~~ |
