summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-02-25 19:51:33 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-02-25 19:51:33 +0000
commit25895623ffe23c8a64117666606e8a79735f9804 (patch)
tree8b62c902009c416ac8b005c8b22ac92dffdd1705 /docs
parent81bb3d9e7441f1d51acbea8e2771355614f981d3 (diff)
Reverted [4578] because there's no such thing as a PasswordField database field type
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4579 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/model-api.txt8
1 files changed, 0 insertions, 8 deletions
diff --git a/docs/model-api.txt b/docs/model-api.txt
index 53c0c21750..0a10918d54 100644
--- a/docs/model-api.txt
+++ b/docs/model-api.txt
@@ -338,14 +338,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 difference is that the
-characters that are entered are masked, typically by asterisks (*). Also note
-that even though this is a password field the data is sent as clear text to
-the server. Additional measures are needed to ensure data safety.
-
``PhoneNumberField``
~~~~~~~~~~~~~~~~~~~~