summaryrefslogtreecommitdiffstats
path: root/main/storage.py
AgeCommit message (Collapse)AuthorFilesLines
2019-01-21main: jsmin/cssmin wants a str instead of bytesJelle van der Waa1-1/+1
2018-04-08main/storage: Switch from Cached to ManifestStaticFilesStorageJohannes Löthberg1-2/+2
Django explicitly recommends against using CachedStaticFilesStorage, partially because it performs worse. It also breaks our tests with our Minified subclassing of it. Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
2013-02-08Minify static files when running collectstaticDan McGee1-0/+36
This doesn't do any super optimizations, but does run the very basic cssmin and jsmin Python tools over the static resources we serve up. Signed-off-by: Dan McGee <dan@archlinux.org>