This file is indexed.

/usr/share/pyshared/gluon/contrib/minify/htmlmin.py is in python-gluon 1.99.7-1.

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
# coding: utf-8

import re

def minify(response):
  def _replace(match):
    match = match.group()
    # save whole <pre>, <textarea> tags, and opening <!-- (so it doesn't break <script>)
    # otherwise, replace all whitespace with a single space character
    return match if match.startswith(('<pre', '<textarea', '<!--')) else ' '
  
  cpat = re.compile(r'\s+|<pre(.*?)</pre>|<textarea(.*?)</textarea>|<!--\s', re.DOTALL)
  return cpat.sub(_replace, response)