You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2021/02/17 13:48:43 UTC

[isis] branch master updated: ISIS-2522: switch sys overview diagrams to SVG

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new abf819e  ISIS-2522: switch sys overview diagrams to SVG
abf819e is described below

commit abf819ec7a4e0ee72ea5441f985037ae8dc23299
Author: Andi Huber <ah...@apache.org>
AuthorDate: Wed Feb 17 14:48:30 2021 +0100

    ISIS-2522: switch sys overview diagrams to SVG
    
    also switch graphviz layout direction to left-right
---
 .../main/java/org/apache/isis/tooling/cli/projdoc/ProjectDocModel.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tooling/cli/src/main/java/org/apache/isis/tooling/cli/projdoc/ProjectDocModel.java b/tooling/cli/src/main/java/org/apache/isis/tooling/cli/projdoc/ProjectDocModel.java
index d8d208b..12b6efe 100644
--- a/tooling/cli/src/main/java/org/apache/isis/tooling/cli/projdoc/ProjectDocModel.java
+++ b/tooling/cli/src/main/java/org/apache/isis/tooling/cli/projdoc/ProjectDocModel.java
@@ -270,7 +270,7 @@ public class ProjectDocModel {
             val key = c4.getWorkspaceName();
 
             return AsciiDocFactory.toString(doc->
-                        AsciiDocFactory.DiagramFactory.plantumlPng(doc, toPlantUml(softwareSystemName), key, null));
+                        AsciiDocFactory.DiagramFactory.plantumlSvg(doc, toPlantUml(softwareSystemName), key, null));
         }
     }