summaryrefslogtreecommitdiff
path: root/testdata/integration/osxml/comments_ontology.osxml
diff options
context:
space:
mode:
authorBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2015-04-08 13:02:23 +0200
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2016-04-25 22:19:33 +0200
commit9d04fb897ffca7db1c6030125198345b2203e858 (patch)
treecdf212273ca5aecf1e88b5e77de09f6510f15e6e /testdata/integration/osxml/comments_ontology.osxml
parentea75789a02ed70d0cfa131ec615e2776f605d7dc (diff)
renamed the osxml integration folder to domain_interaction because that seemed semantically more fitting.
Diffstat (limited to 'testdata/integration/osxml/comments_ontology.osxml')
-rw-r--r--testdata/integration/osxml/comments_ontology.osxml40
1 files changed, 0 insertions, 40 deletions
diff --git a/testdata/integration/osxml/comments_ontology.osxml b/testdata/integration/osxml/comments_ontology.osxml
deleted file mode 100644
index 34185d8..0000000
--- a/testdata/integration/osxml/comments_ontology.osxml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" standalone="yes"?>
-<ontology name="comments">
- <import rel="ontology" src="./book_ontology.osxml"/>
-
- <!-- an annotation comment -->
- <annotation name="comment">
- <field name="replies" subtree="true">
- <childRef ref="reply"/>
- </field>
- <field name="content">
- <childRef ref="book.paragraph"/>
- </field>
- </annotation>
-
- <!-- an point-like structure comment. -->
- <struct name="comment">
- <!-- Is there a chance to prevent users from having to redefine these
- two fields in comment and reply? Could we use a fieldRef here?
- Or would that be circular? -->
- <field name="replies" subtree="true">
- <childRef ref="reply"/>
- </field>
- <field name="content">
- <childRef ref="book.paragraph"/>
- </field>
- <parentRef ref="book.paragraph">
- <fieldRef ref="$default"/>
- </parentRef>
- </struct>
- <!-- note that replies are organized in a tree fashion: One can also reply
- to a reply -->
- <struct name="reply">
- <field name="replies" subtree="true">
- <childRef ref="reply"/>
- </field>
- <field name="content">
- <childRef ref="book.paragraph"/>
- </field>
- </struct>
-</ontology>