-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: regenerate governance diagrams (#3927)
* docs: regenerate governance diagrams Following #3888, add a shell script to generate the diagrams. Rename the files for better consistency. Check in new .pngs, since the .pumls were recently updated. * chore: add a final newline
- Loading branch information
1 parent
1461f97
commit 724d629
Showing
9 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@startuml governance invitation linkages | ||
@startuml coreArchitecture | ||
|
||
package Legend <<Rectangle>> #EEEEEE { | ||
|
||
|
Binary file not shown.
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,10 @@ | ||
#!/bin/sh | ||
|
||
pumljar="${PLANTUML:-$HOME/plantuml/plantuml.jar}" | ||
page="index.md" | ||
java -jar "$pumljar" "./**/*.puml" | ||
echo "# Governance Diagrams" > "$page" | ||
for diag in $(find . -name "*.png" | sort); do | ||
echo "## $diag\n" >> "$page" | ||
echo "[]($diag)\n" >> "$page" | ||
done |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,13 @@ | ||
# Governance Diagrams | ||
## ./contractGovernance.png | ||
|
||
[](./contractGovernance.png) | ||
|
||
## ./coreArchitecture.png | ||
|
||
[](./coreArchitecture.png) | ||
|
||
## ./governanceExample.png | ||
|
||
[](./governanceExample.png) | ||
|