summaryrefslogtreecommitdiff
path: root/testdata/osmlparser
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-03-03 15:17:51 +0100
committerAndreas Stöckel <andreas@somweyr.de>2015-03-03 15:17:51 +0100
commit78f24b65e4a84c528338cc52e71efa4aa58e656e (patch)
tree2a61cbdecae1f658999d226a9c9630bb90d9338c /testdata/osmlparser
parent466ff991bcfad76d78100193aacbfaf74d542b26 (diff)
Renamed isSubtree to subtree and isRoot to root
Diffstat (limited to 'testdata/osmlparser')
-rw-r--r--testdata/osmlparser/explicit_fields.osml8
-rw-r--r--testdata/osmlparser/include_recursive_root.osml2
-rw-r--r--testdata/osmlparser/include_root.osml2
-rw-r--r--testdata/osmlparser/inline_ontology.osml2
-rw-r--r--testdata/osmlparser/invalid_explicit_fields.osml8
-rw-r--r--testdata/osmlparser/rollback_on_invalid_element.osml4
-rw-r--r--testdata/osmlparser/struct_with_no_field.osml2
-rw-r--r--testdata/osmlparser/structure_inheritance.osml2
8 files changed, 15 insertions, 15 deletions
diff --git a/testdata/osmlparser/explicit_fields.osml b/testdata/osmlparser/explicit_fields.osml
index ea13c02..a83f46d 100644
--- a/testdata/osmlparser/explicit_fields.osml
+++ b/testdata/osmlparser/explicit_fields.osml
@@ -1,10 +1,10 @@
\document
\ontology#test
- \struct#a[isRoot=true]
- \primitive#b[type=string,isSubtree=true]
- \primitive#c[type=string,isSubtree=true]
- \primitive#d[type=string,isSubtree=false]
+ \struct#a[root=true]
+ \primitive#b[type=string,subtree=true]
+ \primitive#c[type=string,subtree=true]
+ \primitive#d[type=string,subtree=false]
\a{!
diff --git a/testdata/osmlparser/include_recursive_root.osml b/testdata/osmlparser/include_recursive_root.osml
index b29f1f4..14a56fd 100644
--- a/testdata/osmlparser/include_recursive_root.osml
+++ b/testdata/osmlparser/include_recursive_root.osml
@@ -1,7 +1,7 @@
\begin{document}
\ontology#testOntology
- \struct#test[isRoot=true]
+ \struct#test[root=true]
\begin{test}
\include{./include_recursive.osml}
diff --git a/testdata/osmlparser/include_root.osml b/testdata/osmlparser/include_root.osml
index 3c65ca1..b1256de 100644
--- a/testdata/osmlparser/include_root.osml
+++ b/testdata/osmlparser/include_root.osml
@@ -1,7 +1,7 @@
\begin{document}
\ontology#testOntology
- \struct#test[isRoot=true]
+ \struct#test[root=true]
\field
\childRef[ref=a]
\childRef[ref=b]
diff --git a/testdata/osmlparser/inline_ontology.osml b/testdata/osmlparser/inline_ontology.osml
index 1bba1f6..e01a5be 100644
--- a/testdata/osmlparser/inline_ontology.osml
+++ b/testdata/osmlparser/inline_ontology.osml
@@ -1,7 +1,7 @@
\begin{document}
\ontology#testOntology
- \struct#test[isRoot=true]
+ \struct#test[root=true]
\field
\childRef[ref=a]
\struct#a
diff --git a/testdata/osmlparser/invalid_explicit_fields.osml b/testdata/osmlparser/invalid_explicit_fields.osml
index eeecc0a..f41ee6f 100644
--- a/testdata/osmlparser/invalid_explicit_fields.osml
+++ b/testdata/osmlparser/invalid_explicit_fields.osml
@@ -1,10 +1,10 @@
\document
\ontology#test
- \struct#a[isRoot=true]
- \primitive#b[type=string,isSubtree=true]
- \primitive#c[type=string,isSubtree=true]
- \primitive#d[type=string,isSubtree=false]
+ \struct#a[root=true]
+ \primitive#b[type=string, subtree=true]
+ \primitive#c[type=string, subtree=true]
+ \primitive#d[type=string, subtree=false]
\a{!
diff --git a/testdata/osmlparser/rollback_on_invalid_element.osml b/testdata/osmlparser/rollback_on_invalid_element.osml
index 282e741..16fc629 100644
--- a/testdata/osmlparser/rollback_on_invalid_element.osml
+++ b/testdata/osmlparser/rollback_on_invalid_element.osml
@@ -1,14 +1,14 @@
\begin{document}
\ontology#testOntology
- \struct#test[isRoot=true]
+ \struct#test[root=true]
\field
\childRef[ref=a]
\struct#a
\field
\childRef[ref=b]
\struct#b
- \primitive[type=string,optional=true]
+ \primitive[type=string, optional=true]
\begin{test}
\a{!}
diff --git a/testdata/osmlparser/struct_with_no_field.osml b/testdata/osmlparser/struct_with_no_field.osml
index 4f27998..7c8c09d 100644
--- a/testdata/osmlparser/struct_with_no_field.osml
+++ b/testdata/osmlparser/struct_with_no_field.osml
@@ -1,7 +1,7 @@
\document
\ontology#test
- \struct#a[isRoot=true]
+ \struct#a[root=true]
\field
\childRef[ref=b]
\struct#b
diff --git a/testdata/osmlparser/structure_inheritance.osml b/testdata/osmlparser/structure_inheritance.osml
index 008778a..2dc0b58 100644
--- a/testdata/osmlparser/structure_inheritance.osml
+++ b/testdata/osmlparser/structure_inheritance.osml
@@ -2,5 +2,5 @@
\struct#a
\primitive[type=string]
\struct#b[isa=a]
- \primitive#color[type=string,isSubtree=true]
+ \primitive#color[type=string, subtree=true]