[Zope3-checkins] CVS: Zope3/src/zope/app/tests - setup.py:1.22
test_clipboard.py:1.13 test_dependable.py:1.6
annotations.py:NONE test_attributeannotations.py:NONE
Stephan Richter
srichter at cosmos.phy.tufts.edu
Sat Mar 13 18:01:45 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/tests
In directory cvs.zope.org:/tmp/cvs-serv24548/src/zope/app/tests
Modified Files:
setup.py test_clipboard.py test_dependable.py
Removed Files:
annotations.py test_attributeannotations.py
Log Message:
Created annotation package in zope.app.
Moved annotation interfaces to zope.app.annotation.interfaces.
Moved attributeannotations to zope.app.annotation.attribute.
=== Zope3/src/zope/app/tests/setup.py 1.21 => 1.22 ===
--- Zope3/src/zope/app/tests/setup.py:1.21 Sat Mar 13 17:02:09 2004
+++ Zope3/src/zope/app/tests/setup.py Sat Mar 13 18:01:14 2004
@@ -23,9 +23,9 @@
#------------------------------------------------------------------------
# Annotations
-from zope.app.attributeannotations import AttributeAnnotations
-from zope.app.interfaces.annotation import IAnnotations
-from zope.app.interfaces.annotation import IAttributeAnnotatable
+from zope.app.annotation.attribute import AttributeAnnotations
+from zope.app.annotation.interfaces import IAnnotations
+from zope.app.annotation.interfaces import IAttributeAnnotatable
def setUpAnnotations():
ztapi.provideAdapter(IAttributeAnnotatable, IAnnotations,
AttributeAnnotations)
=== Zope3/src/zope/app/tests/test_clipboard.py 1.12 => 1.13 ===
--- Zope3/src/zope/app/tests/test_clipboard.py:1.12 Sat Mar 13 13:44:53 2004
+++ Zope3/src/zope/app/tests/test_clipboard.py Sat Mar 13 18:01:14 2004
@@ -21,7 +21,7 @@
from zope.app.tests import ztapi
from zope.app.principalannotation import PrincipalAnnotationService
from zope.app.principalannotation.interfaces import IPrincipalAnnotationService
-from zope.app.interfaces.annotation import IAnnotations
+from zope.app.annotation.interfaces import IAnnotations
from zope.app.copypastemove.interfaces import IPrincipalClipboard
from zope.app.copypastemove import PrincipalClipboard
=== Zope3/src/zope/app/tests/test_dependable.py 1.5 => 1.6 ===
--- Zope3/src/zope/app/tests/test_dependable.py:1.5 Sat Mar 13 17:02:09 2004
+++ Zope3/src/zope/app/tests/test_dependable.py Sat Mar 13 18:01:14 2004
@@ -17,7 +17,7 @@
"""
from unittest import TestCase, TestSuite, main, makeSuite
-from zope.app.attributeannotations import AttributeAnnotations
+from zope.app.annotation.attribute import AttributeAnnotations
from zope.app.tests.placelesssetup import PlacelessSetup
class C:
=== Removed File Zope3/src/zope/app/tests/annotations.py ===
=== Removed File Zope3/src/zope/app/tests/test_attributeannotations.py ===
More information about the Zope3-Checkins
mailing list