| Age | Commit message (Collapse) | Author |
|
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Thanks Fako Berkers for help with the patch.
|
|
|
|
Thanks Aymeric for the initial patch and Carl for review.
|
|
|
|
|
|
psycopg2 now publishes binary wheel files for Windows
so you can install it using pip.
|