-
Notifications
You must be signed in to change notification settings - Fork 2
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
77 changed files
with
85,143 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,4 @@ | ||
RewriteEngine on | ||
RewriteBase /ontologies | ||
RewriteRule ^pair$ pair-2021-summer [R=303,L] | ||
RewriteRule ^pair/(.*) pair-2021-summer/$1 [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,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 /ontologies/pair-2019-summer | ||
|
||
# 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-fr.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>Une représentation adéquate de cette resource n'a pas pu être trouvée sur le serveur.</p> | ||
Variantes disponibles:<ul><li><a href="index-fr.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> |
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,96 @@ | ||
<!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>Ontology Documentation generated by WIDOCO</title> | ||
|
||
|
||
<!-- SCHEMA.ORG METADATA --> | ||
<script type="application/ld+json">{"@context":"http://schema.org","@type":"TechArticle","url":"http://virtual-assembly.org/ontologies/pair","image":"http://vowl.visualdataweb.org/webvowl/#iri=http://virtual-assembly.org/ontologies/pair","name":"http://virtual-assembly.org/ontologies/pair", "headline":"Document describing the ontology http://virtual-assembly.org/ontologies/pair", "datePublished":"2019-06-21"}</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"); | ||
$("#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> <a href="index-fr.html"><b>fr</b></a> </div> | ||
<h2>Release 2019-06-21</h2> | ||
|
||
|
||
<dl> | ||
<dt>Imported Ontologies:</dt> | ||
<dd><a href="http://www.w3.org/2004/02/skos/core">core</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://insertlicenseURIhere.org" target="_blank"><img src="https://img.shields.io/badge/License-license%20name%20goes%20here-blue.svg" alt="http://insertlicenseURIhere.org" /></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> | ||
</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> | ||
<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> |
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,96 @@ | ||
<!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>Ontology Documentation generated by WIDOCO</title> | ||
|
||
|
||
<!-- SCHEMA.ORG METADATA --> | ||
<script type="application/ld+json">{"@context":"http://schema.org","@type":"TechArticle","url":"http://virtual-assembly.org/ontologies/pair","image":"http://vowl.visualdataweb.org/webvowl/#iri=http://virtual-assembly.org/ontologies/pair","name":"http://virtual-assembly.org/ontologies/pair", "headline":"Document describing the ontology http://virtual-assembly.org/ontologies/pair", "datePublished":"2019-06-21"}</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>Sommaire</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-fr.html"); | ||
$("#introduction").load("sections/introduction-fr.html"); | ||
$("#overview").load("sections/overview-fr.html"); | ||
$("#description").load("sections/description-fr.html"); | ||
$("#references").load("sections/references-fr.html"); | ||
$("#crossref").load("sections/crossref-fr.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> <a href="index-fr.html"><b>fr</b></a> </div> | ||
<h2>Release 2019-06-21</h2> | ||
|
||
|
||
<dl> | ||
<dt>Ontologies importées:</dt> | ||
<dd><a href="http://www.w3.org/2004/02/skos/core">core</a></dd> | ||
|
||
<dt>Télécharger sérialisation:</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>Licence: </dt><dd><a href="http://URIdelalicence.org" target="_blank"><img src="https://img.shields.io/badge/License-nom%20de%20la%20licence-blue.svg" alt="http://URIdelalicence.org" /></a> | ||
</dd><dt>Visualisation:</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> | ||
</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> | ||
<html> | ||
<div id="acknowledgements"> | ||
<h2 id="ack" class="list">Remerciements <span class="backlink"> retour au <a href="#toc">sommaire</a></span></h2> | ||
<p> | ||
Les auteurs voudraient remercier <a href="http://www.essepuntato.it/">Silvio Peroni</a> pour le développement de <a href="http://www.essepuntato.it/lode">LODE</a>, a Live OWL Documentation Environment, qui est utilisé pour représenter les sections de Référencement croisé dans ce document, et <a href="https://w3id.org/people/dgarijo">Daniel Garijo</a> pour le développement de <a href="https://github.com/dgarijo/Widoco">Widoco</a>, le programme utilisé pour créer le template de cette documentation.</p> | ||
</div> | ||
|
||
</html> | ||
|
||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.