[Zope-Checkins] CVS: Packages/ZConfig/tests/library/thing - component.xml:1.2

Fred L. Drake, Jr. fred@zope.com
Thu, 9 Jan 2003 00:43:06 -0500


Update of /cvs-repository/Packages/ZConfig/tests/library/thing
In directory cvs.zope.org:/tmp/cvs-serv29797/tests/library/thing

Modified Files:
	component.xml 
Log Message:
Change some naming based on a discussion with Chris and Shane; the primary
intent being to make this easier to explain.

- <sectiongroup type="foo"/> becomes <abstracttype name="foo"/>
- <sectiontype type="foo"/> becomes <sectiontype name="foo"/>
- <sectiontype ... group="foo"/> becomes <sectiontype ... implements="foo"/>
- several internal names get changed to use names consistent with the
  new terminology


=== Packages/ZConfig/tests/library/thing/component.xml 1.1 => 1.2 ===
--- Packages/ZConfig/tests/library/thing/component.xml:1.1	Tue Jan  7 15:02:39 2003
+++ Packages/ZConfig/tests/library/thing/component.xml	Thu Jan  9 00:42:34 2003
@@ -1,11 +1,10 @@
 <?xml version="1.0" encoding="us-ascii"?>
 <component>
-  <sectiongroup type='thing'>
-    <sectiontype type='thing-a'>
-      <key name='thing-a-key' default='thing-a-default'/>
-    </sectiontype>
-    <sectiontype type='thing-b'>
-      <key name='thing-b-key' default='thing-b-default'/>
-    </sectiontype>
-  </sectiongroup>
+  <abstracttype name='thing'/>
+  <sectiontype name='thing-a' implements='thing'>
+    <key name='thing-a-key' default='thing-a-default'/>
+  </sectiontype>
+  <sectiontype name='thing-b' implements='thing'>
+    <key name='thing-b-key' default='thing-b-default'/>
+  </sectiontype>
 </component>