diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-09-21 18:18:04 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-09-21 18:18:04 +0000 |
| commit | 0505000533c7a92a970f1dddbc45813d8826e292 (patch) | |
| tree | 6be3502777003298e4a1c5b245f248ad22a5b409 | |
| parent | 63994a980131e15f08383fb441b26d259bd73f7f (diff) | |
Changed django.core.extensions.load_and_render to take context_instance instead of context_class keyword arg, so DjangoContext can be used
git-svn-id: http://code.djangoproject.com/svn/django/trunk@656 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/core/extensions.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/django/core/extensions.py b/django/core/extensions.py index 453d48e8a3..fce9011fc0 100644 --- a/django/core/extensions.py +++ b/django/core/extensions.py @@ -5,11 +5,13 @@ from django.core.template import Context from django.conf.settings import DEBUG, INTERNAL_IPS from django.utils.httpwrappers import HttpResponse -def load_and_render(template_name, dictionary=None, context_class=None): +def load_and_render(template_name, dictionary=None, context_instance=None): dictionary = dictionary or {} - context_class = context_class or Context t = template_loader.get_template(template_name) - c = context_class(dictionary) + if context_instance: + c = context_instance.update(dictionary) + else: + c = Context(dictionary) return HttpResponse(t.render(c)) class DjangoContext(Context): |
