Skip to content

Commit 899090f

Browse files
committed
added version 1.4.0
1 parent 0c50678 commit 899090f

33 files changed

+18963
-7
lines changed

development/softwareDescription.owl

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@base <https://w3id.org/okn/o/sd> .
88

99
<https://w3id.org/okn/o/sd> rdf:type owl:Ontology ;
10-
owl:versionIRI <https://w3id.org/okn/o/sd/1.3.0> ;
10+
owl:versionIRI <https://w3id.org/okn/o/sd/1.4.0> ;
1111
<http://purl.org/dc/elements/1.1/abstract> "An ontology for describing software and their links to inputs, outputs and variables"@en ;
1212
<http://purl.org/dc/elements/1.1/contributor> "Hernan Vargas" ,
1313
"Maximiliano Osorio" ;
@@ -21,8 +21,8 @@
2121
<http://purl.org/vocab/vann/preferredNamespacePrefix> "sd"@en ;
2222
<http://purl.org/vocab/vann/preferredNamespaceUri> <https://w3id.org/okn/o/sd> ;
2323
rdfs:comment "An ontology for describing software and their links to inputs, outputs and variables"@en ;
24-
owl:priorVersion <https://w3id.org/okn/o/sd/1.2.0> ;
25-
owl:versionInfo "1.3.0" .
24+
owl:priorVersion <https://w3id.org/okn/o/sd/1.3.0> ;
25+
owl:versionInfo "1.4.0" .
2626

2727
#################################################################
2828
# Annotation properties
@@ -706,7 +706,9 @@ owl:priorVersion rdf:type owl:AnnotationProperty .
706706
:hasFixedValue rdf:type owl:DatatypeProperty ;
707707
rdfs:domain :Parameter ;
708708
rdfs:range [ rdf:type rdfs:Datatype ;
709-
owl:unionOf ( xsd:boolean
709+
owl:unionOf ( xsd:anyURI
710+
xsd:boolean
711+
xsd:dateTime
710712
xsd:float
711713
xsd:integer
712714
xsd:string
@@ -760,7 +762,8 @@ owl:priorVersion rdf:type owl:AnnotationProperty .
760762
)
761763
] ;
762764
rdfs:range [ rdf:type rdfs:Datatype ;
763-
owl:unionOf ( xsd:float
765+
owl:unionOf ( xsd:dateTime
766+
xsd:float
764767
xsd:integer
765768
)
766769
] ;
@@ -776,7 +779,8 @@ owl:priorVersion rdf:type owl:AnnotationProperty .
776779
)
777780
] ;
778781
rdfs:range [ rdf:type rdfs:Datatype ;
779-
owl:unionOf ( xsd:float
782+
owl:unionOf ( xsd:dateTime
783+
xsd:float
780784
xsd:integer
781785
)
782786
] ;
@@ -800,6 +804,14 @@ owl:priorVersion rdf:type owl:AnnotationProperty .
800804
rdfs:label "has short name"@en .
801805

802806

807+
### https://w3id.org/okn/o/sd#hasStepSize
808+
:hasStepSize rdf:type owl:DatatypeProperty ;
809+
rdfs:domain :Parameter ;
810+
rdfs:range xsd:float ;
811+
rdfs:comment "Property that determines what are the increments (step size) that are commonly used to vary a parameter. This is commonly used for automatically setting up software tests. For example, if I want to set up a model and try 30 reasonable values on a parameter, I may use the default value and the step size to create the appropriate increments. If the step size is 0.1 and the default value is 0, then I will will be able to create setups: 0, 0.1, 0.2...2.9,3"@en ;
812+
rdfs:label "has step size"@en .
813+
814+
803815
### https://w3id.org/okn/o/sd#hasSupportScriptLocation
804816
:hasSupportScriptLocation rdf:type owl:DatatypeProperty ;
805817
rdfs:domain :SoftwareConfiguration ;
@@ -966,8 +978,9 @@ owl:priorVersion rdf:type owl:AnnotationProperty .
966978
rdfs:range [ rdf:type rdfs:Datatype ;
967979
owl:unionOf ( xsd:anyURI
968980
xsd:boolean
981+
xsd:dateTime
969982
xsd:float
970-
xsd:int
983+
xsd:integer
971984
xsd:string
972985
)
973986
] ;

release/1.4.0/.htaccess

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Turn off MultiViews
2+
Options -MultiViews
3+
4+
# Directive to ensure *.rdf files served as appropriate content type,
5+
# if not present in main apache config
6+
AddType application/rdf+xml .rdf
7+
AddType application/rdf+xml .owl
8+
AddType text/turtle .ttl
9+
AddType application/n-triples .n3
10+
AddType application/ld+json .json
11+
# Rewrite engine setup
12+
RewriteEngine On
13+
#Change the path to the folder here
14+
RewriteBase /myDocumentation
15+
16+
# Rewrite rule to serve HTML content from the vocabulary URI if requested
17+
RewriteCond %{HTTP_ACCEPT} !application/rdf\+xml.*(text/html|application/xhtml\+xml)
18+
RewriteCond %{HTTP_ACCEPT} text/html [OR]
19+
RewriteCond %{HTTP_ACCEPT} application/xhtml\+xml [OR]
20+
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/.*
21+
RewriteRule ^$ index-en.html [R=303,L]
22+
23+
# Rewrite rule to serve JSON-LD content from the vocabulary URI if requested
24+
RewriteCond %{HTTP_ACCEPT} application/ld\+json
25+
RewriteRule ^$ ontology.json [R=303,L]
26+
27+
# Rewrite rule to serve RDF/XML content from the vocabulary URI if requested
28+
RewriteCond %{HTTP_ACCEPT} \*/\* [OR]
29+
RewriteCond %{HTTP_ACCEPT} application/rdf\+xml
30+
RewriteRule ^$ ontology.xml [R=303,L]
31+
32+
# Rewrite rule to serve N-Triples content from the vocabulary URI if requested
33+
RewriteCond %{HTTP_ACCEPT} application/n-triples
34+
RewriteRule ^$ ontology.nt [R=303,L]
35+
36+
# Rewrite rule to serve TTL content from the vocabulary URI if requested
37+
RewriteCond %{HTTP_ACCEPT} text/turtle [OR]
38+
RewriteCond %{HTTP_ACCEPT} text/\* [OR]
39+
RewriteCond %{HTTP_ACCEPT} \*/turtle
40+
RewriteRule ^$ ontology.ttl [R=303,L]
41+
42+
RewriteCond %{HTTP_ACCEPT} .+
43+
RewriteRule ^$ 406.html [R=406,L]
44+
# Default response
45+
# ---------------------------
46+
# Rewrite rule to serve the RDF/XML content from the vocabulary URI by default
47+
RewriteRule ^$ ontology.xml [R=303,L]

release/1.4.0/406.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
2+
<html><head>
3+
<title>406 Not Acceptable</title>
4+
</head>
5+
<body>
6+
<h1>Not Acceptable</h1>
7+
<p>An appropriate representation of the requested resource could not be found on this server.</p>
8+
Available variants:<ul><li><a href="index-en.html">html</a></li><li><a href="ontology.json">JSON-LD</a></li><li><a href="ontology.xml">RDF/XML</a></li><li><a href="ontology.nt">N-Triples</a></li><li><a href="ontology.ttl">TTL</a></li></ul>
9+
10+
</body></html>
39.7 KB
Loading

release/1.4.0/index-en.html

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
5+
<link rel="stylesheet" href="resources/primer.css" media="screen" /> <link rel="stylesheet" href="resources/rec.css" media="screen" /> <link rel="stylesheet" href="resources/extra.css" media="screen" /> <link rel="stylesheet" href="resources/owl.css" media="screen" /> <title>The Software Description Ontology</title>
6+
7+
8+
<!-- SCHEMA.ORG METADATA -->
9+
<script type="application/ld+json">{"@context":"http://schema.org","@type":"TechArticle","url":"https://w3id.org/okn/o/sd","image":"http://vowl.visualdataweb.org/webvowl/#iri=https://w3id.org/okn/o/sd","name":"The Software Description Ontology", "headline":"An ontology for describing software and their links to inputs, outputs and variables", "datePublished":"December 12th, 2019", "version":"1.4.0", "license":"http://creativecommons.org/licenses/by/2.0/", "author":[{"@type":"Person","name":"Daniel Garijo"},{"@type":"Person","name":"Varun Ratnakar"},{"@type":"Person","name":"Yolanda Gil"},{"@type":"Person","name":"Deborah Khider"}], "contributor":[{"@type":"Person","name":"Hernan Vargas"},{"@type":"Person","name":"Maximiliano Osorio"}]}</script>
10+
11+
<script src="resources/jquery.js"></script>
12+
<script src="resources/marked.min.js"></script>
13+
<script>
14+
function loadHash() {
15+
jQuery(".markdown").each(function(el){jQuery(this).after(marked(jQuery(this).text())).remove()});
16+
var hash = location.hash;
17+
if($(hash).offset()!=null){
18+
$('html, body').animate({scrollTop: $(hash).offset().top}, 0);
19+
}
20+
loadTOC();
21+
}
22+
function loadTOC(){
23+
//process toc dynamically
24+
var t='<h2>Table of contents</h2><ul>';i = 1;j=0;
25+
jQuery(".list").each(function(){
26+
if(jQuery(this).is('h2')){
27+
if(j>0){
28+
t+='</ul>';
29+
j=0;
30+
}
31+
t+= '<li>'+i+'. <a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
32+
i++;
33+
}
34+
if(jQuery(this).is('h3')){
35+
if(j==0){
36+
t+='<ul>';
37+
}
38+
j++;
39+
t+= '<li>'+(i-1)+'.'+j+'. '+'<a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
40+
}
41+
});
42+
t+='</ul>';
43+
$("#toc").html(t);
44+
}
45+
$.fn.ignore = function(sel){
46+
return this.clone().find(sel||">*").remove().end();
47+
}; $(function(){
48+
$("#abstract").load("sections/abstract-en.html");
49+
$("#introduction").load("sections/introduction-en.html");
50+
$("#overview").load("sections/overview-en.html");
51+
$("#description").load("sections/description-en.html");
52+
$("#references").load("sections/references-en.html");
53+
$("#changelog").load("sections/changelog-en.html");
54+
$("#crossref").load("sections/crossref-en.html", null, loadHash);
55+
});
56+
</script>
57+
</head>
58+
59+
<body>
60+
<div class="container">
61+
<div class="head">
62+
<div style="float:right">language <a href="index-en.html"><b>en</b></a> </div>
63+
<h1>The Software Description Ontology</h1>
64+
<h2>Release December 12th, 2019</h2>
65+
66+
67+
<dl>
68+
<dt>This version:</dt>
69+
<dd><a href="https://w3id.org/okn/o/sd/1.4.0">https://w3id.org/okn/o/sd/1.4.0</a></dd>
70+
<dt>Latest version:</dt>
71+
<dd><a href="https://w3id.org/okn/o/sd">https://w3id.org/okn/o/sd</a></dd>
72+
<dt>Previous version:</dt>
73+
<dd><a href="https://w3id.org/okn/o/sd/1.3.0">https://w3id.org/okn/o/sd/1.3.0</a></dd>
74+
<dt>Revision:</dt>
75+
<dd>1.4.0</dd>
76+
<dt>Authors:</dt>
77+
<dd>Daniel Garijo</dd><dd>Varun Ratnakar</dd><dd>Yolanda Gil</dd><dd>Deborah Khider</dd>
78+
79+
<dt>Contributors:</dt>
80+
<dd>Hernan Vargas</dd><dd>Maximiliano Osorio</dd>
81+
82+
<dt>Download serialization:</dt><dd><span><a href="ontology.json" target="_blank"><img src="https://img.shields.io/badge/Format-JSON_LD-blue.svg" alt="JSON-LD" /></a> </span><span><a href="ontology.xml" target="_blank"><img src="https://img.shields.io/badge/Format-RDF/XML-blue.svg" alt="RDF/XML" /></a> </span><span><a href="ontology.nt" target="_blank"><img src="https://img.shields.io/badge/Format-N_Triples-blue.svg" alt="N-Triples" /></a> </span><span><a href="ontology.ttl" target="_blank"><img src="https://img.shields.io/badge/Format-TTL-blue.svg" alt="TTL" /></a> </span></dd><dt>License: </dt><dd><a href="http://creativecommons.org/licenses/by/2.0/" target="_blank"><img src="https://img.shields.io/badge/License-http://creativecommons.org/licenses/by/2.0/-blue.svg" alt="http://creativecommons.org/licenses/by/2.0/" /></a>
83+
</dd><dt>Visualization:</dt><dd><a href="webvowl/index.html#" target="_blank"><img src="https://img.shields.io/badge/Visualize_with-WebVowl-blue.svg" alt="Visualize with WebVowl" /></a></dd>
84+
<dt>Cite as:</dt>
85+
<dd>Daniel Garijo,Varun Ratnakar,Yolanda Gil,Deborah Khider and Maximiliano Osorio. The Software Description Ontology. Revision: 1.4.0. Retrieved from: https://w3id.org/okn/o/sd/1.4.0</dd>
86+
</dl>
87+
88+
<hr/>
89+
</div>
90+
<div class="status">
91+
<div>
92+
<span>Ontology Specification Draft</span>
93+
</div>
94+
</div> <div id="abstract"></div>
95+
<div id="toc"></div> <div id="introduction"></div>
96+
<div id="overview"></div>
97+
<div id="description"></div>
98+
<div id="crossref"></div>
99+
<div id="references"></div>
100+
<div id="changelog"></div>
101+
<div id="acknowledgements">
102+
<h2 id="ack" class="list">Acknowledgements <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
103+
<p>
104+
The authors would like to thank <a href="http://www.essepuntato.it/">Silvio Peroni</a> for developing <a href="http://www.essepuntato.it/lode">LODE</a>, a Live OWL Documentation Environment, which is used for representing the Cross Referencing Section of this document and <a href="https://w3id.org/people/dgarijo">Daniel Garijo</a> for developing <a href="https://github.com/dgarijo/Widoco">Widoco</a>, the program used to create the template used in this documentation.</p>
105+
</div>
106+
107+
108+
</div>
109+
</body>
110+
</html>

0 commit comments

Comments
 (0)