-
Notifications
You must be signed in to change notification settings - Fork 560
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The kroki server is currently experiencing some issues which breaks our build, this change eliminates the use of kroki in favor of directly using the generated svg images which is checked into git alongside the plantuml sources. I also added a task to the Taskfile to re-generate the svg images from the plantuml sources by calling docker.
- Loading branch information
Showing
7 changed files
with
245 additions
and
265 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
@startuml | ||
skinparam shadowing false | ||
skinparam monochrome true | ||
skinparam packageStyle rectangle | ||
skinparam backgroundColor FFFFFE | ||
|
||
class Node | ||
|
||
class Identifier { | ||
eq(other) -> bool | ||
neq(other) -> bool | ||
startswith(prefix: str, start, end) -> bool | ||
} | ||
Identifier -up-|> Node | ||
|
||
class IdentifiedNode { | ||
toPython() -> str | ||
} | ||
IdentifiedNode -up-|> Identifier | ||
|
||
class URIRef { | ||
n3(namespace_manager) -> str | ||
defrag() -> URIRef | ||
de_skolemize() -> BNode | ||
} | ||
URIRef -up-|> IdentifiedNode | ||
|
||
|
||
class Genid | ||
Genid -up-|> URIRef | ||
|
||
class RDFLibGenid | ||
RDFLibGenid -up-|> Genid | ||
|
||
class BNode { | ||
n3(namespace_manager) -> str | ||
skolemize(authority, basepath) -> RDFLibGenid | ||
} | ||
BNode -up-|> IdentifiedNode | ||
|
||
class Literal { | ||
datatype: Optional[str] | ||
lang: Optional[str] | ||
value: Any | ||
|
||
normalize() -> Literal | ||
n3(namespace_manager) -> str | ||
toPython() -> str | ||
} | ||
Literal -up-|> Identifier | ||
|
||
class Variable { | ||
n3(namespace_manager) -> str | ||
toPython() -> str | ||
} | ||
Variable -up-|> Identifier | ||
|
||
@enduml |
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
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
Oops, something went wrong.