diff options
author | Evgeny Egorochkin <phreedom.stdin@gmail.com> | 2009-12-04 07:51:50 +0000 |
---|---|---|
committer | Evgeny Egorochkin <phreedom.stdin@gmail.com> | 2009-12-04 07:51:50 +0000 |
commit | caad00901579348a7a6135cdea46dc76633f9213 (patch) | |
tree | f5a8aa49e491e1590adc7d7e7830bb6ee7fc4480 | |
parent | 5eacf9ab8821638796f1fa764da98cd035b033e1 (diff) |
Properly deprecated nfo:fileLastModified and nfo:fileUrl according to #37.
Restored wrongly deleted nfo:fileUrl.
-rw-r--r-- | nfo/nfo.trig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nfo/nfo.trig b/nfo/nfo.trig index a8e15d5..c86c1f5 100644 --- a/nfo/nfo.trig +++ b/nfo/nfo.trig @@ -593,6 +593,15 @@ nfo: {nfo:horizontalResolution rdfs:label "verticalResolution" ; rdfs:range xsd:integer . + nfo:fileUrl + a rdf:Property ; + nao:deprecated true ; + rdfs:comment "URL of the file. It points at the location of the file. In cases where creating a simple file:// or http:// URL for a file is difficult (e.g. for files inside compressed archives) the applications are encouraged to use conventions defined by Apache Commons VFS Project at http://jakarta.apache.org/ commons/ vfs/ filesystems.html." ; + rdfs:domain nfo:FileDataObject ; + rdfs:label "fileUrl" ; + rdfs:range rdfs:Resource ; + rdfs:subPropertyOf nie:url . + nfo:count a rdf:Property ; rdfs:comment "A common superproperty for all properties signifying the amount of atomic media data units. Examples of subproperties may include sampleCount and frameCount." ; @@ -665,6 +674,7 @@ nfo: {nfo:horizontalResolution nfo:fileLastModified a rdf:Property ; + nao:deprecated true; rdfs:comment "last modification date" ; rdfs:domain nfo:FileDataObject ; rdfs:label "fileLastModified" ; |