-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
18,016 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Turn off MultiViews | ||
Options -MultiViews | ||
|
||
# Directive to ensure *.rdf files served as appropriate content type, | ||
# if not present in main apache config | ||
AddType application/rdf+xml .rdf | ||
AddType application/rdf+xml .owl | ||
AddType text/turtle .ttl | ||
AddType application/n-triples .n3 | ||
AddType application/ld+json .json | ||
# Rewrite engine setup | ||
RewriteEngine On | ||
#Change the path to the folder here | ||
RewriteBase /myDocumentation | ||
|
||
# Rewrite rule to serve HTML content from the vocabulary URI if requested | ||
RewriteCond %{HTTP_ACCEPT} !application/rdf\+xml.*(text/html|application/xhtml\+xml) | ||
RewriteCond %{HTTP_ACCEPT} text/html [OR] | ||
RewriteCond %{HTTP_ACCEPT} application/xhtml\+xml [OR] | ||
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/.* | ||
RewriteRule ^$ index-en.html [R=303,L] | ||
|
||
# Rewrite rule to serve JSON-LD content from the vocabulary URI if requested | ||
RewriteCond %{HTTP_ACCEPT} application/ld\+json | ||
RewriteRule ^$ ontology.json [R=303,L] | ||
|
||
# Rewrite rule to serve RDF/XML content from the vocabulary URI if requested | ||
RewriteCond %{HTTP_ACCEPT} \*/\* [OR] | ||
RewriteCond %{HTTP_ACCEPT} application/rdf\+xml | ||
RewriteRule ^$ ontology.xml [R=303,L] | ||
|
||
# Rewrite rule to serve N-Triples content from the vocabulary URI if requested | ||
RewriteCond %{HTTP_ACCEPT} application/n-triples | ||
RewriteRule ^$ ontology.nt [R=303,L] | ||
|
||
# Rewrite rule to serve TTL content from the vocabulary URI if requested | ||
RewriteCond %{HTTP_ACCEPT} text/turtle [OR] | ||
RewriteCond %{HTTP_ACCEPT} text/\* [OR] | ||
RewriteCond %{HTTP_ACCEPT} \*/turtle | ||
RewriteRule ^$ ontology.ttl [R=303,L] | ||
|
||
RewriteCond %{HTTP_ACCEPT} .+ | ||
RewriteRule ^$ 406.html [R=406,L] | ||
# Default response | ||
# --------------------------- | ||
# Rewrite rule to serve the RDF/XML content from the vocabulary URI by default | ||
RewriteRule ^$ ontology.xml [R=303,L] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> | ||
<html><head> | ||
<title>406 Not Acceptable</title> | ||
</head> | ||
<body> | ||
<h1>Not Acceptable</h1> | ||
<p>An appropriate representation of the requested resource could not be found on this server.</p> | ||
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> | ||
|
||
</body></html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | ||
<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> | ||
|
||
|
||
<!-- SCHEMA.ORG METADATA --> | ||
<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> | ||
|
||
<script src="resources/jquery.js"></script> | ||
<script src="resources/marked.min.js"></script> | ||
<script> | ||
function loadHash() { | ||
jQuery(".markdown").each(function(el){jQuery(this).after(marked(jQuery(this).text())).remove()}); | ||
var hash = location.hash; | ||
if($(hash).offset()!=null){ | ||
$('html, body').animate({scrollTop: $(hash).offset().top}, 0); | ||
} | ||
loadTOC(); | ||
} | ||
function loadTOC(){ | ||
//process toc dynamically | ||
var t='<h2>Table of contents</h2><ul>';i = 1;j=0; | ||
jQuery(".list").each(function(){ | ||
if(jQuery(this).is('h2')){ | ||
if(j>0){ | ||
t+='</ul>'; | ||
j=0; | ||
} | ||
t+= '<li>'+i+'. <a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>'; | ||
i++; | ||
} | ||
if(jQuery(this).is('h3')){ | ||
if(j==0){ | ||
t+='<ul>'; | ||
} | ||
j++; | ||
t+= '<li>'+(i-1)+'.'+j+'. '+'<a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>'; | ||
} | ||
}); | ||
t+='</ul>'; | ||
$("#toc").html(t); | ||
} | ||
$.fn.ignore = function(sel){ | ||
return this.clone().find(sel||">*").remove().end(); | ||
}; $(function(){ | ||
$("#abstract").load("sections/abstract-en.html"); | ||
$("#introduction").load("sections/introduction-en.html"); | ||
$("#overview").load("sections/overview-en.html"); | ||
$("#description").load("sections/description-en.html"); | ||
$("#references").load("sections/references-en.html"); | ||
$("#changelog").load("sections/changelog-en.html"); | ||
$("#crossref").load("sections/crossref-en.html", null, loadHash); | ||
}); | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<div class="head"> | ||
<div style="float:right">language <a href="index-en.html"><b>en</b></a> </div> | ||
<h1>The Software Description Ontology</h1> | ||
<h2>Release October 8th, 2019</h2> | ||
|
||
|
||
<dl> | ||
<dt>This version:</dt> | ||
<dd><a href="https://w3id.org/okn/o/sd/1.2.0">https://w3id.org/okn/o/sd/1.2.0</a></dd> | ||
<dt>Previous version:</dt> | ||
<dd><a href="https://w3id.org/okn/o/sd/1.1.0">https://w3id.org/okn/o/sd/1.1.0</a></dd> | ||
<dt>Revision:</dt> | ||
<dd>1.2.0</dd> | ||
<dt>Authors:</dt> | ||
<dd>Daniel Garijo</dd><dd>Varun Ratnakar</dd><dd>Yolanda Gil</dd><dd>Deborah Khider</dd> | ||
|
||
<dt>Extended Ontologies:</dt> | ||
<dd><a href="https://schema.org/">Schema.org</a></dd> | ||
|
||
<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> | ||
</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> | ||
<dt>Cite as:</dt> | ||
<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> | ||
</dl> | ||
|
||
<hr/> | ||
</div> | ||
<div class="status"> | ||
<div> | ||
<span>Ontology Specification Draft</span> | ||
</div> | ||
</div> <div id="abstract"></div> | ||
<div id="toc"></div> <div id="introduction"></div> | ||
<div id="overview"></div> | ||
<div id="description"></div> | ||
<div id="crossref"></div> | ||
<!--<div id="references"></div>--> | ||
<div id="changelog"></div> | ||
<html> | ||
<div id="acknowledgements"> | ||
<h2 id="ack" class="list">Acknowledgements <span class="backlink"> back to <a href="#toc">ToC</a></span></h2> | ||
<p> | ||
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> | ||
</div> | ||
|
||
</html> | ||
|
||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.