Skip to content
This repository has been archived by the owner on Jan 21, 2021. It is now read-only.

Commit

Permalink
Convert a bunch of <vocabulary /> directives to <utility />, with the…
Browse files Browse the repository at this point in the history
… necessary

(minor) changes to the vocabulary components themselves.
  • Loading branch information
philikon committed Feb 27, 2006
0 parents commit fcdcc10
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
8 changes: 8 additions & 0 deletions configure.zcml
@@ -0,0 +1,8 @@
<configure xmlns="http://namespaces.zope.org/zope">

<utility
component=".vocabulary.ObjectInterfacesVocabulary"
name="Object Interfaces"
/>

</configure>
63 changes: 63 additions & 0 deletions vocabulary.py
@@ -0,0 +1,63 @@
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Vocabulary that provides a list of all interfaces its context provides.
$Id$
"""
__docformat__ = 'restructuredtext'

from zope.interface import classProvides, providedBy
from zope.security.proxy import removeSecurityProxy
from zope.schema.vocabulary import SimpleVocabulary, SimpleTerm
from zope.app.component.interface import interfaceToName
from zope.app.schema.interfaces import IVocabularyFactory


class ObjectInterfacesVocabulary(SimpleVocabulary):
"""A vocabulary that provides a list of all interfaces that its context
provides.
Here a quick demonstration:
>>> from zope.interface import Interface, implements
>>> class I1(Interface):
... pass
>>> class I2(Interface):
... pass
>>> class I3(I2):
... pass
>>> class Object(object):
... implements(I3, I1)
>>> vocab = ObjectInterfacesVocabulary(Object())
>>> import pprint
>>> names = [term.token for term in vocab]
>>> names.sort()
>>> pprint.pprint(names)
['zope.app.interface.vocabulary.I1',
'zope.app.interface.vocabulary.I2',
'zope.app.interface.vocabulary.I3',
'zope.interface.Interface']
"""
classProvides(IVocabularyFactory)

def __init__(self, context):
# Remove the security proxy so the values from the vocabulary
# are the actual interfaces and not proxies.
component = removeSecurityProxy(context)
interfaces = providedBy(component).flattened()
terms = [SimpleTerm(interface, interfaceToName(context, interface))
for interface in interfaces]
super(ObjectInterfacesVocabulary, self).__init__(terms)

0 comments on commit fcdcc10

Please sign in to comment.