There was an error while loading. Please reload this page.
2020/01/20@Kernel
オントロジーを http://nanbyodata.jp/xxx/yyy などの URI を使って作成し,最終的に出来上がったものを nanbyoudata.jp でホスティングする.
location /resource { root /data/biohackathon/www; types { application/xslt+xml xsl; application/xml xml; application/rdf+xml rdf; application/rdf+xml owl; text/turtle ttl; } default_type text/html; try_files $uri $uri.$rdf_suffix =404; }
ttl ファイルをrapper で OWL (RDF/XML) に変換して,XSLT で OWL から XHTML に変換する.
#!/bin/sh # 要インストール:rapper,xsltproc export PATH=/opt/services/case/local/raptor2-2.0.15/bin:$PATH cd /opt/services/case/app/nando rapper -i turtle -o rdfxml-abbrev ./nanbyo.ttl > ./nanbyo.rdf xsltproc --output ./nanbyo.html ./owl2xhtml.xsl ./nanbyo.rdf cp ./nanbyo.html ./index.html