Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/scripts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<head>
<meta charset="utf-8">
<meta http-equiv="refresh"
content="0;url=https://eclipse-dataspace-protocol-base.github.io/DataspaceProtocol/2025-1-RC3"/>
<link rel="canonical" href="https://eclipse-dataspace-protocol-base.github.io/DataspaceProtocol/2025-1-RC3"/>
content="0;url=https://eclipse-dataspace-protocol-base.github.io/DataspaceProtocol/2025-1-RC4"/>
<link rel="canonical" href="https://eclipse-dataspace-protocol-base.github.io/DataspaceProtocol/2025-1-RC4"/>
</head>
<body>
<h4>
This redirects to the latest Release Candidate <a href="https://eclipse-dataspace-protocol-base.github.io/DataspaceProtocol/2025-1-RC3">here</a>
This redirects to the latest Release Candidate <a href="https://eclipse-dataspace-protocol-base.github.io/DataspaceProtocol/2025-1-RC4">here</a>
</h4>
</body>
</html>
3 changes: 2 additions & 1 deletion WEBSITE.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,5 @@ You should now see an additional endpoint at `https://eclipse-dataspace-dcp.gith

#### Github Release

Create a Github Release by adding a bit of context, autogenerating the releasenotes. For RCs, it's customary to
Create a Github Release by adding a bit of context, autogenerating the releasenotes. For RCs, it's customary to include
a permalink to the rendered respec webpage.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private String parseResolvedTypes(SchemaProperty property) {
var itemTypes = resolvedProperty.getItemTypes().stream()
.flatMap(t -> t.getResolvedTypes().stream())
.map(e -> {
if (e.isJsonBaseType()) {
if (e.isJsonBaseType() || getTypeName(e).startsWith("array")) {
return String.format("%s", getTypeName(e));
}
return String.format("<a href=#%s-table>%s</a>", getTypeName(e), getTypeName(e));
Expand Down
5 changes: 2 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<head>
<meta charset='utf-8'>
<script src='https://www.w3.org/Tools/respec/respec-w3c' async class='remove'></script>
<script class="remove" src="https://cdn.jsdelivr.net/gh/w3c/respec-mermaid@1.1.0/dist/main.js"></script>
<script class='remove'>
var respecConfig = {
specStatus: "unofficial",
Expand Down Expand Up @@ -61,13 +60,13 @@
maxTocLevel: 3,
};
</script>
<title>Dataspace Protocol Release 2025-1-RC4</title>
<title>Dataspace Protocol Release 2025-1-RC5</title>
</head>
<body>
<p class="copyright">
This document is licensed under <a href="https://www.apache.org/licenses/LICENSE-2.0.html">The Apache License, Version 2.0</a>.
</p>
<h1 id="title">Dataspace Protocol 2025-1-RC4</h1>
<h1 id="title">Dataspace Protocol 2025-1-RC5</h1>
<section id='abstract'>
<p>
The Dataspace Protocol is a specification designed to facilitate interoperable data sharing between
Expand Down
9 changes: 6 additions & 3 deletions specifications/common/type.definitions.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# Lower Level Type Definitions

<p data-include="message/table/action.html" data-include-format="html">
</p>

<p data-include="message/table/agreement.html" data-include-format="html">
</p>

Expand Down Expand Up @@ -33,5 +30,11 @@
<p data-include="message/table/offer.html" data-include-format="html">
</p>

<p data-include="message/table/permission.html" data-include-format="html">
</p>

<p data-include="message/table/prohibition.html" data-include-format="html">
</p>

<p data-include="message/table/rule.html" data-include-format="html">
</p>
Loading