@aj-shadow/z-abs-complayer-visualizationsequencediagram-client 0.0.0-aj-beta.221

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 (167) hide show
  1. package/.gitattributes +26 -0
  2. package/LICENSE.txt +96 -0
  3. package/README.md +5 -0
  4. package/npm-shrinkwrap.json +13 -0
  5. package/package.json +10 -0
  6. package/project/client/_build/Bundle-CompLayer-VisualizationSequenceDiagram-client.bld +36 -0
  7. package/project/client/_build/Client-CompLayer-VisualizationSequenceDiagram-client-jsx.bld +10 -0
  8. package/project/client/_build/Client-CompLayer-VisualizationSequenceDiagram-client.bld +10 -0
  9. package/project/client/_build/Client-css-CompLayer-VisualizationSequenceDiagram-bundle.bld +9 -0
  10. package/project/client/_build/z-abs-complayer-visualizationsequencediagram-client.prj +36 -0
  11. package/project/client/content-decoders/content-decoder.js +22 -0
  12. package/project/client/content-decoders/image-decoder.js +98 -0
  13. package/project/client/content-decoders/text-decoder.js +65 -0
  14. package/project/client/css/seq-dia-buttons.css +40 -0
  15. package/project/client/css/seq-dia-connection-closed.css +11 -0
  16. package/project/client/css/seq-dia-connection-closing.css +11 -0
  17. package/project/client/css/seq-dia-connection-connected-not.css +16 -0
  18. package/project/client/css/seq-dia-connection-connected.css +5 -0
  19. package/project/client/css/seq-dia-connection-connecting.css +5 -0
  20. package/project/client/css/seq-dia-connection-half-closed.css +11 -0
  21. package/project/client/css/seq-dia-connection-half-closing.css +11 -0
  22. package/project/client/css/seq-dia-connection-upgrading.css +5 -0
  23. package/project/client/css/seq-dia-connection.css +27 -0
  24. package/project/client/css/seq-dia-event-gui.css +86 -0
  25. package/project/client/css/seq-dia-event-state.css +13 -0
  26. package/project/client/css/seq-dia-event.css +55 -0
  27. package/project/client/css/seq-dia-inner.css +246 -0
  28. package/project/client/css/seq-dia-ip-address-name.css +14 -0
  29. package/project/client/css/seq-dia-phase.css +90 -0
  30. package/project/client/css/seq-dia-protocol.css +119 -0
  31. package/project/client/css/seq-dia-receive.css +5 -0
  32. package/project/client/css/seq-dia-send.css +5 -0
  33. package/project/client/css/seq-dia-sequence-diagram.css +10 -0
  34. package/project/client/css/seq-dia-server-accepted.css +5 -0
  35. package/project/client/css/seq-dia-server-accepting.css +5 -0
  36. package/project/client/css/seq-dia-server-attached.css +5 -0
  37. package/project/client/css/seq-dia-server-detached.css +5 -0
  38. package/project/client/css/seq-dia-server-not-started.css +5 -0
  39. package/project/client/css/seq-dia-server-started.css +5 -0
  40. package/project/client/css/seq-dia-server-starting.css +5 -0
  41. package/project/client/css/seq-dia-server-stopped.css +5 -0
  42. package/project/client/css/seq-dia-server-stopping.css +5 -0
  43. package/project/client/css/seq-dia-stack.css +51 -0
  44. package/project/client/css/seq-dia-state.css +188 -0
  45. package/project/client/css/seq-dia-template-msg.css +0 -0
  46. package/project/client/css/seq-dia-test-case-end.css +45 -0
  47. package/project/client/css/seq-dia-test-case-header.css +20 -0
  48. package/project/client/css/seq-dia-test-case-start.css +17 -0
  49. package/project/client/data/data-seq-dia-client-connected-not.js +69 -0
  50. package/project/client/data/data-seq-dia-client-connected.js +78 -0
  51. package/project/client/data/data-seq-dia-client-connecting.js +84 -0
  52. package/project/client/data/data-seq-dia-client-dns-failure.js +29 -0
  53. package/project/client/data/data-seq-dia-connection-closed.js +73 -0
  54. package/project/client/data/data-seq-dia-connection-closing.js +71 -0
  55. package/project/client/data/data-seq-dia-connection-half-closed.js +73 -0
  56. package/project/client/data/data-seq-dia-connection-half-closing.js +71 -0
  57. package/project/client/data/data-seq-dia-connection-upgrading.js +32 -0
  58. package/project/client/data/data-seq-dia-gui-result.js +48 -0
  59. package/project/client/data/data-seq-dia-gui.js +78 -0
  60. package/project/client/data/data-seq-dia-phase-end-result.js +31 -0
  61. package/project/client/data/data-seq-dia-phase-end.js +57 -0
  62. package/project/client/data/data-seq-dia-phase-start-result.js +30 -0
  63. package/project/client/data/data-seq-dia-phase-start.js +57 -0
  64. package/project/client/data/data-seq-dia-protocol-single-node-result.js +61 -0
  65. package/project/client/data/data-seq-dia-protocol-single-node.js +81 -0
  66. package/project/client/data/data-seq-dia-protocol-two-nodes-result.js +91 -0
  67. package/project/client/data/data-seq-dia-protocol-two-nodes.js +64 -0
  68. package/project/client/data/data-seq-dia-receive.js +90 -0
  69. package/project/client/data/data-seq-dia-send.js +90 -0
  70. package/project/client/data/data-seq-dia-server-accepted.js +70 -0
  71. package/project/client/data/data-seq-dia-server-accepting.js +61 -0
  72. package/project/client/data/data-seq-dia-server-attached.js +61 -0
  73. package/project/client/data/data-seq-dia-server-detached.js +61 -0
  74. package/project/client/data/data-seq-dia-server-not-started.js +61 -0
  75. package/project/client/data/data-seq-dia-server-started.js +61 -0
  76. package/project/client/data/data-seq-dia-server-starting.js +61 -0
  77. package/project/client/data/data-seq-dia-server-stopped.js +61 -0
  78. package/project/client/data/data-seq-dia-server-stopping.js +61 -0
  79. package/project/client/data/data-seq-dia-stack-result.js +40 -0
  80. package/project/client/data/data-seq-dia-stack.js +73 -0
  81. package/project/client/data/data-seq-dia-state-result.js +38 -0
  82. package/project/client/data/data-seq-dia-state.js +70 -0
  83. package/project/client/data/data-seq-dia-test-case-end-result.js +30 -0
  84. package/project/client/data/data-seq-dia-test-case-end.js +49 -0
  85. package/project/client/data/data-seq-dia-test-case-header-result.js +30 -0
  86. package/project/client/data/data-seq-dia-test-case-header.js +49 -0
  87. package/project/client/data/data-seq-dia-test-case-start-result.js +30 -0
  88. package/project/client/data/data-seq-dia-test-case-start.js +50 -0
  89. package/project/client/logic/analyze.js +41 -0
  90. package/project/client/logic/cache-array.js +45 -0
  91. package/project/client/logic/cache-map-double.js +64 -0
  92. package/project/client/logic/cache-map-shared.js +73 -0
  93. package/project/client/logic/cache-map.js +48 -0
  94. package/project/client/logic/cache-type-connection-closed.js +56 -0
  95. package/project/client/logic/cache-type-connection-closing.js +56 -0
  96. package/project/client/logic/cache-type-connection-connected.js +58 -0
  97. package/project/client/logic/cache-type-connection-connecting.js +58 -0
  98. package/project/client/logic/cache-type-connection-half-closed.js +56 -0
  99. package/project/client/logic/cache-type-connection-half-closing.js +56 -0
  100. package/project/client/logic/cache-type-connection-not-connected.js +58 -0
  101. package/project/client/logic/cache-type-phase-end.js +49 -0
  102. package/project/client/logic/cache-type-phase-start.js +49 -0
  103. package/project/client/logic/cache-type-receive.js +58 -0
  104. package/project/client/logic/cache-type-send.js +58 -0
  105. package/project/client/logic/cache-type-server-accepted.js +36 -0
  106. package/project/client/logic/cache-type-server-accepting.js +64 -0
  107. package/project/client/logic/cache-type-server-attached.js +64 -0
  108. package/project/client/logic/cache-type-server-detached.js +55 -0
  109. package/project/client/logic/cache-type-server-not-started.js +64 -0
  110. package/project/client/logic/cache-type-server-started.js +66 -0
  111. package/project/client/logic/cache-type-server-starting.js +53 -0
  112. package/project/client/logic/cache-type-server-stopped.js +64 -0
  113. package/project/client/logic/cache-type-server-stopping.js +64 -0
  114. package/project/client/logic/cache-type-stack.js +64 -0
  115. package/project/client/logic/cache-type-state.js +53 -0
  116. package/project/client/logic/cache-type-test-case-end.js +30 -0
  117. package/project/client/logic/cache-type-test-case-header.js +30 -0
  118. package/project/client/logic/cache-type-test-case-start.js +30 -0
  119. package/project/client/logic/cache.js +202 -0
  120. package/project/client/logic/connection-data.js +60 -0
  121. package/project/client/logic/const.js +207 -0
  122. package/project/client/logic/content-cache.js +23 -0
  123. package/project/client/logic/data-log-row.js +24 -0
  124. package/project/client/logic/filter-size.js +81 -0
  125. package/project/client/logic/seq-dia-filter.js +496 -0
  126. package/project/client/logic/shared-template-data.js +62 -0
  127. package/project/client/react-component/sequence-diagram.jsx +387 -0
  128. package/project/client/templates/components/component-seq-dia-arrow.js +26 -0
  129. package/project/client/templates/components/component-seq-dia-caption.js +44 -0
  130. package/project/client/templates/components/component-seq-dia-envelope.js +188 -0
  131. package/project/client/templates/components/component-seq-dia-event-info.js +108 -0
  132. package/project/client/templates/components/component-seq-dia-event-row.js +147 -0
  133. package/project/client/templates/components/component-seq-dia-protocol.js +314 -0
  134. package/project/client/templates/components/component-seq-dia-shared.js +58 -0
  135. package/project/client/templates/template-seq-dia-client-connected-not.js +67 -0
  136. package/project/client/templates/template-seq-dia-client-connected.js +67 -0
  137. package/project/client/templates/template-seq-dia-client-connecting.js +71 -0
  138. package/project/client/templates/template-seq-dia-client-dns-failure.js +82 -0
  139. package/project/client/templates/template-seq-dia-connection-closed.js +70 -0
  140. package/project/client/templates/template-seq-dia-connection-closing.js +72 -0
  141. package/project/client/templates/template-seq-dia-connection-half-closed.js +70 -0
  142. package/project/client/templates/template-seq-dia-connection-half-closing.js +80 -0
  143. package/project/client/templates/template-seq-dia-connection-upgraded-not.js +82 -0
  144. package/project/client/templates/template-seq-dia-connection-upgraded.js +57 -0
  145. package/project/client/templates/template-seq-dia-connection-upgrading.js +57 -0
  146. package/project/client/templates/template-seq-dia-gui.js +250 -0
  147. package/project/client/templates/template-seq-dia-msg.js +500 -0
  148. package/project/client/templates/template-seq-dia-phase-end.js +59 -0
  149. package/project/client/templates/template-seq-dia-phase-start.js +59 -0
  150. package/project/client/templates/template-seq-dia-protocol-base.js +107 -0
  151. package/project/client/templates/template-seq-dia-receive.js +119 -0
  152. package/project/client/templates/template-seq-dia-send.js +121 -0
  153. package/project/client/templates/template-seq-dia-server-accepted.js +61 -0
  154. package/project/client/templates/template-seq-dia-server-accepting.js +45 -0
  155. package/project/client/templates/template-seq-dia-server-attached.js +72 -0
  156. package/project/client/templates/template-seq-dia-server-detached.js +60 -0
  157. package/project/client/templates/template-seq-dia-server-not-started.js +77 -0
  158. package/project/client/templates/template-seq-dia-server-started.js +49 -0
  159. package/project/client/templates/template-seq-dia-server-starting.js +49 -0
  160. package/project/client/templates/template-seq-dia-server-stopped.js +45 -0
  161. package/project/client/templates/template-seq-dia-server-stopping.js +45 -0
  162. package/project/client/templates/template-seq-dia-stack.js +195 -0
  163. package/project/client/templates/template-seq-dia-state.js +118 -0
  164. package/project/client/templates/template-seq-dia-test-case-end.js +73 -0
  165. package/project/client/templates/template-seq-dia-test-case-header.js +70 -0
  166. package/project/client/templates/template-seq-dia-test-case-start.js +68 -0
  167. package/project/z-abs-complayer-visualizationsequencediagram-client.tree +171 -0
@@ -0,0 +1,86 @@
1
+
2
+ div.seq_dia_gui{
3
+ position:relative;
4
+ height:10px;
5
+ }
6
+
7
+ text.gui_seq_dia_function{
8
+ fill:Black;
9
+ font-weight:bold;
10
+ font-size:8px;
11
+ text-anchor:end;
12
+ }
13
+
14
+ rect.gui_seq_dia_function{
15
+ stroke:Black;
16
+ stroke-width:0.5;
17
+ fill:forestgreen;
18
+ rx:1.5;
19
+ }
20
+
21
+ //text.gui_seq_dia_svg{
22
+ // fill:Navy;
23
+ // font-weight:bold;
24
+ // font-size:8px;
25
+ // text-anchor:end;
26
+ //}
27
+
28
+ //text.gui_seq_dia_data_svg{
29
+ // color:Navy;
30
+ // font-weight:bold;
31
+ // font-size:10px;
32
+ // text-anchor:start;
33
+ //}
34
+
35
+ //rect.gui_seq_dia_svg{
36
+ // stroke:Navy;
37
+ // stroke-width:0.25;
38
+ // fill:lightyellow;
39
+ //}
40
+
41
+ //line.gui_seq_dia_svg{
42
+ // stroke:Navy;
43
+ // stroke-width:0.5;
44
+ //}
45
+
46
+ path.gui_seq_dia_browser_svg{
47
+ stroke:Black;
48
+ stroke-width:8;
49
+ fill:forestgreen;
50
+ stroke-linecap:round;
51
+ }
52
+
53
+ line.gui_seq_dia_browser_fuel{
54
+ stroke:Black;
55
+ stroke-width:4;
56
+ fill:forestgreen;
57
+ }
58
+
59
+ path.gui_seq_dia_page{
60
+ stroke-width:14px;
61
+ stroke:Black;
62
+ fill:forestgreen;
63
+ }
64
+
65
+ rect.gui_seq_dia_type{
66
+ fill:forestgreen;
67
+ }
68
+
69
+ div.seq_dia_show__phase_data__gui_event_object,
70
+ div.seq_dia_show__phase_pre__gui_event_object,
71
+ div.seq_dia_show__phase_exec__gui_event_object,
72
+ div.seq_dia_show__phase_post__gui_event_object,
73
+ div.seq_dia_show__phase_none__gui_event_object,
74
+ div.seq_dia_show__phase_data__gui_event_event,
75
+ div.seq_dia_show__phase_pre__gui_event_event,
76
+ div.seq_dia_show__phase_exec__gui_event_event,
77
+ div.seq_dia_show__phase_post__gui_event_event,
78
+ div.seq_dia_show__phase_none__gui_event_event,
79
+ div.seq_dia_show__phase_data__gui_event_function,
80
+ div.seq_dia_show__phase_pre__gui_event_function,
81
+ div.seq_dia_show__phase_exec__gui_event_function,
82
+ div.seq_dia_show__phase_post__gui_event_function,
83
+ div.seq_dia_show__phase_none__gui_event_function,
84
+ div.seq_dia_show__gui_event_info{
85
+ display:flex;
86
+ }
@@ -0,0 +1,13 @@
1
+
2
+ div.seq_dia_show__phase_data__state_event__executed,
3
+ div.seq_dia_show__phase_pre__state_event__executed,
4
+ div.seq_dia_show__phase_exec__state_event__executed,
5
+ div.seq_dia_show__phase_post__state_event__executed,
6
+ div.seq_dia_show__phase_none__state_event__executed,
7
+ div.seq_dia_show__phase_data__state_event__not_executed,
8
+ div.seq_dia_show__phase_pre__state_event__not_executed,
9
+ div.seq_dia_show__phase_exec__state_event__not_executed,
10
+ div.seq_dia_show__phase_post__state_event__not_executed,
11
+ div.seq_dia_show__phase_none__state_event__not_executed{
12
+ display:flex;
13
+ }
@@ -0,0 +1,55 @@
1
+
2
+ div.seq_dia_event_row_header{
3
+ position:relative;
4
+ height:inherit;
5
+ }
6
+
7
+ div.seq_dia_event_column_header_left{
8
+ position:absolute;
9
+ height:inherit;
10
+ }
11
+
12
+ div.seq_dia_event_column_header_middle{
13
+ position:absolute;
14
+ height:inherit;
15
+ }
16
+
17
+ div.seq_dia_event_column_header_right{
18
+ position:absolute;
19
+ height:inherit;
20
+ }
21
+
22
+ div.seq_dia_event_row{
23
+ position:relative;
24
+ height:inherit;
25
+ }
26
+
27
+ div.seq_dia_event_column_left{
28
+ position:absolute;
29
+ height:inherit;
30
+ border-left:1px solid Black;
31
+ }
32
+
33
+ div.seq_dia_event_column_middle{
34
+ position:absolute;
35
+ height:inherit;
36
+ }
37
+
38
+ div.seq_dia_event_column_right{
39
+ position:absolute;
40
+ height:inherit;
41
+ border-right:1px solid Black;
42
+ }
43
+
44
+ div.seq_dia_event_actor_line{
45
+ position:absolute;
46
+ height:inherit;
47
+ width:2px;
48
+ margin:0px 89px;
49
+ background-color:black;
50
+ }
51
+
52
+ svg.actor_svg{
53
+ position:absolute;
54
+ overflow:visible!important;
55
+ }
@@ -0,0 +1,246 @@
1
+
2
+
3
+
4
+ text.seq_dia_msg_caption_text_left_right{
5
+ font-weight:bold;
6
+ font-size:10px;
7
+ text-anchor:start;
8
+ fill:darkslategray;
9
+ }
10
+
11
+ text.seq_dia_msg_caption_text_right_left{
12
+ font-weight:bold;
13
+ font-size:10px;
14
+ text-anchor:end;
15
+ fill:darkslategray;
16
+ }
17
+
18
+ rect.seq_dia_msg_nbr{
19
+ stroke:Black;
20
+ stroke-width:0.25px;
21
+ }
22
+
23
+ rect.seq_dia_msg_nbr_sent{
24
+ fill:White;
25
+ }
26
+
27
+ rect.seq_dia_msg_nbr_received{
28
+ fill:LightGrey;
29
+ }
30
+
31
+
32
+ line.seq_dia_msg_nbr{
33
+ stroke:Black;
34
+ stroke-width:0.25px;
35
+ }
36
+
37
+ g.seq_dia_msg_nbr_hide{
38
+ display:none;
39
+ }
40
+
41
+ text.actor_text{
42
+ text-anchor:middle;
43
+ font-weight:bold;
44
+ font-size:10px;
45
+ }
46
+
47
+ div.seq_dia_protocol_outer{
48
+ position:relative;
49
+ top:20px;
50
+ min-width:200px;
51
+ white-space:nowrap;
52
+ width:fit-content;
53
+ margin:0 auto;
54
+ display:block;
55
+ }
56
+
57
+ div.seq_dia_protocol_header{
58
+ position:relative;
59
+ z-index:1;
60
+ height:10px;
61
+ border-radius:4px 4px 0px 0px;
62
+ }
63
+
64
+ ul.seq_dia_protocol_log_inner_part {
65
+ position:relative;
66
+ display:block;
67
+ }
68
+
69
+ li.seq_dia_protocol_log_parts {
70
+ position:relative;
71
+ width:100%;
72
+ height:10px;
73
+ font-size:7px;
74
+ font-family:monospace;
75
+ }
76
+
77
+ p.seq_dia_protocol_log_parts {
78
+ position:relative;
79
+ display: inline-block;
80
+ margin:0;
81
+ left:12px;
82
+ font-weight:bold;
83
+ }
84
+
85
+ p.seq_dia_protocol_header_stack{
86
+ position:absolute;
87
+ margin:0;
88
+ top:-1px;
89
+ left:2px;
90
+ font-size:7px;
91
+ font-weight:bold;
92
+ }
93
+
94
+ p.seq_dia_protocol_header_transport{
95
+ position:absolute;
96
+ margin:0;
97
+ top:-1px;
98
+ right:2px;
99
+ font-size:7px;
100
+ font-weight:bold;
101
+ }
102
+
103
+ div.seq_dia_protocol_msg_inner {
104
+ position:relative;
105
+ z-index:1;
106
+ display:block;
107
+ min-width:200px;
108
+ margin:0;
109
+ padding:0;
110
+ border-radius:0px 0px 4px 4px;
111
+ background-color:whitesmoke;
112
+ border-top:none !important;
113
+ }
114
+
115
+ ul.protocol_msg_seq_dia_ul{
116
+ font-size:7px;
117
+ line-height:7px;
118
+ font-weight:bold;
119
+ padding-bottom:2px;
120
+ }
121
+
122
+ span.protocol_msg_seq_dia_li_expander{
123
+ margin-right:1px;
124
+ font-size:8px;
125
+ transform-origin:2px 4px;
126
+ top:0px;
127
+ }
128
+
129
+
130
+
131
+
132
+
133
+ div.seq_dia_protocol_inners_outer{
134
+ padding-left:16px;
135
+ }
136
+
137
+ div.seq_dia_protocol_inners_outer_hide{
138
+ display:none;
139
+ }
140
+
141
+ div.seq_dia_protocol_inner_row{
142
+ height:16px;
143
+ padding-left:2px;
144
+ padding-right:8px;
145
+ }
146
+
147
+ div.inner_dynamic_inline_flex{
148
+ display:inline-flex;
149
+ height:100%;
150
+ width:100%;
151
+ vertical-align:top;
152
+ }
153
+
154
+ div.seq_dia_protocol_inner_row_buffer{
155
+ width:100%;
156
+ height:100%;
157
+ background-color:White;
158
+ }
159
+
160
+ div.seq_dia_protocol_inner_toolbar{
161
+ position:relative;
162
+ height:16px;
163
+ padding-left:2px;
164
+ background-color:lightgray;
165
+ }
166
+
167
+ button.seq_dia_protocol_inner_toolbar_button{
168
+ width:14px;
169
+ height:14px;
170
+ }
171
+
172
+ span.seq_dia_button_message_content_all_open{
173
+ transform:rotate(45deg) scale(0.8);
174
+ }
175
+
176
+ span.seq_dia_button_message_content_all_closed{
177
+ transform:scale(0.8);
178
+ }
179
+
180
+ p.seq_dia_protocol_base,
181
+ pre.seq_dia_protocol_base,
182
+ a.seq_dia_protocol_base{
183
+ display:inline-grid;
184
+ font-family:sans-serif;
185
+ height:100%;
186
+ font-size:10px;
187
+ font-weight:bold;
188
+ }
189
+
190
+ p.seq_dia_protocol{
191
+ margin:0px 8px 0px 16px;
192
+ }
193
+
194
+ a.seq_dia_protocol_first{
195
+ margin:0px 2px 0px 19px;
196
+ }
197
+
198
+ pre.seq_dia_protocol_first{
199
+ margin:0px 2px 0px 19px;
200
+ }
201
+
202
+ a.seq_dia_protocol{
203
+ margin:0px 2px 0px 1px;
204
+ }
205
+
206
+ p.seq_dia_protocol_no_inners{
207
+ margin-left:34px;
208
+ }
209
+
210
+ pre.seq_dia_inner_buffer {
211
+ display:inherit;
212
+ height:-moz-fit-content;
213
+ height:fit-content;
214
+ overflow-x:auto;
215
+ margin:0px;
216
+ padding:3px;
217
+ font-family:monospace, monospace;
218
+ font-size:10px;
219
+ font-weight:bold;
220
+ line-height:inherit;
221
+ color:inherit;
222
+ word-break:inherit;
223
+ word-wrap:inherit;
224
+ background-color:whitesmoke;
225
+ border:none;
226
+ border-radius:inherit;
227
+ }
228
+
229
+ svg.markup_seq{
230
+ background-color:#fcfcfc;
231
+ border:1px solid #ccc;
232
+ }
233
+
234
+ .svg_display_block{
235
+ display:block;
236
+ }
237
+
238
+ .svg_display_none{
239
+ display:none;
240
+ }
241
+
242
+ .btn-default:active, .btn-default.active {
243
+ background-color:#d0d0d0!important;
244
+ border-color:#e0e0e0!important;
245
+ }
246
+
@@ -0,0 +1,14 @@
1
+
2
+ text.seq_dia_event_ip_address{
3
+ font-weight:bold;
4
+ font-size:7px;
5
+ text-anchor:start;
6
+ fill:#222;
7
+ }
8
+
9
+ text.seq_dia_event_address{
10
+ font-weight:bold;
11
+ font-size:7px;
12
+ text-anchor:start;
13
+ fill:#222;
14
+ }
@@ -0,0 +1,90 @@
1
+
2
+ div.seq_dia_phase_start{
3
+ position:relative;
4
+ height:5px;
5
+ }
6
+
7
+ div.seq_dia_phase_start_middle{
8
+ border-top:1px solid black;
9
+ }
10
+
11
+ div.seq_dia_phase_end{
12
+ position:relative;
13
+ height:5px;
14
+ }
15
+
16
+ div.seq_dia_phase_end_middle{
17
+ border-bottom:1px solid black;
18
+ }
19
+
20
+ div.seq_dia_phase_data{
21
+ background-color:#fce6e6;
22
+ }
23
+
24
+ div.seq_dia_phase_pre{
25
+ background-color:#e7f5fb;
26
+ }
27
+
28
+ div.seq_dia_phase_exec{
29
+ background-color:#eafeea;
30
+ }
31
+
32
+ div.seq_dia_phase_post{
33
+ background-color:#ffffe6;
34
+ }
35
+
36
+ div.seq_dia_phase_none{
37
+ background-color:White;
38
+ }
39
+
40
+ //////////////////////////////////
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+ span.seq_dia_phase_data{
49
+ color:#fce6e6;
50
+ }
51
+
52
+ span.seq_dia_dark_phase_data{
53
+ color:#fc7373;
54
+ }
55
+
56
+ span.seq_dia_phase_pre{
57
+ color:#e7f5fb;
58
+ }
59
+
60
+ span.seq_dia_dark_phase_pre{
61
+ color:#737afb;
62
+ }
63
+
64
+ span.seq_dia_phase_exec{
65
+ color:#eafeea;
66
+ }
67
+
68
+ span.seq_dia_dark_phase_exec{
69
+ color:#75f275;
70
+ }
71
+
72
+ span.seq_dia_phase_post{
73
+ color:#ffffe6;
74
+ }
75
+
76
+ span.seq_dia_dark_phase_post{
77
+ color:#efef5a;
78
+ }
79
+
80
+ div.seq_dia_phase_none{
81
+ background-color:White;
82
+ }
83
+
84
+ span.seq_dia_phase_none{
85
+ color:White;
86
+ }
87
+
88
+ span.seq_dia_dark_phase_none{
89
+ color:#dfdfdf;
90
+ }
@@ -0,0 +1,119 @@
1
+
2
+ div.seq_dia_protocol_left{
3
+ position:absolute;
4
+ left:calc(-250% - 14px);
5
+ width:300%;
6
+ z-index:1;
7
+ }
8
+
9
+ div.seq_dia_protocol_right{
10
+ position:absolute;
11
+ left:calc(50% - -14px);
12
+ width:300%;
13
+ z-index:1;
14
+ }
15
+
16
+ text.seq_dia_protocol_text_left{
17
+ font-weight:bold;
18
+ font-size:8px;
19
+ text-anchor:middle;
20
+ }
21
+
22
+ text.seq_dia_protocol_text_right{
23
+ font-weight:bold;
24
+ font-size:8px;
25
+ text-anchor:middle;
26
+ }
27
+
28
+ text.seq_dia_protocol_text{
29
+ font-weight:bold;
30
+ font-size:8px;
31
+ text-anchor:middle;
32
+ }
33
+
34
+ div.seq_dia_protocol_data_left{
35
+ position:relative;
36
+ border:1px solid black;
37
+ border-radius:2px;
38
+ float:right;
39
+ height:9.5px;
40
+ display:block;
41
+ margin:0px 1px;
42
+ }
43
+
44
+ div.seq_dia_protocol_data_right{
45
+ position:relative;
46
+ border:1px solid black;
47
+ border-radius:2px;
48
+ float:left;
49
+ height:9.5px;
50
+ display:block;
51
+ margin:0px 1px;
52
+ }
53
+
54
+ div.seq_dia_no_protocol_data{
55
+ color:black;
56
+ background-color:white;
57
+ }
58
+
59
+ p.seq_dia_protocol_data{
60
+ margin:-2px 0px 0px 0px;
61
+ padding:0px 1px;
62
+ height:inherit;
63
+ font-weight:700;
64
+ font-size:8px;
65
+ }
66
+
67
+ p.seq_dia_protocol_caption_east{
68
+ position:absolute;
69
+ left:9px;
70
+ margin:0px;
71
+ padding:0px;
72
+ height:inherit;
73
+ font-weight:700;
74
+ font-size:9px;
75
+ white-space:nowrap;
76
+ }
77
+
78
+ p.seq_dia_protocol_caption_west{
79
+ position:absolute;
80
+ right:9px;
81
+ margin:0px;
82
+ padding:0px;
83
+ height:inherit;
84
+ font-weight:700;
85
+ font-size:9px;
86
+ white-space:nowrap;
87
+ }
88
+
89
+
90
+ line.seq_dia_protocol_connection_line{
91
+ stroke-width:1;
92
+ }
93
+
94
+ line.seq_dia_protocol_message_line{
95
+ stroke-width:2;
96
+ }
97
+
98
+ line.seq_dia_protocol_message_part_line{
99
+ stroke-width:0.5;
100
+ stroke:Black!important;
101
+ stroke-dasharray:1 1;
102
+ }
103
+
104
+ line.seq_dia_protocol_tcp_line{
105
+ }
106
+
107
+ line.seq_dia_protocol_udp_line{
108
+ stroke-dasharray:2;
109
+ stroke-dashoffset:2;
110
+ }
111
+
112
+ line.seq_dia_protocol_mc_line{
113
+ stroke-dasharray:12 2 2 2;
114
+ stroke-dashoffset:1;
115
+ }
116
+
117
+ line.seq_dia_protocol_tls_line{
118
+ stroke-dasharray:12 1 12 1;
119
+ }
@@ -0,0 +1,5 @@
1
+
2
+ div.seq_dia_receive{
3
+ position:relative;
4
+ height:20px;
5
+ }
@@ -0,0 +1,5 @@
1
+
2
+ div.seq_dia_send{
3
+ position:relative;
4
+ height:20px;
5
+ }
@@ -0,0 +1,10 @@
1
+
2
+ div.comp_layer_seq_dia_rows {
3
+ position:absolute;
4
+ overflow:auto;
5
+ top:28px;
6
+ right:0px;
7
+ bottom:0px;
8
+ left:0px;
9
+ z-index:1;
10
+ }
@@ -0,0 +1,5 @@
1
+
2
+ div.seq_dia_server_accepted{
3
+ position:relative;
4
+ height:10px;
5
+ }
@@ -0,0 +1,5 @@
1
+
2
+ div.seq_dia_server_accepting{
3
+ position:relative;
4
+ height:10px;
5
+ }
@@ -0,0 +1,5 @@
1
+
2
+ div.seq_dia_server_attached{
3
+ position:relative;
4
+ height:10px;
5
+ }
@@ -0,0 +1,5 @@
1
+
2
+ div.seq_dia_server_detached{
3
+ position:relative;
4
+ height:10px;
5
+ }
@@ -0,0 +1,5 @@
1
+
2
+ div.seq_dia_server_not_started{
3
+ position:relative;
4
+ height:10px;
5
+ }
@@ -0,0 +1,5 @@
1
+
2
+ div.seq_dia_server_started{
3
+ position:relative;
4
+ height:10px;
5
+ }
@@ -0,0 +1,5 @@
1
+
2
+ div.seq_dia_server_starting{
3
+ position:relative;
4
+ height:10px;
5
+ }
@@ -0,0 +1,5 @@
1
+
2
+ div.seq_dia_server_stopped{
3
+ position:relative;
4
+ height:10px;
5
+ }
@@ -0,0 +1,5 @@
1
+
2
+ div.seq_dia_server_stopping{
3
+ position:relative;
4
+ height:10px;
5
+ }