Skip to content

Commit

Permalink
Merge pull request #2465 from philhag/master
Browse files Browse the repository at this point in the history
Added entry for iddo
  • Loading branch information
dgarijo authored Jan 12, 2022
2 parents 34707d0 + 8b69fb8 commit ce03248
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
43 changes: 43 additions & 0 deletions iddo/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Selected Options [+ on] [- off]
Options +FollowSymLinks

# Runtime rewriting engine
RewriteEngine on

# Turn off MultiViews
Options -MultiViews

AddType text/turtle .ttl
AddType application/rdf+xml .rdf

# Rewrite rule to serve HTML content from the vocabulary URI if requested
RewriteCond %{HTTP_ACCEPT} text/html [OR]
RewriteCond %{HTTP_ACCEPT} application/xhtml\+xml [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/.*
RewriteRule ^$ https://rub-informatik-im-bauwesen.github.io/iddo/ [R=302,NE,L]

# In case of accept header <text/turtle>
RewriteCond %{HTTP_ACCEPT} ^.*text/turtle.*
RewriteRule ^$ https://rub-informatik-im-bauwesen.github.io/iddo/iddo.ttl [R=303,NE,L]

# In case of accept header <application/rdf+xml>
RewriteCond %{HTTP_ACCEPT} application/rdf\+xml
RewriteRule ^$ https://rub-informatik-im-bauwesen.github.io/iddo/iddo.rdf [R=302,NE,L]

# If suffix ttl, redirect to turtle version
RewriteRule ^iddo.ttl$ https://rub-informatik-im-bauwesen.github.io/iddo/iddo.ttl [R=302,NE,L]

# If suffix html, redirect to html version
RewriteRule ^iddo.html$ https://rub-informatik-im-bauwesen.github.io/iddo/ [R=302,NE,L]

# If suffix rdf, redirect to rdf version
RewriteRule ^iddo.rdf$ https://rub-informatik-im-bauwesen.github.io/iddo/iddo.rdf [R=302,NE,L]

# If suffix nt, redirect to nt version
RewriteRule ^iddo.nt$ https://rub-informatik-im-bauwesen.github.io/iddo/iddo.nt [R=302,NE,L]

# If suffix nt, redirect to nt version
RewriteRule ^iddo.nt$ https://rub-informatik-im-bauwesen.github.io/iddo/iddo.nt [R=302,NE,L]

# Default response: html
RewriteRule ^$ https://rub-informatik-im-bauwesen.github.io/iddo/ [R=303,NE,L]
22 changes: 22 additions & 0 deletions iddo/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# The interconnected data dictionary ontology maps the data model of the ISO 23386 for the describing, creating, and maintenance of properties in interconnected data dictionaries.

## Description
The interconnected data dictionary ontology maps the data model of the ISO 23386 for the describing, creating, and maintenance of properties in interconnected data dictionaries.

## Ontology resources
* HTML https://rub-informatik-im-bauwesen.github.io/iddo/
* Turtle https://rub-informatik-im-bauwesen.github.io/iddo/iddo.ttl
* RDF/XML https://rub-informatik-im-bauwesen.github.io/iddo/iddo.rdf
* GitHub https://github.com/RUB-Informatik-im-Bauwesen/iddo


## Contact
This space is administered by:

**Philipp Hagedorn**
*Research Assistant, Ruhr-University Bochum, Germany*

* GitHub: [philhag](https://github.com/philhag)
* ResearchGate: [Link](https://www.researchgate.net/profile/Philipp-Hagedorn)
* ORDiD: [Link](https://orcid.org/0000-0002-6249-243X)
* LinkedIn: [Link](https://www.linkedin.com/in/hagedorn-philipp/)

0 comments on commit ce03248

Please sign in to comment.