This file is indexed.

/usr/share/pyshared/tracrpc/templates/rpc.html is in trac-xmlrpc 1.1.2+r10706-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
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
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:py="http://genshi.edgewall.org/"
      xmlns:xi="http://www.w3.org/2001/XInclude">
  <xi:include href="layout.html" />
  <xi:include href="macros.html" />
  <head>
    <title>Remote Procedure Call (RPC)</title>
  </head>
  
  <body>
    <div id="content" class="wiki">
      <div class="wikipage searchable">
        <h1>Remote Procedure Call (RPC)</h1>
        <p><strong>Installed API version :</strong> ${rpc.version} </p>
        <h2 id="Protocols">Protocol reference:</h2>
        <p>Below you will find a detailed description of all the RPC 
          protocols installed in this environment. This includes 
          supported content types as well as target URLs for 
          anonymous and authenticated access. Use this 
          information to interact with this environment from 
          a remote location.
        </p>
        <p>Libraries for remote procedure calls and parsing exists
          for most major languages and platforms - use a tested, standard library
          for consistent results.</p>
        <dl py:for="protocol in rpc.protocols">
          <h3 id="${protocol[0]}">${protocol[0]}</h3>
          <dd>
            <p>For ${protocol[0]} protocol, use any one of:</p>
            <ul>
              <li py:for="ct, _ct_group in groupby(protocol[2], lambda (_, x) : x)">
                <tt>{'Content-Type': '$ct'}</tt> header with request to:
                <py:with vars="ct_group = list(_ct_group)">
                  <ul>
                    <li py:for="h, _ in ct_group">
                      <a href="${req.abs_href(h)}">${req.abs_href(h)}</a> 
                      for anonymous access
                    </li>
                    <li py:for="h, _ in ct_group">
                      <a href="${req.abs_href.login(h)}">${req.abs_href.login(h)}</a>
                      for authenticated access
                    </li>
                  </ul>
                </py:with>
              </li>
            </ul>
          <div>
            ${wiki_to_html(context, expand_docs(protocol[1], locals()['__data__']))}
          </div>
          </dd>
        </dl>
  
        <h2 id="Methods">RPC exported functions</h2>
  
        <div id="searchable">
          <dl py:for="key in sorted(rpc.functions)" py:with="namespace = rpc.functions[key]">
            <h3 id="${'rpc.' + to_unicode(namespace.namespace)}">
              ${namespace.namespace} - ${namespace.description}
            </h3>
            <dd>
              <table class="listing tickets">
                <thead>
                  <tr>
                    <th style="width:40%">Function</th>
                    <th style="width:45%">Description</th>
                    <th style="width:15%">Permission required</th>
                  </tr>
                </thead>
                <tbody py:for="idx, function in enumerate(namespace.methods)">
                  <tr class="${'color3-' + (idx % 2 == 0 and 'even' or 'odd')}">
                    <td style="padding-left:4em;text-indent:-4em">${function[0]}</td>
                    <td>${function[1]}</td>
                    <td>${function[2] or "By resource"}</td>
                  </tr>
                </tbody>
              </table>
            </dd>
          </dl>
        </div>
      </div>
    </div>
  </body>
</html>