forked from feincms/feincms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_internal.py
More file actions
64 lines (41 loc) · 1.57 KB
/
Copy path_internal.py
File metadata and controls
64 lines (41 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
"""
These are internal helpers. Do not rely on their presence.
http://mail.python.org/pipermail/python-dev/2008-January/076194.html
"""
from __future__ import absolute_import, unicode_literals
from distutils.version import LooseVersion
from django import get_version
from django.template.loader import render_to_string
__all__ = ("monkeypatch_method", "monkeypatch_property")
def monkeypatch_method(cls):
"""
A decorator to add a single method to an existing class::
@monkeypatch_method(<someclass>)
def <newmethod>(self, [...]):
pass
"""
def decorator(func):
setattr(cls, func.__name__, func)
return func
return decorator
def monkeypatch_property(cls):
"""
A decorator to add a single method as a property to an existing class::
@monkeypatch_property(<someclass>)
def <newmethod>(self, [...]):
pass
"""
def decorator(func):
setattr(cls, func.__name__, property(func))
return func
return decorator
if LooseVersion(get_version()) < LooseVersion("1.10"):
def ct_render_to_string(template, ctx, **kwargs):
from django.template import RequestContext
context_instance = kwargs.get("context")
if context_instance is None and kwargs.get("request"):
context_instance = RequestContext(kwargs["request"])
return render_to_string(template, ctx, context_instance=context_instance)
else:
def ct_render_to_string(template, ctx, **kwargs):
return render_to_string(template, ctx, request=kwargs.get("request"))