Conversation
Split the interleaved feat_req/comp_req entries in docs/features/lifecycle/requirements/index.rst so that component requirements (comp_req) now live in their own file, component_requirements.rst, alongside the existing feature requirements file. The requirements toctree glob already picks up all files under requirements/, so no toctree changes were needed. No requirement IDs were added, removed, or modified; only their file location and grouping changed. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
The created documentation from the pull request is available at: docu-html |
aschemmel-tech
left a comment
There was a problem hiding this comment.
seems we are doing parallel work: see #3123
FScholPer
left a comment
There was a problem hiding this comment.
Should be in the module repo
|
@NicolasFussberger is this pr still valid or have you already moved the parts into module folders? |
|
I assume this is no longer valid, as comp_req have already been moved to the lifecycle repo. |
|
Thanks for the pull request. This thread has been quiet for 30 days, so we are marking it as stale for now. Please take a quick look and let us know whether it is still up to date, still relevant, needs review, or is ready to merge. Any new activity will remove the stale label automatically. If nothing changes in the next 10 days, we will close it to keep the backlog current. |
What
Split
docs/features/lifecycle/requirements/index.rst, which mixedfeat_reqandcomp_reqentries under the same section headings, into two files:index.rst— now contains onlyfeat_req(feature requirement) entriescomponent_requirements.rst(new) — contains onlycomp_req(component requirement) entries, grouped under the same section headingsWhy
Keeping feature and component requirements in one file made it hard to navigate. Separating them into dedicated files improves readability and matches the pattern already used by other modules (e.g.
docs/modules/feo/feo/docs/requirements/component_requirements.rst).Notes
:id:values (32 feat_req + 63 comp_req) are identical before/after, just relocated.docs/features/lifecycle/index.rstalready includes requirements via a glob (./requirements/*), so the new file is picked up automatically.