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.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -0
- data/CHANGELOG.md +21 -0
- data/config/configuration.json +8 -8
- data/docs/domain-modal/domain_model_custom.drawio +2 -2
- data/docs/printspeak-architecture-controllers-custom.drawio +93 -0
- data/docs/printspeak-architecture-controllers-fat.svg +1 -0
- data/docs/printspeak-architecture-controllers-thin.svg +1 -0
- data/docs/printspeak-architecture-controllers.drawio +48 -0
- data/docs/printspeak-architecture-generator.drawio +106 -42
- data/docs/printspeak-architecture-generator.svg +1 -1
- data/docs/project-plan/project.drawio +88 -64
- data/docs/project-plan/project_done.svg +1 -1
- data/docs/project-plan/project_in_progress.svg +1 -1
- data/docs/project-plan/project_todo.svg +1 -1
- data/docs/samples/grid-direction-horizontal.svg +1 -1
- data/docs/samples/grid-direction-vertical.svg +1 -1
- data/lib/drawio_dsl/configuration.rb +81 -0
- data/lib/drawio_dsl/configuration_shapes.rb +2 -2
- data/lib/drawio_dsl/configuration_themes.rb +44 -44
- data/lib/drawio_dsl/dom_builder_shapes.rb +3 -3
- data/lib/drawio_dsl/drawio_shapes.rb +3 -3
- data/lib/drawio_dsl/schema/_.rb +55 -45
- data/lib/drawio_dsl/schema/diagram.rb +1 -1
- data/lib/drawio_dsl/schema/element.rb +23 -0
- data/lib/drawio_dsl/schema/{shapes/face.rb → elements/actor.rb} +2 -2
- data/lib/drawio_dsl/schema/{shapes/actor.rb → elements/actor2.rb} +2 -2
- data/lib/drawio_dsl/schema/{shapes/circle.rb → elements/callout.rb} +2 -2
- data/lib/drawio_dsl/schema/{shapes/callout.rb → elements/callout2.rb} +2 -2
- data/lib/drawio_dsl/schema/elements/callout3.rb +9 -0
- data/lib/drawio_dsl/schema/elements/callout4.rb +9 -0
- data/lib/drawio_dsl/schema/{shapes/cross.rb → elements/circle.rb} +2 -2
- data/lib/drawio_dsl/schema/elements/cloud.rb +9 -0
- data/lib/drawio_dsl/schema/elements/container.rb +9 -0
- data/lib/drawio_dsl/schema/elements/container2.rb +9 -0
- data/lib/drawio_dsl/schema/elements/container3.rb +9 -0
- data/lib/drawio_dsl/schema/elements/container4.rb +9 -0
- data/lib/drawio_dsl/schema/elements/cross.rb +9 -0
- data/lib/drawio_dsl/schema/elements/database.rb +9 -0
- data/lib/drawio_dsl/schema/{shapes/actor2.rb → elements/db_json.rb} +2 -2
- data/lib/drawio_dsl/schema/elements/diamond.rb +9 -0
- data/lib/drawio_dsl/schema/elements/document.rb +9 -0
- data/lib/drawio_dsl/schema/elements/ellipse.rb +9 -0
- data/lib/drawio_dsl/schema/elements/embed_col200.rb +9 -0
- data/lib/drawio_dsl/schema/elements/embed_col50.rb +9 -0
- data/lib/drawio_dsl/schema/{shapes/callout2.rb → elements/embed_row.rb} +2 -2
- data/lib/drawio_dsl/schema/elements/envelop.rb +9 -0
- data/lib/drawio_dsl/schema/elements/face.rb +9 -0
- data/lib/drawio_dsl/schema/elements/group.rb +9 -0
- data/lib/drawio_dsl/schema/elements/hexagon.rb +9 -0
- data/lib/drawio_dsl/schema/elements/interface.rb +9 -0
- data/lib/drawio_dsl/schema/elements/klass.rb +9 -0
- data/lib/drawio_dsl/schema/elements/note.rb +9 -0
- data/lib/drawio_dsl/schema/elements/process.rb +9 -0
- data/lib/drawio_dsl/schema/elements/rectangle.rb +9 -0
- data/lib/drawio_dsl/schema/elements/rectangle2.rb +9 -0
- data/lib/drawio_dsl/schema/{shapes/cloud.rb → elements/square.rb} +2 -2
- data/lib/drawio_dsl/schema/elements/step.rb +9 -0
- data/lib/drawio_dsl/schema/elements/tick.rb +9 -0
- data/lib/drawio_dsl/schema/elements/todo.rb +9 -0
- data/lib/drawio_dsl/schema/elements/triangle.rb +9 -0
- data/lib/drawio_dsl/schema/line.rb +24 -0
- data/lib/drawio_dsl/schema/lines/solid.rb +9 -0
- data/lib/drawio_dsl/schema/page.rb +8 -6
- data/lib/drawio_dsl/schema/{shapes/shape.rb → shape.rb} +14 -22
- data/lib/drawio_dsl/schema/text.rb +23 -0
- data/lib/drawio_dsl/schema/{shapes → texts}/h1.rb +2 -2
- data/lib/drawio_dsl/schema/{shapes → texts}/h2.rb +2 -2
- data/lib/drawio_dsl/schema/{shapes → texts}/h3.rb +2 -2
- data/lib/drawio_dsl/schema/{shapes → texts}/h4.rb +2 -2
- data/lib/drawio_dsl/schema/{shapes → texts}/h5.rb +2 -2
- data/lib/drawio_dsl/schema/{shapes → texts}/h6.rb +2 -2
- data/lib/drawio_dsl/schema/{shapes → texts}/p.rb +2 -2
- data/lib/drawio_dsl/version.rb +1 -1
- data/lib/drawio_dsl.rb +7 -9
- data/package-lock.json +2 -2
- data/package.json +1 -1
- metadata +54 -47
- data/lib/drawio_dsl/schema/shapes/callout3.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/callout4.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/container.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/container2.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/container3.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/container4.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/database.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/db_json.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/diamond.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/document.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/ellipse.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/embed_col200.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/embed_col50.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/embed_row.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/envelop.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/group.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/hexagon.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/interface.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/klass.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/line.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/note.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/process.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/rectangle.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/rectangle2.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/square.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/step.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/tick.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/todo.rb +0 -9
- data/lib/drawio_dsl/schema/shapes/triangle.rb +0 -9
@@ -1,181 +1,205 @@
|
|
1
|
-
<mxfile host="
|
2
|
-
<diagram id="
|
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="
|
6
|
-
<mxCell id="
|
7
|
-
<mxCell id="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
32
|
-
<mxCell id="
|
33
|
-
<mxCell id="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
82
|
-
<mxCell id="
|
83
|
-
<mxCell id="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
146
|
+
<mxCell id="VR9-20" value="refactor the shape->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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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>
|