@aj-shadow/z-abs-complayer-markup-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 (208) 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-Markup-client.bld +40 -0
  7. package/project/client/_build/Client-CompLayer-Markup-client-jsx.bld +10 -0
  8. package/project/client/_build/Client-CompLayer-Markup-client.bld +10 -0
  9. package/project/client/_build/Client-css-CompLayer-Markup-bundle.bld +9 -0
  10. package/project/client/_build/z-abs-complayer-markup-client.prj +36 -0
  11. package/project/client/actions/action-style.js +17 -0
  12. package/project/client/actions/data-action-style.js +13 -0
  13. package/project/client/css/markup_addressing.css +30 -0
  14. package/project/client/css/markup_flowchart.css +53 -0
  15. package/project/client/css/markup_general.css +4 -0
  16. package/project/client/css/markup_image.css +10 -0
  17. package/project/client/css/markup_license.css +107 -0
  18. package/project/client/css/markup_login.css +201 -0
  19. package/project/client/css/markup_node_diagram.css +51 -0
  20. package/project/client/css/markup_sequence_diagram.css +6 -0
  21. package/project/client/css/markup_state.css +5 -0
  22. package/project/client/css/markup_table.css +57 -0
  23. package/project/client/css/markup_tc.css +32 -0
  24. package/project/client/css/markup_ts.css +36 -0
  25. package/project/client/data/addresses/data-addresses-client-address-global.js +20 -0
  26. package/project/client/data/addresses/data-addresses-client-address-local.js +20 -0
  27. package/project/client/data/addresses/data-addresses-client-interface-global.js +17 -0
  28. package/project/client/data/addresses/data-addresses-client-interface-local.js +17 -0
  29. package/project/client/data/addresses/data-addresses-dns-global.js +18 -0
  30. package/project/client/data/addresses/data-addresses-dns-local.js +19 -0
  31. package/project/client/data/addresses/data-addresses-dst-global.js +20 -0
  32. package/project/client/data/addresses/data-addresses-dst-local.js +20 -0
  33. package/project/client/data/addresses/data-addresses-network-interface-global.js +17 -0
  34. package/project/client/data/addresses/data-addresses-network-interface-local.js +17 -0
  35. package/project/client/data/addresses/data-addresses-ports-global.js +18 -0
  36. package/project/client/data/addresses/data-addresses-ports-local.js +18 -0
  37. package/project/client/data/addresses/data-addresses-server-address-global.js +20 -0
  38. package/project/client/data/addresses/data-addresses-server-address-local.js +20 -0
  39. package/project/client/data/addresses/data-addresses-server-interface-global.js +17 -0
  40. package/project/client/data/addresses/data-addresses-server-interface-local.js +17 -0
  41. package/project/client/data/addresses/data-addresses-src-global.js +21 -0
  42. package/project/client/data/addresses/data-addresses-src-local.js +21 -0
  43. package/project/client/data/addresses/data-addresses-srv-global.js +20 -0
  44. package/project/client/data/addresses/data-addresses-srv-local.js +20 -0
  45. package/project/client/data/addresses/data-addresses-sut-address-global.js +20 -0
  46. package/project/client/data/addresses/data-addresses-sut-address-local.js +20 -0
  47. package/project/client/data/addresses/data-addresses-sut-interface-global.js +19 -0
  48. package/project/client/data/addresses/data-addresses-sut-interface-local.js +19 -0
  49. package/project/client/data/data-chart/data-chart-axis.js +13 -0
  50. package/project/client/data/data-chart/data-chart-grid.js +14 -0
  51. package/project/client/data/data-chart/data-chart-line/data-chart-line-config.js +17 -0
  52. package/project/client/data/data-chart/data-chart-line/data-chart-line.js +41 -0
  53. package/project/client/data/data-config.js +14 -0
  54. package/project/client/data/data-constructor.js +18 -0
  55. package/project/client/data/data-content/data-content-audio-global.js +18 -0
  56. package/project/client/data/data-content/data-content-audio-local.js +18 -0
  57. package/project/client/data/data-content/data-content-documents-global.js +18 -0
  58. package/project/client/data/data-content/data-content-documents-local.js +18 -0
  59. package/project/client/data/data-content/data-content-image-global.js +21 -0
  60. package/project/client/data/data-content/data-content-image-local.js +21 -0
  61. package/project/client/data/data-content/data-content-other-global.js +20 -0
  62. package/project/client/data/data-content/data-content-other-local.js +20 -0
  63. package/project/client/data/data-content/data-content-text-global.js +20 -0
  64. package/project/client/data/data-content/data-content-text-local.js +20 -0
  65. package/project/client/data/data-content/data-content-video-global.js +20 -0
  66. package/project/client/data/data-content/data-content-video-local.js +20 -0
  67. package/project/client/data/data-data.js +28 -0
  68. package/project/client/data/data-dependencies/data-dependencies.js +17 -0
  69. package/project/client/data/data-documentation/data-documentation-navigation.js +15 -0
  70. package/project/client/data/data-documentation/data-documentation.js +20 -0
  71. package/project/client/data/data-flowchart/data-flowchart-block.js +33 -0
  72. package/project/client/data/data-flowchart/data-flowchart-connection.js +17 -0
  73. package/project/client/data/data-flowchart/data-flowchart.js +30 -0
  74. package/project/client/data/data-html/data-html-anchor.js +12 -0
  75. package/project/client/data/data-html/data-html-br.js +11 -0
  76. package/project/client/data/data-html/data-html-button.js +15 -0
  77. package/project/client/data/data-html/data-html-log-start.js +12 -0
  78. package/project/client/data/data-html/data-html-log-stop.js +13 -0
  79. package/project/client/data/data-html/data-html-log.js +16 -0
  80. package/project/client/data/data-html/data-html-toolbar.js +19 -0
  81. package/project/client/data/data-image/data-image.js +20 -0
  82. package/project/client/data/data-lab/data-lab-interface-client.js +19 -0
  83. package/project/client/data/data-lab/data-lab-interface-server.js +19 -0
  84. package/project/client/data/data-lab/data-lab-interface-sut.js +20 -0
  85. package/project/client/data/data-lab/data-lab-network.js +31 -0
  86. package/project/client/data/data-lab/data-lab.js +21 -0
  87. package/project/client/data/data-licenses/data-licenses.js +16 -0
  88. package/project/client/data/data-node-diagram/data-node-diagram-config.js +21 -0
  89. package/project/client/data/data-node-diagram/data-node-diagram-connection.js +18 -0
  90. package/project/client/data/data-node-diagram/data-node-diagram-group.js +16 -0
  91. package/project/client/data/data-node-diagram/data-node-diagram-node.js +22 -0
  92. package/project/client/data/data-node-diagram/data-node-diagram.js +47 -0
  93. package/project/client/data/data-repos/data-repos-content-local.js +15 -0
  94. package/project/client/data/data-repos/data-repos-data-local.js +15 -0
  95. package/project/client/data/data-sequence-diagram/data-sequence-diagram-config.js +22 -0
  96. package/project/client/data/data-sequence-diagram/data-sequence-diagram-message.js +17 -0
  97. package/project/client/data/data-sequence-diagram/data-sequence-diagram-node.js +11 -0
  98. package/project/client/data/data-sequence-diagram/data-sequence-diagram.js +32 -0
  99. package/project/client/data/data-state-machine/data-state-machine-config.js +17 -0
  100. package/project/client/data/data-state-machine/data-state-machine-state.js +29 -0
  101. package/project/client/data/data-state-machine/data-state-machine-transition.js +18 -0
  102. package/project/client/data/data-state-machine/data-state-machine.js +37 -0
  103. package/project/client/data/data-system-under-test/data-system-under-test-instances.js +15 -0
  104. package/project/client/data/data-system-under-test/data-system-under-test-nodes.js +18 -0
  105. package/project/client/data/data-table/data-table-config.js +21 -0
  106. package/project/client/data/data-table-key-value.js +56 -0
  107. package/project/client/data/data-test-case/data-actor.js +282 -0
  108. package/project/client/data/data-test-case/data-test-case-settings.js +49 -0
  109. package/project/client/data/data-test-case/data-test-case.js +19 -0
  110. package/project/client/data/data-test-case/data-test-data-iteration.js +54 -0
  111. package/project/client/data/data-test-case/data-test-data-test-case.js +16 -0
  112. package/project/client/data/data-test-case/data-verification-test-case.js +24 -0
  113. package/project/client/data/data-test-data/data-test-data-environment-global.js +18 -0
  114. package/project/client/data/data-test-data/data-test-data-environment-local.js +18 -0
  115. package/project/client/data/data-test-data/data-test-data-environment-static.js +16 -0
  116. package/project/client/data/data-test-data/data-test-data-general-global.js +18 -0
  117. package/project/client/data/data-test-data/data-test-data-general-local.js +18 -0
  118. package/project/client/data/data-test-data/data-test-data-output-global.js +18 -0
  119. package/project/client/data/data-test-data/data-test-data-output-local.js +18 -0
  120. package/project/client/data/data-test-data/data-test-data-system-global.js +18 -0
  121. package/project/client/data/data-test-data/data-test-data-system-local.js +18 -0
  122. package/project/client/data/data-test-suite/data-test-suite-abstraction.js +72 -0
  123. package/project/client/data/data-test-suite/data-test-suite.js +15 -0
  124. package/project/client/data/data-tree/data-tree-node.js +17 -0
  125. package/project/client/data/data-tree/data-tree.js +13 -0
  126. package/project/client/markup/markup-addresses/markup-addresses-client-address.js +31 -0
  127. package/project/client/markup/markup-addresses/markup-addresses-client-interface.js +31 -0
  128. package/project/client/markup/markup-addresses/markup-addresses-dns.js +32 -0
  129. package/project/client/markup/markup-addresses/markup-addresses-dst.js +31 -0
  130. package/project/client/markup/markup-addresses/markup-addresses-network-interface.js +31 -0
  131. package/project/client/markup/markup-addresses/markup-addresses-ports.js +31 -0
  132. package/project/client/markup/markup-addresses/markup-addresses-server-address.js +31 -0
  133. package/project/client/markup/markup-addresses/markup-addresses-server-interface.js +31 -0
  134. package/project/client/markup/markup-addresses/markup-addresses-src.js +31 -0
  135. package/project/client/markup/markup-addresses/markup-addresses-srv.js +31 -0
  136. package/project/client/markup/markup-addresses/markup-addresses-sut-address.js +31 -0
  137. package/project/client/markup/markup-addresses/markup-addresses-sut-interface.js +31 -0
  138. package/project/client/markup/markup-chart/markup-chart-line.js +92 -0
  139. package/project/client/markup/markup-content/markup-content-audio.js +31 -0
  140. package/project/client/markup/markup-content/markup-content-documents.js +31 -0
  141. package/project/client/markup/markup-content/markup-content-image.js +31 -0
  142. package/project/client/markup/markup-content/markup-content-other.js +31 -0
  143. package/project/client/markup/markup-content/markup-content-text.js +31 -0
  144. package/project/client/markup/markup-content/markup-content-video.js +31 -0
  145. package/project/client/markup/markup-dependencies/markup-dependencies.js +30 -0
  146. package/project/client/markup/markup-documentation/markup-documentation-anchor.js +37 -0
  147. package/project/client/markup/markup-documentation/markup-documentation-api-status.js +67 -0
  148. package/project/client/markup/markup-documentation/markup-documentation-code.js +20 -0
  149. package/project/client/markup/markup-documentation/markup-documentation-div.js +34 -0
  150. package/project/client/markup/markup-documentation/markup-documentation-documentation-status.js +67 -0
  151. package/project/client/markup/markup-documentation/markup-documentation-embed.js +23 -0
  152. package/project/client/markup/markup-documentation/markup-documentation-html.js +139 -0
  153. package/project/client/markup/markup-documentation/markup-documentation-ie.js +21 -0
  154. package/project/client/markup/markup-documentation/markup-documentation-image.js +46 -0
  155. package/project/client/markup/markup-documentation/markup-documentation-lab.js +19 -0
  156. package/project/client/markup/markup-documentation/markup-documentation-local-note.js +33 -0
  157. package/project/client/markup/markup-documentation/markup-documentation-navigation.js +109 -0
  158. package/project/client/markup/markup-documentation/markup-documentation-page.js +262 -0
  159. package/project/client/markup/markup-documentation/markup-documentation-ref.js +28 -0
  160. package/project/client/markup/markup-documentation/markup-documentation-result.js +21 -0
  161. package/project/client/markup/markup-documentation/markup-documentation-state-machine.js +194 -0
  162. package/project/client/markup/markup-documentation/markup-documentation.js +74 -0
  163. package/project/client/markup/markup-flowchart.js +264 -0
  164. package/project/client/markup/markup-lab.js +116 -0
  165. package/project/client/markup/markup-licenses/markup-licenses.js +29 -0
  166. package/project/client/markup/markup-node-diagram.js +435 -0
  167. package/project/client/markup/markup-parse-helper.js +26 -0
  168. package/project/client/markup/markup-pattern-config.js +53 -0
  169. package/project/client/markup/markup-pattern-data.js +50 -0
  170. package/project/client/markup/markup-pattern-function.js +47 -0
  171. package/project/client/markup/markup-repos/markup-repos.js +31 -0
  172. package/project/client/markup/markup-sequence-diagram.js +466 -0
  173. package/project/client/markup/markup-system-under-test/markup-system-under-test-instances.js +29 -0
  174. package/project/client/markup/markup-system-under-test/markup-system-under-test-nodes.js +30 -0
  175. package/project/client/markup/markup-table-key-value-parse.js +25 -0
  176. package/project/client/markup/markup-table-key-value-stringify.js +91 -0
  177. package/project/client/markup/markup-table-key-value.js +18 -0
  178. package/project/client/markup/markup-table-name-value.js +101 -0
  179. package/project/client/markup/markup-table.js +85 -0
  180. package/project/client/markup/markup-tables-parser.js +122 -0
  181. package/project/client/markup/markup-test-case/markup-test-case.js +67 -0
  182. package/project/client/markup/markup-test-data/markup-test-data-environment.js +31 -0
  183. package/project/client/markup/markup-test-data/markup-test-data-general.js +31 -0
  184. package/project/client/markup/markup-test-data/markup-test-data-output.js +31 -0
  185. package/project/client/markup/markup-test-data/markup-test-data-system.js +31 -0
  186. package/project/client/markup/markup-test-suite/markup-test-suite.js +40 -0
  187. package/project/client/react-components/helper/line-data.js +16 -0
  188. package/project/client/react-components/helper/line-object.js +22 -0
  189. package/project/client/react-components/helper/scroll-data.js +74 -0
  190. package/project/client/react-components/markup/component-chart/component-image-chart-line.jsx +203 -0
  191. package/project/client/react-components/markup/component-code.jsx +50 -0
  192. package/project/client/react-components/markup/component-document.jsx +105 -0
  193. package/project/client/react-components/markup/component-documentation-anchor.jsx +47 -0
  194. package/project/client/react-components/markup/component-embed.jsx +48 -0
  195. package/project/client/react-components/markup/component-image-flowchart.jsx +389 -0
  196. package/project/client/react-components/markup/component-image-image.jsx +32 -0
  197. package/project/client/react-components/markup/component-image-lab.jsx +696 -0
  198. package/project/client/react-components/markup/component-image-node-diagram.jsx +506 -0
  199. package/project/client/react-components/markup/component-image-result.jsx +22 -0
  200. package/project/client/react-components/markup/component-image-sequence-diagram.jsx +645 -0
  201. package/project/client/react-components/markup/component-image-state-machine.jsx +633 -0
  202. package/project/client/react-components/markup/component-image-table.jsx +96 -0
  203. package/project/client/react-components/markup/component-local-note.jsx +99 -0
  204. package/project/client/react-components/markup/component-markup-remarkable.jsx +79 -0
  205. package/project/client/react-components/markup/component-markup.jsx +1036 -0
  206. package/project/client/react-components/markup/component-table-data-table.jsx +146 -0
  207. package/project/client/stores/style-store.js +96 -0
  208. package/project/z-abs-complayer-markup-client.tree +239 -0
@@ -0,0 +1,201 @@
1
+ .middle_login_toolbar{
2
+
3
+ }
4
+
5
+ div.middle_test_suite_iterations{
6
+ position:relative;
7
+ height:28px;
8
+ }
9
+
10
+ select#middle_test_suite_iterations{
11
+ height:26px;
12
+ margin-top:1px;
13
+ margin-right:1px;
14
+ border:1px solid #666;
15
+ }
16
+
17
+ select#middle_test_suite_iterations:valid{
18
+ border:1px solid #666;
19
+ }
20
+
21
+ div.middle_login_toolbar_component{
22
+ position:relative;
23
+ top:-12px;
24
+ padding-left:6px;
25
+ }
26
+
27
+ label.middle_login_toolbar_component{
28
+ padding-left:4px;
29
+ padding-right:4px;
30
+ margin-bottom:3px;
31
+ }
32
+
33
+ div.login_tabs{
34
+ position:absolute;
35
+ top:40px;
36
+ left:0px;
37
+ right:0px;
38
+ bottom:0px;
39
+ }
40
+
41
+ div.test_machine_os_networks{
42
+ margin:12px;
43
+ width:auto;
44
+ border:2px DarkGray solid;
45
+ border-radius:5px;
46
+ float:left;
47
+ }
48
+
49
+ div.test_machine_os_network_name{
50
+ font-weight:bold;
51
+ padding:2px 4px;
52
+ border-bottom:2px Black solid;
53
+ }
54
+
55
+ div.test_machine_os_network_interface{
56
+ padding:2px 4px;
57
+ border-bottom:2px DarkGray solid;
58
+ }
59
+
60
+ div.test_machine_cpus{
61
+ margin:12px;
62
+ width:auto;
63
+ border:2px DarkGray solid;
64
+ border-radius:5px;
65
+ float:left;
66
+ }
67
+
68
+
69
+ circle.outer_address{
70
+ stroke:black;
71
+ stroke-width:1;
72
+ }
73
+
74
+ rect.static_outer_address{
75
+ fill:grey;
76
+ stroke:black;
77
+ stroke-width:2;
78
+ }
79
+
80
+ rect.dynamic_outer_address{
81
+ fill:white;
82
+ stroke:black;
83
+ stroke-width:1.99;
84
+ }
85
+
86
+ circle.static_address_success{
87
+ fill:green;
88
+ stroke:grey;
89
+ stroke-width:2;
90
+ }
91
+
92
+ circle.static_address_external{
93
+ fill:orange;
94
+ stroke:grey;
95
+ stroke-width:2;
96
+ }
97
+
98
+ circle.static_address_reduced{
99
+ fill:yellow;
100
+ stroke:grey;
101
+ stroke-width:2;
102
+ }
103
+
104
+ circle.static_address_failure{
105
+ fill:red;
106
+ stroke:grey;
107
+ stroke-width:2;
108
+ }
109
+
110
+ circle.static_address_multicast{
111
+ fill:Blue;
112
+ stroke:grey;
113
+ stroke-width:2;
114
+ }
115
+
116
+ rect.address_success{
117
+ fill:green;
118
+ stroke:green;
119
+ stroke-width:2;
120
+ }
121
+
122
+ rect.address_external{
123
+ fill:orange;
124
+ stroke:orange;
125
+ stroke-width:2;
126
+ }
127
+
128
+ rect.address_reduced{
129
+ fill:yellow;
130
+ stroke:yellow;
131
+ stroke-width:2;
132
+ }
133
+
134
+ rect.address_failure{
135
+ fill:red;
136
+ stroke:red;
137
+ stroke-width:2;
138
+ }
139
+
140
+ circle.dynamic_address_success{
141
+ fill:green;
142
+ stroke:White;
143
+ stroke-width:2;
144
+ }
145
+
146
+ circle.dynamic_address_reduced{
147
+ fill:yellow;
148
+ stroke:White;
149
+ stroke-width:2;
150
+ }
151
+
152
+ circle.dynamic_address_failure{
153
+ fill:red;
154
+ stroke:White;
155
+ stroke-width:2;
156
+ }
157
+
158
+ circle.dynamic_address_external{
159
+ fill:orange;
160
+ stroke:White;
161
+ stroke-width:2;
162
+ }
163
+
164
+ circle.dynamic_address_multicast{
165
+ fill:Blue;
166
+ stroke:White;
167
+ stroke-width:2;
168
+ }
169
+
170
+ rect.ping_success,
171
+ circle.ping_success {
172
+ fill:LightGreen;
173
+ stroke:SlateGray;
174
+ }
175
+
176
+ rect.ping_failure,
177
+ circle.ping_failure {
178
+ fill:Crimson;
179
+ stroke:SlateGray;
180
+ }
181
+
182
+ rect.ping_undefined,
183
+ circle.ping_undefined {
184
+ fill:LightYellow;
185
+ stroke:SlateGray;
186
+ }
187
+
188
+ rect.ping_none,
189
+ circle.ping_none {
190
+ display:none;
191
+ }
192
+
193
+ td.login_valid_success,
194
+ strong.login_valid_success{
195
+ color:Green;
196
+ }
197
+
198
+ td.login_valid_failure,
199
+ strong.login_valid_failure{
200
+ color:Red;
201
+ }
@@ -0,0 +1,51 @@
1
+
2
+ .seq_dia_unknown{
3
+ stroke:#666;
4
+ }
5
+
6
+ .seq_dia_socket{
7
+ stroke:#00BFFF;
8
+ }
9
+
10
+ .seq_dia_web_socket{
11
+ stroke:Cyan;
12
+ }
13
+
14
+ .seq_dia_http{
15
+ stroke:#90EE90;
16
+ }
17
+
18
+ .seq_dia_diameter{
19
+ stroke:#F08080;
20
+ }
21
+
22
+ .seq_dia_sql{
23
+ stroke:#8A2BE2;
24
+ }
25
+
26
+ rect.node_diagram_square{
27
+ stroke-width:2px;
28
+ fill:transparent;
29
+ stroke:dimgray;
30
+ }
31
+
32
+ polygon.node_diagram_star{
33
+ stroke-width:2px;
34
+ fill:transparent;
35
+ stroke:dimgray;
36
+ }
37
+
38
+ svg.markup_node{
39
+ background-color:#fcfcfc;
40
+ border:1px solid #ccc;
41
+ }
42
+
43
+ rect.node_diagram_group{
44
+ stroke-width:2px;
45
+ fill:transparent;
46
+ stroke:Gainsboro;
47
+ }
48
+
49
+ line.markup_node_diagram_line_unknown_unknown {
50
+ stroke: rgb(102, 102, 102);
51
+ }
@@ -0,0 +1,6 @@
1
+
2
+ polygon.markup_seq_end_point{
3
+ stroke:black;
4
+ stroke-width:1;
5
+ fill:orange;
6
+ }
@@ -0,0 +1,5 @@
1
+
2
+ svg.markup_state{
3
+ background-color:#fcfcfc;
4
+ border:1px solid #ccc;
5
+ }
@@ -0,0 +1,57 @@
1
+
2
+ div.markup_table_fit_content {
3
+ width:-moz-fit-content;
4
+ width:fit-content;
5
+ }
6
+
7
+ div.markup_table_heading {
8
+ color:DarkSlateGray;
9
+ background-color:LightGreen;
10
+ padding:0px 5px;
11
+ font-size:16px;
12
+ }
13
+
14
+ div.markup_table_local,
15
+ div.markup_table_global{
16
+ float:left;
17
+ margin-right:8px;
18
+ }
19
+
20
+ div.markup_table_static {
21
+ float:left;
22
+ }
23
+
24
+ div.markup_table_global_table_heading {
25
+ color:#DDFFFF !important;
26
+ background-color:#CF596A !important;
27
+ padding:0px 5px;
28
+ font-size:16px;
29
+ }
30
+
31
+ div.markup_table_local_table_heading {
32
+ color:#DDFFFF !important;
33
+ background-color:#59CF6A !important;
34
+ padding:0px 5px;
35
+ font-size:16px;
36
+ }
37
+
38
+ div.markup_table_static_table_heading {
39
+ color:#DDFFFF !important;
40
+ background-color:#CF6A59 !important;
41
+ padding:0px 5px;
42
+ font-size:16px;
43
+ }
44
+
45
+ a.markup_table_link{
46
+ color:Gray;
47
+ }
48
+
49
+ a.markup_table_link:hover{
50
+ cursor:pointer;
51
+ text-decoration:underline;
52
+ color:DarkSlateBlue;
53
+ }
54
+
55
+ tr.markup_table_comment_out{
56
+ background-color: lightgoldenrodyellow !important;
57
+ }
@@ -0,0 +1,32 @@
1
+
2
+ div.markup_tc{
3
+ margin-bottom:28px;
4
+ }
5
+
6
+ div.markup_tc{
7
+ display:flow-root;
8
+ background-color:aliceblue;
9
+ padding:20px 8px 0px 8px;
10
+ }
11
+
12
+ div.markup_test_case_table_fit_content {
13
+ width:-moz-fit-content;
14
+ width:fit-content;
15
+ }
16
+
17
+ div.markup_test_case_table_heading {
18
+ color:#DDFFFF;
19
+ background-color:#596ACF;
20
+ padding:0px 5px;
21
+ font-size:16px;
22
+ }
23
+
24
+ table.markup_test_case_table{
25
+ background-color:White;
26
+ }
27
+
28
+ table.markup_test_case_table thead th,
29
+ table.markup_test_case_table tbody td,
30
+ table.markup_test_case_table tbody th {
31
+ padding:0px 5px !important;
32
+ }
@@ -0,0 +1,36 @@
1
+
2
+ div.markup_ts{
3
+ margin-bottom:28px;
4
+ }
5
+
6
+ div.markup_ts{
7
+ display:flow-root;
8
+ background-color:aliceblue;
9
+ padding:20px 8px 0px 8px;
10
+ }
11
+
12
+ div.markup_test_suite_table_fit_content {
13
+ width:-moz-fit-content;
14
+ width:fit-content;
15
+ }
16
+
17
+ div.markup_test_suite_table_heading {
18
+ color:#DDFFFF;
19
+ background:#596ACF;
20
+ padding:0px 5px;
21
+ font-size:16px;
22
+ }
23
+
24
+ table.markup_test_suite_table{
25
+ background-color:White;
26
+ }
27
+
28
+ table.markup_test_suite_table tbody tr{
29
+ white-space:nowrap;
30
+ }
31
+
32
+ table.markup_test_suite_table thead th,
33
+ table.markup_test_suite_table tbody td,
34
+ table.markup_test_suite_table tbody th {
35
+ padding: 0px 5px !important;
36
+ }
@@ -0,0 +1,20 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesClientAddressGlobal extends DataTableKeyValue {
8
+ constructor(interfaceName, sut, labId, userId, address, netmask, external) {
9
+ super();
10
+ this.interfaceName = interfaceName;
11
+ this.sut = sut;
12
+ this.labId = labId;
13
+ this.userId = userId;
14
+ this.address = address;
15
+ this.netmask = netmask;
16
+ this.external = external;
17
+ }
18
+ }
19
+
20
+ module.exports = DataAddressesClientAddressGlobal;
@@ -0,0 +1,20 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesClientAddressLocal extends DataTableKeyValue {
8
+ constructor(interfaceName, sut, labId, userId, address, netmask, external) {
9
+ super();
10
+ this.interfaceName = interfaceName;
11
+ this.sut = sut;
12
+ this.labId = labId;
13
+ this.userId = userId;
14
+ this.address = address;
15
+ this.netmask = netmask;
16
+ this.external = external;
17
+ }
18
+ }
19
+
20
+ module.exports = DataAddressesClientAddressLocal;
@@ -0,0 +1,17 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesClientInterfaceGlobal extends DataTableKeyValue {
8
+ constructor(interfaceName, sut, type, networkName) {
9
+ super();
10
+ this.interfaceName = interfaceName;
11
+ this.sut = sut;
12
+ this.type = type;
13
+ this.networkName = networkName;
14
+ }
15
+ }
16
+
17
+ module.exports = DataAddressesClientInterfaceGlobal;
@@ -0,0 +1,17 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesClientInterfaceLocal extends DataTableKeyValue {
8
+ constructor(interfaceName, sut, type, networkName) {
9
+ super();
10
+ this.interfaceName = interfaceName;
11
+ this.sut = sut;
12
+ this.type = type;
13
+ this.networkName = networkName;
14
+ }
15
+ }
16
+
17
+ module.exports = DataAddressesClientInterfaceLocal;
@@ -0,0 +1,18 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesDnsGlobal extends DataTableKeyValue {
8
+ constructor(uri, interfaceName, sut, labId, userId) {
9
+ super();
10
+ this.uri = uri;
11
+ this.interfaceName = interfaceName;
12
+ this.sut = sut;
13
+ this.labId = labId;
14
+ this.userId = userId;
15
+ }
16
+ }
17
+
18
+ module.exports = DataAddressesDnsGlobal;
@@ -0,0 +1,19 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesDnsLocal extends DataTableKeyValue {
8
+ constructor(uri, interfaceName, sut, labId, userId) {
9
+ super();
10
+ this.uri = uri;
11
+ this.interfaceName = interfaceName;
12
+ this.sut = sut;
13
+ this.labId = labId;
14
+ this.userId = userId;
15
+ }
16
+ }
17
+
18
+
19
+ module.exports = DataAddressesDnsLocal;
@@ -0,0 +1,20 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesDstGlobal extends DataTableKeyValue {
8
+ constructor(addressName, interfaceName, sut, labId, userId, port, uri) {
9
+ super();
10
+ this.addressName = addressName;
11
+ this.interfaceName = interfaceName;
12
+ this.sut = sut;
13
+ this.labId = labId;
14
+ this.userId = userId;
15
+ this.port = port;
16
+ this.uri = uri;
17
+ }
18
+ }
19
+
20
+ module.exports = DataAddressesDstGlobal;
@@ -0,0 +1,20 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesDstLocal extends DataTableKeyValue {
8
+ constructor(addressName, interfaceName, sut, labId, userId, port, uri) {
9
+ super();
10
+ this.addressName = addressName;
11
+ this.interfaceName = interfaceName;
12
+ this.sut = sut;
13
+ this.labId = labId;
14
+ this.userId = userId;
15
+ this.port = port;
16
+ this.uri = uri;
17
+ }
18
+ }
19
+
20
+ module.exports = DataAddressesDstLocal;
@@ -0,0 +1,17 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesNetworkInterfaceGlobal extends DataTableKeyValue {
8
+ constructor(networkName, sut, family, description) {
9
+ super();
10
+ this.networkName = networkName;
11
+ this.sut = sut;
12
+ this.family = family;
13
+ this.description = description;
14
+ }
15
+ }
16
+
17
+ module.exports = DataAddressesNetworkInterfaceGlobal;
@@ -0,0 +1,17 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesNetworkInterfaceLocal extends DataTableKeyValue {
8
+ constructor(networkName, sut, family, description) {
9
+ super();
10
+ this.networkName = networkName;
11
+ this.sut = sut;
12
+ this.family = family;
13
+ this.description = description;
14
+ }
15
+ }
16
+
17
+ module.exports = DataAddressesNetworkInterfaceLocal;
@@ -0,0 +1,18 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesPortsGlobal extends DataTableKeyValue {
8
+ constructor(portName, sut, labId, userId, port) {
9
+ super();
10
+ this.portName = portName;
11
+ this.sut = sut;
12
+ this.labId = labId;
13
+ this.userId = userId;
14
+ this.port = port;
15
+ }
16
+ }
17
+
18
+ module.exports = DataAddressesPortsGlobal;
@@ -0,0 +1,18 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesPortsLocal extends DataTableKeyValue {
8
+ constructor(portName, sut, labId, userId, port) {
9
+ super();
10
+ this.portName = portName;
11
+ this.sut = sut;
12
+ this.labId = labId;
13
+ this.userId = userId;
14
+ this.port = port;
15
+ }
16
+ }
17
+
18
+ module.exports = DataAddressesPortsLocal;
@@ -0,0 +1,20 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesServerAddressGlobal extends DataTableKeyValue {
8
+ constructor(interfaceName, sut, labId, userId, address, netmask, external) {
9
+ super();
10
+ this.interfaceName = interfaceName;
11
+ this.sut = sut;
12
+ this.labId = labId;
13
+ this.userId = userId;
14
+ this.address = address;
15
+ this.netmask = netmask;
16
+ this.external = external;
17
+ }
18
+ }
19
+
20
+ module.exports = DataAddressesServerAddressGlobal;
@@ -0,0 +1,20 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesServerAddressLocal extends DataTableKeyValue {
8
+ constructor(interfaceName, sut, labId, userId, address, netmask, external) {
9
+ super();
10
+ this.interfaceName = interfaceName;
11
+ this.sut = sut;
12
+ this.labId = labId;
13
+ this.userId = userId;
14
+ this.address = address;
15
+ this.netmask = netmask;
16
+ this.external = external;
17
+ }
18
+ }
19
+
20
+ module.exports = DataAddressesServerAddressLocal;
@@ -0,0 +1,17 @@
1
+
2
+ 'use strict';
3
+
4
+ const DataTableKeyValue = require('../data-table-key-value');
5
+
6
+
7
+ class DataAddressesServerInterfaceGlobal extends DataTableKeyValue {
8
+ constructor(interfaceName, sut, type, networkName) {
9
+ super();
10
+ this.interfaceName = interfaceName;
11
+ this.sut = sut;
12
+ this.type = type;
13
+ this.networkName = networkName;
14
+ }
15
+ }
16
+
17
+ module.exports = DataAddressesServerInterfaceGlobal;