summaryrefslogtreecommitdiff
path: root/data/domain/lists.osxml
diff options
context:
space:
mode:
authorBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2015-03-01 20:47:25 +0100
committerBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2015-03-01 20:47:25 +0100
commita7019614896fdd3e29b9a28f6a8cfd2c1b365983 (patch)
tree8a9f102649e88ebf24de0a07cf5f348804a6212d /data/domain/lists.osxml
parent0d4ce5c555a1ba3a87cb9a1e350854eda7a243e1 (diff)
Renamed domain to ontology.
Diffstat (limited to 'data/domain/lists.osxml')
-rw-r--r--data/domain/lists.osxml26
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>