Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Sebastiano-G/w3id.org
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastiano-G committed Jan 3, 2025
2 parents 497f61e + ffd14e0 commit b4afb35
Show file tree
Hide file tree
Showing 166 changed files with 2,590 additions and 427 deletions.
1 change: 1 addition & 0 deletions .htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ RewriteEngine on

# special directory redirects due to case insensitive file systems issues
RewriteRule ^AIRO(.*)$ /airo$1
RewriteRule ^ceir(.*)$ /CEIR$1
RewriteRule ^UN(.*)$ /un$1
20 changes: 2 additions & 18 deletions 303/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,5 @@ DirectorySlash Off
RewriteOptions AllowNoSlash
Options -Indexes

# All machine-readable versions should be referred to by a generic document
RewriteCond %{REQUEST_FILENAME} -d
RewriteCond %{HTTP:Accept} text/turtle [NC,OR]
RewriteCond %{HTTP:Accept} application/ld\+json [NC]
RewriteRule . https://w3id.org/303/doc [R=303,L]

# Default to the HTML representation.
# As it is very different from the machine readable representations --> direct 303, no link via generic document
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . https://github.com/athalhammer/303voc [R=303,L]

# Turtle version of generic doc
RewriteCond %{HTTP:Accept} text/turtle [NC]
RewriteRule ^doc$ https://athalhammer.github.io/303voc/303.ttl [R=302,L]

# JSON-LD version of generic doc
RewriteCond %{HTTP:Accept} application/ld\+json [NC]
RewriteRule ^doc$ https://athalhammer.github.io/303voc/303.jsonld [R=302,L]
# moved permanently to https://w3id.org/x303
RewriteRule . https://w3id.org/x303 [R=301]
11 changes: 1 addition & 10 deletions 303/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
# 303 predicate

This folder hosts the 303 redirect for the <https://w3id.org/303> predicate. The project is hosted at https://github.com/athalhammer/303voc/.

## Uses

The idea of the <https://w3id.org/303> predicate is to point to the
1. canonical URI for the described real-world resource
2. the (preferred) canonical URI of the RDF document describing it

in the subject position (1) and object postion (2) respectively.
This folder hosts a DEPRECATED version of the <https://w3id.org/x303> (formerly <https://w3id.org/303>) predicate. It now features a 301 redirect to the new URL of the predicate.

## This space is administered by:
Andreas Thalhammer \
Expand Down
8 changes: 4 additions & 4 deletions CEIR/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ Options -MultiViews
RewriteEngine On

# Redirects
RewriteRule ^(.*)CWC$ https://github.com/ceir-koblenz/CWC [R=303,L]
RewriteRule ^(.*)IRECS$ https://github.com/ceir-koblenz/IRECS [R=303,L]
RewriteRule ^(.*)MOBDA$ https://github.com/ceir-koblenz/MOBDA [R=303,L]
RewriteRule ^(.*)CWC$ https://github.com/ceir-koblenz/CWC [L,NC,R=303]
RewriteRule ^(.*)IRECS$ https://github.com/ceir-koblenz/IRECS [L,NC,R=303]
RewriteRule ^(.*)MOBDA$ https://github.com/ceir-koblenz/MOBDA [L,NC,R=303]

# Default response: redirect to the CEIR github page
RewriteRule ^(.*)$ https://github.com/ceir-koblenz [R=303,L]
RewriteRule ^(.*)$ https://github.com/ceir-koblenz [L,NC,R=303]
4 changes: 4 additions & 0 deletions CMECS/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@
# GitHub username: r0sek

RewriteEngine on

#redirect terms to mmisw.org
#test using https://w3id.org/CMECS/CMECS_00000389 (Geologic Substrate)

RewriteRule ^(.*)$ https://mmisw.org/ont?iri=https://w3id.org/CMECS/$1 [R=302,L]
48 changes: 48 additions & 0 deletions CoPla/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# 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 .jsonld
# Rewrite engine setup
RewriteEngine On
#Change the path to the folder here
# RewriteBase https://github.com/kai-vu/companion-planting-decision-support/

# Rewrite rule to serve JSON-LD content from the vocabulary URI if requested
# Placed before HTML to support serving JSON-LD from a browser (e.g., JSON Playground)
RewriteCond %{HTTP_ACCEPT} application/ld\+json
RewriteRule ^$ https://kai-vu.github.io/companion-planting-decision-support/ontology.jsonld [R=303,L]

# 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 ^$ https://kai-vu.github.io/companion-planting-decision-support/index.html [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 ^$ https://kai-vu.github.io/companion-planting-decision-support/ontology.owl [R=303,L]

# Rewrite rule to serve N-Triples content from the vocabulary URI if requested
RewriteCond %{HTTP_ACCEPT} application/n-triples
RewriteRule ^$ https://kai-vu.github.io/companion-planting-decision-support/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 ^$ https://kai-vu.github.io/companion-planting-decision-support/ontology.ttl [R=303,L]

RewriteCond %{HTTP_ACCEPT} .+
RewriteRule ^$ https://kai-vu.github.io/companion-planting-decision-support/406.html [R=406,L]
# Default response
# ---------------------------
# Rewrite rule to serve the RDF/XML content from the vocabulary URI by default
RewriteRule ^$ https://kai-vu.github.io/companion-planting-decision-support/ontology.owl [R=303,L]
31 changes: 31 additions & 0 deletions CoPla/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Companion Planting Ontology

## Introduction
This repository contains the Companion Planting Ontology, a resource developed by the [Knowledge in AI](https://kai.cs.vu.nl/) group of Vrije Universiteit Amsterdam, for the purpose of understanding and implementing companion planting strategies in agriculture. Companion planting is the practice of growing certain plants in proximity for pest control, pollination, providing habitat for beneficial creatures, maximizing use of space, and to otherwise increase crop productivity.

## Purpose of the Ontology
- **Enhancing Agricultural Knowledge**: To provide a structured and detailed knowledge base about companion planting.
- **Facilitating Decision Making**: To assist gardeners and farmers in making informed decisions about plant pairings.
- **Promoting Biodiversity**: To encourage biodiversity in gardens and farms through informed plant choices.
- **Optimizing Plant Health and Yield**: To help in selecting plant combinations that improve growth and yield.
- **Pest Management**: To offer natural alternatives for pest control through strategic plant placement.
- **Educational Tool**: To serve as an educational resource for students and enthusiasts in agriculture and gardening.

## Competency Questions
The ontology is designed to answer key questions that aid in understanding and applying companion planting principles effectively. Some of these questions include:

- What plants are beneficial to grow together for pest control?
- Which plant combinations should be avoided in a garden or farm setting?
- What are the best companion plants for a specific crop (e.g., tomatoes)?
- How can companion planting be used to combat specific pests (e.g., aphids)?

Feel free to explore the ontology and contribute to its development. Your insights and feedback are valuable in enhancing this knowledge base.

## Contact
The mainteners of the ontology are researchers at the Knowledge in Artificial Intelligence group (kai.cs.vu.nl) at the Computer Science Department, Vrije Universiteit Amsterdam.

**Currently responsible person**: Romana Pernisch (github: pernisch, email: [email protected])

Group contact:
GitHub: kai-vu (https://github.com/kai-vu)
Email: [email protected]
2 changes: 1 addition & 1 deletion ExpO/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ RewriteRule ^plugin/?$ https://github.com/mozzherina/ontouml-vp-plugin/tree/feat
RewriteRule ^expose/(.+)/?$ https://expose.eng.unibz.it/$1

# GitHub folder
RewriteRule ^github/?$ https://github.com/mozzherina/ExpO-Project
RewriteRule ^github/?$ https://github.com/mozzherina/ExpO-Project
13 changes: 7 additions & 6 deletions GerPS-onto/FIMDatenfelder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ Webpage: https://fusion-jena.github.io/GerPS-Datafield
Redirect: https://w3id.org/GerPS-onto/FIMDatenfelder# > https://fusion-jena.github.io/GerPS-Datafield

## Contact
| Maintainer | Institute | Email | ORCID | Location | Phone | Github-ID |
|---------------------|-------------------------------------|--------------------------------|---------------------------------------|--------------------------------------------------|-------------------|------------------------------------------------|
| Maximilian Raupach | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0002-2197-8377 | 07743 Jena; Leutragraben 1, JenTower, Room 18N04 | --- | [maxraupach](https://github.com/maxraupach) |
| Leila Feddoul | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0000-0001-8896-8208 | 07743 Jena; Leutragraben 1, JenTower, Room 21N03 | --- | [leilafedd](https://github.com/leilafedd) |
| Sarah Bachinger | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0005-5422-2164 | 07743 Jena; Leutragraben 1, JenTower, Room 18N03 | ---- | [stbachinger](https://github.com/stbachinger) |
| Silvia Lehmann | Friedrich-Schiller-Universität Jena | [email protected] | ---| 07743 Jena; Leutragraben 1, JenTower, Room 18N01 | --- --- | [selvleh](https://github.com/silvleh) |
| Maintainer | Institute | Email | ORCID | Location | Phone | Github-ID |
| -------------------- | ----------------------------------- | -------------------------------- | ------------------------------------- | ------------------------------------------------ | ----- | --------------------------------------------- |
| Maximilian Raupach | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0002-2197-8377 | 07743 Jena; Leutragraben 1, JenTower, Room 18N04 | --- | [maxraupach](https://github.com/maxraupach) |
| Leila Feddoul | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0000-0001-8896-8208 | 07743 Jena; Leutragraben 1, JenTower, Room 21N03 | --- | [leilafedd](https://github.com/leilafedd) |
| Sarah Bachinger | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0005-5422-2164 | 07743 Jena; Leutragraben 1, JenTower, Room 18N03 | --- | [stbachinger](https://github.com/stbachinger) |
| Maximilian Enderling | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0007-5039-8538 | 07743 Jena; Leutragraben 1, JenTower, Room 18N03 | --- | [BMI24](https://github.com/BMI24) |
| Marianne Mauch | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0000-0003-1478-1867 | 07743 Jena; Leutragraben 1, JenTower, Room 18N01 | --- | [gitmagit](https://github.com/gitmagit) |
13 changes: 7 additions & 6 deletions GerPS-onto/ontology/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ Webpage: https://fusion-jena.github.io/gerps-ontology/
Redirekt: https://w3id.org/GerPS-onto/ontology > https://fusion-jena.github.io/gerps-ontology/

## Contact
| Maintainer | Institute | Email | ORCID | Location | Phone | Github-ID |
|---------------------|-------------------------------------|--------------------------------|---------------------------------------|--------------------------------------------------|-------------------|------------------------------------------------|
| Maximilian Raupach | Friedrich-Schiller-Universität Jena | [email protected] | --- | 07743 Jena; Leutragraben 1, JenTower, Room 18N04 | --- | [maxraupach](https://github.com/maxraupach) |
| Leila Feddoul | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0000-0001-8896-8208 | 07743 Jena; Leutragraben 1, JenTower, Room 21N03 | --- | [leilafedd](https://github.com/leilafedd) |
| Sarah Bachinger | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0005-5422-2164 | 07743 Jena; Leutragraben 1, JenTower, Room 18N03 | ---- | [stbachinger](https://github.com/stbachinger) |
| Silvia Lehmann | Friedrich-Schiller-Universität Jena | [email protected] | ---| 07743 Jena; Leutragraben 1, JenTower, Room 18N01 | --- --- | [selvleh](https://github.com/silvleh) |
| Maintainer | Institute | Email | ORCID | Location | Phone | Github-ID |
| -------------------- | ----------------------------------- | -------------------------------- | ------------------------------------- | ------------------------------------------------ | ----- | --------------------------------------------- |
| Maximilian Raupach | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0002-2197-8377 | 07743 Jena; Leutragraben 1, JenTower, Room 18N04 | --- | [maxraupach](https://github.com/maxraupach) |
| Leila Feddoul | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0000-0001-8896-8208 | 07743 Jena; Leutragraben 1, JenTower, Room 21N03 | --- | [leilafedd](https://github.com/leilafedd) |
| Sarah Bachinger | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0005-5422-2164 | 07743 Jena; Leutragraben 1, JenTower, Room 18N03 | --- | [stbachinger](https://github.com/stbachinger) |
| Maximilian Enderling | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0009-0007-5039-8538 | 07743 Jena; Leutragraben 1, JenTower, Room 18N03 | --- | [BMI24](https://github.com/BMI24) |
| Marianne Mauch | Friedrich-Schiller-Universität Jena | [email protected] | https://orcid.org/0000-0003-1478-1867 | 07743 Jena; Leutragraben 1, JenTower, Room 18N01 | --- | [gitmagit](https://github.com/gitmagit) |
3 changes: 3 additions & 0 deletions KITI/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
RewriteEngine on
RewriteRule ^$ https://zorzano.github.io/KITI/ontology/ [R=302,L]
RewriteRule ^(.*)$ https://zorzano.github.io/KITI/ontology/$1 [R=302,L]
6 changes: 6 additions & 0 deletions KITI/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## KITI repository
This permanent w3id is meant to associate the KITI entry in w3id to its repository. KITI is a Knowledge Graph for the Internet of Things Ecosystem. Its ontology is published through w3id

https://w3id.org/KITI/ontology redirects to https://zorzano.github.io/KITI/ontology/

Maintainer: Francisco Javier Zorzano Mier (@zorzano)
10 changes: 0 additions & 10 deletions OWLChangeOntology/README.md

This file was deleted.

41 changes: 41 additions & 0 deletions OntoMS/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Enable CORS for all origins
Header set Access-Control-Allow-Origin *

# Turn off MultiViews to avoid conflicts
Options -MultiViews

# Rewrite engine setup
RewriteEngine On

# Base URL
RewriteBase /OntoMS

# Serve HTML content by default for browsers or text/html requests
RewriteCond %{HTTP_ACCEPT} text/html [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/.*
RewriteRule ^$ https://kit-mms.github.io/Onto-MS.github.io/ [R=303,L]

# Redirect to Turtle representation for requests with text/turtle
RewriteCond %{HTTP_ACCEPT} text/turtle [OR]
RewriteCond %{HTTP_ACCEPT} application/x-turtle
RewriteRule ^$ https://kit-mms.github.io/Onto-MS.github.io/ontology.ttl [R=303,L]

# Redirect to RDF/XML for application/rdf+xml requests
RewriteCond %{HTTP_ACCEPT} application/rdf\+xml [OR]
RewriteCond %{HTTP_ACCEPT} application/xml [OR]
RewriteCond %{HTTP_ACCEPT} text/xml
RewriteRule ^$ https://kit-mms.github.io/Onto-MS.github.io/ontology.owl [R=303,L]

# Redirect to JSON-LD for application/ld+json requests
RewriteCond %{HTTP_ACCEPT} application/ld\+json [OR]
RewriteCond %{HTTP_ACCEPT} application/json
RewriteRule ^$ https://kit-mms.github.io/Onto-MS.github.io/ontology.jsonld [R=303,L]

# Redirect to N-Triples for application/n-triples or text/n3 requests
RewriteCond %{HTTP_ACCEPT} application/n-triples [OR]
RewriteCond %{HTTP_ACCEPT} text/n3 [OR]
RewriteCond %{HTTP_ACCEPT} text/rdf+n3
RewriteRule ^$ https://kit-mms.github.io/Onto-MS.github.io/ontology.nt [R=303,L]

# Fallback: Serve HTML for any unsupported request
RewriteRule ^$ https://kit-mms.github.io/Onto-MS.github.io/ [R=303,L]
Loading

0 comments on commit b4afb35

Please sign in to comment.