Skip to content

Commit 2df95f6

Browse files
committed
publishing release 1.2.0
1 parent b999a34 commit 2df95f6

32 files changed

+18016
-0
lines changed

release/1.2.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.2.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.2.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":"October 8th, 2019", "version":"1.2.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"}]}</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 October 8th, 2019</h2>
65+
66+
67+
<dl>
68+
<dt>This version:</dt>
69+
<dd><a href="https://w3id.org/okn/o/sd/1.2.0">https://w3id.org/okn/o/sd/1.2.0</a></dd>
70+
<dt>Previous version:</dt>
71+
<dd><a href="https://w3id.org/okn/o/sd/1.1.0">https://w3id.org/okn/o/sd/1.1.0</a></dd>
72+
<dt>Revision:</dt>
73+
<dd>1.2.0</dd>
74+
<dt>Authors:</dt>
75+
<dd>Daniel Garijo</dd><dd>Varun Ratnakar</dd><dd>Yolanda Gil</dd><dd>Deborah Khider</dd>
76+
77+
<dt>Extended Ontologies:</dt>
78+
<dd><a href="https://schema.org/">Schema.org</a></dd>
79+
80+
<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>
81+
</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>
82+
<dt>Cite as:</dt>
83+
<dd>Daniel Garijo,Varun Ratnakar,Yolanda Gil,Deborah Khider. The Software Description Ontology. Revision: 1.2.0. Retrieved from: https://w3id.org/okn/o/sd/1.2.0</dd>
84+
</dl>
85+
86+
<hr/>
87+
</div>
88+
<div class="status">
89+
<div>
90+
<span>Ontology Specification Draft</span>
91+
</div>
92+
</div> <div id="abstract"></div>
93+
<div id="toc"></div> <div id="introduction"></div>
94+
<div id="overview"></div>
95+
<div id="description"></div>
96+
<div id="crossref"></div>
97+
<!--<div id="references"></div>-->
98+
<div id="changelog"></div>
99+
<html>
100+
<div id="acknowledgements">
101+
<h2 id="ack" class="list">Acknowledgements <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
102+
<p>
103+
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>
104+
</div>
105+
106+
</html>
107+
108+
</div>
109+
</body>
110+
</html>

0 commit comments

Comments
 (0)