[Zope3-checkins] CVS: Zope3/src/zope/app/interpreter - configure.zcml:1.3

Stephan Richter srichter at cosmos.phy.tufts.edu
Tue Mar 2 10:49:40 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/interpreter
In directory cvs.zope.org:/tmp/cvs-serv5665/src/zope/app/interpreter

Modified Files:
	configure.zcml 
Log Message:


Made python interpreter a utiltiy.




=== Zope3/src/zope/app/interpreter/configure.zcml 1.2 => 1.3 ===
--- Zope3/src/zope/app/interpreter/configure.zcml:1.2	Thu Aug 21 10:19:24 2003
+++ Zope3/src/zope/app/interpreter/configure.zcml	Tue Mar  2 10:49:38 2004
@@ -1,18 +1,9 @@
 <configure 
-    xmlns="http://namespaces.zope.org/zope"
-    xmlns:code="http://namespaces.zope.org/code">
+    xmlns="http://namespaces.zope.org/zope">
 
-  <serviceType 
-      id="Interpreter" 
-      interface="zope.app.interfaces.interpreter.IInterpreterService" />
-
-  <service 
-      serviceType="Interpreter" 
-      component="zope.app.interpreter.interpreterService" />
-
-
-  <code:registerInterpreter
-      type="text/server-python"
-      component=".python.PythonInterpreter" />
+  <utility
+      provides=".interfaces.IInterpreter"
+      component=".python.PythonInterpreter"
+      name="text/server-python" />
 
 </configure>




More information about the Zope3-Checkins mailing list