Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@startuml

!global $ARCH_LOCAL = true
!global $ARCH_DEBUG = true
!global $ARCH_LOCAL = %true()
!global $ARCH_DEBUG = %true()
!global $ARCH_MINIMUM_WIDTH = 120

!if ($ARCH_LOCAL == false)
!if ($ARCH_LOCAL == %false())
!include <archimate/Archimate>
'!theme archimate-alternate from <archimate/themes>
'!theme archimate-handwriting from <archimate/themes>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
' No <style> alternative found yet for skinparam maxMessageSize
skinparam maxMessageSize 150

' No <style> alternative found yet for skinparam maxMessageSize to make it work on elements that have nested elements
' No <style> alternative found yet for skinparam StereotypeAlignment to make it work on elements that have nested elements
skinparam StereotypeAlignment right

'No <style> alternative found yet for skinparam lineType ortho
!global $ARCH_LINETYPE ?= ortho
'No <style> alternative found yet for skinparam lineType
!global $ARCH_LINETYPE ?= curve
skinparam lineType $ARCH_LINETYPE

' fallback values if theme does not define it
Expand Down
6 changes: 3 additions & 3 deletions samples/Archimate-InternetBrowser.wsd
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@startuml Internet Browser Sample

!global $ARCH_LOCAL = true
!global $ARCH_DEBUG = false
!global $ARCH_LOCAL = %true()
!global $ARCH_DEBUG = %true()

!if ($ARCH_LOCAL == false)
!if ($ARCH_LOCAL == %false())
!include <archimate/Archimate>
'!theme archimate-alternate from <archimate/themes>
'!theme archimate-handwriting from <archimate/themes>
Expand Down
6 changes: 3 additions & 3 deletions samples/Archimate-Overview.wsd
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@startuml Archimate Overview

!global $ARCH_LOCAL = false
!global $ARCH_DEBUG = false
!global $ARCH_LOCAL = %false()
!global $ARCH_DEBUG = %false()

!if ($ARCH_LOCAL == false)
!if ($ARCH_LOCAL == %false())
!include <archimate/Archimate>
'!theme archimate-alternate from <archimate/themes>
'!theme archimate-handwriting from <archimate/themes>
Expand Down
6 changes: 3 additions & 3 deletions samples/Archimate-Relationships.wsd
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@startuml

!global $ARCH_LOCAL = true
!global $ARCH_DEBUG = false
!global $ARCH_LOCAL = %true()
!global $ARCH_DEBUG = %false()

!if ($ARCH_LOCAL == false)
!if ($ARCH_LOCAL == %false())
!include <archimate/Archimate>
'!theme archimate-alternate from <archimate/themes>
'!theme archimate-handwriting from <archimate/themes>
Expand Down
6 changes: 3 additions & 3 deletions samples/Archimate-Sample01.wsd
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@startuml

!global $ARCH_LOCAL = false
!global $ARCH_DEBUG = false
!global $ARCH_LOCAL = %false()
!global $ARCH_DEBUG = %false()

!if ($ARCH_LOCAL == false)
!if ($ARCH_LOCAL == %false())
!include <archimate/Archimate>
'!theme archimate-alternate from <archimate/themes>
'!theme archimate-handwriting from <archimate/themes>
Expand Down