[Zodb-checkins] CVS: ZODB3/ZConfig/tests/library/widget - component.xml:1.3

Fred L. Drake, Jr. fred@zope.com
Thu, 16 Jan 2003 12:34:16 -0500


Update of /cvs-repository/ZODB3/ZConfig/tests/library/widget
In directory cvs.zope.org:/tmp/cvs-serv24726/ZConfig/tests/library/widget

Modified Files:
	component.xml 
Log Message:
Bug fix: Schema components should always be allowed to extend types defined
within the same component.  (A single table entry was not being made when
parsing a component.)


=== ZODB3/ZConfig/tests/library/widget/component.xml 1.2 => 1.3 ===
--- ZODB3/ZConfig/tests/library/widget/component.xml:1.2	Thu Jan  9 00:42:36 2003
+++ ZODB3/ZConfig/tests/library/widget/component.xml	Thu Jan 16 12:34:13 2003
@@ -1,5 +1,7 @@
 <component>
-  <sectiontype name='widget-a'>
+  <abstracttype name='widget'/>
+  <sectiontype name='widget-a' implements='widget'>
     <key name='widget-a-key' default='widget-a-default'/>
   </sectiontype>
+  <sectiontype name='widget-b' implements='widget' extends='widget-a'/>
 </component>