[Zope3-checkins] CVS: Zope3/src/zope/app/fssync - configure.zcml:1.1.2.2 meta.zcml:1.1.2.2
Guido van Rossum
guido@python.org
Thu, 1 May 2003 16:45:03 -0400
Update of /cvs-repository/Zope3/src/zope/app/fssync
In directory cvs.zope.org:/tmp/cvs-serv10143/app/fssync
Modified Files:
Tag: fssync-branch
configure.zcml meta.zcml
Log Message:
fssync ZCML is now up to snuff; 'make run' works.
=== Zope3/src/zope/app/fssync/configure.zcml 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/fssync/configure.zcml:1.1.2.1 Thu May 1 16:13:19 2003
+++ Zope3/src/zope/app/fssync/configure.zcml Thu May 1 16:45:02 2003
@@ -1,18 +1,20 @@
-<zopeConfigure xmlns="http://namespaces.zope.org/zope"
-xmlns:FSSync="http://namespaces.zope/org/FSSync"
->
+<zopeConfigure xmlns="http://namespaces.zope.org/zope">
- <serviceType id='FSRegistryService'
- interface='.IGlobalFSSyncService.' />
-
- <service serviceType='FSRegistryService'
- component='.FSRegistry.fsRegistry' />
+ <serviceType
+ id="FSRegistryService"
+ interface="zope.app.interfaces.fssync.IGlobalFSSyncService"
+ />
+
+ <service
+ serviceType="FSRegistryService"
+ component="zope.app.fssync.fsregistry.fsRegistry"
+ />
<view
- factory = ".AddView."
- for = "Zope.App.FSSync.IContentDirectory."
- type = "Zope.App.FSSync.IFSAddView."
- name = "."
- />
+ factory="zope.app.fssync.classes.AddView"
+ for="zope.app.interfaces.fssync.IContentDirectory"
+ type="zope.app.interfaces.fssync.IFSAddView"
+ name="."
+ />
</zopeConfigure>
=== Zope3/src/zope/app/fssync/meta.zcml 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/fssync/meta.zcml:1.1.2.1 Thu May 1 16:13:19 2003
+++ Zope3/src/zope/app/fssync/meta.zcml Thu May 1 16:45:02 2003
@@ -1,9 +1,13 @@
<zopeConfigure xmlns='http://namespaces.zope.org/zope'>
- <directives namespace="http://namespaces.zope.org/FSSync">
- <directive name="adapter"
- attributes="class_ factory"
- handler=".FSDirective.registerFSRegistry"/>
+ <directives namespace="http://namespaces.zope.org/fssync">
+
+ <directive
+ name="adapter"
+ attributes="class_ factory"
+ handler=".fsdirective.registerFSRegistry"
+ />
+
</directives>
</zopeConfigure>