This file is indexed.

/usr/share/pyshared/zope/app/container/browser/commontasks.pt is in python-zope.app.container 3.9.2-0ubuntu1.

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
<tal:block define="addingInfo context/@@+/addingInfo|nothing"
           condition="addingInfo">

  <tal:block repeat="info addingInfo"
    define="namesRequired context/@@+/nameAllowed">
    <div tal:define="oddrow repeat/info/odd;
                     has_custom_add_view python:'has_custom_add_view' in info"
        tal:attributes="class python:oddrow and 'content even' or 'content odd'"
        class="even">
      <a href="#"
        tal:define="baseurl python:request.getURL(1)"
        tal:condition="python: not info['action'].startswith('../')
                               and namesRequired and not has_custom_add_view"
        tal:attributes="
          href string:${baseurl}/@@contents.html?type_name=${info/action};
          class info/selected"
        tal:content="info/title">Folder
      </a>

      <a href="#"
        tal:define="baseurl python:request.getURL(1)"
        tal:condition="python: not info['action'].startswith('../')
                   and (has_custom_add_view or not namesRequired)"
        tal:attributes="
          href string:${baseurl}/@@+/action.html?type_name=${info/action};
          class info/selected"
        tal:content="info/title">Folder
      </a>

      <a href="#"
        tal:define="baseurl python:request.getURL(1)"
        tal:condition="python: info['action'].startswith('../')"
        tal:attributes="
          href python: info['action'][3:];
          class info/selected"
        tal:content="info/title">Folder
      </a>
    </div>
  </tal:block>
</tal:block>