summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Trueg <trueg@kde.org>2010-08-19 13:17:07 +0000
committerSebastian Trueg <trueg@kde.org>2010-08-19 13:17:07 +0000
commit3955d69dbbad724598b1eef4d19f9bfe53679312 (patch)
tree690b920be8a70d6b2cf8ffdd0bb6f6aa063e03ba
parent240824b102018b32656662382773d10343b35e24 (diff)
Changed duration to an end time tag which is much easier to handle currently.
While this is a non-backwards-compatible change the duration tag is not used anywhere in KDE yet. So I think there is no reason to keep the old property around as deprecated. This fixes ticket #77.
-rw-r--r--nuao/nuao.trig12
1 files changed, 6 insertions, 6 deletions
diff --git a/nuao/nuao.trig b/nuao/nuao.trig
index 32a2c87..ed26380 100644
--- a/nuao/nuao.trig
+++ b/nuao/nuao.trig
@@ -52,16 +52,16 @@ nuao: {
a rdf:Property ;
rdfs:comment "The time of the start of the event" ;
rdfs:domain nuao:Event ;
- rdfs:label "start" ;
+ rdfs:label "start time" ;
rdfs:range xsd:dateTime ;
nrl:maxCardinality "1"^^xsd:nonNegativeInteger .
- nuao:duration
+ nuao:end
a rdf:Property ;
- rdfs:comment "Duration of the event" ;
+ rdfs:comment "The time the event finished" ;
rdfs:domain nuao:Event ;
- rdfs:label "duration" ;
- rdfs:range xsd:duration ;
+ rdfs:label "end time" ;
+ rdfs:range xsd:dateTime;
nrl:maxCardinality "1"^^xsd:nonNegativeInteger .
nuao:involves
@@ -207,7 +207,7 @@ nuao: {
nao:serializationLanguage "TriG" ;
nao:status "Testing" ;
nrl:updatable "0" ;
- nao:version "2" .
+ nao:version "3" .
<http://www.semanticdesktop.org/ontologies/2010/01/25/nuao/metadata>
a nrl:GraphMetadata , nrl:DocumentGraph ;