@into-cps-association/libms 0.4.5 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DEVELOPER.md +80 -0
- package/DOCKER.md +295 -0
- package/README.md +8 -0
- package/compose.lib.dev.yml +9 -0
- package/compose.lib.yml +8 -0
- package/dist/src/app.module.d.ts +2 -1
- package/dist/src/app.module.js +14 -16
- package/dist/src/app.module.js.map +1 -1
- package/dist/src/bootstrap.d.ts +3 -3
- package/dist/src/bootstrap.js +13 -13
- package/dist/src/bootstrap.js.map +1 -1
- package/dist/src/cloudcmd/cloudcmd.d.ts +1 -5
- package/dist/src/cloudcmd/cloudcmd.js +15 -9
- package/dist/src/cloudcmd/cloudcmd.js.map +1 -1
- package/dist/src/enums/config-mode.enum.d.ts +4 -0
- package/dist/src/enums/config-mode.enum.js +6 -0
- package/dist/src/enums/config-mode.enum.js.map +1 -0
- package/dist/src/files/files-service.factory.d.ts +5 -0
- package/dist/src/files/files-service.factory.js +22 -0
- package/dist/src/files/files-service.factory.js.map +1 -0
- package/dist/src/files/files.module.d.ts +2 -1
- package/dist/src/files/files.module.js +23 -9
- package/dist/src/files/files.module.js.map +1 -1
- package/dist/src/files/files.resolver.d.ts +8 -0
- package/dist/src/files/{resolvers/files.resolver.js → files.resolver.js} +14 -14
- package/dist/src/files/files.resolver.js.map +1 -0
- package/dist/src/files/git/git-files.module.d.ts +2 -0
- package/dist/src/files/git/git-files.module.js +19 -0
- package/dist/src/files/git/git-files.module.js.map +1 -0
- package/dist/src/files/git/git-files.service.d.ts +14 -0
- package/dist/src/files/git/git-files.service.js +67 -0
- package/dist/src/files/git/git-files.service.js.map +1 -0
- package/dist/src/files/interfaces/files.service.interface.d.ts +6 -3
- package/dist/src/files/interfaces/files.service.interface.js +1 -2
- package/dist/src/files/interfaces/files.service.interface.js.map +1 -1
- package/dist/src/files/local/local-files.module.d.ts +2 -0
- package/dist/src/files/local/local-files.module.js +18 -0
- package/dist/src/files/local/local-files.module.js.map +1 -0
- package/dist/src/files/local/local-files.service.d.ts +14 -0
- package/dist/src/files/{services → local}/local-files.service.js +17 -15
- package/dist/src/files/local/local-files.service.js.map +1 -0
- package/dist/src/main.js +4 -6
- package/dist/src/main.js.map +1 -1
- package/dist/src/types.d.ts +19 -19
- package/dist/src/types.js +56 -59
- package/dist/src/types.js.map +1 -1
- package/dist/test/cloudcmd/cloudcmd.spec.js +14 -16
- package/dist/test/cloudcmd/cloudcmd.spec.js.map +1 -1
- package/dist/test/e2e/app.e2e.spec.js +18 -18
- package/dist/test/e2e/app.e2e.spec.js.map +1 -1
- package/dist/test/integration/files.service.integration.spec.js +28 -19
- package/dist/test/integration/files.service.integration.spec.js.map +1 -1
- package/dist/test/testUtil.d.ts +66 -68
- package/dist/test/testUtil.js +21 -23
- package/dist/test/testUtil.js.map +1 -1
- package/dist/test/unit/files-service.factory.unit.spec.js +22 -16
- package/dist/test/unit/files-service.factory.unit.spec.js.map +1 -1
- package/dist/test/unit/files.resolver.unit.spec.js +26 -24
- package/dist/test/unit/files.resolver.unit.spec.js.map +1 -1
- package/dist/test/unit/git-files.service.unit.spec.d.ts +1 -0
- package/dist/test/unit/git-files.service.unit.spec.js +55 -0
- package/dist/test/unit/git-files.service.unit.spec.js.map +1 -0
- package/dist/test/unit/local-files.service.unit.spec.js +23 -24
- package/dist/test/unit/local-files.service.unit.spec.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/eslint.config.js +60 -0
- package/jest.config.ts +47 -0
- package/package.json +55 -48
- package/src/app.module.ts +1 -1
- package/src/bootstrap.ts +7 -3
- package/src/cloudcmd/cloudcmd.ts +11 -3
- package/src/enums/config-mode.enum.ts +4 -0
- package/src/files/files-service.factory.ts +19 -0
- package/src/files/files.module.ts +24 -4
- package/src/files/{resolvers/files.resolver.ts → files.resolver.ts} +9 -8
- package/src/files/git/git-files.module.ts +9 -0
- package/src/files/git/git-files.service.ts +58 -0
- package/src/files/interfaces/files.service.interface.ts +4 -1
- package/src/files/local/local-files.module.ts +8 -0
- package/src/files/{services → local}/local-files.service.ts +15 -10
- package/src/main.ts +1 -1
- package/test/cloudcmd/cloudcmd.spec.ts +4 -6
- package/test/e2e/app.e2e.spec.ts +4 -3
- package/test/integration/files.service.integration.spec.ts +19 -4
- package/test/testUtil.ts +3 -0
- package/test/unit/files-service.factory.unit.spec.ts +24 -10
- package/test/unit/files.resolver.unit.spec.ts +19 -12
- package/test/unit/git-files.service.unit.spec.ts +81 -0
- package/test/unit/local-files.service.unit.spec.ts +4 -2
- package/tsconfig.json +10 -7
- package/.env +0 -6
- package/.eslintignore +0 -6
- package/.eslintrc +0 -53
- package/coverage/clover.xml +0 -162
- package/coverage/cobertura-coverage.xml +0 -306
- package/coverage/coverage-final.json +0 -8
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -87
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +0 -176
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -196
- package/coverage/lcov-report/src/bootstrap.ts.html +0 -196
- package/coverage/lcov-report/src/cloudcmd/cloudcmd.ts.html +0 -181
- package/coverage/lcov-report/src/cloudcmd/index.html +0 -116
- package/coverage/lcov-report/src/files/files.module.ts.html +0 -112
- package/coverage/lcov-report/src/files/index.html +0 -116
- package/coverage/lcov-report/src/files/resolvers/files.resolver.ts.html +0 -154
- package/coverage/lcov-report/src/files/resolvers/index.html +0 -116
- package/coverage/lcov-report/src/files/services/files-service.factory.ts.html +0 -151
- package/coverage/lcov-report/src/files/services/index.html +0 -131
- package/coverage/lcov-report/src/files/services/local-files.service.ts.html +0 -313
- package/coverage/lcov-report/src/index.html +0 -131
- package/coverage/lcov-report/src/types.ts.html +0 -361
- package/coverage/lcov.info +0 -237
- package/dist/src/files/resolvers/files.resolver.d.ts +0 -8
- package/dist/src/files/resolvers/files.resolver.js.map +0 -1
- package/dist/src/files/services/files-service.factory.d.ts +0 -12
- package/dist/src/files/services/files-service.factory.js +0 -40
- package/dist/src/files/services/files-service.factory.js.map +0 -1
- package/dist/src/files/services/local-files.service.d.ts +0 -11
- package/dist/src/files/services/local-files.service.js.map +0 -1
- package/jest.config.json +0 -30
- package/src/files/services/files-service.factory.ts +0 -22
- /package/{pm2.config.js → pm2.config.cjs} +0 -0
|
@@ -1,306 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" ?>
|
|
2
|
-
<!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd">
|
|
3
|
-
<coverage lines-valid="120" lines-covered="89" line-rate="0.7415999999999999" branches-valid="8" branches-covered="2" branch-rate="0.25" timestamp="1717597601365" complexity="0" version="0.1">
|
|
4
|
-
<sources>
|
|
5
|
-
<source>/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib</source>
|
|
6
|
-
</sources>
|
|
7
|
-
<packages>
|
|
8
|
-
<package name="src" line-rate="0.6785" branch-rate="0">
|
|
9
|
-
<classes>
|
|
10
|
-
<class name="bootstrap.ts" filename="src/bootstrap.ts" line-rate="0" branch-rate="0">
|
|
11
|
-
<methods>
|
|
12
|
-
<method name="bootstrap" hits="0" signature="()V">
|
|
13
|
-
<lines>
|
|
14
|
-
<line number="13" hits="0"/>
|
|
15
|
-
</lines>
|
|
16
|
-
</method>
|
|
17
|
-
</methods>
|
|
18
|
-
<lines>
|
|
19
|
-
<line number="1" hits="0" branch="false"/>
|
|
20
|
-
<line number="2" hits="0" branch="false"/>
|
|
21
|
-
<line number="3" hits="0" branch="false"/>
|
|
22
|
-
<line number="4" hits="0" branch="false"/>
|
|
23
|
-
<line number="5" hits="0" branch="false"/>
|
|
24
|
-
<line number="13" hits="0" branch="false"/>
|
|
25
|
-
<line number="14" hits="0" branch="false"/>
|
|
26
|
-
<line number="18" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
27
|
-
<line number="20" hits="0" branch="false"/>
|
|
28
|
-
<line number="21" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
29
|
-
<line number="22" hits="0" branch="false"/>
|
|
30
|
-
<line number="24" hits="0" branch="false"/>
|
|
31
|
-
<line number="28" hits="0" branch="false"/>
|
|
32
|
-
<line number="29" hits="0" branch="false"/>
|
|
33
|
-
<line number="30" hits="0" branch="false"/>
|
|
34
|
-
<line number="32" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
35
|
-
<line number="33" hits="0" branch="false"/>
|
|
36
|
-
<line number="36" hits="0" branch="false"/>
|
|
37
|
-
</lines>
|
|
38
|
-
</class>
|
|
39
|
-
<class name="types.ts" filename="src/types.ts" line-rate="1" branch-rate="1">
|
|
40
|
-
<methods>
|
|
41
|
-
<method name="(anonymous_2)" hits="3" signature="()V">
|
|
42
|
-
<lines>
|
|
43
|
-
<line number="14" hits="3"/>
|
|
44
|
-
</lines>
|
|
45
|
-
</method>
|
|
46
|
-
<method name="(anonymous_3)" hits="3" signature="()V">
|
|
47
|
-
<lines>
|
|
48
|
-
<line number="20" hits="3"/>
|
|
49
|
-
</lines>
|
|
50
|
-
</method>
|
|
51
|
-
<method name="(anonymous_4)" hits="3" signature="()V">
|
|
52
|
-
<lines>
|
|
53
|
-
<line number="35" hits="3"/>
|
|
54
|
-
</lines>
|
|
55
|
-
</method>
|
|
56
|
-
<method name="(anonymous_5)" hits="3" signature="()V">
|
|
57
|
-
<lines>
|
|
58
|
-
<line number="41" hits="3"/>
|
|
59
|
-
</lines>
|
|
60
|
-
</method>
|
|
61
|
-
<method name="(anonymous_6)" hits="3" signature="()V">
|
|
62
|
-
<lines>
|
|
63
|
-
<line number="67" hits="3"/>
|
|
64
|
-
</lines>
|
|
65
|
-
</method>
|
|
66
|
-
<method name="(anonymous_7)" hits="3" signature="()V">
|
|
67
|
-
<lines>
|
|
68
|
-
<line number="81" hits="3"/>
|
|
69
|
-
</lines>
|
|
70
|
-
</method>
|
|
71
|
-
</methods>
|
|
72
|
-
<lines>
|
|
73
|
-
<line number="1" hits="3" branch="false"/>
|
|
74
|
-
<line number="4" hits="3" branch="false"/>
|
|
75
|
-
<line number="6" hits="3" branch="false"/>
|
|
76
|
-
<line number="9" hits="3" branch="false"/>
|
|
77
|
-
<line number="13" hits="3" branch="false"/>
|
|
78
|
-
<line number="14" hits="3" branch="false"/>
|
|
79
|
-
<line number="15" hits="3" branch="false"/>
|
|
80
|
-
<line number="19" hits="3" branch="false"/>
|
|
81
|
-
<line number="20" hits="3" branch="false"/>
|
|
82
|
-
<line number="21" hits="3" branch="false"/>
|
|
83
|
-
<line number="25" hits="3" branch="false"/>
|
|
84
|
-
<line number="27" hits="3" branch="false"/>
|
|
85
|
-
<line number="30" hits="3" branch="false"/>
|
|
86
|
-
<line number="34" hits="3" branch="false"/>
|
|
87
|
-
<line number="35" hits="3" branch="false"/>
|
|
88
|
-
<line number="36" hits="3" branch="false"/>
|
|
89
|
-
<line number="40" hits="3" branch="false"/>
|
|
90
|
-
<line number="41" hits="3" branch="false"/>
|
|
91
|
-
<line number="42" hits="3" branch="false"/>
|
|
92
|
-
<line number="46" hits="3" branch="false"/>
|
|
93
|
-
<line number="48" hits="3" branch="false"/>
|
|
94
|
-
<line number="51" hits="3" branch="false"/>
|
|
95
|
-
<line number="55" hits="3" branch="false"/>
|
|
96
|
-
<line number="57" hits="3" branch="false"/>
|
|
97
|
-
<line number="60" hits="3" branch="false"/>
|
|
98
|
-
<line number="63" hits="3" branch="false"/>
|
|
99
|
-
<line number="66" hits="3" branch="false"/>
|
|
100
|
-
<line number="67" hits="3" branch="false"/>
|
|
101
|
-
<line number="68" hits="3" branch="false"/>
|
|
102
|
-
<line number="72" hits="3" branch="false"/>
|
|
103
|
-
<line number="74" hits="3" branch="false"/>
|
|
104
|
-
<line number="77" hits="3" branch="false"/>
|
|
105
|
-
<line number="80" hits="3" branch="false"/>
|
|
106
|
-
<line number="81" hits="3" branch="false"/>
|
|
107
|
-
<line number="82" hits="3" branch="false"/>
|
|
108
|
-
<line number="86" hits="3" branch="false"/>
|
|
109
|
-
<line number="88" hits="3" branch="false"/>
|
|
110
|
-
<line number="91" hits="3" branch="false"/>
|
|
111
|
-
</lines>
|
|
112
|
-
</class>
|
|
113
|
-
</classes>
|
|
114
|
-
</package>
|
|
115
|
-
<package name="src.cloudcmd" line-rate="0" branch-rate="1">
|
|
116
|
-
<classes>
|
|
117
|
-
<class name="cloudcmd.ts" filename="src/cloudcmd/cloudcmd.ts" line-rate="0" branch-rate="1">
|
|
118
|
-
<methods>
|
|
119
|
-
<method name="(anonymous_0)" hits="0" signature="()V">
|
|
120
|
-
<lines>
|
|
121
|
-
<line number="6" hits="0"/>
|
|
122
|
-
</lines>
|
|
123
|
-
</method>
|
|
124
|
-
</methods>
|
|
125
|
-
<lines>
|
|
126
|
-
<line number="2" hits="0" branch="false"/>
|
|
127
|
-
<line number="3" hits="0" branch="false"/>
|
|
128
|
-
<line number="4" hits="0" branch="false"/>
|
|
129
|
-
<line number="6" hits="0" branch="false"/>
|
|
130
|
-
<line number="11" hits="0" branch="false"/>
|
|
131
|
-
<line number="12" hits="0" branch="false"/>
|
|
132
|
-
<line number="16" hits="0" branch="false"/>
|
|
133
|
-
<line number="18" hits="0" branch="false"/>
|
|
134
|
-
<line number="20" hits="0" branch="false"/>
|
|
135
|
-
<line number="23" hits="0" branch="false"/>
|
|
136
|
-
<line number="32" hits="0" branch="false"/>
|
|
137
|
-
</lines>
|
|
138
|
-
</class>
|
|
139
|
-
</classes>
|
|
140
|
-
</package>
|
|
141
|
-
<package name="src.files" line-rate="1" branch-rate="1">
|
|
142
|
-
<classes>
|
|
143
|
-
<class name="files.module.ts" filename="src/files/files.module.ts" line-rate="1" branch-rate="1">
|
|
144
|
-
<methods>
|
|
145
|
-
</methods>
|
|
146
|
-
<lines>
|
|
147
|
-
<line number="1" hits="1" branch="false"/>
|
|
148
|
-
<line number="2" hits="1" branch="false"/>
|
|
149
|
-
<line number="3" hits="1" branch="false"/>
|
|
150
|
-
<line number="4" hits="1" branch="false"/>
|
|
151
|
-
<line number="9" hits="1" branch="false"/>
|
|
152
|
-
</lines>
|
|
153
|
-
</class>
|
|
154
|
-
</classes>
|
|
155
|
-
</package>
|
|
156
|
-
<package name="src.files.resolvers" line-rate="1" branch-rate="1">
|
|
157
|
-
<classes>
|
|
158
|
-
<class name="files.resolver.ts" filename="src/files/resolvers/files.resolver.ts" line-rate="1" branch-rate="1">
|
|
159
|
-
<methods>
|
|
160
|
-
<method name="(anonymous_4)" hits="9" signature="()V">
|
|
161
|
-
<lines>
|
|
162
|
-
<line number="10" hits="9"/>
|
|
163
|
-
</lines>
|
|
164
|
-
</method>
|
|
165
|
-
<method name="(anonymous_5)" hits="4" signature="()V">
|
|
166
|
-
<lines>
|
|
167
|
-
<line number="15" hits="4"/>
|
|
168
|
-
</lines>
|
|
169
|
-
</method>
|
|
170
|
-
<method name="(anonymous_6)" hits="4" signature="()V">
|
|
171
|
-
<lines>
|
|
172
|
-
<line number="20" hits="4"/>
|
|
173
|
-
</lines>
|
|
174
|
-
</method>
|
|
175
|
-
<method name="(anonymous_7)" hits="2" signature="()V">
|
|
176
|
-
<lines>
|
|
177
|
-
<line number="14" hits="2"/>
|
|
178
|
-
</lines>
|
|
179
|
-
</method>
|
|
180
|
-
<method name="(anonymous_8)" hits="2" signature="()V">
|
|
181
|
-
<lines>
|
|
182
|
-
<line number="19" hits="2"/>
|
|
183
|
-
</lines>
|
|
184
|
-
</method>
|
|
185
|
-
</methods>
|
|
186
|
-
<lines>
|
|
187
|
-
<line number="1" hits="3" branch="false"/>
|
|
188
|
-
<line number="3" hits="3" branch="false"/>
|
|
189
|
-
<line number="4" hits="3" branch="false"/>
|
|
190
|
-
<line number="7" hits="3" branch="false"/>
|
|
191
|
-
<line number="11" hits="9" branch="false"/>
|
|
192
|
-
<line number="14" hits="2" branch="false"/>
|
|
193
|
-
<line number="15" hits="3" branch="false"/>
|
|
194
|
-
<line number="16" hits="4" branch="false"/>
|
|
195
|
-
<line number="19" hits="2" branch="false"/>
|
|
196
|
-
<line number="20" hits="3" branch="false"/>
|
|
197
|
-
<line number="21" hits="4" branch="false"/>
|
|
198
|
-
</lines>
|
|
199
|
-
</class>
|
|
200
|
-
</classes>
|
|
201
|
-
</package>
|
|
202
|
-
<package name="src.files.services" line-rate="0.9459000000000001" branch-rate="1">
|
|
203
|
-
<classes>
|
|
204
|
-
<class name="files-service.factory.ts" filename="src/files/services/files-service.factory.ts" line-rate="1" branch-rate="1">
|
|
205
|
-
<methods>
|
|
206
|
-
<method name="(anonymous_4)" hits="6" signature="()V">
|
|
207
|
-
<lines>
|
|
208
|
-
<line number="9" hits="6"/>
|
|
209
|
-
</lines>
|
|
210
|
-
</method>
|
|
211
|
-
<method name="(anonymous_5)" hits="6" signature="()V">
|
|
212
|
-
<lines>
|
|
213
|
-
<line number="15" hits="6"/>
|
|
214
|
-
</lines>
|
|
215
|
-
</method>
|
|
216
|
-
</methods>
|
|
217
|
-
<lines>
|
|
218
|
-
<line number="1" hits="4" branch="false"/>
|
|
219
|
-
<line number="2" hits="4" branch="false"/>
|
|
220
|
-
<line number="4" hits="4" branch="false"/>
|
|
221
|
-
<line number="7" hits="4" branch="false"/>
|
|
222
|
-
<line number="10" hits="6" branch="false"/>
|
|
223
|
-
<line number="11" hits="6" branch="false"/>
|
|
224
|
-
<line number="16" hits="6" branch="false"/>
|
|
225
|
-
<line number="17" hits="6" branch="true" condition-coverage="100% (1/1)"/>
|
|
226
|
-
<line number="18" hits="5" branch="false"/>
|
|
227
|
-
<line number="20" hits="1" branch="false"/>
|
|
228
|
-
</lines>
|
|
229
|
-
</class>
|
|
230
|
-
<class name="local-files.service.ts" filename="src/files/services/local-files.service.ts" line-rate="0.9259000000000001" branch-rate="1">
|
|
231
|
-
<methods>
|
|
232
|
-
<method name="(anonymous_2)" hits="9" signature="()V">
|
|
233
|
-
<lines>
|
|
234
|
-
<line number="11" hits="9"/>
|
|
235
|
-
</lines>
|
|
236
|
-
</method>
|
|
237
|
-
<method name="(anonymous_3)" hits="4" signature="()V">
|
|
238
|
-
<lines>
|
|
239
|
-
<line number="13" hits="4"/>
|
|
240
|
-
</lines>
|
|
241
|
-
</method>
|
|
242
|
-
<method name="(anonymous_4)" hits="20" signature="()V">
|
|
243
|
-
<lines>
|
|
244
|
-
<line number="20" hits="20"/>
|
|
245
|
-
</lines>
|
|
246
|
-
</method>
|
|
247
|
-
<method name="(anonymous_5)" hits="20" signature="()V">
|
|
248
|
-
<lines>
|
|
249
|
-
<line number="25" hits="20"/>
|
|
250
|
-
</lines>
|
|
251
|
-
</method>
|
|
252
|
-
<method name="(anonymous_6)" hits="20" signature="()V">
|
|
253
|
-
<lines>
|
|
254
|
-
<line number="28" hits="20"/>
|
|
255
|
-
</lines>
|
|
256
|
-
</method>
|
|
257
|
-
<method name="(anonymous_7)" hits="4" signature="()V">
|
|
258
|
-
<lines>
|
|
259
|
-
<line number="35" hits="4"/>
|
|
260
|
-
</lines>
|
|
261
|
-
</method>
|
|
262
|
-
<method name="(anonymous_8)" hits="20" signature="()V">
|
|
263
|
-
<lines>
|
|
264
|
-
<line number="52" hits="20"/>
|
|
265
|
-
</lines>
|
|
266
|
-
</method>
|
|
267
|
-
<method name="(anonymous_9)" hits="4" signature="()V">
|
|
268
|
-
<lines>
|
|
269
|
-
<line number="60" hits="4"/>
|
|
270
|
-
</lines>
|
|
271
|
-
</method>
|
|
272
|
-
</methods>
|
|
273
|
-
<lines>
|
|
274
|
-
<line number="1" hits="5" branch="false"/>
|
|
275
|
-
<line number="2" hits="5" branch="false"/>
|
|
276
|
-
<line number="3" hits="5" branch="false"/>
|
|
277
|
-
<line number="4" hits="5" branch="false"/>
|
|
278
|
-
<line number="9" hits="5" branch="false"/>
|
|
279
|
-
<line number="11" hits="9" branch="false"/>
|
|
280
|
-
<line number="14" hits="4" branch="false"/>
|
|
281
|
-
<line number="15" hits="4" branch="false"/>
|
|
282
|
-
<line number="17" hits="4" branch="false"/>
|
|
283
|
-
<line number="19" hits="4" branch="false"/>
|
|
284
|
-
<line number="20" hits="20" branch="false"/>
|
|
285
|
-
<line number="23" hits="4" branch="false"/>
|
|
286
|
-
<line number="25" hits="20" branch="false"/>
|
|
287
|
-
<line number="28" hits="20" branch="false"/>
|
|
288
|
-
<line number="32" hits="4" branch="false"/>
|
|
289
|
-
<line number="36" hits="4" branch="false"/>
|
|
290
|
-
<line number="37" hits="4" branch="false"/>
|
|
291
|
-
<line number="39" hits="4" branch="false"/>
|
|
292
|
-
<line number="40" hits="4" branch="false"/>
|
|
293
|
-
<line number="44" hits="4" branch="false"/>
|
|
294
|
-
<line number="46" hits="4" branch="false"/>
|
|
295
|
-
<line number="48" hits="0" branch="false"/>
|
|
296
|
-
<line number="53" hits="20" branch="false"/>
|
|
297
|
-
<line number="54" hits="20" branch="true" condition-coverage="100% (1/1)"/>
|
|
298
|
-
<line number="55" hits="20" branch="false"/>
|
|
299
|
-
<line number="57" hits="0" branch="false"/>
|
|
300
|
-
<line number="62" hits="4" branch="false"/>
|
|
301
|
-
</lines>
|
|
302
|
-
</class>
|
|
303
|
-
</classes>
|
|
304
|
-
</package>
|
|
305
|
-
</packages>
|
|
306
|
-
</coverage>
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
{"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/bootstrap.ts": {"path":"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/bootstrap.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":43}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":47}},"2":{"start":{"line":3,"column":0},"end":{"line":3,"column":33}},"3":{"start":{"line":4,"column":0},"end":{"line":4,"column":37}},"4":{"start":{"line":5,"column":0},"end":{"line":5,"column":43}},"5":{"start":{"line":14,"column":21},"end":{"line":17,"column":4}},"6":{"start":{"line":18,"column":2},"end":{"line":26,"column":3}},"7":{"start":{"line":20,"column":4},"end":{"line":20,"column":36}},"8":{"start":{"line":21,"column":4},"end":{"line":25,"column":5}},"9":{"start":{"line":22,"column":6},"end":{"line":22,"column":24}},"10":{"start":{"line":24,"column":6},"end":{"line":24,"column":22}},"11":{"start":{"line":28,"column":14},"end":{"line":28,"column":49}},"12":{"start":{"line":29,"column":24},"end":{"line":29,"column":46}},"13":{"start":{"line":30,"column":15},"end":{"line":30,"column":48}},"14":{"start":{"line":32,"column":2},"end":{"line":34,"column":3}},"15":{"start":{"line":33,"column":4},"end":{"line":33,"column":79}},"16":{"start":{"line":36,"column":2},"end":{"line":36,"column":25}},"17":{"start":{"line":13,"column":0},"end":{"line":13,"column":15}}},"fnMap":{"0":{"name":"bootstrap","decl":{"start":{"line":13,"column":30},"end":{"line":13,"column":39}},"loc":{"start":{"line":13,"column":66},"end":{"line":37,"column":1}}}},"branchMap":{"0":{"loc":{"start":{"line":15,"column":10},"end":{"line":15,"column":35}},"type":"binary-expr","locations":[{"start":{"line":15,"column":10},"end":{"line":15,"column":25}},{"start":{"line":15,"column":29},"end":{"line":15,"column":35}}]},"1":{"loc":{"start":{"line":18,"column":2},"end":{"line":26,"column":3}},"type":"if","locations":[{"start":{"line":18,"column":2},"end":{"line":26,"column":3}}]},"2":{"loc":{"start":{"line":21,"column":4},"end":{"line":25,"column":5}},"type":"if","locations":[{"start":{"line":21,"column":4},"end":{"line":25,"column":5}},{"start":{"line":23,"column":11},"end":{"line":25,"column":5}}]},"3":{"loc":{"start":{"line":32,"column":2},"end":{"line":34,"column":3}},"type":"if","locations":[{"start":{"line":32,"column":2},"end":{"line":34,"column":3}}]}},"s":{"0":0,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0},"f":{"0":0},"b":{"0":[0,0],"1":[0],"2":[0,0],"3":[0]}}
|
|
2
|
-
,"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/types.ts": {"path":"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/types.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":52}},"1":{"start":{"line":4,"column":7},"end":{"line":10,"column":null}},"2":{"start":{"line":4,"column":13},"end":{"line":4,"column":17}},"3":{"start":{"line":6,"column":2},"end":{"line":6,"column":null}},"4":{"start":{"line":9,"column":2},"end":{"line":9,"column":null}},"5":{"start":{"line":4,"column":13},"end":{"line":10,"column":null}},"6":{"start":{"line":13,"column":7},"end":{"line":16,"column":null}},"7":{"start":{"line":13,"column":13},"end":{"line":13,"column":21}},"8":{"start":{"line":15,"column":2},"end":{"line":15,"column":null}},"9":{"start":{"line":14,"column":15},"end":{"line":14,"column":19}},"10":{"start":{"line":13,"column":13},"end":{"line":16,"column":null}},"11":{"start":{"line":19,"column":7},"end":{"line":22,"column":null}},"12":{"start":{"line":19,"column":13},"end":{"line":19,"column":27}},"13":{"start":{"line":21,"column":2},"end":{"line":21,"column":null}},"14":{"start":{"line":20,"column":15},"end":{"line":20,"column":25}},"15":{"start":{"line":19,"column":13},"end":{"line":22,"column":null}},"16":{"start":{"line":25,"column":7},"end":{"line":31,"column":null}},"17":{"start":{"line":25,"column":13},"end":{"line":25,"column":22}},"18":{"start":{"line":27,"column":2},"end":{"line":27,"column":null}},"19":{"start":{"line":30,"column":2},"end":{"line":30,"column":null}},"20":{"start":{"line":25,"column":13},"end":{"line":31,"column":null}},"21":{"start":{"line":34,"column":7},"end":{"line":37,"column":null}},"22":{"start":{"line":34,"column":13},"end":{"line":34,"column":21}},"23":{"start":{"line":36,"column":2},"end":{"line":36,"column":null}},"24":{"start":{"line":35,"column":15},"end":{"line":35,"column":24}},"25":{"start":{"line":34,"column":13},"end":{"line":37,"column":null}},"26":{"start":{"line":40,"column":7},"end":{"line":43,"column":null}},"27":{"start":{"line":40,"column":13},"end":{"line":40,"column":27}},"28":{"start":{"line":42,"column":2},"end":{"line":42,"column":null}},"29":{"start":{"line":41,"column":15},"end":{"line":41,"column":25}},"30":{"start":{"line":40,"column":13},"end":{"line":43,"column":null}},"31":{"start":{"line":46,"column":7},"end":{"line":52,"column":null}},"32":{"start":{"line":46,"column":13},"end":{"line":46,"column":17}},"33":{"start":{"line":48,"column":2},"end":{"line":48,"column":null}},"34":{"start":{"line":51,"column":2},"end":{"line":51,"column":null}},"35":{"start":{"line":46,"column":13},"end":{"line":52,"column":null}},"36":{"start":{"line":55,"column":7},"end":{"line":64,"column":null}},"37":{"start":{"line":55,"column":13},"end":{"line":55,"column":27}},"38":{"start":{"line":57,"column":2},"end":{"line":57,"column":null}},"39":{"start":{"line":60,"column":2},"end":{"line":60,"column":null}},"40":{"start":{"line":63,"column":2},"end":{"line":63,"column":null}},"41":{"start":{"line":55,"column":13},"end":{"line":64,"column":null}},"42":{"start":{"line":66,"column":7},"end":{"line":69,"column":null}},"43":{"start":{"line":66,"column":13},"end":{"line":66,"column":37}},"44":{"start":{"line":68,"column":2},"end":{"line":68,"column":null}},"45":{"start":{"line":67,"column":15},"end":{"line":67,"column":31}},"46":{"start":{"line":66,"column":13},"end":{"line":69,"column":null}},"47":{"start":{"line":72,"column":7},"end":{"line":78,"column":null}},"48":{"start":{"line":72,"column":13},"end":{"line":72,"column":23}},"49":{"start":{"line":74,"column":2},"end":{"line":74,"column":null}},"50":{"start":{"line":77,"column":2},"end":{"line":77,"column":null}},"51":{"start":{"line":72,"column":13},"end":{"line":78,"column":null}},"52":{"start":{"line":80,"column":7},"end":{"line":83,"column":null}},"53":{"start":{"line":80,"column":13},"end":{"line":80,"column":20}},"54":{"start":{"line":82,"column":2},"end":{"line":82,"column":null}},"55":{"start":{"line":81,"column":15},"end":{"line":81,"column":25}},"56":{"start":{"line":80,"column":13},"end":{"line":83,"column":null}},"57":{"start":{"line":86,"column":7},"end":{"line":92,"column":null}},"58":{"start":{"line":86,"column":13},"end":{"line":86,"column":18}},"59":{"start":{"line":88,"column":2},"end":{"line":88,"column":null}},"60":{"start":{"line":91,"column":2},"end":{"line":91,"column":null}},"61":{"start":{"line":86,"column":13},"end":{"line":92,"column":null}}},"fnMap":{"0":{"name":"(anonymous_2)","decl":{"start":{"line":14,"column":9},"end":{"line":14,"column":12}},"loc":{"start":{"line":14,"column":15},"end":{"line":14,"column":19}}},"1":{"name":"(anonymous_3)","decl":{"start":{"line":20,"column":9},"end":{"line":20,"column":12}},"loc":{"start":{"line":20,"column":15},"end":{"line":20,"column":25}}},"2":{"name":"(anonymous_4)","decl":{"start":{"line":35,"column":9},"end":{"line":35,"column":12}},"loc":{"start":{"line":35,"column":15},"end":{"line":35,"column":24}}},"3":{"name":"(anonymous_5)","decl":{"start":{"line":41,"column":9},"end":{"line":41,"column":12}},"loc":{"start":{"line":41,"column":15},"end":{"line":41,"column":25}}},"4":{"name":"(anonymous_6)","decl":{"start":{"line":67,"column":9},"end":{"line":67,"column":12}},"loc":{"start":{"line":67,"column":15},"end":{"line":67,"column":31}}},"5":{"name":"(anonymous_7)","decl":{"start":{"line":81,"column":9},"end":{"line":81,"column":12}},"loc":{"start":{"line":81,"column":15},"end":{"line":81,"column":25}}}},"branchMap":{},"s":{"0":3,"1":3,"2":3,"3":3,"4":3,"5":3,"6":3,"7":3,"8":3,"9":3,"10":3,"11":3,"12":3,"13":3,"14":3,"15":3,"16":3,"17":3,"18":3,"19":3,"20":3,"21":3,"22":3,"23":3,"24":3,"25":3,"26":3,"27":3,"28":3,"29":3,"30":3,"31":3,"32":3,"33":3,"34":3,"35":3,"36":3,"37":3,"38":3,"39":3,"40":3,"41":3,"42":3,"43":3,"44":3,"45":3,"46":3,"47":3,"48":3,"49":3,"50":3,"51":3,"52":3,"53":3,"54":3,"55":3,"56":3,"57":3,"58":3,"59":3,"60":3,"61":3},"f":{"0":3,"1":3,"2":3,"3":3,"4":3,"5":3},"b":{}}
|
|
3
|
-
,"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/cloudcmd/cloudcmd.ts": {"path":"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/cloudcmd/cloudcmd.ts","statementMap":{"0":{"start":{"line":2,"column":0},"end":{"line":2,"column":35}},"1":{"start":{"line":3,"column":0},"end":{"line":3,"column":37}},"2":{"start":{"line":4,"column":0},"end":{"line":4,"column":28}},"3":{"start":{"line":6,"column":20},"end":{"line":30,"column":1}},"4":{"start":{"line":11,"column":34},"end":{"line":11,"column":42}},"5":{"start":{"line":12,"column":24},"end":{"line":14,"column":4}},"6":{"start":{"line":16,"column":2},"end":{"line":16,"column":35}},"7":{"start":{"line":18,"column":17},"end":{"line":18,"column":36}},"8":{"start":{"line":20,"column":17},"end":{"line":22,"column":4}},"9":{"start":{"line":23,"column":2},"end":{"line":29,"column":4}},"10":{"start":{"line":32,"column":0},"end":{"line":32,"column":27}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":6,"column":20},"end":{"line":6,"column":null}},"loc":{"start":{"line":10,"column":4},"end":{"line":30,"column":1}}}},"branchMap":{},"s":{"0":0,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0},"f":{"0":0},"b":{}}
|
|
4
|
-
,"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/files/files.module.ts": {"path":"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/files/files.module.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":40}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":55}},"2":{"start":{"line":3,"column":0},"end":{"line":3,"column":67}},"3":{"start":{"line":4,"column":0},"end":{"line":4,"column":63}},"4":{"start":{"line":9,"column":15},"end":{"line":9,"column":null}},"5":{"start":{"line":9,"column":21},"end":{"line":9,"column":null}},"6":{"start":{"line":9,"column":21},"end":{"line":9,"column":35}}},"fnMap":{},"branchMap":{},"s":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1,"6":1},"f":{},"b":{}}
|
|
5
|
-
,"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/files/resolvers/files.resolver.ts": {"path":"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/files/resolvers/files.resolver.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":56}},"1":{"start":{"line":3,"column":0},"end":{"line":3,"column":68}},"2":{"start":{"line":4,"column":0},"end":{"line":4,"column":38}},"3":{"start":{"line":7,"column":15},"end":{"line":23,"column":null}},"4":{"start":{"line":11,"column":4},"end":{"line":11,"column":53}},"5":{"start":{"line":16,"column":4},"end":{"line":16,"column":49}},"6":{"start":{"line":21,"column":4},"end":{"line":21,"column":44}},"7":{"start":{"line":15,"column":8},"end":{"line":17,"column":null}},"8":{"start":{"line":14,"column":15},"end":{"line":14,"column":22}},"9":{"start":{"line":20,"column":8},"end":{"line":22,"column":null}},"10":{"start":{"line":19,"column":15},"end":{"line":19,"column":22}},"11":{"start":{"line":7,"column":21},"end":{"line":23,"column":null}},"12":{"start":{"line":7,"column":21},"end":{"line":7,"column":null}}},"fnMap":{"0":{"name":"(anonymous_4)","decl":{"start":{"line":10,"column":2},"end":{"line":10,"column":14}},"loc":{"start":{"line":10,"column":54},"end":{"line":12,"column":3}}},"1":{"name":"(anonymous_5)","decl":{"start":{"line":15,"column":2},"end":{"line":15,"column":7}},"loc":{"start":{"line":15,"column":48},"end":{"line":17,"column":3}}},"2":{"name":"(anonymous_6)","decl":{"start":{"line":20,"column":2},"end":{"line":20,"column":7}},"loc":{"start":{"line":20,"column":43},"end":{"line":22,"column":3}}},"3":{"name":"(anonymous_7)","decl":{"start":{"line":14,"column":9},"end":{"line":14,"column":12}},"loc":{"start":{"line":14,"column":15},"end":{"line":14,"column":22}}},"4":{"name":"(anonymous_8)","decl":{"start":{"line":19,"column":9},"end":{"line":19,"column":12}},"loc":{"start":{"line":19,"column":15},"end":{"line":19,"column":22}}}},"branchMap":{},"s":{"0":3,"1":3,"2":3,"3":3,"4":9,"5":4,"6":4,"7":3,"8":2,"9":3,"10":2,"11":3,"12":3},"f":{"0":9,"1":4,"2":4,"3":2,"4":2},"b":{}}
|
|
6
|
-
,"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/files/services/files-service.factory.ts": {"path":"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/files/services/files-service.factory.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":52}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":47}},"2":{"start":{"line":4,"column":0},"end":{"line":4,"column":54}},"3":{"start":{"line":7,"column":15},"end":{"line":22,"column":null}},"4":{"start":{"line":10,"column":12},"end":{"line":10,"column":27}},"5":{"start":{"line":11,"column":39},"end":{"line":11,"column":58}},"6":{"start":{"line":16,"column":17},"end":{"line":16,"column":55}},"7":{"start":{"line":17,"column":4},"end":{"line":19,"column":5}},"8":{"start":{"line":18,"column":6},"end":{"line":18,"column":36}},"9":{"start":{"line":20,"column":4},"end":{"line":20,"column":45}},"10":{"start":{"line":7,"column":21},"end":{"line":22,"column":null}},"11":{"start":{"line":7,"column":21},"end":{"line":7,"column":null}}},"fnMap":{"0":{"name":"(anonymous_4)","decl":{"start":{"line":9,"column":2},"end":{"line":9,"column":null}},"loc":{"start":{"line":11,"column":75},"end":{"line":12,"column":6}}},"1":{"name":"(anonymous_5)","decl":{"start":{"line":15,"column":2},"end":{"line":15,"column":8}},"loc":{"start":{"line":15,"column":8},"end":{"line":21,"column":3}}}},"branchMap":{"0":{"loc":{"start":{"line":17,"column":4},"end":{"line":19,"column":5}},"type":"if","locations":[{"start":{"line":17,"column":4},"end":{"line":19,"column":5}}]}},"s":{"0":4,"1":4,"2":4,"3":4,"4":6,"5":6,"6":6,"7":6,"8":5,"9":1,"10":4,"11":4},"f":{"0":6,"1":6},"b":{"0":[5]}}
|
|
7
|
-
,"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/files/services/local-files.service.ts": {"path":"/home/dtaas/Documents/git/into-cps/DTaaS/servers/lib/src/files/services/local-files.service.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":74}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":25}},"2":{"start":{"line":3,"column":0},"end":{"line":3,"column":28}},"3":{"start":{"line":4,"column":0},"end":{"line":4,"column":47}},"4":{"start":{"line":9,"column":38},"end":{"line":76,"column":null}},"5":{"start":{"line":11,"column":22},"end":{"line":11,"column":37}},"6":{"start":{"line":14,"column":21},"end":{"line":14,"column":57}},"7":{"start":{"line":15,"column":21},"end":{"line":15,"column":41}},"8":{"start":{"line":17,"column":18},"end":{"line":17,"column":53}},"9":{"start":{"line":19,"column":18},"end":{"line":20,"column":null}},"10":{"start":{"line":20,"column":26},"end":{"line":20,"column":72}},"11":{"start":{"line":23,"column":17},"end":{"line":30,"column":6}},"12":{"start":{"line":25,"column":38},"end":{"line":25,"column":63}},"13":{"start":{"line":28,"column":38},"end":{"line":28,"column":63}},"14":{"start":{"line":32,"column":4},"end":{"line":32,"column":36}},"15":{"start":{"line":36,"column":21},"end":{"line":36,"column":57}},"16":{"start":{"line":37,"column":21},"end":{"line":37,"column":41}},"17":{"start":{"line":39,"column":4},"end":{"line":49,"column":5}},"18":{"start":{"line":40,"column":22},"end":{"line":42,"column":14}},"19":{"start":{"line":44,"column":19},"end":{"line":44,"column":40}},"20":{"start":{"line":46,"column":6},"end":{"line":46,"column":61}},"21":{"start":{"line":48,"column":6},"end":{"line":48,"column":67}},"22":{"start":{"line":53,"column":18},"end":{"line":53,"column":63}},"23":{"start":{"line":54,"column":4},"end":{"line":56,"column":5}},"24":{"start":{"line":55,"column":6},"end":{"line":55,"column":52}},"25":{"start":{"line":57,"column":4},"end":{"line":57,"column":50}},"26":{"start":{"line":62,"column":4},"end":{"line":74,"column":6}},"27":{"start":{"line":9,"column":21},"end":{"line":76,"column":null}},"28":{"start":{"line":9,"column":21},"end":{"line":9,"column":null}}},"fnMap":{"0":{"name":"(anonymous_2)","decl":{"start":{"line":11,"column":2},"end":{"line":11,"column":22}},"loc":{"start":{"line":11,"column":50},"end":{"line":11,"column":54}}},"1":{"name":"(anonymous_3)","decl":{"start":{"line":13,"column":2},"end":{"line":13,"column":7}},"loc":{"start":{"line":13,"column":34},"end":{"line":33,"column":3}}},"2":{"name":"(anonymous_4)","decl":{"start":{"line":20,"column":16},"end":{"line":20,"column":17}},"loc":{"start":{"line":20,"column":26},"end":{"line":20,"column":72}}},"3":{"name":"(anonymous_5)","decl":{"start":{"line":25,"column":28},"end":{"line":25,"column":29}},"loc":{"start":{"line":25,"column":38},"end":{"line":25,"column":63}}},"4":{"name":"(anonymous_6)","decl":{"start":{"line":28,"column":28},"end":{"line":28,"column":29}},"loc":{"start":{"line":28,"column":38},"end":{"line":28,"column":63}}},"5":{"name":"(anonymous_7)","decl":{"start":{"line":35,"column":2},"end":{"line":35,"column":7}},"loc":{"start":{"line":35,"column":29},"end":{"line":50,"column":3}}},"6":{"name":"(anonymous_8)","decl":{"start":{"line":52,"column":10},"end":{"line":52,"column":16}},"loc":{"start":{"line":52,"column":66},"end":{"line":58,"column":3}}},"7":{"name":"(anonymous_9)","decl":{"start":{"line":60,"column":10},"end":{"line":60,"column":16}},"loc":{"start":{"line":60,"column":61},"end":{"line":75,"column":3}}}},"branchMap":{"0":{"loc":{"start":{"line":54,"column":4},"end":{"line":56,"column":5}},"type":"if","locations":[{"start":{"line":54,"column":4},"end":{"line":56,"column":5}}]}},"s":{"0":5,"1":5,"2":5,"3":5,"4":5,"5":9,"6":4,"7":4,"8":4,"9":4,"10":20,"11":4,"12":20,"13":20,"14":4,"15":4,"16":4,"17":4,"18":4,"19":4,"20":4,"21":0,"22":20,"23":20,"24":20,"25":0,"26":4,"27":5,"28":5},"f":{"0":9,"1":4,"2":20,"3":20,"4":20,"5":4,"6":20,"7":4},"b":{"0":[20]}}
|
|
8
|
-
}
|
|
@@ -1,224 +0,0 @@
|
|
|
1
|
-
body, html {
|
|
2
|
-
margin:0; padding: 0;
|
|
3
|
-
height: 100%;
|
|
4
|
-
}
|
|
5
|
-
body {
|
|
6
|
-
font-family: Helvetica Neue, Helvetica, Arial;
|
|
7
|
-
font-size: 14px;
|
|
8
|
-
color:#333;
|
|
9
|
-
}
|
|
10
|
-
.small { font-size: 12px; }
|
|
11
|
-
*, *:after, *:before {
|
|
12
|
-
-webkit-box-sizing:border-box;
|
|
13
|
-
-moz-box-sizing:border-box;
|
|
14
|
-
box-sizing:border-box;
|
|
15
|
-
}
|
|
16
|
-
h1 { font-size: 20px; margin: 0;}
|
|
17
|
-
h2 { font-size: 14px; }
|
|
18
|
-
pre {
|
|
19
|
-
font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
20
|
-
margin: 0;
|
|
21
|
-
padding: 0;
|
|
22
|
-
-moz-tab-size: 2;
|
|
23
|
-
-o-tab-size: 2;
|
|
24
|
-
tab-size: 2;
|
|
25
|
-
}
|
|
26
|
-
a { color:#0074D9; text-decoration:none; }
|
|
27
|
-
a:hover { text-decoration:underline; }
|
|
28
|
-
.strong { font-weight: bold; }
|
|
29
|
-
.space-top1 { padding: 10px 0 0 0; }
|
|
30
|
-
.pad2y { padding: 20px 0; }
|
|
31
|
-
.pad1y { padding: 10px 0; }
|
|
32
|
-
.pad2x { padding: 0 20px; }
|
|
33
|
-
.pad2 { padding: 20px; }
|
|
34
|
-
.pad1 { padding: 10px; }
|
|
35
|
-
.space-left2 { padding-left:55px; }
|
|
36
|
-
.space-right2 { padding-right:20px; }
|
|
37
|
-
.center { text-align:center; }
|
|
38
|
-
.clearfix { display:block; }
|
|
39
|
-
.clearfix:after {
|
|
40
|
-
content:'';
|
|
41
|
-
display:block;
|
|
42
|
-
height:0;
|
|
43
|
-
clear:both;
|
|
44
|
-
visibility:hidden;
|
|
45
|
-
}
|
|
46
|
-
.fl { float: left; }
|
|
47
|
-
@media only screen and (max-width:640px) {
|
|
48
|
-
.col3 { width:100%; max-width:100%; }
|
|
49
|
-
.hide-mobile { display:none!important; }
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.quiet {
|
|
53
|
-
color: #7f7f7f;
|
|
54
|
-
color: rgba(0,0,0,0.5);
|
|
55
|
-
}
|
|
56
|
-
.quiet a { opacity: 0.7; }
|
|
57
|
-
|
|
58
|
-
.fraction {
|
|
59
|
-
font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
|
60
|
-
font-size: 10px;
|
|
61
|
-
color: #555;
|
|
62
|
-
background: #E8E8E8;
|
|
63
|
-
padding: 4px 5px;
|
|
64
|
-
border-radius: 3px;
|
|
65
|
-
vertical-align: middle;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
div.path a:link, div.path a:visited { color: #333; }
|
|
69
|
-
table.coverage {
|
|
70
|
-
border-collapse: collapse;
|
|
71
|
-
margin: 10px 0 0 0;
|
|
72
|
-
padding: 0;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
table.coverage td {
|
|
76
|
-
margin: 0;
|
|
77
|
-
padding: 0;
|
|
78
|
-
vertical-align: top;
|
|
79
|
-
}
|
|
80
|
-
table.coverage td.line-count {
|
|
81
|
-
text-align: right;
|
|
82
|
-
padding: 0 5px 0 20px;
|
|
83
|
-
}
|
|
84
|
-
table.coverage td.line-coverage {
|
|
85
|
-
text-align: right;
|
|
86
|
-
padding-right: 10px;
|
|
87
|
-
min-width:20px;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
table.coverage td span.cline-any {
|
|
91
|
-
display: inline-block;
|
|
92
|
-
padding: 0 5px;
|
|
93
|
-
width: 100%;
|
|
94
|
-
}
|
|
95
|
-
.missing-if-branch {
|
|
96
|
-
display: inline-block;
|
|
97
|
-
margin-right: 5px;
|
|
98
|
-
border-radius: 3px;
|
|
99
|
-
position: relative;
|
|
100
|
-
padding: 0 4px;
|
|
101
|
-
background: #333;
|
|
102
|
-
color: yellow;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.skip-if-branch {
|
|
106
|
-
display: none;
|
|
107
|
-
margin-right: 10px;
|
|
108
|
-
position: relative;
|
|
109
|
-
padding: 0 4px;
|
|
110
|
-
background: #ccc;
|
|
111
|
-
color: white;
|
|
112
|
-
}
|
|
113
|
-
.missing-if-branch .typ, .skip-if-branch .typ {
|
|
114
|
-
color: inherit !important;
|
|
115
|
-
}
|
|
116
|
-
.coverage-summary {
|
|
117
|
-
border-collapse: collapse;
|
|
118
|
-
width: 100%;
|
|
119
|
-
}
|
|
120
|
-
.coverage-summary tr { border-bottom: 1px solid #bbb; }
|
|
121
|
-
.keyline-all { border: 1px solid #ddd; }
|
|
122
|
-
.coverage-summary td, .coverage-summary th { padding: 10px; }
|
|
123
|
-
.coverage-summary tbody { border: 1px solid #bbb; }
|
|
124
|
-
.coverage-summary td { border-right: 1px solid #bbb; }
|
|
125
|
-
.coverage-summary td:last-child { border-right: none; }
|
|
126
|
-
.coverage-summary th {
|
|
127
|
-
text-align: left;
|
|
128
|
-
font-weight: normal;
|
|
129
|
-
white-space: nowrap;
|
|
130
|
-
}
|
|
131
|
-
.coverage-summary th.file { border-right: none !important; }
|
|
132
|
-
.coverage-summary th.pct { }
|
|
133
|
-
.coverage-summary th.pic,
|
|
134
|
-
.coverage-summary th.abs,
|
|
135
|
-
.coverage-summary td.pct,
|
|
136
|
-
.coverage-summary td.abs { text-align: right; }
|
|
137
|
-
.coverage-summary td.file { white-space: nowrap; }
|
|
138
|
-
.coverage-summary td.pic { min-width: 120px !important; }
|
|
139
|
-
.coverage-summary tfoot td { }
|
|
140
|
-
|
|
141
|
-
.coverage-summary .sorter {
|
|
142
|
-
height: 10px;
|
|
143
|
-
width: 7px;
|
|
144
|
-
display: inline-block;
|
|
145
|
-
margin-left: 0.5em;
|
|
146
|
-
background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent;
|
|
147
|
-
}
|
|
148
|
-
.coverage-summary .sorted .sorter {
|
|
149
|
-
background-position: 0 -20px;
|
|
150
|
-
}
|
|
151
|
-
.coverage-summary .sorted-desc .sorter {
|
|
152
|
-
background-position: 0 -10px;
|
|
153
|
-
}
|
|
154
|
-
.status-line { height: 10px; }
|
|
155
|
-
/* yellow */
|
|
156
|
-
.cbranch-no { background: yellow !important; color: #111; }
|
|
157
|
-
/* dark red */
|
|
158
|
-
.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 }
|
|
159
|
-
.low .chart { border:1px solid #C21F39 }
|
|
160
|
-
.highlighted,
|
|
161
|
-
.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{
|
|
162
|
-
background: #C21F39 !important;
|
|
163
|
-
}
|
|
164
|
-
/* medium red */
|
|
165
|
-
.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE }
|
|
166
|
-
/* light red */
|
|
167
|
-
.low, .cline-no { background:#FCE1E5 }
|
|
168
|
-
/* light green */
|
|
169
|
-
.high, .cline-yes { background:rgb(230,245,208) }
|
|
170
|
-
/* medium green */
|
|
171
|
-
.cstat-yes { background:rgb(161,215,106) }
|
|
172
|
-
/* dark green */
|
|
173
|
-
.status-line.high, .high .cover-fill { background:rgb(77,146,33) }
|
|
174
|
-
.high .chart { border:1px solid rgb(77,146,33) }
|
|
175
|
-
/* dark yellow (gold) */
|
|
176
|
-
.status-line.medium, .medium .cover-fill { background: #f9cd0b; }
|
|
177
|
-
.medium .chart { border:1px solid #f9cd0b; }
|
|
178
|
-
/* light yellow */
|
|
179
|
-
.medium { background: #fff4c2; }
|
|
180
|
-
|
|
181
|
-
.cstat-skip { background: #ddd; color: #111; }
|
|
182
|
-
.fstat-skip { background: #ddd; color: #111 !important; }
|
|
183
|
-
.cbranch-skip { background: #ddd !important; color: #111; }
|
|
184
|
-
|
|
185
|
-
span.cline-neutral { background: #eaeaea; }
|
|
186
|
-
|
|
187
|
-
.coverage-summary td.empty {
|
|
188
|
-
opacity: .5;
|
|
189
|
-
padding-top: 4px;
|
|
190
|
-
padding-bottom: 4px;
|
|
191
|
-
line-height: 1;
|
|
192
|
-
color: #888;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.cover-fill, .cover-empty {
|
|
196
|
-
display:inline-block;
|
|
197
|
-
height: 12px;
|
|
198
|
-
}
|
|
199
|
-
.chart {
|
|
200
|
-
line-height: 0;
|
|
201
|
-
}
|
|
202
|
-
.cover-empty {
|
|
203
|
-
background: white;
|
|
204
|
-
}
|
|
205
|
-
.cover-full {
|
|
206
|
-
border-right: none !important;
|
|
207
|
-
}
|
|
208
|
-
pre.prettyprint {
|
|
209
|
-
border: none !important;
|
|
210
|
-
padding: 0 !important;
|
|
211
|
-
margin: 0 !important;
|
|
212
|
-
}
|
|
213
|
-
.com { color: #999 !important; }
|
|
214
|
-
.ignore-none { color: #999; font-weight: normal; }
|
|
215
|
-
|
|
216
|
-
.wrapper {
|
|
217
|
-
min-height: 100%;
|
|
218
|
-
height: auto !important;
|
|
219
|
-
height: 100%;
|
|
220
|
-
margin: 0 auto -48px;
|
|
221
|
-
}
|
|
222
|
-
.footer, .push {
|
|
223
|
-
height: 48px;
|
|
224
|
-
}
|