Skip to content

Commit

Permalink
Changes in specs
Browse files Browse the repository at this point in the history
Signed-off-by: Dariksha <[email protected]>
  • Loading branch information
DarikshaAnsari committed Aug 9, 2024
1 parent c548c50 commit 0405cd6
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 7 deletions.
8 changes: 1 addition & 7 deletions content/en/docs/spec-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,4 @@ linkTitle: Specs
weight: 7
---

| Name | Status | Version | URL | Description |
|-------------------------------|--------|---------|-------------------------------------------------------------------------------|-------------|
| in-toto | Stable | v1.0 | [in-toto v1.0](https://github.com/in-toto/docs/blob/v1.0/in-toto-spec.md) | This is a thoroughly-reviewed version of the specification (and probably what you're looking for). |
| in-toto | Latest | master | [in-toto master](https://github.com/in-toto/docs/blob/master/in-toto-spec.md) | If you want to see the latest changes and possible features, click this. |
| in-toto Attestation Framework | Stable | v1.0 | [Attestation Framework v1.0](https://github.com/in-toto/attestation/tree/v1.0/) | The in-toto Attestation Framework is developed independently of the in-toto specification. A future version of the in-toto specification will incorporate this framework as the mechanism to express software supply chain claims. |
| in-toto Attestation Framework | Latest | master | - | If you want to see the latest changes to the in-toto Attestation Framework, click this. |

{{< specs >}}
11 changes: 11 additions & 0 deletions data/specs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
- version: in-toto Stable (v1.0)
url: https://github.com/in-toto/docs/blob/v1.0/in-toto-spec.md
description: This is a thoroughly-reviewed version of the specification (and probably what you're looking for).
- version: in-toto Latest
url: https://github.com/in-toto/docs/blob/master/in-toto-spec.md
description: If you want to see the latest changes and possible features, click this.
- version: in-toto Attestation Framework Stable (v1.0)
url: https://github.com/in-toto/attestation/tree/v1.0/
description: The in-toto Attestation Framework is developed independently of the in-toto specification. A future version of the in-toto specification will incorporate this framework as the mechanism to express software supply chain claims.
- version: in-toto Attestation Framework Latest
description: If you want to see the latest changes to the in-toto Attestation Framework, click this.
27 changes: 27 additions & 0 deletions layouts/shortcodes/specs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{{ $specs := site.Data.specs }}
<table>
<thead>
<tr>
<th>
Version
</th>
<th>
Description
</th>
</tr>
</thead>
<tbody>
{{ range $specs }}
<tr>
<td>
<a href="{{ .url }}" target="_blank">
{{ .version }}
</a>
</td>
<td>
{{ .description | markdownify }}
</td>
</tr>
{{ end }}
</tbody>
</table>

0 comments on commit 0405cd6

Please sign in to comment.