[Django logo]
Django commits

RevisionAuthorDateDescription
9709ikelly06 Jan 2009 13:22:07

Refs #9935: Added a note in the documentation to the effect that Django currently requires a 4.X release of cx_Oracle.

9708mtredinnick06 Jan 2009 00:27:39

Fixed #9963 - Added a trivial tests.py file to the files produced by "startapp".

9707mtredinnick06 Jan 2009 00:13:02

Upgraded included simplejson to 2.0.7.

Also changed importing logic to prefer a system-installed version of
simplejson (unless it's an earlier version that does not contian the C
speedups), then the json module from Python 2.6, then the version
shipped with Django.

Fixed #9266.

9705mtredinnick05 Jan 2009 22:34:47

Documented that case-insensitive matching is not supported for non-ASCII
strings in SQLite. Refs #9905.

9703mtredinnick05 Jan 2009 20:56:13

Fixed #9862 -- For better SQL portability, don't specify "NULL" on nullable
columns when creating tables. Patch from Ian Kelly.

Columns are NULL by default, so we only need to use "NOT NULL" when we want
non-default behaviour.

9702jbronn05 Jan 2009 17:16:12

Updated `GeoWhere` to be compatible with changes in r9700.

9701mtredinnick05 Jan 2009 06:47:48

Nested query support.

This extends previous functionality that allowed passing Query objects as the
rvals to filters. You can now pass QuerySets, which requires less poking at
opaque attributes. See the documentation of the "__in" lookup type for the
details.

9700mtredinnick05 Jan 2009 06:47:14

Reconciling where- and having-clause behaviour.

Extricated the code that works directly with SQL columns (standard
"where" stuff) from the the code that takes SQL fragments and combines
it with lookup types and values. The latter portion is now more
generally reusable. Any existing code that was poking at Query.having
will now break in very visible ways (no subtle miscalculations, which is
a good thing).

This patch, en passant, removes the existing "having" test, since the
new implementation requires more setting up than previously. The
aggregates support (currently in a separate codebase) has tests for this
functionality that work as a replacement for the removed test.

9698russellm03 Jan 2009 00:04:12

Added a link to RKM's blog in the committers file.

9696russellm02 Jan 2009 23:52:07

Modified the entry for David Larlet in the AUTHORS file to be consistent with the entry already present in the 1.0.X branch.

9695russellm02 Jan 2009 23:43:58

Fixed #9942 -- Added a to_python handler for FloatField to ensure correct typing of deserialized data before saving. Underlying problem is analogous to #8298, fixed in [8515]. Thanks to David Larlet for the report and fix.

9693jbronn02 Jan 2009 20:37:51

Fixed `check_geom` and `check_srs` to accept larger sized pointer addresses as returned by some platforms (including OpenBSD 4.4 and Fedora 8).

9690lukeplant26 Dec 2008 19:01:11

Fixed #9637: Use 'block.super' in admin 'extrastyle' blocks to preserve changes in base_site.html

The current admin templates do not need this. However, a common way to customize admin
appearance is to provide your own 'base_site.html' template, and add stylesheets using
the extrastyle block. Without this patch, these customizations are lost.