| Age | Commit message (Collapse) | Author |
|
Add a -c option to the shell command to execute a command passed as a
string as Django.
|
|
|
|
|
|
|
|
Thanks to Tim Graham for the review.
|
|
Thanks Thomas Güttler for motivating this addition.
|
|
|
|
|
|
|
|
Forwardport of b51086d57313e7ea857f4b96b62d25e600ee0a8d from stable/1.8.x
|
|
The use of predictable filenames in /tmp often leads to symlink attacks
so remove the most obvious use of them in the docs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Deprecates the "--plain" option.
|
|
This includes the ability to collapse inlines by specifying a class named
'collapse'.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Thanks to bmispelon and uruz for the initial patch.
|
|
Thanks hop for the report and patch.
|
|
|
|
installed.
|
|
docs/ref/templates/builtins.txt.
|
|
|
|
This allows setting a Content-Security-Policy HTTP header
(refs #15727).
Special thanks to blighj, the original author of this patch.
|
|
|
|
|
|
|
|
When Django reraises an exception, it sets the __cause__ attribute even
in Python 2, mimicking Python's 3 behavior for "raise Foo from Bar".
However, Python 3 also ensures that all exceptions have a __traceback__
attribute and thus the "traceback2" Python 2 module (backport of Python
3's "traceback" module) relies on the fact that whenever you have a
__cause__ attribute, the recorded exception also has a __traceback__
attribute.
This is breaking testtools which is using traceback2 (see
https://github.com/testing-cabal/testtools/issues/162).
This commit fixes this inconsistency by ensuring that Django sets
the __traceback__ attribute on any exception stored in a __cause__
attribute of a reraised exception.
|
|
functions.
Complements 7127eb287fb08b89a31bc97097a1fb6b08ada463.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
See https://github.com/sphinx-doc/sphinx/issues/2131
|
|
|
|
GDALComputeRasterStatistics.
Thanks Sergey Fedoseev and Tim Graham for the review.
|
|
|
|
|