plantuml / plantuml-stdlib

Contains official Standard Library for PlantUML
557 stars 122 forks source link

include <osa2/all.puml> fails #100

Closed jcralbino closed 7 months ago

jcralbino commented 7 months ago

While testing this

@startuml
!include <osa2/all.puml>
listsprites
@enduml

In the PLANTUML Online server we get an error: image

The-Lum commented 7 months ago

Hello @jcralbino, and all,

Thanks for the report. Yes there is a lot of issue on osa2/all.puml and it is definitely bugged... It must be fixed...

In fact, the correct use of osa2 is to use:

@startuml 
!include <osa2/Common.puml>
!include <osa2/Hardware/all.puml>
!include <osa2/Server/all.puml>
!include <osa2/Misc/all.puml>
!include <osa2/Site/all.puml>
!include <osa2/User/all.puml>
listsprites
@enduml

Enjoy, Regards, Th.