This file is indexed.

/usr/share/pyshared/zope/app/pagetemplate/configure.zcml is in python-zope.app.pagetemplate 3.11.2-0ubuntu4.

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
<configure xmlns="http://namespaces.zope.org/zope">

  <include package="zope.browserpage" />

  <adapter
      for="*"
      provides="zope.traversing.interfaces.IPathAdapter"
      factory=".talesapi.ZopeTalesAPI"
      name="zope"
      />

  <class class=".talesapi.ZopeTalesAPI">
    <allow interface="zope.tales.interfaces.ITALESFunctionNamespace"/>
    <allow attributes="title description created modified name title_or_name size"/>
  </class>

  <adapter
      for="*"
      provides="zope.traversing.interfaces.IPathAdapter"
      factory=".urlquote.URLQuote"
      name="url"/>

  <class class=".urlquote.URLQuote">
    <allow attributes="quote quote_plus unquote unquote_plus"/>
  </class>

 <class class="zope.tales.tales.Iterator">
    <allow interface="zope.tales.interfaces.ITALESIterator" />
 </class>

 <class class="zope.pagetemplate.engine.ZopePathExpr">
    <allow attributes="__call__" />
 </class>
 <class class="zope.pagetemplate.engine.TrustedZopePathExpr">
    <allow attributes="__call__" />
 </class>
 <class class="zope.pagetemplate.engine.ZopePythonExpr">
    <allow attributes="__call__" />
 </class>
 <class class="zope.pagetemplate.engine.PythonExpr">
    <allow attributes="__call__" />
 </class>

 <class class="zope.tales.expressions.StringExpr">
    <allow attributes="__call__" />
 </class>
 <class class="zope.tales.expressions.NotExpr">
    <allow attributes="__call__" />
 </class>
 <class class="zope.tales.expressions.DeferExpr">
    <allow attributes="__call__" />
 </class>

</configure>