diff options
author | David Robillard <d@drobilla.net> | 2024-07-12 06:37:24 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-07-12 06:37:24 -0400 |
commit | 3c2158e66863e9feca3fa78b6963c9cde2a57f25 (patch) | |
tree | e5cf0ebed599e4a07112ecff3d87638f59d45cf8 | |
parent | bffbb82838133dac021fc5b016ef3df7962483e0 (diff) | |
download | lv2-3c2158e66863e9feca3fa78b6963c9cde2a57f25.tar.xz |
Use bare boolean literals
I'm not sure why these were written out in full, although vaguely recall
something about rdflib having trouble with these. In any case, it seems to
work now, and this is fundamental Turtle syntax that should be supported by
everything.
This is necessary for the lint tests to pass after improvements to serd that
will rewrite these literals in this way.
-rw-r--r-- | lv2/atom.lv2/atom.ttl | 4 | ||||
-rw-r--r-- | lv2/core.lv2/lv2core.ttl | 2 | ||||
-rw-r--r-- | lv2/ui.lv2/ui.ttl | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lv2/atom.lv2/atom.ttl b/lv2/atom.lv2/atom.ttl index 03d3531..064d274 100644 --- a/lv2/atom.lv2/atom.ttl +++ b/lv2/atom.lv2/atom.ttl @@ -161,7 +161,7 @@ atom:Resource rdfs:subClassOf atom:Object ; rdfs:label "Resource" ; rdfs:comment "A named collection of properties with a URI." ; - owl:deprecated "true"^^xsd:boolean ; + owl:deprecated true ; atom:cType "LV2_Atom_Object" . atom:Blank @@ -169,7 +169,7 @@ atom:Blank rdfs:subClassOf atom:Object ; rdfs:label "Blank" ; rdfs:comment "An anonymous collection of properties without a URI." ; - owl:deprecated "true"^^xsd:boolean ; + owl:deprecated true ; atom:cType "LV2_Atom_Object" . atom:Sound diff --git a/lv2/core.lv2/lv2core.ttl b/lv2/core.lv2/lv2core.ttl index e86f1be..e96cede 100644 --- a/lv2/core.lv2/lv2core.ttl +++ b/lv2/core.lv2/lv2core.ttl @@ -374,7 +374,7 @@ lv2:connectionOptional lv2:reportsLatency a lv2:PortProperty ; - owl:deprecated "true"^^xsd:boolean ; + owl:deprecated true ; rdfs:label "reports latency" ; rdfs:comment "Control port value is the plugin latency in frames." . diff --git a/lv2/ui.lv2/ui.ttl b/lv2/ui.lv2/ui.ttl index e888988..c42992e 100644 --- a/lv2/ui.lv2/ui.ttl +++ b/lv2/ui.lv2/ui.ttl @@ -95,13 +95,13 @@ ui:binary a rdf:Property , owl:ObjectProperty ; owl:sameAs lv2:binary ; - owl:deprecated "true"^^xsd:boolean ; + owl:deprecated true ; rdfs:label "binary" ; rdfs:comment "The shared library that a UI resides in." . ui:makeSONameResident a lv2:Feature ; - owl:deprecated "true"^^xsd:boolean ; + owl:deprecated true ; rdfs:label "make SO name resident" ; rdfs:comment "UI binary must not be unloaded." . @@ -188,7 +188,7 @@ ui:notifyType ui:resize a lv2:Feature , lv2:ExtensionData ; - owl:deprecated "true"^^xsd:boolean ; + owl:deprecated true ; rdfs:label "resize" ; rdfs:comment """A feature that provides control of, and notifications about, a UI's size.""" . |