我知道django 1.4具有在错误报告中删除敏感信息的功能。我正在使用django 1.3和python 2.4。我想知道https://docs.djangoproject.com/en/dev/howto/error-reporting/#filtering-error-report是否可以移植到django 1.3和python 2.4。我尝试过没有成功。请帮助。
答案 0 :(得分:0)
我只是将sensitive_information装饰器复制到本地decorators.py文件中,然后使用它。
import functools
def sensitive_variables(*variables):
"""
Indicates which variables used in the decorated function are sensitive, so
that those variables can later be treated in a special way, for example
by hiding them when logging unhandled exceptions.
Two forms are accepted:
* with specified variable names:
@sensitive_variables('user', 'password', 'credit_card')
def my_function(user):
password = user.pass_word
credit_card = user.credit_card_number
...
* without any specified variable names, in which case it is assumed that
all variables are considered sensitive:
@sensitive_variables()
def my_function()
...
"""
def decorator(func):
@functools.wraps(func)
def wrapper(*args, **kwargs):
if variables:
wrapper.sensitive_variables = variables
else:
wrapper.sensitive_variables = '__ALL__'
return func(*args, **kwargs)
return wrapper
return decorator
用法:
@sensitive_variables('user', 'pw', 'cc')
def my_view(request):
pass
还需要functools.py,默认情况下不会附带python2.4(我猜) - 你可能需要单独包含该文件。