2016-10-10 22:13:01 +08:00
|
|
|
from django.core.exceptions import ObjectDoesNotExist
|
|
|
|
from django.db.models import signals
|
2015-06-16 02:07:31 +08:00
|
|
|
from django.db.models.aggregates import * # NOQA
|
2016-10-10 22:13:01 +08:00
|
|
|
from django.db.models.aggregates import __all__ as aggregates_all
|
|
|
|
from django.db.models.deletion import (
|
2015-06-16 02:07:31 +08:00
|
|
|
CASCADE, DO_NOTHING, PROTECT, SET, SET_DEFAULT, SET_NULL, ProtectedError,
|
|
|
|
)
|
2016-10-10 22:13:01 +08:00
|
|
|
from django.db.models.expressions import (
|
2016-04-20 14:56:51 +08:00
|
|
|
Case, Exists, Expression, ExpressionWrapper, F, Func, OuterRef, Subquery,
|
|
|
|
Value, When,
|
2015-03-19 11:07:53 +08:00
|
|
|
)
|
2013-10-18 19:25:30 +08:00
|
|
|
from django.db.models.fields import * # NOQA
|
2016-10-10 22:13:01 +08:00
|
|
|
from django.db.models.fields import __all__ as fields_all
|
|
|
|
from django.db.models.fields.files import FileField, ImageField
|
|
|
|
from django.db.models.fields.proxy import OrderWrt
|
2016-06-26 00:32:56 +08:00
|
|
|
from django.db.models.indexes import * # NOQA
|
2016-10-10 22:13:01 +08:00
|
|
|
from django.db.models.indexes import __all__ as indexes_all
|
|
|
|
from django.db.models.lookups import Lookup, Transform
|
|
|
|
from django.db.models.manager import Manager
|
|
|
|
from django.db.models.query import (
|
2016-03-28 23:19:25 +08:00
|
|
|
Prefetch, Q, QuerySet, prefetch_related_objects,
|
2015-08-15 20:41:57 +08:00
|
|
|
)
|
2015-06-16 02:07:31 +08:00
|
|
|
|
|
|
|
# Imports that would create circular imports if sorted
|
2016-10-10 22:13:01 +08:00
|
|
|
from django.db.models.base import DEFERRED, Model # isort:skip
|
|
|
|
from django.db.models.fields.related import ( # isort:skip
|
2015-06-16 02:07:31 +08:00
|
|
|
ForeignKey, ForeignObject, OneToOneField, ManyToManyField,
|
|
|
|
ManyToOneRel, ManyToManyRel, OneToOneRel,
|
|
|
|
)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
|
2006-07-28 10:09:38 +08:00
|
|
|
def permalink(func):
|
2007-07-16 21:47:43 +08:00
|
|
|
"""
|
2015-12-30 23:51:16 +08:00
|
|
|
Decorator that calls urls.reverse() to return a URL using parameters
|
|
|
|
returned by the decorated function "func".
|
2007-07-16 21:47:43 +08:00
|
|
|
|
|
|
|
"func" should be a function that returns a tuple in one of the
|
|
|
|
following formats:
|
|
|
|
(viewname, viewargs)
|
|
|
|
(viewname, viewargs, viewkwargs)
|
|
|
|
"""
|
2016-10-05 02:39:49 +08:00
|
|
|
import warnings
|
|
|
|
from functools import wraps
|
|
|
|
|
2015-12-30 23:51:16 +08:00
|
|
|
from django.urls import reverse
|
2016-10-05 02:39:49 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango21Warning
|
|
|
|
|
|
|
|
warnings.warn(
|
|
|
|
'permalink() is deprecated in favor of calling django.urls.reverse() '
|
|
|
|
'in the decorated method.',
|
2017-03-29 05:58:10 +08:00
|
|
|
RemovedInDjango21Warning,
|
|
|
|
stacklevel=2,
|
2016-10-05 02:39:49 +08:00
|
|
|
)
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2011-03-14 13:22:39 +08:00
|
|
|
@wraps(func)
|
2006-07-28 10:09:38 +08:00
|
|
|
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
|
2016-10-10 22:13:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
__all__ = aggregates_all + fields_all + indexes_all
|
|
|
|
__all__ += [
|
|
|
|
'ObjectDoesNotExist', 'signals',
|
|
|
|
'CASCADE', 'DO_NOTHING', 'PROTECT', 'SET', 'SET_DEFAULT', 'SET_NULL',
|
|
|
|
'ProtectedError',
|
2016-04-20 14:56:51 +08:00
|
|
|
'Case', 'Exists', 'Expression', 'ExpressionWrapper', 'F', 'Func',
|
|
|
|
'OuterRef', 'Subquery', 'Value', 'When',
|
2016-10-10 22:13:01 +08:00
|
|
|
'FileField', 'ImageField', 'OrderWrt', 'Lookup', 'Transform', 'Manager',
|
|
|
|
'Prefetch', 'Q', 'QuerySet', 'prefetch_related_objects', 'DEFERRED', 'Model',
|
|
|
|
'ForeignKey', 'ForeignObject', 'OneToOneField', 'ManyToManyField',
|
|
|
|
'ManyToOneRel', 'ManyToManyRel', 'OneToOneRel', 'permalink',
|
|
|
|
]
|