| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove outdated code | tufedtm | 2021-04-13 | 1 | -1/+1 |
| | | |||||
| * | Update flake8 to be compatible with newer versions of python (#968) | Albert Wang | 2019-12-14 | 1 | -4/+4 |
| | | | | | * Update flake8 to be compatible with newer versions of python | ||||
| * | Insert ';' after each js file instead of before to fix strict mode | Vojtech Bocek | 2019-08-05 | 1 | -1/+1 |
| | | |||||
| * | Abstract away resource types to allow the implementation of new types. (#900) | Alexander van Ratingen | 2018-04-02 | 1 | -5/+2 |
| | | | | | | | | | | | | | | | * Abstract away resource types to allow the implementation of new types. * Fix failing test on Python 2. * Process review comments * Remove old COMPRESS_FILTER_CSS/JS settings from configuration after converting them into the new COMPRESS_FILTERS[css/js] form. * Document new COMPRESS_FILTERS setting. * Update mention in documentation of old filter setting to new form. | ||||
| * | Insert semicolon between JS files, fixes a JS syntax error when certain ↵ | Patrick Michaud | 2017-01-03 | 1 | -0/+17 |
| | | | | | | | | | | | | | | | | | | | | | | files are combined (#813) compressor will turn files that look like File1.js: (function($) { console.log("run"); })(window) File2.js: (function($) { console.log("run 2"); })(window) Into: (function($) { console.log("run"); })(window) (function($) { console.log("run 2"); })(window) which will give an error like "Uncaught TypeError: (intermediate value)(...) is not a function" This commit changes that output to: (function($) { console.log("run"); })(window);(function($) { console.log("run 2"); })(window) | ||||
| * | Minor refactoring in Compressor's constructor | Johannes Linke | 2015-09-23 | 1 | -3/+2 |
| | | |||||
| * | Fixed typo in last merge. | Jannis Leidel | 2014-12-30 | 1 | -1/+1 |
| | | |||||
| * | Merge remote-tracking branch 'GermanoGuerrini/develop' into develop | Jannis Leidel | 2014-12-30 | 1 | -3/+31 |
| |\ | | | | | | | Fix #132. | ||||
| | * | Support for async/defer | GermanoGuerrini | 2014-05-26 | 1 | -3/+29 |
| |/ | | | | Now javascripts are compressed preserving async or defer. | ||||
| * | Various PEP8 and pyflakes related fixes. | Jannis Leidel | 2012-05-19 | 1 | -1/+0 |
| | | |||||
| * | Stop hardcoding the template names and provide an API for returning custom ↵ | Jannis Leidel | 2012-01-30 | 1 | -2/+0 |
| | | | | | paths. Fixed #167. | ||||
| * | Import settings from compressor.conf again instead of django.conf to make ↵ | Jannis Leidel | 2011-09-06 | 1 | -2/+1 |
| | | | | | sure they are loaded correctly. | ||||
| * | Use the current context when rendering the output templates. | Jannis Leidel | 2011-08-26 | 1 | -2/+2 |
| | | |||||
| * | Moved settings handling over to django-appconf and fixed coverage. | Jannis Leidel | 2011-08-25 | 1 | -1/+2 |
| | | |||||
| * | Moved tests out of the app to stay sane and changed a few things. E.g. the ↵ | Jannis Leidel | 2011-08-10 | 1 | -9/+5 |
| | | | | | inclusion of JavaScript files now happens without charset (as they are deprecated in HTML5). | ||||
| * | Removed a few unneeded imports. | Jannis Leidel | 2011-05-18 | 1 | -2/+0 |
| | | |||||
| * | Use constants for hunk comparison. | Jannis Leidel | 2011-05-13 | 1 | -3/+3 |
| | | |||||
| * | Fix converting relative URLs in CSS files when DEBUG=True | Mike Yumatov | 2011-05-06 | 1 | -2/+6 |
| | | |||||
| * | Applied a few PEP8 style modifications. | Jannis Leidel | 2011-03-30 | 1 | -3/+4 |
| | | |||||
| * | Made it possible to create a compressor instance without providing content. | Jannis Leidel | 2011-02-16 | 1 | -2/+2 |
| | | |||||
| * | Be a bit DRYer for the file extension attribute of the compressors. | Jannis Leidel | 2011-02-16 | 1 | -1/+0 |
| | | |||||
| * | Adopted AppSettings and moved a few things from utils to the cache module ↵ | Jannis Leidel | 2011-02-09 | 1 | -4/+2 |
| | | | | | where they belong. | ||||
| * | Renamed the internal settings to be less confusing (potentially backwards ↵ | Jannis Leidel | 2011-02-04 | 1 | -1/+1 |
| | | | | | incompatible for users that imported those directly) and added quite some checks to be a little more helpful when setting up compressor together with staticfiles (whether contrib's staticfiles or the external app). | ||||
| * | Removed a few API-only imports from the main module. | Jannis Leidel | 2011-01-20 | 1 | -1/+3 |
| | | |||||
| * | Fixed order of instantiation of the CSSCompressor class. Thanks, emirotin. | Jannis Leidel | 2011-01-13 | 1 | -1/+1 |
| | | |||||
| * | Refactored the compressor code a little (split in separate modules). Also ↵ | Jannis Leidel | 2010-06-07 | 1 | -0/+30 |
| abstracted the file parsing and added a BeautifulSoupParser and a LxmlParser, while the former is the default. | |||||
