/usr/share/pyshared/schooltool/devmode/overrides.zcml is in python-schooltool 1:2.1.0-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 | <configure
xmlns="http://namespaces.zope.org/zope"
xmlns:security="http://schooltool.org/securitypolicy"
xmlns:browser="http://namespaces.zope.org/browser">
<subscriber
handler=".skin.schoolToolTraverseSubscriber"
for="zope.traversing.interfaces.IBeforeTraverseEvent"
/>
<!-- apidoc overriding -->
<configure xmlns:zcml="http://namespaces.zope.org/zcml"
zcml:condition="have apidoc">
<view
name="apidoc" type="*"
provides="zope.traversing.interfaces.ITraversable" for="*"
factory=".apidoc.schooltoolApidocNamespace"
/>
<adapter
name="apidoc"
provides="zope.traversing.interfaces.ITraversable" for="*"
factory=".apidoc.schooltoolApidocNamespace"
/>
</configure>
<browser:page
for="zope.security.interfaces.IUnauthorized"
name="index.html"
layer="schooltool.skin.ISchoolToolLayer"
class="schooltool.devmode.devmode.DebugUnauthorized"
permission="zope.Public"
/>
<securityPolicy
component=".devmode.DebugSecurityPolicy" />
</configure>
|