-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds OpenFastTrace for requirements tracking (#11710)
* Initial requirement * Initial requirement * Add OpenFastTrace * Fix linting * Remove wrong disable rule
- Loading branch information
Showing
6 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
parent: Requirements | ||
--- | ||
# AI | ||
|
||
## User Interface | ||
|
||
### Chatting with AI | ||
`req~ai.chat.new-message-based-on-previous~1` | ||
|
||
To enable simple editing and resending of previous messages, <kbd>Cursor Up</kbd> should show last message. | ||
This should only happen if the current text field is empty. | ||
|
||
Needs: impl | ||
|
||
<!-- markdownlint-disable-file MD022 --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
nav_order: 7 | ||
has_children: true | ||
--- | ||
# Requirements | ||
|
||
This part of the documentation collects requirements using [OpenFastTrace](https://github.com/itsallcode/openfasttrace). | ||
|
||
## Specifying requirements | ||
|
||
One writes directly below a Markdown heading a requirement identifier. | ||
|
||
Example: | ||
|
||
```markdown | ||
### Example | ||
`req~ai.example~1` | ||
``` | ||
|
||
It is important that there is no empty line directly after the heading. | ||
|
||
{: note} | ||
One needs to add `<!-- markdownlint-disable-file MD022 -->` to the end of the file, because the id of the requirement needs to follow the heading directly. | ||
|
||
## Linking implementations | ||
|
||
Then, one writes down at the requirement. | ||
Directly at the end, one writes that it requires an implementation: | ||
|
||
```markdown | ||
Needs: impl | ||
``` | ||
|
||
One can also state that there should be detailed design document (`dsn`). | ||
However, typically in JabRef, we go from the requirement directly to the implementation. | ||
|
||
Then, at the implementation, a comment is added this implementation is covered: | ||
|
||
```java | ||
// [impl->req~ai.example~1] | ||
``` | ||
|
||
When executing the gradle task `traceRequirements`, `build/tracing.txt` is generated. | ||
In case of a tracing error, one can inspect this file to see which requirements were not covered. | ||
|
||
## More Information | ||
|
||
- [User manual of OpenFastTrace](https://github.com/itsallcode/openfasttrace/blob/main/doc/user_guide.md) | ||
- We cannot copy and paste real examples here, because of [openfasttrace#280](https://github.com/itsallcode/openfasttrace/issues/280). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters