This file is indexed.

/usr/share/doc/liquidsoap/html/scripts/flac_resolver.html is in liquidsoap 1.1.1-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
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" \
                    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <title>Liquidsoap :: Audio Stream Generation</title>
  <link href="../css/style.css" type="text/css" rel="stylesheet" />
  <link href="../css/homepage.css" type="text/css" rel="stylesheet" />
</head>
<body>
  <div id="wrapper">
    <div id="header">
      <div id="logo">
        <h1>Liquidsoap</h1>
        <h2>Audio Stream Generation</h2>
      </div>
      <div>
      <ul id="menu">
          <li id="menu-about">
            <a href="../index.html">about</a></li>
          <li id="menu-support">
            <a href="../documentation.html">documentation</a></li>
          <li id="menu-developers">
            <a href="https://github.com/savonet/liquidsoap/issues">developers</a></li>
      </ul>
     </div>
    </div>
    <div id="content">
      <h3>flac_resolver.liq</h3>
      <pre>if test_process("which metaflac") then
  log(level=3,"Found metaflac binary: \
               enabling flac external metadata resolver.")
  def flac_meta(file)
    ret = get_process_lines("metaflac --export-tags-to=- \
                            #{quote(file)} 2>/dev/null")
    ret = list.map(string.split(separator="="),ret)
    # Could be made better..
    def f(l',l)=
      if list.length(l) >= 2 then
        list.append([(list.hd(l),list.nth(l,1))],l')
      else
        if list.length(l) >= 1 then
          list.append([(list.hd(l),"")],l')
        else
          l'
        end
      end
    end
  list.fold(f,[],ret)
  end
  add_metadata_resolver("FLAC",flac_meta)
end
</pre>      <a href="flac_resolver.liq">Download</a>
    </div>
    <div>
      <div id="footer"> 2003-2013 Savonet team</div>
    </div>
  </div>
</body>
</html>