drawio_dsl 0.8.9 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +1 -0
  3. data/CHANGELOG.md +21 -0
  4. data/config/configuration.json +8 -8
  5. data/docs/domain-modal/domain_model_custom.drawio +2 -2
  6. data/docs/printspeak-architecture-controllers-custom.drawio +93 -0
  7. data/docs/printspeak-architecture-controllers-fat.svg +1 -0
  8. data/docs/printspeak-architecture-controllers-thin.svg +1 -0
  9. data/docs/printspeak-architecture-controllers.drawio +48 -0
  10. data/docs/printspeak-architecture-generator.drawio +106 -42
  11. data/docs/printspeak-architecture-generator.svg +1 -1
  12. data/docs/project-plan/project.drawio +88 -64
  13. data/docs/project-plan/project_done.svg +1 -1
  14. data/docs/project-plan/project_in_progress.svg +1 -1
  15. data/docs/project-plan/project_todo.svg +1 -1
  16. data/docs/samples/grid-direction-horizontal.svg +1 -1
  17. data/docs/samples/grid-direction-vertical.svg +1 -1
  18. data/lib/drawio_dsl/configuration.rb +81 -0
  19. data/lib/drawio_dsl/configuration_shapes.rb +2 -2
  20. data/lib/drawio_dsl/configuration_themes.rb +44 -44
  21. data/lib/drawio_dsl/dom_builder_shapes.rb +3 -3
  22. data/lib/drawio_dsl/drawio_shapes.rb +3 -3
  23. data/lib/drawio_dsl/schema/_.rb +55 -45
  24. data/lib/drawio_dsl/schema/diagram.rb +1 -1
  25. data/lib/drawio_dsl/schema/element.rb +23 -0
  26. data/lib/drawio_dsl/schema/{shapes/face.rb → elements/actor.rb} +2 -2
  27. data/lib/drawio_dsl/schema/{shapes/actor.rb → elements/actor2.rb} +2 -2
  28. data/lib/drawio_dsl/schema/{shapes/circle.rb → elements/callout.rb} +2 -2
  29. data/lib/drawio_dsl/schema/{shapes/callout.rb → elements/callout2.rb} +2 -2
  30. data/lib/drawio_dsl/schema/elements/callout3.rb +9 -0
  31. data/lib/drawio_dsl/schema/elements/callout4.rb +9 -0
  32. data/lib/drawio_dsl/schema/{shapes/cross.rb → elements/circle.rb} +2 -2
  33. data/lib/drawio_dsl/schema/elements/cloud.rb +9 -0
  34. data/lib/drawio_dsl/schema/elements/container.rb +9 -0
  35. data/lib/drawio_dsl/schema/elements/container2.rb +9 -0
  36. data/lib/drawio_dsl/schema/elements/container3.rb +9 -0
  37. data/lib/drawio_dsl/schema/elements/container4.rb +9 -0
  38. data/lib/drawio_dsl/schema/elements/cross.rb +9 -0
  39. data/lib/drawio_dsl/schema/elements/database.rb +9 -0
  40. data/lib/drawio_dsl/schema/{shapes/actor2.rb → elements/db_json.rb} +2 -2
  41. data/lib/drawio_dsl/schema/elements/diamond.rb +9 -0
  42. data/lib/drawio_dsl/schema/elements/document.rb +9 -0
  43. data/lib/drawio_dsl/schema/elements/ellipse.rb +9 -0
  44. data/lib/drawio_dsl/schema/elements/embed_col200.rb +9 -0
  45. data/lib/drawio_dsl/schema/elements/embed_col50.rb +9 -0
  46. data/lib/drawio_dsl/schema/{shapes/callout2.rb → elements/embed_row.rb} +2 -2
  47. data/lib/drawio_dsl/schema/elements/envelop.rb +9 -0
  48. data/lib/drawio_dsl/schema/elements/face.rb +9 -0
  49. data/lib/drawio_dsl/schema/elements/group.rb +9 -0
  50. data/lib/drawio_dsl/schema/elements/hexagon.rb +9 -0
  51. data/lib/drawio_dsl/schema/elements/interface.rb +9 -0
  52. data/lib/drawio_dsl/schema/elements/klass.rb +9 -0
  53. data/lib/drawio_dsl/schema/elements/note.rb +9 -0
  54. data/lib/drawio_dsl/schema/elements/process.rb +9 -0
  55. data/lib/drawio_dsl/schema/elements/rectangle.rb +9 -0
  56. data/lib/drawio_dsl/schema/elements/rectangle2.rb +9 -0
  57. data/lib/drawio_dsl/schema/{shapes/cloud.rb → elements/square.rb} +2 -2
  58. data/lib/drawio_dsl/schema/elements/step.rb +9 -0
  59. data/lib/drawio_dsl/schema/elements/tick.rb +9 -0
  60. data/lib/drawio_dsl/schema/elements/todo.rb +9 -0
  61. data/lib/drawio_dsl/schema/elements/triangle.rb +9 -0
  62. data/lib/drawio_dsl/schema/line.rb +24 -0
  63. data/lib/drawio_dsl/schema/lines/solid.rb +9 -0
  64. data/lib/drawio_dsl/schema/page.rb +8 -6
  65. data/lib/drawio_dsl/schema/{shapes/shape.rb → shape.rb} +14 -22
  66. data/lib/drawio_dsl/schema/text.rb +23 -0
  67. data/lib/drawio_dsl/schema/{shapes → texts}/h1.rb +2 -2
  68. data/lib/drawio_dsl/schema/{shapes → texts}/h2.rb +2 -2
  69. data/lib/drawio_dsl/schema/{shapes → texts}/h3.rb +2 -2
  70. data/lib/drawio_dsl/schema/{shapes → texts}/h4.rb +2 -2
  71. data/lib/drawio_dsl/schema/{shapes → texts}/h5.rb +2 -2
  72. data/lib/drawio_dsl/schema/{shapes → texts}/h6.rb +2 -2
  73. data/lib/drawio_dsl/schema/{shapes → texts}/p.rb +2 -2
  74. data/lib/drawio_dsl/version.rb +1 -1
  75. data/lib/drawio_dsl.rb +7 -9
  76. data/package-lock.json +2 -2
  77. data/package.json +1 -1
  78. metadata +54 -47
  79. data/lib/drawio_dsl/schema/shapes/callout3.rb +0 -9
  80. data/lib/drawio_dsl/schema/shapes/callout4.rb +0 -9
  81. data/lib/drawio_dsl/schema/shapes/container.rb +0 -9
  82. data/lib/drawio_dsl/schema/shapes/container2.rb +0 -9
  83. data/lib/drawio_dsl/schema/shapes/container3.rb +0 -9
  84. data/lib/drawio_dsl/schema/shapes/container4.rb +0 -9
  85. data/lib/drawio_dsl/schema/shapes/database.rb +0 -9
  86. data/lib/drawio_dsl/schema/shapes/db_json.rb +0 -9
  87. data/lib/drawio_dsl/schema/shapes/diamond.rb +0 -9
  88. data/lib/drawio_dsl/schema/shapes/document.rb +0 -9
  89. data/lib/drawio_dsl/schema/shapes/ellipse.rb +0 -9
  90. data/lib/drawio_dsl/schema/shapes/embed_col200.rb +0 -9
  91. data/lib/drawio_dsl/schema/shapes/embed_col50.rb +0 -9
  92. data/lib/drawio_dsl/schema/shapes/embed_row.rb +0 -9
  93. data/lib/drawio_dsl/schema/shapes/envelop.rb +0 -9
  94. data/lib/drawio_dsl/schema/shapes/group.rb +0 -9
  95. data/lib/drawio_dsl/schema/shapes/hexagon.rb +0 -9
  96. data/lib/drawio_dsl/schema/shapes/interface.rb +0 -9
  97. data/lib/drawio_dsl/schema/shapes/klass.rb +0 -9
  98. data/lib/drawio_dsl/schema/shapes/line.rb +0 -9
  99. data/lib/drawio_dsl/schema/shapes/note.rb +0 -9
  100. data/lib/drawio_dsl/schema/shapes/process.rb +0 -9
  101. data/lib/drawio_dsl/schema/shapes/rectangle.rb +0 -9
  102. data/lib/drawio_dsl/schema/shapes/rectangle2.rb +0 -9
  103. data/lib/drawio_dsl/schema/shapes/square.rb +0 -9
  104. data/lib/drawio_dsl/schema/shapes/step.rb +0 -9
  105. data/lib/drawio_dsl/schema/shapes/tick.rb +0 -9
  106. data/lib/drawio_dsl/schema/shapes/todo.rb +0 -9
  107. data/lib/drawio_dsl/schema/shapes/triangle.rb +0 -9
@@ -1,181 +1,205 @@
1
- <mxfile host="rYm">
2
- <diagram id="0gF" name="In progress">
1
+ <mxfile host="sZX">
2
+ <diagram id="ZAl" name="In progress">
3
3
  <mxGraphModel dx="0" dy="0" background="#FFFACD" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
4
4
  <root>
5
- <mxCell id="page_root_0gF" parent="0gF"/>
6
- <mxCell id="node_root_0gF" parent="page_root_0gF"/>
7
- <mxCell id="0gF-2" value="add new shapes related to line connectors" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_0gF">
5
+ <mxCell id="page_root_ZAl" parent="ZAl"/>
6
+ <mxCell id="node_root_ZAl" parent="page_root_ZAl"/>
7
+ <mxCell id="ZAl-1" value="DrawIO DSL" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fontColor=#aaaaaa;text;fontSize=28;fontStyle=1;fillColor=none" vertex="1" parent="node_root_ZAl">
8
+ <mxGeometry x="300" y="0" width="400" height="80" as="geometry"/>
9
+ </mxCell>
10
+ <mxCell id="ZAl-3" value="add sample for backgrounds with text on top" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
8
11
  <mxGeometry x="10" y="10" width="300" height="60" as="geometry"/>
9
12
  </mxCell>
10
- <mxCell id="0gF-3" value="line connector aliases gives a simple way to use predefined line configurations" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_0gF">
13
+ <mxCell id="ZAl-4" value="add :shape, :line and :text to random shape generator, note: you can see the issue in the samples/20-styled-shapes.rb where the text is not rendered" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
11
14
  <mxGeometry x="330" y="10" width="300" height="60" as="geometry"/>
12
15
  </mxCell>
13
- <mxCell id="0gF-4" value="line connectors need to support autolinking using ids" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_0gF">
16
+ <mxCell id="ZAl-5" value="add new shapes related to line connectors" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
14
17
  <mxGeometry x="650" y="10" width="300" height="60" as="geometry"/>
15
18
  </mxCell>
16
- <mxCell id="0gF-5" value="line connectors should not effect the grid positioning systems" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_0gF">
19
+ <mxCell id="ZAl-6" value="line connector aliases gives a simple way to use predefined line configurations" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
17
20
  <mxGeometry x="10" y="90" width="300" height="60" as="geometry"/>
18
21
  </mxCell>
19
- <mxCell id="0gF-6" value="improve coverage" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_0gF">
22
+ <mxCell id="ZAl-7" value="line connectors need to support autolinking using ids" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
20
23
  <mxGeometry x="330" y="90" width="300" height="60" as="geometry"/>
21
24
  </mxCell>
22
- <mxCell id="0gF-7" value="class html builder to support include/extend modules, class methods" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_0gF">
25
+ <mxCell id="ZAl-8" value="line connectors should not effect the grid positioning systems" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
23
26
  <mxGeometry x="650" y="90" width="300" height="60" as="geometry"/>
24
27
  </mxCell>
28
+ <mxCell id="ZAl-9" value="headings do not appear to be working?" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
29
+ <mxGeometry x="10" y="170" width="300" height="60" as="geometry"/>
30
+ </mxCell>
31
+ <mxCell id="ZAl-10" value="improve coverage" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
32
+ <mxGeometry x="330" y="170" width="300" height="60" as="geometry"/>
33
+ </mxCell>
34
+ <mxCell id="ZAl-11" value="class html builder to support include/extend modules, class methods" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_ZAl">
35
+ <mxGeometry x="650" y="170" width="300" height="60" as="geometry"/>
36
+ </mxCell>
25
37
  </root>
26
38
  </mxGraphModel>
27
39
  </diagram>
28
- <diagram id="EE9" name="To Do">
40
+ <diagram id="ez0" name="To Do">
29
41
  <mxGraphModel dx="0" dy="0" background="#FFFACD" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
30
42
  <root>
31
- <mxCell id="page_root_EE9" parent="EE9"/>
32
- <mxCell id="node_root_EE9" parent="page_root_EE9"/>
33
- <mxCell id="EE9-2" value="refactor HTML builder to custom GEM or use existing ruby GEM" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
43
+ <mxCell id="page_root_ez0" parent="ez0"/>
44
+ <mxCell id="node_root_ez0" parent="page_root_ez0"/>
45
+ <mxCell id="ez0-2" value="refactor HTML builder to custom GEM or use existing ruby GEM" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
34
46
  <mxGeometry x="10" y="10" width="300" height="60" as="geometry"/>
35
47
  </mxCell>
36
- <mxCell id="EE9-3" value="add page background to theme, use it whenever the theme is set at a diagram/page level" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
48
+ <mxCell id="ez0-3" value="add page background to theme, use it whenever the theme is set at a diagram/page level" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
37
49
  <mxGeometry x="330" y="10" width="300" height="60" as="geometry"/>
38
50
  </mxCell>
39
- <mxCell id="EE9-4" value="move DrawioDsl::Formatters::Factory::FORMATTERS to resource file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
51
+ <mxCell id="ez0-4" value="move DrawioDsl::Formatters::Factory::FORMATTERS to resource file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
40
52
  <mxGeometry x="650" y="10" width="300" height="60" as="geometry"/>
41
53
  </mxCell>
42
- <mxCell id="EE9-5" value="move DrawioDsl::Formatters::StyleBuilder::MAPPINGS to resource file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
54
+ <mxCell id="ez0-5" value="move DrawioDsl::Formatters::StyleBuilder::MAPPINGS to resource file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
43
55
  <mxGeometry x="10" y="90" width="300" height="60" as="geometry"/>
44
56
  </mxCell>
45
- <mxCell id="EE9-6" value="settings style attributes need to de-duplicate, might be best to utilize the new StyleBuilder class" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
57
+ <mxCell id="ez0-6" value="settings style attributes need to de-duplicate, might be best to utilize the new StyleBuilder class" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
46
58
  <mxGeometry x="330" y="90" width="300" height="60" as="geometry"/>
47
59
  </mxCell>
48
- <mxCell id="EE9-7" value="write SVG directly into other projects" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
60
+ <mxCell id="ez0-7" value="write SVG directly into other projects" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
49
61
  <mxGeometry x="650" y="90" width="300" height="60" as="geometry"/>
50
62
  </mxCell>
51
- <mxCell id="EE9-8" value="add :shape, :line and :text to random shape generator, note: you can see the issue in the samples/20-styled-shapes.rb where the text is not rendered" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
63
+ <mxCell id="ez0-8" value="Nodes need to support child nodes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
52
64
  <mxGeometry x="10" y="170" width="300" height="60" as="geometry"/>
53
65
  </mxCell>
54
- <mxCell id="EE9-9" value="Nodes need to support child nodes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
66
+ <mxCell id="ez0-9" value="Grid layout does not position itself in relation to the last element" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
55
67
  <mxGeometry x="330" y="170" width="300" height="60" as="geometry"/>
56
68
  </mxCell>
57
- <mxCell id="EE9-10" value="Grid layout does not position itself in relation to the last element" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
69
+ <mxCell id="ez0-10" value="Dynamic sized shapes that expand to the size of their text" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
58
70
  <mxGeometry x="650" y="170" width="300" height="60" as="geometry"/>
59
71
  </mxCell>
60
- <mxCell id="EE9-11" value="Dynamic sized shapes that expand to the size of their text" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
72
+ <mxCell id="ez0-11" value="Control of text padding left, right, top and bottom" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
61
73
  <mxGeometry x="10" y="250" width="300" height="60" as="geometry"/>
62
74
  </mxCell>
63
- <mxCell id="EE9-12" value="Control of text padding left, right, top and bottom" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
75
+ <mxCell id="ez0-12" value="Improve the theme control over text-only shapes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
64
76
  <mxGeometry x="330" y="250" width="300" height="60" as="geometry"/>
65
77
  </mxCell>
66
- <mxCell id="EE9-13" value="Improve the theme control over text-only shapes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
78
+ <mxCell id="ez0-13" value="x,y settings do not work for shapes within a grid layout" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
67
79
  <mxGeometry x="650" y="250" width="300" height="60" as="geometry"/>
68
80
  </mxCell>
69
- <mxCell id="EE9-14" value="x,y settings do not work for shapes within a grid layout" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
81
+ <mxCell id="ez0-14" value="page layout so that you drop elements on and they are positioned correctly, e.g centered, left, right, etc, maybe a grid layout with a wrap of 1 and a width of the page is sufficient" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_ez0">
70
82
  <mxGeometry x="10" y="330" width="300" height="60" as="geometry"/>
71
83
  </mxCell>
72
- <mxCell id="EE9-15" value="page layout so that you drop elements on and they are positioned correctly, e.g centered, left, right, etc, maybe a grid layout with a wrap of 1 and a width of the page is sufficient" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_EE9">
73
- <mxGeometry x="330" y="330" width="300" height="60" as="geometry"/>
74
- </mxCell>
75
84
  </root>
76
85
  </mxGraphModel>
77
86
  </diagram>
78
- <diagram id="Mh9" name="Done">
87
+ <diagram id="VR9" name="Done">
79
88
  <mxGraphModel dx="0" dy="0" background="#FFFACD" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
80
89
  <root>
81
- <mxCell id="page_root_Mh9" parent="Mh9"/>
82
- <mxCell id="node_root_Mh9" parent="page_root_Mh9"/>
83
- <mxCell id="Mh9-2" value="configuration for line strokes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
90
+ <mxCell id="page_root_VR9" parent="VR9"/>
91
+ <mxCell id="node_root_VR9" parent="page_root_VR9"/>
92
+ <mxCell id="VR9-2" value="refactor shapes configuration so that it reads from custom file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
84
93
  <mxGeometry x="10" y="10" width="300" height="60" as="geometry"/>
85
94
  </mxCell>
86
- <mxCell id="Mh9-3" value="configuration for connector compass direction" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
95
+ <mxCell id="VR9-3" value="fix :text" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
87
96
  <mxGeometry x="330" y="10" width="300" height="60" as="geometry"/>
88
97
  </mxCell>
89
- <mxCell id="Mh9-4" value="configuration for connector design" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
98
+ <mxCell id="VR9-4" value="configuration for lines" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
90
99
  <mxGeometry x="650" y="10" width="300" height="60" as="geometry"/>
91
100
  </mxCell>
92
- <mxCell id="Mh9-5" value="configuration for connector arrows" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
101
+ <mxCell id="VR9-5" value="configuration for text" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
93
102
  <mxGeometry x="10" y="90" width="300" height="60" as="geometry"/>
94
103
  </mxCell>
95
- <mxCell id="Mh9-6" value="configuration for connector waypoints" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
104
+ <mxCell id="VR9-6" value="configuration for elements" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
96
105
  <mxGeometry x="330" y="90" width="300" height="60" as="geometry"/>
97
106
  </mxCell>
98
- <mxCell id="Mh9-7" value="export_json will output a diagram in machine readable format" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
107
+ <mxCell id="VR9-7" value="configuration for line strokes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
99
108
  <mxGeometry x="650" y="90" width="300" height="60" as="geometry"/>
100
109
  </mxCell>
101
- <mxCell id="Mh9-8" value="class html formatter to support regular html nodes such as p, h1.. ul, li that are found on the builder" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
110
+ <mxCell id="VR9-8" value="configuration for connector compass direction" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
102
111
  <mxGeometry x="10" y="170" width="300" height="60" as="geometry"/>
103
112
  </mxCell>
104
- <mxCell id="Mh9-9" value="group box, like a regular box but with a top aligned h1 style title" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
113
+ <mxCell id="VR9-9" value="configuration for connector design" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
105
114
  <mxGeometry x="330" y="170" width="300" height="60" as="geometry"/>
106
115
  </mxCell>
107
- <mxCell id="Mh9-10" value="build a domain (class) diagram" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
116
+ <mxCell id="VR9-10" value="configuration for connector arrows" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
108
117
  <mxGeometry x="650" y="170" width="300" height="60" as="geometry"/>
109
118
  </mxCell>
110
- <mxCell id="Mh9-11" value="build configuration for line strokes %i[dashed dotted dashdot dashdotdot dotdotdot longdash)" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
119
+ <mxCell id="VR9-11" value="configuration for connector waypoints" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
111
120
  <mxGeometry x="10" y="250" width="300" height="60" as="geometry"/>
112
121
  </mxCell>
113
- <mxCell id="Mh9-12" value="build configuration for line compass %i[n ne e se s sw w nw]" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
122
+ <mxCell id="VR9-12" value="export_json will output a diagram in machine readable format" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
114
123
  <mxGeometry x="330" y="250" width="300" height="60" as="geometry"/>
115
124
  </mxCell>
116
- <mxCell id="Mh9-13" value="build configuration for line shape %i[style1 style2 style3 style4]" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
125
+ <mxCell id="VR9-13" value="class html formatter to support regular html nodes such as p, h1.. ul, li that are found on the builder" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
117
126
  <mxGeometry x="650" y="250" width="300" height="60" as="geometry"/>
118
127
  </mxCell>
119
- <mxCell id="Mh9-14" value="build configuration for arrows %i[straight triangle diamond circle cross short default none plain skewed_dash concave er_many er_one er_one_optional er_one_mandatory er_many_optional er_many_mandatory]" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
128
+ <mxCell id="VR9-14" value="group box, like a regular box but with a top aligned h1 style title" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
120
129
  <mxGeometry x="10" y="330" width="300" height="60" as="geometry"/>
121
130
  </mxCell>
122
- <mxCell id="Mh9-15" value="refactor the shape-&gt;text_only (boolean) to category (symbol)" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
131
+ <mxCell id="VR9-15" value="build a domain (class) diagram" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
123
132
  <mxGeometry x="330" y="330" width="300" height="60" as="geometry"/>
124
133
  </mxCell>
125
- <mxCell id="Mh9-16" value="ensure that ids are working as expected" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
134
+ <mxCell id="VR9-16" value="build configuration for line strokes %i[dashed dotted dashdot dashdotdot dotdotdot longdash)" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
126
135
  <mxGeometry x="650" y="330" width="300" height="60" as="geometry"/>
127
136
  </mxCell>
128
- <mxCell id="Mh9-17" value="alter the initial parameter of all shapes so that it can be an ID, without named attribute" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
137
+ <mxCell id="VR9-17" value="build configuration for line compass %i[n ne e se s sw w nw]" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
129
138
  <mxGeometry x="10" y="410" width="300" height="60" as="geometry"/>
130
139
  </mxCell>
131
- <mxCell id="Mh9-18" value="move project-plan files" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
140
+ <mxCell id="VR9-18" value="build configuration for line shape %i[style1 style2 style3 style4]" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
132
141
  <mxGeometry x="330" y="410" width="300" height="60" as="geometry"/>
133
142
  </mxCell>
134
- <mxCell id="Mh9-19" value="alter configure_shape so it sets the default shape key and use that for selecting the default HTML formatter" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
143
+ <mxCell id="VR9-19" value="build configuration for arrows %i[straight triangle diamond circle cross short default none plain skewed_dash concave er_many er_one er_one_optional er_one_mandatory er_many_optional er_many_mandatory]" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
135
144
  <mxGeometry x="650" y="410" width="300" height="60" as="geometry"/>
136
145
  </mxCell>
137
- <mxCell id="Mh9-20" value="add todo shape to simplify project plan drawing" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
146
+ <mxCell id="VR9-20" value="refactor the shape-&gt;text_only (boolean) to category (symbol)" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
138
147
  <mxGeometry x="10" y="490" width="300" height="60" as="geometry"/>
139
148
  </mxCell>
140
- <mxCell id="Mh9-21" value="introduce .value property to shape and let it use either formatted HTML or plain text title" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
149
+ <mxCell id="VR9-21" value="ensure that ids are working as expected" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
141
150
  <mxGeometry x="330" y="490" width="300" height="60" as="geometry"/>
142
151
  </mxCell>
143
- <mxCell id="Mh9-22" value="formatter DSL that can render HTML directly into the value property" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
152
+ <mxCell id="VR9-22" value="alter the initial parameter of all shapes so that it can be an ID, without named attribute" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
144
153
  <mxGeometry x="650" y="490" width="300" height="60" as="geometry"/>
145
154
  </mxCell>
146
- <mxCell id="Mh9-23" value="formatter DSL for class and interface generation" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
155
+ <mxCell id="VR9-23" value="move project-plan files" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
147
156
  <mxGeometry x="10" y="570" width="300" height="60" as="geometry"/>
148
157
  </mxCell>
149
- <mxCell id="Mh9-24" value="generate extension based graphics based on drawio extensions.js" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
158
+ <mxCell id="VR9-24" value="alter configure_shape so it sets the default shape key and use that for selecting the default HTML formatter" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
150
159
  <mxGeometry x="330" y="570" width="300" height="60" as="geometry"/>
151
160
  </mxCell>
152
- <mxCell id="Mh9-25" value="active? flag on page defaulting to true. set to false to exclude page from diagram." style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
161
+ <mxCell id="VR9-25" value="add todo shape to simplify project plan drawing" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
153
162
  <mxGeometry x="650" y="570" width="300" height="60" as="geometry"/>
154
163
  </mxCell>
155
- <mxCell id="Mh9-26" value="first level child nodes need to hang of node 1" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
164
+ <mxCell id="VR9-26" value="introduce .value property to shape and let it use either formatted HTML or plain text title" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
156
165
  <mxGeometry x="10" y="650" width="300" height="60" as="geometry"/>
157
166
  </mxCell>
158
- <mxCell id="Mh9-27" value="node has child nodes and add_node will set a nodes parent" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
167
+ <mxCell id="VR9-27" value="formatter DSL that can render HTML directly into the value property" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
159
168
  <mxGeometry x="330" y="650" width="300" height="60" as="geometry"/>
160
169
  </mxCell>
161
- <mxCell id="Mh9-28" value="nodes can belong to a parent node, the top level node responds with truthy to root?" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
170
+ <mxCell id="VR9-28" value="formatter DSL for class and interface generation" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
162
171
  <mxGeometry x="650" y="650" width="300" height="60" as="geometry"/>
163
172
  </mxCell>
164
- <mxCell id="Mh9-29" value="add sample diagram for the github readme file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
173
+ <mxCell id="VR9-29" value="generate extension based graphics based on drawio extensions.js" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
165
174
  <mxGeometry x="10" y="730" width="300" height="60" as="geometry"/>
166
175
  </mxCell>
167
- <mxCell id="Mh9-30" value="write samples into docs folder and display in readme" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
176
+ <mxCell id="VR9-30" value="active? flag on page defaulting to true. set to false to exclude page from diagram." style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
168
177
  <mxGeometry x="330" y="730" width="300" height="60" as="geometry"/>
169
178
  </mxCell>
170
- <mxCell id="Mh9-31" value="add export as .PNG, needs to take a page number as the PNG will not support multiple pages" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
179
+ <mxCell id="VR9-31" value="first level child nodes need to hang of node 1" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
171
180
  <mxGeometry x="650" y="730" width="300" height="60" as="geometry"/>
172
181
  </mxCell>
173
- <mxCell id="Mh9-32" value="add export as .SVG, needs to take a page number as the SVG will not support multiple pages" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
182
+ <mxCell id="VR9-32" value="node has child nodes and add_node will set a nodes parent" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
174
183
  <mxGeometry x="10" y="810" width="300" height="60" as="geometry"/>
175
184
  </mxCell>
176
- <mxCell id="Mh9-33" value="add save as .drawio" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Mh9">
185
+ <mxCell id="VR9-33" value="nodes can belong to a parent node, the top level node responds with truthy to root?" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
177
186
  <mxGeometry x="330" y="810" width="300" height="60" as="geometry"/>
178
187
  </mxCell>
188
+ <mxCell id="VR9-34" value="add sample diagram for the github readme file" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
189
+ <mxGeometry x="650" y="810" width="300" height="60" as="geometry"/>
190
+ </mxCell>
191
+ <mxCell id="VR9-35" value="write samples into docs folder and display in readme" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
192
+ <mxGeometry x="10" y="890" width="300" height="60" as="geometry"/>
193
+ </mxCell>
194
+ <mxCell id="VR9-36" value="add export as .PNG, needs to take a page number as the PNG will not support multiple pages" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
195
+ <mxGeometry x="330" y="890" width="300" height="60" as="geometry"/>
196
+ </mxCell>
197
+ <mxCell id="VR9-37" value="add export as .SVG, needs to take a page number as the SVG will not support multiple pages" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
198
+ <mxGeometry x="650" y="890" width="300" height="60" as="geometry"/>
199
+ </mxCell>
200
+ <mxCell id="VR9-38" value="add save as .drawio" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_VR9">
201
+ <mxGeometry x="10" y="970" width="300" height="60" as="geometry"/>
202
+ </mxCell>
179
203
  </root>
180
204
  </mxGraphModel>
181
205
  </diagram>