Django 1.0.1 版本发行说明
- Several fixes in , pertaining to RSS feeds of comments, default ordering of comments and the XHTML and internationalization of the default templates for comments.
- Multiple fixes for Django’s support of Oracle databases, including pagination support for GIS QuerySets, more efficient slicing of results and improved introspection of existing databases.
- Multiple fixes for inline forms in formsets.
- Multiple fixes for
unique
and model constraints in automatically-generated forms. - Fixed support for custom callable
upload_to
declarations when handling file uploads through automatically-generated forms. - A fix to the application of autoescaping for literal strings passed to the template filter. Previously, literal strings passed to
join
were automatically escaped, contrary to the documented behavior for autoescaping and literal strings. Literal strings passed tojoin
are no longer automatically escaped, meaning you must now manually escape them; this is an incompatibility if you were relying on this bug, but not if you were relying on escaping behaving as documented. - Improved and expanded translation files for many of the languages Django supports by default.
- And as always, a large number of improvements to Django’s documentation, including both corrections to existing documents and expanded and new documentation.