diff options
| author | Tim Graham <timograham@gmail.com> | 2015-01-17 20:42:41 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-19 11:12:57 -0500 |
| commit | 33457cd3b0da69320d3f66bb6d5a673950c5032f (patch) | |
| tree | c69fca5e8972e75e15c800901984c017e69ca708 /docs/ref | |
| parent | 5008a4db440c8f7d108a6979b959025ffb5789ba (diff) | |
Removed IPAddressField per deprecation timeline; refs #20439.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/checks.txt | 5 | ||||
| -rw-r--r-- | docs/ref/forms/fields.txt | 16 | ||||
| -rw-r--r-- | docs/ref/models/fields.txt | 12 |
3 files changed, 4 insertions, 29 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt index b519b0afab..03f280bd2e 100644 --- a/docs/ref/checks.txt +++ b/docs/ref/checks.txt @@ -95,8 +95,11 @@ Fields * **fields.E160**: The options ``auto_now``, ``auto_now_add``, and ``default`` are mutually exclusive. Only one of these options may be present. * **fields.W161**: Fixed default value provided. +* **fields.E900**: ``IPAddressField`` has been removed except for support in + historical migrations. * **fields.W900**: ``IPAddressField`` has been deprecated. Support for it - (except in historical migrations) will be removed in Django 1.9. + (except in historical migrations) will be removed in Django 1.9. *This check + appeared in Django 1.7 and 1.8*. File Fields ~~~~~~~~~~~ diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt index eee3f9f9b8..0a80a3c9f3 100644 --- a/docs/ref/forms/fields.txt +++ b/docs/ref/forms/fields.txt @@ -719,22 +719,6 @@ For each field, we describe the default widget used if you don't specify These control the range of values permitted in the field. -``IPAddressField`` -~~~~~~~~~~~~~~~~~~ - -.. class:: IPAddressField(**kwargs) - - .. deprecated:: 1.7 - This field has been deprecated in favor of - :class:`~django.forms.GenericIPAddressField`. - - * Default widget: :class:`TextInput` - * Empty value: ``''`` (an empty string) - * Normalizes to: A Unicode object. - * Validates that the given value is a valid IPv4 address, using a regular - expression. - * Error message keys: ``required``, ``invalid`` - ``GenericIPAddressField`` ~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index 3fd9d0aace..6068fe0f7c 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -892,18 +892,6 @@ An integer. Values from ``-2147483648`` to ``2147483647`` are safe in all databases supported by Django. The default form widget for this field is a :class:`~django.forms.TextInput`. -``IPAddressField`` ------------------- - -.. class:: IPAddressField([**options]) - -.. deprecated:: 1.7 - This field has been deprecated in favor of - :class:`~django.db.models.GenericIPAddressField`. - -An IP address, in string format (e.g. "192.0.2.30"). The default form widget -for this field is a :class:`~django.forms.TextInput`. - ``GenericIPAddressField`` ------------------------- |
