magic-removal: Allowed model classes to provide their own 'app_label', and
added method for manually registering the model classes when they don't live in models.py git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2277 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
14cf7ea9d2
commit
adc562d42d
|
@ -34,12 +34,11 @@ class ModelBase(type):
|
||||||
|
|
||||||
model_module = sys.modules[new_class.__module__]
|
model_module = sys.modules[new_class.__module__]
|
||||||
|
|
||||||
# Figure out the app_label by looking one level up.
|
if not hasattr(new_class._meta, 'app_label') or \
|
||||||
# For 'django.contrib.sites.models', this would be 'sites'.
|
new_class._meta.app_label is None:
|
||||||
app_label = model_module.__name__.split('.')[-2]
|
# Figure out the app_label by looking one level up.
|
||||||
|
# For 'django.contrib.sites.models', this would be 'sites'.
|
||||||
# Cache the app label.
|
new_class._meta.app_label = model_module.__name__.split('.')[-2]
|
||||||
new_class._meta.app_label = app_label
|
|
||||||
|
|
||||||
# Add all attributes to the class.
|
# Add all attributes to the class.
|
||||||
for obj_name, obj in attrs.items():
|
for obj_name, obj in attrs.items():
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.core.exceptions import ImproperlyConfigured
|
from django.core.exceptions import ImproperlyConfigured
|
||||||
|
|
||||||
__all__ = ('get_apps', 'get_app', 'get_models', 'get_model')
|
__all__ = ('get_apps', 'get_app', 'get_models', 'get_model', 'register_models')
|
||||||
|
|
||||||
_app_list = None # Cache of installed apps.
|
_app_list = None # Cache of installed apps.
|
||||||
|
|
||||||
|
@ -50,3 +50,14 @@ def get_model(app_label, model_name):
|
||||||
if model._meta.object_name.lower() == model_name and \
|
if model._meta.object_name.lower() == model_name and \
|
||||||
model._meta.app_label == app_label:
|
model._meta.app_label == app_label:
|
||||||
return model
|
return model
|
||||||
|
|
||||||
|
def register_models(app_mod, *models):
|
||||||
|
"""
|
||||||
|
Use this from an app's models.py module to register imported Model classes
|
||||||
|
as belonging to the app. e.g.:
|
||||||
|
|
||||||
|
register_models(sys.modules[__name__], Article, Reporter)
|
||||||
|
"""
|
||||||
|
if not hasattr(app_mod, '_MODELS'):
|
||||||
|
app_mod._MODELS = []
|
||||||
|
app_mod._MODELS.extend(models)
|
||||||
|
|
|
@ -10,7 +10,8 @@ import re
|
||||||
get_verbose_name = lambda class_name: re.sub('([A-Z])', ' \\1', class_name).lower().strip()
|
get_verbose_name = lambda class_name: re.sub('([A-Z])', ' \\1', class_name).lower().strip()
|
||||||
|
|
||||||
DEFAULT_NAMES = ('verbose_name', 'verbose_name_plural', 'db_table', 'ordering',
|
DEFAULT_NAMES = ('verbose_name', 'verbose_name_plural', 'db_table', 'ordering',
|
||||||
'unique_together', 'permissions', 'get_latest_by', 'order_with_respect_to')
|
'unique_together', 'permissions', 'get_latest_by',
|
||||||
|
'order_with_respect_to', 'app_label')
|
||||||
|
|
||||||
class Options:
|
class Options:
|
||||||
def __init__(self, meta):
|
def __init__(self, meta):
|
||||||
|
|
Loading…
Reference in New Issue