diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 6f554f4..4ec094f 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -46,10 +46,16 @@ jobs: uses: actions/checkout@v4 - name: Install rivet + # Pin to a published rivet release. v0.13.0 is the first + # release after the eclipse-score schema deltas (chore branch) + # were expected to land. If validate fails because the score + # schema doesn't have the deltas yet, bump to the release that + # does — the chore branch was published as: rounds 1+2 + the + # docs-check allowlist on `chore/score-schema-eclipse-comparison-update`. run: | cargo install --git https://github.com/pulseengine/rivet \ - --branch chore/score-schema-eclipse-comparison-update \ - --bin rivet --locked + --tag v0.13.0 \ + rivet-cli --bin rivet --locked rivet --version - name: Sync upstream eclipse-score repos at pinned SHAs diff --git a/Makefile b/Makefile index 372e59b..7b2ab8c 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,9 @@ REPOS := \ eclipse-score-toolchains_qnx eclipse-score-toolchains_rust \ eclipse-score-tooling eclipse-score-tools -RIVET := /Users/r/.cargo/bin/rivet +# Resolved from PATH by default. Override for a specific install: +# make RIVET=/usr/local/bin/rivet validate +RIVET ?= rivet SCHEMAS := vendor/rivet-schemas PYTHON := python3 @@ -48,6 +50,7 @@ all: convert validate # ── Convert every upstream RST tree → rivet YAML ───────────────────────── convert: $(addprefix convert-,$(REPOS)) + @$(PYTHON) tools/regen_docs_paths.py convert-%: @echo "→ converting upstream/$* …" @@ -57,6 +60,15 @@ convert-%: --docs-out rivet/$*/docs \ --report rivet/$*/coverage.md +# rivet's `docs:` directive does NOT recurse — it loads markdown from +# each listed directory at one level only. So after `make convert` emits +# markdown into new subdirectories, we rewrite both per-repo and +# top-level rivet.yaml `docs:` blocks to enumerate every leaf dir that +# contains .md files. The `convert:` target above invokes this +# automatically; `make regen-docs` is exposed for manual runs. +regen-docs: + @$(PYTHON) tools/regen_docs_paths.py + # ── Mechanical oracle — corpus-scale rivet validate + variant gate ───── # # Two gates: rivet schema validation across all 58 repos AND the diff --git a/README.md b/README.md index 814e3d1..bcb6947 100644 --- a/README.md +++ b/README.md @@ -1,209 +1,130 @@ -# `playground-eclipse-score` — eclipse-score in pulseengine shape +# `playground-eclipse-score` [![validate](https://github.com/pulseengine/playground-eclipse-score/actions/workflows/validate.yml/badge.svg)](https://github.com/pulseengine/playground-eclipse-score/actions/workflows/validate.yml) [![license: Apache-2.0](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](LICENSE) -> A pulseengine.eu playground that transforms eclipse-score's sphinx-needs -> corpus into typed [rivet](https://github.com/pulseengine/rivet) YAML. -> Not affiliated with the Eclipse Foundation. The upstream eclipse-score -> repositories are pinned via `rivet.yaml` + `rivet.lock` and materialised -> on demand by `make sync` (no upstream code is vendored into this repo). - -A trackable, rebase-friendly fork of four -[Eclipse S-CORE](https://github.com/eclipse-score) repositories, -converted from sphinx-needs RST into rivet typed YAML. - -The point of this workspace is **falsification**: eclipse-score is real -ASIL-rated safety work at meaningful scale (2752 traceable artifacts -across 757 RST files in four repos). If pulseengine's typed-traceability -toolchain (rivet) can round-trip eclipse-score's model losslessly, then -rivet's scope is proven on real-world data — not on bespoke examples. If -the round-trip *fails*, that's binary evidence of what's missing. +> A [pulseengine.eu](https://pulseengine.eu) playground exploring how +> [rivet](https://github.com/pulseengine/rivet) — a typed-traceability +> tool — handles the +> [Eclipse S-CORE](https://github.com/eclipse-score) sphinx-needs corpus. +> +> **Not affiliated with the Eclipse Foundation.** Eclipse S-CORE is a +> substantial body of safety engineering work; this workspace converts +> a snapshot of that work into a second representation so we can study +> how the two toolchains relate. Upstream eclipse-score repositories +> are pinned by exact SHA in `rivet.yaml` + `rivet.lock` and +> materialised on demand by `make sync` — no upstream code is vendored +> here. + +## What this is for + +Pulseengine builds rivet as part of a wider verification-and-attestation +toolchain. We needed a real, non-toy corpus to test rivet's typed +schemas, its cross-repo machinery, its variant subsystem, and the +ergonomics of `rivet validate` at scale. Eclipse S-CORE is exactly +that kind of corpus — open, well-documented, ISO 26262 / ASPICE-shaped, +actively maintained by a working group with strong automotive +expertise. Working through it gives us: + +- A concrete answer to *"does rivet's schema cover real ASIL-rated + artifact shapes?"* — measured against 2985 actual sphinx-needs + artifacts, not bespoke examples. +- Direct feedback on rivet's developer experience when ingesting an + upstream we don't control. +- A test surface for proposed rivet features (variant models, + per-field embeds, cross-repo externals) under realistic load. + +It's a learning exercise for pulseengine. Anything that looks polished +about it owes that to upstream eclipse-score — the metamodel, the +process documentation, and the artifact discipline are theirs. ## Workspace layout ``` -eclipse-score-fork/ -├── upstream/ # raw upstream working copies -│ ├── eclipse-score-score/ # platform reqs + arch -│ ├── eclipse-score-process-description/ # workflows, roles, gd_*, std_* -│ ├── eclipse-score-persistency/ # component example (kvs) -│ └── eclipse-score-docs-as-code/ # the sphinx-needs metamodel -├── rivet/ # generated rivet projects +playground-eclipse-score/ +├── upstream/ # symlinks → .rivet/repos// +│ ├── eclipse-score-score/ +│ ├── eclipse-score-process-description/ +│ └── ... (58 total, all pinned) +├── rivet/ # generated rivet projects │ ├── eclipse-score-score/ │ │ ├── rivet.yaml -│ │ ├── artifacts/imported.yaml # generated; do not hand-edit -│ │ └── coverage.md # falsification report -│ ├── eclipse-score-process-description/ … -│ ├── eclipse-score-persistency/ … -│ └── eclipse-score-docs-as-code/ … +│ │ ├── artifacts/imported.yaml # generated by `make convert` +│ │ ├── docs//*.md # generated markdown alongside +│ │ └── coverage.md # per-repo conversion report +│ └── ... (one per upstream) ├── tools/ -│ └── score_import.py # RST → rivet YAML converter +│ ├── score_import.py # RST → rivet YAML converter +│ └── falsification-journey.md # log of every gap surfaced + closed ├── vendor/ -│ └── rivet-schemas/ # pinned snapshot of rivet schemas -├── rivet.yaml # combined corpus view -├── Makefile # convert / validate / rebase -└── README.md # you are here +│ └── rivet-schemas/ # pinned snapshot of rivet schemas +├── variants/ +│ ├── feature-model.yaml # starter variant model +│ └── bindings.yaml # 4 named worked variants +├── rivet.yaml # combined corpus + externals declaration +├── rivet.lock # SHA pins (cargo-like) +├── Makefile # sync / convert / validate / variant-check +└── README.md # you are here ``` -## Naming - -Each `upstream/` and `rivet/` follows -`eclipse-score-` so a single `eclipse-score-*` glob -filters the entire forked surface area (in `git`, in `ripgrep`, in IDE -file pickers, anywhere). The doubled-name case (`eclipse-score-score`, -where the upstream repo is just called `score`) is intentional — keeping -the upstream name verbatim makes the rebase target obvious. - -## Status: GREEN - -``` -$ make validate -# rivet validate -Result: PASS (2507 warnings) -# rivet variant check-all -4/4 variants passed (0 failed) -``` +Each `upstream/` and `rivet/` is named +`eclipse-score-` so a single `eclipse-score-*` +glob filters the entire surface in git, ripgrep, IDE pickers, etc. +The doubled-name case (`eclipse-score-score`, where the upstream repo +is literally called `score`) preserves the verbatim repo name so the +rebase target is unambiguous. -- 2985 artifacts converted across 58 active eclipse-score repos -- 0 errors, 2507 warnings (all about lifecycle gaps in eclipse data, - not schema issues) -- 4/4 named variants in `variants/bindings.yaml` solve cleanly -- All gaps fed back into `chore/score-schema-eclipse-comparison-update` - in rivet — two rounds of deltas, the second one driven entirely by - this corpus oracle. +## Reproducibility -See [`tools/falsification-journey.md`](tools/falsification-journey.md) -for the path from "naïve conversion = 1476 errors" to "PASS." - -## Reproducibility — `rivet externals` pins every upstream - -The fork uses rivet's own `externals:` machinery (see `rivet docs cross-repo`) -to pin all 58 upstream eclipse-score repos by exact commit SHA. The -authoritative pin source is the `externals:` block at the bottom of -`rivet.yaml` plus the generated `rivet.lock`. Anyone with a checkout -and internet access can materialise the exact corpus state this fork -was validated against: +The fork uses rivet's `externals:` machinery (see +`rivet docs cross-repo`) to pin all 58 upstream eclipse-score repos +by exact commit SHA. The authoritative pin source is the `externals:` +block in `rivet.yaml` plus the generated `rivet.lock`. Anyone with a +checkout and internet access can materialise the exact corpus state +this workspace was validated against: ```sh -git clone -cd eclipse-score-fork -make sync # rivet sync + create upstream/ symlinks -make convert # run the RST→YAML converter -make validate # mechanical oracle: PASS (2507 warnings) +git clone https://github.com/pulseengine/playground-eclipse-score +cd playground-eclipse-score +make sync # rivet sync upstreams + create upstream/ symlinks +make convert # run the RST → YAML converter +make validate # rivet validate + variant check-all ``` -The 58 upstream clones land under `.rivet/repos//` (rivet- -managed cache, gitignored). The Makefile creates `upstream/eclipse-score-/` -symlinks pointing at them so the converter's paths stay readable. - -## Rebase / reconvert workflow - -Once a quarter (or whenever upstream cuts a release): +Upstream clones land in `.rivet/repos//` (gitignored, +rivet-managed). The Makefile creates `upstream/eclipse-score-/` +symlinks so the converter's paths stay readable. -```sh -# 1. Pull each upstream repo to its remote HEAD. -make rebase # equivalent to: -git -C upstream/eclipse-score-score fetch origin -git -C upstream/eclipse-score-score merge --ff-only origin/main -# …repeat for the other 57. Or write the new SHAs into rivet.yaml -# directly and re-run `make sync`. - -# 2. Write the new HEADs back into the pin file. -make update-pins # rivet lock --update +The CI workflow at `.github/workflows/validate.yml` runs the same +three targets on every push, pull request, and nightly cron — so the +numbers in the table below stay live, not snapshot. -# 3. Re-run the converter against the new RST. -make convert +## Current state -# 4. Mechanical oracle — should still pass. -make validate - -# 4. If it does NOT pass, the corpus oracle just falsified our schema or -# converter against new upstream content. The failure modes are the -# interesting data — they tell us either: -# • eclipse added a new need type / link / option we don't cover -# (→ schema delta in rivet/schemas/score.yaml) -# • eclipse changed an existing predicate's semantic / target type -# (→ converter mapping update in tools/score_import.py) -# • eclipse fixed something we were working around -# (→ remove the workaround) -# Land the fix in rivet (PR against schemas/score.yaml) and/or in this -# repo's tools/, re-run, commit a new snapshot. ``` - -## Schema sourcing - -`vendor/rivet-schemas/` is a pinned copy of `rivet/schemas/` at the SHA -that this workspace was last validated against. It's vendored so: - -1. This workspace is self-contained — `make validate` works without - needing a local `pulseengine/rivet` checkout at a specific branch. -2. The pinning protects the corpus oracle from being silently invalidated - by upstream rivet schema changes. - -The current pin came from rivet branch -`chore/score-schema-eclipse-comparison-update` (commits `64e9bc5` + -`4a2890f`). To refresh from a newer rivet: - -```sh -cp /Users/r/git/pulseengine/rivet/schemas/*.yaml vendor/rivet-schemas/ -make validate # confirm corpus still goes green +$ make validate +Result: PASS (2507 warnings) +4/4 variants passed (0 failed) ``` -## Why this is a fork and not a mirror - -We deliberately **do not** mirror upstream RST into the rivet -artifacts — that would create a second source of truth that drifts. -Instead: - -- `upstream/` stays a verbatim clone of eclipse-score, ready to rebase. -- `rivet/` holds *generated* artifacts that are regenerated on every - `make convert`. Hand-edits will be overwritten. -- The fork's value is the **converter + schema delta + falsification - record**, all of which live in this repo's overlay (`tools/`, - `vendor/`, the per-repo `rivet.yaml` files, this README). - -This means upstream can adopt none of this and the fork still serves its -purpose: it's our binary evidence that rivet's typed traceability -covers eclipse-score-scale work. - -## Coverage reports - -Each per-repo conversion emits a `coverage.md` report at -`rivet//coverage.md` listing: - -- RST files scanned -- Needs converted -- Needs skipped (with reason: unknown type, no id, template placeholder) -- Unknown option keys encountered (stashed as raw fields) -- Per-rivet-type counts - -The reports are the falsification surface — any non-zero "skipped" line -is a discrete gap that can be closed by a schema delta or a converter -mapping. The current numbers (run `make convert` to refresh): - -**Headline** (all 58 active non-archived eclipse-score repos, excluding 3 -external forks `nlohmann_json` / `bazel_registry_ui` / `rules_rust`): - | Stat | Value | |---|---:| -| Upstream repos forked | 58 | +| Upstream eclipse-score repos pinned | 58 | | RST files scanned | 919 | -| Sphinx-needs needs converted | **2985** | +| Sphinx-needs artifacts converted | 2985 | | Repos with at least one need | 14 | -| Repos with zero needs (toolchain / CI / pure Doxygen) | 44 | -| Unknown eclipse need types | 0 | -| Unknown option keys | 7 | -| `needextend` rules processed | 114 | -| `needextend` mutations baked into artifacts | **2504** | -| Markdown documents emitted (alongside YAML) | **634** | -| Feature-model dimensions captured (safety / security / req-type / process-area / standard / component) | 6 | -| Named variants in `variants/bindings.yaml` | 4 | -| `rivet variant check-all` | **4/4 PASS** | -| `rivet validate` errors | **0** | -| `rivet validate` warnings (all lifecycle gaps in eclipse data) | 2507 | - -**Per-repo (top 14 by need count):** +| Repos with zero needs (Doxygen-only / toolchain / website) | 44 | +| Unknown eclipse need types encountered | 0 | +| Unknown option keys encountered | 7 | +| `needextend` rules resolved | 114 → 2504 tag mutations | +| Markdown documents emitted | 634 | +| Variant axes in `variants/feature-model.yaml` | 6 | +| Named worked variants | 4 | +| `rivet variant check-all` result | 4/4 pass | +| `rivet validate` errors | 0 | +| `rivet validate` warnings | 2507 (all lifecycle gaps in eclipse data, not schema issues) | + +**Per-repo (top 14 by need count, remaining 44 report 0 needs by design):** | Repo | RST files | Needs converted | |---|---:|---:| @@ -222,160 +143,210 @@ external forks `nlohmann_json` / `bazel_registry_ui` / `rules_rust`): | eclipse-score-logging | 2 | 1 | | eclipse-score-inc_os_autosd | 1 | 1 | -The remaining 44 repos report 0 needs — legitimate, not converter misses. -They split into: +Coverage reports per repo at `rivet//coverage.md` list files +scanned, needs converted, anything skipped, and unknown option keys +encountered. They're the surface where converter limitations show up. -- **Pure Doxygen docs** (eclipse-score-communication, feo, kyron, - orchestrator, …) — eclipse uses sphinx-needs for *requirements* and - Doxygen for *API reference*. These repos contain only the latter. -- **Bazel toolchain / CI infrastructure** (toolchains_gcc, toolchains_qnx, - toolchains_rust, bazel_platforms, bazel-tools-*, cicd-*, etc.) — no - requirements RST, just build rules and CI config. -- **Website / GitHub Pages** (eclipse-score-website variants, - eclipse-score.github.io) — published site assets, no source needs. -- **Eclipse Foundation metadata** (.eclipsefdn, .github) — repo - templates and org config. +The conversion path (and every fix the corpus surfaced) is logged in +[`tools/falsification-journey.md`](tools/falsification-journey.md) — +useful if you want to understand the trade-offs the converter makes. -These are kept in the corpus so cross-repo ID references that target -them resolve cleanly, and so any future addition of sphinx-needs -content lands automatically in the next `make convert`. +## Rebase / reconvert workflow -## Sphinx-needs feature parity +When upstream eclipse-score moves and the pinned SHAs lag: -The converter resolves three operational features beyond directive-only -extraction: +```sh +# 1. Pull each upstream to its remote HEAD. +make rebase -### `needextend` resolution (baked into artifacts) +# 2. Write the new HEADs back into the pin file. +make update-pins # rivet lock --update -Eclipse uses sphinx-needs' `.. needextend::` directive as a write-time -DRY shortcut to bulk-tag needs by file-path filter (e.g. "every need -declared under `process_areas/safety_analysis/` also gets `+tags: -safety_analysis`"). 114 such rules across the upstream corpus produce -2504 tag/`belongs_to` mutations on the converted artifacts. The -converter resolves the filter expressions at conversion time and bakes -the mutations into the static YAML — so `rivet coverage --tag iso26262` -queries match what eclipse's `needpie` shows. +# 3. Re-run the converter against the new RST. +make convert -Supported filter shapes (covers all 114 occurrences): -- `docname is not None and "" in docname` -- `"" in id` -- `c.this_doc()` -- combinations with `and type == ""` and `and not status` +# 4. Re-run the oracle. If it does NOT pass, the corpus has surfaced +# a real gap — either: +# • eclipse added a new need type / link / option we don't cover +# • eclipse changed an existing predicate's semantic / target type +# • eclipse fixed something we were working around +# Each of those is useful data — fix the converter or schema, +# re-run, commit the new snapshot. +make validate +``` -Mutation keys supported: `+tags`, `+belongs_to` (the only two eclipse -actually uses). +The nightly CI cron does the same flow against upstream HEADs with +`continue-on-error: true` — the rebased oracle is informational, not +gating, so it tells us when eclipse moved without breaking the main +green badge. -### Markdown documents (alongside YAML) +## How upstream sphinx-needs features map to rivet -For every RST file containing at least one need directive, the -converter emits a parallel markdown file under -`rivet//docs/.md`. Section structure is preserved -(`#` for RST `#` / `*` underlines, `##` for `=`, `###` for `-`), -need directives become `### {title}` headings followed by an -`{{artifact:ID:status,safety-level,security}}` embed, and inline -sphinx-needs `:need:`X`` roles are rewritten to rivet's `[[X]]` -syntax. 634 documents in total. +For each sphinx-needs feature eclipse uses heavily, the converter +either captures it natively, transforms it, or routes to a rivet +equivalent. The interesting cases: -Rivet's `rivet serve` dashboard picks them up via the `docs:` block -in each per-repo `rivet.yaml`, and `rivet export --format html` -includes them in the static compliance bundle. +### Need directives → typed rivet artifacts -### Compliance rendering — rivet's existing surface +Every eclipse need type (~30 of them: `stkh_req`, `feat_req`, +`comp_req`, `feat`, `feat_arc_sta/dyn`, `comp_arc_sta/dyn`, +`logic_arc_int`, `mod`, `dd_sta/dyn`, `sw_unit`, `tsf`, `tenet`, +`assertion`, `workflow`, `role`, `workproduct`, `gd_*`, `std_*`, +`feat_saf_fmea`, `comp_saf_fmea`, `*_saf_dfa`, `dec_rec`, `doc_*`, +`testcase`, `tool_req`, `aou_req`) maps to a corresponding rivet +artifact type via `TYPE_MAP` in `tools/score_import.py`. Options +(`:safety:`, `:security:`, `:reqtype:`, `:rationale:`, etc.) become +typed `fields:`. Links (`:satisfies:`, `:implements:`, `:fulfils:`, +`:violates:`, `:mitigated_by:`, etc.) become typed `links:`. -Eclipse uses `.. needtable::` and `.. needpie::` directives to embed -filtered tables and coverage pies directly in their RST docs. Rivet's -equivalents already exist and need no converter changes: +### `needextend` → baked-in mutations -- `{{coverage}}` / `{{coverage:rule-name}}` → coverage bars per rule -- `{{matrix}}` / `{{matrix:source:target}}` → traceability matrices -- `{{table:TYPE:FIELDS}}` → filtered tables of artifacts by type -- `{{stats}}` / `{{stats:types}}` / `{{stats:status}}` → metrics -- `/api/v1/{stats,coverage,artifacts,diagnostics}` → Grafana JSON API - with permissive CORS (`FEAT-073`) -- `rivet export --format html` → 11+ self-contained pages including - `matrix.html`, `coverage.html`, `validation.html` +Sphinx-needs `.. needextend::` directives let authors mutate +already-declared needs by filter expression (e.g. "every need under +`process_areas/safety_analysis/` gets `+tags: safety_analysis`"). The +converter pre-scans the RST tree for `needextend` blocks, evaluates +the filter expression at conversion time, and bakes the resulting +attribute mutations into the static YAML artifacts. 114 rules across +the corpus produce 2504 mutations. -Authors who want eclipse-style "tables and pies in the doc" should -use these built-in rivet embeds inside the emitted markdown. +Supported filter shapes (covers all 114 occurrences): +- `docname is not None and "" in docname` +- `"" in id` +- `c.this_doc()` +- combinations with `and type == ""` / `and not status` + +Mutation keys: `+tags`, `+belongs_to` (the only two eclipse uses). -## Variant / feature-model handling +### Markdown documents from RST surroundings -Eclipse-score declares variant management as a stakeholder requirement: +For every RST file containing at least one need directive, the +converter emits a parallel markdown file at +`rivet//docs/.md`. Section structure is mapped to +markdown headings, need declarations become `### {title}` followed by +an `{{artifact:ID:status,safety-level,security}}` embed, and inline +sphinx-needs `:need:`X`` roles are rewritten to rivet's `[[X]]` +syntax. Currently 634 documents. + +### Compliance rendering — handled by rivet's existing surface + +Eclipse uses `.. needtable::` / `.. needpie::` / `.. needarch::` +directives to embed filtered tables and charts directly in their RST +docs. Rivet ships equivalents that consume the same artifact graph: + +- `{{coverage}}` / `{{coverage:rule-name}}` — coverage bars per rule +- `{{matrix}}` / `{{matrix:source:target}}` — traceability matrices +- `{{table:TYPE:FIELDS}}` — filtered artifact tables +- `{{stats}}` / `{{stats:types}}` / `{{stats:status}}` — metrics +- `/api/v1/{stats,coverage,artifacts,diagnostics}` — JSON API with + permissive CORS, intended for Grafana embedding +- `rivet export --format html` — static compliance bundle + +Authors who want eclipse-style "tables and pies in the doc" use these +embeds inside the emitted markdown. The converter doesn't translate +the in-doc widgets directly — that's an open item, see the +falsification journey doc for the current shape. + +## Variant model — a starter example + +Eclipse-score's stakeholder requirements include a placeholder for +variant management (`stkh_req__overall_goals__variant_management`, +status: valid, rationale: tbd). The upstream metamodel does not yet +have a `variant` need type or a binding format. + +This playground includes a worked starter feature model under +`variants/` that captures the variant axes already implicit in +eclipse's data: + +- `feature-model.yaml` — 6 axes (safety-classification, security, + requirement-category, process-area, standards-compliance, + components), with an attribute-schema for typed attributes and + constraints encoding rules like "ASIL-B implies ISO 26262 + compliance" +- `bindings.yaml` — 4 named worked variants (`persistency-qm`, + `persistency-asil-b-secure`, `platform-only`, `aspice-assessment`) + +The model is offered as a starting point an integrator could adopt and +extend, not as a proposal for upstream eclipse-score to adopt. Run +`make variant-check` to validate the model + named variants, or +`make variant-matrix` to emit a GitHub Actions CI matrix from the +named variants. Both use `rivet variant` — see +`rivet docs schemas-overview`. -```rst -.. stkh_req:: Variant management - :id: stkh_req__overall_goals__variant_management - :rationale: tbd - :status: valid +## Schema sourcing - The SW-platform shall provide variant management support. - ... -``` +`vendor/rivet-schemas/` is a pinned copy of `rivet/schemas/`. It's +vendored so this workspace is self-contained — `make validate` works +without a local pulseengine/rivet checkout. The pinning also protects +the corpus oracle from being silently invalidated by upstream rivet +schema changes. -But ships **no metamodel construct for variants** — no `variant` need -type, no `:variant:` option, no binding file format. The `:rationale: -tbd` is explicit acknowledgement that this requirement is unsolved -upstream. - -This fork fills the gap using rivet's existing product-line-engineering -machinery (`rivet variant ...`, see `rivet docs schemas-overview`). -The `variants/` directory holds: - -- `feature-model.yaml` — declares the variant axes already implicit in - eclipse's data: safety-classification (qm / asil-a..d), security - (yes/no), requirement-category (functional / non-functional / - interface / process), process-area (15 areas, or-group), - standards-compliance (iso26262 / iso-sae-21434 / aspice-40, or-group), - components (one leaf per upstream repo with needs, or-group). Plus - attribute-schema for typed attributes (asil-numeric, iso-clauses, - std-id, upstream-repo). -- `bindings.yaml` — maps features to representative artifacts + source - globs, and declares 4 named variants demonstrating realistic build - configurations. - -Validate the model + all named variants: +To refresh from a newer rivet: ```sh -$ make variant-check -PASS persistency-qm -PASS persistency-asil-b-secure -PASS platform-only -PASS aspice-assessment -4/4 variants passed (0 failed) +cp /path/to/rivet/schemas/*.yaml vendor/rivet-schemas/ +make validate ``` -Emit a GitHub Actions CI matrix from the named variants: +## What this is *not* + +To set expectations: + +- **Not an alternative to eclipse-score.** The upstream project is the + source of truth for everything in `upstream/`. This workspace + produces a derived representation; it does not modify, replace, or + compete with anything eclipse-score ships. +- **Not a fork in the GitHub sense.** No PRs flow from here to + eclipse-score; we don't claim to maintain a divergent copy. The + word "fork" in the directory name reflects that we hold pinned + references to upstream, nothing more. +- **Not endorsed by the Eclipse Foundation or any eclipse-score + maintainer.** Pulseengine is an independent project at + [pulseengine.eu](https://pulseengine.eu). Any issues you find in + this workspace's converter or schemas should be filed here, not + upstream. +- **Not a guarantee of certification readiness.** rivet itself is + pre-1.0; this workspace exercises rivet against real data but + neither rivet nor this playground has been independently assessed + for use as ISO 26262 / DO-178C / IEC 61508 evidence. See rivet's + `SAFETY.md` for its current self-assessed scope. + +## Archived eclipse-score repos + +16 eclipse-score repositories marked `archived: true` on GitHub are +excluded from this workspace per the original fork-setup decision: -```sh -$ make variant-matrix -matrix: - include: - - variant: persistency-asil-b-secure - features: "asil-b,components,iso-sae-21434,iso26262,persistency,..." - runner: ubuntu-latest - - ... -``` +`examples, inc_abi_compatible_datatypes, inc_ai_platform, +inc_config_management, inc_feo, inc_gen_ai, inc_json, inc_mw_com, +inc_mw_log, inc_process_test_management, +inc_process_variant_management, inc_score_codegen, operating_system, +test_integration, test_module_a, test_module_b` -The named variants serve as worked starter examples; real consumers -add their own `variants:` entries naming the build configuration they -ship. Constraints in the feature model enforce eclipse's metamodel -graph_checks (e.g. ASIL-B implies ISO 26262 compliance, security- -required implies ISO/SAE 21434). +Three more repos are external forks (`nlohmann_json`, +`bazel_registry_ui`, `rules_rust`) and are skipped because they +mirror upstream projects with their own metamodel conventions. -**What this demonstrates**: rivet's variant subsystem (REQ-085, FEAT-106 -through FEAT-114) is the solved-form answer to eclipse-score's open -stakeholder requirement. Pulseengine doesn't just round-trip eclipse's -existing data — it offers a model for the part of eclipse's process -that's currently TBD. +## Contributing -## Archived repos +PRs welcome for: converter improvements (`tools/score_import.py`), +variant model extensions (`variants/`), documentation, additional +named variants, fixes to the falsification-journey log. -16 eclipse-score repos marked `archived: true` on GitHub are *excluded* -from the fork by user policy (see commit messages). The skip list (in -`tools/score_import.py`'s clone block, run manually) is: +For schema changes that touch `vendor/rivet-schemas/`, please also +file an issue on [pulseengine/rivet](https://github.com/pulseengine/rivet) +so the change propagates upstream — the vendored copy is a snapshot, +not a fork of the schema itself. -`examples, inc_abi_compatible_datatypes, inc_ai_platform, -inc_config_management, inc_feo, inc_gen_ai, inc_json, inc_mw_com, -inc_mw_log, inc_process_test_management, inc_process_variant_management, -inc_score_codegen, operating_system, test_integration, test_module_a, -test_module_b` +For anything that needs to change in eclipse-score's RST or metamodel, +please contribute upstream at the relevant +[github.com/eclipse-score](https://github.com/eclipse-score) repository. + +## License + +Apache-2.0 — matches both eclipse-score and rivet. See +[LICENSE](LICENSE). + +The eclipse-score upstream content materialised under +`.rivet/repos//` retains its original licensing. The converter +output under `rivet//` is a derivative work and inherits the +upstream's Apache-2.0 license, plus this workspace's Apache-2.0 for +the overlay (converter, schema vendoring, variant model, this README). diff --git a/rivet.yaml b/rivet.yaml index 3b3c3f1..1125fc5 100644 --- a/rivet.yaml +++ b/rivet.yaml @@ -141,64 +141,384 @@ sources: - path: rivet/eclipse-score-tools/artifacts format: generic-yaml docs: - - rivet/eclipse-score-.eclipsefdn/docs - - rivet/eclipse-score-.github/docs - - rivet/eclipse-score-apt-install/docs - - rivet/eclipse-score-baselibs/docs - - rivet/eclipse-score-baselibs_rust/docs - - rivet/eclipse-score-bazel-tools-cc/docs - - rivet/eclipse-score-bazel-tools-python/docs - - rivet/eclipse-score-bazel_cpp_toolchains/docs - - rivet/eclipse-score-bazel_platforms/docs - - rivet/eclipse-score-bazel_registry/docs - - rivet/eclipse-score-cicd-actions/docs - - rivet/eclipse-score-cicd-workflows/docs - - rivet/eclipse-score-communication/docs - - rivet/eclipse-score-config_management/docs - - rivet/eclipse-score-dash-license-scan/docs - - rivet/eclipse-score-dev_playground/docs - - rivet/eclipse-score-devcontainer/docs - - rivet/eclipse-score-docs-as-code/docs - - rivet/eclipse-score-eclipse-score-website/docs - - rivet/eclipse-score-eclipse-score-website-preview/docs - - rivet/eclipse-score-eclipse-score-website-published/docs - - rivet/eclipse-score-eclipse-score.github.io/docs - - rivet/eclipse-score-feo/docs - - rivet/eclipse-score-ferrocene_toolchain_builder/docs - - rivet/eclipse-score-inc_daal/docs - - rivet/eclipse-score-inc_diagnostics/docs - - rivet/eclipse-score-inc_os_autosd/docs - - rivet/eclipse-score-inc_security_crypto/docs - - rivet/eclipse-score-inc_someip_gateway/docs - - rivet/eclipse-score-inc_time/docs - - rivet/eclipse-score-infrastructure/docs - - rivet/eclipse-score-itf/docs - - rivet/eclipse-score-kyron/docs - - rivet/eclipse-score-lifecycle/docs - - rivet/eclipse-score-logging/docs - - rivet/eclipse-score-mcp-servers/docs - - rivet/eclipse-score-module_template/docs - - rivet/eclipse-score-more-disk-space/docs - - rivet/eclipse-score-orchestrator/docs - - rivet/eclipse-score-os_images/docs - - rivet/eclipse-score-persistency/docs - - rivet/eclipse-score-process-description/docs - - rivet/eclipse-score-qnx_unit_tests/docs - - rivet/eclipse-score-reference_integration/docs - - rivet/eclipse-score-rules_imagefs/docs - - rivet/eclipse-score-sbom-tool/docs - - rivet/eclipse-score-score/docs - - rivet/eclipse-score-score-crates/docs - - rivet/eclipse-score-score_cpp_policies/docs - - rivet/eclipse-score-score_rust_policies/docs - - rivet/eclipse-score-scrample/docs - - rivet/eclipse-score-testing_tools/docs - - rivet/eclipse-score-toolchains_gcc/docs - - rivet/eclipse-score-toolchains_gcc_packages/docs - - rivet/eclipse-score-toolchains_qnx/docs - - rivet/eclipse-score-toolchains_rust/docs - - rivet/eclipse-score-tooling/docs - - rivet/eclipse-score-tools/docs + - rivet/eclipse-score-.eclipsefdn + - rivet/eclipse-score-.github + - rivet/eclipse-score-apt-install + - rivet/eclipse-score-baselibs + - rivet/eclipse-score-baselibs/docs/docs/json/vajson + - rivet/eclipse-score-baselibs/docs/docs/json/vajson/architecture + - rivet/eclipse-score-baselibs/docs/docs/json/vajson/requirements + - rivet/eclipse-score-baselibs_rust + - rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust + - rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/architecture + - rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/requirements + - rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log + - rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/architecture + - rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/detailed_design + - rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/requirements + - rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/safety_analysis + - rivet/eclipse-score-baselibs_rust/docs/docs/features/baselibs_rust/requirements + - rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/manual + - rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/release + - rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/safety_mgt + - rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/verification + - rivet/eclipse-score-bazel-tools-cc + - rivet/eclipse-score-bazel-tools-cc/docs/docs + - rivet/eclipse-score-bazel-tools-python + - rivet/eclipse-score-bazel_cpp_toolchains + - rivet/eclipse-score-bazel_platforms + - rivet/eclipse-score-bazel_registry + - rivet/eclipse-score-cicd-actions + - rivet/eclipse-score-cicd-workflows + - rivet/eclipse-score-communication + - rivet/eclipse-score-config_management + - rivet/eclipse-score-config_management/docs/docs + - rivet/eclipse-score-dash-license-scan + - rivet/eclipse-score-dev_playground + - rivet/eclipse-score-devcontainer + - rivet/eclipse-score-docs-as-code + - rivet/eclipse-score-docs-as-code/docs/docs/internals/requirements + - rivet/eclipse-score-eclipse-score-website + - rivet/eclipse-score-eclipse-score-website-preview + - rivet/eclipse-score-eclipse-score-website-published + - rivet/eclipse-score-eclipse-score.github.io + - rivet/eclipse-score-feo + - rivet/eclipse-score-feo/docs/docs + - rivet/eclipse-score-ferrocene_toolchain_builder + - rivet/eclipse-score-inc_daal + - rivet/eclipse-score-inc_daal/docs/docs + - rivet/eclipse-score-inc_diagnostics + - rivet/eclipse-score-inc_diagnostics/docs/docs + - rivet/eclipse-score-inc_os_autosd + - rivet/eclipse-score-inc_os_autosd/docs/docs + - rivet/eclipse-score-inc_security_crypto + - rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture + - rivet/eclipse-score-inc_security_crypto/docs/score/crypto/daemon/data_manager/docs + - rivet/eclipse-score-inc_someip_gateway + - rivet/eclipse-score-inc_someip_gateway/docs/docs/architecture + - rivet/eclipse-score-inc_someip_gateway/docs/docs/requirements + - rivet/eclipse-score-inc_someip_gateway/docs/docs/tc8_conformance + - rivet/eclipse-score-inc_time + - rivet/eclipse-score-infrastructure + - rivet/eclipse-score-itf + - rivet/eclipse-score-kyron + - rivet/eclipse-score-lifecycle + - rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor + - rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/architecture + - rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/detailed_design + - rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/requirements + - rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/safety_analysis + - rivet/eclipse-score-lifecycle/docs/docs/release_notes + - rivet/eclipse-score-logging + - rivet/eclipse-score-logging/docs/docs + - rivet/eclipse-score-logging/docs/docs/design_decisions + - rivet/eclipse-score-mcp-servers + - rivet/eclipse-score-module_template + - rivet/eclipse-score-module_template/docs/docs/features/feature_example/architecture + - rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_analysis + - rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_planning + - rivet/eclipse-score-module_template/docs/docs/features/feature_example/security_analysis + - rivet/eclipse-score-module_template/docs/docs/features/feature_example/security_planning + - rivet/eclipse-score-module_template/docs/docs/manuals + - rivet/eclipse-score-module_template/docs/docs/release + - rivet/eclipse-score-module_template/docs/docs/safety_mgt + - rivet/eclipse-score-module_template/docs/docs/security_mgt + - rivet/eclipse-score-module_template/docs/docs/verification_report + - rivet/eclipse-score-module_template/docs/examples/docs + - rivet/eclipse-score-module_template/docs/score/component_example/docs + - rivet/eclipse-score-module_template/docs/score/component_example/docs/architecture + - rivet/eclipse-score-module_template/docs/score/component_example/docs/detailed_design + - rivet/eclipse-score-module_template/docs/score/component_example/docs/requirements + - rivet/eclipse-score-module_template/docs/score/component_example/docs/safety_analysis + - rivet/eclipse-score-more-disk-space + - rivet/eclipse-score-orchestrator + - rivet/eclipse-score-os_images + - rivet/eclipse-score-persistency + - rivet/eclipse-score-persistency/docs/docs/manual + - rivet/eclipse-score-persistency/docs/docs/release + - rivet/eclipse-score-persistency/docs/docs/safety_mgt + - rivet/eclipse-score-persistency/docs/docs/security_mgt + - rivet/eclipse-score-persistency/docs/docs/verification + - rivet/eclipse-score-persistency/docs/score/json/docs + - rivet/eclipse-score-persistency/docs/score/kvs + - rivet/eclipse-score-persistency/docs/score/kvs/docs/architecture + - rivet/eclipse-score-persistency/docs/score/kvs/docs/detailed_design + - rivet/eclipse-score-persistency/docs/score/kvs/docs/requirements + - rivet/eclipse-score-persistency/docs/score/kvs/docs/safety_analysis + - rivet/eclipse-score-process-description + - rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/release + - rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt + - rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt + - rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/verification + - rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name + - rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/architecture + - rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/requirements + - rivet/eclipse-score-process-description/docs/process/folder_templates/platform/requirements/stakeholder + - rivet/eclipse-score-process-description/docs/process/folder_templates/tools + - rivet/eclipse-score-process-description/docs/process/general_concepts + - rivet/eclipse-score-process-description/docs/process/introduction + - rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design + - rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/change_management + - rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management + - rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management + - rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/implementation + - rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/platform_management + - rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution + - rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/process_management + - rivet/eclipse-score-process-description/docs/process/process_areas/process_management/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/quality_management + - rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/release_management + - rivet/eclipse-score-process-description/docs/process/process_areas/release_management/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering + - rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis + - rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/safety_management + - rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis + - rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/security_management + - rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/tool_management + - rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance + - rivet/eclipse-score-process-description/docs/process/process_areas/verification + - rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance + - rivet/eclipse-score-process-description/docs/process/release_notes + - rivet/eclipse-score-process-description/docs/process/roles + - rivet/eclipse-score-process-description/docs/process/standards/aspice_40 + - rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic + - rivet/eclipse-score-process-description/docs/process/standards/aspice_40/man + - rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle + - rivet/eclipse-score-process-description/docs/process/standards/aspice_40/pim + - rivet/eclipse-score-process-description/docs/process/standards/aspice_40/reu + - rivet/eclipse-score-process-description/docs/process/standards/aspice_40/spl + - rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup + - rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe + - rivet/eclipse-score-process-description/docs/process/standards/iso26262 + - rivet/eclipse-score-process-description/docs/process/standards/isopas8926 + - rivet/eclipse-score-process-description/docs/process/standards/isosae21434 + - rivet/eclipse-score-process-description/docs/process/trustable + - rivet/eclipse-score-process-description/docs/process/trustable/assertions + - rivet/eclipse-score-process-description/docs/process/trustable/tenets + - rivet/eclipse-score-qnx_unit_tests + - rivet/eclipse-score-reference_integration + - rivet/eclipse-score-reference_integration/docs/docs/score_releases + - rivet/eclipse-score-reference_integration/docs/docs/verification_report + - rivet/eclipse-score-rules_imagefs + - rivet/eclipse-score-sbom-tool + - rivet/eclipse-score-score + - rivet/eclipse-score-score-crates + - rivet/eclipse-score-score-crates/docs/docs/pastey/docs + - rivet/eclipse-score-score/docs/docs/contribute + - rivet/eclipse-score-score/docs/docs/contribute/contribution_request + - rivet/eclipse-score-score/docs/docs/contribute/development + - rivet/eclipse-score-score/docs/docs/contribute/development/cpp + - rivet/eclipse-score-score/docs/docs/contribute/development/python + - rivet/eclipse-score-score/docs/docs/contribute/development/rust + - rivet/eclipse-score-score/docs/docs/contribute/general + - rivet/eclipse-score-score/docs/docs/design_decisions + - rivet/eclipse-score-score/docs/docs/features/ai_platform + - rivet/eclipse-score-score/docs/docs/features/ai_platform/gen_ai + - rivet/eclipse-score-score/docs/docs/features/ai_platform/gen_ai/requirements + - rivet/eclipse-score-score/docs/docs/features/ai_platform/requirements + - rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging + - rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/docs/architecture + - rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/docs/requirements + - rivet/eclipse-score-score/docs/docs/features/analysis-infra/tracing/docs/architecture + - rivet/eclipse-score-score/docs/docs/features/baselibs + - rivet/eclipse-score-score/docs/docs/features/baselibs/abi_compatible_data_types + - rivet/eclipse-score-score/docs/docs/features/baselibs/docs/architecture + - rivet/eclipse-score-score/docs/docs/features/baselibs/docs/requirements + - rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_planning + - rivet/eclipse-score-score/docs/docs/features/code_generation + - rivet/eclipse-score-score/docs/docs/features/code_generation/requirements + - rivet/eclipse-score-score/docs/docs/features/communication + - rivet/eclipse-score-score/docs/docs/features/communication/docs/architecture + - rivet/eclipse-score-score/docs/docs/features/communication/docs/requirements + - rivet/eclipse-score-score/docs/docs/features/communication/ipc + - rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/architecture + - rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/requirements + - rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_planning + - rivet/eclipse-score-score/docs/docs/features/communication/some_ip_gateway + - rivet/eclipse-score-score/docs/docs/features/communication/some_ip_gateway/requirements + - rivet/eclipse-score-score/docs/docs/features/configuration/config_mgmt + - rivet/eclipse-score-score/docs/docs/features/configuration/config_mgmt/requirements + - rivet/eclipse-score-score/docs/docs/features/configuration/config_model + - rivet/eclipse-score-score/docs/docs/features/diagnostics + - rivet/eclipse-score-score/docs/docs/features/diagnostics/requirements + - rivet/eclipse-score-score/docs/docs/features/frameworks/daal + - rivet/eclipse-score-score/docs/docs/features/frameworks/daal/requirements + - rivet/eclipse-score-score/docs/docs/features/frameworks/feo + - rivet/eclipse-score-score/docs/docs/features/frameworks/feo/architecture + - rivet/eclipse-score-score/docs/docs/features/frameworks/feo/requirements + - rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_analysis + - rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_planning + - rivet/eclipse-score-score/docs/docs/features/lifecycle + - rivet/eclipse-score-score/docs/docs/features/lifecycle/architecture + - rivet/eclipse-score-score/docs/docs/features/lifecycle/requirements + - rivet/eclipse-score-score/docs/docs/features/orchestration + - rivet/eclipse-score-score/docs/docs/features/orchestration/architecture + - rivet/eclipse-score-score/docs/docs/features/orchestration/requirements + - rivet/eclipse-score-score/docs/docs/features/orchestration/safety_analysis + - rivet/eclipse-score-score/docs/docs/features/orchestration/safety_planning + - rivet/eclipse-score-score/docs/docs/features/persistency + - rivet/eclipse-score-score/docs/docs/features/persistency/architecture + - rivet/eclipse-score-score/docs/docs/features/persistency/requirements + - rivet/eclipse-score-score/docs/docs/features/persistency/safety_analysis + - rivet/eclipse-score-score/docs/docs/features/persistency/safety_planning + - rivet/eclipse-score-score/docs/docs/features/persistency/security_analysis + - rivet/eclipse-score-score/docs/docs/features/persistency/security_planning + - rivet/eclipse-score-score/docs/docs/features/security_crypto + - rivet/eclipse-score-score/docs/docs/features/security_crypto/requirements + - rivet/eclipse-score-score/docs/docs/features/time + - rivet/eclipse-score-score/docs/docs/features/time/docs/requirements + - rivet/eclipse-score-score/docs/docs/handbook + - rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/detailed_design + - rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/detailed_design + - rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/detailed_design + - rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/modules/baselibs/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/manual + - rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/release + - rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt + - rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/verification + - rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/detailed_design + - rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/detailed_design + - rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/json_wrapper/requirements + - rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/modules/baselibs/language/futurecpp/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/detailed_design + - rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/baselibs/os/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/detailed_design + - rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/detailed_design + - rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs + - rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/detailed_design + - rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/modules/communication/configuration/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/communication/docs + - rivet/eclipse-score-score/docs/docs/modules/communication/docs/manual + - rivet/eclipse-score-score/docs/docs/modules/communication/docs/release + - rivet/eclipse-score-score/docs/docs/modules/communication/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt + - rivet/eclipse-score-score/docs/docs/modules/communication/docs/verification + - rivet/eclipse-score-score/docs/docs/modules/communication/frontent/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/communication/ipc_binding/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs + - rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/detailed_design + - rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/modules/communication/message_passing/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/communication/mock_binding/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/feo/docs/manual + - rivet/eclipse-score-score/docs/docs/modules/feo/docs/release + - rivet/eclipse-score-score/docs/docs/modules/feo/docs/safety_mgt + - rivet/eclipse-score-score/docs/docs/modules/feo/docs/verification + - rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs + - rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/detailed_design + - rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/modules/lifecycle + - rivet/eclipse-score-score/docs/docs/modules/logging/docs + - rivet/eclipse-score-score/docs/docs/modules/logging/logging/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/orchestrator + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/manual + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/release + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/verification + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/detailed_design + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/detailed_design + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/safety_analysis + - rivet/eclipse-score-score/docs/docs/modules/os/docs + - rivet/eclipse-score-score/docs/docs/modules/os/docs/requirements + - rivet/eclipse-score-score/docs/docs/modules/os/libc/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/os/libcpp/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/os/message_passing/docs/architecture + - rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/community + - rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/onboarding + - rivet/eclipse-score-score/docs/docs/modules/tracing/docs + - rivet/eclipse-score-score/docs/docs/modules/tracing/tracing/docs/architecture + - rivet/eclipse-score-score/docs/docs/platform_management_plan + - rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment + - rivet/eclipse-score-score/docs/docs/requirements/platform_assumptions + - rivet/eclipse-score-score/docs/docs/requirements/stakeholder + - rivet/eclipse-score-score/docs/docs/safety + - rivet/eclipse-score-score/docs/docs/score_releases/score_releases + - rivet/eclipse-score-score/docs/docs/score_releases/verification + - rivet/eclipse-score-score/docs/docs/score_tools + - rivet/eclipse-score-score/docs/docs/score_tools/tools_build_development + - rivet/eclipse-score-score/docs/docs/score_tools/tools_compiler + - rivet/eclipse-score-score/docs/docs/score_tools/tools_documentation + - rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality + - rivet/eclipse-score-score/docs/docs/score_tools/tools_testing_frameworks + - rivet/eclipse-score-score/docs/docs/score_tools/tools_vc_cicd + - rivet/eclipse-score-score_cpp_policies + - rivet/eclipse-score-score_rust_policies + - rivet/eclipse-score-scrample + - rivet/eclipse-score-testing_tools + - rivet/eclipse-score-toolchains_gcc + - rivet/eclipse-score-toolchains_gcc_packages + - rivet/eclipse-score-toolchains_qnx + - rivet/eclipse-score-toolchains_rust + - rivet/eclipse-score-tooling + - rivet/eclipse-score-tools externals: eclipse-score-.eclipsefdn: @@ -366,7 +686,7 @@ externals: ref: fcdb7357767bf3b5a3bb4255f0444b1a52cdc5da prefix: persistency eclipse-score-process-description: - git: https://github.com/eclipse-score/process-description + git: https://github.com/eclipse-score/process_description ref: b5d98e957fdd33a5a175595a1fafff523efdb627 prefix: process-description eclipse-score-qnx_unit_tests: diff --git a/rivet/eclipse-score-baselibs/docs/docs/json/vajson/architecture/index.md b/rivet/eclipse-score-baselibs/docs/docs/json/vajson/architecture/index.md index e16a865..effea5e 100644 --- a/rivet/eclipse-score-baselibs/docs/docs/json/vajson/architecture/index.md +++ b/rivet/eclipse-score-baselibs/docs/docs/json/vajson/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-89805 +id: DOC-INDEX-84906 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-baselibs/docs/docs/json/vajson/index.md b/rivet/eclipse-score-baselibs/docs/docs/json/vajson/index.md index 0f587d2..26458fc 100644 --- a/rivet/eclipse-score-baselibs/docs/docs/json/vajson/index.md +++ b/rivet/eclipse-score-baselibs/docs/docs/json/vajson/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-87116 +id: DOC-INDEX-8662 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-baselibs/docs/docs/json/vajson/requirements/index.md b/rivet/eclipse-score-baselibs/docs/docs/json/vajson/requirements/index.md index 92c35aa..9f40097 100644 --- a/rivet/eclipse-score-baselibs/docs/docs/json/vajson/requirements/index.md +++ b/rivet/eclipse-score-baselibs/docs/docs/json/vajson/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-48254 +id: DOC-INDEX-20504 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-baselibs/rivet.yaml b/rivet/eclipse-score-baselibs/rivet.yaml index 1d784df..5689a02 100644 --- a/rivet/eclipse-score-baselibs/rivet.yaml +++ b/rivet/eclipse-score-baselibs/rivet.yaml @@ -13,4 +13,6 @@ sources: format: generic-yaml docs: - - docs + - docs/docs/json/vajson + - docs/docs/json/vajson/architecture + - docs/docs/json/vajson/requirements diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/architecture/index.md b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/architecture/index.md index f4b2cf1..27e5545 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/architecture/index.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-40522 +id: DOC-INDEX-12405 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/index.md b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/index.md index f22d86f..ff77e60 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/index.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-99297 +id: DOC-INDEX-35973 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/requirements/index.md b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/requirements/index.md index e1dba1f..fed12b6 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/requirements/index.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/containers_rust/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-30156 +id: DOC-INDEX-21830 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/architecture/index.md b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/architecture/index.md index 5cc97f2..bebaf35 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/architecture/index.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-83257 +id: DOC-INDEX-15958 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/component_classification.md b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/component_classification.md index 7a09971..105bc92 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/component_classification.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/component_classification.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-CLASSIFICATION-79718 +id: DOC-COMPONENT-CLASSIFICATION-76792 title: Component Classification type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/detailed_design/index.md b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/detailed_design/index.md index 873bd70..0b929d1 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/detailed_design/index.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/detailed_design/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-98452 +id: DOC-INDEX-34133 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/index.md b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/index.md index 5e5df92..f1d0a8d 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/index.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-53729 +id: DOC-INDEX-13528 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/requirements/index.md b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/requirements/index.md index 70d7614..c375648 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/requirements/index.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-8214 +id: DOC-INDEX-3264 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/safety_analysis/dfa.md b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/safety_analysis/dfa.md index 3fb22ae..53e16cf 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/safety_analysis/dfa.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-22181 +id: DOC-DFA-97554 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/safety_analysis/fmea.md b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/safety_analysis/fmea.md index e86bd61..8d9b5aa 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/safety_analysis/fmea.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/baselibs_rust/log/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-95229 +id: DOC-FMEA-28598 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/features/baselibs_rust/requirements/index.md b/rivet/eclipse-score-baselibs_rust/docs/docs/features/baselibs_rust/requirements/index.md index 750ddd7..0217310 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/features/baselibs_rust/requirements/index.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/features/baselibs_rust/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-8567 +id: DOC-INDEX-79033 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/manual/safety_manual.md b/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/manual/safety_manual.md index f43b4d1..a7c6e66 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/manual/safety_manual.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/manual/safety_manual.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-MANUAL-71802 +id: DOC-SAFETY-MANUAL-79606 title: Safety Manual type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/release/release_note.md b/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/release/release_note.md index f6ebcf3..8790cad 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/release/release_note.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/release/release_note.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-NOTE-60928 +id: DOC-RELEASE-NOTE-78169 title: Release Note type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/safety_mgt/module_safety_package_fdr.md b/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/safety_mgt/module_safety_package_fdr.md index aaff324..fea5dc6 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/safety_mgt/module_safety_package_fdr.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/safety_mgt/module_safety_package_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PACKAGE-FDR-52582 +id: DOC-MODULE-SAFETY-PACKAGE-FDR-1950 title: Module Safety Package Fdr type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/safety_mgt/module_safety_plan_fdr.md b/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/safety_mgt/module_safety_plan_fdr.md index 9ee3df8..5c30c78 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/safety_mgt/module_safety_plan_fdr.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/safety_mgt/module_safety_plan_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PLAN-FDR-59261 +id: DOC-MODULE-SAFETY-PLAN-FDR-5428 title: Module Safety Plan Fdr type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/verification/module_verification_report.md b/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/verification/module_verification_report.md index 27ae8f1..8b7b9aa 100644 --- a/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/verification/module_verification_report.md +++ b/rivet/eclipse-score-baselibs_rust/docs/docs/module_docs/verification/module_verification_report.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-VERIFICATION-REPORT-66650 +id: DOC-MODULE-VERIFICATION-REPORT-55578 title: Module Verification Report type: specification status: approved diff --git a/rivet/eclipse-score-baselibs_rust/rivet.yaml b/rivet/eclipse-score-baselibs_rust/rivet.yaml index 0e686e8..f5099bf 100644 --- a/rivet/eclipse-score-baselibs_rust/rivet.yaml +++ b/rivet/eclipse-score-baselibs_rust/rivet.yaml @@ -13,4 +13,16 @@ sources: format: generic-yaml docs: - - docs + - docs/docs/baselibs_rust/containers_rust + - docs/docs/baselibs_rust/containers_rust/architecture + - docs/docs/baselibs_rust/containers_rust/requirements + - docs/docs/baselibs_rust/log + - docs/docs/baselibs_rust/log/architecture + - docs/docs/baselibs_rust/log/detailed_design + - docs/docs/baselibs_rust/log/requirements + - docs/docs/baselibs_rust/log/safety_analysis + - docs/docs/features/baselibs_rust/requirements + - docs/docs/module_docs/manual + - docs/docs/module_docs/release + - docs/docs/module_docs/safety_mgt + - docs/docs/module_docs/verification diff --git a/rivet/eclipse-score-bazel-tools-cc/docs/docs/index.md b/rivet/eclipse-score-bazel-tools-cc/docs/docs/index.md index 9e947bf..c608ece 100644 --- a/rivet/eclipse-score-bazel-tools-cc/docs/docs/index.md +++ b/rivet/eclipse-score-bazel-tools-cc/docs/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-13242 +id: DOC-INDEX-6961 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-bazel-tools-cc/rivet.yaml b/rivet/eclipse-score-bazel-tools-cc/rivet.yaml index e9f469d..b4341e0 100644 --- a/rivet/eclipse-score-bazel-tools-cc/rivet.yaml +++ b/rivet/eclipse-score-bazel-tools-cc/rivet.yaml @@ -13,4 +13,4 @@ sources: format: generic-yaml docs: - - docs + - docs/docs diff --git a/rivet/eclipse-score-config_management/docs/docs/index.md b/rivet/eclipse-score-config_management/docs/docs/index.md index 219f921..bb1f35f 100644 --- a/rivet/eclipse-score-config_management/docs/docs/index.md +++ b/rivet/eclipse-score-config_management/docs/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-8551 +id: DOC-INDEX-49416 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-config_management/rivet.yaml b/rivet/eclipse-score-config_management/rivet.yaml index 4b660f9..949ed16 100644 --- a/rivet/eclipse-score-config_management/rivet.yaml +++ b/rivet/eclipse-score-config_management/rivet.yaml @@ -13,4 +13,4 @@ sources: format: generic-yaml docs: - - docs + - docs/docs diff --git a/rivet/eclipse-score-docs-as-code/docs/docs/internals/requirements/requirements.md b/rivet/eclipse-score-docs-as-code/docs/docs/internals/requirements/requirements.md index d8c6a94..1808490 100644 --- a/rivet/eclipse-score-docs-as-code/docs/docs/internals/requirements/requirements.md +++ b/rivet/eclipse-score-docs-as-code/docs/docs/internals/requirements/requirements.md @@ -1,5 +1,5 @@ --- -id: DOC-REQUIREMENTS-3107 +id: DOC-REQUIREMENTS-39484 title: Requirements type: specification status: approved diff --git a/rivet/eclipse-score-docs-as-code/rivet.yaml b/rivet/eclipse-score-docs-as-code/rivet.yaml index 9c4bb1e..ac0a65b 100644 --- a/rivet/eclipse-score-docs-as-code/rivet.yaml +++ b/rivet/eclipse-score-docs-as-code/rivet.yaml @@ -20,4 +20,4 @@ sources: format: generic-yaml docs: - - docs + - docs/docs/internals/requirements diff --git a/rivet/eclipse-score-feo/docs/docs/index.md b/rivet/eclipse-score-feo/docs/docs/index.md index 8dfb583..9e9fcf3 100644 --- a/rivet/eclipse-score-feo/docs/docs/index.md +++ b/rivet/eclipse-score-feo/docs/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-8994 +id: DOC-INDEX-16545 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-feo/rivet.yaml b/rivet/eclipse-score-feo/rivet.yaml index b163b27..6a25b80 100644 --- a/rivet/eclipse-score-feo/rivet.yaml +++ b/rivet/eclipse-score-feo/rivet.yaml @@ -13,4 +13,4 @@ sources: format: generic-yaml docs: - - docs + - docs/docs diff --git a/rivet/eclipse-score-inc_daal/docs/docs/index.md b/rivet/eclipse-score-inc_daal/docs/docs/index.md index fad251b..7f94ab4 100644 --- a/rivet/eclipse-score-inc_daal/docs/docs/index.md +++ b/rivet/eclipse-score-inc_daal/docs/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-48621 +id: DOC-INDEX-52038 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-inc_daal/rivet.yaml b/rivet/eclipse-score-inc_daal/rivet.yaml index d239e08..334dbfd 100644 --- a/rivet/eclipse-score-inc_daal/rivet.yaml +++ b/rivet/eclipse-score-inc_daal/rivet.yaml @@ -13,4 +13,4 @@ sources: format: generic-yaml docs: - - docs + - docs/docs diff --git a/rivet/eclipse-score-inc_diagnostics/docs/docs/index.md b/rivet/eclipse-score-inc_diagnostics/docs/docs/index.md index 3b9ead4..fdc0084 100644 --- a/rivet/eclipse-score-inc_diagnostics/docs/docs/index.md +++ b/rivet/eclipse-score-inc_diagnostics/docs/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-64920 +id: DOC-INDEX-69329 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-inc_diagnostics/rivet.yaml b/rivet/eclipse-score-inc_diagnostics/rivet.yaml index e718a8a..16a01ac 100644 --- a/rivet/eclipse-score-inc_diagnostics/rivet.yaml +++ b/rivet/eclipse-score-inc_diagnostics/rivet.yaml @@ -13,4 +13,4 @@ sources: format: generic-yaml docs: - - docs + - docs/docs diff --git a/rivet/eclipse-score-inc_os_autosd/docs/docs/index.md b/rivet/eclipse-score-inc_os_autosd/docs/docs/index.md index d14163f..8abd618 100644 --- a/rivet/eclipse-score-inc_os_autosd/docs/docs/index.md +++ b/rivet/eclipse-score-inc_os_autosd/docs/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-84921 +id: DOC-INDEX-61529 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-inc_os_autosd/rivet.yaml b/rivet/eclipse-score-inc_os_autosd/rivet.yaml index 547c8a9..e02112c 100644 --- a/rivet/eclipse-score-inc_os_autosd/rivet.yaml +++ b/rivet/eclipse-score-inc_os_autosd/rivet.yaml @@ -13,4 +13,4 @@ sources: format: generic-yaml docs: - - docs + - docs/docs diff --git a/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/design_decisions.md b/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/design_decisions.md index 8eb47d0..30780f6 100644 --- a/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/design_decisions.md +++ b/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/design_decisions.md @@ -1,5 +1,5 @@ --- -id: DOC-DESIGN-DECISIONS-27627 +id: DOC-DESIGN-DECISIONS-60571 title: Design Decisions type: specification status: approved diff --git a/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/dynamic_architecture.md b/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/dynamic_architecture.md index fab1d5b..0737760 100644 --- a/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/dynamic_architecture.md +++ b/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/dynamic_architecture.md @@ -1,5 +1,5 @@ --- -id: DOC-DYNAMIC-ARCHITECTURE-61265 +id: DOC-DYNAMIC-ARCHITECTURE-88922 title: Dynamic Architecture type: specification status: approved diff --git a/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/index.md b/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/index.md index 631a07b..f20b323 100644 --- a/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/index.md +++ b/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-123 +id: DOC-INDEX-89411 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/interfaces.md b/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/interfaces.md index d79cb8f..df0cb79 100644 --- a/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/interfaces.md +++ b/rivet/eclipse-score-inc_security_crypto/docs/docs/crypto/architecture/interfaces.md @@ -1,5 +1,5 @@ --- -id: DOC-INTERFACES-67066 +id: DOC-INTERFACES-83458 title: Interfaces type: specification status: approved diff --git a/rivet/eclipse-score-inc_security_crypto/docs/score/crypto/daemon/data_manager/docs/index.md b/rivet/eclipse-score-inc_security_crypto/docs/score/crypto/daemon/data_manager/docs/index.md index a456182..8dbb12e 100644 --- a/rivet/eclipse-score-inc_security_crypto/docs/score/crypto/daemon/data_manager/docs/index.md +++ b/rivet/eclipse-score-inc_security_crypto/docs/score/crypto/daemon/data_manager/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-93425 +id: DOC-INDEX-85639 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-inc_security_crypto/rivet.yaml b/rivet/eclipse-score-inc_security_crypto/rivet.yaml index ed6dc22..d44bd1e 100644 --- a/rivet/eclipse-score-inc_security_crypto/rivet.yaml +++ b/rivet/eclipse-score-inc_security_crypto/rivet.yaml @@ -13,4 +13,5 @@ sources: format: generic-yaml docs: - - docs + - docs/docs/crypto/architecture + - docs/score/crypto/daemon/data_manager/docs diff --git a/rivet/eclipse-score-inc_someip_gateway/docs/docs/architecture/components.md b/rivet/eclipse-score-inc_someip_gateway/docs/docs/architecture/components.md index 2e52679..a501241 100644 --- a/rivet/eclipse-score-inc_someip_gateway/docs/docs/architecture/components.md +++ b/rivet/eclipse-score-inc_someip_gateway/docs/docs/architecture/components.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENTS-79813 +id: DOC-COMPONENTS-91564 title: Components type: specification status: approved diff --git a/rivet/eclipse-score-inc_someip_gateway/docs/docs/architecture/dec_someipgw_registration.md b/rivet/eclipse-score-inc_someip_gateway/docs/docs/architecture/dec_someipgw_registration.md index 9e82fe6..9a3ac53 100644 --- a/rivet/eclipse-score-inc_someip_gateway/docs/docs/architecture/dec_someipgw_registration.md +++ b/rivet/eclipse-score-inc_someip_gateway/docs/docs/architecture/dec_someipgw_registration.md @@ -1,5 +1,5 @@ --- -id: DOC-DEC-SOMEIPGW-REGISTRATION-16425 +id: DOC-DEC-SOMEIPGW-REGISTRATION-22025 title: Dec Someipgw Registration type: specification status: approved diff --git a/rivet/eclipse-score-inc_someip_gateway/docs/docs/requirements/stakeholder.md b/rivet/eclipse-score-inc_someip_gateway/docs/docs/requirements/stakeholder.md index 92dadc5..f88fc79 100644 --- a/rivet/eclipse-score-inc_someip_gateway/docs/docs/requirements/stakeholder.md +++ b/rivet/eclipse-score-inc_someip_gateway/docs/docs/requirements/stakeholder.md @@ -1,5 +1,5 @@ --- -id: DOC-STAKEHOLDER-70484 +id: DOC-STAKEHOLDER-54603 title: Stakeholder type: specification status: approved diff --git a/rivet/eclipse-score-inc_someip_gateway/docs/docs/tc8_conformance/requirements.md b/rivet/eclipse-score-inc_someip_gateway/docs/docs/tc8_conformance/requirements.md index f2d3ef2..5f426f0 100644 --- a/rivet/eclipse-score-inc_someip_gateway/docs/docs/tc8_conformance/requirements.md +++ b/rivet/eclipse-score-inc_someip_gateway/docs/docs/tc8_conformance/requirements.md @@ -1,5 +1,5 @@ --- -id: DOC-REQUIREMENTS-5945 +id: DOC-REQUIREMENTS-27783 title: Requirements type: specification status: approved diff --git a/rivet/eclipse-score-inc_someip_gateway/rivet.yaml b/rivet/eclipse-score-inc_someip_gateway/rivet.yaml index df8d81e..ac5c546 100644 --- a/rivet/eclipse-score-inc_someip_gateway/rivet.yaml +++ b/rivet/eclipse-score-inc_someip_gateway/rivet.yaml @@ -13,4 +13,6 @@ sources: format: generic-yaml docs: - - docs + - docs/docs/architecture + - docs/docs/requirements + - docs/docs/tc8_conformance diff --git a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/architecture/index.md b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/architecture/index.md index a356d75..5ece53d 100644 --- a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/architecture/index.md +++ b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-22941 +id: DOC-INDEX-70393 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/component_classification.md b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/component_classification.md index 8f7acc7..3c04d35 100644 --- a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/component_classification.md +++ b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/component_classification.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-CLASSIFICATION-30781 +id: DOC-COMPONENT-CLASSIFICATION-13489 title: Component Classification type: specification status: approved diff --git a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/detailed_design/index.md b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/detailed_design/index.md index a33b213..c53ab42 100644 --- a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/detailed_design/index.md +++ b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/detailed_design/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-36547 +id: DOC-INDEX-74927 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/index.md b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/index.md index 271ce4e..d7cfe0a 100644 --- a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/index.md +++ b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-37361 +id: DOC-INDEX-38627 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/requirements/index.md b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/requirements/index.md index c369951..a749344 100644 --- a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/requirements/index.md +++ b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-48035 +id: DOC-INDEX-98508 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/safety_analysis/dfa.md b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/safety_analysis/dfa.md index 4e9bbb9..7192229 100644 --- a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/safety_analysis/dfa.md +++ b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-20599 +id: DOC-DFA-73079 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/safety_analysis/fmea.md b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/safety_analysis/fmea.md index 15ef41b..2b97b32 100644 --- a/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/safety_analysis/fmea.md +++ b/rivet/eclipse-score-lifecycle/docs/docs/module/health_monitor/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-83409 +id: DOC-FMEA-30673 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-lifecycle/docs/docs/release_notes/release_note_v_0_2_0.md b/rivet/eclipse-score-lifecycle/docs/docs/release_notes/release_note_v_0_2_0.md index c325985..dff58d7 100644 --- a/rivet/eclipse-score-lifecycle/docs/docs/release_notes/release_note_v_0_2_0.md +++ b/rivet/eclipse-score-lifecycle/docs/docs/release_notes/release_note_v_0_2_0.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-NOTE-V-0-2-0-77823 +id: DOC-RELEASE-NOTE-V-0-2-0-2897 title: Release Note V 0 2 0 type: specification status: approved diff --git a/rivet/eclipse-score-lifecycle/rivet.yaml b/rivet/eclipse-score-lifecycle/rivet.yaml index 4f49f46..eca3bc9 100644 --- a/rivet/eclipse-score-lifecycle/rivet.yaml +++ b/rivet/eclipse-score-lifecycle/rivet.yaml @@ -13,4 +13,9 @@ sources: format: generic-yaml docs: - - docs + - docs/docs/module/health_monitor + - docs/docs/module/health_monitor/architecture + - docs/docs/module/health_monitor/detailed_design + - docs/docs/module/health_monitor/requirements + - docs/docs/module/health_monitor/safety_analysis + - docs/docs/release_notes diff --git a/rivet/eclipse-score-logging/docs/docs/design_decisions/explicit_init.md b/rivet/eclipse-score-logging/docs/docs/design_decisions/explicit_init.md index bdf5700..e1ef7d3 100644 --- a/rivet/eclipse-score-logging/docs/docs/design_decisions/explicit_init.md +++ b/rivet/eclipse-score-logging/docs/docs/design_decisions/explicit_init.md @@ -1,5 +1,5 @@ --- -id: DOC-EXPLICIT-INIT-35373 +id: DOC-EXPLICIT-INIT-76123 title: Explicit Init type: specification status: approved diff --git a/rivet/eclipse-score-logging/docs/docs/index.md b/rivet/eclipse-score-logging/docs/docs/index.md index c44a096..89c19d2 100644 --- a/rivet/eclipse-score-logging/docs/docs/index.md +++ b/rivet/eclipse-score-logging/docs/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-9414 +id: DOC-INDEX-49594 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-logging/rivet.yaml b/rivet/eclipse-score-logging/rivet.yaml index a8d3c6c..42ac379 100644 --- a/rivet/eclipse-score-logging/rivet.yaml +++ b/rivet/eclipse-score-logging/rivet.yaml @@ -13,4 +13,5 @@ sources: format: generic-yaml docs: - - docs + - docs/docs + - docs/docs/design_decisions diff --git a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/architecture/chklst_arc_inspection.md index 18a30b3..8dec1c4 100644 --- a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-12858 +id: DOC-CHKLST-ARC-INSPECTION-17992 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/architecture/index.md b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/architecture/index.md index 05b2d76..ea35cbb 100644 --- a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/architecture/index.md +++ b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-59947 +id: DOC-INDEX-9871 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_analysis/aou_requirements_template.md b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_analysis/aou_requirements_template.md index c5e91ea..8983994 100644 --- a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_analysis/aou_requirements_template.md +++ b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_analysis/aou_requirements_template.md @@ -1,5 +1,5 @@ --- -id: DOC-AOU-REQUIREMENTS-TEMPLATE-96623 +id: DOC-AOU-REQUIREMENTS-TEMPLATE-69116 title: Aou Requirements Template type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_analysis/dfa.md b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_analysis/dfa.md index 84da106..80d5e1a 100644 --- a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_analysis/dfa.md +++ b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-53466 +id: DOC-DFA-60682 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_analysis/fmea.md b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_analysis/fmea.md index ccda9c0..777023e 100644 --- a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_analysis/fmea.md +++ b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-19901 +id: DOC-FMEA-62961 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_planning/index.md b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_planning/index.md index c0e23f8..ac43df1 100644 --- a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_planning/index.md +++ b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/safety_planning/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-98555 +id: DOC-INDEX-485 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/security_analysis/index.md b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/security_analysis/index.md index 90517cf..fd08427 100644 --- a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/security_analysis/index.md +++ b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/security_analysis/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-70227 +id: DOC-INDEX-5232 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/security_planning/index.md b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/security_planning/index.md index b168517..7cb80e4 100644 --- a/rivet/eclipse-score-module_template/docs/docs/features/feature_example/security_planning/index.md +++ b/rivet/eclipse-score-module_template/docs/docs/features/feature_example/security_planning/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-38647 +id: DOC-INDEX-44311 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/manuals/safety_manual.md b/rivet/eclipse-score-module_template/docs/docs/manuals/safety_manual.md index 33f25ea..a39ae29 100644 --- a/rivet/eclipse-score-module_template/docs/docs/manuals/safety_manual.md +++ b/rivet/eclipse-score-module_template/docs/docs/manuals/safety_manual.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-MANUAL-87998 +id: DOC-SAFETY-MANUAL-48488 title: Safety Manual type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/manuals/security_manual.md b/rivet/eclipse-score-module_template/docs/docs/manuals/security_manual.md index f93dc26..1a70e78 100644 --- a/rivet/eclipse-score-module_template/docs/docs/manuals/security_manual.md +++ b/rivet/eclipse-score-module_template/docs/docs/manuals/security_manual.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-MANUAL-20531 +id: DOC-SECURITY-MANUAL-87722 title: Security Manual type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/release/release_note.md b/rivet/eclipse-score-module_template/docs/docs/release/release_note.md index 442b62b..c6066e3 100644 --- a/rivet/eclipse-score-module_template/docs/docs/release/release_note.md +++ b/rivet/eclipse-score-module_template/docs/docs/release/release_note.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-NOTE-17170 +id: DOC-RELEASE-NOTE-22487 title: Release Note type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_analysis_fdr.md b/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_analysis_fdr.md index 0d761ef..999e912 100644 --- a/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_analysis_fdr.md +++ b/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_analysis_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-ANALYSIS-FDR-21515 +id: DOC-MODULE-SAFETY-ANALYSIS-FDR-90863 title: Module Safety Analysis Fdr type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_package_fdr.md b/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_package_fdr.md index 8fb5f49..3c92d68 100644 --- a/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_package_fdr.md +++ b/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_package_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PACKAGE-FDR-73110 +id: DOC-MODULE-SAFETY-PACKAGE-FDR-42123 title: Module Safety Package Fdr type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_plan.md b/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_plan.md index 962c0f4..3ca4b9d 100644 --- a/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_plan.md +++ b/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PLAN-5319 +id: DOC-MODULE-SAFETY-PLAN-10538 title: Module Safety Plan type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_plan_fdr.md b/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_plan_fdr.md index 55b5445..15e925c 100644 --- a/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_plan_fdr.md +++ b/rivet/eclipse-score-module_template/docs/docs/safety_mgt/module_safety_plan_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PLAN-FDR-96597 +id: DOC-MODULE-SAFETY-PLAN-FDR-24819 title: Module Safety Plan Fdr type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/security_mgt/module_security_package_fdr.md b/rivet/eclipse-score-module_template/docs/docs/security_mgt/module_security_package_fdr.md index f84576c..a2631bb 100644 --- a/rivet/eclipse-score-module_template/docs/docs/security_mgt/module_security_package_fdr.md +++ b/rivet/eclipse-score-module_template/docs/docs/security_mgt/module_security_package_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SECURITY-PACKAGE-FDR-72584 +id: DOC-MODULE-SECURITY-PACKAGE-FDR-38521 title: Module Security Package Fdr type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/security_mgt/module_security_plan.md b/rivet/eclipse-score-module_template/docs/docs/security_mgt/module_security_plan.md index 6fd762f..f750517 100644 --- a/rivet/eclipse-score-module_template/docs/docs/security_mgt/module_security_plan.md +++ b/rivet/eclipse-score-module_template/docs/docs/security_mgt/module_security_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SECURITY-PLAN-43151 +id: DOC-MODULE-SECURITY-PLAN-9444 title: Module Security Plan type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/security_mgt/module_security_plan_fdr.md b/rivet/eclipse-score-module_template/docs/docs/security_mgt/module_security_plan_fdr.md index 623ca84..bc1448e 100644 --- a/rivet/eclipse-score-module_template/docs/docs/security_mgt/module_security_plan_fdr.md +++ b/rivet/eclipse-score-module_template/docs/docs/security_mgt/module_security_plan_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SECURITY-PLAN-FDR-44847 +id: DOC-MODULE-SECURITY-PLAN-FDR-54143 title: Module Security Plan Fdr type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/docs/verification_report/module_verification_report.md b/rivet/eclipse-score-module_template/docs/docs/verification_report/module_verification_report.md index c1721e9..51c5fb2 100644 --- a/rivet/eclipse-score-module_template/docs/docs/verification_report/module_verification_report.md +++ b/rivet/eclipse-score-module_template/docs/docs/verification_report/module_verification_report.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-VERIFICATION-REPORT-37784 +id: DOC-MODULE-VERIFICATION-REPORT-94815 title: Module Verification Report type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/examples/docs/architecture_modeling_example.md b/rivet/eclipse-score-module_template/docs/examples/docs/architecture_modeling_example.md index dfc8c55..25eb4ee 100644 --- a/rivet/eclipse-score-module_template/docs/examples/docs/architecture_modeling_example.md +++ b/rivet/eclipse-score-module_template/docs/examples/docs/architecture_modeling_example.md @@ -1,5 +1,5 @@ --- -id: DOC-ARCHITECTURE-MODELING-EXAMPLE-3724 +id: DOC-ARCHITECTURE-MODELING-EXAMPLE-1529 title: Architecture Modeling Example type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/score/component_example/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-module_template/docs/score/component_example/docs/architecture/chklst_arc_inspection.md index c6202f2..3881aa8 100644 --- a/rivet/eclipse-score-module_template/docs/score/component_example/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-module_template/docs/score/component_example/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-34401 +id: DOC-CHKLST-ARC-INSPECTION-5855 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/score/component_example/docs/architecture/component_architecture_template.md b/rivet/eclipse-score-module_template/docs/score/component_example/docs/architecture/component_architecture_template.md index 6ca3eeb..912ac91 100644 --- a/rivet/eclipse-score-module_template/docs/score/component_example/docs/architecture/component_architecture_template.md +++ b/rivet/eclipse-score-module_template/docs/score/component_example/docs/architecture/component_architecture_template.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-ARCHITECTURE-TEMPLATE-25998 +id: DOC-COMPONENT-ARCHITECTURE-TEMPLATE-25885 title: Component Architecture Template type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/score/component_example/docs/architecture/index.md b/rivet/eclipse-score-module_template/docs/score/component_example/docs/architecture/index.md index 47595aa..6b26a8d 100644 --- a/rivet/eclipse-score-module_template/docs/score/component_example/docs/architecture/index.md +++ b/rivet/eclipse-score-module_template/docs/score/component_example/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-92934 +id: DOC-INDEX-62455 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/score/component_example/docs/component_classification.md b/rivet/eclipse-score-module_template/docs/score/component_example/docs/component_classification.md index 718413a..5a073c5 100644 --- a/rivet/eclipse-score-module_template/docs/score/component_example/docs/component_classification.md +++ b/rivet/eclipse-score-module_template/docs/score/component_example/docs/component_classification.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-CLASSIFICATION-22195 +id: DOC-COMPONENT-CLASSIFICATION-25135 title: Component Classification type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/score/component_example/docs/detailed_design/chklst_impl_inspection.md b/rivet/eclipse-score-module_template/docs/score/component_example/docs/detailed_design/chklst_impl_inspection.md index 30e5196..506687e 100644 --- a/rivet/eclipse-score-module_template/docs/score/component_example/docs/detailed_design/chklst_impl_inspection.md +++ b/rivet/eclipse-score-module_template/docs/score/component_example/docs/detailed_design/chklst_impl_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-IMPL-INSPECTION-70879 +id: DOC-CHKLST-IMPL-INSPECTION-93299 title: Chklst Impl Inspection type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/score/component_example/docs/detailed_design/detailed_design_example.md b/rivet/eclipse-score-module_template/docs/score/component_example/docs/detailed_design/detailed_design_example.md index cc9fe50..45777f5 100644 --- a/rivet/eclipse-score-module_template/docs/score/component_example/docs/detailed_design/detailed_design_example.md +++ b/rivet/eclipse-score-module_template/docs/score/component_example/docs/detailed_design/detailed_design_example.md @@ -1,5 +1,5 @@ --- -id: DOC-DETAILED-DESIGN-EXAMPLE-9331 +id: DOC-DETAILED-DESIGN-EXAMPLE-90304 title: Detailed Design Example type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/score/component_example/docs/detailed_design/index.md b/rivet/eclipse-score-module_template/docs/score/component_example/docs/detailed_design/index.md index df6b461..5cb2549 100644 --- a/rivet/eclipse-score-module_template/docs/score/component_example/docs/detailed_design/index.md +++ b/rivet/eclipse-score-module_template/docs/score/component_example/docs/detailed_design/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-52184 +id: DOC-INDEX-95357 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/score/component_example/docs/index.md b/rivet/eclipse-score-module_template/docs/score/component_example/docs/index.md index 2adaf7c..dc7af52 100644 --- a/rivet/eclipse-score-module_template/docs/score/component_example/docs/index.md +++ b/rivet/eclipse-score-module_template/docs/score/component_example/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-93153 +id: DOC-INDEX-2169 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/score/component_example/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-module_template/docs/score/component_example/docs/requirements/chklst_req_inspection.md index 6623299..f208906 100644 --- a/rivet/eclipse-score-module_template/docs/score/component_example/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-module_template/docs/score/component_example/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-58829 +id: DOC-CHKLST-REQ-INSPECTION-56015 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/score/component_example/docs/requirements/index.md b/rivet/eclipse-score-module_template/docs/score/component_example/docs/requirements/index.md index da1bab4..de75ed0 100644 --- a/rivet/eclipse-score-module_template/docs/score/component_example/docs/requirements/index.md +++ b/rivet/eclipse-score-module_template/docs/score/component_example/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-33944 +id: DOC-INDEX-71611 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/score/component_example/docs/safety_analysis/aou_requirements_template.md b/rivet/eclipse-score-module_template/docs/score/component_example/docs/safety_analysis/aou_requirements_template.md index d4c4266..78ad0f9 100644 --- a/rivet/eclipse-score-module_template/docs/score/component_example/docs/safety_analysis/aou_requirements_template.md +++ b/rivet/eclipse-score-module_template/docs/score/component_example/docs/safety_analysis/aou_requirements_template.md @@ -1,5 +1,5 @@ --- -id: DOC-AOU-REQUIREMENTS-TEMPLATE-1214 +id: DOC-AOU-REQUIREMENTS-TEMPLATE-91919 title: Aou Requirements Template type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/score/component_example/docs/safety_analysis/dfa.md b/rivet/eclipse-score-module_template/docs/score/component_example/docs/safety_analysis/dfa.md index d1b81b8..48ed5a3 100644 --- a/rivet/eclipse-score-module_template/docs/score/component_example/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-module_template/docs/score/component_example/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-78047 +id: DOC-DFA-40938 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-module_template/docs/score/component_example/docs/safety_analysis/fmea.md b/rivet/eclipse-score-module_template/docs/score/component_example/docs/safety_analysis/fmea.md index 2c962fe..651eaab 100644 --- a/rivet/eclipse-score-module_template/docs/score/component_example/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-module_template/docs/score/component_example/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-17626 +id: DOC-FMEA-99071 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-module_template/rivet.yaml b/rivet/eclipse-score-module_template/rivet.yaml index a7d808f..c2d9790 100644 --- a/rivet/eclipse-score-module_template/rivet.yaml +++ b/rivet/eclipse-score-module_template/rivet.yaml @@ -13,4 +13,19 @@ sources: format: generic-yaml docs: - - docs + - docs/docs/features/feature_example/architecture + - docs/docs/features/feature_example/safety_analysis + - docs/docs/features/feature_example/safety_planning + - docs/docs/features/feature_example/security_analysis + - docs/docs/features/feature_example/security_planning + - docs/docs/manuals + - docs/docs/release + - docs/docs/safety_mgt + - docs/docs/security_mgt + - docs/docs/verification_report + - docs/examples/docs + - docs/score/component_example/docs + - docs/score/component_example/docs/architecture + - docs/score/component_example/docs/detailed_design + - docs/score/component_example/docs/requirements + - docs/score/component_example/docs/safety_analysis diff --git a/rivet/eclipse-score-persistency/docs/docs/manual/safety_manual.md b/rivet/eclipse-score-persistency/docs/docs/manual/safety_manual.md index b5ece18..04369dd 100644 --- a/rivet/eclipse-score-persistency/docs/docs/manual/safety_manual.md +++ b/rivet/eclipse-score-persistency/docs/docs/manual/safety_manual.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-MANUAL-25771 +id: DOC-SAFETY-MANUAL-76265 title: Safety Manual type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/docs/manual/security_manual.md b/rivet/eclipse-score-persistency/docs/docs/manual/security_manual.md index 75b4332..33834c9 100644 --- a/rivet/eclipse-score-persistency/docs/docs/manual/security_manual.md +++ b/rivet/eclipse-score-persistency/docs/docs/manual/security_manual.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-MANUAL-68791 +id: DOC-SECURITY-MANUAL-8180 title: Security Manual type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/docs/release/release_note.md b/rivet/eclipse-score-persistency/docs/docs/release/release_note.md index 340eab6..ec175cd 100644 --- a/rivet/eclipse-score-persistency/docs/docs/release/release_note.md +++ b/rivet/eclipse-score-persistency/docs/docs/release/release_note.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-NOTE-57369 +id: DOC-RELEASE-NOTE-36715 title: Release Note type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_codeowners.md b/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_codeowners.md index 165dd23..4ba9bf9 100644 --- a/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_codeowners.md +++ b/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_codeowners.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-CODEOWNERS-41425 +id: DOC-MODULE-CODEOWNERS-99584 title: Module Codeowners type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_analysis_fdr.md b/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_analysis_fdr.md index 793f34e..b4a709f 100644 --- a/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_analysis_fdr.md +++ b/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_analysis_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-ANALYSIS-FDR-63695 +id: DOC-MODULE-SAFETY-ANALYSIS-FDR-20071 title: Module Safety Analysis Fdr type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_package_fdr.md b/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_package_fdr.md index eeaa317..0e2f356 100644 --- a/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_package_fdr.md +++ b/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_package_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PACKAGE-FDR-87862 +id: DOC-MODULE-SAFETY-PACKAGE-FDR-75063 title: Module Safety Package Fdr type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_plan.md b/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_plan.md index 9c7cc1c..8426779 100644 --- a/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_plan.md +++ b/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PLAN-10155 +id: DOC-MODULE-SAFETY-PLAN-14055 title: Module Safety Plan type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_plan_fdr.md b/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_plan_fdr.md index 6abbd8e..315fb4e 100644 --- a/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_plan_fdr.md +++ b/rivet/eclipse-score-persistency/docs/docs/safety_mgt/module_safety_plan_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PLAN-FDR-85473 +id: DOC-MODULE-SAFETY-PLAN-FDR-79632 title: Module Safety Plan Fdr type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/docs/security_mgt/module_security_package_fdr.md b/rivet/eclipse-score-persistency/docs/docs/security_mgt/module_security_package_fdr.md index 51b954b..9c315aa 100644 --- a/rivet/eclipse-score-persistency/docs/docs/security_mgt/module_security_package_fdr.md +++ b/rivet/eclipse-score-persistency/docs/docs/security_mgt/module_security_package_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SECURITY-PACKAGE-FDR-95987 +id: DOC-MODULE-SECURITY-PACKAGE-FDR-26710 title: Module Security Package Fdr type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/docs/security_mgt/module_security_plan.md b/rivet/eclipse-score-persistency/docs/docs/security_mgt/module_security_plan.md index 7a03680..616e0e4 100644 --- a/rivet/eclipse-score-persistency/docs/docs/security_mgt/module_security_plan.md +++ b/rivet/eclipse-score-persistency/docs/docs/security_mgt/module_security_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SECURITY-PLAN-83502 +id: DOC-MODULE-SECURITY-PLAN-62535 title: Module Security Plan type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/docs/security_mgt/module_security_plan_fdr.md b/rivet/eclipse-score-persistency/docs/docs/security_mgt/module_security_plan_fdr.md index 3618866..d474665 100644 --- a/rivet/eclipse-score-persistency/docs/docs/security_mgt/module_security_plan_fdr.md +++ b/rivet/eclipse-score-persistency/docs/docs/security_mgt/module_security_plan_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SECURITY-PLAN-FDR-55790 +id: DOC-MODULE-SECURITY-PLAN-FDR-12058 title: Module Security Plan Fdr type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/docs/verification/module_verification_report.md b/rivet/eclipse-score-persistency/docs/docs/verification/module_verification_report.md index 5c8bdf3..3863267 100644 --- a/rivet/eclipse-score-persistency/docs/docs/verification/module_verification_report.md +++ b/rivet/eclipse-score-persistency/docs/docs/verification/module_verification_report.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-VERIFICATION-REPORT-1108 +id: DOC-MODULE-VERIFICATION-REPORT-53343 title: Module Verification Report type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/score/json/docs/component_classification.md b/rivet/eclipse-score-persistency/docs/score/json/docs/component_classification.md index 4b3e26e..318762a 100644 --- a/rivet/eclipse-score-persistency/docs/score/json/docs/component_classification.md +++ b/rivet/eclipse-score-persistency/docs/score/json/docs/component_classification.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-CLASSIFICATION-26205 +id: DOC-COMPONENT-CLASSIFICATION-59218 title: Component Classification type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/score/json/docs/index.md b/rivet/eclipse-score-persistency/docs/score/json/docs/index.md index c8bf33f..ad3aa1a 100644 --- a/rivet/eclipse-score-persistency/docs/score/json/docs/index.md +++ b/rivet/eclipse-score-persistency/docs/score/json/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-84507 +id: DOC-INDEX-85672 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/score/kvs/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-persistency/docs/score/kvs/docs/architecture/chklst_arc_inspection.md index 595f1a5..bc4ca1c 100644 --- a/rivet/eclipse-score-persistency/docs/score/kvs/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-persistency/docs/score/kvs/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-83949 +id: DOC-CHKLST-ARC-INSPECTION-73396 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/score/kvs/docs/architecture/index.md b/rivet/eclipse-score-persistency/docs/score/kvs/docs/architecture/index.md index be23306..adb3bd3 100644 --- a/rivet/eclipse-score-persistency/docs/score/kvs/docs/architecture/index.md +++ b/rivet/eclipse-score-persistency/docs/score/kvs/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-8531 +id: DOC-INDEX-82526 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/score/kvs/docs/detailed_design/chklst_impl_inspection.md b/rivet/eclipse-score-persistency/docs/score/kvs/docs/detailed_design/chklst_impl_inspection.md index 4bb7d34..5f354a0 100644 --- a/rivet/eclipse-score-persistency/docs/score/kvs/docs/detailed_design/chklst_impl_inspection.md +++ b/rivet/eclipse-score-persistency/docs/score/kvs/docs/detailed_design/chklst_impl_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-IMPL-INSPECTION-68931 +id: DOC-CHKLST-IMPL-INSPECTION-62505 title: Chklst Impl Inspection type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/score/kvs/docs/detailed_design/index.md b/rivet/eclipse-score-persistency/docs/score/kvs/docs/detailed_design/index.md index a52aae6..23e134d 100644 --- a/rivet/eclipse-score-persistency/docs/score/kvs/docs/detailed_design/index.md +++ b/rivet/eclipse-score-persistency/docs/score/kvs/docs/detailed_design/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-77774 +id: DOC-INDEX-58565 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/score/kvs/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-persistency/docs/score/kvs/docs/requirements/chklst_req_inspection.md index 7470353..1a45cdc 100644 --- a/rivet/eclipse-score-persistency/docs/score/kvs/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-persistency/docs/score/kvs/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-9772 +id: DOC-CHKLST-REQ-INSPECTION-8218 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/score/kvs/docs/requirements/index.md b/rivet/eclipse-score-persistency/docs/score/kvs/docs/requirements/index.md index 028fea9..7c0bbd8 100644 --- a/rivet/eclipse-score-persistency/docs/score/kvs/docs/requirements/index.md +++ b/rivet/eclipse-score-persistency/docs/score/kvs/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-5557 +id: DOC-INDEX-16568 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/score/kvs/docs/safety_analysis/dfa.md b/rivet/eclipse-score-persistency/docs/score/kvs/docs/safety_analysis/dfa.md index cbbd555..d984468 100644 --- a/rivet/eclipse-score-persistency/docs/score/kvs/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-persistency/docs/score/kvs/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-32774 +id: DOC-DFA-43347 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/score/kvs/docs/safety_analysis/fmea.md b/rivet/eclipse-score-persistency/docs/score/kvs/docs/safety_analysis/fmea.md index 40d5daa..ad12cdf 100644 --- a/rivet/eclipse-score-persistency/docs/score/kvs/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-persistency/docs/score/kvs/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-15356 +id: DOC-FMEA-81092 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-persistency/docs/score/kvs/index.md b/rivet/eclipse-score-persistency/docs/score/kvs/index.md index e376fc0..ccc7019 100644 --- a/rivet/eclipse-score-persistency/docs/score/kvs/index.md +++ b/rivet/eclipse-score-persistency/docs/score/kvs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-64255 +id: DOC-INDEX-77211 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-persistency/rivet.yaml b/rivet/eclipse-score-persistency/rivet.yaml index acfd95d..1cd0174 100644 --- a/rivet/eclipse-score-persistency/rivet.yaml +++ b/rivet/eclipse-score-persistency/rivet.yaml @@ -20,4 +20,14 @@ sources: format: generic-yaml docs: - - docs + - docs/docs/manual + - docs/docs/release + - docs/docs/safety_mgt + - docs/docs/security_mgt + - docs/docs/verification + - docs/score/json/docs + - docs/score/kvs + - docs/score/kvs/docs/architecture + - docs/score/kvs/docs/detailed_design + - docs/score/kvs/docs/requirements + - docs/score/kvs/docs/safety_analysis diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/release/release_note.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/release/release_note.md index 9aae20d..170aed7 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/release/release_note.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/release/release_note.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-NOTE-28629 +id: DOC-RELEASE-NOTE-82091 title: Release Note type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_dfa.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_dfa.md index bae9b2a..28c4c49 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_dfa.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-DFA-99270 +id: DOC-PLATFORM-DFA-65157 title: Platform Dfa type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_analysis_fdr.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_analysis_fdr.md index edf3c69..c3cf743 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_analysis_fdr.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_analysis_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SAFETY-ANALYSIS-FDR-81323 +id: DOC-PLATFORM-SAFETY-ANALYSIS-FDR-49837 title: Platform Safety Analysis Fdr type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_manual.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_manual.md index 6333dab..e83007e 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_manual.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_manual.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SAFETY-MANUAL-71218 +id: DOC-PLATFORM-SAFETY-MANUAL-13539 title: Platform Safety Manual type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_package_fdr.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_package_fdr.md index 8503908..69ca50f 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_package_fdr.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_package_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SAFETY-PACKAGE-FDR-86108 +id: DOC-PLATFORM-SAFETY-PACKAGE-FDR-35805 title: Platform Safety Package Fdr type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_plan.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_plan.md index f3e3439..71a4172 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_plan.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SAFETY-PLAN-26974 +id: DOC-PLATFORM-SAFETY-PLAN-56931 title: Platform Safety Plan type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_plan_fdr.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_plan_fdr.md index 0ac5f98..8c20ebf 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_plan_fdr.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/safety_mgt/platform_safety_plan_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SAFETY-PLAN-FDR-47553 +id: DOC-PLATFORM-SAFETY-PLAN-FDR-80988 title: Platform Safety Plan Fdr type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_analysis.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_analysis.md index 51d5160..e81df8a 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_analysis.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_analysis.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SECURITY-ANALYSIS-96707 +id: DOC-PLATFORM-SECURITY-ANALYSIS-49331 title: Platform Security Analysis type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_analysis_fdr.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_analysis_fdr.md index 2ffde72..2a62a0e 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_analysis_fdr.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_analysis_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SECURITY-ANALYSIS-FDR-33469 +id: DOC-PLATFORM-SECURITY-ANALYSIS-FDR-48424 title: Platform Security Analysis Fdr type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_manual.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_manual.md index cca5bb7..e1b0d29 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_manual.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_manual.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SECURITY-MANUAL-47496 +id: DOC-PLATFORM-SECURITY-MANUAL-983 title: Platform Security Manual type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_package_fdr.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_package_fdr.md index 5b643ac..0fea885 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_package_fdr.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_package_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SECURITY-PACKAGE-FDR-66792 +id: DOC-PLATFORM-SECURITY-PACKAGE-FDR-97445 title: Platform Security Package Fdr type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_plan.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_plan.md index 28a713b..bf5b7e3 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_plan.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SECURITY-PLAN-79723 +id: DOC-PLATFORM-SECURITY-PLAN-40542 title: Platform Security Plan type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_plan_fdr.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_plan_fdr.md index 009e317..e9b46f3 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_plan_fdr.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/security_mgt/platform_security_plan_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SECURITY-PLAN-FDR-6089 +id: DOC-PLATFORM-SECURITY-PLAN-FDR-69421 title: Platform Security Plan Fdr type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/verification/platform_verification_report.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/verification/platform_verification_report.md index 7880e28..705bfe7 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/verification/platform_verification_report.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/docs/verification/platform_verification_report.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-VERIFICATION-REPORT-10601 +id: DOC-PLATFORM-VERIFICATION-REPORT-3517 title: Platform Verification Report type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/architecture/index.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/architecture/index.md index 5cfd3dc..9703515 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/architecture/index.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-89793 +id: DOC-INDEX-58677 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/index.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/index.md index 0207db7..c0f0bb5 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/index.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-63958 +id: DOC-INDEX-69055 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/requirements/chklst_req_inspection.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/requirements/chklst_req_inspection.md index 48b0ca5..c1b08d3 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-36170 +id: DOC-CHKLST-REQ-INSPECTION-62914 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/requirements/index.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/requirements/index.md index 16ee84b..b29e199 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/requirements/index.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/features/feature_name/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-30981 +id: DOC-INDEX-36802 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/requirements/stakeholder/chklst_req_inspection.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/requirements/stakeholder/chklst_req_inspection.md index 994828c..a236efe 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/requirements/stakeholder/chklst_req_inspection.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/requirements/stakeholder/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-39442 +id: DOC-CHKLST-REQ-INSPECTION-62728 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/requirements/stakeholder/index.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/requirements/stakeholder/index.md index d99f3e5..ea1fc8e 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/requirements/stakeholder/index.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/platform/requirements/stakeholder/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-5216 +id: DOC-INDEX-62993 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/folder_templates/tools/tool_verification_report_template.md b/rivet/eclipse-score-process-description/docs/process/folder_templates/tools/tool_verification_report_template.md index 20884a6..bcd3b97 100644 --- a/rivet/eclipse-score-process-description/docs/process/folder_templates/tools/tool_verification_report_template.md +++ b/rivet/eclipse-score-process-description/docs/process/folder_templates/tools/tool_verification_report_template.md @@ -1,5 +1,5 @@ --- -id: DOC-TOOL-VERIFICATION-REPORT-TEMPLATE-55568 +id: DOC-TOOL-VERIFICATION-REPORT-TEMPLATE-19594 title: Tool Verification Report Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/general_concepts/score_building_blocks_concept.md b/rivet/eclipse-score-process-description/docs/process/general_concepts/score_building_blocks_concept.md index 69ab12f..3673775 100644 --- a/rivet/eclipse-score-process-description/docs/process/general_concepts/score_building_blocks_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/general_concepts/score_building_blocks_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-SCORE-BUILDING-BLOCKS-CONCEPT-97524 +id: DOC-SCORE-BUILDING-BLOCKS-CONCEPT-54518 title: Score Building Blocks Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/general_concepts/score_lifecycle_concept.md b/rivet/eclipse-score-process-description/docs/process/general_concepts/score_lifecycle_concept.md index d4f1c1f..0c426d4 100644 --- a/rivet/eclipse-score-process-description/docs/process/general_concepts/score_lifecycle_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/general_concepts/score_lifecycle_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-SCORE-LIFECYCLE-CONCEPT-51082 +id: DOC-SCORE-LIFECYCLE-CONCEPT-35586 title: Score Lifecycle Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/general_concepts/score_review_concept.md b/rivet/eclipse-score-process-description/docs/process/general_concepts/score_review_concept.md index 94d6f47..c15496c 100644 --- a/rivet/eclipse-score-process-description/docs/process/general_concepts/score_review_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/general_concepts/score_review_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-SCORE-REVIEW-CONCEPT-30048 +id: DOC-SCORE-REVIEW-CONCEPT-16653 title: Score Review Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/general_concepts/score_traceability_concept.md b/rivet/eclipse-score-process-description/docs/process/general_concepts/score_traceability_concept.md index 1a5cea2..521094e 100644 --- a/rivet/eclipse-score-process-description/docs/process/general_concepts/score_traceability_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/general_concepts/score_traceability_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-SCORE-TRACEABILITY-CONCEPT-28224 +id: DOC-SCORE-TRACEABILITY-CONCEPT-18846 title: Score Traceability Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/introduction/index.md b/rivet/eclipse-score-process-description/docs/process/introduction/index.md index 632d6de..fb2de70 100644 --- a/rivet/eclipse-score-process-description/docs/process/introduction/index.md +++ b/rivet/eclipse-score-process-description/docs/process/introduction/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-63421 +id: DOC-INDEX-58782 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_concept.md index 2c07b44..ebef84e 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-ARCHITECTURE-CONCEPT-68910 +id: DOC-ARCHITECTURE-CONCEPT-46847 title: Architecture Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_getstrt.md index d19fe76..c2946f3 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-ARCHITECTURE-GETSTRT-31644 +id: DOC-ARCHITECTURE-GETSTRT-8 title: Architecture Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_workflow.md index dbf6df8..5459832 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-ARCHITECTURE-WORKFLOW-62270 +id: DOC-ARCHITECTURE-WORKFLOW-41974 title: Architecture Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_workproducts.md index b44a46c..b158e8d 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/architecture_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-ARCHITECTURE-WORKPRODUCTS-53758 +id: DOC-ARCHITECTURE-WORKPRODUCTS-29933 title: Architecture Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/architecture_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/architecture_guideline.md index 1692fd3..895674f 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/architecture_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/architecture_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-ARCHITECTURE-GUIDELINE-19904 +id: DOC-ARCHITECTURE-GUIDELINE-30833 title: Architecture Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/architecture_inspection_checklist.md b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/architecture_inspection_checklist.md index 0284a2f..bcfc5cb 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/architecture_inspection_checklist.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/architecture_inspection_checklist.md @@ -1,5 +1,5 @@ --- -id: DOC-ARCHITECTURE-INSPECTION-CHECKLIST-72064 +id: DOC-ARCHITECTURE-INSPECTION-CHECKLIST-77404 title: Architecture Inspection Checklist type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/architecture_process_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/architecture_process_reqs.md index 30360b2..81a4103 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/architecture_process_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/architecture_process_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-ARCHITECTURE-PROCESS-REQS-99487 +id: DOC-ARCHITECTURE-PROCESS-REQS-44896 title: Architecture Process Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/component_architecture_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/component_architecture_template.md index ee363a8..161d3bb 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/component_architecture_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/component_architecture_template.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-ARCHITECTURE-TEMPLATE-30784 +id: DOC-COMPONENT-ARCHITECTURE-TEMPLATE-35227 title: Component Architecture Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/feature_architecture_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/feature_architecture_template.md index fe09c7c..6fcbc3e 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/feature_architecture_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/architecture_design/guidance/feature_architecture_template.md @@ -1,5 +1,5 @@ --- -id: DOC-FEATURE-ARCHITECTURE-TEMPLATE-61393 +id: DOC-FEATURE-ARCHITECTURE-TEMPLATE-38205 title: Feature Architecture Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_concept.md index 29e4a90..495312f 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-CHANGE-MANAGEMENT-CONCEPT-80437 +id: DOC-CHANGE-MANAGEMENT-CONCEPT-15686 title: Change Management Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_getstrt.md index 91a988f..1906feb 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-CHANGE-MANAGEMENT-GETSTRT-11350 +id: DOC-CHANGE-MANAGEMENT-GETSTRT-62666 title: Change Management Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_workflow.md index b4b29c8..6b082cb 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-CHANGE-MANAGEMENT-WORKFLOW-63690 +id: DOC-CHANGE-MANAGEMENT-WORKFLOW-7837 title: Change Management Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_workproducts.md index 8ae521a..8a48ea3 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/change_management_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-CHANGE-MANAGEMENT-WORKPRODUCTS-49340 +id: DOC-CHANGE-MANAGEMENT-WORKPRODUCTS-95174 title: Change Management Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_checklist.md b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_checklist.md index 9180eef..e798f08 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_checklist.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_checklist.md @@ -1,5 +1,5 @@ --- -id: DOC-CHANGE-MANAGEMENT-CHECKLIST-13132 +id: DOC-CHANGE-MANAGEMENT-CHECKLIST-32346 title: Change Management Checklist type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_component_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_component_template.md index be0cfdd..5a61f7d 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_component_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_component_template.md @@ -1,5 +1,5 @@ --- -id: DOC-CHANGE-MANAGEMENT-COMPONENT-TEMPLATE-55206 +id: DOC-CHANGE-MANAGEMENT-COMPONENT-TEMPLATE-74396 title: Change Management Component Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_decision_record_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_decision_record_template.md index 8151348..91e887a 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_decision_record_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_decision_record_template.md @@ -1,5 +1,5 @@ --- -id: DOC-CHANGE-MANAGEMENT-DECISION-RECORD-TEMPLATE-23523 +id: DOC-CHANGE-MANAGEMENT-DECISION-RECORD-TEMPLATE-55584 title: Change Management Decision Record Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_feature_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_feature_template.md index a408611..8ca4e41 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_feature_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_feature_template.md @@ -1,5 +1,5 @@ --- -id: DOC-CHANGE-MANAGEMENT-FEATURE-TEMPLATE-28522 +id: DOC-CHANGE-MANAGEMENT-FEATURE-TEMPLATE-34207 title: Change Management Feature Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_guideline.md index 881b6ec..c90a5cc 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-CHANGE-MANAGEMENT-GUIDELINE-18589 +id: DOC-CHANGE-MANAGEMENT-GUIDELINE-45351 title: Change Management Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_impact_analysis_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_impact_analysis_template.md index b858c8c..85586a4 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_impact_analysis_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_impact_analysis_template.md @@ -1,5 +1,5 @@ --- -id: DOC-CHANGE-MANAGEMENT-IMPACT-ANALYSIS-TEMPLATE-84820 +id: DOC-CHANGE-MANAGEMENT-IMPACT-ANALYSIS-TEMPLATE-85926 title: Change Management Impact Analysis Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_reqs.md index dd6550a..d05b2b1 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/change_management/guidance/change_management_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-CHANGE-MANAGEMENT-REQS-97199 +id: DOC-CHANGE-MANAGEMENT-REQS-10000 title: Change Management Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/configuration_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/configuration_concept.md index 9c10ee3..28c27f2 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/configuration_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/configuration_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-CONFIGURATION-CONCEPT-56297 +id: DOC-CONFIGURATION-CONCEPT-40927 title: Configuration Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/configuration_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/configuration_getstrt.md index 101e2a8..8f556ac 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/configuration_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/configuration_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-CONFIGURATION-GETSTRT-45882 +id: DOC-CONFIGURATION-GETSTRT-57619 title: Configuration Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/configuration_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/configuration_workproducts.md index d11ddee..5b81f9c 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/configuration_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/configuration_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-CONFIGURATION-WORKPRODUCTS-36642 +id: DOC-CONFIGURATION-WORKPRODUCTS-82322 title: Configuration Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/guidance/configuration_process_req.md b/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/guidance/configuration_process_req.md index 4846f97..aefc3ea 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/guidance/configuration_process_req.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/guidance/configuration_process_req.md @@ -1,5 +1,5 @@ --- -id: DOC-CONFIGURATION-PROCESS-REQ-69287 +id: DOC-CONFIGURATION-PROCESS-REQ-64111 title: Configuration Process Req type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/guidance/configuration_templates.md b/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/guidance/configuration_templates.md index e4a492a..af4ab79 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/guidance/configuration_templates.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/configuration_management/guidance/configuration_templates.md @@ -1,5 +1,5 @@ --- -id: DOC-CONFIGURATION-TEMPLATES-92376 +id: DOC-CONFIGURATION-TEMPLATES-35425 title: Configuration Templates type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/documentation_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/documentation_concept.md index 6c5b28c..c1bca3e 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/documentation_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/documentation_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-DOCUMENTATION-CONCEPT-91638 +id: DOC-DOCUMENTATION-CONCEPT-84549 title: Documentation Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/documentation_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/documentation_getstrt.md index 8865a89..7dd10aa 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/documentation_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/documentation_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-DOCUMENTATION-GETSTRT-32077 +id: DOC-DOCUMENTATION-GETSTRT-60773 title: Documentation Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/documentation_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/documentation_workproducts.md index 8184a4c..10db914 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/documentation_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/documentation_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-DOCUMENTATION-WORKPRODUCTS-4617 +id: DOC-DOCUMENTATION-WORKPRODUCTS-59788 title: Documentation Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_checklist.md b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_checklist.md index 33541d0..da674f1 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_checklist.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_checklist.md @@ -1,5 +1,5 @@ --- -id: DOC-DOCUMENTATION-CHECKLIST-7053 +id: DOC-DOCUMENTATION-CHECKLIST-8323 title: Documentation Checklist type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_guideline.md index caebcc4..7053ac9 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-DOCUMENTATION-GUIDELINE-22518 +id: DOC-DOCUMENTATION-GUIDELINE-88267 title: Documentation Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_process_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_process_reqs.md index ea243e5..b80f07b 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_process_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_process_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-DOCUMENTATION-PROCESS-REQS-59444 +id: DOC-DOCUMENTATION-PROCESS-REQS-7059 title: Documentation Process Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_templates.md b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_templates.md index 011128f..67c1688 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_templates.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/documentation_management/guidance/documentation_templates.md @@ -1,5 +1,5 @@ --- -id: DOC-DOCUMENTATION-TEMPLATES-83924 +id: DOC-DOCUMENTATION-TEMPLATES-25131 title: Documentation Templates type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/detailed_design_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/detailed_design_template.md index c783c82..4e7690a 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/detailed_design_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/detailed_design_template.md @@ -1,5 +1,5 @@ --- -id: DOC-DETAILED-DESIGN-TEMPLATE-87498 +id: DOC-DETAILED-DESIGN-TEMPLATE-10857 title: Detailed Design Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/implementation_checklist.md b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/implementation_checklist.md index 3161fdb..b791350 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/implementation_checklist.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/implementation_checklist.md @@ -1,5 +1,5 @@ --- -id: DOC-IMPLEMENTATION-CHECKLIST-94010 +id: DOC-IMPLEMENTATION-CHECKLIST-6282 title: Implementation Checklist type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/implementation_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/implementation_guideline.md index 10261c8..cebcbff 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/implementation_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/implementation_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-IMPLEMENTATION-GUIDELINE-21128 +id: DOC-IMPLEMENTATION-GUIDELINE-37125 title: Implementation Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/implementation_process_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/implementation_process_reqs.md index 9c5dcd2..4c422bf 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/implementation_process_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/implementation_process_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-IMPLEMENTATION-PROCESS-REQS-81684 +id: DOC-IMPLEMENTATION-PROCESS-REQS-59749 title: Implementation Process Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/software_development_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/software_development_template.md index bb2d470..6df1ad8 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/software_development_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/guidance/software_development_template.md @@ -1,5 +1,5 @@ --- -id: DOC-SOFTWARE-DEVELOPMENT-TEMPLATE-8449 +id: DOC-SOFTWARE-DEVELOPMENT-TEMPLATE-85577 title: Software Development Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_concept.md index 8173b3d..c10f6f3 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-IMPLEMENTATION-CONCEPT-26317 +id: DOC-IMPLEMENTATION-CONCEPT-89632 title: Implementation Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_getstrt.md index a0e86cf..6fca24d 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-IMPLEMENTATION-GETSTRT-16358 +id: DOC-IMPLEMENTATION-GETSTRT-86612 title: Implementation Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_workflow.md index c5269a5..7387709 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-IMPLEMENTATION-WORKFLOW-23506 +id: DOC-IMPLEMENTATION-WORKFLOW-45256 title: Implementation Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_workproducts.md index 6e0ae76..616873e 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/implementation/implementation_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-IMPLEMENTATION-WORKPRODUCTS-90261 +id: DOC-IMPLEMENTATION-WORKPRODUCTS-66167 title: Implementation Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/guidance/platform_management_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/guidance/platform_management_guideline.md index 2696122..0a5b19e 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/guidance/platform_management_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/guidance/platform_management_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-MANAGEMENT-GUIDELINE-32977 +id: DOC-PLATFORM-MANAGEMENT-GUIDELINE-61950 title: Platform Management Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/guidance/platform_management_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/guidance/platform_management_template.md index 62fa317..e908324 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/guidance/platform_management_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/guidance/platform_management_template.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-MANAGEMENT-TEMPLATE-13172 +id: DOC-PLATFORM-MANAGEMENT-TEMPLATE-44249 title: Platform Management Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_concept.md index 291ba4d..f3ddca8 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-MANAGEMENT-CONCEPT-92462 +id: DOC-PLATFORM-MANAGEMENT-CONCEPT-1917 title: Platform Management Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_getstrt.md index 017fac7..a37342f 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-MANAGEMENT-GETSTRT-14750 +id: DOC-PLATFORM-MANAGEMENT-GETSTRT-61178 title: Platform Management Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_workflow.md index eb3a3f7..c1bafb3 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-MANAGEMENT-WORKFLOW-43974 +id: DOC-PLATFORM-MANAGEMENT-WORKFLOW-68251 title: Platform Management Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_workproducts.md index da6b50d..7d81d0f 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/platform_management/platform_management_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-MANAGEMENT-WORKPRODUCTS-22087 +id: DOC-PLATFORM-MANAGEMENT-WORKPRODUCTS-24415 title: Platform Management Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_checklist.md b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_checklist.md index 17a1c5d..5b26157 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_checklist.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_checklist.md @@ -1,5 +1,5 @@ --- -id: DOC-PROBLEM-RESOLUTION-CHECKLIST-24154 +id: DOC-PROBLEM-RESOLUTION-CHECKLIST-33506 title: Problem Resolution Checklist type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_guideline.md index 70cc835..afe3ac3 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-PROBLEM-RESOLUTION-GUIDELINE-86484 +id: DOC-PROBLEM-RESOLUTION-GUIDELINE-9849 title: Problem Resolution Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_reqs.md index ac1301a..ace70f2 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-PROBLEM-RESOLUTION-REQS-88800 +id: DOC-PROBLEM-RESOLUTION-REQS-55993 title: Problem Resolution Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_template.md index 8b167f9..2fca4bd 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/guidance/problem_resolution_template.md @@ -1,5 +1,5 @@ --- -id: DOC-PROBLEM-RESOLUTION-TEMPLATE-7107 +id: DOC-PROBLEM-RESOLUTION-TEMPLATE-87749 title: Problem Resolution Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_concept.md index 5953a05..8aac02b 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-PROBLEM-RESOLUTION-CONCEPT-33461 +id: DOC-PROBLEM-RESOLUTION-CONCEPT-54158 title: Problem Resolution Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_getstrt.md index 43ee01d..31b9a2c 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-PROBLEM-RESOLUTION-GETSTRT-57893 +id: DOC-PROBLEM-RESOLUTION-GETSTRT-92077 title: Problem Resolution Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_workflow.md index 228fc7a..cd43abc 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-PROBLEM-RESOLUTION-WORKFLOW-22758 +id: DOC-PROBLEM-RESOLUTION-WORKFLOW-12312 title: Problem Resolution Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_workproducts.md index 0fddc5c..7f2d943 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/problem_resolution/problem_resolution_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-PROBLEM-RESOLUTION-WORKPRODUCTS-96849 +id: DOC-PROBLEM-RESOLUTION-WORKPRODUCTS-39783 title: Problem Resolution Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/guidance/process_management_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/guidance/process_management_guideline.md index a6971bb..6457066 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/guidance/process_management_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/guidance/process_management_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-PROCESS-MANAGEMENT-GUIDELINE-69023 +id: DOC-PROCESS-MANAGEMENT-GUIDELINE-143 title: Process Management Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/guidance/process_management_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/guidance/process_management_reqs.md index 6fdeee8..187e8c9 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/guidance/process_management_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/guidance/process_management_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-PROCESS-MANAGEMENT-REQS-38092 +id: DOC-PROCESS-MANAGEMENT-REQS-53559 title: Process Management Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/guidance/process_management_templates.md b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/guidance/process_management_templates.md index b5841d5..7b35d9d 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/guidance/process_management_templates.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/guidance/process_management_templates.md @@ -1,5 +1,5 @@ --- -id: DOC-PROCESS-MANAGEMENT-TEMPLATES-76756 +id: DOC-PROCESS-MANAGEMENT-TEMPLATES-71283 title: Process Management Templates type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_concept.md index a6c9698..a09b3bf 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-PROCESS-MANAGEMENT-CONCEPT-20987 +id: DOC-PROCESS-MANAGEMENT-CONCEPT-83649 title: Process Management Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_getstrt.md index 2296549..3854627 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-PROCESS-MANAGEMENT-GETSTRT-87923 +id: DOC-PROCESS-MANAGEMENT-GETSTRT-36061 title: Process Management Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_workflow.md index 8b5f1e8..1c1f2c4 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-PROCESS-MANAGEMENT-WORKFLOW-92108 +id: DOC-PROCESS-MANAGEMENT-WORKFLOW-13008 title: Process Management Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_workproducts.md index bef53e4..9ff2557 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/process_management/process_management_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-PROCESS-MANAGEMENT-WORKPRODUCTS-92262 +id: DOC-PROCESS-MANAGEMENT-WORKPRODUCTS-65271 title: Process Management Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_plan_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_plan_guideline.md index a79ce6b..fc374c3 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_plan_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_plan_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-QUALITY-PLAN-GUIDELINE-7594 +id: DOC-QUALITY-PLAN-GUIDELINE-57800 title: Quality Plan Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_plan_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_plan_template.md index 689d67c..0d5441b 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_plan_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_plan_template.md @@ -1,5 +1,5 @@ --- -id: DOC-QUALITY-PLAN-TEMPLATE-56256 +id: DOC-QUALITY-PLAN-TEMPLATE-44583 title: Quality Plan Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_process_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_process_reqs.md index c82f108..b7bfc42 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_process_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_process_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-QUALITY-PROCESS-REQS-57014 +id: DOC-QUALITY-PROCESS-REQS-38827 title: Quality Process Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_report_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_report_template.md index 96e33c6..f82232b 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_report_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_report_template.md @@ -1,5 +1,5 @@ --- -id: DOC-QUALITY-REPORT-TEMPLATE-34461 +id: DOC-QUALITY-REPORT-TEMPLATE-42341 title: Quality Report Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_review_checklist.md b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_review_checklist.md index 0ce5542..2dc6012 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_review_checklist.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_review_checklist.md @@ -1,5 +1,5 @@ --- -id: DOC-QUALITY-REVIEW-CHECKLIST-52378 +id: DOC-QUALITY-REVIEW-CHECKLIST-15638 title: Quality Review Checklist type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_work_product_review_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_work_product_review_guideline.md index bfe91ed..0cbc8b1 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_work_product_review_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/guidance/quality_work_product_review_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-QUALITY-WORK-PRODUCT-REVIEW-GUIDELINE-57355 +id: DOC-QUALITY-WORK-PRODUCT-REVIEW-GUIDELINE-41224 title: Quality Work Product Review Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_concept.md index e14930d..a02a491 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-QUALITY-CONCEPT-76105 +id: DOC-QUALITY-CONCEPT-92623 title: Quality Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_getstrt.md index 97db8cc..3e7b6a1 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-QUALITY-GETSTRT-12764 +id: DOC-QUALITY-GETSTRT-55914 title: Quality Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_roles.md b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_roles.md index 91fb705..fd337fc 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_roles.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_roles.md @@ -1,5 +1,5 @@ --- -id: DOC-QUALITY-ROLES-4098 +id: DOC-QUALITY-ROLES-70799 title: Quality Roles type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_workflow.md index e9fd336..e4e74b9 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-QUALITY-WORKFLOW-48820 +id: DOC-QUALITY-WORKFLOW-85980 title: Quality Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_workproducts.md index 0b5fd56..09e3f88 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/quality_management/quality_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-QUALITY-WORKPRODUCTS-84769 +id: DOC-QUALITY-WORKPRODUCTS-6787 title: Quality Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/guidance/release_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/guidance/release_guideline.md index 6624048..2161412 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/guidance/release_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/guidance/release_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-GUIDELINE-71548 +id: DOC-RELEASE-GUIDELINE-47034 title: Release Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/guidance/release_process_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/guidance/release_process_reqs.md index 2d1106c..5df9697 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/guidance/release_process_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/guidance/release_process_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-PROCESS-REQS-29048 +id: DOC-RELEASE-PROCESS-REQS-5456 title: Release Process Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/guidance/release_templates.md b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/guidance/release_templates.md index 13fe522..8146f11 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/guidance/release_templates.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/guidance/release_templates.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-TEMPLATES-5850 +id: DOC-RELEASE-TEMPLATES-85760 title: Release Templates type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_concept.md index c7b6714..7dfa128 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-CONCEPT-47978 +id: DOC-RELEASE-CONCEPT-88595 title: Release Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_getstrt.md index b45e72e..2a5b59a 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-GETSTRT-76590 +id: DOC-RELEASE-GETSTRT-57110 title: Release Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_workflow.md index 0d17666..7d0f736 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-WORKFLOW-49676 +id: DOC-RELEASE-WORKFLOW-86869 title: Release Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_workproducts.md index adf9a57..e8ffc28 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/release_management/release_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-WORKPRODUCTS-21329 +id: DOC-RELEASE-WORKPRODUCTS-63836 title: Release Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_guideline.md index 254d600..71ddaf5 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-REQUIREMENTS-GUIDELINE-17167 +id: DOC-REQUIREMENTS-GUIDELINE-46636 title: Requirements Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_inspection_checklist.md b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_inspection_checklist.md index 7e241c6..bc6ecf2 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_inspection_checklist.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_inspection_checklist.md @@ -1,5 +1,5 @@ --- -id: DOC-REQUIREMENTS-INSPECTION-CHECKLIST-43806 +id: DOC-REQUIREMENTS-INSPECTION-CHECKLIST-11204 title: Requirements Inspection Checklist type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_process_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_process_reqs.md index f406842..46e0e91 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_process_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_process_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-REQUIREMENTS-PROCESS-REQS-90133 +id: DOC-REQUIREMENTS-PROCESS-REQS-78247 title: Requirements Process Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_templates.md b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_templates.md index f9db381..ed0491b 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_templates.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/guidance/requirements_templates.md @@ -1,5 +1,5 @@ --- -id: DOC-REQUIREMENTS-TEMPLATES-99105 +id: DOC-REQUIREMENTS-TEMPLATES-5272 title: Requirements Templates type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_concept.md index ef47a62..75137f6 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-REQUIREMENTS-CONCEPT-36386 +id: DOC-REQUIREMENTS-CONCEPT-22175 title: Requirements Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_getstrt.md index ed52819..7b7dc4a 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-REQUIREMENTS-GETSTRT-29117 +id: DOC-REQUIREMENTS-GETSTRT-87886 title: Requirements Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_workflow.md index f82de9c..20f6b5a 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-REQUIREMENTS-WORKFLOW-24018 +id: DOC-REQUIREMENTS-WORKFLOW-76360 title: Requirements Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_workproducts.md index 9e1b6e5..f1a5c23 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/requirements_engineering/requirements_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-REQUIREMENTS-WORKPRODUCTS-47965 +id: DOC-REQUIREMENTS-WORKPRODUCTS-8965 title: Requirements Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/dfa_failure_initiators.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/dfa_failure_initiators.md index 399f278..a45ce82 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/dfa_failure_initiators.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/dfa_failure_initiators.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-FAILURE-INITIATORS-62139 +id: DOC-DFA-FAILURE-INITIATORS-33349 title: Dfa Failure Initiators type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/dfa_templates.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/dfa_templates.md index a5fb139..a9fa067 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/dfa_templates.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/dfa_templates.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-TEMPLATES-55941 +id: DOC-DFA-TEMPLATES-363 title: Dfa Templates type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/fault_models_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/fault_models_guideline.md index 12f49ce..e22af45 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/fault_models_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/fault_models_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-FAULT-MODELS-GUIDELINE-71866 +id: DOC-FAULT-MODELS-GUIDELINE-7314 title: Fault Models Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/fmea_templates.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/fmea_templates.md index f01cbcd..e4e8da5 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/fmea_templates.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/fmea_templates.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-TEMPLATES-71279 +id: DOC-FMEA-TEMPLATES-70710 title: Fmea Templates type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/safety_analysis_checklist.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/safety_analysis_checklist.md index bb14c37..29ec68e 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/safety_analysis_checklist.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/safety_analysis_checklist.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-ANALYSIS-CHECKLIST-6266 +id: DOC-SAFETY-ANALYSIS-CHECKLIST-22564 title: Safety Analysis Checklist type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/safety_analysis_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/safety_analysis_guideline.md index 37160d1..aff3bab 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/safety_analysis_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/safety_analysis_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-ANALYSIS-GUIDELINE-66342 +id: DOC-SAFETY-ANALYSIS-GUIDELINE-55302 title: Safety Analysis Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/safety_analysis_process_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/safety_analysis_process_reqs.md index 5c8708b..b2a1c11 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/safety_analysis_process_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/guidance/safety_analysis_process_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-ANALYSIS-PROCESS-REQS-31053 +id: DOC-SAFETY-ANALYSIS-PROCESS-REQS-21128 title: Safety Analysis Process Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_concept.md index 44cc917..7f5b600 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-ANALYSIS-CONCEPT-36373 +id: DOC-SAFETY-ANALYSIS-CONCEPT-29362 title: Safety Analysis Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_getstrt.md index 5fdeb1e..967fbdf 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-ANALYSIS-GETSTRT-98992 +id: DOC-SAFETY-ANALYSIS-GETSTRT-3725 title: Safety Analysis Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_roles.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_roles.md index 64f0a93..d2aaa89 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_roles.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_roles.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-ANALYSIS-ROLES-61400 +id: DOC-SAFETY-ANALYSIS-ROLES-13115 title: Safety Analysis Roles type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_workflow.md index 354e3a3..34f4e6a 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-ANALYSIS-WORKFLOW-56655 +id: DOC-SAFETY-ANALYSIS-WORKFLOW-55092 title: Safety Analysis Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_workproducts.md index 5326abd..d3cc52a 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_analysis/safety_analysis_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-ANALYSIS-WORKPRODUCTS-61258 +id: DOC-SAFETY-ANALYSIS-WORKPRODUCTS-71292 title: Safety Analysis Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/checklist_safety_package.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/checklist_safety_package.md index 25ad714..e5ba54b 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/checklist_safety_package.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/checklist_safety_package.md @@ -1,5 +1,5 @@ --- -id: DOC-CHECKLIST-SAFETY-PACKAGE-54810 +id: DOC-CHECKLIST-SAFETY-PACKAGE-85896 title: Checklist Safety Package type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/checklist_safety_plan.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/checklist_safety_plan.md index aafe6b9..acd2ccc 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/checklist_safety_plan.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/checklist_safety_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-CHECKLIST-SAFETY-PLAN-97913 +id: DOC-CHECKLIST-SAFETY-PLAN-89932 title: Checklist Safety Plan type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/guideline_component_classification.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/guideline_component_classification.md index dfc6377..ab5b523 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/guideline_component_classification.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/guideline_component_classification.md @@ -1,5 +1,5 @@ --- -id: DOC-GUIDELINE-COMPONENT-CLASSIFICATION-84556 +id: DOC-GUIDELINE-COMPONENT-CLASSIFICATION-90843 title: Guideline Component Classification type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/guideline_safety_management.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/guideline_safety_management.md index 5cb0710..771189d 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/guideline_safety_management.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/guideline_safety_management.md @@ -1,5 +1,5 @@ --- -id: DOC-GUIDELINE-SAFETY-MANAGEMENT-74787 +id: DOC-GUIDELINE-SAFETY-MANAGEMENT-57093 title: Guideline Safety Management type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/process_req.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/process_req.md index fbdb2d6..8d258c1 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/process_req.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/process_req.md @@ -1,5 +1,5 @@ --- -id: DOC-PROCESS-REQ-29120 +id: DOC-PROCESS-REQ-30273 title: Process Req type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/template_component_classification.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/template_component_classification.md index aa6eb0b..6778dde 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/template_component_classification.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/template_component_classification.md @@ -1,5 +1,5 @@ --- -id: DOC-TEMPLATE-COMPONENT-CLASSIFICATION-55304 +id: DOC-TEMPLATE-COMPONENT-CLASSIFICATION-7344 title: Template Component Classification type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/template_safety_manual.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/template_safety_manual.md index 468e351..b9419ea 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/template_safety_manual.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/template_safety_manual.md @@ -1,5 +1,5 @@ --- -id: DOC-TEMPLATE-SAFETY-MANUAL-2532 +id: DOC-TEMPLATE-SAFETY-MANUAL-81943 title: Template Safety Manual type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/templates_safety_plan.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/templates_safety_plan.md index 6ee9dc4..c9a19b0 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/templates_safety_plan.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/guidance/templates_safety_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-TEMPLATES-SAFETY-PLAN-40605 +id: DOC-TEMPLATES-SAFETY-PLAN-53060 title: Templates Safety Plan type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_concept.md index fee1dad..6db01dd 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-MANAGEMENT-CONCEPT-78551 +id: DOC-SAFETY-MANAGEMENT-CONCEPT-50142 title: Safety Management Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_getstrt.md index 60014ae..e68c335 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-MANAGEMENT-GETSTRT-5413 +id: DOC-SAFETY-MANAGEMENT-GETSTRT-33455 title: Safety Management Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_roles.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_roles.md index d891c34..edee14a 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_roles.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_roles.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-MANAGEMENT-ROLES-2098 +id: DOC-SAFETY-MANAGEMENT-ROLES-42138 title: Safety Management Roles type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_workflow.md index 6e1f8cd..9bab289 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-MANAGEMENT-WORKFLOW-88868 +id: DOC-SAFETY-MANAGEMENT-WORKFLOW-46730 title: Safety Management Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_workproducts.md index 525755d..1ba5238 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/safety_management/safety_management_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-MANAGEMENT-WORKPRODUCTS-32665 +id: DOC-SAFETY-MANAGEMENT-WORKPRODUCTS-85797 title: Safety Management Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_checklist.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_checklist.md index 7b1287f..531c8f5 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_checklist.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_checklist.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-ANALYSIS-CHECKLIST-57840 +id: DOC-SECURITY-ANALYSIS-CHECKLIST-2269 title: Security Analysis Checklist type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_guideline.md index 3c6a725..559fb8b 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-ANALYSIS-GUIDELINE-51515 +id: DOC-SECURITY-ANALYSIS-GUIDELINE-53473 title: Security Analysis Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_process_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_process_reqs.md index 7617a56..18742b7 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_process_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_process_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-ANALYSIS-PROCESS-REQS-60166 +id: DOC-SECURITY-ANALYSIS-PROCESS-REQS-87268 title: Security Analysis Process Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_models_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_models_guideline.md index 60a70f0..37ca180 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_models_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_models_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-ANALYSIS-THREAT-MODELS-GUIDELINE-12665 +id: DOC-SECURITY-ANALYSIS-THREAT-MODELS-GUIDELINE-87363 title: Security Analysis Threat Models Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_scenario_templates.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_scenario_templates.md index da9ca04..5606413 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_scenario_templates.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_scenario_templates.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-ANALYSIS-THREAT-SCENARIO-TEMPLATES-57003 +id: DOC-SECURITY-ANALYSIS-THREAT-SCENARIO-TEMPLATES-39877 title: Security Analysis Threat Scenario Templates type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_scenarios_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_scenarios_guideline.md index 3b86c3b..8295762 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_scenarios_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_scenarios_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-ANALYSIS-THREAT-SCENARIOS-GUIDELINE-49895 +id: DOC-SECURITY-ANALYSIS-THREAT-SCENARIOS-GUIDELINE-43655 title: Security Analysis Threat Scenarios Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_templates.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_templates.md index b536b11..c14a521 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_templates.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/guidance/security_analysis_threat_templates.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-ANALYSIS-THREAT-TEMPLATES-59588 +id: DOC-SECURITY-ANALYSIS-THREAT-TEMPLATES-52185 title: Security Analysis Threat Templates type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_concept.md index 7aaff28..9017f90 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-ANALYSIS-CONCEPT-44 +id: DOC-SECURITY-ANALYSIS-CONCEPT-32776 title: Security Analysis Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_getstrt.md index 00974b1..5df0190 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-ANALYSIS-GETSTRT-95891 +id: DOC-SECURITY-ANALYSIS-GETSTRT-44028 title: Security Analysis Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_roles.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_roles.md index bb24ab3..3e4dbee 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_roles.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_roles.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-ANALYSIS-ROLES-73560 +id: DOC-SECURITY-ANALYSIS-ROLES-97220 title: Security Analysis Roles type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_workflow.md index ad95f93..e6ccac4 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-ANALYSIS-WORKFLOW-45716 +id: DOC-SECURITY-ANALYSIS-WORKFLOW-19052 title: Security Analysis Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_workproducts.md index a652453..79d623a 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_analysis/security_analysis_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-ANALYSIS-WORKPRODUCTS-92613 +id: DOC-SECURITY-ANALYSIS-WORKPRODUCTS-37145 title: Security Analysis Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/checklist_security_package.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/checklist_security_package.md index a30bb7b..3359d30 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/checklist_security_package.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/checklist_security_package.md @@ -1,5 +1,5 @@ --- -id: DOC-CHECKLIST-SECURITY-PACKAGE-55569 +id: DOC-CHECKLIST-SECURITY-PACKAGE-48775 title: Checklist Security Package type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/checklist_security_plan.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/checklist_security_plan.md index 87e5aea..f33074a 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/checklist_security_plan.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/checklist_security_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-CHECKLIST-SECURITY-PLAN-52771 +id: DOC-CHECKLIST-SECURITY-PLAN-26591 title: Checklist Security Plan type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_management_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_management_guideline.md index d76fceb..55b5087 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_management_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_management_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-MANAGEMENT-GUIDELINE-85414 +id: DOC-SECURITY-MANAGEMENT-GUIDELINE-92134 title: Security Management Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_management_process_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_management_process_reqs.md index dd105a6..f7d881b 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_management_process_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_management_process_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-MANAGEMENT-PROCESS-REQS-55526 +id: DOC-SECURITY-MANAGEMENT-PROCESS-REQS-63225 title: Security Management Process Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_manual_templates.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_manual_templates.md index df0e71b..4a84dfe 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_manual_templates.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_manual_templates.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-MANUAL-TEMPLATES-26103 +id: DOC-SECURITY-MANUAL-TEMPLATES-94653 title: Security Manual Templates type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_plan_templates.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_plan_templates.md index e82b3ce..a915c65 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_plan_templates.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/guidance/security_plan_templates.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-PLAN-TEMPLATES-20762 +id: DOC-SECURITY-PLAN-TEMPLATES-18620 title: Security Plan Templates type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_concept.md index 5fe535b..bef5c54 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-MANAGEMENT-CONCEPT-4458 +id: DOC-SECURITY-MANAGEMENT-CONCEPT-68131 title: Security Management Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_getstrt.md index 056a548..30b1a90 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-MANAGEMENT-GETSTRT-11508 +id: DOC-SECURITY-MANAGEMENT-GETSTRT-20811 title: Security Management Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_roles.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_roles.md index bfbbf90..1161625 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_roles.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_roles.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-MANAGEMENT-ROLES-45019 +id: DOC-SECURITY-MANAGEMENT-ROLES-64682 title: Security Management Roles type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_workflow.md index 9727736..24e17cc 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-MANAGEMENT-WORKFLOW-74816 +id: DOC-SECURITY-MANAGEMENT-WORKFLOW-31369 title: Security Management Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_workproducts.md index ebb0d7c..2c55267 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/security_management/security_management_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-MANAGEMENT-WORKPRODUCTS-75671 +id: DOC-SECURITY-MANAGEMENT-WORKPRODUCTS-96348 title: Security Management Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_checklist.md b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_checklist.md index 182981f..c7e7dcb 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_checklist.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_checklist.md @@ -1,5 +1,5 @@ --- -id: DOC-TOOL-MANAGEMENT-CHECKLIST-84881 +id: DOC-TOOL-MANAGEMENT-CHECKLIST-44956 title: Tool Management Checklist type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_guideline.md index fb7939c..83e5a77 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-TOOL-MANAGEMENT-GUIDELINE-33076 +id: DOC-TOOL-MANAGEMENT-GUIDELINE-43793 title: Tool Management Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_reqs.md index 40db844..ba82cf8 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-TOOL-MANAGEMENT-REQS-73952 +id: DOC-TOOL-MANAGEMENT-REQS-77308 title: Tool Management Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_template.md index b5e0ce9..3cc9bbd 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/guidance/tool_management_template.md @@ -1,5 +1,5 @@ --- -id: DOC-TOOL-MANAGEMENT-TEMPLATE-59287 +id: DOC-TOOL-MANAGEMENT-TEMPLATE-12408 title: Tool Management Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_concept.md index 56da4be..49c299c 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-TOOL-MANAGEMENT-CONCEPT-69233 +id: DOC-TOOL-MANAGEMENT-CONCEPT-12437 title: Tool Management Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_getstrt.md index 3ba11c1..933ebdc 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-TOOL-MANAGEMENT-GETSTRT-82222 +id: DOC-TOOL-MANAGEMENT-GETSTRT-97633 title: Tool Management Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_workflow.md b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_workflow.md index 186f3fd..4a39b70 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_workflow.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_workflow.md @@ -1,5 +1,5 @@ --- -id: DOC-TOOL-MANAGEMENT-WORKFLOW-12798 +id: DOC-TOOL-MANAGEMENT-WORKFLOW-31095 title: Tool Management Workflow type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_workproducts.md index e6ff771..09b45bb 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/tool_management/tool_management_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-TOOL-MANAGEMENT-WORKPRODUCTS-29836 +id: DOC-TOOL-MANAGEMENT-WORKPRODUCTS-84473 title: Tool Management Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_guideline.md b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_guideline.md index 5bcc0fb..4ae3c76 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_guideline.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-VERIFICATION-GUIDELINE-16256 +id: DOC-VERIFICATION-GUIDELINE-46183 title: Verification Guideline type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_methods.md b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_methods.md index de1c73e..c9853e5 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_methods.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_methods.md @@ -1,5 +1,5 @@ --- -id: DOC-VERIFICATION-METHODS-10373 +id: DOC-VERIFICATION-METHODS-38859 title: Verification Methods type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_plan_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_plan_template.md index b1c0ad0..412dacb 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_plan_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_plan_template.md @@ -1,5 +1,5 @@ --- -id: DOC-VERIFICATION-PLAN-TEMPLATE-59666 +id: DOC-VERIFICATION-PLAN-TEMPLATE-82814 title: Verification Plan Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_process_reqs.md b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_process_reqs.md index adf6b96..8bb1da7 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_process_reqs.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_process_reqs.md @@ -1,5 +1,5 @@ --- -id: DOC-VERIFICATION-PROCESS-REQS-71366 +id: DOC-VERIFICATION-PROCESS-REQS-34113 title: Verification Process Reqs type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_report_template.md b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_report_template.md index 9dc4e70..dbf823a 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_report_template.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_report_template.md @@ -1,5 +1,5 @@ --- -id: DOC-VERIFICATION-REPORT-TEMPLATE-59966 +id: DOC-VERIFICATION-REPORT-TEMPLATE-5642 title: Verification Report Template type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_specification.md b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_specification.md index 1b144c5..fbd3b44 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_specification.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_specification.md @@ -1,5 +1,5 @@ --- -id: DOC-VERIFICATION-SPECIFICATION-19275 +id: DOC-VERIFICATION-SPECIFICATION-34371 title: Verification Specification type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_templates.md b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_templates.md index c15147a..4620c0b 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_templates.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/guidance/verification_templates.md @@ -1,5 +1,5 @@ --- -id: DOC-VERIFICATION-TEMPLATES-99299 +id: DOC-VERIFICATION-TEMPLATES-25604 title: Verification Templates type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_concept.md b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_concept.md index ed1e022..7c528cd 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_concept.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_concept.md @@ -1,5 +1,5 @@ --- -id: DOC-VERIFICATION-CONCEPT-23404 +id: DOC-VERIFICATION-CONCEPT-82551 title: Verification Concept type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_getstrt.md b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_getstrt.md index a4ffe12..495dde7 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_getstrt.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_getstrt.md @@ -1,5 +1,5 @@ --- -id: DOC-VERIFICATION-GETSTRT-67702 +id: DOC-VERIFICATION-GETSTRT-88042 title: Verification Getstrt type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_workflows.md b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_workflows.md index 4330a00..b936132 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_workflows.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_workflows.md @@ -1,5 +1,5 @@ --- -id: DOC-VERIFICATION-WORKFLOWS-15943 +id: DOC-VERIFICATION-WORKFLOWS-83080 title: Verification Workflows type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_workproducts.md b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_workproducts.md index 6759a48..87150b9 100644 --- a/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_workproducts.md +++ b/rivet/eclipse-score-process-description/docs/process/process_areas/verification/verification_workproducts.md @@ -1,5 +1,5 @@ --- -id: DOC-VERIFICATION-WORKPRODUCTS-17494 +id: DOC-VERIFICATION-WORKPRODUCTS-92534 title: Verification Workproducts type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/release_notes/release_note_v_1_5_3.md b/rivet/eclipse-score-process-description/docs/process/release_notes/release_note_v_1_5_3.md index 39ea492..d5c9001 100644 --- a/rivet/eclipse-score-process-description/docs/process/release_notes/release_note_v_1_5_3.md +++ b/rivet/eclipse-score-process-description/docs/process/release_notes/release_note_v_1_5_3.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-NOTE-V-1-5-3-52778 +id: DOC-RELEASE-NOTE-V-1-5-3-2274 title: Release Note V 1 5 3 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/roles/index.md b/rivet/eclipse-score-process-description/docs/process/roles/index.md index 2b9dfca..a87bd8e 100644 --- a/rivet/eclipse-score-process-description/docs/process/roles/index.md +++ b/rivet/eclipse-score-process-description/docs/process/roles/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-7110 +id: DOC-INDEX-21002 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/aspice.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/aspice.md index 6b91030..389562d 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/aspice.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/aspice.md @@ -1,5 +1,5 @@ --- -id: DOC-ASPICE-15309 +id: DOC-ASPICE-10726 title: Aspice type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-01.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-01.md index f878944..9350171 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-01.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-01.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-01-95037 +id: DOC-IIC-01-91121 title: Iic-01 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-02.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-02.md index 89e561b..f3c1db2 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-02.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-02.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-02-6041 +id: DOC-IIC-02-19180 title: Iic-02 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-03.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-03.md index 92d226a..742d4fb 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-03.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-03.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-03-81902 +id: DOC-IIC-03-32059 title: Iic-03 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-04.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-04.md index d7ca1ea..3e8e2be 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-04.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-04.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-04-71658 +id: DOC-IIC-04-37316 title: Iic-04 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-06.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-06.md index 0386b4e..cdbb3a3 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-06.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-06.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-06-79353 +id: DOC-IIC-06-21118 title: Iic-06 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-07.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-07.md index 07ba08d..eddc0f3 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-07.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-07.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-07-24609 +id: DOC-IIC-07-68760 title: Iic-07 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-08.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-08.md index d85ad2d..5d5ef96 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-08.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-08.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-08-45185 +id: DOC-IIC-08-96354 title: Iic-08 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-10.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-10.md index 61b560f..682bce1 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-10.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-10.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-10-13281 +id: DOC-IIC-10-10301 title: Iic-10 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-11.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-11.md index 032735d..2057c03 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-11.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-11.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-11-82798 +id: DOC-IIC-11-4538 title: Iic-11 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-12.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-12.md index 884f27e..b747c69 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-12.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-12.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-12-77261 +id: DOC-IIC-12-40972 title: Iic-12 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-13.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-13.md index 581a148..a1faace 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-13.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-13.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-13-65570 +id: DOC-IIC-13-51736 title: Iic-13 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-14.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-14.md index a2c07ae..c51acb9 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-14.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-14.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-14-53697 +id: DOC-IIC-14-69585 title: Iic-14 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-15.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-15.md index 54715bf..cddc27e 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-15.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-15.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-15-65229 +id: DOC-IIC-15-61300 title: Iic-15 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-16.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-16.md index fac15f5..bade992 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-16.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-16.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-16-33802 +id: DOC-IIC-16-65457 title: Iic-16 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-17.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-17.md index dff2ce8..da9ac75 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-17.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-17.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-17-21283 +id: DOC-IIC-17-60452 title: Iic-17 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-18.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-18.md index 8f08bdf..2926746 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-18.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-18.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-18-58390 +id: DOC-IIC-18-90911 title: Iic-18 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-19.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-19.md index fe2d586..76edecf 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-19.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/iic/iic-19.md @@ -1,5 +1,5 @@ --- -id: DOC-IIC-19-30967 +id: DOC-IIC-19-79464 title: Iic-19 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/man/man.3.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/man/man.3.md index 58a398a..a1ef3dd 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/man/man.3.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/man/man.3.md @@ -1,5 +1,5 @@ --- -id: DOC-MAN.3-88532 +id: DOC-MAN.3-87379 title: Man.3 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/man/man.5.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/man/man.5.md index 52805c0..188797a 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/man/man.5.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/man/man.5.md @@ -1,5 +1,5 @@ --- -id: DOC-MAN.5-59517 +id: DOC-MAN.5-12850 title: Man.5 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.1.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.1.md index 57afd02..9e64aa9 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.1.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.1.md @@ -1,5 +1,5 @@ --- -id: DOC-MLE.1-39709 +id: DOC-MLE.1-89645 title: Mle.1 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.2.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.2.md index dc230f4..0d81909 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.2.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.2.md @@ -1,5 +1,5 @@ --- -id: DOC-MLE.2-8004 +id: DOC-MLE.2-47719 title: Mle.2 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.3.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.3.md index 9ecdaff..0422140 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.3.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.3.md @@ -1,5 +1,5 @@ --- -id: DOC-MLE.3-52227 +id: DOC-MLE.3-56579 title: Mle.3 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.4.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.4.md index d54df09..421887b 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.4.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/mle/mle.4.md @@ -1,5 +1,5 @@ --- -id: DOC-MLE.4-18997 +id: DOC-MLE.4-51072 title: Mle.4 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/pim/pim.3.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/pim/pim.3.md index 77b2817..07382f0 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/pim/pim.3.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/pim/pim.3.md @@ -1,5 +1,5 @@ --- -id: DOC-PIM.3-74767 +id: DOC-PIM.3-47369 title: Pim.3 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/reu/reu.2.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/reu/reu.2.md index ed81335..0b20d14 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/reu/reu.2.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/reu/reu.2.md @@ -1,5 +1,5 @@ --- -id: DOC-REU.2-21624 +id: DOC-REU.2-29842 title: Reu.2 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/spl/spl.2.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/spl/spl.2.md index 477c203..9af470d 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/spl/spl.2.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/spl/spl.2.md @@ -1,5 +1,5 @@ --- -id: DOC-SPL.2-23727 +id: DOC-SPL.2-63554 title: Spl.2 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.1.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.1.md index 520fbee..b61d489 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.1.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.1.md @@ -1,5 +1,5 @@ --- -id: DOC-SUP.1-35766 +id: DOC-SUP.1-47024 title: Sup.1 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.10.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.10.md index c07e542..bd2ff4f 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.10.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.10.md @@ -1,5 +1,5 @@ --- -id: DOC-SUP.10-15264 +id: DOC-SUP.10-70692 title: Sup.10 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.11.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.11.md index 2611295..c3c334e 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.11.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.11.md @@ -1,5 +1,5 @@ --- -id: DOC-SUP.11-15783 +id: DOC-SUP.11-51928 title: Sup.11 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.8.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.8.md index 2afd0cd..a2effc7 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.8.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.8.md @@ -1,5 +1,5 @@ --- -id: DOC-SUP.8-25461 +id: DOC-SUP.8-78862 title: Sup.8 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.9.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.9.md index eda9af2..2da30a6 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.9.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/sup/sup.9.md @@ -1,5 +1,5 @@ --- -id: DOC-SUP.9-63253 +id: DOC-SUP.9-17745 title: Sup.9 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.1.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.1.md index 494a7e8..9f1a628 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.1.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.1.md @@ -1,5 +1,5 @@ --- -id: DOC-SWE.1-70643 +id: DOC-SWE.1-15289 title: Swe.1 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.2.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.2.md index a20a711..216860a 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.2.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.2.md @@ -1,5 +1,5 @@ --- -id: DOC-SWE.2-64243 +id: DOC-SWE.2-51731 title: Swe.2 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.3.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.3.md index 4cc4c63..7be7483 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.3.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.3.md @@ -1,5 +1,5 @@ --- -id: DOC-SWE.3-57410 +id: DOC-SWE.3-50647 title: Swe.3 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.4.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.4.md index 2144dbc..1434dc0 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.4.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.4.md @@ -1,5 +1,5 @@ --- -id: DOC-SWE.4-11451 +id: DOC-SWE.4-23344 title: Swe.4 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.5.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.5.md index 4d06d9e..aabd20b 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.5.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.5.md @@ -1,5 +1,5 @@ --- -id: DOC-SWE.5-3212 +id: DOC-SWE.5-12083 title: Swe.5 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.6.md b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.6.md index 8aebe8a..9e950f7 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.6.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/aspice_40/swe/swe.6.md @@ -1,5 +1,5 @@ --- -id: DOC-SWE.6-8163 +id: DOC-SWE.6-77520 title: Swe.6 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/iso26262/iso26262.md b/rivet/eclipse-score-process-description/docs/process/standards/iso26262/iso26262.md index f1cd31a..4f23442 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/iso26262/iso26262.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/iso26262/iso26262.md @@ -1,5 +1,5 @@ --- -id: DOC-ISO26262-87855 +id: DOC-ISO26262-2791 title: Iso26262 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/isopas8926/isopas8926.md b/rivet/eclipse-score-process-description/docs/process/standards/isopas8926/isopas8926.md index 974cd43..bcddaab 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/isopas8926/isopas8926.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/isopas8926/isopas8926.md @@ -1,5 +1,5 @@ --- -id: DOC-ISOPAS8926-18743 +id: DOC-ISOPAS8926-43206 title: Isopas8926 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/standards/isosae21434/isosae21434.md b/rivet/eclipse-score-process-description/docs/process/standards/isosae21434/isosae21434.md index 9e00015..d53d354 100644 --- a/rivet/eclipse-score-process-description/docs/process/standards/isosae21434/isosae21434.md +++ b/rivet/eclipse-score-process-description/docs/process/standards/isosae21434/isosae21434.md @@ -1,5 +1,5 @@ --- -id: DOC-ISOSAE21434-40222 +id: DOC-ISOSAE21434-6113 title: Isosae21434 type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/trustable/assertions/assertions.md b/rivet/eclipse-score-process-description/docs/process/trustable/assertions/assertions.md index 59d5149..1d02a2f 100644 --- a/rivet/eclipse-score-process-description/docs/process/trustable/assertions/assertions.md +++ b/rivet/eclipse-score-process-description/docs/process/trustable/assertions/assertions.md @@ -1,5 +1,5 @@ --- -id: DOC-ASSERTIONS-75050 +id: DOC-ASSERTIONS-79467 title: Assertions type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/trustable/index.md b/rivet/eclipse-score-process-description/docs/process/trustable/index.md index 78064bd..547a2c0 100644 --- a/rivet/eclipse-score-process-description/docs/process/trustable/index.md +++ b/rivet/eclipse-score-process-description/docs/process/trustable/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-54150 +id: DOC-INDEX-60006 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-process-description/docs/process/trustable/tenets/tenets.md b/rivet/eclipse-score-process-description/docs/process/trustable/tenets/tenets.md index 2b834e0..fba853b 100644 --- a/rivet/eclipse-score-process-description/docs/process/trustable/tenets/tenets.md +++ b/rivet/eclipse-score-process-description/docs/process/trustable/tenets/tenets.md @@ -1,5 +1,5 @@ --- -id: DOC-TENETS-28957 +id: DOC-TENETS-92034 title: Tenets type: specification status: approved diff --git a/rivet/eclipse-score-process-description/rivet.yaml b/rivet/eclipse-score-process-description/rivet.yaml index 1eed6d9..29370fa 100644 --- a/rivet/eclipse-score-process-description/rivet.yaml +++ b/rivet/eclipse-score-process-description/rivet.yaml @@ -16,4 +16,65 @@ sources: format: generic-yaml docs: - - docs + - docs/process/folder_templates/platform/docs/release + - docs/process/folder_templates/platform/docs/safety_mgt + - docs/process/folder_templates/platform/docs/security_mgt + - docs/process/folder_templates/platform/docs/verification + - docs/process/folder_templates/platform/features/feature_name + - docs/process/folder_templates/platform/features/feature_name/architecture + - docs/process/folder_templates/platform/features/feature_name/requirements + - docs/process/folder_templates/platform/requirements/stakeholder + - docs/process/folder_templates/tools + - docs/process/general_concepts + - docs/process/introduction + - docs/process/process_areas/architecture_design + - docs/process/process_areas/architecture_design/guidance + - docs/process/process_areas/change_management + - docs/process/process_areas/change_management/guidance + - docs/process/process_areas/configuration_management + - docs/process/process_areas/configuration_management/guidance + - docs/process/process_areas/documentation_management + - docs/process/process_areas/documentation_management/guidance + - docs/process/process_areas/implementation + - docs/process/process_areas/implementation/guidance + - docs/process/process_areas/platform_management + - docs/process/process_areas/platform_management/guidance + - docs/process/process_areas/problem_resolution + - docs/process/process_areas/problem_resolution/guidance + - docs/process/process_areas/process_management + - docs/process/process_areas/process_management/guidance + - docs/process/process_areas/quality_management + - docs/process/process_areas/quality_management/guidance + - docs/process/process_areas/release_management + - docs/process/process_areas/release_management/guidance + - docs/process/process_areas/requirements_engineering + - docs/process/process_areas/requirements_engineering/guidance + - docs/process/process_areas/safety_analysis + - docs/process/process_areas/safety_analysis/guidance + - docs/process/process_areas/safety_management + - docs/process/process_areas/safety_management/guidance + - docs/process/process_areas/security_analysis + - docs/process/process_areas/security_analysis/guidance + - docs/process/process_areas/security_management + - docs/process/process_areas/security_management/guidance + - docs/process/process_areas/tool_management + - docs/process/process_areas/tool_management/guidance + - docs/process/process_areas/verification + - docs/process/process_areas/verification/guidance + - docs/process/release_notes + - docs/process/roles + - docs/process/standards/aspice_40 + - docs/process/standards/aspice_40/iic + - docs/process/standards/aspice_40/man + - docs/process/standards/aspice_40/mle + - docs/process/standards/aspice_40/pim + - docs/process/standards/aspice_40/reu + - docs/process/standards/aspice_40/spl + - docs/process/standards/aspice_40/sup + - docs/process/standards/aspice_40/swe + - docs/process/standards/iso26262 + - docs/process/standards/isopas8926 + - docs/process/standards/isosae21434 + - docs/process/trustable + - docs/process/trustable/assertions + - docs/process/trustable/tenets diff --git a/rivet/eclipse-score-reference_integration/docs/docs/score_releases/release_note_score_07.md b/rivet/eclipse-score-reference_integration/docs/docs/score_releases/release_note_score_07.md index 50b7de8..f5578b2 100644 --- a/rivet/eclipse-score-reference_integration/docs/docs/score_releases/release_note_score_07.md +++ b/rivet/eclipse-score-reference_integration/docs/docs/score_releases/release_note_score_07.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-NOTE-SCORE-07-93476 +id: DOC-RELEASE-NOTE-SCORE-07-8289 title: Release Note Score 07 type: specification status: approved diff --git a/rivet/eclipse-score-reference_integration/docs/docs/verification_report/platform_verification_report.md b/rivet/eclipse-score-reference_integration/docs/docs/verification_report/platform_verification_report.md index db4fbd6..ba9e7b4 100644 --- a/rivet/eclipse-score-reference_integration/docs/docs/verification_report/platform_verification_report.md +++ b/rivet/eclipse-score-reference_integration/docs/docs/verification_report/platform_verification_report.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-VERIFICATION-REPORT-2036 +id: DOC-PLATFORM-VERIFICATION-REPORT-99957 title: Platform Verification Report type: specification status: approved diff --git a/rivet/eclipse-score-reference_integration/rivet.yaml b/rivet/eclipse-score-reference_integration/rivet.yaml index 84b38fa..75fad50 100644 --- a/rivet/eclipse-score-reference_integration/rivet.yaml +++ b/rivet/eclipse-score-reference_integration/rivet.yaml @@ -13,4 +13,5 @@ sources: format: generic-yaml docs: - - docs + - docs/docs/score_releases + - docs/docs/verification_report diff --git a/rivet/eclipse-score-score-crates/docs/docs/pastey/docs/component_classification.md b/rivet/eclipse-score-score-crates/docs/docs/pastey/docs/component_classification.md index 3d5b328..9d8190d 100644 --- a/rivet/eclipse-score-score-crates/docs/docs/pastey/docs/component_classification.md +++ b/rivet/eclipse-score-score-crates/docs/docs/pastey/docs/component_classification.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-CLASSIFICATION-1639 +id: DOC-COMPONENT-CLASSIFICATION-50765 title: Component Classification type: specification status: approved diff --git a/rivet/eclipse-score-score-crates/rivet.yaml b/rivet/eclipse-score-score-crates/rivet.yaml index 37451b7..ebd02b1 100644 --- a/rivet/eclipse-score-score-crates/rivet.yaml +++ b/rivet/eclipse-score-score-crates/rivet.yaml @@ -13,4 +13,4 @@ sources: format: generic-yaml docs: - - docs + - docs/docs/pastey/docs diff --git a/rivet/eclipse-score-score/docs/docs/contribute/contribution_request/feature_request.md b/rivet/eclipse-score-score/docs/docs/contribute/contribution_request/feature_request.md index 53c3237..1f189ad 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/contribution_request/feature_request.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/contribution_request/feature_request.md @@ -1,5 +1,5 @@ --- -id: DOC-FEATURE-REQUEST-14056 +id: DOC-FEATURE-REQUEST-92092 title: Feature Request type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/contribute/contribution_request/index.md b/rivet/eclipse-score-score/docs/docs/contribute/contribution_request/index.md index 48be7d9..6ceb4fa 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/contribution_request/index.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/contribution_request/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-77441 +id: DOC-INDEX-64231 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/contribute/development/api_guideline.md b/rivet/eclipse-score-score/docs/docs/contribute/development/api_guideline.md index fb350d2..c66d19a 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/development/api_guideline.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/development/api_guideline.md @@ -1,5 +1,5 @@ --- -id: DOC-API-GUIDELINE-1038 +id: DOC-API-GUIDELINE-93142 title: Api Guideline type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/contribute/development/cpp/code_analysis.md b/rivet/eclipse-score-score/docs/docs/contribute/development/cpp/code_analysis.md index d26c8a0..10e7548 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/development/cpp/code_analysis.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/development/cpp/code_analysis.md @@ -1,5 +1,5 @@ --- -id: DOC-CODE-ANALYSIS-47413 +id: DOC-CODE-ANALYSIS-79771 title: Code Analysis type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/contribute/development/cpp/coding_guidelines.md b/rivet/eclipse-score-score/docs/docs/contribute/development/cpp/coding_guidelines.md index 2f5c96c..f5aacff 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/development/cpp/coding_guidelines.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/development/cpp/coding_guidelines.md @@ -1,5 +1,5 @@ --- -id: DOC-CODING-GUIDELINES-78692 +id: DOC-CODING-GUIDELINES-60004 title: Coding Guidelines type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/contribute/development/cpp/misra_2023_rule_mapping.md b/rivet/eclipse-score-score/docs/docs/contribute/development/cpp/misra_2023_rule_mapping.md index ad4da23..a5b8584 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/development/cpp/misra_2023_rule_mapping.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/development/cpp/misra_2023_rule_mapping.md @@ -1,5 +1,5 @@ --- -id: DOC-MISRA-2023-RULE-MAPPING-95020 +id: DOC-MISRA-2023-RULE-MAPPING-83076 title: Misra 2023 Rule Mapping type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/contribute/development/development_environment.md b/rivet/eclipse-score-score/docs/docs/contribute/development/development_environment.md index b38d06b..e852de3 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/development/development_environment.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/development/development_environment.md @@ -1,5 +1,5 @@ --- -id: DOC-DEVELOPMENT-ENVIRONMENT-9237 +id: DOC-DEVELOPMENT-ENVIRONMENT-47514 title: Development Environment type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/contribute/development/python/coding_guidelines.md b/rivet/eclipse-score-score/docs/docs/contribute/development/python/coding_guidelines.md index 45e8aed..0fb6701 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/development/python/coding_guidelines.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/development/python/coding_guidelines.md @@ -1,5 +1,5 @@ --- -id: DOC-CODING-GUIDELINES-61264 +id: DOC-CODING-GUIDELINES-70152 title: Coding Guidelines type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/contribute/development/rust/coding_guidelines.md b/rivet/eclipse-score-score/docs/docs/contribute/development/rust/coding_guidelines.md index 45ffedf..b25f1f5 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/development/rust/coding_guidelines.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/development/rust/coding_guidelines.md @@ -1,5 +1,5 @@ --- -id: DOC-CODING-GUIDELINES-83661 +id: DOC-CODING-GUIDELINES-98810 title: Coding Guidelines type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/contribute/development/rust/rust_api_design.md b/rivet/eclipse-score-score/docs/docs/contribute/development/rust/rust_api_design.md index 0d310f2..c35fac1 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/development/rust/rust_api_design.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/development/rust/rust_api_design.md @@ -1,5 +1,5 @@ --- -id: DOC-RUST-API-DESIGN-2668 +id: DOC-RUST-API-DESIGN-74254 title: Rust Api Design type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/contribute/development/traceability_tooling.md b/rivet/eclipse-score-score/docs/docs/contribute/development/traceability_tooling.md index a216ed7..b1e77d4 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/development/traceability_tooling.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/development/traceability_tooling.md @@ -1,5 +1,5 @@ --- -id: DOC-TRACEABILITY-TOOLING-8878 +id: DOC-TRACEABILITY-TOOLING-2394 title: Traceability Tooling type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/contribute/general/git.md b/rivet/eclipse-score-score/docs/docs/contribute/general/git.md index 3485e18..5171fe0 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/general/git.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/general/git.md @@ -1,5 +1,5 @@ --- -id: DOC-GIT-37796 +id: DOC-GIT-82945 title: Git type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/contribute/general/naming.md b/rivet/eclipse-score-score/docs/docs/contribute/general/naming.md index f0018dc..eddd881 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/general/naming.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/general/naming.md @@ -1,5 +1,5 @@ --- -id: DOC-NAMING-94736 +id: DOC-NAMING-67876 title: Naming type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/contribute/index.md b/rivet/eclipse-score-score/docs/docs/contribute/index.md index 135b40c..dcfd03a 100644 --- a/rivet/eclipse-score-score/docs/docs/contribute/index.md +++ b/rivet/eclipse-score-score/docs/docs/contribute/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-18752 +id: DOC-INDEX-53935 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/design_decisions/DR-001-proc.md b/rivet/eclipse-score-score/docs/docs/design_decisions/DR-001-proc.md index 737baa2..2cda539 100644 --- a/rivet/eclipse-score-score/docs/docs/design_decisions/DR-001-proc.md +++ b/rivet/eclipse-score-score/docs/docs/design_decisions/DR-001-proc.md @@ -1,5 +1,5 @@ --- -id: DOC-DR-001-PROC-49729 +id: DOC-DR-001-PROC-24545 title: Dr-001-Proc type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/design_decisions/DR-004-infra.md b/rivet/eclipse-score-score/docs/docs/design_decisions/DR-004-infra.md index 059abdb..bd2c3ac 100644 --- a/rivet/eclipse-score-score/docs/docs/design_decisions/DR-004-infra.md +++ b/rivet/eclipse-score-score/docs/docs/design_decisions/DR-004-infra.md @@ -1,5 +1,5 @@ --- -id: DOC-DR-004-INFRA-87890 +id: DOC-DR-004-INFRA-59572 title: Dr-004-Infra type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/design_decisions/DR-007-infra.md b/rivet/eclipse-score-score/docs/docs/design_decisions/DR-007-infra.md index 08b5aef..3469f9b 100644 --- a/rivet/eclipse-score-score/docs/docs/design_decisions/DR-007-infra.md +++ b/rivet/eclipse-score-score/docs/docs/design_decisions/DR-007-infra.md @@ -1,5 +1,5 @@ --- -id: DOC-DR-007-INFRA-41510 +id: DOC-DR-007-INFRA-79969 title: Dr-007-Infra type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/ai_platform/gen_ai/index.md b/rivet/eclipse-score-score/docs/docs/features/ai_platform/gen_ai/index.md index f6c743c..e023d66 100644 --- a/rivet/eclipse-score-score/docs/docs/features/ai_platform/gen_ai/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/ai_platform/gen_ai/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-30831 +id: DOC-INDEX-93017 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/ai_platform/gen_ai/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/ai_platform/gen_ai/requirements/index.md index 89015ec..ad50566 100644 --- a/rivet/eclipse-score-score/docs/docs/features/ai_platform/gen_ai/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/ai_platform/gen_ai/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-29587 +id: DOC-INDEX-26075 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/ai_platform/index.md b/rivet/eclipse-score-score/docs/docs/features/ai_platform/index.md index 69370b9..c845a72 100644 --- a/rivet/eclipse-score-score/docs/docs/features/ai_platform/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/ai_platform/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-29074 +id: DOC-INDEX-91709 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/ai_platform/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/ai_platform/requirements/index.md index b6ec951..7401fc8 100644 --- a/rivet/eclipse-score-score/docs/docs/features/ai_platform/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/ai_platform/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-61936 +id: DOC-INDEX-43484 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/docs/architecture/index.md index 8bcb866..6e7ff53 100644 --- a/rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-53980 +id: DOC-INDEX-47314 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/docs/requirements/mw-fr_logging_req.md b/rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/docs/requirements/mw-fr_logging_req.md index a0d6241..1fb88bb 100644 --- a/rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/docs/requirements/mw-fr_logging_req.md +++ b/rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/docs/requirements/mw-fr_logging_req.md @@ -1,5 +1,5 @@ --- -id: DOC-MW-FR-LOGGING-REQ-20663 +id: DOC-MW-FR-LOGGING-REQ-79308 title: Mw-Fr Logging Req type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/mw-fr_logging.md b/rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/mw-fr_logging.md index 0f8316a..f722884 100644 --- a/rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/mw-fr_logging.md +++ b/rivet/eclipse-score-score/docs/docs/features/analysis-infra/logging/mw-fr_logging.md @@ -1,5 +1,5 @@ --- -id: DOC-MW-FR-LOGGING-83474 +id: DOC-MW-FR-LOGGING-97329 title: Mw-Fr Logging type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/analysis-infra/tracing/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/features/analysis-infra/tracing/docs/architecture/index.md index 2fd523d..7a55290 100644 --- a/rivet/eclipse-score-score/docs/docs/features/analysis-infra/tracing/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/analysis-infra/tracing/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-86686 +id: DOC-INDEX-13429 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/baselibs/abi_compatible_data_types/index.md b/rivet/eclipse-score-score/docs/docs/features/baselibs/abi_compatible_data_types/index.md index 7461df1..80104c4 100644 --- a/rivet/eclipse-score-score/docs/docs/features/baselibs/abi_compatible_data_types/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/baselibs/abi_compatible_data_types/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-97283 +id: DOC-INDEX-8494 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/baselibs/abi_compatible_data_types/requirements.md b/rivet/eclipse-score-score/docs/docs/features/baselibs/abi_compatible_data_types/requirements.md index 6c30209..668e440 100644 --- a/rivet/eclipse-score-score/docs/docs/features/baselibs/abi_compatible_data_types/requirements.md +++ b/rivet/eclipse-score-score/docs/docs/features/baselibs/abi_compatible_data_types/requirements.md @@ -1,5 +1,5 @@ --- -id: DOC-REQUIREMENTS-18489 +id: DOC-REQUIREMENTS-7467 title: Requirements type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/architecture/chklst_arc_inspection.md index 367c78c..5d64c7c 100644 --- a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-27514 +id: DOC-CHKLST-ARC-INSPECTION-83285 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/architecture/index.md index 85a94fe..afb4f6f 100644 --- a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-74410 +id: DOC-INDEX-93362 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/requirements/chklst_req_inspection.md index d5a4448..f7ecf3d 100644 --- a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-99895 +id: DOC-CHKLST-REQ-INSPECTION-93413 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/requirements/index.md index 1a07e28..3a17e74 100644 --- a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-91202 +id: DOC-INDEX-7296 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_analysis/dfa.md index 317f0b3..67fe824 100644 --- a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-22146 +id: DOC-DFA-58804 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_analysis/fmea.md index 9adac3a..b28d6c6 100644 --- a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-25237 +id: DOC-FMEA-49987 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_planning/index.md b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_planning/index.md index 07cd44e..aaffd31 100644 --- a/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_planning/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/baselibs/docs/safety_planning/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-77660 +id: DOC-INDEX-64922 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/baselibs/index.md b/rivet/eclipse-score-score/docs/docs/features/baselibs/index.md index 5bd8024..f0c482a 100644 --- a/rivet/eclipse-score-score/docs/docs/features/baselibs/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/baselibs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-79952 +id: DOC-INDEX-85165 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/code_generation/index.md b/rivet/eclipse-score-score/docs/docs/features/code_generation/index.md index 96f9dfa..242e90a 100644 --- a/rivet/eclipse-score-score/docs/docs/features/code_generation/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/code_generation/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-43047 +id: DOC-INDEX-7438 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/code_generation/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/code_generation/requirements/index.md index 285e3f7..5ad0622 100644 --- a/rivet/eclipse-score-score/docs/docs/features/code_generation/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/code_generation/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-31127 +id: DOC-INDEX-91811 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/communication/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/features/communication/docs/architecture/index.md index 4f4ffef..79de5f6 100644 --- a/rivet/eclipse-score-score/docs/docs/features/communication/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/communication/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-72932 +id: DOC-INDEX-3003 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/communication/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/communication/docs/requirements/index.md index 287fa12..193490c 100644 --- a/rivet/eclipse-score-score/docs/docs/features/communication/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/communication/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-93050 +id: DOC-INDEX-96475 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/communication/index.md b/rivet/eclipse-score-score/docs/docs/features/communication/index.md index c6c5008..57c2b66 100644 --- a/rivet/eclipse-score-score/docs/docs/features/communication/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/communication/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-97402 +id: DOC-INDEX-80710 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/architecture/index.md index 222386a..0fcfb8a 100644 --- a/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-66096 +id: DOC-INDEX-34976 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/requirements/index.md index 81598fe..5a9ff31 100644 --- a/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-41987 +id: DOC-INDEX-85134 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_analysis/dfa.md index b8435cc..36eda48 100644 --- a/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-4780 +id: DOC-DFA-15396 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_analysis/fmea.md index 792fdb4..0543831 100644 --- a/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-44502 +id: DOC-FMEA-255 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_planning/index.md b/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_planning/index.md index d1221dc..23b555e 100644 --- a/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_planning/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/communication/ipc/docs/safety_planning/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-61754 +id: DOC-INDEX-49231 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/communication/ipc/index.md b/rivet/eclipse-score-score/docs/docs/features/communication/ipc/index.md index a7bca9d..cac2774 100644 --- a/rivet/eclipse-score-score/docs/docs/features/communication/ipc/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/communication/ipc/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-83056 +id: DOC-INDEX-53945 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/communication/some_ip_gateway/index.md b/rivet/eclipse-score-score/docs/docs/features/communication/some_ip_gateway/index.md index fc4e561..4e9c805 100644 --- a/rivet/eclipse-score-score/docs/docs/features/communication/some_ip_gateway/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/communication/some_ip_gateway/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-53409 +id: DOC-INDEX-86147 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/communication/some_ip_gateway/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/communication/some_ip_gateway/requirements/index.md index 0f0e732..68fb3c2 100644 --- a/rivet/eclipse-score-score/docs/docs/features/communication/some_ip_gateway/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/communication/some_ip_gateway/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-28383 +id: DOC-INDEX-19963 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/configuration/config_mgmt/index.md b/rivet/eclipse-score-score/docs/docs/features/configuration/config_mgmt/index.md index 5ed7454..f53f726 100644 --- a/rivet/eclipse-score-score/docs/docs/features/configuration/config_mgmt/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/configuration/config_mgmt/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-8911 +id: DOC-INDEX-85240 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/configuration/config_mgmt/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/configuration/config_mgmt/requirements/index.md index 07a7295..98d57f9 100644 --- a/rivet/eclipse-score-score/docs/docs/features/configuration/config_mgmt/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/configuration/config_mgmt/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-77453 +id: DOC-INDEX-76492 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/configuration/config_model/index.md b/rivet/eclipse-score-score/docs/docs/features/configuration/config_model/index.md index e5e0e34..b31087d 100644 --- a/rivet/eclipse-score-score/docs/docs/features/configuration/config_model/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/configuration/config_model/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-48710 +id: DOC-INDEX-1214 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/diagnostics/index.md b/rivet/eclipse-score-score/docs/docs/features/diagnostics/index.md index 72c4086..f3951de 100644 --- a/rivet/eclipse-score-score/docs/docs/features/diagnostics/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/diagnostics/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-50443 +id: DOC-INDEX-94513 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/diagnostics/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/diagnostics/requirements/index.md index bb0cb84..4b05438 100644 --- a/rivet/eclipse-score-score/docs/docs/features/diagnostics/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/diagnostics/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-27020 +id: DOC-INDEX-37830 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/frameworks/daal/index.md b/rivet/eclipse-score-score/docs/docs/features/frameworks/daal/index.md index 7e09db5..54e2f59 100644 --- a/rivet/eclipse-score-score/docs/docs/features/frameworks/daal/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/frameworks/daal/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-68323 +id: DOC-INDEX-65748 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/frameworks/daal/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/frameworks/daal/requirements/index.md index c567b96..6ede496 100644 --- a/rivet/eclipse-score-score/docs/docs/features/frameworks/daal/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/frameworks/daal/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-15727 +id: DOC-INDEX-37067 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/architecture/chklst_arch_inspection.md b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/architecture/chklst_arch_inspection.md index ee5d26d..42c3263 100644 --- a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/architecture/chklst_arch_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/architecture/chklst_arch_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARCH-INSPECTION-7757 +id: DOC-CHKLST-ARCH-INSPECTION-21756 title: Chklst Arch Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/architecture/feature_architecture.md b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/architecture/feature_architecture.md index 582f722..0716471 100644 --- a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/architecture/feature_architecture.md +++ b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/architecture/feature_architecture.md @@ -1,5 +1,5 @@ --- -id: DOC-FEATURE-ARCHITECTURE-57372 +id: DOC-FEATURE-ARCHITECTURE-19775 title: Feature Architecture type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/index.md b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/index.md index 20885a9..4da4e6b 100644 --- a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-49406 +id: DOC-INDEX-65143 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/requirements/aou_req.md b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/requirements/aou_req.md index bd6e36a..3c5a59c 100644 --- a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/requirements/aou_req.md +++ b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/requirements/aou_req.md @@ -1,5 +1,5 @@ --- -id: DOC-AOU-REQ-54909 +id: DOC-AOU-REQ-64484 title: Aou Req type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/requirements/chklst_req_inspection.md index 6421b8b..a2b5243 100644 --- a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-89780 +id: DOC-CHKLST-REQ-INSPECTION-65571 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/requirements/feature_req.md b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/requirements/feature_req.md index f6d0358..216a8be 100644 --- a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/requirements/feature_req.md +++ b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/requirements/feature_req.md @@ -1,5 +1,5 @@ --- -id: DOC-FEATURE-REQ-66721 +id: DOC-FEATURE-REQ-75556 title: Feature Req type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_analysis/chklst_safety_analysis_inspection.md b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_analysis/chklst_safety_analysis_inspection.md index 6225aa4..7f15e7d 100644 --- a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_analysis/chklst_safety_analysis_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_analysis/chklst_safety_analysis_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-SAFETY-ANALYSIS-INSPECTION-65906 +id: DOC-CHKLST-SAFETY-ANALYSIS-INSPECTION-53497 title: Chklst Safety Analysis Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_analysis/feature_dfa.md b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_analysis/feature_dfa.md index 3bccc95..f37f75b 100644 --- a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_analysis/feature_dfa.md +++ b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_analysis/feature_dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-FEATURE-DFA-34700 +id: DOC-FEATURE-DFA-56871 title: Feature Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_analysis/feature_fmea.md b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_analysis/feature_fmea.md index 028e50f..af5ab5c 100644 --- a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_analysis/feature_fmea.md +++ b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_analysis/feature_fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FEATURE-FMEA-3452 +id: DOC-FEATURE-FMEA-48775 title: Feature Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_planning/index.md b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_planning/index.md index 1a529a5..ec93edd 100644 --- a/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_planning/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/frameworks/feo/safety_planning/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-29677 +id: DOC-INDEX-58794 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/lifecycle/architecture/health_monitor.md b/rivet/eclipse-score-score/docs/docs/features/lifecycle/architecture/health_monitor.md index 9a05c14..194047c 100644 --- a/rivet/eclipse-score-score/docs/docs/features/lifecycle/architecture/health_monitor.md +++ b/rivet/eclipse-score-score/docs/docs/features/lifecycle/architecture/health_monitor.md @@ -1,5 +1,5 @@ --- -id: DOC-HEALTH-MONITOR-51126 +id: DOC-HEALTH-MONITOR-59777 title: Health Monitor type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/lifecycle/architecture/launch_manager.md b/rivet/eclipse-score-score/docs/docs/features/lifecycle/architecture/launch_manager.md index e3ed547..0de88b0 100644 --- a/rivet/eclipse-score-score/docs/docs/features/lifecycle/architecture/launch_manager.md +++ b/rivet/eclipse-score-score/docs/docs/features/lifecycle/architecture/launch_manager.md @@ -1,5 +1,5 @@ --- -id: DOC-LAUNCH-MANAGER-44766 +id: DOC-LAUNCH-MANAGER-96146 title: Launch Manager type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/lifecycle/architecture/launch_manager_configuration.md b/rivet/eclipse-score-score/docs/docs/features/lifecycle/architecture/launch_manager_configuration.md index 99c1f37..b07c925 100644 --- a/rivet/eclipse-score-score/docs/docs/features/lifecycle/architecture/launch_manager_configuration.md +++ b/rivet/eclipse-score-score/docs/docs/features/lifecycle/architecture/launch_manager_configuration.md @@ -1,5 +1,5 @@ --- -id: DOC-LAUNCH-MANAGER-CONFIGURATION-14706 +id: DOC-LAUNCH-MANAGER-CONFIGURATION-48854 title: Launch Manager Configuration type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/lifecycle/index.md b/rivet/eclipse-score-score/docs/docs/features/lifecycle/index.md index f4d4f6b..5226e2e 100644 --- a/rivet/eclipse-score-score/docs/docs/features/lifecycle/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/lifecycle/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-38304 +id: DOC-INDEX-44077 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/lifecycle/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/lifecycle/requirements/index.md index 23ec78d..28bb482 100644 --- a/rivet/eclipse-score-score/docs/docs/features/lifecycle/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/lifecycle/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-94717 +id: DOC-INDEX-82860 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/orchestration/architecture/index.md b/rivet/eclipse-score-score/docs/docs/features/orchestration/architecture/index.md index ad5fa35..28db2f3 100644 --- a/rivet/eclipse-score-score/docs/docs/features/orchestration/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/orchestration/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-21873 +id: DOC-INDEX-33701 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/orchestration/index.md b/rivet/eclipse-score-score/docs/docs/features/orchestration/index.md index a323bdc..d1e260d 100644 --- a/rivet/eclipse-score-score/docs/docs/features/orchestration/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/orchestration/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-2682 +id: DOC-INDEX-67284 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/orchestration/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/orchestration/requirements/index.md index 862df94..798d04e 100644 --- a/rivet/eclipse-score-score/docs/docs/features/orchestration/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/orchestration/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-50862 +id: DOC-INDEX-81850 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/orchestration/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/features/orchestration/safety_analysis/dfa.md index ad6d882..b232f53 100644 --- a/rivet/eclipse-score-score/docs/docs/features/orchestration/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/features/orchestration/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-42954 +id: DOC-DFA-53178 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/orchestration/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/features/orchestration/safety_analysis/fmea.md index 0378d1c..e3c6cf5 100644 --- a/rivet/eclipse-score-score/docs/docs/features/orchestration/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/features/orchestration/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-93456 +id: DOC-FMEA-33722 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/orchestration/safety_planning/index.md b/rivet/eclipse-score-score/docs/docs/features/orchestration/safety_planning/index.md index 921c689..1123450 100644 --- a/rivet/eclipse-score-score/docs/docs/features/orchestration/safety_planning/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/orchestration/safety_planning/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-37875 +id: DOC-INDEX-71797 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/persistency/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-score/docs/docs/features/persistency/architecture/chklst_arc_inspection.md index f19b8b7..caa35c4 100644 --- a/rivet/eclipse-score-score/docs/docs/features/persistency/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/features/persistency/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-92560 +id: DOC-CHKLST-ARC-INSPECTION-4730 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/persistency/architecture/index.md b/rivet/eclipse-score-score/docs/docs/features/persistency/architecture/index.md index 80eea0d..e93430b 100644 --- a/rivet/eclipse-score-score/docs/docs/features/persistency/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/persistency/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-3105 +id: DOC-INDEX-8978 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/persistency/index.md b/rivet/eclipse-score-score/docs/docs/features/persistency/index.md index 4b7d468..fbaab18 100644 --- a/rivet/eclipse-score-score/docs/docs/features/persistency/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/persistency/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-52477 +id: DOC-INDEX-53015 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/persistency/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/features/persistency/requirements/chklst_req_inspection.md index b090bbb..68e7d28 100644 --- a/rivet/eclipse-score-score/docs/docs/features/persistency/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/features/persistency/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-90816 +id: DOC-CHKLST-REQ-INSPECTION-97358 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/persistency/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/persistency/requirements/index.md index 4318ac5..a75552f 100644 --- a/rivet/eclipse-score-score/docs/docs/features/persistency/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/persistency/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-88032 +id: DOC-INDEX-75890 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/persistency/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/features/persistency/safety_analysis/dfa.md index 424ae2e..b063d33 100644 --- a/rivet/eclipse-score-score/docs/docs/features/persistency/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/features/persistency/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-34638 +id: DOC-DFA-24500 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/persistency/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/features/persistency/safety_analysis/fmea.md index e457e1e..0935825 100644 --- a/rivet/eclipse-score-score/docs/docs/features/persistency/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/features/persistency/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-98046 +id: DOC-FMEA-73302 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/persistency/safety_analysis/safety_analysis_fdr.md b/rivet/eclipse-score-score/docs/docs/features/persistency/safety_analysis/safety_analysis_fdr.md index 1263f2e..fac54a5 100644 --- a/rivet/eclipse-score-score/docs/docs/features/persistency/safety_analysis/safety_analysis_fdr.md +++ b/rivet/eclipse-score-score/docs/docs/features/persistency/safety_analysis/safety_analysis_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-ANALYSIS-FDR-85251 +id: DOC-SAFETY-ANALYSIS-FDR-54304 title: Safety Analysis Fdr type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/persistency/safety_planning/index.md b/rivet/eclipse-score-score/docs/docs/features/persistency/safety_planning/index.md index 3a43565..71c10ba 100644 --- a/rivet/eclipse-score-score/docs/docs/features/persistency/safety_planning/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/persistency/safety_planning/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-63375 +id: DOC-INDEX-12544 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/persistency/security_analysis/stride.md b/rivet/eclipse-score-score/docs/docs/features/persistency/security_analysis/stride.md index e291cf2..b142177 100644 --- a/rivet/eclipse-score-score/docs/docs/features/persistency/security_analysis/stride.md +++ b/rivet/eclipse-score-score/docs/docs/features/persistency/security_analysis/stride.md @@ -1,5 +1,5 @@ --- -id: DOC-STRIDE-99611 +id: DOC-STRIDE-89348 title: Stride type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/persistency/security_planning/index.md b/rivet/eclipse-score-score/docs/docs/features/persistency/security_planning/index.md index 565d806..f5a6481 100644 --- a/rivet/eclipse-score-score/docs/docs/features/persistency/security_planning/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/persistency/security_planning/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-8507 +id: DOC-INDEX-896 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/security_crypto/index.md b/rivet/eclipse-score-score/docs/docs/features/security_crypto/index.md index a8d7dcd..e715d7d 100644 --- a/rivet/eclipse-score-score/docs/docs/features/security_crypto/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/security_crypto/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-25570 +id: DOC-INDEX-53793 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/security_crypto/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/security_crypto/requirements/index.md index c10c9f4..5052723 100644 --- a/rivet/eclipse-score-score/docs/docs/features/security_crypto/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/security_crypto/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-53267 +id: DOC-INDEX-38661 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/time/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/features/time/docs/requirements/index.md index c4b54a0..42dd20b 100644 --- a/rivet/eclipse-score-score/docs/docs/features/time/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/time/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-68117 +id: DOC-INDEX-72844 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/features/time/index.md b/rivet/eclipse-score-score/docs/docs/features/time/index.md index 353394d..c84b8b5 100644 --- a/rivet/eclipse-score-score/docs/docs/features/time/index.md +++ b/rivet/eclipse-score-score/docs/docs/features/time/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-18674 +id: DOC-INDEX-11876 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/handbook/index.md b/rivet/eclipse-score-score/docs/docs/handbook/index.md index 24c7497..22ada16 100644 --- a/rivet/eclipse-score-score/docs/docs/handbook/index.md +++ b/rivet/eclipse-score-score/docs/docs/handbook/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-56110 +id: DOC-INDEX-65102 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/architecture/chklst_arc_inspection.md index 6142157..50328c2 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-57945 +id: DOC-CHKLST-ARC-INSPECTION-61458 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/architecture/index.md index 36ecd93..8c8b589 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-3780 +id: DOC-INDEX-87292 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/detailed_design/chklst_impl_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/detailed_design/chklst_impl_inspection.md index 4efefac..c28ab17 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/detailed_design/chklst_impl_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/detailed_design/chklst_impl_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-IMPL-INSPECTION-32434 +id: DOC-CHKLST-IMPL-INSPECTION-72727 title: Chklst Impl Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/index.md index 8bb8328..9133c8c 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-72307 +id: DOC-INDEX-20289 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/requirements/chklst_req_inspection.md index 5bb8aa7..b37bb78 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-25960 +id: DOC-CHKLST-REQ-INSPECTION-15619 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/requirements/index.md index d787766..b9f152d 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-40140 +id: DOC-INDEX-3744 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/safety_analysis/dfa.md index 0c7cc84..8a52b52 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-34587 +id: DOC-DFA-57569 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/safety_analysis/fmea.md index 15dff1c..a34f907 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/bitmanipulation/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-74186 +id: DOC-FMEA-5028 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/architecture/chklst_arc_inspection.md index 721ec0a..dee6529 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-32453 +id: DOC-CHKLST-ARC-INSPECTION-57564 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/architecture/index.md index 715530d..3167d93 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-70514 +id: DOC-INDEX-60795 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/detailed_design/chklst_impl_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/detailed_design/chklst_impl_inspection.md index a3aa2f2..f17bca4 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/detailed_design/chklst_impl_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/detailed_design/chklst_impl_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-IMPL-INSPECTION-55400 +id: DOC-CHKLST-IMPL-INSPECTION-14655 title: Chklst Impl Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/index.md index e1a1d02..6af1882 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-11099 +id: DOC-INDEX-77055 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/requirements/chklst_req_inspection.md index 4cf6f18..4bce497 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-85381 +id: DOC-CHKLST-REQ-INSPECTION-29629 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/requirements/index.md index d44d46d..9554019 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-53956 +id: DOC-INDEX-46560 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/safety_analysis/dfa.md index 0e74aca..5383e93 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-16508 +id: DOC-DFA-17177 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/safety_analysis/fmea.md index af4031f..390b6f2 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/concurrency/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-68177 +id: DOC-FMEA-98606 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/architecture/chklst_arc_inspection.md index 0803c50..549e799 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-26458 +id: DOC-CHKLST-ARC-INSPECTION-10027 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/architecture/index.md index 75746cc..9fec289 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-90030 +id: DOC-INDEX-17667 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/detailed_design/chklst_impl_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/detailed_design/chklst_impl_inspection.md index 6ce70cf..f0d884e 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/detailed_design/chklst_impl_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/detailed_design/chklst_impl_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-IMPL-INSPECTION-26490 +id: DOC-CHKLST-IMPL-INSPECTION-99237 title: Chklst Impl Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/index.md index a7dd15c..8da8755 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-23240 +id: DOC-INDEX-75343 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/requirements/chklst_req_inspection.md index 6bc2d2a..f5b32c7 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-34296 +id: DOC-CHKLST-REQ-INSPECTION-46378 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/requirements/index.md index 048d306..233611b 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-28646 +id: DOC-INDEX-34155 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/safety_analysis/dfa.md index fe98f45..b2fdf30 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-60187 +id: DOC-DFA-93687 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/safety_analysis/fmea.md index fd328da..c6e5cdd 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/containers/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-7174 +id: DOC-FMEA-5712 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/index.md index 18de625..0fcdcdc 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-38605 +id: DOC-INDEX-70249 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/manual/safety_manual.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/manual/safety_manual.md index 2cb13e5..0fc545c 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/manual/safety_manual.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/manual/safety_manual.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-MANUAL-36279 +id: DOC-SAFETY-MANUAL-7334 title: Safety Manual type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/release/release_note.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/release/release_note.md index b576e2e..380bd90 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/release/release_note.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/release/release_note.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-NOTE-23446 +id: DOC-RELEASE-NOTE-43249 title: Release Note type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_codeowners.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_codeowners.md index d1b49d2..dd8bff3 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_codeowners.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_codeowners.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-CODEOWNERS-62457 +id: DOC-MODULE-CODEOWNERS-9650 title: Module Codeowners type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_analysis_fdr.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_analysis_fdr.md index 474d76f..8cb9996 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_analysis_fdr.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_analysis_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-ANALYSIS-FDR-30237 +id: DOC-MODULE-SAFETY-ANALYSIS-FDR-92383 title: Module Safety Analysis Fdr type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_package_fdr.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_package_fdr.md index c177ecf..87864ad 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_package_fdr.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_package_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PACKAGE-FDR-91432 +id: DOC-MODULE-SAFETY-PACKAGE-FDR-25840 title: Module Safety Package Fdr type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_plan.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_plan.md index b47244b..7d13c79 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_plan.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PLAN-15917 +id: DOC-MODULE-SAFETY-PLAN-17316 title: Module Safety Plan type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_plan_fdr.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_plan_fdr.md index 3e3c9b8..951321d 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_plan_fdr.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/safety_mgt/module_safety_plan_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PLAN-FDR-81541 +id: DOC-MODULE-SAFETY-PLAN-FDR-54837 title: Module Safety Plan Fdr type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/verification/module_verification_report.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/verification/module_verification_report.md index 6bd3cbe..dc12fb6 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/verification/module_verification_report.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/docs/verification/module_verification_report.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-VERIFICATION-REPORT-19793 +id: DOC-MODULE-VERIFICATION-REPORT-6854 title: Module Verification Report type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/architecture/chklst_arc_inspection.md index e2c5a83..83dd360 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-46097 +id: DOC-CHKLST-ARC-INSPECTION-37543 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/architecture/index.md index 7b0eaff..53f0326 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-16802 +id: DOC-INDEX-33003 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/detailed_design/chklst_impl_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/detailed_design/chklst_impl_inspection.md index 0fb6283..3ec0982 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/detailed_design/chklst_impl_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/detailed_design/chklst_impl_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-IMPL-INSPECTION-19319 +id: DOC-CHKLST-IMPL-INSPECTION-62530 title: Chklst Impl Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/index.md index cad8e4a..e84442f 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-3586 +id: DOC-INDEX-48845 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/requirements/chklst_req_inspection.md index 8fdc446..e841d33 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-64519 +id: DOC-CHKLST-REQ-INSPECTION-77066 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/requirements/index.md index 6dd0f90..b5455d3 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-99192 +id: DOC-INDEX-15046 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/safety_analysis/dfa.md index f5f71ba..9e7adb7 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-64161 +id: DOC-DFA-15695 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/safety_analysis/fmea.md index d4035f3..2f5d5c8 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/filesystem/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-4721 +id: DOC-FMEA-52785 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/architecture/index.md index 3220678..3cdccd0 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-20449 +id: DOC-INDEX-89471 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/index.md index 7b31ea2..0b31899 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-87254 +id: DOC-INDEX-67938 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/requirements/index.md index b21e579..5951431 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/flatbuffers/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-47291 +id: DOC-INDEX-92114 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/architecture/chklst_arc_inspection.md index 61aab06..5f8e562 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-25961 +id: DOC-CHKLST-ARC-INSPECTION-596 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/architecture/index.md index 996f9dd..cbf4580 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-8180 +id: DOC-INDEX-89054 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/detailed_design/chklst_impl_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/detailed_design/chklst_impl_inspection.md index 7ea6ebe..d17deb1 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/detailed_design/chklst_impl_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/detailed_design/chklst_impl_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-IMPL-INSPECTION-90384 +id: DOC-CHKLST-IMPL-INSPECTION-23923 title: Chklst Impl Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/index.md index 4e1873d..b10d417 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-44202 +id: DOC-INDEX-9496 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/json_wrapper/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/json_wrapper/requirements/index.md index 6631ae8..dc2cbe5 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/json_wrapper/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/json_wrapper/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-66661 +id: DOC-INDEX-36303 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/requirements/chklst_req_inspection.md index 38685bf..79417f8 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-48647 +id: DOC-CHKLST-REQ-INSPECTION-1504 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/requirements/index.md index 62579e9..e826392 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-66201 +id: DOC-INDEX-28797 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/safety_analysis/dfa.md index 846a9f5..eacbbda 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-85128 +id: DOC-DFA-60667 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/safety_analysis/fmea.md index 5dfccc5..77d1187 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/json/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-85691 +id: DOC-FMEA-81222 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/futurecpp/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/futurecpp/docs/index.md index 3ecf5eb..cf8ffc3 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/futurecpp/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/futurecpp/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-43991 +id: DOC-INDEX-38748 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/architecture/chklst_arc_inspection.md index 52c544c..64a0b58 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-10272 +id: DOC-CHKLST-ARC-INSPECTION-6141 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/architecture/index.md index 295a3f2..3326f03 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-65319 +id: DOC-INDEX-1569 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/detailed_design/chklst_impl_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/detailed_design/chklst_impl_inspection.md index 547970e..16ad267 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/detailed_design/chklst_impl_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/detailed_design/chklst_impl_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-IMPL-INSPECTION-22905 +id: DOC-CHKLST-IMPL-INSPECTION-94839 title: Chklst Impl Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/index.md index 476ccc2..9045a1b 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-60038 +id: DOC-INDEX-86102 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/requirements/chklst_req_inspection.md index babe703..c81932c 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-22659 +id: DOC-CHKLST-REQ-INSPECTION-14613 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/requirements/index.md index 226b1a9..2e841e4 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-67613 +id: DOC-INDEX-79698 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/safety_analysis/dfa.md index c07b1a8..4a9e8a3 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-48402 +id: DOC-DFA-9081 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/safety_analysis/fmea.md index a1ce385..feb1029 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/language/safecpp/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-76027 +id: DOC-FMEA-47102 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/architecture/index.md index 58afafa..dd8943c 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-72836 +id: DOC-INDEX-2035 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/index.md index 3587cb7..0c1c36a 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-56006 +id: DOC-INDEX-58149 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/requirements/index.md index 5af7f21..7bfe768 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/memory_shared/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-30403 +id: DOC-INDEX-32590 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/os/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/os/docs/index.md index e3f2073..6ba2a74 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/os/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/os/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-43557 +id: DOC-INDEX-63564 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/architecture/chklst_arc_inspection.md index 4b5db21..9d57628 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-28132 +id: DOC-CHKLST-ARC-INSPECTION-44749 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/architecture/index.md index 52ff605..da370cf 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-70300 +id: DOC-INDEX-57454 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/detailed_design/chklst_impl_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/detailed_design/chklst_impl_inspection.md index ac8db92..fe81866 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/detailed_design/chklst_impl_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/detailed_design/chklst_impl_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-IMPL-INSPECTION-14658 +id: DOC-CHKLST-IMPL-INSPECTION-36938 title: Chklst Impl Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/index.md index 8328a75..919aadf 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-37727 +id: DOC-INDEX-27278 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/requirements/chklst_req_inspection.md index 6b05e36..699ee33 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-79876 +id: DOC-CHKLST-REQ-INSPECTION-6334 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/requirements/index.md index 3128ff8..be5bda1 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-36246 +id: DOC-INDEX-94088 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/safety_analysis/dfa.md index f0536c7..377e9aa 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-29146 +id: DOC-DFA-95572 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/safety_analysis/fmea.md index 0f3b135..523ee6f 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/result/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-89508 +id: DOC-FMEA-16006 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/architecture/chklst_arc_inspection.md index 132f10a..98a09e5 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-82124 +id: DOC-CHKLST-ARC-INSPECTION-15295 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/architecture/index.md index 8a5ca2c..8631eec 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-81199 +id: DOC-INDEX-74105 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/detailed_design/chklst_impl_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/detailed_design/chklst_impl_inspection.md index f290eef..3e6251a 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/detailed_design/chklst_impl_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/detailed_design/chklst_impl_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-IMPL-INSPECTION-58429 +id: DOC-CHKLST-IMPL-INSPECTION-5926 title: Chklst Impl Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/index.md index 2eeabfd..18c14a4 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-86870 +id: DOC-INDEX-59230 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/requirements/chklst_req_inspection.md index a581212..5fe0cfb 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-81163 +id: DOC-CHKLST-REQ-INSPECTION-55372 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/requirements/index.md index aa932b9..e3745c2 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-78005 +id: DOC-INDEX-37075 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/safety_analysis/dfa.md index a698744..9af3938 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-28826 +id: DOC-DFA-65564 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/safety_analysis/fmea.md index 2a4952c..64d9ae7 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/static_reflection_with_serialization/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-74282 +id: DOC-FMEA-85640 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/architecture/chklst_arc_inspection.md index 06f9bc7..5c8ecf8 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-76641 +id: DOC-CHKLST-ARC-INSPECTION-63311 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/architecture/index.md index 42e2372..49eca1b 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-94318 +id: DOC-INDEX-90162 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/detailed_design/chklst_impl_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/detailed_design/chklst_impl_inspection.md index 4a1c649..b00ff28 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/detailed_design/chklst_impl_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/detailed_design/chklst_impl_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-IMPL-INSPECTION-8717 +id: DOC-CHKLST-IMPL-INSPECTION-14450 title: Chklst Impl Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/index.md index b2aaeff..152db46 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-6429 +id: DOC-INDEX-65981 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/requirements/chklst_req_inspection.md index 3ed7cec..b0d87fe 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-33610 +id: DOC-CHKLST-REQ-INSPECTION-76070 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/requirements/index.md index 7227b08..1e68b33 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-15041 +id: DOC-INDEX-46126 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/safety_analysis/dfa.md index 70d844a..a09ea6b 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-24100 +id: DOC-DFA-510 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/safety_analysis/fmea.md index 7a46278..f72c2b2 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/modules/baselibs/utils/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-23218 +id: DOC-FMEA-29667 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/configuration/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/communication/configuration/docs/architecture/index.md index ea6127a..aa9fad3 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/configuration/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/configuration/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-22036 +id: DOC-INDEX-2898 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/index.md index 9de8668..6ab8b80 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-1822 +id: DOC-INDEX-3956 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/manual/safety_manual.md b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/manual/safety_manual.md index 25488fb..dc95ff4 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/manual/safety_manual.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/manual/safety_manual.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-MANUAL-38575 +id: DOC-SAFETY-MANUAL-39111 title: Safety Manual type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/release/release_note.md b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/release/release_note.md index 6884b5c..3c1a2fa 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/release/release_note.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/release/release_note.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-NOTE-61224 +id: DOC-RELEASE-NOTE-1833 title: Release Note type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/requirements/aou_req.md b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/requirements/aou_req.md index c0349bd..d0a0be6 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/requirements/aou_req.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/requirements/aou_req.md @@ -1,5 +1,5 @@ --- -id: DOC-AOU-REQ-42465 +id: DOC-AOU-REQ-44184 title: Aou Req type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_codeowners.md b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_codeowners.md index 33310f6..22c7343 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_codeowners.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_codeowners.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-CODEOWNERS-61576 +id: DOC-MODULE-CODEOWNERS-62583 title: Module Codeowners type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_safety_package_fdr.md b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_safety_package_fdr.md index c2cd061..7bbc0b7 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_safety_package_fdr.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_safety_package_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PACKAGE-FDR-85950 +id: DOC-MODULE-SAFETY-PACKAGE-FDR-96926 title: Module Safety Package Fdr type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_safety_plan.md b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_safety_plan.md index 7f2b2ff..117adaf 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_safety_plan.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_safety_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PLAN-22904 +id: DOC-MODULE-SAFETY-PLAN-86827 title: Module Safety Plan type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_safety_plan_fdr.md b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_safety_plan_fdr.md index 17bb400..2dc0378 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_safety_plan_fdr.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/safety_mgt/module_safety_plan_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PLAN-FDR-71977 +id: DOC-MODULE-SAFETY-PLAN-FDR-33684 title: Module Safety Plan Fdr type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/verification/module_verification_report.md b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/verification/module_verification_report.md index c25a914..d2836fc 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/docs/verification/module_verification_report.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/docs/verification/module_verification_report.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-VERIFICATION-REPORT-54644 +id: DOC-MODULE-VERIFICATION-REPORT-86951 title: Module Verification Report type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/frontent/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/communication/frontent/docs/architecture/index.md index b87b7db..bbebd46 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/frontent/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/frontent/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-98532 +id: DOC-INDEX-66652 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/ipc_binding/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/communication/ipc_binding/docs/architecture/index.md index 2277d8a..ceef1b8 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/ipc_binding/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/ipc_binding/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-62224 +id: DOC-INDEX-98245 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/architecture/index.md index 58c2bfd..68f1e34 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-2901 +id: DOC-INDEX-62188 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/component_classification.md b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/component_classification.md index 448d8b2..d1792a3 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/component_classification.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/component_classification.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-CLASSIFICATION-29425 +id: DOC-COMPONENT-CLASSIFICATION-10005 title: Component Classification type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/detailed_design/index.md b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/detailed_design/index.md index e5ea662..1556393 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/detailed_design/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/detailed_design/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-38124 +id: DOC-INDEX-21440 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/index.md index 8ac2d6f..daf1ba3 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-64760 +id: DOC-INDEX-94570 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/requirements/index.md index 72b4979..bf3511e 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-13388 +id: DOC-INDEX-13326 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/safety_analysis/dfa.md index e0fd8f4..ed4069c 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-22849 +id: DOC-DFA-33197 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/safety_analysis/fmea.md index 9f007d9..d80f41a 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/lola/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-67406 +id: DOC-FMEA-57187 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/message_passing/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/communication/message_passing/docs/architecture/index.md index acdd259..1735738 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/message_passing/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/message_passing/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-57348 +id: DOC-INDEX-49202 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/communication/mock_binding/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/communication/mock_binding/docs/architecture/index.md index 6792ddf..4f444a3 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/communication/mock_binding/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/communication/mock_binding/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-28303 +id: DOC-INDEX-5670 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/docs/manual/safety_manual.md b/rivet/eclipse-score-score/docs/docs/modules/feo/docs/manual/safety_manual.md index 58f015b..50d2081 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/docs/manual/safety_manual.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/docs/manual/safety_manual.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-MANUAL-2340 +id: DOC-SAFETY-MANUAL-82038 title: Safety Manual type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/docs/release/release_note.md b/rivet/eclipse-score-score/docs/docs/modules/feo/docs/release/release_note.md index 36b6411..eadfbec 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/docs/release/release_note.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/docs/release/release_note.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-NOTE-22213 +id: DOC-RELEASE-NOTE-55393 title: Release Note type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/docs/safety_mgt/module_safety_package_fdr.md b/rivet/eclipse-score-score/docs/docs/modules/feo/docs/safety_mgt/module_safety_package_fdr.md index 52fe73b..cad6b85 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/docs/safety_mgt/module_safety_package_fdr.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/docs/safety_mgt/module_safety_package_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PACKAGE-FDR-13913 +id: DOC-MODULE-SAFETY-PACKAGE-FDR-31861 title: Module Safety Package Fdr type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/docs/safety_mgt/module_safety_plan.md b/rivet/eclipse-score-score/docs/docs/modules/feo/docs/safety_mgt/module_safety_plan.md index b053063..8cc8821 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/docs/safety_mgt/module_safety_plan.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/docs/safety_mgt/module_safety_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PLAN-42768 +id: DOC-MODULE-SAFETY-PLAN-93755 title: Module Safety Plan type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/docs/safety_mgt/module_safety_plan_fdr.md b/rivet/eclipse-score-score/docs/docs/modules/feo/docs/safety_mgt/module_safety_plan_fdr.md index 6d6366f..5a48ed8 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/docs/safety_mgt/module_safety_plan_fdr.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/docs/safety_mgt/module_safety_plan_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PLAN-FDR-90222 +id: DOC-MODULE-SAFETY-PLAN-FDR-58287 title: Module Safety Plan Fdr type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/docs/verification/module_verification_report.md b/rivet/eclipse-score-score/docs/docs/modules/feo/docs/verification/module_verification_report.md index 5c50453..325c2fb 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/docs/verification/module_verification_report.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/docs/verification/module_verification_report.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-VERIFICATION-REPORT-691 +id: DOC-MODULE-VERIFICATION-REPORT-2635 title: Module Verification Report type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/architecture/chklst_arch_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/architecture/chklst_arch_inspection.md index 6dc2086..cf86a7f 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/architecture/chklst_arch_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/architecture/chklst_arch_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARCH-INSPECTION-37521 +id: DOC-CHKLST-ARCH-INSPECTION-99792 title: Chklst Arch Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/architecture/component_architecture.md b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/architecture/component_architecture.md index e90460b..0fa1bb3 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/architecture/component_architecture.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/architecture/component_architecture.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-ARCHITECTURE-43221 +id: DOC-COMPONENT-ARCHITECTURE-30741 title: Component Architecture type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/component_classification.md b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/component_classification.md index adea4ba..eb8e3d9 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/component_classification.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/component_classification.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-CLASSIFICATION-84334 +id: DOC-COMPONENT-CLASSIFICATION-85009 title: Component Classification type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/detailed_design/chklst_dd_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/detailed_design/chklst_dd_inspection.md index a48f8e7..ca4faaa 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/detailed_design/chklst_dd_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/detailed_design/chklst_dd_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-DD-INSPECTION-38993 +id: DOC-CHKLST-DD-INSPECTION-22867 title: Chklst Dd Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/detailed_design/component_detailed_design.md b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/detailed_design/component_detailed_design.md index 2a4043b..95172e4 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/detailed_design/component_detailed_design.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/detailed_design/component_detailed_design.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-DETAILED-DESIGN-99165 +id: DOC-COMPONENT-DETAILED-DESIGN-69872 title: Component Detailed Design type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/index.md index 15869ab..f30a3dd 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-31162 +id: DOC-INDEX-33339 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/requirements/aou_req.md b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/requirements/aou_req.md index 464956e..3fbaf6b 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/requirements/aou_req.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/requirements/aou_req.md @@ -1,5 +1,5 @@ --- -id: DOC-AOU-REQ-12235 +id: DOC-AOU-REQ-72528 title: Aou Req type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/requirements/chklst_req_inspection.md index 47b7f15..784d553 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-32386 +id: DOC-CHKLST-REQ-INSPECTION-836 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/requirements/component_requirements.md b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/requirements/component_requirements.md index f2cf192..47b3c5d 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/requirements/component_requirements.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/requirements/component_requirements.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-REQUIREMENTS-49238 +id: DOC-COMPONENT-REQUIREMENTS-14837 title: Component Requirements type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/safety_analysis/chklst_safety_analysis_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/safety_analysis/chklst_safety_analysis_inspection.md index dc206cd..806032c 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/safety_analysis/chklst_safety_analysis_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/safety_analysis/chklst_safety_analysis_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-SAFETY-ANALYSIS-INSPECTION-31950 +id: DOC-CHKLST-SAFETY-ANALYSIS-INSPECTION-1853 title: Chklst Safety Analysis Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/safety_analysis/component_dfa.md b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/safety_analysis/component_dfa.md index c7ee6cc..4226886 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/safety_analysis/component_dfa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/safety_analysis/component_dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-DFA-57089 +id: DOC-COMPONENT-DFA-56503 title: Component Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/safety_analysis/component_fmea.md b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/safety_analysis/component_fmea.md index 51a990b..13e5cbb 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/safety_analysis/component_fmea.md +++ b/rivet/eclipse-score-score/docs/docs/modules/feo/feo/docs/safety_analysis/component_fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-COMPONENT-FMEA-65464 +id: DOC-COMPONENT-FMEA-74635 title: Component Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/lifecycle/index.md b/rivet/eclipse-score-score/docs/docs/modules/lifecycle/index.md index a2c0ba4..914896a 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/lifecycle/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/lifecycle/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-60442 +id: DOC-INDEX-66022 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/logging/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/logging/docs/index.md index cf5bd49..371635e 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/logging/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/logging/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-19301 +id: DOC-INDEX-16 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/logging/logging/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/logging/logging/docs/architecture/index.md index c63f53e..31adf53 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/logging/logging/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/logging/logging/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-26254 +id: DOC-INDEX-68588 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/index.md index c75ca72..6058b0f 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-87831 +id: DOC-INDEX-75082 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/manual/safety_manual.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/manual/safety_manual.md index fbe821f..0422b66 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/manual/safety_manual.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/manual/safety_manual.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-MANUAL-71225 +id: DOC-SAFETY-MANUAL-2185 title: Safety Manual type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/release/release_note.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/release/release_note.md index 57c9864..04c1266 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/release/release_note.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/release/release_note.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-NOTE-84923 +id: DOC-RELEASE-NOTE-10223 title: Release Note type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_codeowners.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_codeowners.md index c3b0647..b8c94bc 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_codeowners.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_codeowners.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-CODEOWNERS-71936 +id: DOC-MODULE-CODEOWNERS-62966 title: Module Codeowners type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_safety_package_fdr.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_safety_package_fdr.md index aea95bb..48a55bf 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_safety_package_fdr.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_safety_package_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PACKAGE-FDR-96516 +id: DOC-MODULE-SAFETY-PACKAGE-FDR-56798 title: Module Safety Package Fdr type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_safety_plan.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_safety_plan.md index 96be0c3..1b2b659 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_safety_plan.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_safety_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PLAN-33852 +id: DOC-MODULE-SAFETY-PLAN-2650 title: Module Safety Plan type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_safety_plan_fdr.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_safety_plan_fdr.md index 0c4afe6..5e9ee8f 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_safety_plan_fdr.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/safety_mgt/module_safety_plan_fdr.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-SAFETY-PLAN-FDR-19591 +id: DOC-MODULE-SAFETY-PLAN-FDR-69258 title: Module Safety Plan Fdr type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/verification/module_verification_report.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/verification/module_verification_report.md index 0a201d1..20d09a0 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/verification/module_verification_report.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/docs/verification/module_verification_report.md @@ -1,5 +1,5 @@ --- -id: DOC-MODULE-VERIFICATION-REPORT-77977 +id: DOC-MODULE-VERIFICATION-REPORT-24974 title: Module Verification Report type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/architecture/chklst_arc_inspection.md index 3ca4c73..131f497 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-7800 +id: DOC-CHKLST-ARC-INSPECTION-75685 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/architecture/index.md index 4fd4279..82f3423 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-12776 +id: DOC-INDEX-13610 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/detailed_design/index.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/detailed_design/index.md index 7f4ceb8..d37ba68 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/detailed_design/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/detailed_design/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-7667 +id: DOC-INDEX-67550 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/index.md index a7dab6f..4f1e0b0 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-55238 +id: DOC-INDEX-35661 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/requirements/chklst_req_inspection.md index 369940b..907c230 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-72084 +id: DOC-CHKLST-REQ-INSPECTION-81585 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/requirements/index.md index ce4c968..36c2a78 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-455 +id: DOC-INDEX-19672 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/safety_analysis/dfa.md index c80e8d3..bbfa9ed 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-64287 +id: DOC-DFA-83726 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/safety_analysis/fmea.md index dfd1bc2..9d79b44 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/executor/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-54577 +id: DOC-FMEA-17644 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/index.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/index.md index 2d02e2c..0298178 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-20899 +id: DOC-INDEX-14581 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/architecture/chklst_arc_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/architecture/chklst_arc_inspection.md index f8968f8..fb7c865 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/architecture/chklst_arc_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/architecture/chklst_arc_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-ARC-INSPECTION-21690 +id: DOC-CHKLST-ARC-INSPECTION-83001 title: Chklst Arc Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/architecture/index.md index 0fc5ff4..545085f 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-73772 +id: DOC-INDEX-3143 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/detailed_design/index.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/detailed_design/index.md index 630904c..68d46ce 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/detailed_design/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/detailed_design/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-75503 +id: DOC-INDEX-52432 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/index.md index 1b6b73d..2917126 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-11645 +id: DOC-INDEX-35700 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/requirements/chklst_req_inspection.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/requirements/chklst_req_inspection.md index 810f542..541ee00 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/requirements/chklst_req_inspection.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/requirements/chklst_req_inspection.md @@ -1,5 +1,5 @@ --- -id: DOC-CHKLST-REQ-INSPECTION-72169 +id: DOC-CHKLST-REQ-INSPECTION-9841 title: Chklst Req Inspection type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/requirements/index.md index 791d7f1..e33c5df 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-84191 +id: DOC-INDEX-53184 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/safety_analysis/dfa.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/safety_analysis/dfa.md index 9a62897..e364788 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/safety_analysis/dfa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/safety_analysis/dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-DFA-46980 +id: DOC-DFA-2381 title: Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/safety_analysis/fmea.md b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/safety_analysis/fmea.md index 3de598f..40866e4 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/safety_analysis/fmea.md +++ b/rivet/eclipse-score-score/docs/docs/modules/orchestrator/orchestrator/docs/safety_analysis/fmea.md @@ -1,5 +1,5 @@ --- -id: DOC-FMEA-17876 +id: DOC-FMEA-44787 title: Fmea type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/os/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/os/docs/index.md index 662644f..1d946b8 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/os/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/os/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-70213 +id: DOC-INDEX-10182 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/os/docs/requirements/aou_req.md b/rivet/eclipse-score-score/docs/docs/modules/os/docs/requirements/aou_req.md index 75a6b9c..b6f1653 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/os/docs/requirements/aou_req.md +++ b/rivet/eclipse-score-score/docs/docs/modules/os/docs/requirements/aou_req.md @@ -1,5 +1,5 @@ --- -id: DOC-AOU-REQ-83084 +id: DOC-AOU-REQ-27820 title: Aou Req type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/os/docs/requirements/aou_req_qnx.md b/rivet/eclipse-score-score/docs/docs/modules/os/docs/requirements/aou_req_qnx.md index 9fb8aa6..3e0446c 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/os/docs/requirements/aou_req_qnx.md +++ b/rivet/eclipse-score-score/docs/docs/modules/os/docs/requirements/aou_req_qnx.md @@ -1,5 +1,5 @@ --- -id: DOC-AOU-REQ-QNX-91485 +id: DOC-AOU-REQ-QNX-2615 title: Aou Req Qnx type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/os/docs/requirements/index.md b/rivet/eclipse-score-score/docs/docs/modules/os/docs/requirements/index.md index a47a8b2..91ca604 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/os/docs/requirements/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/os/docs/requirements/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-28585 +id: DOC-INDEX-63365 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/os/libc/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/os/libc/docs/architecture/index.md index 33b821b..52779fa 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/os/libc/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/os/libc/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-75012 +id: DOC-INDEX-30520 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/os/libcpp/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/os/libcpp/docs/architecture/index.md index 495da73..f987bd4 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/os/libcpp/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/os/libcpp/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-56872 +id: DOC-INDEX-25477 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/os/message_passing/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/os/message_passing/docs/architecture/index.md index e683a2c..0983554 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/os/message_passing/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/os/message_passing/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-52610 +id: DOC-INDEX-56527 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/community/autosd.md b/rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/community/autosd.md index a4cbd34..0694954 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/community/autosd.md +++ b/rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/community/autosd.md @@ -1,5 +1,5 @@ --- -id: DOC-AUTOSD-80219 +id: DOC-AUTOSD-78074 title: Autosd type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/community/ebclfsa.md b/rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/community/ebclfsa.md index 283e63e..6cbee4f 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/community/ebclfsa.md +++ b/rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/community/ebclfsa.md @@ -1,5 +1,5 @@ --- -id: DOC-EBCLFSA-76210 +id: DOC-EBCLFSA-24793 title: Ebclfsa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/onboarding/os_onboard_template.md b/rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/onboarding/os_onboard_template.md index aa5b162..d029fb2 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/onboarding/os_onboard_template.md +++ b/rivet/eclipse-score-score/docs/docs/modules/os/operating_systems/docs/onboarding/os_onboard_template.md @@ -1,5 +1,5 @@ --- -id: DOC-OS-ONBOARD-TEMPLATE-47359 +id: DOC-OS-ONBOARD-TEMPLATE-63262 title: Os Onboard Template type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/tracing/docs/index.md b/rivet/eclipse-score-score/docs/docs/modules/tracing/docs/index.md index a855ca8..ae6dc39 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/tracing/docs/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/tracing/docs/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-64481 +id: DOC-INDEX-43568 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/modules/tracing/tracing/docs/architecture/index.md b/rivet/eclipse-score-score/docs/docs/modules/tracing/tracing/docs/architecture/index.md index d321045..bf61678 100644 --- a/rivet/eclipse-score-score/docs/docs/modules/tracing/tracing/docs/architecture/index.md +++ b/rivet/eclipse-score-score/docs/docs/modules/tracing/tracing/docs/architecture/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-80415 +id: DOC-INDEX-74998 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/change_management.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/change_management.md index fb60eaf..8f213bd 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/change_management.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/change_management.md @@ -1,5 +1,5 @@ --- -id: DOC-CHANGE-MANAGEMENT-33800 +id: DOC-CHANGE-MANAGEMENT-14230 title: Change Management type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/config_management.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/config_management.md index 84df77a..fad1165 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/config_management.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/config_management.md @@ -1,5 +1,5 @@ --- -id: DOC-CONFIG-MANAGEMENT-15666 +id: DOC-CONFIG-MANAGEMENT-81782 title: Config Management type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/documentation_management.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/documentation_management.md index 4fa64f8..8d10d04 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/documentation_management.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/documentation_management.md @@ -1,5 +1,5 @@ --- -id: DOC-DOCUMENTATION-MANAGEMENT-74287 +id: DOC-DOCUMENTATION-MANAGEMENT-24423 title: Documentation Management type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/index.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/index.md index 8d81a94..49bbbe4 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/index.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-22029 +id: DOC-INDEX-28074 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/problem_resolution.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/problem_resolution.md index 576cbce..f551e4f 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/problem_resolution.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/problem_resolution.md @@ -1,5 +1,5 @@ --- -id: DOC-PROBLEM-RESOLUTION-40575 +id: DOC-PROBLEM-RESOLUTION-954 title: Problem Resolution type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/project_management.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/project_management.md index f5ade08..d73f977 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/project_management.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/project_management.md @@ -1,5 +1,5 @@ --- -id: DOC-PROJECT-MANAGEMENT-59572 +id: DOC-PROJECT-MANAGEMENT-20500 title: Project Management type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/quality_management.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/quality_management.md index 021f785..6089d45 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/quality_management.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/quality_management.md @@ -1,5 +1,5 @@ --- -id: DOC-QUALITY-MANAGEMENT-36011 +id: DOC-QUALITY-MANAGEMENT-90625 title: Quality Management type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/release_management.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/release_management.md index 9143d79..9b122a3 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/release_management.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/release_management.md @@ -1,5 +1,5 @@ --- -id: DOC-RELEASE-MANAGEMENT-16487 +id: DOC-RELEASE-MANAGEMENT-1467 title: Release Management type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_quality_manager.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_quality_manager.md index 165483a..462ea1b 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_quality_manager.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_quality_manager.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-QUALITY-MANAGER-58623 +id: DOC-PLATFORM-QUALITY-MANAGER-63200 title: Platform Quality Manager type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_safety_engineer.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_safety_engineer.md index 666b614..bb26105 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_safety_engineer.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_safety_engineer.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SAFETY-ENGINEER-58768 +id: DOC-PLATFORM-SAFETY-ENGINEER-76963 title: Platform Safety Engineer type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_safety_manager.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_safety_manager.md index 16e44d4..7a9f8d9 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_safety_manager.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_safety_manager.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SAFETY-MANAGER-63763 +id: DOC-PLATFORM-SAFETY-MANAGER-69896 title: Platform Safety Manager type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_security_manager.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_security_manager.md index 3508dcc..b1f6daa 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_security_manager.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/role_assignment/platform_security_manager.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SECURITY-MANAGER-61606 +id: DOC-PLATFORM-SECURITY-MANAGER-3511 title: Platform Security Manager type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/safety_management.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/safety_management.md index 46c3169..9af7d17 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/safety_management.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/safety_management.md @@ -1,5 +1,5 @@ --- -id: DOC-SAFETY-MANAGEMENT-74367 +id: DOC-SAFETY-MANAGEMENT-15238 title: Safety Management type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/security_management.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/security_management.md index f80f89a..e6c14e6 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/security_management.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/security_management.md @@ -1,5 +1,5 @@ --- -id: DOC-SECURITY-MANAGEMENT-89127 +id: DOC-SECURITY-MANAGEMENT-94824 title: Security Management type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/software_development.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/software_development.md index e1c9eec..23bf340 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/software_development.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/software_development.md @@ -1,5 +1,5 @@ --- -id: DOC-SOFTWARE-DEVELOPMENT-15753 +id: DOC-SOFTWARE-DEVELOPMENT-79878 title: Software Development type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/software_verification.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/software_verification.md index 1c1c27f..bfc7671 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/software_verification.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/software_verification.md @@ -1,5 +1,5 @@ --- -id: DOC-SOFTWARE-VERIFICATION-33637 +id: DOC-SOFTWARE-VERIFICATION-4329 title: Software Verification type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/tool_management.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/tool_management.md index ef490b5..55a8637 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/tool_management.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/tool_management.md @@ -1,5 +1,5 @@ --- -id: DOC-TOOL-MANAGEMENT-40275 +id: DOC-TOOL-MANAGEMENT-23248 title: Tool Management type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/platform_management_plan/vulnerability_management.md b/rivet/eclipse-score-score/docs/docs/platform_management_plan/vulnerability_management.md index 11b7b1c..a9745b7 100644 --- a/rivet/eclipse-score-score/docs/docs/platform_management_plan/vulnerability_management.md +++ b/rivet/eclipse-score-score/docs/docs/platform_management_plan/vulnerability_management.md @@ -1,5 +1,5 @@ --- -id: DOC-VULNERABILITY-MANAGEMENT-56978 +id: DOC-VULNERABILITY-MANAGEMENT-59678 title: Vulnerability Management type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/requirements/platform_assumptions/index.md b/rivet/eclipse-score-score/docs/docs/requirements/platform_assumptions/index.md index cef5b2a..18f9e64 100644 --- a/rivet/eclipse-score-score/docs/docs/requirements/platform_assumptions/index.md +++ b/rivet/eclipse-score-score/docs/docs/requirements/platform_assumptions/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-13073 +id: DOC-INDEX-77344 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/requirements/stakeholder/index.md b/rivet/eclipse-score-score/docs/docs/requirements/stakeholder/index.md index 7abfe7e..16366e6 100644 --- a/rivet/eclipse-score-score/docs/docs/requirements/stakeholder/index.md +++ b/rivet/eclipse-score-score/docs/docs/requirements/stakeholder/index.md @@ -1,5 +1,5 @@ --- -id: DOC-INDEX-80931 +id: DOC-INDEX-98401 title: Index type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/safety/fdr_reports_safety_analyses_DFA.md b/rivet/eclipse-score-score/docs/docs/safety/fdr_reports_safety_analyses_DFA.md index 31b88e2..3ea154e 100644 --- a/rivet/eclipse-score-score/docs/docs/safety/fdr_reports_safety_analyses_DFA.md +++ b/rivet/eclipse-score-score/docs/docs/safety/fdr_reports_safety_analyses_DFA.md @@ -1,5 +1,5 @@ --- -id: DOC-FDR-REPORTS-SAFETY-ANALYSES-DFA-74774 +id: DOC-FDR-REPORTS-SAFETY-ANALYSES-DFA-14218 title: Fdr Reports Safety Analyses Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/safety/fdr_reports_safety_package.md b/rivet/eclipse-score-score/docs/docs/safety/fdr_reports_safety_package.md index 58bda8c..9046e08 100644 --- a/rivet/eclipse-score-score/docs/docs/safety/fdr_reports_safety_package.md +++ b/rivet/eclipse-score-score/docs/docs/safety/fdr_reports_safety_package.md @@ -1,5 +1,5 @@ --- -id: DOC-FDR-REPORTS-SAFETY-PACKAGE-92618 +id: DOC-FDR-REPORTS-SAFETY-PACKAGE-40195 title: Fdr Reports Safety Package type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/safety/fdr_reports_safety_platform_safety_plan.md b/rivet/eclipse-score-score/docs/docs/safety/fdr_reports_safety_platform_safety_plan.md index 03d766c..f1cd357 100644 --- a/rivet/eclipse-score-score/docs/docs/safety/fdr_reports_safety_platform_safety_plan.md +++ b/rivet/eclipse-score-score/docs/docs/safety/fdr_reports_safety_platform_safety_plan.md @@ -1,5 +1,5 @@ --- -id: DOC-FDR-REPORTS-SAFETY-PLATFORM-SAFETY-PLAN-832 +id: DOC-FDR-REPORTS-SAFETY-PLATFORM-SAFETY-PLAN-42746 title: Fdr Reports Safety Platform Safety Plan type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/safety/platform_dfa.md b/rivet/eclipse-score-score/docs/docs/safety/platform_dfa.md index b63b120..974916e 100644 --- a/rivet/eclipse-score-score/docs/docs/safety/platform_dfa.md +++ b/rivet/eclipse-score-score/docs/docs/safety/platform_dfa.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-DFA-66802 +id: DOC-PLATFORM-DFA-88142 title: Platform Dfa type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/safety/platform_safety_manual.md b/rivet/eclipse-score-score/docs/docs/safety/platform_safety_manual.md index 0e9f45e..b5b1fed 100644 --- a/rivet/eclipse-score-score/docs/docs/safety/platform_safety_manual.md +++ b/rivet/eclipse-score-score/docs/docs/safety/platform_safety_manual.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-SAFETY-MANUAL-22700 +id: DOC-PLATFORM-SAFETY-MANUAL-60439 title: Platform Safety Manual type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_releases/score_releases/score_v0_5_alpha.md b/rivet/eclipse-score-score/docs/docs/score_releases/score_releases/score_v0_5_alpha.md index abbe389..5a7050b 100644 --- a/rivet/eclipse-score-score/docs/docs/score_releases/score_releases/score_v0_5_alpha.md +++ b/rivet/eclipse-score-score/docs/docs/score_releases/score_releases/score_v0_5_alpha.md @@ -1,5 +1,5 @@ --- -id: DOC-SCORE-V0-5-ALPHA-34471 +id: DOC-SCORE-V0-5-ALPHA-67968 title: Score V0 5 Alpha type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_releases/score_releases/score_v0_5_beta.md b/rivet/eclipse-score-score/docs/docs/score_releases/score_releases/score_v0_5_beta.md index c6b790d..7017cc8 100644 --- a/rivet/eclipse-score-score/docs/docs/score_releases/score_releases/score_v0_5_beta.md +++ b/rivet/eclipse-score-score/docs/docs/score_releases/score_releases/score_v0_5_beta.md @@ -1,5 +1,5 @@ --- -id: DOC-SCORE-V0-5-BETA-95056 +id: DOC-SCORE-V0-5-BETA-5762 title: Score V0 5 Beta type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_releases/score_releases/score_v0_6.md b/rivet/eclipse-score-score/docs/docs/score_releases/score_releases/score_v0_6.md index 7af029a..1d4a325 100644 --- a/rivet/eclipse-score-score/docs/docs/score_releases/score_releases/score_v0_6.md +++ b/rivet/eclipse-score-score/docs/docs/score_releases/score_releases/score_v0_6.md @@ -1,5 +1,5 @@ --- -id: DOC-SCORE-V0-6-61653 +id: DOC-SCORE-V0-6-80757 title: Score V0 6 type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_releases/verification/platform_ver_report.md b/rivet/eclipse-score-score/docs/docs/score_releases/verification/platform_ver_report.md index 503b6d4..6e7408f 100644 --- a/rivet/eclipse-score-score/docs/docs/score_releases/verification/platform_ver_report.md +++ b/rivet/eclipse-score-score/docs/docs/score_releases/verification/platform_ver_report.md @@ -1,5 +1,5 @@ --- -id: DOC-PLATFORM-VER-REPORT-32579 +id: DOC-PLATFORM-VER-REPORT-3214 title: Platform Ver Report type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_tools/score_tools_evaluation_list.md b/rivet/eclipse-score-score/docs/docs/score_tools/score_tools_evaluation_list.md index c2e210b..65ee479 100644 --- a/rivet/eclipse-score-score/docs/docs/score_tools/score_tools_evaluation_list.md +++ b/rivet/eclipse-score-score/docs/docs/score_tools/score_tools_evaluation_list.md @@ -1,5 +1,5 @@ --- -id: DOC-SCORE-TOOLS-EVALUATION-LIST-24285 +id: DOC-SCORE-TOOLS-EVALUATION-LIST-39189 title: Score Tools Evaluation List type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_tools/tools_build_development/bazel.md b/rivet/eclipse-score-score/docs/docs/score_tools/tools_build_development/bazel.md index ddf8fb0..7831372 100644 --- a/rivet/eclipse-score-score/docs/docs/score_tools/tools_build_development/bazel.md +++ b/rivet/eclipse-score-score/docs/docs/score_tools/tools_build_development/bazel.md @@ -1,5 +1,5 @@ --- -id: DOC-BAZEL-90318 +id: DOC-BAZEL-79446 title: Bazel type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_tools/tools_compiler/gcc.md b/rivet/eclipse-score-score/docs/docs/score_tools/tools_compiler/gcc.md index 939534b..f3d9f06 100644 --- a/rivet/eclipse-score-score/docs/docs/score_tools/tools_compiler/gcc.md +++ b/rivet/eclipse-score-score/docs/docs/score_tools/tools_compiler/gcc.md @@ -1,5 +1,5 @@ --- -id: DOC-GCC-12932 +id: DOC-GCC-20584 title: Gcc type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_tools/tools_compiler/qcc.md b/rivet/eclipse-score-score/docs/docs/score_tools/tools_compiler/qcc.md index 719a03e..85afd5c 100644 --- a/rivet/eclipse-score-score/docs/docs/score_tools/tools_compiler/qcc.md +++ b/rivet/eclipse-score-score/docs/docs/score_tools/tools_compiler/qcc.md @@ -1,5 +1,5 @@ --- -id: DOC-QCC-18411 +id: DOC-QCC-64486 title: Qcc type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_tools/tools_documentation/doc_as_code.md b/rivet/eclipse-score-score/docs/docs/score_tools/tools_documentation/doc_as_code.md index 3f549d5..73c3f6a 100644 --- a/rivet/eclipse-score-score/docs/docs/score_tools/tools_documentation/doc_as_code.md +++ b/rivet/eclipse-score-score/docs/docs/score_tools/tools_documentation/doc_as_code.md @@ -1,5 +1,5 @@ --- -id: DOC-DOC-AS-CODE-91640 +id: DOC-DOC-AS-CODE-36167 title: Doc As Code type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/clang-format.md b/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/clang-format.md index 3fd6bdd..a3c1ebb 100644 --- a/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/clang-format.md +++ b/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/clang-format.md @@ -1,5 +1,5 @@ --- -id: DOC-CLANG-FORMAT-60825 +id: DOC-CLANG-FORMAT-65887 title: Clang-Format type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/clang-tidy.md b/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/clang-tidy.md index 51531f4..37a8c3f 100644 --- a/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/clang-tidy.md +++ b/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/clang-tidy.md @@ -1,5 +1,5 @@ --- -id: DOC-CLANG-TIDY-5051 +id: DOC-CLANG-TIDY-18800 title: Clang-Tidy type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/clippy.md b/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/clippy.md index 618324e..2c41dd3 100644 --- a/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/clippy.md +++ b/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/clippy.md @@ -1,5 +1,5 @@ --- -id: DOC-CLIPPY-14358 +id: DOC-CLIPPY-11814 title: Clippy type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/rustfmt.md b/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/rustfmt.md index 9c4cbdb..5238e1b 100644 --- a/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/rustfmt.md +++ b/rivet/eclipse-score-score/docs/docs/score_tools/tools_static_analysis_code_quality/rustfmt.md @@ -1,5 +1,5 @@ --- -id: DOC-RUSTFMT-14626 +id: DOC-RUSTFMT-19985 title: Rustfmt type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_tools/tools_testing_frameworks/gtest.md b/rivet/eclipse-score-score/docs/docs/score_tools/tools_testing_frameworks/gtest.md index 1f4afeb..1fe68f1 100644 --- a/rivet/eclipse-score-score/docs/docs/score_tools/tools_testing_frameworks/gtest.md +++ b/rivet/eclipse-score-score/docs/docs/score_tools/tools_testing_frameworks/gtest.md @@ -1,5 +1,5 @@ --- -id: DOC-GTEST-75282 +id: DOC-GTEST-17627 title: Gtest type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_tools/tools_testing_frameworks/itf.md b/rivet/eclipse-score-score/docs/docs/score_tools/tools_testing_frameworks/itf.md index f7b6fa5..b2df6e8 100644 --- a/rivet/eclipse-score-score/docs/docs/score_tools/tools_testing_frameworks/itf.md +++ b/rivet/eclipse-score-score/docs/docs/score_tools/tools_testing_frameworks/itf.md @@ -1,5 +1,5 @@ --- -id: DOC-ITF-92142 +id: DOC-ITF-69682 title: Itf type: specification status: approved diff --git a/rivet/eclipse-score-score/docs/docs/score_tools/tools_vc_cicd/github.md b/rivet/eclipse-score-score/docs/docs/score_tools/tools_vc_cicd/github.md index 8216cde..5b63e21 100644 --- a/rivet/eclipse-score-score/docs/docs/score_tools/tools_vc_cicd/github.md +++ b/rivet/eclipse-score-score/docs/docs/score_tools/tools_vc_cicd/github.md @@ -1,5 +1,5 @@ --- -id: DOC-GITHUB-83470 +id: DOC-GITHUB-77205 title: Github type: specification status: approved diff --git a/rivet/eclipse-score-score/rivet.yaml b/rivet/eclipse-score-score/rivet.yaml index 96f36e4..2d7ef5a 100644 --- a/rivet/eclipse-score-score/rivet.yaml +++ b/rivet/eclipse-score-score/rivet.yaml @@ -20,4 +20,195 @@ sources: format: generic-yaml docs: - - docs + - docs/docs/contribute + - docs/docs/contribute/contribution_request + - docs/docs/contribute/development + - docs/docs/contribute/development/cpp + - docs/docs/contribute/development/python + - docs/docs/contribute/development/rust + - docs/docs/contribute/general + - docs/docs/design_decisions + - docs/docs/features/ai_platform + - docs/docs/features/ai_platform/gen_ai + - docs/docs/features/ai_platform/gen_ai/requirements + - docs/docs/features/ai_platform/requirements + - docs/docs/features/analysis-infra/logging + - docs/docs/features/analysis-infra/logging/docs/architecture + - docs/docs/features/analysis-infra/logging/docs/requirements + - docs/docs/features/analysis-infra/tracing/docs/architecture + - docs/docs/features/baselibs + - docs/docs/features/baselibs/abi_compatible_data_types + - docs/docs/features/baselibs/docs/architecture + - docs/docs/features/baselibs/docs/requirements + - docs/docs/features/baselibs/docs/safety_analysis + - docs/docs/features/baselibs/docs/safety_planning + - docs/docs/features/code_generation + - docs/docs/features/code_generation/requirements + - docs/docs/features/communication + - docs/docs/features/communication/docs/architecture + - docs/docs/features/communication/docs/requirements + - docs/docs/features/communication/ipc + - docs/docs/features/communication/ipc/docs/architecture + - docs/docs/features/communication/ipc/docs/requirements + - docs/docs/features/communication/ipc/docs/safety_analysis + - docs/docs/features/communication/ipc/docs/safety_planning + - docs/docs/features/communication/some_ip_gateway + - docs/docs/features/communication/some_ip_gateway/requirements + - docs/docs/features/configuration/config_mgmt + - docs/docs/features/configuration/config_mgmt/requirements + - docs/docs/features/configuration/config_model + - docs/docs/features/diagnostics + - docs/docs/features/diagnostics/requirements + - docs/docs/features/frameworks/daal + - docs/docs/features/frameworks/daal/requirements + - docs/docs/features/frameworks/feo + - docs/docs/features/frameworks/feo/architecture + - docs/docs/features/frameworks/feo/requirements + - docs/docs/features/frameworks/feo/safety_analysis + - docs/docs/features/frameworks/feo/safety_planning + - docs/docs/features/lifecycle + - docs/docs/features/lifecycle/architecture + - docs/docs/features/lifecycle/requirements + - docs/docs/features/orchestration + - docs/docs/features/orchestration/architecture + - docs/docs/features/orchestration/requirements + - docs/docs/features/orchestration/safety_analysis + - docs/docs/features/orchestration/safety_planning + - docs/docs/features/persistency + - docs/docs/features/persistency/architecture + - docs/docs/features/persistency/requirements + - docs/docs/features/persistency/safety_analysis + - docs/docs/features/persistency/safety_planning + - docs/docs/features/persistency/security_analysis + - docs/docs/features/persistency/security_planning + - docs/docs/features/security_crypto + - docs/docs/features/security_crypto/requirements + - docs/docs/features/time + - docs/docs/features/time/docs/requirements + - docs/docs/handbook + - docs/docs/modules/baselibs/bitmanipulation/docs + - docs/docs/modules/baselibs/bitmanipulation/docs/architecture + - docs/docs/modules/baselibs/bitmanipulation/docs/detailed_design + - docs/docs/modules/baselibs/bitmanipulation/docs/requirements + - docs/docs/modules/baselibs/bitmanipulation/docs/safety_analysis + - docs/docs/modules/baselibs/concurrency/docs + - docs/docs/modules/baselibs/concurrency/docs/architecture + - docs/docs/modules/baselibs/concurrency/docs/detailed_design + - docs/docs/modules/baselibs/concurrency/docs/requirements + - docs/docs/modules/baselibs/concurrency/docs/safety_analysis + - docs/docs/modules/baselibs/containers/docs + - docs/docs/modules/baselibs/containers/docs/architecture + - docs/docs/modules/baselibs/containers/docs/detailed_design + - docs/docs/modules/baselibs/containers/docs/requirements + - docs/docs/modules/baselibs/containers/docs/safety_analysis + - docs/docs/modules/baselibs/docs + - docs/docs/modules/baselibs/docs/manual + - docs/docs/modules/baselibs/docs/release + - docs/docs/modules/baselibs/docs/safety_mgt + - docs/docs/modules/baselibs/docs/verification + - docs/docs/modules/baselibs/filesystem/docs + - docs/docs/modules/baselibs/filesystem/docs/architecture + - docs/docs/modules/baselibs/filesystem/docs/detailed_design + - docs/docs/modules/baselibs/filesystem/docs/requirements + - docs/docs/modules/baselibs/filesystem/docs/safety_analysis + - docs/docs/modules/baselibs/flatbuffers/docs + - docs/docs/modules/baselibs/flatbuffers/docs/architecture + - docs/docs/modules/baselibs/flatbuffers/docs/requirements + - docs/docs/modules/baselibs/json/docs + - docs/docs/modules/baselibs/json/docs/architecture + - docs/docs/modules/baselibs/json/docs/detailed_design + - docs/docs/modules/baselibs/json/docs/json_wrapper/requirements + - docs/docs/modules/baselibs/json/docs/requirements + - docs/docs/modules/baselibs/json/docs/safety_analysis + - docs/docs/modules/baselibs/language/futurecpp/docs + - docs/docs/modules/baselibs/language/safecpp/docs + - docs/docs/modules/baselibs/language/safecpp/docs/architecture + - docs/docs/modules/baselibs/language/safecpp/docs/detailed_design + - docs/docs/modules/baselibs/language/safecpp/docs/requirements + - docs/docs/modules/baselibs/language/safecpp/docs/safety_analysis + - docs/docs/modules/baselibs/memory_shared/docs + - docs/docs/modules/baselibs/memory_shared/docs/architecture + - docs/docs/modules/baselibs/memory_shared/docs/requirements + - docs/docs/modules/baselibs/os/docs + - docs/docs/modules/baselibs/result/docs + - docs/docs/modules/baselibs/result/docs/architecture + - docs/docs/modules/baselibs/result/docs/detailed_design + - docs/docs/modules/baselibs/result/docs/requirements + - docs/docs/modules/baselibs/result/docs/safety_analysis + - docs/docs/modules/baselibs/static_reflection_with_serialization/docs + - docs/docs/modules/baselibs/static_reflection_with_serialization/docs/architecture + - docs/docs/modules/baselibs/static_reflection_with_serialization/docs/detailed_design + - docs/docs/modules/baselibs/static_reflection_with_serialization/docs/requirements + - docs/docs/modules/baselibs/static_reflection_with_serialization/docs/safety_analysis + - docs/docs/modules/baselibs/utils/docs + - docs/docs/modules/baselibs/utils/docs/architecture + - docs/docs/modules/baselibs/utils/docs/detailed_design + - docs/docs/modules/baselibs/utils/docs/requirements + - docs/docs/modules/baselibs/utils/docs/safety_analysis + - docs/docs/modules/communication/configuration/docs/architecture + - docs/docs/modules/communication/docs + - docs/docs/modules/communication/docs/manual + - docs/docs/modules/communication/docs/release + - docs/docs/modules/communication/docs/requirements + - docs/docs/modules/communication/docs/safety_mgt + - docs/docs/modules/communication/docs/verification + - docs/docs/modules/communication/frontent/docs/architecture + - docs/docs/modules/communication/ipc_binding/docs/architecture + - docs/docs/modules/communication/lola/docs + - docs/docs/modules/communication/lola/docs/architecture + - docs/docs/modules/communication/lola/docs/detailed_design + - docs/docs/modules/communication/lola/docs/requirements + - docs/docs/modules/communication/lola/docs/safety_analysis + - docs/docs/modules/communication/message_passing/docs/architecture + - docs/docs/modules/communication/mock_binding/docs/architecture + - docs/docs/modules/feo/docs/manual + - docs/docs/modules/feo/docs/release + - docs/docs/modules/feo/docs/safety_mgt + - docs/docs/modules/feo/docs/verification + - docs/docs/modules/feo/feo/docs + - docs/docs/modules/feo/feo/docs/architecture + - docs/docs/modules/feo/feo/docs/detailed_design + - docs/docs/modules/feo/feo/docs/requirements + - docs/docs/modules/feo/feo/docs/safety_analysis + - docs/docs/modules/lifecycle + - docs/docs/modules/logging/docs + - docs/docs/modules/logging/logging/docs/architecture + - docs/docs/modules/orchestrator + - docs/docs/modules/orchestrator/docs + - docs/docs/modules/orchestrator/docs/manual + - docs/docs/modules/orchestrator/docs/release + - docs/docs/modules/orchestrator/docs/safety_mgt + - docs/docs/modules/orchestrator/docs/verification + - docs/docs/modules/orchestrator/executor/docs + - docs/docs/modules/orchestrator/executor/docs/architecture + - docs/docs/modules/orchestrator/executor/docs/detailed_design + - docs/docs/modules/orchestrator/executor/docs/requirements + - docs/docs/modules/orchestrator/executor/docs/safety_analysis + - docs/docs/modules/orchestrator/orchestrator/docs + - docs/docs/modules/orchestrator/orchestrator/docs/architecture + - docs/docs/modules/orchestrator/orchestrator/docs/detailed_design + - docs/docs/modules/orchestrator/orchestrator/docs/requirements + - docs/docs/modules/orchestrator/orchestrator/docs/safety_analysis + - docs/docs/modules/os/docs + - docs/docs/modules/os/docs/requirements + - docs/docs/modules/os/libc/docs/architecture + - docs/docs/modules/os/libcpp/docs/architecture + - docs/docs/modules/os/message_passing/docs/architecture + - docs/docs/modules/os/operating_systems/docs/community + - docs/docs/modules/os/operating_systems/docs/onboarding + - docs/docs/modules/tracing/docs + - docs/docs/modules/tracing/tracing/docs/architecture + - docs/docs/platform_management_plan + - docs/docs/platform_management_plan/role_assignment + - docs/docs/requirements/platform_assumptions + - docs/docs/requirements/stakeholder + - docs/docs/safety + - docs/docs/score_releases/score_releases + - docs/docs/score_releases/verification + - docs/docs/score_tools + - docs/docs/score_tools/tools_build_development + - docs/docs/score_tools/tools_compiler + - docs/docs/score_tools/tools_documentation + - docs/docs/score_tools/tools_static_analysis_code_quality + - docs/docs/score_tools/tools_testing_frameworks + - docs/docs/score_tools/tools_vc_cicd diff --git a/tools/regen_docs_paths.py b/tools/regen_docs_paths.py new file mode 100644 index 0000000..e49cfbf --- /dev/null +++ b/tools/regen_docs_paths.py @@ -0,0 +1,88 @@ +#!/usr/bin/env python3 +"""regen_docs_paths.py — rewrite docs: blocks to enumerate leaf dirs. + +rivet.yaml's `docs:` directive does not recurse — it loads markdown +from each listed directory at one level only. After `make convert` +emits new markdown trees under rivet//docs/, this script +rewrites both: + + - each rivet//rivet.yaml's `docs:` block to enumerate every + leaf dir under /docs/ that contains .md files (paths + relative to the per-repo rivet.yaml) + - the top-level rivet.yaml's `docs:` block to enumerate every + leaf dir across all repos (paths relative to the workspace root) + +Idempotent. Safe to run after every `make convert`. + +Usage: + python3 tools/regen_docs_paths.py +""" +from __future__ import annotations + +import pathlib +import re +import sys + + +WORKSPACE = pathlib.Path(__file__).resolve().parent.parent +DOCS_BLOCK_RE = re.compile(r"docs:\n(?: - [^\n]+\n?)+") + + +def rewrite(yaml_path: pathlib.Path, leafs: list[str]) -> bool: + """Replace the `docs:` block in `yaml_path` with the leaf list. + + Returns True iff the file was modified. + """ + if not leafs: + return False + block = "docs:\n" + "\n".join(f" - {d}" for d in leafs) + text = yaml_path.read_text() + if DOCS_BLOCK_RE.search(text): + new = DOCS_BLOCK_RE.sub(block + "\n", text) + else: + new = text.rstrip() + "\n\n" + block + "\n" + if new != text: + yaml_path.write_text(new) + return True + return False + + +def main() -> int: + per_repo_updated = 0 + total_per_repo_paths = 0 + + for ry in sorted((WORKSPACE / "rivet").glob("eclipse-score-*/rivet.yaml")): + repo_dir = ry.parent + docs_dir = repo_dir / "docs" + if not docs_dir.exists(): + continue + leafs = sorted({ + p.parent.relative_to(repo_dir).as_posix() + for p in docs_dir.rglob("*.md") + }) + if rewrite(ry, leafs): + per_repo_updated += 1 + total_per_repo_paths += len(leafs) + + # Top-level rivet.yaml — paths relative to workspace root. + top_yaml = WORKSPACE / "rivet.yaml" + all_leafs = sorted({ + p.parent.relative_to(WORKSPACE).as_posix() + for p in (WORKSPACE / "rivet").rglob("*.md") + }) + top_changed = rewrite(top_yaml, all_leafs) + + print( + f"per-repo rivet.yaml: {per_repo_updated} updated, " + f"{total_per_repo_paths} total leaf paths" + ) + print( + f"top-level rivet.yaml: " + f"{'updated' if top_changed else 'unchanged'}, " + f"{len(all_leafs)} total leaf paths" + ) + return 0 + + +if __name__ == "__main__": + sys.exit(main())