2006-05-02 09:31:56 +08:00
|
|
|
from django.conf import settings
|
|
|
|
from django.core.exceptions import ObjectDoesNotExist, ImproperlyConfigured
|
|
|
|
from django.core import validators
|
|
|
|
from django.db import backend, connection
|
|
|
|
from django.db.models.loading import get_apps, get_app, get_models, get_model, register_models
|
|
|
|
from django.db.models.query import Q
|
|
|
|
from django.db.models.manager import Manager
|
|
|
|
from django.db.models.base import Model, AdminOptions
|
|
|
|
from django.db.models.fields import *
|
|
|
|
from django.db.models.fields.related import ForeignKey, OneToOneField, ManyToManyField, ManyToOneRel, ManyToManyRel, OneToOneRel, TABULAR, STACKED
|
2006-06-17 03:18:30 +08:00
|
|
|
from django.db.models.fields.generic import GenericRelation, GenericRel, GenericForeignKey
|
2006-05-02 09:31:56 +08:00
|
|
|
from django.db.models import signals
|
|
|
|
from django.utils.functional import curry
|
|
|
|
from django.utils.text import capfirst
|
|
|
|
|
|
|
|
# Admin stages.
|
|
|
|
ADD, CHANGE, BOTH = 1, 2, 3
|
|
|
|
|
2006-07-28 10:09:38 +08:00
|
|
|
# Decorator. Takes a function that returns a tuple in this format:
|
|
|
|
# (viewname, viewargs, viewkwargs)
|
|
|
|
# Returns a function that calls urlresolvers.reverse() on that data, to return
|
|
|
|
# the URL for those parameters.
|
|
|
|
def permalink(func):
|
|
|
|
from django.core.urlresolvers import reverse
|
|
|
|
def inner(*args, **kwargs):
|
|
|
|
bits = func(*args, **kwargs)
|
|
|
|
viewname = bits[0]
|
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
|
|
|
|
|
2006-06-08 13:00:13 +08:00
|
|
|
class LazyDate(object):
|
2006-05-02 09:31:56 +08:00
|
|
|
"""
|
|
|
|
Use in limit_choices_to to compare the field to dates calculated at run time
|
|
|
|
instead of when the model is loaded. For example::
|
|
|
|
|
|
|
|
... limit_choices_to = {'date__gt' : models.LazyDate(days=-3)} ...
|
|
|
|
|
|
|
|
which will limit the choices to dates greater than three days ago.
|
|
|
|
"""
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
self.delta = datetime.timedelta(**kwargs)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return str(self.__get_value__())
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "<LazyDate: %s>" % self.delta
|
|
|
|
|
|
|
|
def __get_value__(self):
|
2006-08-12 13:18:25 +08:00
|
|
|
return (datetime.datetime.now() + self.delta).date()
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
def __getattr__(self, attr):
|
|
|
|
return getattr(self.__get_value__(), attr)
|