2006-05-02 09:31:56 +08:00
|
|
|
from django.conf import settings
|
|
|
|
from django.core.exceptions import ObjectDoesNotExist, ImproperlyConfigured
|
2007-08-20 10:28:40 +08:00
|
|
|
from django.db import connection
|
2006-05-02 09:31:56 +08:00
|
|
|
from django.db.models.loading import get_apps, get_app, get_models, get_model, register_models
|
|
|
|
from django.db.models.query import Q
|
2009-01-29 18:46:36 +08:00
|
|
|
from django.db.models.expressions import F
|
2006-05-02 09:31:56 +08:00
|
|
|
from django.db.models.manager import Manager
|
2008-07-19 07:54:34 +08:00
|
|
|
from django.db.models.base import Model
|
2009-01-15 19:06:34 +08:00
|
|
|
from django.db.models.aggregates import *
|
2006-05-02 09:31:56 +08:00
|
|
|
from django.db.models.fields import *
|
2007-11-05 21:59:42 +08:00
|
|
|
from django.db.models.fields.subclassing import SubfieldBase
|
2008-08-09 04:59:02 +08:00
|
|
|
from django.db.models.fields.files import FileField, ImageField
|
Removed oldforms, validators, and related code:
* Removed `Manipulator`, `AutomaticManipulator`, and related classes.
* Removed oldforms specific bits from model fields:
* Removed `validator_list` and `core` arguments from constructors.
* Removed the methods:
* `get_manipulator_field_names`
* `get_manipulator_field_objs`
* `get_manipulator_fields`
* `get_manipulator_new_data`
* `prepare_field_objs_and_params`
* `get_follow`
* Renamed `flatten_data` method to `value_to_string` for better alignment with its use by the serialization framework, which was the only remaining code using `flatten_data`.
* Removed oldforms methods from `django.db.models.Options` class: `get_followed_related_objects`, `get_data_holders`, `get_follow`, and `has_field_type`.
* Removed oldforms-admin specific options from `django.db.models.fields.related` classes: `num_in_admin`, `min_num_in_admin`, `max_num_in_admin`, `num_extra_on_change`, and `edit_inline`.
* Serialization framework
* `Serializer.get_string_value` now calls the model fields' renamed `value_to_string` methods.
* Removed a special-casing of `models.DateTimeField` in `core.serializers.base.Serializer.get_string_value` that's handled by `django.db.models.fields.DateTimeField.value_to_string`.
* Removed `django.core.validators`:
* Moved `ValidationError` exception to `django.core.exceptions`.
* For the couple places that were using validators, brought over the necessary code to maintain the same functionality.
* Introduced a SlugField form field for validation and to compliment the SlugField model field (refs #8040).
* Removed an oldforms-style model creation hack (refs #2160).
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8616 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-27 15:19:44 +08:00
|
|
|
from django.db.models.fields.related import ForeignKey, OneToOneField, ManyToManyField, ManyToOneRel, ManyToManyRel, OneToOneRel
|
2010-11-10 00:46:42 +08:00
|
|
|
from django.db.models.deletion import CASCADE, PROTECT, SET, SET_NULL, SET_DEFAULT, DO_NOTHING
|
2006-05-02 09:31:56 +08:00
|
|
|
from django.db.models import signals
|
|
|
|
|
|
|
|
# Admin stages.
|
|
|
|
ADD, CHANGE, BOTH = 1, 2, 3
|
|
|
|
|
2006-07-28 10:09:38 +08:00
|
|
|
def permalink(func):
|
2007-07-16 21:47:43 +08:00
|
|
|
"""
|
|
|
|
Decorator that calls urlresolvers.reverse() to return a URL using
|
|
|
|
parameters returned by the decorated function "func".
|
|
|
|
|
|
|
|
"func" should be a function that returns a tuple in one of the
|
|
|
|
following formats:
|
|
|
|
(viewname, viewargs)
|
|
|
|
(viewname, viewargs, viewkwargs)
|
|
|
|
"""
|
2006-07-28 10:09:38 +08:00
|
|
|
from django.core.urlresolvers import reverse
|
|
|
|
def inner(*args, **kwargs):
|
|
|
|
bits = func(*args, **kwargs)
|
2006-08-09 22:40:29 +08:00
|
|
|
return reverse(bits[0], None, *bits[1:3])
|
2006-07-28 10:09:38 +08:00
|
|
|
return inner
|