This file is indexed.

/usr/share/pyshared/zope/formlib/sequencewidget.pt is in python-zope.formlib 4.0.5-0ubuntu5.

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
<table border="0" class="sequencewidget"
  i18n:domain="zope">
  <tr tal:repeat="widget view/widgets">
    <td>
      <input class="editcheck" type="checkbox"
             tal:attributes="
                 name string:${view/name}.remove_${repeat/widget/index}"
             tal:condition="view/need_delete" />
    </td>
    <td>
      <span tal:define="error widget/error"
            tal:replace="structure error" tal:condition="error" />
      <input tal:replace="structure widget" />
    </td>
  </tr>
  <tr>
    <td colspan="2">
      <input type="submit" value="Remove selected items"
             tal:condition="view/need_delete"
             tal:attributes="name string:${view/name}.remove"
             i18n:attributes="value remove-selected-items" />
      <input type="submit" value="Add foo"
             tal:condition="view/need_add"
             tal:attributes="name string:${view/name}.add;
                             value view/addButtonLabel" />
    </td>
  </tr>
</table>
<input tal:replace="structure view/marker" />