drawio_dsl 0.11.5 → 0.11.6
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 +3 -0
- data/CHANGELOG.md +8 -0
- data/config/configuration.json +2 -2
- data/docs/project-plan/project.drawio +92 -95
- data/docs/project-plan/project_done.svg +1 -1
- data/docs/project-plan/project_in_progress.svg +1 -1
- data/docs/samples/grid-alignment.svg +1 -1
- data/docs/samples/styles-sketch.svg +1 -1
- data/docs/samples/themes-random.svg +1 -1
- data/lib/drawio_dsl/schema/_.rb +1 -0
- data/lib/drawio_dsl/schema/diagram.rb +2 -3
- data/lib/drawio_dsl/schema/line.rb +9 -18
- data/lib/drawio_dsl/schema/shape.rb +37 -18
- data/lib/drawio_dsl/schema/style_builder.rb +82 -0
- data/lib/drawio_dsl/version.rb +1 -1
- data/package-lock.json +2 -2
- data/package.json +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c799e3dfe3dbb68930216004ff6b873d2d7f7ff397e6c556844460d6be6e8833
|
|
4
|
+
data.tar.gz: 581dbd1f109f572d79fe35bc3c6b2139456fe52ea1c58c709877c3f1af64c4c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc8dcdbf9ab80ffe7ca98caf022ee208adade4e0de4af69b8125868082fbac835500ebf50ec4b9be314c592bbad0c5558b5cbd12369b8a566bf638980ca85f46
|
|
7
|
+
data.tar.gz: 293de738a4116daea9eac13b3b238c79f1134d32eb0101c1db09e80aa63a59db9b44cbb53c451ab0fae5b12390028b2fbe473df087d84ff85fd6fdc7eda106f0
|
data/.rubocop.yml
CHANGED
|
@@ -70,9 +70,11 @@ Metrics/AbcSize:
|
|
|
70
70
|
- "lib/drawio_dsl/configuration.rb"
|
|
71
71
|
- "lib/drawio_dsl/configuration_shapes.rb"
|
|
72
72
|
- "lib/drawio_dsl/configuration_themes.rb"
|
|
73
|
+
- "lib/drawio_dsl/schema/line.rb"
|
|
73
74
|
Metrics/CyclomaticComplexity:
|
|
74
75
|
Exclude:
|
|
75
76
|
- "lib/drawio_dsl/drawio_shapes.rb"
|
|
77
|
+
- "lib/drawio_dsl/schema/line.rb"
|
|
76
78
|
Metrics/MethodLength:
|
|
77
79
|
Max: 25
|
|
78
80
|
Exclude:
|
|
@@ -84,6 +86,7 @@ Metrics/MethodLength:
|
|
|
84
86
|
Metrics/PerceivedComplexity:
|
|
85
87
|
Exclude:
|
|
86
88
|
- "lib/drawio_dsl/drawio_shapes.rb"
|
|
89
|
+
- "lib/drawio_dsl/schema/line.rb"
|
|
87
90
|
Naming/MemoizedInstanceVariableName:
|
|
88
91
|
Enabled: false
|
|
89
92
|
Naming/AccessorMethodName:
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [0.11.5](https://github.com/klueless-io/drawio_dsl/compare/v0.11.4...v0.11.5) (2022-03-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add support for :arrow to line ([5511b1a](https://github.com/klueless-io/drawio_dsl/commit/5511b1a56f444b1cac58c11670cdf1ee2e67e0d1))
|
|
7
|
+
* add support for :exit, :entry to line ([3381ff4](https://github.com/klueless-io/drawio_dsl/commit/3381ff45c0e8b4c3458f2c40d7e34f5c7a074800))
|
|
8
|
+
|
|
1
9
|
## [0.11.4](https://github.com/klueless-io/drawio_dsl/compare/v0.11.3...v0.11.4) (2022-03-28)
|
|
2
10
|
|
|
3
11
|
|
data/config/configuration.json
CHANGED
|
@@ -2009,13 +2009,13 @@
|
|
|
2009
2009
|
"favourite": 1,
|
|
2010
2010
|
"key": "pale_gray",
|
|
2011
2011
|
"bg_color": "#FAFAFA",
|
|
2012
|
-
"font_color": "#
|
|
2012
|
+
"font_color": "#1F2D3D"
|
|
2013
2013
|
},
|
|
2014
2014
|
{
|
|
2015
2015
|
"favourite": 0,
|
|
2016
2016
|
"key": "pale_grey",
|
|
2017
2017
|
"bg_color": "#FAFAFA",
|
|
2018
|
-
"font_color": "#
|
|
2018
|
+
"font_color": "#1F2D3D"
|
|
2019
2019
|
},
|
|
2020
2020
|
{
|
|
2021
2021
|
"favourite": 0,
|
|
@@ -1,262 +1,259 @@
|
|
|
1
|
-
<mxfile host="
|
|
2
|
-
<diagram id="
|
|
1
|
+
<mxfile host="5xV">
|
|
2
|
+
<diagram id="7Ft" name="In progress">
|
|
3
3
|
<mxGraphModel dx="0" dy="0" background="#000000" 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_7Ft" parent="7Ft"/>
|
|
6
|
+
<mxCell id="node_root_7Ft" parent="page_root_7Ft"/>
|
|
7
|
+
<mxCell id="7Ft-1" value="DrawIO DSL" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fontColor=#FFFFFF;text;fontSize=28;fontStyle=1;fillColor=none" vertex="1" parent="node_root_7Ft">
|
|
8
8
|
<mxGeometry x="300" y="0" width="400" height="80" as="geometry"/>
|
|
9
9
|
</mxCell>
|
|
10
|
-
<mxCell id="
|
|
10
|
+
<mxCell id="7Ft-3" 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=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_7Ft">
|
|
11
11
|
<mxGeometry x="10" y="10" width="300" height="60" as="geometry"/>
|
|
12
12
|
</mxCell>
|
|
13
|
-
<mxCell id="
|
|
13
|
+
<mxCell id="7Ft-4" value="add help messages when invalid lookups are used for stroke, design etc." style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_7Ft">
|
|
14
14
|
<mxGeometry x="330" y="10" width="300" height="60" as="geometry"/>
|
|
15
15
|
</mxCell>
|
|
16
|
-
<mxCell id="
|
|
16
|
+
<mxCell id="7Ft-5" 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_7Ft">
|
|
17
17
|
<mxGeometry x="650" y="10" width="300" height="60" as="geometry"/>
|
|
18
18
|
</mxCell>
|
|
19
|
-
<mxCell id="
|
|
19
|
+
<mxCell id="7Ft-6" 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_7Ft">
|
|
20
20
|
<mxGeometry x="10" y="90" width="300" height="60" as="geometry"/>
|
|
21
21
|
</mxCell>
|
|
22
|
-
<mxCell id="
|
|
22
|
+
<mxCell id="7Ft-7" 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_7Ft">
|
|
23
23
|
<mxGeometry x="330" y="90" width="300" height="60" as="geometry"/>
|
|
24
24
|
</mxCell>
|
|
25
|
-
<mxCell id="
|
|
25
|
+
<mxCell id="7Ft-8" value="new format for connectors - connect(:a, :b, :solid)" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_7Ft">
|
|
26
26
|
<mxGeometry x="650" y="90" width="300" height="60" as="geometry"/>
|
|
27
27
|
</mxCell>
|
|
28
|
-
<mxCell id="
|
|
28
|
+
<mxCell id="7Ft-9" value="bg_theme does not work OR at least make it better (see willoughby example)" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_7Ft">
|
|
29
29
|
<mxGeometry x="10" y="170" width="300" height="60" as="geometry"/>
|
|
30
30
|
</mxCell>
|
|
31
|
-
<mxCell id="
|
|
31
|
+
<mxCell id="7Ft-10" value="improve coverage" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_7Ft">
|
|
32
32
|
<mxGeometry x="330" y="170" width="300" height="60" as="geometry"/>
|
|
33
33
|
</mxCell>
|
|
34
|
-
<mxCell id="
|
|
34
|
+
<mxCell id="7Ft-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_7Ft">
|
|
35
35
|
<mxGeometry x="650" y="170" width="300" height="60" as="geometry"/>
|
|
36
36
|
</mxCell>
|
|
37
|
-
<mxCell id="Xrd-12" value="bg_theme does not work" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_Xrd">
|
|
38
|
-
<mxGeometry x="10" y="250" width="300" height="60" as="geometry"/>
|
|
39
|
-
</mxCell>
|
|
40
|
-
<mxCell id="Xrd-13" value="improve coverage" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#d5e8d4;strokeColor=#82b366;fontColor=#333333" vertex="1" parent="node_root_Xrd">
|
|
41
|
-
<mxGeometry x="330" y="250" width="300" height="60" as="geometry"/>
|
|
42
|
-
</mxCell>
|
|
43
|
-
<mxCell id="Xrd-14" 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_Xrd">
|
|
44
|
-
<mxGeometry x="650" y="250" width="300" height="60" as="geometry"/>
|
|
45
|
-
</mxCell>
|
|
46
37
|
</root>
|
|
47
38
|
</mxGraphModel>
|
|
48
39
|
</diagram>
|
|
49
|
-
<diagram id="
|
|
40
|
+
<diagram id="iU3" name="To Do">
|
|
50
41
|
<mxGraphModel dx="0" dy="0" background="#000000" 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">
|
|
51
42
|
<root>
|
|
52
|
-
<mxCell id="
|
|
53
|
-
<mxCell id="
|
|
54
|
-
<mxCell id="
|
|
43
|
+
<mxCell id="page_root_iU3" parent="iU3"/>
|
|
44
|
+
<mxCell id="node_root_iU3" parent="page_root_iU3"/>
|
|
45
|
+
<mxCell id="iU3-2" value="add active flag to shapes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_iU3">
|
|
55
46
|
<mxGeometry x="10" y="10" width="300" height="60" as="geometry"/>
|
|
56
47
|
</mxCell>
|
|
57
|
-
<mxCell id="
|
|
48
|
+
<mxCell id="iU3-3" value="rename entry/exit compass point to start/end point to be consistent with the arrows" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_iU3">
|
|
58
49
|
<mxGeometry x="330" y="10" width="300" height="60" as="geometry"/>
|
|
59
50
|
</mxCell>
|
|
60
|
-
<mxCell id="
|
|
51
|
+
<mxCell id="iU3-4" value="does x, y, w, h need to be on lines (yes for connectors, but other lines?)" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_iU3">
|
|
61
52
|
<mxGeometry x="650" y="10" width="300" height="60" as="geometry"/>
|
|
62
53
|
</mxCell>
|
|
63
|
-
<mxCell id="
|
|
54
|
+
<mxCell id="iU3-5" value="update domain model with all the recent architecture changes" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_iU3">
|
|
64
55
|
<mxGeometry x="10" y="90" width="300" height="60" as="geometry"/>
|
|
65
56
|
</mxCell>
|
|
66
|
-
<mxCell id="
|
|
57
|
+
<mxCell id="iU3-6" value="replace generated methods for shapes, texts and lines with meta programming" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_iU3">
|
|
67
58
|
<mxGeometry x="330" y="90" width="300" height="60" as="geometry"/>
|
|
68
59
|
</mxCell>
|
|
69
|
-
<mxCell id="
|
|
60
|
+
<mxCell id="iU3-7" 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_iU3">
|
|
70
61
|
<mxGeometry x="650" y="90" width="300" height="60" as="geometry"/>
|
|
71
62
|
</mxCell>
|
|
72
|
-
<mxCell id="
|
|
63
|
+
<mxCell id="iU3-8" 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_iU3">
|
|
73
64
|
<mxGeometry x="10" y="170" width="300" height="60" as="geometry"/>
|
|
74
65
|
</mxCell>
|
|
75
|
-
<mxCell id="
|
|
66
|
+
<mxCell id="iU3-9" 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_iU3">
|
|
76
67
|
<mxGeometry x="330" y="170" width="300" height="60" as="geometry"/>
|
|
77
68
|
</mxCell>
|
|
78
|
-
<mxCell id="
|
|
69
|
+
<mxCell id="iU3-10" 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_iU3">
|
|
79
70
|
<mxGeometry x="650" y="170" width="300" height="60" as="geometry"/>
|
|
80
71
|
</mxCell>
|
|
81
|
-
<mxCell id="
|
|
72
|
+
<mxCell id="iU3-11" 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_iU3">
|
|
82
73
|
<mxGeometry x="10" y="250" width="300" height="60" as="geometry"/>
|
|
83
74
|
</mxCell>
|
|
84
|
-
<mxCell id="
|
|
75
|
+
<mxCell id="iU3-12" value="Nodes need to support child nodes - aka namespaces, groupings" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_iU3">
|
|
85
76
|
<mxGeometry x="330" y="250" width="300" height="60" as="geometry"/>
|
|
86
77
|
</mxCell>
|
|
87
|
-
<mxCell id="
|
|
78
|
+
<mxCell id="iU3-13" 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_iU3">
|
|
88
79
|
<mxGeometry x="650" y="250" width="300" height="60" as="geometry"/>
|
|
89
80
|
</mxCell>
|
|
90
|
-
<mxCell id="
|
|
81
|
+
<mxCell id="iU3-14" value="Grid layout should not be affected by connector lines" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_iU3">
|
|
91
82
|
<mxGeometry x="10" y="330" width="300" height="60" as="geometry"/>
|
|
92
83
|
</mxCell>
|
|
93
|
-
<mxCell id="
|
|
84
|
+
<mxCell id="iU3-15" value="Grid layout should support flow break (break to next section if less then boundary)" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_iU3">
|
|
94
85
|
<mxGeometry x="330" y="330" width="300" height="60" as="geometry"/>
|
|
95
86
|
</mxCell>
|
|
96
|
-
<mxCell id="
|
|
87
|
+
<mxCell id="iU3-16" value="Grid layout should support hard break (break to next section)" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontColor=#333333" vertex="1" parent="node_root_iU3">
|
|
97
88
|
<mxGeometry x="650" y="330" width="300" height="60" as="geometry"/>
|
|
98
89
|
</mxCell>
|
|
99
|
-
<mxCell id="
|
|
90
|
+
<mxCell id="iU3-17" 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_iU3">
|
|
100
91
|
<mxGeometry x="10" y="410" width="300" height="60" as="geometry"/>
|
|
101
92
|
</mxCell>
|
|
102
|
-
<mxCell id="
|
|
93
|
+
<mxCell id="iU3-18" 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_iU3">
|
|
103
94
|
<mxGeometry x="330" y="410" width="300" height="60" as="geometry"/>
|
|
104
95
|
</mxCell>
|
|
105
|
-
<mxCell id="
|
|
96
|
+
<mxCell id="iU3-19" 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_iU3">
|
|
106
97
|
<mxGeometry x="650" y="410" width="300" height="60" as="geometry"/>
|
|
107
98
|
</mxCell>
|
|
108
|
-
<mxCell id="
|
|
99
|
+
<mxCell id="iU3-20" 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_iU3">
|
|
109
100
|
<mxGeometry x="10" y="490" width="300" height="60" as="geometry"/>
|
|
110
101
|
</mxCell>
|
|
111
|
-
<mxCell id="
|
|
102
|
+
<mxCell id="iU3-21" 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_iU3">
|
|
112
103
|
<mxGeometry x="330" y="490" width="300" height="60" as="geometry"/>
|
|
113
104
|
</mxCell>
|
|
114
105
|
</root>
|
|
115
106
|
</mxGraphModel>
|
|
116
107
|
</diagram>
|
|
117
|
-
<diagram id="
|
|
108
|
+
<diagram id="Jha" name="Done">
|
|
118
109
|
<mxGraphModel dx="0" dy="0" background="#000000" 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">
|
|
119
110
|
<root>
|
|
120
|
-
<mxCell id="
|
|
121
|
-
<mxCell id="
|
|
122
|
-
<mxCell id="
|
|
111
|
+
<mxCell id="page_root_Jha" parent="Jha"/>
|
|
112
|
+
<mxCell id="node_root_Jha" parent="page_root_Jha"/>
|
|
113
|
+
<mxCell id="Jha-2" value="add support for :design to line" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
123
114
|
<mxGeometry x="10" y="10" width="300" height="60" as="geometry"/>
|
|
124
115
|
</mxCell>
|
|
125
|
-
<mxCell id="
|
|
116
|
+
<mxCell id="Jha-3" value="add support for :arrow to line" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
126
117
|
<mxGeometry x="330" y="10" width="300" height="60" as="geometry"/>
|
|
127
118
|
</mxCell>
|
|
128
|
-
<mxCell id="
|
|
119
|
+
<mxCell id="Jha-4" value="add support for :waypoint to line" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
129
120
|
<mxGeometry x="650" y="10" width="300" height="60" as="geometry"/>
|
|
130
121
|
</mxCell>
|
|
131
|
-
<mxCell id="
|
|
122
|
+
<mxCell id="Jha-5" value="add support for :exit, :entry to line" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
132
123
|
<mxGeometry x="10" y="90" width="300" height="60" as="geometry"/>
|
|
133
124
|
</mxCell>
|
|
134
|
-
<mxCell id="
|
|
125
|
+
<mxCell id="Jha-6" value="add support for :design to line" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
135
126
|
<mxGeometry x="330" y="90" width="300" height="60" as="geometry"/>
|
|
136
127
|
</mxCell>
|
|
137
|
-
<mxCell id="
|
|
128
|
+
<mxCell id="Jha-7" value="refactor shapes to use configuration file and split into elements, lines and texts" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
138
129
|
<mxGeometry x="650" y="90" width="300" height="60" as="geometry"/>
|
|
139
130
|
</mxCell>
|
|
140
|
-
<mxCell id="
|
|
131
|
+
<mxCell id="Jha-8" value="add new shapes related to line connectors, plus add stroke: configuration" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
141
132
|
<mxGeometry x="10" y="170" width="300" height="60" as="geometry"/>
|
|
142
133
|
</mxCell>
|
|
143
|
-
<mxCell id="
|
|
134
|
+
<mxCell id="Jha-9" value="rename type to key" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
144
135
|
<mxGeometry x="330" y="170" width="300" height="60" as="geometry"/>
|
|
145
136
|
</mxCell>
|
|
146
|
-
<mxCell id="
|
|
137
|
+
<mxCell id="Jha-10" value="headings do not appear to be working?" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
147
138
|
<mxGeometry x="650" y="170" width="300" height="60" as="geometry"/>
|
|
148
139
|
</mxCell>
|
|
149
|
-
<mxCell id="
|
|
140
|
+
<mxCell id="Jha-11" value="add sample for backgrounds with text on top, add support for favourite backgrounds" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
150
141
|
<mxGeometry x="10" y="250" width="300" height="60" as="geometry"/>
|
|
151
142
|
</mxCell>
|
|
152
|
-
<mxCell id="
|
|
143
|
+
<mxCell id="Jha-12" value="add background themes, with foreground text color" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
153
144
|
<mxGeometry x="330" y="250" width="300" height="60" as="geometry"/>
|
|
154
145
|
</mxCell>
|
|
155
|
-
<mxCell id="
|
|
146
|
+
<mxCell id="Jha-13" 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_Jha">
|
|
156
147
|
<mxGeometry x="650" y="250" width="300" height="60" as="geometry"/>
|
|
157
148
|
</mxCell>
|
|
158
|
-
<mxCell id="
|
|
149
|
+
<mxCell id="Jha-14" value="fix :text" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
159
150
|
<mxGeometry x="10" y="330" width="300" height="60" as="geometry"/>
|
|
160
151
|
</mxCell>
|
|
161
|
-
<mxCell id="
|
|
152
|
+
<mxCell id="Jha-15" value="configuration for lines" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
162
153
|
<mxGeometry x="330" y="330" width="300" height="60" as="geometry"/>
|
|
163
154
|
</mxCell>
|
|
164
|
-
<mxCell id="
|
|
155
|
+
<mxCell id="Jha-16" value="configuration for text" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
165
156
|
<mxGeometry x="650" y="330" width="300" height="60" as="geometry"/>
|
|
166
157
|
</mxCell>
|
|
167
|
-
<mxCell id="
|
|
158
|
+
<mxCell id="Jha-17" value="configuration for elements" style="whiteSpace=wrap;html=1;rounded=1;glass=1;fillColor=#f8cecc;strokeColor=#b85450;fontColor=#333333" vertex="1" parent="node_root_Jha">
|
|
168
159
|
<mxGeometry x="10" y="410" width="300" height="60" as="geometry"/>
|
|
169
160
|
</mxCell>
|
|
170
|
-
<mxCell id="
|
|
161
|
+
<mxCell id="Jha-18" 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_Jha">
|
|
171
162
|
<mxGeometry x="330" y="410" width="300" height="60" as="geometry"/>
|
|
172
163
|
</mxCell>
|
|
173
|
-
<mxCell id="
|
|
164
|
+
<mxCell id="Jha-19" 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_Jha">
|
|
174
165
|
<mxGeometry x="650" y="410" width="300" height="60" as="geometry"/>
|
|
175
166
|
</mxCell>
|
|
176
|
-
<mxCell id="
|
|
167
|
+
<mxCell id="Jha-20" 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_Jha">
|
|
177
168
|
<mxGeometry x="10" y="490" width="300" height="60" as="geometry"/>
|
|
178
169
|
</mxCell>
|
|
179
|
-
<mxCell id="
|
|
170
|
+
<mxCell id="Jha-21" 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_Jha">
|
|
180
171
|
<mxGeometry x="330" y="490" width="300" height="60" as="geometry"/>
|
|
181
172
|
</mxCell>
|
|
182
|
-
<mxCell id="
|
|
173
|
+
<mxCell id="Jha-22" 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_Jha">
|
|
183
174
|
<mxGeometry x="650" y="490" width="300" height="60" as="geometry"/>
|
|
184
175
|
</mxCell>
|
|
185
|
-
<mxCell id="
|
|
176
|
+
<mxCell id="Jha-23" 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_Jha">
|
|
186
177
|
<mxGeometry x="10" y="570" width="300" height="60" as="geometry"/>
|
|
187
178
|
</mxCell>
|
|
188
|
-
<mxCell id="
|
|
179
|
+
<mxCell id="Jha-24" 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_Jha">
|
|
189
180
|
<mxGeometry x="330" y="570" width="300" height="60" as="geometry"/>
|
|
190
181
|
</mxCell>
|
|
191
|
-
<mxCell id="
|
|
182
|
+
<mxCell id="Jha-25" 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_Jha">
|
|
192
183
|
<mxGeometry x="650" y="570" width="300" height="60" as="geometry"/>
|
|
193
184
|
</mxCell>
|
|
194
|
-
<mxCell id="
|
|
185
|
+
<mxCell id="Jha-26" 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_Jha">
|
|
195
186
|
<mxGeometry x="10" y="650" width="300" height="60" as="geometry"/>
|
|
196
187
|
</mxCell>
|
|
197
|
-
<mxCell id="
|
|
188
|
+
<mxCell id="Jha-27" 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_Jha">
|
|
198
189
|
<mxGeometry x="330" y="650" width="300" height="60" as="geometry"/>
|
|
199
190
|
</mxCell>
|
|
200
|
-
<mxCell id="
|
|
191
|
+
<mxCell id="Jha-28" 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_Jha">
|
|
201
192
|
<mxGeometry x="650" y="650" width="300" height="60" as="geometry"/>
|
|
202
193
|
</mxCell>
|
|
203
|
-
<mxCell id="
|
|
194
|
+
<mxCell id="Jha-29" 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_Jha">
|
|
204
195
|
<mxGeometry x="10" y="730" width="300" height="60" as="geometry"/>
|
|
205
196
|
</mxCell>
|
|
206
|
-
<mxCell id="
|
|
197
|
+
<mxCell id="Jha-30" 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_Jha">
|
|
207
198
|
<mxGeometry x="330" y="730" width="300" height="60" as="geometry"/>
|
|
208
199
|
</mxCell>
|
|
209
|
-
<mxCell id="
|
|
200
|
+
<mxCell id="Jha-31" 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_Jha">
|
|
210
201
|
<mxGeometry x="650" y="730" width="300" height="60" as="geometry"/>
|
|
211
202
|
</mxCell>
|
|
212
|
-
<mxCell id="
|
|
203
|
+
<mxCell id="Jha-32" 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_Jha">
|
|
213
204
|
<mxGeometry x="10" y="810" width="300" height="60" as="geometry"/>
|
|
214
205
|
</mxCell>
|
|
215
|
-
<mxCell id="
|
|
206
|
+
<mxCell id="Jha-33" 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_Jha">
|
|
216
207
|
<mxGeometry x="330" y="810" width="300" height="60" as="geometry"/>
|
|
217
208
|
</mxCell>
|
|
218
|
-
<mxCell id="
|
|
209
|
+
<mxCell id="Jha-34" 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_Jha">
|
|
219
210
|
<mxGeometry x="650" y="810" width="300" height="60" as="geometry"/>
|
|
220
211
|
</mxCell>
|
|
221
|
-
<mxCell id="
|
|
212
|
+
<mxCell id="Jha-35" 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_Jha">
|
|
222
213
|
<mxGeometry x="10" y="890" width="300" height="60" as="geometry"/>
|
|
223
214
|
</mxCell>
|
|
224
|
-
<mxCell id="
|
|
215
|
+
<mxCell id="Jha-36" 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_Jha">
|
|
225
216
|
<mxGeometry x="330" y="890" width="300" height="60" as="geometry"/>
|
|
226
217
|
</mxCell>
|
|
227
|
-
<mxCell id="
|
|
218
|
+
<mxCell id="Jha-37" 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_Jha">
|
|
228
219
|
<mxGeometry x="650" y="890" width="300" height="60" as="geometry"/>
|
|
229
220
|
</mxCell>
|
|
230
|
-
<mxCell id="
|
|
221
|
+
<mxCell id="Jha-38" 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_Jha">
|
|
231
222
|
<mxGeometry x="10" y="970" width="300" height="60" as="geometry"/>
|
|
232
223
|
</mxCell>
|
|
233
|
-
<mxCell id="
|
|
224
|
+
<mxCell id="Jha-39" 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_Jha">
|
|
234
225
|
<mxGeometry x="330" y="970" width="300" height="60" as="geometry"/>
|
|
235
226
|
</mxCell>
|
|
236
|
-
<mxCell id="
|
|
227
|
+
<mxCell id="Jha-40" 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_Jha">
|
|
237
228
|
<mxGeometry x="650" y="970" width="300" height="60" as="geometry"/>
|
|
238
229
|
</mxCell>
|
|
239
|
-
<mxCell id="
|
|
230
|
+
<mxCell id="Jha-41" 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_Jha">
|
|
240
231
|
<mxGeometry x="10" y="1050" width="300" height="60" as="geometry"/>
|
|
241
232
|
</mxCell>
|
|
242
|
-
<mxCell id="
|
|
233
|
+
<mxCell id="Jha-42" 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_Jha">
|
|
243
234
|
<mxGeometry x="330" y="1050" width="300" height="60" as="geometry"/>
|
|
244
235
|
</mxCell>
|
|
245
|
-
<mxCell id="
|
|
236
|
+
<mxCell id="Jha-43" 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_Jha">
|
|
246
237
|
<mxGeometry x="650" y="1050" width="300" height="60" as="geometry"/>
|
|
247
238
|
</mxCell>
|
|
248
|
-
<mxCell id="
|
|
239
|
+
<mxCell id="Jha-44" 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_Jha">
|
|
249
240
|
<mxGeometry x="10" y="1130" width="300" height="60" as="geometry"/>
|
|
250
241
|
</mxCell>
|
|
251
|
-
<mxCell id="
|
|
242
|
+
<mxCell id="Jha-45" 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_Jha">
|
|
252
243
|
<mxGeometry x="330" y="1130" width="300" height="60" as="geometry"/>
|
|
253
244
|
</mxCell>
|
|
254
|
-
<mxCell id="
|
|
245
|
+
<mxCell id="Jha-46" 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_Jha">
|
|
255
246
|
<mxGeometry x="650" y="1130" width="300" height="60" as="geometry"/>
|
|
256
247
|
</mxCell>
|
|
257
|
-
<mxCell id="
|
|
248
|
+
<mxCell id="Jha-47" 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_Jha">
|
|
258
249
|
<mxGeometry x="10" y="1210" width="300" height="60" as="geometry"/>
|
|
259
250
|
</mxCell>
|
|
251
|
+
<mxCell id="Jha-48" 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_Jha">
|
|
252
|
+
<mxGeometry x="330" y="1210" width="300" height="60" as="geometry"/>
|
|
253
|
+
</mxCell>
|
|
254
|
+
<mxCell id="Jha-49" 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_Jha">
|
|
255
|
+
<mxGeometry x="650" y="1210" width="300" height="60" as="geometry"/>
|
|
256
|
+
</mxCell>
|
|
260
257
|
</root>
|
|
261
258
|
</mxGraphModel>
|
|
262
259
|
</diagram>
|