/usr/share/pyshared/zope/componentvocabulary/configure.zcml is in python-zope.componentvocabulary 1.0.1-0ubuntu3.
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 | <configure xmlns="http://namespaces.zope.org/zope">
<!-- the 'Interfaces' vocabulary below requires a registred IInterface -->
<interface
interface="zope.interface.interfaces.IInterface"
/>
<!-- Vocabularies -->
<utility
component=".vocabulary.InterfacesVocabulary"
name="Interfaces"
/>
<utility
component=".vocabulary.ObjectInterfacesVocabulary"
name="Object Interfaces"
/>
<utility
component=".vocabulary.UtilityComponentInterfacesVocabulary"
provides="zope.schema.interfaces.IVocabularyFactory"
name="Utility Component Interfaces"
/>
</configure>
|