/usr/share/pyshared/zope/publisher/configure.txt is in python-zope.publisher 3.12.6-2ubuntu1.
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 | Package configuration
=====================
The ``zope.publisher`` package provides a ZCML file that configures some
adapters and security:
>>> from zope.configuration.xmlconfig import XMLConfig
>>> import zope.publisher
>>> XMLConfig('configure.zcml', zope.publisher)()
>>> len(list(zope.component.getGlobalSiteManager().registeredUtilities()))
22
>>> len(list(zope.component.getGlobalSiteManager().registeredAdapters()))
11
|