First page Back Continue Last page Overview Graphics
Extending Section Types
Sectiontypes may extend existing sectiontypes:
<schema prefix=”ZODB.config”>
<abstracttype name=”ZODB.storage”/>
<sectiontype name=”filestorage”
datatype=”.FileStorage” implements=”ZODB.storage”>
<key name=”path” required=”yes”/>
</sectiontype>
<sectiontype name=”newshinyfilestorage”
datatype=”.NFileStorage” implements=”ZODB.storage” extends=”filestorage”/>
</schema>
Notes: