Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Apply pyupgrade --py36-plus. | Ben Sturmfels | 2021-09-23 | 1 | -1/+1 |
| | | | | This removes some 'u' prefixes and converts simple format() calls to f-strings. | ||||
* | Apply `pyupgrade --py3-plus` to remove Python 2 compatibility code. | Ben Sturmfels | 2021-03-05 | 1 | -3/+2 |
| | |||||
* | Spell-check the entire documentation. | Ben Sturmfels | 2016-09-18 | 1 | -1/+1 |
| | |||||
* | Tweak the trim whitespace plugin documentation. | Berker Peksag | 2014-04-10 | 1 | -5/+10 |
| | | | | | | - Fix code highlighting - Wrap all lines to 80 chars - Add more markup (eg. Response() to ``Response()``) | ||||
* | trim_whitespace meddleware plugin | Sebastian Spaeth | 2012-12-01 | 2 | -0/+98 |
Our HTML output is very verbose (=whitespacy) as our templates are written with an 80 char limit and lots of newlines between blocks, variables etc.... This is a plugin that naively strips of all but the first whitespace from the HTML response. We might want to have an all-fancy html tidy interface here at some point, but it nicely decreases the HTML size about a third on some simple pages. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de> |