eliminate Zope 3.3 deprecation messages from loops tests
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1587 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
1ffe581a37
commit
315076a575
5 changed files with 20 additions and 20 deletions
|
@ -23,8 +23,8 @@ $Id$
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from zope.app import zapi
|
from zope.app import zapi
|
||||||
from zope.app.annotation.interfaces import IAttributeAnnotatable, IAnnotations
|
from zope.annotation.interfaces import IAttributeAnnotatable, IAnnotations
|
||||||
from zope.app.annotation.attribute import AttributeAnnotations
|
from zope.annotation.attribute import AttributeAnnotations
|
||||||
from zope.cachedescriptors.property import Lazy
|
from zope.cachedescriptors.property import Lazy
|
||||||
from zope.interface import Interface, Attribute, implements
|
from zope.interface import Interface, Attribute, implements
|
||||||
from zope.component import adapts
|
from zope.component import adapts
|
||||||
|
|
|
@ -25,7 +25,7 @@ $Id$
|
||||||
from zope import component
|
from zope import component
|
||||||
from zope.interface import Interface, implements
|
from zope.interface import Interface, implements
|
||||||
from zope.cachedescriptors.property import Lazy
|
from zope.cachedescriptors.property import Lazy
|
||||||
from zope.publisher.interfaces.browser import ISkin
|
from zope.publisher.interfaces.browser import IBrowserSkinType
|
||||||
from zope.app.pagetemplate import ViewPageTemplateFile
|
from zope.app.pagetemplate import ViewPageTemplateFile
|
||||||
|
|
||||||
|
|
||||||
|
@ -108,7 +108,7 @@ class GenericView(object):
|
||||||
def setSkin(self, skinName):
|
def setSkin(self, skinName):
|
||||||
skin = None
|
skin = None
|
||||||
if skinName:
|
if skinName:
|
||||||
skin = component.queryUtility(ISkin, skinName)
|
skin = component.queryUtility(IBrowserSkinType, skinName)
|
||||||
if skin:
|
if skin:
|
||||||
applySkin(self.request, skin)
|
applySkin(self.request, skin)
|
||||||
self.skin = skin
|
self.skin = skin
|
||||||
|
|
|
@ -23,7 +23,7 @@ $Id$
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from zope.interface import Interface, Attribute
|
from zope.interface import Interface, Attribute
|
||||||
from zope.app.event.interfaces import IObjectEvent
|
from zope.component.interfaces import IObjectEvent
|
||||||
|
|
||||||
|
|
||||||
# relation interfaces
|
# relation interfaces
|
||||||
|
@ -31,7 +31,7 @@ from zope.app.event.interfaces import IObjectEvent
|
||||||
class IRelation(Interface):
|
class IRelation(Interface):
|
||||||
""" Base interface for relations.
|
""" Base interface for relations.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def getPredicateName():
|
def getPredicateName():
|
||||||
""" Return the predicate of this relation as a string that may be
|
""" Return the predicate of this relation as a string that may be
|
||||||
used for indexing.
|
used for indexing.
|
||||||
|
@ -41,7 +41,7 @@ class IRelation(Interface):
|
||||||
""" Return True if this relation is valid.
|
""" Return True if this relation is valid.
|
||||||
|
|
||||||
If the registry argument is provided the check should be done
|
If the registry argument is provided the check should be done
|
||||||
with respect to this relation registry, e.g. to
|
with respect to this relation registry, e.g. to
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
@ -54,8 +54,8 @@ class IMonadicRelation(IRelation):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
first = Attribute('First and only object that belongs to the relation.')
|
first = Attribute('First and only object that belongs to the relation.')
|
||||||
|
|
||||||
|
|
||||||
class IDyadicRelation(IRelation):
|
class IDyadicRelation(IRelation):
|
||||||
""" Relation connecting two objects.
|
""" Relation connecting two objects.
|
||||||
"""
|
"""
|
||||||
|
@ -63,11 +63,11 @@ class IDyadicRelation(IRelation):
|
||||||
first = Attribute('First object that belongs to the relation.')
|
first = Attribute('First object that belongs to the relation.')
|
||||||
second = Attribute('Second object that belongs to the relation.')
|
second = Attribute('Second object that belongs to the relation.')
|
||||||
|
|
||||||
|
|
||||||
class ITriadicRelation(IDyadicRelation):
|
class ITriadicRelation(IDyadicRelation):
|
||||||
""" Relation connecting three objects.
|
""" Relation connecting three objects.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
third = Attribute('Third object that belongs to the relation.')
|
third = Attribute('Third object that belongs to the relation.')
|
||||||
|
|
||||||
|
|
||||||
|
@ -90,14 +90,14 @@ class IAttributeRelation(IDyadicRelation):
|
||||||
|
|
||||||
class IPredicate(Interface):
|
class IPredicate(Interface):
|
||||||
""" A predicate signifies a relationship. This may be implemented
|
""" A predicate signifies a relationship. This may be implemented
|
||||||
directly as a relation class, or the relation object may
|
directly as a relation class, or the relation object may
|
||||||
hold the predicate as an attribute.
|
hold the predicate as an attribute.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def getPredicateName():
|
def getPredicateName():
|
||||||
""" Return this predicate as a string that may be used for indexing.
|
""" Return this predicate as a string that may be used for indexing.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
# event interfaces
|
# event interfaces
|
||||||
|
|
||||||
|
@ -117,7 +117,7 @@ class IRelatable(Interface):
|
||||||
|
|
||||||
|
|
||||||
# relation registry interfaces
|
# relation registry interfaces
|
||||||
|
|
||||||
class IRelationRegistryUpdate(Interface):
|
class IRelationRegistryUpdate(Interface):
|
||||||
""" Interface for registering and unregistering relations with a
|
""" Interface for registering and unregistering relations with a
|
||||||
relation registry.
|
relation registry.
|
||||||
|
@ -148,7 +148,7 @@ class IRelationRegistryQuery(Interface):
|
||||||
search criteria, i.e. its predicate and first, second or third
|
search criteria, i.e. its predicate and first, second or third
|
||||||
attribute will be used for searching, or explicit criteria
|
attribute will be used for searching, or explicit criteria
|
||||||
via keyword arguments.
|
via keyword arguments.
|
||||||
|
|
||||||
Example for using keyword criteria:
|
Example for using keyword criteria:
|
||||||
rr.queryRelations(first=someObject, second=anotherObject,
|
rr.queryRelations(first=someObject, second=anotherObject,
|
||||||
relationship=SomeRelationClass)
|
relationship=SomeRelationClass)
|
||||||
|
|
|
@ -30,9 +30,9 @@ from zope.app import zapi
|
||||||
from zope.app.catalog.catalog import Catalog
|
from zope.app.catalog.catalog import Catalog
|
||||||
from zope.app.catalog.field import FieldIndex
|
from zope.app.catalog.field import FieldIndex
|
||||||
from zope.app.intid.interfaces import IIntIds
|
from zope.app.intid.interfaces import IIntIds
|
||||||
from zope.app.location.interfaces import ILocation
|
from zope.location.interfaces import ILocation
|
||||||
from zope.event import notify
|
from zope.event import notify
|
||||||
from zope.app.event.objectevent import ObjectEvent
|
from zope.component.interfaces import ObjectEvent
|
||||||
from zope.security.proxy import removeSecurityProxy
|
from zope.security.proxy import removeSecurityProxy
|
||||||
|
|
||||||
from interfaces import IRelationRegistry, IRelationInvalidatedEvent
|
from interfaces import IRelationRegistry, IRelationInvalidatedEvent
|
||||||
|
@ -198,7 +198,7 @@ def getRelations(first=None, second=None, third=None, relationships=None):
|
||||||
The relationships parameter expects a sequence of relationships
|
The relationships parameter expects a sequence of relationships
|
||||||
(relation classes or predicate objects).
|
(relation classes or predicate objects).
|
||||||
"""
|
"""
|
||||||
registry = zapi.getUtility(IRelationRegistry)
|
registry = component.getUtility(IRelationRegistry)
|
||||||
query = {}
|
query = {}
|
||||||
if first is not None: query['first'] = first
|
if first is not None: query['first'] = first
|
||||||
if second is not None: query['second'] = second
|
if second is not None: query['second'] = second
|
||||||
|
|
|
@ -38,6 +38,6 @@ class IExternalStorage(Interface):
|
||||||
def getData(address, params=None):
|
def getData(address, params=None):
|
||||||
""" Retrieve the data from the address specified, using the
|
""" Retrieve the data from the address specified, using the
|
||||||
(optional) params argument that may give more information on
|
(optional) params argument that may give more information on
|
||||||
where and how to the data can be found.
|
where and how the data can be found.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue