[Checkins] SVN: zc.ngi/trunk/src/zc/ngi/old.test Fixed up some references to older interfaces.

Jim Fulton jim at zope.com
Tue Jul 6 18:03:11 EDT 2010


Log message for revision 114272:
  Fixed up some references to older interfaces.
  

Changed:
  U   zc.ngi/trunk/src/zc/ngi/old.test

-=-
Modified: zc.ngi/trunk/src/zc/ngi/old.test
===================================================================
--- zc.ngi/trunk/src/zc/ngi/old.test	2010-07-06 20:19:48 UTC (rev 114271)
+++ zc.ngi/trunk/src/zc/ngi/old.test	2010-07-06 22:03:11 UTC (rev 114272)
@@ -56,8 +56,8 @@
 
     >>> import zc.ngi.testing
 
-The testing module provides IConnection, IConnector, and IListener
-implementations. We'll use this below to illustrate how application code
+The testing module provides an IImplementation
+implementation. We'll use this below to illustrate how application code
 is written.
 
 Implementing Network Clients
@@ -65,8 +65,8 @@
 
 Network clients make connections to and then use these connections to
 communicate with servers.  To do so, a client must be provided with an
-IConnector implementation.  How this happens is outside the scope of
-the NGI.  An IConnector implementation could, for example, be provided
+IImplementation implementation.  How this happens is outside the scope of
+the NGI.  An IImplementation implementation could, for example, be provided
 via the Zope component architecture, or via pkg_resources entry
 points.
 
@@ -241,7 +241,7 @@
     ...     def handle_close(self, connection, reason):
     ...         print 'server closed:', reason
 
-Our EchoServer *class* provides IServer and implements IInputHandler.
+Our EchoServer *class* provides IServer and implements IConnectionHandler.
 
 To use a server, we need a listener.  We'll use the use the testing
 listener:



More information about the checkins mailing list