From 35cc9d9b0998021ac0e46382f0ca6b4092b9b644 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 21 May 2007 20:45:33 +0000 Subject: [PATCH] Added 'New in Django development version' notes to docs/model-api.txt regarding DecimalField and FloatField (see [5302]) git-svn-id: http://code.djangoproject.com/svn/django/trunk@5308 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/model-api.txt | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/model-api.txt b/docs/model-api.txt index f42078eafb..ae1c37fc8f 100644 --- a/docs/model-api.txt +++ b/docs/model-api.txt @@ -185,7 +185,9 @@ The admin represents this as two ```` fields, with JavaScript shortcuts. ``DecimalField`` -~~~~~~~~~~~~~~ +~~~~~~~~~~~~~~~~ + +**New in Django development version** A fixed-precision decimal number, represented in Python by a ``Decimal`` instance. Has two **required** arguments: @@ -317,10 +319,17 @@ because the ``match`` applies to the base filename (``foo.gif`` and ``FloatField`` ~~~~~~~~~~~~~~ +**Changed in Django development version** + A floating-point number represented in Python by a ``float`` instance. The admin represents this as an ```` (a single-line input). +**NOTE:** The semantics of ``FloatField`` have changed in the Django +development version. See the `Django 0.96 documentation`_ for the old behavior. + +.. _Django 0.96 documentation: http://www.djangoproject.com/documentation/0.96/model-api/#floatfield + ``ImageField`` ~~~~~~~~~~~~~~ @@ -751,7 +760,7 @@ relationship should work. All are optional: ``limit_choices_to`` A dictionary of lookup arguments and values (see the `Database API reference`_) that limit the available admin choices for this object. Use this - with functions from the Python ``datetime`` module + with functions from the Python ``datetime`` module to limit choices of objects by date. For example:: limit_choices_to = {'pub_date__lte': datetime.now}