-
Notifications
You must be signed in to change notification settings - Fork 8
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
276 changed files
with
2,278 additions
and
1,954 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 |
---|---|---|
@@ -1,13 +1,14 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem "jekyll", "~> 4.3.2" # installed by `gem jekyll` | ||
# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2 | ||
gem "jekyll", "~> 3.9.3" # installed by `gem jekyll` | ||
gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2 | ||
|
||
gem "just-the-docs", "0.5.3" # pinned to the current release | ||
# gem "just-the-docs" # always download the latest release | ||
|
||
# If you have any plugins, put them here! | ||
group :jekyll_plugins do | ||
gem "kramdown" | ||
gem "kramdown-parser-gfm" | ||
gem "jekyll-remote-theme" | ||
end |
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
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 |
---|---|---|
|
@@ -2,8 +2,6 @@ title: Linked Data Interactions | |
description: Linked Data Interactions | ||
remote_theme: just-the-docs/[email protected] | ||
|
||
url: https://just-the-docs.github.io | ||
|
||
favicon_ico: "/assets/images/favicon.ico" | ||
|
||
callouts: | ||
|
@@ -19,9 +17,6 @@ aux_links: | |
ga_tracking: G-9F4LJXRX6T | ||
ga_tracking_anonymize_ip: true # Use GDPR compliant Google Analytics settings (true/nil by default) | ||
|
||
|
||
|
||
|
||
# Define Jekyll collections | ||
collections: | ||
core: | ||
|
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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,11 @@ | ||
--- | ||
layout: default | ||
title: LDIO Core | ||
has_children: true | ||
has_toc: true | ||
nav_order: 1 | ||
--- | ||
|
||
# LDIO Core | ||
|
||
Contains common components used by multiple other LDIO components |
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,40 @@ | ||
--- | ||
layout: default | ||
parent: LDIO Core | ||
title: LDIO Http Requester | ||
--- | ||
|
||
# LDIO Http Requester | ||
|
||
Different LDIO components use the Http Requester to make HTTP requests. | ||
This requester supports the below config: | ||
|
||
|
||
| Property | Description | Required | Default | Example | Supported values | | ||
|:------------------------------------|:----------------------------------------------------------------------------------------------|:---------|:----------|:----------------------------|:----------------------------------------------| | ||
| auth.type | The type of authentication required by the LDES server | No | NO_AUTH | OAUTH2_CLIENT_CREDENTIALS | NO_AUTH, API_KEY or OAUTH2_CLIENT_CREDENTIALS | | ||
| auth.api-key | The api key when using auth.type 'API_KEY' | No | N/A | myKey | String | | ||
| auth.api-key-header | The header for the api key when using auth.type 'API_KEY' | No | X-API-KEY | X-API-KEY | String | | ||
| auth.client-id | The client identifier when using auth.type 'OAUTH2_CLIENT_CREDENTIALS' | No | N/A | myId | String | | ||
| auth.client-secret | The client secret when using auth.type 'OAUTH2_CLIENT_CREDENTIALS' | No | N/A | mySecret | String | | ||
| auth.token-endpoint | The token endpoint when using auth.type 'OAUTH2_CLIENT_CREDENTIALS' | No | N/A | http://localhost:8000/token | HTTP and HTTPS urls | | ||
| retries.enabled | Indicates if the http client should retry http requests when the server cannot be reached. | No | true | true | true or false | | ||
| retries.max | Max number of retries the http client should do when retries.enabled = true | No | 5 | 100 | Integer | | ||
| retries.statuses-to-retry | Custom comma seperated list of http status codes that can trigger a retry in the http client. | No | N/A | 410,451 | Comma seperated list of Integers | | ||
| rate-limit.enabled | Indicates if the http client should limit http requests when calling the server. | No | false | false | true or false | | ||
| rate-limit.max-requests-per-minute | Max number of requests per minute the http client should do when rate-limit.enabled = true | No | 500 | 500 | Integer | | ||
|
||
```yaml | ||
config: | ||
auth: | ||
type: API_KEY | ||
api-key: my-secret | ||
api-key-header: x-api-key | ||
retries: | ||
enabled: true | ||
max: 10 | ||
statuses-to-retry: 410,451 | ||
rate-limit: | ||
enabled: true | ||
max-requests-per-minute: 500 | ||
``` |
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,24 @@ | ||
--- | ||
layout: default | ||
parent: LDIO Core | ||
title: LDI RDF Writer | ||
--- | ||
|
||
# LDI RDF Writer | ||
|
||
To easily output RDF in the correct format, a generic RDF Writer is introduced. | ||
The RDF Writer supports the below config: | ||
|
||
|
||
| Property | Description | Required | Default | Example | Supported values | | ||
|:-------------|:----------------------------------------------------------------------|:---------|:------------|:------------------------------------------|:--------------------------------------------------------------| | ||
| content-type | Target content type. | No | text/turtle | application/ld+json | Any type supported by [Apache Jena](https://jena.apache.org/) | | ||
| frame-type | RDF type of the objects that need to be included for JSON-LD framing. | No | N/A | http://purl.org/goodrelations/v1#Offering | Any RDF type | | ||
|
||
## Example | ||
```yaml | ||
config: | ||
rdf-writer: | ||
content-type: application/n-quads | ||
frame-type: http://purl.org/goodrelations/v1#Offering | ||
``` |
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
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
Oops, something went wrong.