Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created August 5, 2019 10:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/b525f91e857161abe590b4c5cd087e3c to your computer and use it in GitHub Desktop.
Save ryantm/b525f91e857161abe590b4c5cd087e3c to your computer and use it in GitHub Desktop.
/nix/store/qxnf1qv7xkkyhkbl72ga4mayxym2vcxb-python3.7-django_compressor-2.3
├── lib
│   └── python3.7
│   └── site-packages
│   ├── compressor
│   │   ├── base.py
│   │   ├── cache.py
│   │   ├── conf.py
│   │   ├── contrib
│   │   │   ├── __init__.py
│   │   │   ├── jinja2ext.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── jinja2ext.cpython-37.pyc
│   │   │   │   └── sekizai.cpython-37.pyc
│   │   │   └── sekizai.py
│   │   ├── css.py
│   │   ├── exceptions.py
│   │   ├── filters
│   │   │   ├── base.py
│   │   │   ├── cleancss.py
│   │   │   ├── closure.py
│   │   │   ├── css_default.py
│   │   │   ├── cssmin
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── datauri.py
│   │   │   ├── __init__.py
│   │   │   ├── jsmin
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── cleancss.cpython-37.pyc
│   │   │   │   ├── closure.cpython-37.pyc
│   │   │   │   ├── css_default.cpython-37.pyc
│   │   │   │   ├── datauri.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── template.cpython-37.pyc
│   │   │   │   ├── yuglify.cpython-37.pyc
│   │   │   │   └── yui.cpython-37.pyc
│   │   │   ├── template.py
│   │   │   ├── yuglify.py
│   │   │   └── yui.py
│   │   ├── finders.py
│   │   ├── __init__.py
│   │   ├── js.py
│   │   ├── management
│   │   │   ├── commands
│   │   │   │   ├── compress.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── mtime_cache.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── compress.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── mtime_cache.cpython-37.pyc
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── models.py
│   │   ├── offline
│   │   │   ├── django.py
│   │   │   ├── __init__.py
│   │   │   ├── jinja2.py
│   │   │   └── __pycache__
│   │   │   ├── django.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── jinja2.cpython-37.pyc
│   │   ├── parser
│   │   │   ├── base.py
│   │   │   ├── beautifulsoup.py
│   │   │   ├── default_htmlparser.py
│   │   │   ├── html5lib.py
│   │   │   ├── __init__.py
│   │   │   ├── lxml.py
│   │   │   └── __pycache__
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── beautifulsoup.cpython-37.pyc
│   │   │   ├── default_htmlparser.cpython-37.pyc
│   │   │   ├── html5lib.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── lxml.cpython-37.pyc
│   │   ├── __pycache__
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── cache.cpython-37.pyc
│   │   │   ├── conf.cpython-37.pyc
│   │   │   ├── css.cpython-37.pyc
│   │   │   ├── exceptions.cpython-37.pyc
│   │   │   ├── finders.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── js.cpython-37.pyc
│   │   │   ├── models.cpython-37.pyc
│   │   │   ├── signals.cpython-37.pyc
│   │   │   ├── storage.cpython-37.pyc
│   │   │   └── test_settings.cpython-37.pyc
│   │   ├── signals.py
│   │   ├── storage.py
│   │   ├── templates
│   │   │   └── compressor
│   │   │   ├── css_file.html
│   │   │   ├── css_inline.html
│   │   │   ├── js_file.html
│   │   │   └── js_inline.html
│   │   ├── templatetags
│   │   │   ├── compress.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── compress.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── precompiler.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── precompiler.cpython-37.pyc
│   │   │   │   ├── test_base.cpython-37.pyc
│   │   │   │   ├── test_conf.cpython-37.pyc
│   │   │   │   ├── test_filters.cpython-37.pyc
│   │   │   │   ├── test_finder.cpython-37.pyc
│   │   │   │   ├── test_jinja2ext.cpython-37.pyc
│   │   │   │   ├── test_mtime_cache.cpython-37.pyc
│   │   │   │   ├── test_offline.cpython-37.pyc
│   │   │   │   ├── test_parsers.cpython-37.pyc
│   │   │   │   ├── test_sekizai.cpython-37.pyc
│   │   │   │   ├── test_signals.cpython-37.pyc
│   │   │   │   ├── test_storages.cpython-37.pyc
│   │   │   │   ├── test_templatetags.cpython-37.pyc
│   │   │   │   └── test_utils.cpython-37.pyc
│   │   │   ├── static
│   │   │   │   ├── css
│   │   │   │   │   ├── datauri.css
│   │   │   │   │   ├── filename with spaces.css
│   │   │   │   │   ├── nonasc.css
│   │   │   │   │   ├── one.css
│   │   │   │   │   ├── relative_url.css
│   │   │   │   │   ├── two.css
│   │   │   │   │   ├── url
│   │   │   │   │   │   ├── 2
│   │   │   │   │   │   │   └── url2.css
│   │   │   │   │   │   ├── nonasc.css
│   │   │   │   │   │   ├── test.css
│   │   │   │   │   │   └── url1.css
│   │   │   │   │   └── utf-8_with-BOM.css
│   │   │   │   ├── img
│   │   │   │   │   ├── add.png
│   │   │   │   │   ├── add with spaces.png
│   │   │   │   │   └── python.png
│   │   │   │   └── js
│   │   │   │   ├── nonasc.js
│   │   │   │   ├── nonasc-latin1.js
│   │   │   │   ├── one.coffee
│   │   │   │   ├── one.js
│   │   │   │   ├── three.js
│   │   │   │   └── two.js
│   │   │   ├── test_base.py
│   │   │   ├── test_conf.py
│   │   │   ├── test_filters.py
│   │   │   ├── test_finder.py
│   │   │   ├── test_jinja2ext.py
│   │   │   ├── test_mtime_cache.py
│   │   │   ├── test_offline.py
│   │   │   ├── test_parsers.py
│   │   │   ├── test_sekizai.py
│   │   │   ├── test_signals.py
│   │   │   ├── test_storages.py
│   │   │   ├── test_templates
│   │   │   │   ├── basic
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_block_super
│   │   │   │   │   ├── base.html
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_block_super_base_compressed
│   │   │   │   │   ├── base2.html
│   │   │   │   │   ├── base.html
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_block_super_extra
│   │   │   │   │   ├── base.html
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_block_super_multiple
│   │   │   │   │   ├── base2.html
│   │   │   │   │   ├── base.html
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_block_super_multiple_cached
│   │   │   │   │   ├── base2.html
│   │   │   │   │   ├── base.html
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_complex
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_compress_command
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_condition
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_duplicate
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_error_handling
│   │   │   │   │   ├── buggy_extends.html
│   │   │   │   │   ├── buggy_template.html
│   │   │   │   │   ├── missing_extends.html
│   │   │   │   │   ├── test_compressor_offline.html
│   │   │   │   │   └── with_coffeescript.html
│   │   │   │   ├── test_extends_recursion
│   │   │   │   │   ├── admin
│   │   │   │   │   │   └── index.html
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_inline_non_ascii
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_static_templatetag
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_static_url_independence
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_templatetag
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_templatetag_named
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_with_context
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_with_context_super
│   │   │   │   │   ├── base.html
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_with_context_variable_inheritance
│   │   │   │   │   ├── base.html
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   └── test_with_context_variable_inheritance_super
│   │   │   │   ├── base1.html
│   │   │   │   ├── base2.html
│   │   │   │   └── test_compressor_offline.html
│   │   │   ├── test_templates_jinja2
│   │   │   │   ├── basic
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_block_super
│   │   │   │   │   ├── base.html
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_block_super_extra
│   │   │   │   │   ├── base.html
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_block_super_multiple
│   │   │   │   │   ├── base2.html
│   │   │   │   │   ├── base.html
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_block_super_multiple_cached
│   │   │   │   │   ├── base2.html
│   │   │   │   │   ├── base.html
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_coffin
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_complex
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_compress_command
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_condition
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_duplicate
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_error_handling
│   │   │   │   │   ├── buggy_extends.html
│   │   │   │   │   ├── buggy_template.html
│   │   │   │   │   ├── missing_extends.html
│   │   │   │   │   ├── test_compressor_offline.html
│   │   │   │   │   └── with_coffeescript.html
│   │   │   │   ├── test_extends_recursion
│   │   │   │   │   ├── admin
│   │   │   │   │   │   └── index.html
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_inline_non_ascii
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_jingo
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_static_templatetag
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_static_url_independence
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_templatetag
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_templatetag_named
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   ├── test_with_context
│   │   │   │   │   └── test_compressor_offline.html
│   │   │   │   └── test_with_context_variable_inheritance
│   │   │   │   ├── base.html
│   │   │   │   └── test_compressor_offline.html
│   │   │   ├── test_templatetags.py
│   │   │   └── test_utils.py
│   │   ├── test_settings.py
│   │   └── utils
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── staticfiles.cpython-37.pyc
│   │   └── staticfiles.py
│   └── django_compressor-2.3.dist-info
│   ├── AUTHORS
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
82 directories, 218 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment