]> review.fuel-infra Code Review - packages/trusty/python-django-compressor.git/commit
Add python-django-compressor (1.4) package 92/5892/6 pre-1520307-master
authorIvan Udovichenko <iudovichenko@mirantis.com>
Thu, 16 Apr 2015 20:12:58 +0000 (23:12 +0300)
committerIvan Udovichenko <iudovichenko@mirantis.com>
Mon, 20 Apr 2015 11:48:16 +0000 (14:48 +0300)
commitef97f910a13820a5d289ed6081b5af48737cab1e
tree91ebe0d37acf909cf54e39b627aada81dfe6749a
parentd95555d35fbcbcb9c9586a6359c898c65c442a3f
Add python-django-compressor (1.4) package

    * Satisfy global requirements [1]
    * [1] https://github.com/openstack/requirements/blob/stable/kilo/global-requirements.txt#L25
    * Remove watch file
    * Update python version

Change-Id: I645e9961635ada440f50bf3eb29a42ae7df69302
166 files changed:
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/docs [new file with mode: 0644]
debian/pydist-overrides [new file with mode: 0644]
debian/rules [new file with mode: 0755]
debian/source/format [new file with mode: 0644]
django-compressor/AUTHORS [new file with mode: 0644]
django-compressor/LICENSE [new file with mode: 0644]
django-compressor/MANIFEST.in [new file with mode: 0644]
django-compressor/Makefile [new file with mode: 0644]
django-compressor/PKG-INFO [new file with mode: 0644]
django-compressor/README.rst [new file with mode: 0644]
django-compressor/compressor/__init__.py [new file with mode: 0644]
django-compressor/compressor/base.py [new file with mode: 0644]
django-compressor/compressor/cache.py [new file with mode: 0644]
django-compressor/compressor/conf.py [new file with mode: 0644]
django-compressor/compressor/contrib/__init__.py [new file with mode: 0644]
django-compressor/compressor/contrib/jinja2ext.py [new file with mode: 0644]
django-compressor/compressor/contrib/sekizai.py [new file with mode: 0644]
django-compressor/compressor/css.py [new file with mode: 0644]
django-compressor/compressor/exceptions.py [new file with mode: 0644]
django-compressor/compressor/filters/__init__.py [new file with mode: 0644]
django-compressor/compressor/filters/base.py [new file with mode: 0644]
django-compressor/compressor/filters/closure.py [new file with mode: 0644]
django-compressor/compressor/filters/css_default.py [new file with mode: 0644]
django-compressor/compressor/filters/cssmin/__init__.py [new file with mode: 0644]
django-compressor/compressor/filters/cssmin/cssmin.py [new file with mode: 0644]
django-compressor/compressor/filters/cssmin/rcssmin.py [new file with mode: 0644]
django-compressor/compressor/filters/csstidy.py [new file with mode: 0644]
django-compressor/compressor/filters/datauri.py [new file with mode: 0644]
django-compressor/compressor/filters/jsmin/__init__.py [new file with mode: 0644]
django-compressor/compressor/filters/jsmin/rjsmin.py [new file with mode: 0755]
django-compressor/compressor/filters/jsmin/slimit.py [new file with mode: 0644]
django-compressor/compressor/filters/template.py [new file with mode: 0644]
django-compressor/compressor/filters/yuglify.py [new file with mode: 0644]
django-compressor/compressor/filters/yui.py [new file with mode: 0644]
django-compressor/compressor/finders.py [new file with mode: 0644]
django-compressor/compressor/js.py [new file with mode: 0644]
django-compressor/compressor/management/__init__.py [new file with mode: 0644]
django-compressor/compressor/management/commands/__init__.py [new file with mode: 0644]
django-compressor/compressor/management/commands/compress.py [new file with mode: 0644]
django-compressor/compressor/management/commands/mtime_cache.py [new file with mode: 0644]
django-compressor/compressor/models.py [new file with mode: 0644]
django-compressor/compressor/offline/__init__.py [new file with mode: 0644]
django-compressor/compressor/offline/django.py [new file with mode: 0644]
django-compressor/compressor/offline/jinja2.py [new file with mode: 0644]
django-compressor/compressor/parser/__init__.py [new file with mode: 0644]
django-compressor/compressor/parser/base.py [new file with mode: 0644]
django-compressor/compressor/parser/beautifulsoup.py [new file with mode: 0644]
django-compressor/compressor/parser/default_htmlparser.py [new file with mode: 0644]
django-compressor/compressor/parser/html5lib.py [new file with mode: 0644]
django-compressor/compressor/parser/lxml.py [new file with mode: 0644]
django-compressor/compressor/signals.py [new file with mode: 0644]
django-compressor/compressor/storage.py [new file with mode: 0644]
django-compressor/compressor/templates/compressor/css_file.html [new file with mode: 0644]
django-compressor/compressor/templates/compressor/css_inline.html [new file with mode: 0644]
django-compressor/compressor/templates/compressor/js_file.html [new file with mode: 0644]
django-compressor/compressor/templates/compressor/js_inline.html [new file with mode: 0644]
django-compressor/compressor/templatetags/__init__.py [new file with mode: 0644]
django-compressor/compressor/templatetags/compress.py [new file with mode: 0644]
django-compressor/compressor/test_settings.py [new file with mode: 0644]
django-compressor/compressor/tests/__init__.py [new file with mode: 0644]
django-compressor/compressor/tests/precompiler.py [new file with mode: 0644]
django-compressor/compressor/tests/static/css/datauri.css [new file with mode: 0644]
django-compressor/compressor/tests/static/css/nonasc.css [new file with mode: 0644]
django-compressor/compressor/tests/static/css/one.css [new file with mode: 0644]
django-compressor/compressor/tests/static/css/two.css [new file with mode: 0644]
django-compressor/compressor/tests/static/css/url/2/url2.css [new file with mode: 0644]
django-compressor/compressor/tests/static/css/url/nonasc.css [new file with mode: 0644]
django-compressor/compressor/tests/static/css/url/test.css [new file with mode: 0644]
django-compressor/compressor/tests/static/css/url/url1.css [new file with mode: 0644]
django-compressor/compressor/tests/static/img/add.png [new file with mode: 0644]
django-compressor/compressor/tests/static/img/python.png [new file with mode: 0644]
django-compressor/compressor/tests/static/js/nonasc-latin1.js [new file with mode: 0644]
django-compressor/compressor/tests/static/js/nonasc.js [new file with mode: 0644]
django-compressor/compressor/tests/static/js/one.coffee [new file with mode: 0644]
django-compressor/compressor/tests/static/js/one.js [new file with mode: 0644]
django-compressor/compressor/tests/test_base.py [new file with mode: 0644]
django-compressor/compressor/tests/test_filters.py [new file with mode: 0644]
django-compressor/compressor/tests/test_jinja2ext.py [new file with mode: 0644]
django-compressor/compressor/tests/test_offline.py [new file with mode: 0644]
django-compressor/compressor/tests/test_parsers.py [new file with mode: 0644]
django-compressor/compressor/tests/test_signals.py [new file with mode: 0644]
django-compressor/compressor/tests/test_storages.py [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/basic/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_block_super/base.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_block_super/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_block_super_base_compressed/base.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_block_super_base_compressed/base2.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_block_super_base_compressed/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_block_super_extra/base.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_block_super_extra/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_block_super_multiple/base.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_block_super_multiple/base2.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_block_super_multiple/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_block_super_multiple_cached/base.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_block_super_multiple_cached/base2.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_block_super_multiple_cached/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_complex/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_condition/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_duplicate/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_error_handling/buggy_extends.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_error_handling/buggy_template.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_error_handling/missing_extends.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_error_handling/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_error_handling/with_coffeescript.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_inline_non_ascii/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_static_templatetag/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_templatetag/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates/test_with_context/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/basic/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_block_super/base.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_block_super/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_block_super_extra/base.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_block_super_extra/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_block_super_multiple/base.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_block_super_multiple/base2.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_block_super_multiple/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_block_super_multiple_cached/base.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_block_super_multiple_cached/base2.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_block_super_multiple_cached/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_coffin/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_complex/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_condition/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_error_handling/buggy_extends.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_error_handling/buggy_template.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_error_handling/missing_extends.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_error_handling/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_error_handling/with_coffeescript.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_inline_non_ascii/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_jingo/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_static_templatetag/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_templatetag/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templates_jinja2/test_with_context/test_compressor_offline.html [new file with mode: 0644]
django-compressor/compressor/tests/test_templatetags.py [new file with mode: 0644]
django-compressor/compressor/utils/__init__.py [new file with mode: 0644]
django-compressor/compressor/utils/decorators.py [new file with mode: 0644]
django-compressor/compressor/utils/staticfiles.py [new file with mode: 0644]
django-compressor/compressor/utils/stringformat.py [new file with mode: 0644]
django-compressor/django_compressor.egg-info/PKG-INFO [new file with mode: 0644]
django-compressor/django_compressor.egg-info/SOURCES.txt [new file with mode: 0644]
django-compressor/django_compressor.egg-info/dependency_links.txt [new file with mode: 0644]
django-compressor/django_compressor.egg-info/not-zip-safe [new file with mode: 0644]
django-compressor/django_compressor.egg-info/requires.txt [new file with mode: 0644]
django-compressor/django_compressor.egg-info/top_level.txt [new file with mode: 0644]
django-compressor/docs/Makefile [new file with mode: 0644]
django-compressor/docs/behind-the-scenes.txt [new file with mode: 0644]
django-compressor/docs/changelog.txt [new file with mode: 0644]
django-compressor/docs/conf.py [new file with mode: 0644]
django-compressor/docs/contributing.txt [new file with mode: 0644]
django-compressor/docs/django-sekizai.txt [new file with mode: 0644]
django-compressor/docs/index.txt [new file with mode: 0644]
django-compressor/docs/jinja2.txt [new file with mode: 0644]
django-compressor/docs/make.bat [new file with mode: 0644]
django-compressor/docs/quickstart.txt [new file with mode: 0644]
django-compressor/docs/remote-storages.txt [new file with mode: 0644]
django-compressor/docs/scenarios.txt [new file with mode: 0644]
django-compressor/docs/settings.txt [new file with mode: 0644]
django-compressor/docs/usage.txt [new file with mode: 0644]
django-compressor/requirements/tests.txt [new file with mode: 0644]
django-compressor/setup.cfg [new file with mode: 0644]
django-compressor/setup.py [new file with mode: 0644]
django-compressor/tox.ini [new file with mode: 0644]
tests/runtests.sh [new file with mode: 0755]