diff options
Diffstat (limited to 'data/domain/lists.osxml')
-rw-r--r-- | data/domain/lists.osxml | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/data/domain/lists.osxml b/data/domain/lists.osxml deleted file mode 100644 index 66e77cb..0000000 --- a/data/domain/lists.osxml +++ /dev/null @@ -1,26 +0,0 @@ -<?xml version="1.0"?> -<domain name="lists"> - <import rel="domain" src="book"/> - - <struct name="ul" isa="book.paragraph"> - <!-- Here we solve the problem of parents using the isa - mechanism, because a list may occur whereever a paragraph - may occur. However we do want to override the default field. --> - <field> - <childRef name="item"/> - </field> - </struct> - <struct name="ol" isa="book.paragraph"> - <!-- Here we solve the problem of parents using the isa - mechanism, because a list may occur whereever a paragraph - may occur. However we do want to override the default field. --> - <field> - <childRef name="item"/> - </field> - </struct> - <struct name="item"> - <field> - <childRef name="book.paragaph"/> - </field> - </struct> -</domain> |