Changes between Version 57 and Version 58 of Version1.2Features
- Timestamp:
- Aug 17, 2009, 6:56:53 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Version1.2Features
v57 v58 15 15 * Search support in the ORM: http://github.com/bfirsh/django/tree/search 16 16 * Support for non-relational databases: Tokyo Cabinet/Tyrant, MongoDB, Cassandra, Google Bigtable (AppEngine, #10192), Amazon SimpleDB, CouchDB, etc 17 * Allow inclusion of inlines in fieldsets (admin)18 17 * Add a method to the orm to create Model instances from raw sql queries (useful when the orm is limiting you) 19 18 * Add a generic "official" way to create a REST API; so far there are quite a bunch of pluggables, with varying levels of "completeness", documentation and efficiency, and they're quite hard to choose from. … … 23 22 * Replace get_absolute_url (http://code.djangoproject.com/wiki/ReplacingGetAbsoluteUrl) 24 23 * Make working with inline formsets easier (http://stackoverflow.com/questions/442040/pre-populate-an-inline-formset, as per James: ''...the way the model formsets work just make this more trouble than it's usually worth, but with a bit of API cleanup I think it could be made extremely easy.'', also http://groups.google.com/group/django-developers/browse_thread/thread/f9aae709a7fda689) 24 * Allow inclusion of inlines in fieldsets (admin) 25 25 * #17 Identity mapping in the ORM (Work has been done to this end by David Cramer, here: http://github.com/dcramer/django-idmapper/tree/master) 26 26 * #342 Read-only form fields