Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 084d2d2e

Přidáno uživatelem Tomáš Šimandl před více než 6 roky(ů)

added test data for fronted tests

Zobrazit rozdíly:

test/config/archetypeIconConfigTest.json
1
{
2
  "defaultFilter": {
3
    "vertexArchetypeFilter": {
4
      "archetypes": [ ],
5
      "matchType": "non_matching"
6
    },
7

  
8
    "edgeArchetypeFilter": {
9
      "archetypes": [
10
        
11
      ],
12
      "matchType": "non_matching"
13
    },
14

  
15
    "vertexAttributeFilters": [],
16

  
17
    "edgeAttributeFilters": []
18
  },
19
  
20
  "defaultGroupArchetypes": [],
21
  
22
  "archetypeIcons": [
23
	{
24
		name: "SpecifiedIcon",
25
		value: "<rect class=\"testingArchetypeIcon\" width=\"12\" height=\"15\" x=\"0\" y =\"0\" stroke=\"none\" fill=\"green\"/>"
26
	}
27
  ]
28
}
test/config/automaticGroupingConfigTest.json
1
{
2
  "defaultFilter": {
3
    "vertexArchetypeFilter": {
4
      "archetypes": [ ],
5
      "matchType": "non_matching"
6
    },
7

  
8
    "edgeArchetypeFilter": {
9
      "archetypes": [
10
        
11
      ],
12
      "matchType": "non_matching"
13
    },
14

  
15
    "vertexAttributeFilters": [],
16

  
17
    "edgeAttributeFilters": []
18
  },
19
  
20
  "defaultGroupArchetypes": ["FirstGroupArchetype"],
21
  
22
  "archetypeIcons": []
23
}
test/config/emptyConfig.json
1
{
2
  "defaultFilter": {
3
    "vertexArchetypeFilter": {
4
      "archetypes": [ ],
5
      "matchType": "non_matching"
6
    },
7

  
8
    "edgeArchetypeFilter": {
9
      "archetypes": [
10
        
11
      ],
12
      "matchType": "non_matching"
13
    },
14

  
15
    "vertexAttributeFilters": [],
16

  
17
    "edgeAttributeFilters": []
18
  },
19
  
20
  "defaultGroupArchetypes": [],
21
  
22
  "archetypeIcons": []
23
}
test/data/archetypeIconTest.json
1
{
2
 "attributeTypes": [
3

  
4
 ],
5
 "vertexArchetypes": [
6
  {
7
   "name": "SpecifiedIcon",
8
   "text": ""
9
  },
10
  {
11
   "name": "UnspecifiedIcon",
12
   "text": ""
13
  },
14
  {
15
   "name": "☺Smiley",
16
   "text": ""
17
  }
18
 ],
19
 "edgeArchetypes": [
20
	{
21
		"name": "edge",
22
		"text": ""
23
	}
24
 ],
25
 "vertices": [
26
  {
27
   "archetype": 0,
28
   "attributes": {},
29
   "id": 1,
30
   "text": "",
31
   "title": "Vertex with specified icon"
32
  },
33
  {
34
   "archetype": 1,
35
   "attributes": {},
36
   "id": 2,
37
   "text": "",
38
   "title": "Vertex with unspecified icon"
39
  },
40
  {
41
   "archetype": 2,
42
   "attributes": {},
43
   "id": 3,
44
   "text": "",
45
   "title": "Vertex with smiley as archetype icon"
46
  }
47
 ],
48
 "edges": [
49
	{
50
	   "archetype": 0,
51
	   "from": 1,
52
	   "attributes": {},
53
	   "id": 0,
54
	   "to": 2,
55
	   "text": ""
56
	},
57
	{
58
	   "archetype": 0,
59
	   "from": 1,
60
	   "attributes": {},
61
	   "id": 1,
62
	   "to": 3,
63
	   "text": ""
64
	},
65
 ]
66
}
test/data/associatedArchetypeTest.json
1
{
2
 "attributeTypes": [
3

  
4
 ],
5
 "vertexArchetypes": [
6
  {
7
   "name": "1",
8
   "text": ""
9
  },
10
  {
11
   "name": "2",
12
   "text": ""
13
  },
14
  {
15
   "name": "3",
16
   "text": ""
17
  },
18
  {
19
   "name": "4",
20
   "text": ""
21
  }
22
 ],
23
 "edgeArchetypes": [
24
	{
25
		"name": "edge",
26
		"text": ""
27
	}
28
 ],
29
 "vertices": [
30
  {
31
   "archetype": 0,
32
   "attributes": {},
33
   "id": 1,
34
   "text": "",
35
   "title": "V1"
36
  },
37
  {
38
   "archetype": 1,
39
   "attributes": {},
40
   "id": 2,
41
   "text": "",
42
   "title": "V2"
43
  },
44
  {
45
   "archetype": 1,
46
   "attributes": {},
47
   "id": 3,
48
   "text": "",
49
   "title": "V3"
50
  },
51
  {
52
   "archetype": 3,
53
   "attributes": {},
54
   "id": 4,
55
   "text": "",
56
   "title": "V4"
57
  },
58
  {
59
   "archetype": 2,
60
   "attributes": {},
61
   "id": 5,
62
   "text": "",
63
   "title": "V5"
64
  }
65
 ],
66
 "edges": [
67
	{
68
	   "archetype": 0,
69
	   "from": 1,
70
	   "attributes": {},
71
	   "id": 0,
72
	   "to": 2,
73
	   "text": ""
74
	},
75
	{
76
	   "archetype": 0,
77
	   "from": 3,
78
	   "attributes": {},
79
	   "id": 1,
80
	   "to": 1,
81
	   "text": ""
82
	},
83
	{
84
	   "archetype": 0,
85
	   "from": 1,
86
	   "attributes": {},
87
	   "id": 2,
88
	   "to": 4,
89
	   "text": ""
90
	},
91
	{
92
	   "archetype": 0,
93
	   "from": 4,
94
	   "attributes": {},
95
	   "id": 3,
96
	   "to": 1,
97
	   "text": ""
98
	},
99
	{
100
	   "archetype": 0,
101
	   "from": 4,
102
	   "attributes": {},
103
	   "id": 4,
104
	   "to": 5,
105
	   "text": ""
106
	}
107
 ]
108
}
test/data/aswi2017falsum.json
1
{
2
 "attributeTypes": [
3
  {
4
   "dataType": "string",
5
   "name": "EID",
6
   "text": "External ID"
7
  },
8
  {
9
   "dataType": "string",
10
   "name": "Name",
11
   "text": ""
12
  },
13
  {
14
   "dataType": "string",
15
   "name": "Description",
16
   "text": ""
17
  },
18
  {
19
   "dataType": "string",
20
   "name": "Comment",
21
   "text": ""
22
  },
23
  {
24
   "dataType": "string",
25
   "name": "Message",
26
   "text": "Commit message"
27
  },
28
  {
29
   "dataType": "string",
30
   "name": "Identities",
31
   "text": "Logins, aliases, other names"
32
  },
33
  {
34
   "dataType": "string",
35
   "name": "Emails",
36
   "text": ""
37
  },
38
  {
39
   "dataType": "enum",
40
   "name": "Roles",
41
   "text": ""
42
  },
43
  {
44
   "dataType": "enum",
45
   "name": "Author",
46
   "text": "Author's name"
47
  },
48
  {
49
   "dataType": "date",
50
   "name": "Created",
51
   "text": "Creation date"
52
  },
53
  {
54
   "dataType": "string",
55
   "name": "URL",
56
   "text": ""
57
  },
58
  {
59
   "dataType": "number",
60
   "name": "Number",
61
   "text": "Ticket number in issue tracker"
62
  },
63
  {
64
   "dataType": "enum",
65
   "name": "Assignee",
66
   "text": "Assignee's name"
67
  },
68
  {
69
   "dataType": "enum",
70
   "name": "Type",
71
   "text": ""
72
  },
73
  {
74
   "dataType": "enum",
75
   "name": "Priority",
76
   "text": ""
77
  },
78
  {
79
   "dataType": "enum",
80
   "name": "Severity",
81
   "text": ""
82
  },
83
  {
84
   "dataType": "date",
85
   "name": "Start",
86
   "text": "Start date"
87
  },
88
  {
89
   "dataType": "date",
90
   "name": "Due",
91
   "text": "Due date"
92
  },
93
  {
94
   "dataType": "enum",
95
   "name": "Iteration",
96
   "text": ""
97
  },
98
  {
99
   "dataType": "enum",
100
   "name": "Status",
101
   "text": ""
102
  },
103
  {
104
   "dataType": "enum",
105
   "name": "Resolution",
106
   "text": ""
107
  },
108
  {
109
   "dataType": "number",
110
   "name": "Estimate",
111
   "text": "Estimated time"
112
  },
113
  {
114
   "dataType": "number",
115
   "name": "Spent",
116
   "text": "Spent time"
117
  },
118
  {
119
   "dataType": "number",
120
   "name": "Progress",
121
   "text": "% done"
122
  },
123
  {
124
   "dataType": "enum",
125
   "name": "Categories",
126
   "text": ""
127
  },
128
  {
129
   "dataType": "string",
130
   "name": "Identifier",
131
   "text": ""
132
  },
133
  {
134
   "dataType": "date",
135
   "name": "Committed",
136
   "text": "Committed on date"
137
  },
138
  {
139
   "dataType": "string",
140
   "name": "Changes",
141
   "text": ""
142
  },
143
  {
144
   "dataType": "enum",
145
   "name": "Branches",
146
   "text": ""
147
  },
148
  {
149
   "dataType": "enum",
150
   "name": "Tags",
151
   "text": "VCS tags"
152
  },
153
  {
154
   "dataType": "enum",
155
   "name": "MIME",
156
   "text": "MIME type"
157
  },
158
  {
159
   "dataType": "number",
160
   "name": "Size",
161
   "text": "in bytes"
162
  },
163
  {
164
   "dataType": "enum",
165
   "name": "Relation",
166
   "text": "Relation type"
167
  },
168
  {
169
   "dataType": "enum",
170
   "name": "Role classes",
171
   "text": ""
172
  },
173
  {
174
   "dataType": "enum",
175
   "name": "Role super classes",
176
   "text": ""
177
  },
178
  {
179
   "dataType": "enum",
180
   "name": "Type class",
181
   "text": ""
182
  },
183
  {
184
   "dataType": "enum",
185
   "name": "Priority class",
186
   "text": ""
187
  },
188
  {
189
   "dataType": "enum",
190
   "name": "Priority super class",
191
   "text": ""
192
  },
193
  {
194
   "dataType": "enum",
195
   "name": "Severity class",
196
   "text": ""
197
  },
198
  {
199
   "dataType": "enum",
200
   "name": "Severity super class",
201
   "text": ""
202
  },
203
  {
204
   "dataType": "enum",
205
   "name": "Status class",
206
   "text": ""
207
  },
208
  {
209
   "dataType": "enum",
210
   "name": "Status super class",
211
   "text": ""
212
  },
213
  {
214
   "dataType": "enum",
215
   "name": "Resolution class",
216
   "text": ""
217
  },
218
  {
219
   "dataType": "enum",
220
   "name": "Resolution super class",
221
   "text": ""
222
  }
223
 ],
224
 "vertexArchetypes": [
225
  {
226
   "name": "Person",
227
   "text": ""
228
  },
229
  {
230
   "name": "Ticket",
231
   "text": ""
232
  },
233
  {
234
   "name": "File",
235
   "text": ""
236
  },
237
  {
238
   "name": "Wiki",
239
   "text": ""
240
  },
241
  {
242
   "name": "Change",
243
   "text": ""
244
  },
245
  {
246
   "name": "Commit",
247
   "text": ""
248
  },
249
  {
250
   "name": "RepoFile",
251
   "text": ""
252
  }
253
 ],
254
 "edgeArchetypes": [
255
  {
256
   "name": "Authorship",
257
   "text": ""
258
  },
259
  {
260
   "name": "Assignment",
261
   "text": ""
262
  },
263
  {
264
   "name": "CommitParticipation",
265
   "text": ""
266
  },
267
  {
268
   "name": "ItemRelation",
269
   "text": ""
270
  },
271
  {
272
   "name": "Affection",
273
   "text": ""
274
  },
275
  {
276
   "name": "Commit",
277
   "text": ""
278
  },
279
  {
280
   "name": "Modification",
281
   "text": ""
282
  }
283
 ],
284
 "vertices": [
285
  {
286
   "archetype": 0,
287
   "attributes": {
288
    "33": [
289
     "DEVELOPER",
290
     "STAKEHOLDER"
291
    ],
292
    "1": "Jiří Láska",
293
    "34": [
294
     "TEAMMEMBER",
295
     "STAKEHOLDER"
296
    ],
297
    "5": [
298
     "",
299
     "Goheeca",
300
     "Jiří Láska",
301
     "goheeca"
302
    ],
303
    "6": [
304
     "Jiří Láska",
305
     "goheeca@gmail.com",
306
     "goheeca@students.zcu.cz"
307
    ],
308
    "7": [
309
     "Developer",
310
     "Project admin"
311
    ]
312
   },
313
   "id": 0,
314
   "text": "",
315
   "title": "Jiří Láska"
316
  },
317
  {
318
   "archetype": 0,
319
   "attributes": {
320
    "33": ["TEAMMEMBER"],
321
    "1": "tzolkincz",
322
    "34": ["TEAMMEMBER"],
323
    "5": [
324
     "",
325
     "tzolkincz"
326
    ],
327
    "6": ["tzolkincz@users.noreply.github.com"],
328
    "7": ["member"]
329
   },
330
   "id": 1,
331
   "text": "",
332
   "title": "tzolkincz"
333
  },
334
  {
335
   "archetype": 0,
336
   "attributes": {
337
    "33": [
338
     "DEVELOPER",
339
     "STAKEHOLDER"
340
    ],
341
    "1": "Vaclav Loffelmann",
342
    "34": [
343
     "TEAMMEMBER",
344
     "STAKEHOLDER"
345
    ],
346
    "5": [
347
     "",
348
     "Vaclav Loffelmann",
349
     "loffelmann.vaclav",
350
     "loffelmv"
351
    ],
352
    "6": [
353
     "Vaclav Loffelmann",
354
     "loffelmann.vaclav@seznam.cz",
355
     "loffelmv@students.zcu.cz"
356
    ],
357
    "7": [
358
     "Developer",
359
     "Project admin"
360
    ]
361
   },
362
   "id": 2,
363
   "text": "",
364
   "title": "Vaclav Loffelmann"
365
  },
366
  {
367
   "archetype": 0,
368
   "attributes": {
369
    "33": [
370
     "DEVELOPER",
371
     "PROJECTMANAGER",
372
     "STAKEHOLDER"
373
    ],
374
    "1": "U-LAPTOP-65DG60GC\\wena1",
375
    "34": [
376
     "TEAMMEMBER",
377
     "MANAGEMENT",
378
     "STAKEHOLDER"
379
    ],
380
    "5": [
381
     "",
382
     "Lenka Ortinská",
383
     "U-LAPTOP-65DG60GC\\wena1",
384
     "ortinska",
385
     "wena101"
386
    ],
387
    "6": [
388
     "Lenka Ortinská",
389
     "ortinska@students.zcu.cz",
390
     "wena101@gmail.com"
391
    ],
392
    "7": [
393
     "Developer",
394
     "Team leader",
395
     "Project admin"
396
    ]
397
   },
398
   "id": 3,
399
   "text": "",
400
   "title": "U-LAPTOP-65DG60GC\\wena1"
401
  },
402
  {
403
   "archetype": 0,
404
   "attributes": {
405
    "33": [
406
     "DEVELOPER",
407
     "STAKEHOLDER"
408
    ],
409
    "1": "Klára Beránková",
410
    "34": [
411
     "TEAMMEMBER",
412
     "STAKEHOLDER"
413
    ],
414
    "5": [
415
     "",
416
     "Klára Beránková",
417
     "klara342"
418
    ],
419
    "6": [
420
     "Klára Beránková",
421
     "klara342@students.zcu.cz"
422
    ],
423
    "7": [
424
     "Developer",
425
     "Project admin"
426
    ]
427
   },
428
   "id": 4,
429
   "text": "",
430
   "title": "Klára Beránková"
431
  },
432
  {
433
   "archetype": 0,
434
   "attributes": {
435
    "33": ["TEAMMEMBER"],
436
    "1": "GitHub",
437
    "34": ["TEAMMEMBER"],
438
    "5": [
439
     "",
440
     "GitHub",
441
     "noreply"
442
    ],
443
    "6": ["noreply@github.com"],
444
    "7": ["member"]
445
   },
446
   "id": 5,
447
   "text": "",
448
   "title": "GitHub"
449
  },
450
  {
451
   "archetype": 0,
452
   "attributes": {
453
    "33": ["MENTOR"],
454
    "1": "Premek Brada",
455
    "34": ["STAKEHOLDER"],
456
    "5": [
457
     "Premek Brada",
458
     "brada"
459
    ],
460
    "6": ["brada@kiv.zcu.cz"],
461
    "7": ["Mentor"]
462
   },
463
   "id": 6,
464
   "text": "",
465
   "title": "Premek Brada"
466
  },
467
  {
468
   "archetype": 0,
469
   "attributes": {
470
    "33": [
471
     "MENTOR",
472
     "DEVELOPER",
473
     "PROJECTMANAGER",
474
     "STAKEHOLDER",
475
     "STAKEHOLDER"
476
    ],
477
    "1": "Petr Pícha",
478
    "34": [
479
     "STAKEHOLDER",
480
     "TEAMMEMBER",
481
     "MANAGEMENT",
482
     "STAKEHOLDER",
483
     "STAKEHOLDER"
484
    ],
485
    "5": [
486
     "Petr Pícha",
487
     "petrpicha48",
488
     "ppicha"
489
    ],
490
    "6": ["petrpicha48@seznam.cz"],
491
    "7": [
492
     "Mentor",
493
     "Developer",
494
     "Team leader",
495
     "Customer",
496
     "Project admin"
497
    ]
498
   },
499
   "id": 7,
500
   "text": "",
501
   "title": "Petr Pícha"
502
  },
503
  {
504
   "archetype": 0,
505
   "attributes": {
506
    "33": [
507
     "STAKEHOLDER",
508
     "STAKEHOLDER"
509
    ],
510
    "1": "Jan Louda",
511
    "34": [
512
     "STAKEHOLDER",
513
     "STAKEHOLDER"
514
    ],
515
    "5": [
516
     "Jan Louda",
517
     "jan_louda",
518
     "janlouda"
519
    ],
520
    "6": [
521
     "Jan Louda",
522
     "jan_louda@cz.ibm.com"
523
    ],
524
    "7": [
525
     "Customer",
526
     "Project admin"
527
    ]
528
   },
529
   "id": 8,
530
   "text": "",
531
   "title": "Jan Louda"
532
  },
533
  {
534
   "archetype": 0,
535
   "attributes": {
536
    "33": ["TEAMMEMBER"],
537
    "1": "unknown",
538
    "34": ["TEAMMEMBER"],
539
    "5": [
540
     "",
541
     "unknown"
542
    ],
543
    "6": [],
544
    "7": ["member"]
545
   },
546
   "id": 9,
547
   "text": "",
548
   "title": "unknown"
549
  },
550
  {
551
   "archetype": 1,
552
   "attributes": {
553
    "22": "4.0",
554
    "23": "0",
555
    "24": [],
556
    "10": "https://students.kiv.zcu.cz:3443/issues/5893",
557
    "11": "5893",
558
    "12": ["Vaclav Loffelmann"],
559
    "13": ["Enhancement"],
560
    "35": ["ENHANCEMENT"],
561
    "14": ["Normal"],
562
    "36": ["NORMAL"],
563
    "37": ["NORMAL"],
564
    "15": ["unassigned"],
565
    "38": ["NORMAL"],
566
    "16": "2017-05-05 00:00:00",
567
    "39": ["UNASSIGNED"],
568
    "17": "2017-05-11 00:00:00",
569
    "18": ["4. iterace"],
570
    "19": ["Closed"],
571
    "0": "5893",
572
    "1": "backend: flow registrace uzivatele s emailem",
573
    "2": "email viz: https://console.ng.bluemix.net/catalog/services/sendgrid",
574
    "8": ["Vaclav Loffelmann"],
575
    "9": "2017-05-05 14:47:12",
576
    "40": ["DONE"],
577
    "41": ["CLOSED"],
578
    "20": ["unassigned"],
579
    "42": ["UNASSIGNED"],
580
    "43": ["UNASSIGNED"],
581
    "21": "4.0"
582
   },
583
   "id": 10,
584
   "text": "",
585
   "title": "5893"
586
  },
587
  {
588
   "archetype": 1,
589
   "attributes": {
590
    "22": "4.0",
591
    "23": "100",
592
    "24": [],
593
    "10": "https://students.kiv.zcu.cz:3443/issues/5894",
594
    "11": "5894",
595
    "12": ["unknown"],
596
    "13": ["Enhancement"],
597
    "35": ["ENHANCEMENT"],
598
    "14": ["Normal"],
599
    "36": ["NORMAL"],
600
    "37": ["NORMAL"],
601
    "15": ["unassigned"],
602
    "38": ["NORMAL"],
603
    "16": "2017-05-05 00:00:00",
604
    "39": ["UNASSIGNED"],
605
    "17": "2017-05-11 00:00:00",
606
    "18": ["4. iterace"],
607
    "19": ["Closed"],
608
    "0": "5894",
609
    "1": "frontend: pridani neregistrovaneho uzivatele k projektu",
610
    "2": "",
611
    "8": ["Vaclav Loffelmann"],
612
    "9": "2017-05-05 14:47:55",
613
    "40": ["DONE"],
614
    "41": ["CLOSED"],
615
    "20": ["unassigned"],
616
    "42": ["UNASSIGNED"],
617
    "43": ["UNASSIGNED"],
618
    "21": "4.0"
619
   },
620
   "id": 11,
621
   "text": "",
622
   "title": "5894"
623
  },
624
  {
625
   "archetype": 1,
626
   "attributes": {
627
    "22": "4.0",
628
    "23": "100",
629
    "24": [],
630
    "10": "https://students.kiv.zcu.cz:3443/issues/5895",
631
    "11": "5895",
632
    "12": ["Vaclav Loffelmann"],
633
    "13": ["Enhancement"],
634
    "35": ["ENHANCEMENT"],
635
    "14": ["Normal"],
636
    "36": ["NORMAL"],
637
    "37": ["NORMAL"],
638
    "15": ["unassigned"],
639
    "38": ["NORMAL"],
640
    "16": "2017-05-05 00:00:00",
641
    "39": ["UNASSIGNED"],
642
    "17": "2017-05-11 00:00:00",
643
    "18": ["4. iterace"],
644
    "19": ["Closed"],
645
    "0": "5895",
646
    "1": "bluemix email service: sendgrid",
647
    "2": "",
648
    "8": ["Vaclav Loffelmann"],
649
    "9": "2017-05-05 15:10:43",
650
    "40": ["DONE"],
651
    "41": ["CLOSED"],
652
    "20": ["unassigned"],
653
    "42": ["UNASSIGNED"],
654
    "43": ["UNASSIGNED"],
655
    "21": "4.0"
656
   },
657
   "id": 12,
658
   "text": "",
659
   "title": "5895"
660
  },
661
  {
662
   "archetype": 1,
663
   "attributes": {
664
    "22": "6.0",
665
    "23": "100",
666
    "24": [],
667
    "10": "https://students.kiv.zcu.cz:3443/issues/5896",
668
    "11": "5896",
669
    "12": ["unknown"],
670
    "13": ["Enhancement"],
671
    "35": ["ENHANCEMENT"],
672
    "14": ["Normal"],
673
    "36": ["NORMAL"],
674
    "37": ["NORMAL"],
675
    "15": ["unassigned"],
676
    "38": ["NORMAL"],
677
    "16": "2017-05-05 00:00:00",
678
    "39": ["UNASSIGNED"],
679
    "17": "2017-05-11 00:00:00",
680
    "18": ["4. iterace"],
681
    "19": ["Closed"],
682
    "0": "5896",
683
    "1": "frontend: registracni formulař s predvyplnenymi daty z url (z emailu)",
684
    "2": "",
685
    "8": ["Vaclav Loffelmann"],
686
    "9": "2017-05-05 15:26:55",
687
    "40": ["DONE"],
688
    "41": ["CLOSED"],
689
    "20": ["unassigned"],
690
    "42": ["UNASSIGNED"],
691
    "43": ["UNASSIGNED"],
692
    "21": "6.0"
693
   },
694
   "id": 13,
695
   "text": "",
696
   "title": "5896"
697
  },
698
  {
699
   "archetype": 1,
700
   "attributes": {
701
    "22": "2.0",
702
    "23": "100",
703
    "24": [],
704
    "10": "https://students.kiv.zcu.cz:3443/issues/5145",
705
    "11": "5145",
706
    "12": ["Klára Beránková"],
707
    "13": ["Task"],
708
    "35": ["TASK"],
709
    "14": ["Normal"],
710
    "36": ["NORMAL"],
711
    "37": ["NORMAL"],
712
    "15": ["unassigned"],
713
    "38": ["NORMAL"],
714
    "16": "2017-03-20 00:00:00",
715
    "39": ["UNASSIGNED"],
716
    "17": "2017-03-30 00:00:00",
717
    "18": ["1. iterace"],
718
    "19": ["Closed"],
719
    "0": "5145",
720
    "1": "Analýza současného stavu a zhodnocení hotových reseni",
721
    "2": "",
722
    "8": ["Vaclav Loffelmann"],
723
    "9": "2017-03-20 12:09:22",
724
    "40": ["DONE"],
725
    "41": ["CLOSED"],
726
    "20": ["unassigned"],
727
    "42": ["UNASSIGNED"],
728
    "43": ["UNASSIGNED"],
729
    "21": "2.0"
730
   },
731
   "id": 14,
732
   "text": "",
733
   "title": "5145"
734
  },
735
  {
736
   "archetype": 1,
737
   "attributes": {
738
    "22": "1.5",
739
    "23": "100",
740
    "24": [],
741
    "10": "https://students.kiv.zcu.cz:3443/issues/5146",
742
    "11": "5146",
743
    "12": ["Vaclav Loffelmann"],
744
    "13": ["Task"],
745
    "35": ["TASK"],
746
    "14": ["Normal"],
747
    "36": ["NORMAL"],
748
    "37": ["NORMAL"],
749
    "15": ["unassigned"],
750
    "38": ["NORMAL"],
751
    "16": "2017-03-20 00:00:00",
752
    "39": ["UNASSIGNED"],
753
    "17": "2017-03-30 00:00:00",
754
    "18": ["1. iterace"],
755
    "19": ["Closed"],
756
    "0": "5146",
757
    "1": "Vytvoření projektu a nastavení dev workflow",
758
    "2": "",
759
    "8": ["Vaclav Loffelmann"],
760
    "9": "2017-03-20 12:10:47",
761
    "40": ["DONE"],
762
    "41": ["CLOSED"],
763
    "20": ["unassigned"],
764
    "42": ["UNASSIGNED"],
765
    "43": ["UNASSIGNED"],
766
    "21": "3.0"
767
   },
768
   "id": 15,
769
   "text": "",
770
   "title": "5146"
771
  },
772
  {
773
   "archetype": 1,
774
   "attributes": {
775
    "22": "2.0",
776
    "23": "100",
777
    "24": [],
778
    "10": "https://students.kiv.zcu.cz:3443/issues/5147",
779
    "11": "5147",
780
    "12": ["unknown"],
781
    "13": ["Task"],
782
    "35": ["TASK"],
783
    "14": ["Normal"],
784
    "36": ["NORMAL"],
785
    "37": ["NORMAL"],
786
    "15": ["unassigned"],
787
    "38": ["NORMAL"],
788
    "16": "2017-03-20 00:00:00",
789
    "39": ["UNASSIGNED"],
790
    "17": "2017-03-30 00:00:00",
791
    "18": ["1. iterace"],
792
    "19": ["Closed"],
793
    "0": "5147",
794
    "1": "Úvod do frontendovych technologii",
795
    "2": "* najít co nejlepší tutoriály na fe technologie\r\n* projít tutoriály\r\n* dořešit nejasnosti irl",
796
    "8": ["Vaclav Loffelmann"],
797
    "9": "2017-03-20 12:14:05",
798
    "40": ["DONE"],
799
    "41": ["CLOSED"],
800
    "20": ["unassigned"],
801
    "42": ["UNASSIGNED"],
802
    "43": ["UNASSIGNED"],
803
    "21": "8.0"
804
   },
805
   "id": 16,
806
   "text": "",
807
   "title": "5147"
808
  },
809
  {
810
   "archetype": 1,
811
   "attributes": {
812
    "22": "5.5",
813
    "23": "100",
814
    "24": [],
815
    "10": "https://students.kiv.zcu.cz:3443/issues/5148",
816
    "11": "5148",
817
    "12": ["U-LAPTOP-65DG60GC\\wena1"],
818
    "13": ["Task"],
819
    "35": ["TASK"],
820
    "14": ["Normal"],
821
    "36": ["NORMAL"],
822
    "37": ["NORMAL"],
823
    "15": ["unassigned"],
824
    "38": ["NORMAL"],
825
    "16": "2017-03-20 00:00:00",
826
    "39": ["UNASSIGNED"],
827
    "17": "2017-04-27 00:00:00",
828
    "18": ["3. iterace"],
829
    "19": ["Closed"],
830
    "0": "5148",
831
    "1": "Dohodnout detaily specifikace",
832
    "2": "",
833
    "8": ["Vaclav Loffelmann"],
834
    "9": "2017-03-20 12:18:15",
835
    "40": ["DONE"],
836
    "41": ["CLOSED"],
837
    "20": ["unassigned"],
838
    "42": ["UNASSIGNED"],
839
    "43": ["UNASSIGNED"],
840
    "21": "8.0"
841
   },
842
   "id": 17,
843
   "text": "",
844
   "title": "5148"
845
  },
846
  {
847
   "archetype": 1,
848
   "attributes": {
849
    "22": "3.6700000166893005",
850
    "23": "100",
851
    "24": [],
852
    "10": "https://students.kiv.zcu.cz:3443/issues/5149",
853
    "11": "5149",
854
    "12": ["Jiří Láska"],
855
    "13": ["Task"],
856
    "35": ["TASK"],
857
    "14": ["Normal"],
858
    "36": ["NORMAL"],
859
    "37": ["NORMAL"],
860
    "15": ["unassigned"],
861
    "38": ["NORMAL"],
862
    "16": "2017-03-20 00:00:00",
863
    "39": ["UNASSIGNED"],
864
    "17": "2017-03-30 00:00:00",
865
    "18": ["1. iterace"],
866
    "19": ["Closed"],
867
    "0": "5149",
868
    "1": "Vytvoření prostředí v bluemixu",
869
    "2": "",
870
    "8": ["Vaclav Loffelmann"],
871
    "9": "2017-03-20 12:19:29",
872
    "40": ["DONE"],
873
    "41": ["CLOSED"],
874
    "20": ["unassigned"],
875
    "42": ["UNASSIGNED"],
876
    "43": ["UNASSIGNED"],
877
    "21": "2.0"
878
   },
879
   "id": 18,
880
   "text": "",
881
   "title": "5149"
882
  },
883
  {
884
   "archetype": 1,
885
   "attributes": {
886
    "22": "4.0",
887
    "23": "100",
888
    "24": [],
889
    "10": "https://students.kiv.zcu.cz:3443/issues/5150",
890
    "11": "5150",
891
    "12": ["unknown"],
892
    "13": ["Support"],
893
    "35": ["UNASSIGNED"],
894
    "14": ["Normal"],
895
    "36": ["NORMAL"],
896
    "37": ["NORMAL"],
897
    "15": ["unassigned"],
898
    "38": ["NORMAL"],
899
    "16": "2017-03-16 00:00:00",
900
    "39": ["UNASSIGNED"],
901
    "17": "2017-03-16 00:00:00",
902
    "18": ["1. iterace"],
903
    "19": ["Closed"],
904
    "0": "5150",
905
    "1": "Schůzka se zadavatelem (All)",
906
    "2": "Ujasnění prvotní vize projektu, ustanovení cíle projektu.\r\nDána jasná představa požadavků od zadavatele.",
907
    "8": ["Klára Beránková"],
908
    "9": "2017-03-20 13:09:19",
909
    "40": ["DONE"],
910
    "41": ["CLOSED"],
911
    "20": ["unassigned"],
912
    "42": ["UNASSIGNED"],
913
    "43": ["UNASSIGNED"],
914
    "21": "4.0"
915
   },
916
   "id": 19,
917
   "text": "",
918
   "title": "5150"
919
  },
920
  {
921
   "archetype": 1,
922
   "attributes": {
923
    "22": "4.0",
924
    "23": "100",
925
    "24": [],
926
    "10": "https://students.kiv.zcu.cz:3443/issues/5151",
927
    "11": "5151",
928
    "12": ["unknown"],
929
    "13": ["Support"],
930
    "35": ["UNASSIGNED"],
931
    "14": ["Normal"],
932
    "36": ["NORMAL"],
933
    "37": ["NORMAL"],
934
    "15": ["unassigned"],
935
    "38": ["NORMAL"],
936
    "16": "2017-03-16 00:00:00",
937
    "39": ["UNASSIGNED"],
938
    "17": "2017-03-16 00:00:00",
939
    "18": ["1. iterace"],
940
    "19": ["Closed"],
941
    "0": "5151",
942
    "1": "Schůzka týmu (All)",
943
    "2": "Seznámení mezi členy týmu",
944
    "8": ["Klára Beránková"],
945
    "9": "2017-03-20 13:10:22",
946
    "40": ["DONE"],
947
    "41": ["CLOSED"],
948
    "20": ["unassigned"],
949
    "42": ["UNASSIGNED"],
950
    "43": ["UNASSIGNED"],
951
    "21": "4.0"
952
   },
953
   "id": 20,
954
   "text": "",
955
   "title": "5151"
956
  },
957
  {
958
   "archetype": 1,
959
   "attributes": {
960
    "22": "0.5",
961
    "23": "100",
962
    "24": [],
963
    "10": "https://students.kiv.zcu.cz:3443/issues/5164",
964
    "11": "5164",
965
    "12": ["Klára Beránková"],
966
    "13": ["Support"],
967
    "35": ["UNASSIGNED"],
968
    "14": ["Normal"],
969
    "36": ["NORMAL"],
970
    "37": ["NORMAL"],
971
    "15": ["unassigned"],
972
    "38": ["NORMAL"],
973
    "16": "2017-03-21 00:00:00",
974
    "39": ["UNASSIGNED"],
975
    "17": "2017-03-30 00:00:00",
976
    "18": ["1. iterace"],
977
    "19": ["Closed"],
978
    "0": "5164",
979
    "1": "Založení wiki dokumentu",
980
    "2": "* doplnění údajů o schůzce se zadavatelem",
981
    "8": ["Klára Beránková"],
982
    "9": "2017-03-21 16:14:20",
983
    "40": ["DONE"],
984
    "41": ["CLOSED"],
985
    "20": ["unassigned"],
986
    "42": ["UNASSIGNED"],
987
    "43": ["UNASSIGNED"],
988
    "21": "0.5"
989
   },
990
   "id": 21,
991
   "text": "",
992
   "title": "5164"
993
  },
994
  {
995
   "archetype": 1,
996
   "attributes": {
997
    "22": "9.0",
998
    "23": "100",
999
    "24": [],
1000
    "10": "https://students.kiv.zcu.cz:3443/issues/5165",
1001
    "11": "5165",
1002
    "12": ["unknown"],
1003
    "13": ["Task"],
1004
    "35": ["TASK"],
1005
    "14": ["Normal"],
1006
    "36": ["NORMAL"],
1007
    "37": ["NORMAL"],
1008
    "15": ["unassigned"],
1009
    "38": ["NORMAL"],
1010
    "16": "2017-03-21 00:00:00",
1011
    "39": ["UNASSIGNED"],
1012
    "17": "2017-03-30 00:00:00",
1013
    "18": ["1. iterace"],
1014
    "19": ["Closed"],
1015
    "0": "5165",
1016
    "1": "Seznámení s prostředím Bluemix (All)",
1017
    "2": "* Každý člen týmu má 2h na seznámení s Bluemix",
1018
    "8": ["Klára Beránková"],
1019
    "9": "2017-03-21 16:21:17",
1020
    "40": ["DONE"],
1021
    "41": ["CLOSED"],
1022
    "20": ["unassigned"],
1023
    "42": ["UNASSIGNED"],
1024
    "43": ["UNASSIGNED"],
1025
    "21": "8.0"
1026
   },
1027
   "id": 22,
1028
   "text": "",
1029
   "title": "5165"
1030
  },
1031
  {
1032
   "archetype": 1,
1033
   "attributes": {
1034
    "22": "2.0",
1035
    "23": "100",
1036
    "24": [],
1037
    "10": "https://students.kiv.zcu.cz:3443/issues/5934",
1038
    "11": "5934",
1039
    "12": ["Vaclav Loffelmann"],
1040
    "13": ["Enhancement"],
1041
    "35": ["ENHANCEMENT"],
1042
    "14": ["Low"],
1043
    "36": ["LOW"],
1044
    "37": ["LOW"],
1045
    "15": ["unassigned"],
1046
    "38": ["LOW"],
1047
    "16": "2017-05-09 00:00:00",
1048
    "39": ["UNASSIGNED"],
1049
    "17": "2017-05-11 00:00:00",
1050
    "18": ["4. iterace"],
1051
    "19": ["Closed"],
1052
    "0": "5934",
1053
    "1": "vypnout debug logování z jetty serveru",
1054
    "2": "",
1055
    "8": ["Vaclav Loffelmann"],
1056
    "9": "2017-05-09 22:38:55",
1057
    "40": ["DONE"],
1058
    "41": ["CLOSED"],
1059
    "20": ["unassigned"],
1060
    "42": ["UNASSIGNED"],
1061
    "43": ["UNASSIGNED"],
1062
    "21": "1.0"
1063
   },
1064
   "id": 23,
1065
   "text": "",
1066
   "title": "5934"
1067
  },
1068
  {
1069
   "archetype": 1,
1070
   "attributes": {
1071
    "22": "3.0",
1072
    "23": "100",
1073
    "24": [],
1074
    "10": "https://students.kiv.zcu.cz:3443/issues/5166",
1075
    "11": "5166",
1076
    "12": ["U-LAPTOP-65DG60GC\\wena1"],
1077
    "13": ["Task"],
1078
    "35": ["TASK"],
1079
    "14": ["Normal"],
1080
    "36": ["NORMAL"],
1081
    "37": ["NORMAL"],
1082
    "15": ["unassigned"],
1083
    "38": ["NORMAL"],
1084
    "16": "2017-03-21 00:00:00",
1085
    "39": ["UNASSIGNED"],
1086
    "17": "2017-03-26 00:00:00",
1087
    "18": ["1. iterace"],
1088
    "19": ["Closed"],
1089
    "0": "5166",
1090
    "1": "Projít tutoriály na vybrané technologie",
1091
    "2": "* Bootstrap - https://www.w3schools.com/bootstrap/\r\n* jQuery - https://www.w3schools.com/jquery/\r\n* JavaScript - https://www.w3schools.com/js/js_intro.asp",
1092
    "8": ["Klára Beránková"],
1093
    "9": "2017-03-21 16:43:06",
1094
    "40": ["DONE"],
1095
    "41": ["CLOSED"],
1096
    "20": ["unassigned"],
1097
    "42": ["UNASSIGNED"],
1098
    "43": ["UNASSIGNED"],
1099
    "21": "3.0"
1100
   },
1101
   "id": 24,
1102
   "text": "",
1103
   "title": "5166"
1104
  },
1105
  {
1106
   "archetype": 1,
1107
   "attributes": {
1108
    "22": "3.0",
1109
    "23": "100",
1110
    "24": [],
1111
    "10": "https://students.kiv.zcu.cz:3443/issues/5167",
1112
    "11": "5167",
1113
    "12": ["Klára Beránková"],
1114
    "13": ["Task"],
1115
    "35": ["TASK"],
1116
    "14": ["Normal"],
1117
    "36": ["NORMAL"],
1118
    "37": ["NORMAL"],
1119
    "15": ["unassigned"],
1120
    "38": ["NORMAL"],
1121
    "16": "2017-03-21 00:00:00",
1122
    "39": ["UNASSIGNED"],
1123
    "17": "2017-03-26 00:00:00",
1124
    "18": ["1. iterace"],
1125
    "19": ["Closed"],
1126
    "0": "5167",
1127
    "1": "Projít tutoriály na vybrané technologie",
1128
    "2": "* Bootstrap - https://www.w3schools.com/bootstrap/\r\n* jQuery - https://www.w3schools.com/jquery/\r\n* JavaScript - https://www.w3schools.com/js/js_intro.asp",
1129
    "8": ["Klára Beránková"],
1130
    "9": "2017-03-21 16:43:27",
1131
    "40": ["DONE"],
1132
    "41": ["CLOSED"],
1133
    "20": ["unassigned"],
1134
    "42": ["UNASSIGNED"],
1135
    "43": ["UNASSIGNED"],
1136
    "21": "3.0"
1137
   },
1138
   "id": 25,
1139
   "text": "",
1140
   "title": "5167"
1141
  },
1142
  {
1143
   "archetype": 1,
1144
   "attributes": {
1145
    "22": "3.0",
1146
    "23": "100",
1147
    "24": [],
1148
    "10": "https://students.kiv.zcu.cz:3443/issues/5683",
1149
    "11": "5683",
1150
    "12": ["Vaclav Loffelmann"],
1151
    "13": ["Enhancement"],
1152
    "35": ["ENHANCEMENT"],
1153
    "14": ["Normal"],
1154
    "36": ["NORMAL"],
1155
    "37": ["NORMAL"],
1156
    "15": ["unassigned"],
1157
    "38": ["NORMAL"],
1158
    "16": "2017-04-19 00:00:00",
1159
    "39": ["UNASSIGNED"],
1160
    "17": "2017-04-27 00:00:00",
1161
    "18": ["3. iterace"],
1162
    "19": ["Closed"],
1163
    "0": "5683",
1164
    "1": "vybrat a zprovoznit frontend client-side template lib",
1165
    "2": "",
1166
    "8": ["Vaclav Loffelmann"],
1167
    "9": "2017-04-19 23:07:09",
1168
    "40": ["DONE"],
1169
    "41": ["CLOSED"],
1170
    "20": ["unassigned"],
1171
    "42": ["UNASSIGNED"],
1172
    "43": ["UNASSIGNED"],
1173
    "21": "3.0"
1174
   },
1175
   "id": 26,
1176
   "text": "",
1177
   "title": "5683"
1178
  },
1179
  {
1180
   "archetype": 1,
1181
   "attributes": {
1182
    "22": "4.0",
1183
    "23": "100",
1184
    "24": [],
1185
    "10": "https://students.kiv.zcu.cz:3443/issues/5430",
1186
    "11": "5430",
1187
    "12": ["Vaclav Loffelmann"],
1188
    "13": ["Enhancement"],
1189
    "35": ["ENHANCEMENT"],
1190
    "14": ["Normal"],
1191
    "36": ["NORMAL"],
1192
    "37": ["NORMAL"],
1193
    "15": ["unassigned"],
1194
    "38": ["NORMAL"],
1195
    "16": "2017-04-06 00:00:00",
1196
    "39": ["UNASSIGNED"],
1197
    "17": "2017-04-13 00:00:00",
1198
    "18": ["2. iterace"],
1199
    "19": ["Closed"],
1200
    "0": "5430",
1201
    "1": "Návrh databaze",
1202
    "2": "",
1203
    "8": ["Vaclav Loffelmann"],
1204
    "9": "2017-04-06 17:05:12",
1205
    "40": ["DONE"],
1206
    "41": ["CLOSED"],
1207
    "20": ["unassigned"],
1208
    "42": ["UNASSIGNED"],
1209
    "43": ["UNASSIGNED"],
... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.

Také k dispozici: Unified diff