[Zope3-checkins] CVS: Zope3/src/zope/app/publisher/xmlrpc/tests - test_directives.py:1.8.12.1

Jim Fulton cvs-admin at zope.org
Sun Nov 9 11:08:56 EST 2003


Update of /cvs-repository/Zope3/src/zope/app/publisher/xmlrpc/tests
In directory cvs.zope.org:/tmp/cvs-serv15349/src/zope/app/publisher/xmlrpc/tests

Modified Files:
      Tag: adaptergeddon-branch
	test_directives.py 
Log Message:
Created a global presentation service that replaces the 
global view, resource, and skin services.

Now look up presentation components by adapting from a request type,
rather than adapting to a presentation type.





=== Zope3/src/zope/app/publisher/xmlrpc/tests/test_directives.py 1.8 => 1.8.12.1 ===
--- Zope3/src/zope/app/publisher/xmlrpc/tests/test_directives.py:1.8	Sun Aug 17 02:07:42 2003
+++ Zope3/src/zope/app/publisher/xmlrpc/tests/test_directives.py	Sun Nov  9 11:08:25 2003
@@ -26,13 +26,13 @@
 
 from zope.component.tests.request import Request
 
-from zope.publisher.interfaces.xmlrpc import IXMLRPCPresentation
+from zope.publisher.interfaces.xmlrpc import IXMLRPCRequest
 
 from zope.app.publisher import xmlrpc
 from zope.interface import implements
 
 
-request = Request(IXMLRPCPresentation)
+request = Request(IXMLRPCRequest)
 
 class Ob:
     implements(IC)




More information about the Zope3-Checkins mailing list