Prepared 0.2 release.

This commit is contained in:
Dirk Eschler 2010-06-15 10:07:36 +00:00
parent 39ad93ba5b
commit 3684d0728c
3 changed files with 53 additions and 9 deletions

View file

@ -1,3 +1,8 @@
v0.2
====
Date: 2010-06-15
Packaged from revision 56.
ADDED: Support for admin prepopulated_fields.
(resolves issue 21)
ADDED: Support for admin list_editable.
@ -9,7 +14,8 @@
ADDED: Support for admin inlines, common and generic.
(resolves issue 12 and issue 18)
FIXED: Admin form validation errors with empty translated values and unique=True.
FIXED: Admin form validation errors with empty translated values and
unique=True.
(thanks to adamsc, resolves issue 26)
FIXED: Mangling of untranslated prepopulated fields.
(thanks to carl.j.meyer, resolves issue 25)
@ -37,9 +43,8 @@
FIXED: Removed unused dependency to content type which can break syncdb.
(thanks carl.j.meyer, resolves issue 1)
v0.1
====
Date: 2009-02-22
Initial release packaged from revision 19.

View file

@ -1,10 +1,26 @@
Copyright (c) 2009, Peter Eschler
Copyright (c) 2010, 2009, Peter Eschler, Dirk Eschler
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the author nor the names of its contributors may be
used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

23
PKG-INFO Normal file
View file

@ -0,0 +1,23 @@
Metadata-Version: 1.0
Name: django-modeltranslation
Version: 0.2
Summary: Translates Django models using a registration approach.
Home-page: http://code.google.com/p/django-modeltranslation/
Author: Peter Eschler,
Dirk Eschler
Author-email: "Peter Eschler" <peschler@googlemail.com>,
"Dirk Eschler" <eschler@gmail.com>
License: New BSD
Description: The modeltranslation application can be used to translate dynamic
content of existing models to an arbitrary number of languages
without having to change the original model classes. It uses a
registration approach (comparable to Django's admin app) to be
able to add translations to existing or new projects and is fully
integrated into the Django admin backend.
The advantage of a registration approach is the ability to add
translations to models on a per-project basis. You can use the
same app in different projects, may they use translations or not,
and you never have to touch the original model class.
Platform: UNKNOWN
Keywords: django translation i18n