summaryrefslogtreecommitdiff
path: root/testdata/xmlparser/comments_domain.oxm
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-02-15 22:49:48 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-02-15 22:49:48 +0100
commitfabb174fd15d129e6b8d668cd3d621b0b9481c4f (patch)
treef4560186d8d25d750400d00c8b42e9ff5acdd3d1 /testdata/xmlparser/comments_domain.oxm
parente1a13f339fde6518850f4ace293477864a649d15 (diff)
Renamed files from oxm and oxd to osxml
Diffstat (limited to 'testdata/xmlparser/comments_domain.oxm')
-rw-r--r--testdata/xmlparser/comments_domain.oxm40
1 files changed, 0 insertions, 40 deletions
diff --git a/testdata/xmlparser/comments_domain.oxm b/testdata/xmlparser/comments_domain.oxm
deleted file mode 100644
index 6add2b3..0000000
--- a/testdata/xmlparser/comments_domain.oxm
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" standalone="yes"?>
-<domain name="comments">
- <import rel="domain" src="./book_domain.oxm"/>
-
- <!-- an annotation comment -->
- <annotation name="comment">
- <field name="replies" isSubtree="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" isSubtree="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" isSubtree="true">
- <childRef ref="reply"/>
- </field>
- <field name="content">
- <childRef ref="book.paragraph"/>
- </field>
- </struct>
-</domain>