This file is indexed.

/usr/lib/python2.7/dist-packages/django_compressor-1.4a1.egg-info/PKG-INFO is in python-compressor 1.4-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
Metadata-Version: 1.1
Name: django-compressor
Version: 1.4a1
Summary: Compresses linked and inline JavaScript or CSS into single cached files.
Home-page: http://django-compressor.readthedocs.org/en/latest/
Author: Jannis Leidel
Author-email: jannis@leidel.info
License: MIT
Description: Django Compressor
        =================
        
        .. image:: https://coveralls.io/repos/django-compressor/django-compressor/badge.png?branch=develop 
          :target: https://coveralls.io/r/django-compressor/django-compressor?branch=develop
        
        .. image:: https://pypip.in/v/django_compressor/badge.png
                :target: https://pypi.python.org/pypi/django_compressor
        
        .. image:: https://pypip.in/d/django_compressor/badge.png
                :target: https://pypi.python.org/pypi/django_compressor
        
        .. image:: https://secure.travis-ci.org/django-compressor/django-compressor.png?branch=develop
            :alt: Build Status
            :target: http://travis-ci.org/django-compressor/django-compressor
        
        Django Compressor combines and compresses linked and inline Javascript
        or CSS in a Django template into cacheable static files by using the
        ``compress`` template tag.
        
        HTML in between ``{% compress js/css %}`` and ``{% endcompress %}`` is
        parsed and searched for CSS or JS. These styles and scripts are subsequently
        processed with optional, configurable compilers and filters.
        
        The default filter for CSS rewrites paths to static files to be absolute
        and adds a cache busting timestamp. For Javascript the default filter
        compresses it using ``jsmin``.
        
        As the final result the template tag outputs a ``<script>`` or ``<link>``
        tag pointing to the optimized file. These files are stored inside a folder
        and given a unique name based on their content. Alternatively it can also
        return the resulting content to the original template directly.
        
        Since the file name is dependent on the content these files can be given
        a far future expiration date without worrying about stale browser caches.
        
        The concatenation and compressing process can also be jump started outside
        of the request/response cycle by using the Django management command
        ``manage.py compress``.
        
        Configurability & Extendibility
        -------------------------------
        
        Django Compressor is highly configurable and extendible. The HTML parsing
        is done using lxml_ or if it's not available Python's built-in HTMLParser by
        default. As an alternative Django Compressor provides a BeautifulSoup_ and a
        html5lib_ based parser, as well as an abstract base class that makes it easy to
        write a custom parser.
        
        Django Compressor also comes with built-in support for `CSS Tidy`_,
        `YUI CSS and JS`_ compressor, `yUglify CSS and JS`_ compressor, the Google's
        `Closure Compiler`_, a Python port of Douglas Crockford's JSmin_, a Python port
        of the YUI CSS Compressor cssmin_ and a filter to convert (some) images into
        `data URIs`_.
        
        If your setup requires a different compressor or other post-processing
        tool it will be fairly easy to implement a custom filter. Simply extend
        from one of the available base classes.
        
        More documentation about the usage and settings of Django Compressor can be
        found on `django-compressor.readthedocs.org`_.
        
        The source code for Django Compressor can be found and contributed to on
        `github.com/django-compressor/django-compressor`_. There you can also file tickets.
        
        The in-development version of Django Compressor can be installed with
        ``pip install http://github.com/django-compressor/django-compressor/tarball/develop``.
        
        .. _BeautifulSoup: http://www.crummy.com/software/BeautifulSoup/
        .. _lxml: http://lxml.de/
        .. _html5lib: http://code.google.com/p/html5lib/
        .. _CSS Tidy: http://csstidy.sourceforge.net/
        .. _YUI CSS and JS: http://developer.yahoo.com/yui/compressor/
        .. _yUglify CSS and JS: https://github.com/yui/yuglify
        .. _Closure Compiler: http://code.google.com/closure/compiler/
        .. _JSMin: http://www.crockford.com/javascript/jsmin.html
        .. _cssmin: https://github.com/zacharyvoase/cssmin
        .. _data URIs: http://en.wikipedia.org/wiki/Data_URI_scheme
        .. _django-compressor.readthedocs.org: http://django-compressor.readthedocs.org/en/latest/
        .. _github.com/django-compressor/django-compressor: https://github.com/django-compressor/django-compressor
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Internet :: WWW/HTTP