This file is indexed.

/usr/share/doc/python-werkzeug-doc/examples/simplewiki/templates/macros.xml is in python-werkzeug-doc 0.14.1+dfsg1-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
<div xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://genshi.edgewall.org/"
     py:strip="">
  
  <py:def function="render_pagination(pagination)">
    <div class="pagination" py:if="pagination.pages > 1">
      <py:choose test="pagination.has_previous">
        <a href="${pagination.previous}" py:when="True">&laquo; Previous</a>
        <span class="inactive" py:when="False">&laquo; Previous</span>
      </py:choose>
      | <span class="active">${pagination.page}</span> |
      <py:choose test="pagination.has_next">
        <a href="${pagination.next}" py:when="True">Next &raquo;</a>
        <span class="inactive" py:when="False">Next &raquo;</span>
      </py:choose>
    </div>
  </py:def>

</div>