trollolo 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/.travis.yml +5 -1
- data/CHANGELOG.md +29 -0
- data/Gemfile +7 -2
- data/README.md +19 -0
- data/bin/trollolo +1 -1
- data/lib/array.rb +6 -0
- data/lib/backup.rb +67 -0
- data/lib/burndown_chart.rb +96 -67
- data/lib/burndown_data.rb +62 -123
- data/lib/card.rb +74 -30
- data/lib/cli.rb +131 -9
- data/lib/column.rb +61 -0
- data/lib/result.rb +0 -0
- data/lib/scrum_board.rb +104 -0
- data/lib/settings.rb +9 -4
- data/lib/trello_wrapper.rb +62 -0
- data/lib/trollolo.rb +10 -7
- data/lib/version.rb +1 -1
- data/scripts/.gitignore +1 -0
- data/scripts/burndowndata.py +113 -0
- data/scripts/create_burndown.py +111 -146
- data/scripts/graph.py +116 -0
- data/scripts/plot.py +131 -0
- data/spec/data/board.json +63 -0
- data/spec/data/burndown-data.yaml +3 -0
- data/spec/data/burndown_dir/burndown-data-01.yaml +1 -1
- data/spec/data/burndown_dir/burndown-data-02.yaml +1 -1
- data/spec/data/card.json +61 -0
- data/spec/data/full-board.json +1626 -0
- data/spec/data/lists.json +25 -25
- data/spec/data/trollolorc +5 -0
- data/spec/{command_line_spec.rb → integration/command_line_spec.rb} +1 -4
- data/spec/integration/create_burndown_spec.rb +57 -0
- data/spec/integration/integration_spec_helper.rb +10 -0
- data/spec/integration/support/aruba_hook.rb +11 -0
- data/spec/integration/support/custom_matchers.rb +13 -0
- data/spec/{wrapper → integration/wrapper}/credentials_input_wrapper +2 -2
- data/spec/{wrapper → integration/wrapper}/empty_config_trollolo_wrapper +2 -2
- data/spec/integration/wrapper/trollolo_wrapper +10 -0
- data/spec/unit/backup_spec.rb +107 -0
- data/spec/unit/burndown_chart_spec.rb +396 -0
- data/spec/unit/burndown_data_spec.rb +118 -0
- data/spec/unit/card_spec.rb +79 -0
- data/spec/unit/cli_spec.rb +38 -0
- data/spec/unit/retrieve_data_spec.rb +54 -0
- data/spec/unit/scrum_board_spec.rb +18 -0
- data/spec/{settings_spec.rb → unit/settings_spec.rb} +1 -1
- data/spec/{spec_helper.rb → unit/spec_helper.rb} +4 -12
- data/spec/unit/support/test_data_operations.rb +7 -0
- data/spec/unit/support/update_webmock_data +17 -0
- data/spec/unit/support/webmocks.rb +52 -0
- data/spec/unit/trello_wrapper_spec.rb +47 -0
- data/trollolo.gemspec +10 -11
- metadata +54 -37
- data/lib/trello.rb +0 -66
- data/spec/burndown_chart_spec.rb +0 -307
- data/spec/burndown_data_spec.rb +0 -125
- data/spec/card_spec.rb +0 -15
- data/spec/cli_spec.rb +0 -18
- data/spec/data/cards.json +0 -1002
- data/spec/trello_spec.rb +0 -32
- data/spec/wrapper/trollolo_wrapper +0 -11
data/scripts/graph.py
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
#!/usr/bin/env python
|
2
|
+
|
3
|
+
class Graph:
|
4
|
+
"Plot various graphs into burndown chart"
|
5
|
+
|
6
|
+
def __init__ (self, graph_data):
|
7
|
+
self.getGraphData(graph_data)
|
8
|
+
|
9
|
+
def getGraphData(self, graph_data):
|
10
|
+
self.x = graph_data['x']
|
11
|
+
self.y = graph_data['y']
|
12
|
+
self.xy_extra = 0
|
13
|
+
self.ymin = graph_data['ymin']
|
14
|
+
self.ymax = graph_data['ymax']
|
15
|
+
self.total = graph_data['total']
|
16
|
+
self.plot_count = graph_data['plot_count']
|
17
|
+
self.draw_tasks_diff = graph_data['draw_tasks_diff']
|
18
|
+
self.draw_bonus_tasks_diff = graph_data['draw_bonus_tasks_diff']
|
19
|
+
|
20
|
+
if 'x_extra' in graph_data:
|
21
|
+
self.x_extra = graph_data['x_extra']
|
22
|
+
self.y_extra = graph_data['y_extra']
|
23
|
+
self.xy_extra = 1
|
24
|
+
|
25
|
+
if self.draw_tasks_diff:
|
26
|
+
self.x_arrow_start_end = graph_data['x_arrow_start_end']
|
27
|
+
self.y_arrow_start = graph_data['y_arrow_start']
|
28
|
+
self.y_arrow_end = graph_data['y_arrow_end']
|
29
|
+
self.y_text = graph_data['y_text']
|
30
|
+
|
31
|
+
if self.draw_bonus_tasks_diff:
|
32
|
+
self.y_arrow_start_bonus = graph_data['y_arrow_start_bonus']
|
33
|
+
self.y_arrow_end_bonus = graph_data['y_arrow_end_bonus']
|
34
|
+
self.y_text_bonus = graph_data['y_text_bonus']
|
35
|
+
self.bonus_tasks_day_one = graph_data['bonus_tasks_day_one']
|
36
|
+
|
37
|
+
self.subplot = graph_data['subplot']
|
38
|
+
return
|
39
|
+
|
40
|
+
def draw(self, y_label, color, marker, linestyle, linewidth, plot):
|
41
|
+
self.plot = plot
|
42
|
+
self.subplot.set_ylabel(y_label, color=color)
|
43
|
+
self.subplot.set_ylim([self.ymin, self.ymax])
|
44
|
+
|
45
|
+
if self.plot_count == 1:
|
46
|
+
self.subplot.tick_params(axis='y', colors=color)
|
47
|
+
|
48
|
+
if self.plot_count >= 2:
|
49
|
+
self.subplot.tick_params(axis='y', colors=color)
|
50
|
+
self.subplot.spines['right'].set_position(('axes', 1.15))
|
51
|
+
self.plot.fig.subplots_adjust(right=0.8)
|
52
|
+
|
53
|
+
self.subplot.plot(self.x, self.y, color=color, marker=marker, linestyle=linestyle, linewidth=linewidth)
|
54
|
+
self.drawBonus(color, marker, linestyle, linewidth)
|
55
|
+
self.drawBars(color)
|
56
|
+
if self.draw_tasks_diff:
|
57
|
+
self.drawTasksDiff(color)
|
58
|
+
if self.draw_bonus_tasks_diff:
|
59
|
+
self.drawBonusTasksDiff(color)
|
60
|
+
return
|
61
|
+
|
62
|
+
def drawBonus(self, color, marker, linestyle, linewidth):
|
63
|
+
if self.xy_extra and len(self.x_extra) > 0:
|
64
|
+
self.subplot.plot(self.x_extra, self.y_extra, color=color, marker=marker, linestyle=linestyle, linewidth=linewidth)
|
65
|
+
return
|
66
|
+
|
67
|
+
def drawBars(self, color):
|
68
|
+
if len(self.total) > 1:
|
69
|
+
width = 0.2
|
70
|
+
offset = 0
|
71
|
+
if self.plot_count == 1:
|
72
|
+
offset = -width
|
73
|
+
new = [0, 0]
|
74
|
+
for i in range(1, len(self.total)):
|
75
|
+
new.append(self.total[i] - self.total[i - 1])
|
76
|
+
additional_days = []
|
77
|
+
additional = []
|
78
|
+
for i in range(len(new)):
|
79
|
+
if new[i] != 0:
|
80
|
+
additional_days.append(i + offset)
|
81
|
+
additional.append(new[i])
|
82
|
+
if len(additional) > 0:
|
83
|
+
self.subplot.bar(additional_days, additional, width, color=color)
|
84
|
+
return
|
85
|
+
|
86
|
+
def drawTasksDiff(self, color):
|
87
|
+
tasks_done = self.total[0] - self.y[0]
|
88
|
+
|
89
|
+
if tasks_done > 0:
|
90
|
+
self.subplot.annotate("",
|
91
|
+
xy=(self.x_arrow_start_end, self.y_arrow_start), xycoords='data',
|
92
|
+
xytext=(self.x_arrow_start_end, self.y_arrow_end), textcoords='data',
|
93
|
+
arrowprops=dict(arrowstyle="<|-|>", connectionstyle="arc3", color=color)
|
94
|
+
)
|
95
|
+
|
96
|
+
self.subplot.text(0.7, self.y_text, str(int(tasks_done)) + " tasks done",
|
97
|
+
rotation='vertical', verticalalignment='top', color=color
|
98
|
+
)
|
99
|
+
return
|
100
|
+
|
101
|
+
def drawBonusTasksDiff(self, color):
|
102
|
+
if self.bonus_tasks_day_one:
|
103
|
+
self.subplot.annotate("",
|
104
|
+
xy=(self.x_arrow_start_end, self.y_arrow_start_bonus), xycoords='data',
|
105
|
+
xytext=(self.x_arrow_start_end, self.y_arrow_end_bonus), textcoords='data',
|
106
|
+
arrowprops=dict(arrowstyle="<|-|>", connectionstyle="arc3", color=color)
|
107
|
+
)
|
108
|
+
|
109
|
+
self.subplot.text(0.4, self.y_text_bonus, str(int(-self.y_extra[0])) + " extra",
|
110
|
+
rotation='vertical', verticalalignment='center', color=color
|
111
|
+
)
|
112
|
+
self.subplot.text(0.7, self.y_text_bonus, "tasks done",
|
113
|
+
rotation='vertical', verticalalignment='center', color=color
|
114
|
+
)
|
115
|
+
return
|
116
|
+
|
data/scripts/plot.py
ADDED
@@ -0,0 +1,131 @@
|
|
1
|
+
#!/usr/bin/env python
|
2
|
+
import matplotlib.pyplot as plt
|
3
|
+
|
4
|
+
|
5
|
+
class Plot:
|
6
|
+
"Set all parameters needed to print burndown charts"
|
7
|
+
|
8
|
+
def __init__ (self, data):
|
9
|
+
self.data = data
|
10
|
+
figure_width = 11
|
11
|
+
figure_height = 6
|
12
|
+
|
13
|
+
self.plot_count = 0
|
14
|
+
|
15
|
+
self.setXKCD()
|
16
|
+
self.createFigure(figure_width, figure_height)
|
17
|
+
self.setXAxisLimits(0, self.data.total_days+1)
|
18
|
+
self.setXAxisTicks(self.data.total_days)
|
19
|
+
|
20
|
+
def setXKCD(self):
|
21
|
+
plt.xkcd()
|
22
|
+
return
|
23
|
+
|
24
|
+
def createFigure(self, width, height):
|
25
|
+
self.fig = plt.figure(1, figsize=(width, height))
|
26
|
+
return
|
27
|
+
|
28
|
+
def setTitle(self, title, fontsize):
|
29
|
+
plt.suptitle(str(title), fontsize=fontsize)
|
30
|
+
return
|
31
|
+
|
32
|
+
def setXAxisLabel(self, label):
|
33
|
+
plt.xlabel(label)
|
34
|
+
return
|
35
|
+
|
36
|
+
def drawDiagonal(self, color):
|
37
|
+
plt.plot([1, self.data.total_days], [self.data.total_story_points[0], 0], color=color)
|
38
|
+
return
|
39
|
+
|
40
|
+
def drawWaterLine(self, color, linestyle):
|
41
|
+
plt.plot([0, self.data.total_days+1], [0, 0], color=color, linestyle=linestyle)
|
42
|
+
return
|
43
|
+
|
44
|
+
def drawWeekendLines(self, color, linestyle):
|
45
|
+
for weekend_line in self.data.weekend_lines:
|
46
|
+
plt.plot([weekend_line, weekend_line], [self.data.ymin+1, self.data.ymax-1], color=color, linestyle=linestyle)
|
47
|
+
return
|
48
|
+
|
49
|
+
def setXAxisLimits(self, x_min, x_max):
|
50
|
+
plt.xlim([x_min, x_max])
|
51
|
+
return
|
52
|
+
|
53
|
+
def setXAxisTicks(self, total_days):
|
54
|
+
x_labels = range(0, total_days)
|
55
|
+
x_range = range(1, total_days + 1)
|
56
|
+
plt.xticks(x_range, x_labels)
|
57
|
+
return
|
58
|
+
|
59
|
+
def saveImage(self, args):
|
60
|
+
plt.savefig('burndown-' + args.sprint + '.png',bbox_inches='tight')
|
61
|
+
if not args.no_head:
|
62
|
+
plt.show()
|
63
|
+
return
|
64
|
+
|
65
|
+
def createSubplot(self):
|
66
|
+
if self.plot_count == 0:
|
67
|
+
self.first_subplot = plt.subplot()
|
68
|
+
self.subplot = self.first_subplot
|
69
|
+
else:
|
70
|
+
self.subplot = self.first_subplot.twinx()
|
71
|
+
return self.subplot
|
72
|
+
|
73
|
+
def storyPoints(self):
|
74
|
+
story_points = {}
|
75
|
+
story_points['draw_tasks_diff'] = 0
|
76
|
+
story_points['draw_bonus_tasks_diff'] = 0
|
77
|
+
story_points['x'] = self.data.days
|
78
|
+
story_points['y'] = self.data.open_story_points
|
79
|
+
if self.data.extra_day:
|
80
|
+
story_points['x_extra'] = self.data.story_points_extra_days
|
81
|
+
story_points['y_extra'] = self.data.bonus_story_points_done
|
82
|
+
story_points['total'] = self.data.total_story_points
|
83
|
+
story_points['ymin'] = self.data.ymin
|
84
|
+
story_points['ymax'] = self.data.ymax
|
85
|
+
story_points['subplot'] = self.createSubplot()
|
86
|
+
story_points['plot_count'] = self.plot_count
|
87
|
+
self.plot_count += 1
|
88
|
+
return story_points
|
89
|
+
|
90
|
+
def tasks(self):
|
91
|
+
tasks = {}
|
92
|
+
tasks['draw_tasks_diff'] = 1
|
93
|
+
tasks['draw_bonus_tasks_diff'] = 0
|
94
|
+
tasks['x'] = self.data.days
|
95
|
+
tasks['y'] = self.data.open_tasks
|
96
|
+
tasks['x_arrow_start_end'] = self.data.days[0]
|
97
|
+
tasks['y_arrow_start'] = self.data.total_story_points[0] * self.data.scalefactor - 0.5
|
98
|
+
tasks['y_arrow_end'] = self.data.open_tasks[0] + 0.5
|
99
|
+
tasks['y_text'] = self.data.total_story_points[0] * self.data.scalefactor
|
100
|
+
if self.data.extra_day:
|
101
|
+
tasks['x_extra'] = self.data.tasks_extra_days
|
102
|
+
tasks['y_extra'] = self.data.bonus_tasks_done
|
103
|
+
if self.data.bonus_tasks_day_one:
|
104
|
+
tasks['draw_bonus_tasks_diff'] = 1
|
105
|
+
tasks['y_arrow_start_bonus'] = 0
|
106
|
+
tasks['y_arrow_end_bonus'] = 0.5 - self.data.bonus_tasks_day_one
|
107
|
+
tasks['y_text_bonus'] = self.data.bonus_tasks_done[0] / 2
|
108
|
+
tasks['bonus_tasks_day_one'] = self.data.bonus_tasks_day_one
|
109
|
+
tasks['total'] = self.data.total_tasks
|
110
|
+
tasks['ymin'] = self.data.ymin * self.data.scalefactor
|
111
|
+
tasks['ymax'] = self.data.ymax * self.data.scalefactor
|
112
|
+
tasks['subplot'] = self.createSubplot()
|
113
|
+
tasks['plot_count'] = self.plot_count
|
114
|
+
self.plot_count += 1
|
115
|
+
return tasks
|
116
|
+
|
117
|
+
def fastLane(self):
|
118
|
+
fast_lane = {}
|
119
|
+
fast_lane['draw_tasks_diff'] = 0
|
120
|
+
fast_lane['draw_bonus_tasks_diff'] = 0
|
121
|
+
fast_lane['x'] = self.data.x_fast_lane
|
122
|
+
fast_lane['y'] = self.data.y_fast_lane
|
123
|
+
fast_lane['ymin'] = self.data.ymin
|
124
|
+
fast_lane['ymax'] = self.data.ymax
|
125
|
+
fast_lane['total'] = self.data.total_fast_lane
|
126
|
+
fast_lane['subplot'] = self.createSubplot()
|
127
|
+
fast_lane['plot_count'] = self.plot_count
|
128
|
+
self.plot_count += 1
|
129
|
+
return fast_lane
|
130
|
+
|
131
|
+
|
@@ -0,0 +1,63 @@
|
|
1
|
+
{
|
2
|
+
"id": "53186e8391ef8671265eba9d",
|
3
|
+
"name": "Trollolo Testing Board",
|
4
|
+
"desc": "",
|
5
|
+
"descData": null,
|
6
|
+
"closed": false,
|
7
|
+
"idOrganization": "4e70fbb834cec71bda0ba6dc",
|
8
|
+
"pinned": false,
|
9
|
+
"url": "https://trello.com/b/CRdddpdy/trollolo-testing-board",
|
10
|
+
"shortUrl": "https://trello.com/b/CRdddpdy",
|
11
|
+
"prefs": {
|
12
|
+
"permissionLevel": "public",
|
13
|
+
"voting": "disabled",
|
14
|
+
"comments": "members",
|
15
|
+
"invitations": "members",
|
16
|
+
"selfJoin": false,
|
17
|
+
"cardCovers": true,
|
18
|
+
"cardAging": "regular",
|
19
|
+
"background": "5319bb612fb0bcdf451401a8",
|
20
|
+
"backgroundColor": null,
|
21
|
+
"backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/4e727168cb2ac700002cf6b6/990df8f044b98679ccbef943beff54d6/4268316033_6d847a0219_b.jpg",
|
22
|
+
"backgroundImageScaled": [
|
23
|
+
{
|
24
|
+
"width": 140,
|
25
|
+
"height": 100,
|
26
|
+
"url": "https://trello-backgrounds.s3.amazonaws.com/4e727168cb2ac700002cf6b6/4a9e666708f2f6285cfce64e2229d209/4268316033_6d847a0219_b.jpg_140x100.png"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"width": 256,
|
30
|
+
"height": 192,
|
31
|
+
"url": "https://trello-backgrounds.s3.amazonaws.com/4e727168cb2ac700002cf6b6/3e601df4842bf07f6f17004cff104c89/4268316033_6d847a0219_b.jpg_256x192.png"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"width": 480,
|
35
|
+
"height": 480,
|
36
|
+
"url": "https://trello-backgrounds.s3.amazonaws.com/4e727168cb2ac700002cf6b6/155f89822b21a277cc3b8eef00acb56d/4268316033_6d847a0219_b.jpg_480x480.png"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"width": 960,
|
40
|
+
"height": 960,
|
41
|
+
"url": "https://trello-backgrounds.s3.amazonaws.com/4e727168cb2ac700002cf6b6/7d370dfc2b6f741a5a15c81147152537/4268316033_6d847a0219_b.jpg_960x960.png"
|
42
|
+
}
|
43
|
+
],
|
44
|
+
"backgroundTile": false,
|
45
|
+
"backgroundBrightness": "light",
|
46
|
+
"canBePublic": false,
|
47
|
+
"canBeOrg": false,
|
48
|
+
"canBePrivate": false,
|
49
|
+
"canInvite": true
|
50
|
+
},
|
51
|
+
"labelNames": {
|
52
|
+
"green": "",
|
53
|
+
"yellow": "Under waterline",
|
54
|
+
"orange": "",
|
55
|
+
"red": "",
|
56
|
+
"purple": "",
|
57
|
+
"blue": "Sticky",
|
58
|
+
"sky": "",
|
59
|
+
"lime": "",
|
60
|
+
"pink": "",
|
61
|
+
"black": ""
|
62
|
+
}
|
63
|
+
}
|
@@ -1,5 +1,6 @@
|
|
1
1
|
---
|
2
2
|
meta:
|
3
|
+
board_id: myboardid
|
3
4
|
sprint: 2
|
4
5
|
total_days: 9
|
5
6
|
weekend_lines:
|
@@ -7,6 +8,7 @@ meta:
|
|
7
8
|
- 7.5
|
8
9
|
days:
|
9
10
|
- date: '2014-04-23'
|
11
|
+
updated_at: '2014-04-23T10:00:00+01:00'
|
10
12
|
story_points:
|
11
13
|
total: 30
|
12
14
|
open: 23
|
@@ -14,6 +16,7 @@ days:
|
|
14
16
|
total: 25
|
15
17
|
open: 21
|
16
18
|
- date: '2014-04-24'
|
19
|
+
updated_at: '2014-04-24T19:00:00+01:00'
|
17
20
|
story_points:
|
18
21
|
total: 30
|
19
22
|
open: 21
|
data/spec/data/card.json
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
{
|
2
|
+
"id": "5319c0409a567dc62b68aa6b",
|
3
|
+
"checkItemStates": [
|
4
|
+
{
|
5
|
+
"idCheckItem": "5319c052d86da6cb6fa2a9e0",
|
6
|
+
"state": "complete"
|
7
|
+
},
|
8
|
+
{
|
9
|
+
"idCheckItem": "5319c0548163d08c11d36a07",
|
10
|
+
"state": "complete"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"idCheckItem": "5319c0562fef3bc511c79279",
|
14
|
+
"state": "complete"
|
15
|
+
}
|
16
|
+
],
|
17
|
+
"closed": false,
|
18
|
+
"dateLastActivity": "2014-03-07T12:49:44.474Z",
|
19
|
+
"desc": "my description",
|
20
|
+
"descData": null,
|
21
|
+
"email": null,
|
22
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
23
|
+
"idList": "5319bf045c6ef0092c55331e",
|
24
|
+
"idMembersVoted": [
|
25
|
+
|
26
|
+
],
|
27
|
+
"idShort": 8,
|
28
|
+
"idAttachmentCover": null,
|
29
|
+
"manualCoverAttachment": false,
|
30
|
+
"idLabels": [
|
31
|
+
|
32
|
+
],
|
33
|
+
"name": "(2) P2: Create Scrum columns",
|
34
|
+
"pos": 327679,
|
35
|
+
"shortLink": "afmNzjbW",
|
36
|
+
"badges": {
|
37
|
+
"votes": 0,
|
38
|
+
"viewingMemberVoted": false,
|
39
|
+
"subscribed": false,
|
40
|
+
"fogbugz": "",
|
41
|
+
"checkItems": 3,
|
42
|
+
"checkItemsChecked": 2,
|
43
|
+
"comments": 0,
|
44
|
+
"attachments": 0,
|
45
|
+
"description": false,
|
46
|
+
"due": null
|
47
|
+
},
|
48
|
+
"due": null,
|
49
|
+
"idChecklists": [
|
50
|
+
"5319c04d592a9182153db831"
|
51
|
+
],
|
52
|
+
"idMembers": [
|
53
|
+
|
54
|
+
],
|
55
|
+
"labels": [
|
56
|
+
|
57
|
+
],
|
58
|
+
"shortUrl": "https://trello.com/c/afmNzjbW",
|
59
|
+
"subscribed": false,
|
60
|
+
"url": "https://trello.com/c/afmNzjbW/8-2-p2-create-scrum-columns"
|
61
|
+
}
|
@@ -0,0 +1,1626 @@
|
|
1
|
+
{
|
2
|
+
"id": "53186e8391ef8671265eba9d",
|
3
|
+
"name": "Trollolo Testing Board",
|
4
|
+
"desc": "",
|
5
|
+
"descData": null,
|
6
|
+
"closed": false,
|
7
|
+
"idOrganization": "4e70fbb834cec71bda0ba6dc",
|
8
|
+
"pinned": false,
|
9
|
+
"url": "https://trello.com/b/CRdddpdy/trollolo-testing-board",
|
10
|
+
"shortUrl": "https://trello.com/b/CRdddpdy",
|
11
|
+
"prefs": {
|
12
|
+
"permissionLevel": "public",
|
13
|
+
"voting": "disabled",
|
14
|
+
"comments": "members",
|
15
|
+
"invitations": "members",
|
16
|
+
"selfJoin": false,
|
17
|
+
"cardCovers": true,
|
18
|
+
"cardAging": "regular",
|
19
|
+
"background": "5319bb612fb0bcdf451401a8",
|
20
|
+
"backgroundColor": null,
|
21
|
+
"backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/4e727168cb2ac700002cf6b6/990df8f044b98679ccbef943beff54d6/4268316033_6d847a0219_b.jpg",
|
22
|
+
"backgroundImageScaled": [
|
23
|
+
{
|
24
|
+
"width": 140,
|
25
|
+
"height": 100,
|
26
|
+
"url": "https://trello-backgrounds.s3.amazonaws.com/4e727168cb2ac700002cf6b6/4a9e666708f2f6285cfce64e2229d209/4268316033_6d847a0219_b.jpg_140x100.png"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"width": 256,
|
30
|
+
"height": 192,
|
31
|
+
"url": "https://trello-backgrounds.s3.amazonaws.com/4e727168cb2ac700002cf6b6/3e601df4842bf07f6f17004cff104c89/4268316033_6d847a0219_b.jpg_256x192.png"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"width": 480,
|
35
|
+
"height": 480,
|
36
|
+
"url": "https://trello-backgrounds.s3.amazonaws.com/4e727168cb2ac700002cf6b6/155f89822b21a277cc3b8eef00acb56d/4268316033_6d847a0219_b.jpg_480x480.png"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"width": 960,
|
40
|
+
"height": 960,
|
41
|
+
"url": "https://trello-backgrounds.s3.amazonaws.com/4e727168cb2ac700002cf6b6/7d370dfc2b6f741a5a15c81147152537/4268316033_6d847a0219_b.jpg_960x960.png"
|
42
|
+
}
|
43
|
+
],
|
44
|
+
"backgroundTile": false,
|
45
|
+
"backgroundBrightness": "light",
|
46
|
+
"canBePublic": false,
|
47
|
+
"canBeOrg": false,
|
48
|
+
"canBePrivate": false,
|
49
|
+
"canInvite": true
|
50
|
+
},
|
51
|
+
"labelNames": {
|
52
|
+
"green": "",
|
53
|
+
"yellow": "Under waterline",
|
54
|
+
"orange": "",
|
55
|
+
"red": "",
|
56
|
+
"purple": "",
|
57
|
+
"blue": "Sticky",
|
58
|
+
"sky": "",
|
59
|
+
"lime": "",
|
60
|
+
"pink": "",
|
61
|
+
"black": ""
|
62
|
+
},
|
63
|
+
"cards": [
|
64
|
+
{
|
65
|
+
"id": "5319bf244cc53afd5afd991f",
|
66
|
+
"checkItemStates": [
|
67
|
+
|
68
|
+
],
|
69
|
+
"closed": false,
|
70
|
+
"dateLastActivity": "2014-03-07T12:52:07.236Z",
|
71
|
+
"desc": "",
|
72
|
+
"descData": null,
|
73
|
+
"email": null,
|
74
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
75
|
+
"idList": "53186e8391ef8671265eba9e",
|
76
|
+
"idMembersVoted": [
|
77
|
+
|
78
|
+
],
|
79
|
+
"idShort": 3,
|
80
|
+
"idAttachmentCover": null,
|
81
|
+
"manualCoverAttachment": false,
|
82
|
+
"idLabels": [
|
83
|
+
"5463b41e74d650d56700f16a"
|
84
|
+
],
|
85
|
+
"name": "Sprint 3",
|
86
|
+
"pos": 65535,
|
87
|
+
"shortLink": "GRsvY3vZ",
|
88
|
+
"badges": {
|
89
|
+
"votes": 0,
|
90
|
+
"viewingMemberVoted": false,
|
91
|
+
"subscribed": false,
|
92
|
+
"fogbugz": "",
|
93
|
+
"checkItems": 0,
|
94
|
+
"checkItemsChecked": 0,
|
95
|
+
"comments": 0,
|
96
|
+
"attachments": 0,
|
97
|
+
"description": false,
|
98
|
+
"due": null
|
99
|
+
},
|
100
|
+
"due": null,
|
101
|
+
"idChecklists": [
|
102
|
+
|
103
|
+
],
|
104
|
+
"idMembers": [
|
105
|
+
|
106
|
+
],
|
107
|
+
"labels": [
|
108
|
+
{
|
109
|
+
"id": "5463b41e74d650d56700f16a",
|
110
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
111
|
+
"name": "Sticky",
|
112
|
+
"color": "blue",
|
113
|
+
"uses": 8
|
114
|
+
}
|
115
|
+
],
|
116
|
+
"shortUrl": "https://trello.com/c/GRsvY3vZ",
|
117
|
+
"subscribed": false,
|
118
|
+
"url": "https://trello.com/c/GRsvY3vZ/3-sprint-3",
|
119
|
+
"checklists": [
|
120
|
+
|
121
|
+
]
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"id": "5319c16d9d04708d450d65f1",
|
125
|
+
"checkItemStates": [
|
126
|
+
|
127
|
+
],
|
128
|
+
"closed": false,
|
129
|
+
"dateLastActivity": "2014-03-07T13:00:17.162Z",
|
130
|
+
"desc": "",
|
131
|
+
"descData": null,
|
132
|
+
"email": null,
|
133
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
134
|
+
"idList": "53186e8391ef8671265eba9e",
|
135
|
+
"idMembersVoted": [
|
136
|
+
|
137
|
+
],
|
138
|
+
"idShort": 16,
|
139
|
+
"idAttachmentCover": null,
|
140
|
+
"manualCoverAttachment": false,
|
141
|
+
"idLabels": [
|
142
|
+
|
143
|
+
],
|
144
|
+
"name": "(3) P1: Fill Backlog column",
|
145
|
+
"pos": 131071,
|
146
|
+
"shortLink": "pOLDMtPW",
|
147
|
+
"badges": {
|
148
|
+
"votes": 0,
|
149
|
+
"viewingMemberVoted": false,
|
150
|
+
"subscribed": false,
|
151
|
+
"fogbugz": "",
|
152
|
+
"checkItems": 4,
|
153
|
+
"checkItemsChecked": 0,
|
154
|
+
"comments": 0,
|
155
|
+
"attachments": 0,
|
156
|
+
"description": false,
|
157
|
+
"due": null
|
158
|
+
},
|
159
|
+
"due": null,
|
160
|
+
"idChecklists": [
|
161
|
+
"5319c22c584448bf2c314936"
|
162
|
+
],
|
163
|
+
"idMembers": [
|
164
|
+
|
165
|
+
],
|
166
|
+
"labels": [
|
167
|
+
|
168
|
+
],
|
169
|
+
"shortUrl": "https://trello.com/c/pOLDMtPW",
|
170
|
+
"subscribed": false,
|
171
|
+
"url": "https://trello.com/c/pOLDMtPW/16-3-p1-fill-backlog-column",
|
172
|
+
"checklists": [
|
173
|
+
{
|
174
|
+
"id": "5319c22c584448bf2c314936",
|
175
|
+
"name": "Tasks",
|
176
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
177
|
+
"idCard": "5319c16d9d04708d450d65f1",
|
178
|
+
"pos": 16384,
|
179
|
+
"checkItems": [
|
180
|
+
{
|
181
|
+
"id": "5319c234b0d2cfb56fa08dcc",
|
182
|
+
"name": "Add card to fill Backlog column",
|
183
|
+
"nameData": {
|
184
|
+
"emoji": {
|
185
|
+
}
|
186
|
+
},
|
187
|
+
"pos": 17129,
|
188
|
+
"state": "incomplete"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"id": "5319c2696a28a4b415d010d9",
|
192
|
+
"name": "Add card to read data from Trollolo",
|
193
|
+
"nameData": null,
|
194
|
+
"pos": 33879,
|
195
|
+
"state": "incomplete"
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"id": "5319c28620f6f38b2c2c63ae",
|
199
|
+
"name": "Add card to save read data as reference data",
|
200
|
+
"nameData": null,
|
201
|
+
"pos": 50809,
|
202
|
+
"state": "incomplete"
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"id": "5319c2e18554929611011756",
|
206
|
+
"name": "Add card under the waterline",
|
207
|
+
"nameData": null,
|
208
|
+
"pos": 68121,
|
209
|
+
"state": "incomplete"
|
210
|
+
}
|
211
|
+
]
|
212
|
+
}
|
213
|
+
]
|
214
|
+
},
|
215
|
+
{
|
216
|
+
"id": "5319c57ff6be845f428aa7a3",
|
217
|
+
"checkItemStates": [
|
218
|
+
|
219
|
+
],
|
220
|
+
"closed": false,
|
221
|
+
"dateLastActivity": "2015-02-09T15:47:34.597Z",
|
222
|
+
"desc": "",
|
223
|
+
"descData": null,
|
224
|
+
"email": null,
|
225
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
226
|
+
"idList": "53186e8391ef8671265eba9e",
|
227
|
+
"idMembersVoted": [
|
228
|
+
|
229
|
+
],
|
230
|
+
"idShort": 18,
|
231
|
+
"idAttachmentCover": null,
|
232
|
+
"manualCoverAttachment": false,
|
233
|
+
"idLabels": [
|
234
|
+
|
235
|
+
],
|
236
|
+
"name": "(5) P4: Read data from Trollolo",
|
237
|
+
"pos": 163839,
|
238
|
+
"shortLink": "d7ZeVHVH",
|
239
|
+
"badges": {
|
240
|
+
"votes": 0,
|
241
|
+
"viewingMemberVoted": false,
|
242
|
+
"subscribed": false,
|
243
|
+
"fogbugz": "",
|
244
|
+
"checkItems": 2,
|
245
|
+
"checkItemsChecked": 0,
|
246
|
+
"comments": 0,
|
247
|
+
"attachments": 0,
|
248
|
+
"description": false,
|
249
|
+
"due": null
|
250
|
+
},
|
251
|
+
"due": null,
|
252
|
+
"idChecklists": [
|
253
|
+
"5319c5b3d9e20a072df0400a"
|
254
|
+
],
|
255
|
+
"idMembers": [
|
256
|
+
|
257
|
+
],
|
258
|
+
"labels": [
|
259
|
+
|
260
|
+
],
|
261
|
+
"shortUrl": "https://trello.com/c/d7ZeVHVH",
|
262
|
+
"subscribed": false,
|
263
|
+
"url": "https://trello.com/c/d7ZeVHVH/18-5-p4-read-data-from-trollolo",
|
264
|
+
"checklists": [
|
265
|
+
{
|
266
|
+
"id": "5319c5b3d9e20a072df0400a",
|
267
|
+
"name": "Tasks",
|
268
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
269
|
+
"idCard": "5319c57ff6be845f428aa7a3",
|
270
|
+
"pos": 16384,
|
271
|
+
"checkItems": [
|
272
|
+
{
|
273
|
+
"id": "5319c5c1a72f131d5b2dc22e",
|
274
|
+
"name": "Add option to Trollolo to provide the board id",
|
275
|
+
"nameData": null,
|
276
|
+
"pos": 16452,
|
277
|
+
"state": "incomplete"
|
278
|
+
},
|
279
|
+
{
|
280
|
+
"id": "5319c5c518aeec6815e18469",
|
281
|
+
"name": "Call command",
|
282
|
+
"nameData": null,
|
283
|
+
"pos": 33525,
|
284
|
+
"state": "incomplete"
|
285
|
+
}
|
286
|
+
]
|
287
|
+
}
|
288
|
+
]
|
289
|
+
},
|
290
|
+
{
|
291
|
+
"id": "5319c5961e530fd26f83999d",
|
292
|
+
"checkItemStates": [
|
293
|
+
|
294
|
+
],
|
295
|
+
"closed": false,
|
296
|
+
"dateLastActivity": "2014-03-14T12:09:20.214Z",
|
297
|
+
"desc": "",
|
298
|
+
"descData": null,
|
299
|
+
"email": null,
|
300
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
301
|
+
"idList": "53186e8391ef8671265eba9e",
|
302
|
+
"idMembersVoted": [
|
303
|
+
|
304
|
+
],
|
305
|
+
"idShort": 19,
|
306
|
+
"idAttachmentCover": null,
|
307
|
+
"manualCoverAttachment": false,
|
308
|
+
"idLabels": [
|
309
|
+
|
310
|
+
],
|
311
|
+
"name": "(3) P5: Save read data as reference data",
|
312
|
+
"pos": 180223,
|
313
|
+
"shortLink": "sSDUmT6R",
|
314
|
+
"badges": {
|
315
|
+
"votes": 0,
|
316
|
+
"viewingMemberVoted": false,
|
317
|
+
"subscribed": false,
|
318
|
+
"fogbugz": "",
|
319
|
+
"checkItems": 2,
|
320
|
+
"checkItemsChecked": 0,
|
321
|
+
"comments": 0,
|
322
|
+
"attachments": 0,
|
323
|
+
"description": false,
|
324
|
+
"due": null
|
325
|
+
},
|
326
|
+
"due": null,
|
327
|
+
"idChecklists": [
|
328
|
+
"5319c5ce8cf780f37d4c0b35"
|
329
|
+
],
|
330
|
+
"idMembers": [
|
331
|
+
|
332
|
+
],
|
333
|
+
"labels": [
|
334
|
+
|
335
|
+
],
|
336
|
+
"shortUrl": "https://trello.com/c/sSDUmT6R",
|
337
|
+
"subscribed": false,
|
338
|
+
"url": "https://trello.com/c/sSDUmT6R/19-3-p5-save-read-data-as-reference-data",
|
339
|
+
"checklists": [
|
340
|
+
{
|
341
|
+
"id": "5319c5ce8cf780f37d4c0b35",
|
342
|
+
"name": "Tasks",
|
343
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
344
|
+
"idCard": "5319c5961e530fd26f83999d",
|
345
|
+
"pos": 16384,
|
346
|
+
"checkItems": [
|
347
|
+
{
|
348
|
+
"id": "5319c5db5b4bd5c845e3cecc",
|
349
|
+
"name": "Save test data",
|
350
|
+
"nameData": null,
|
351
|
+
"pos": 16589,
|
352
|
+
"state": "incomplete"
|
353
|
+
},
|
354
|
+
{
|
355
|
+
"id": "5319c5e272e066b46ff624c2",
|
356
|
+
"name": "Make tests work",
|
357
|
+
"nameData": null,
|
358
|
+
"pos": 33446,
|
359
|
+
"state": "incomplete"
|
360
|
+
}
|
361
|
+
]
|
362
|
+
}
|
363
|
+
]
|
364
|
+
},
|
365
|
+
{
|
366
|
+
"id": "5319c197e4a1ba6215bc03c8",
|
367
|
+
"checkItemStates": [
|
368
|
+
|
369
|
+
],
|
370
|
+
"closed": false,
|
371
|
+
"dateLastActivity": "2014-03-07T12:54:51.637Z",
|
372
|
+
"desc": "",
|
373
|
+
"descData": null,
|
374
|
+
"email": null,
|
375
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
376
|
+
"idList": "53186e8391ef8671265eba9e",
|
377
|
+
"idMembersVoted": [
|
378
|
+
|
379
|
+
],
|
380
|
+
"idShort": 17,
|
381
|
+
"idAttachmentCover": null,
|
382
|
+
"manualCoverAttachment": false,
|
383
|
+
"idLabels": [
|
384
|
+
"5463b41e74d650d56700f16a"
|
385
|
+
],
|
386
|
+
"name": "Waterline",
|
387
|
+
"pos": 196607,
|
388
|
+
"shortLink": "663yRhde",
|
389
|
+
"badges": {
|
390
|
+
"votes": 0,
|
391
|
+
"viewingMemberVoted": false,
|
392
|
+
"subscribed": false,
|
393
|
+
"fogbugz": "",
|
394
|
+
"checkItems": 0,
|
395
|
+
"checkItemsChecked": 0,
|
396
|
+
"comments": 0,
|
397
|
+
"attachments": 0,
|
398
|
+
"description": false,
|
399
|
+
"due": null
|
400
|
+
},
|
401
|
+
"due": null,
|
402
|
+
"idChecklists": [
|
403
|
+
|
404
|
+
],
|
405
|
+
"idMembers": [
|
406
|
+
|
407
|
+
],
|
408
|
+
"labels": [
|
409
|
+
{
|
410
|
+
"id": "5463b41e74d650d56700f16a",
|
411
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
412
|
+
"name": "Sticky",
|
413
|
+
"color": "blue",
|
414
|
+
"uses": 8
|
415
|
+
}
|
416
|
+
],
|
417
|
+
"shortUrl": "https://trello.com/c/663yRhde",
|
418
|
+
"subscribed": false,
|
419
|
+
"url": "https://trello.com/c/663yRhde/17-waterline",
|
420
|
+
"checklists": [
|
421
|
+
|
422
|
+
]
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"id": "5319c5a8743488047e13fcbc",
|
426
|
+
"checkItemStates": [
|
427
|
+
|
428
|
+
],
|
429
|
+
"closed": false,
|
430
|
+
"dateLastActivity": "2014-03-14T12:10:26.446Z",
|
431
|
+
"desc": "",
|
432
|
+
"descData": null,
|
433
|
+
"email": null,
|
434
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
435
|
+
"idList": "53186e8391ef8671265eba9e",
|
436
|
+
"idMembersVoted": [
|
437
|
+
|
438
|
+
],
|
439
|
+
"idShort": 20,
|
440
|
+
"idAttachmentCover": null,
|
441
|
+
"manualCoverAttachment": false,
|
442
|
+
"idLabels": [
|
443
|
+
"5463b41e74d650d56700f166"
|
444
|
+
],
|
445
|
+
"name": "(8) P6: Celebrate testing board",
|
446
|
+
"pos": 393215,
|
447
|
+
"shortLink": "n2g4S35q",
|
448
|
+
"badges": {
|
449
|
+
"votes": 0,
|
450
|
+
"viewingMemberVoted": false,
|
451
|
+
"subscribed": false,
|
452
|
+
"fogbugz": "",
|
453
|
+
"checkItems": 1,
|
454
|
+
"checkItemsChecked": 0,
|
455
|
+
"comments": 0,
|
456
|
+
"attachments": 0,
|
457
|
+
"description": false,
|
458
|
+
"due": null
|
459
|
+
},
|
460
|
+
"due": null,
|
461
|
+
"idChecklists": [
|
462
|
+
"5319c5ea7b7a51a62bc907a1"
|
463
|
+
],
|
464
|
+
"idMembers": [
|
465
|
+
|
466
|
+
],
|
467
|
+
"labels": [
|
468
|
+
{
|
469
|
+
"id": "5463b41e74d650d56700f166",
|
470
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
471
|
+
"name": "Under waterline",
|
472
|
+
"color": "yellow",
|
473
|
+
"uses": 1
|
474
|
+
}
|
475
|
+
],
|
476
|
+
"shortUrl": "https://trello.com/c/n2g4S35q",
|
477
|
+
"subscribed": false,
|
478
|
+
"url": "https://trello.com/c/n2g4S35q/20-8-p6-celebrate-testing-board",
|
479
|
+
"checklists": [
|
480
|
+
{
|
481
|
+
"id": "5319c5ea7b7a51a62bc907a1",
|
482
|
+
"name": "Tasks",
|
483
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
484
|
+
"idCard": "5319c5a8743488047e13fcbc",
|
485
|
+
"pos": 16384,
|
486
|
+
"checkItems": [
|
487
|
+
{
|
488
|
+
"id": "5319c5ecb0d2cfb56fa092df",
|
489
|
+
"name": "Party",
|
490
|
+
"nameData": null,
|
491
|
+
"pos": 16886,
|
492
|
+
"state": "incomplete"
|
493
|
+
}
|
494
|
+
]
|
495
|
+
}
|
496
|
+
]
|
497
|
+
},
|
498
|
+
{
|
499
|
+
"id": "5319c15d4a5040bb15f74655",
|
500
|
+
"checkItemStates": [
|
501
|
+
{
|
502
|
+
"idCheckItem": "5319c20b30a984c645c687ac",
|
503
|
+
"state": "complete"
|
504
|
+
},
|
505
|
+
{
|
506
|
+
"idCheckItem": "54d8d6905a4c941656e68ac6",
|
507
|
+
"state": "complete"
|
508
|
+
}
|
509
|
+
],
|
510
|
+
"closed": false,
|
511
|
+
"dateLastActivity": "2015-02-09T15:47:39.045Z",
|
512
|
+
"desc": "",
|
513
|
+
"descData": null,
|
514
|
+
"email": null,
|
515
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
516
|
+
"idList": "53186e8391ef8671265eba9f",
|
517
|
+
"idMembersVoted": [
|
518
|
+
|
519
|
+
],
|
520
|
+
"idShort": 15,
|
521
|
+
"idAttachmentCover": null,
|
522
|
+
"manualCoverAttachment": false,
|
523
|
+
"idLabels": [
|
524
|
+
|
525
|
+
],
|
526
|
+
"name": "(2) P2: Fill Doing column",
|
527
|
+
"pos": 65535,
|
528
|
+
"shortLink": "QI256QAJ",
|
529
|
+
"badges": {
|
530
|
+
"votes": 0,
|
531
|
+
"viewingMemberVoted": false,
|
532
|
+
"subscribed": false,
|
533
|
+
"fogbugz": "",
|
534
|
+
"checkItems": 4,
|
535
|
+
"checkItemsChecked": 2,
|
536
|
+
"comments": 0,
|
537
|
+
"attachments": 0,
|
538
|
+
"description": false,
|
539
|
+
"due": null
|
540
|
+
},
|
541
|
+
"due": null,
|
542
|
+
"idChecklists": [
|
543
|
+
"5319c1cd55ed32bd2bb998eb",
|
544
|
+
"54d8d6905a4c941656e68ac5"
|
545
|
+
],
|
546
|
+
"idMembers": [
|
547
|
+
|
548
|
+
],
|
549
|
+
"labels": [
|
550
|
+
|
551
|
+
],
|
552
|
+
"shortUrl": "https://trello.com/c/QI256QAJ",
|
553
|
+
"subscribed": false,
|
554
|
+
"url": "https://trello.com/c/QI256QAJ/15-2-p2-fill-doing-column",
|
555
|
+
"checklists": [
|
556
|
+
{
|
557
|
+
"id": "5319c1cd55ed32bd2bb998eb",
|
558
|
+
"name": "Tasks",
|
559
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
560
|
+
"idCard": "5319c15d4a5040bb15f74655",
|
561
|
+
"pos": 16384,
|
562
|
+
"checkItems": [
|
563
|
+
{
|
564
|
+
"id": "5319c1e6da570ee46fb8491a",
|
565
|
+
"name": "Add task to add task to Fill Doing column card",
|
566
|
+
"nameData": {
|
567
|
+
"emoji": {
|
568
|
+
}
|
569
|
+
},
|
570
|
+
"pos": 17373,
|
571
|
+
"state": "incomplete"
|
572
|
+
},
|
573
|
+
{
|
574
|
+
"id": "5319c20b30a984c645c687ac",
|
575
|
+
"name": "Create card to Fill Doing column",
|
576
|
+
"nameData": null,
|
577
|
+
"pos": 8686.5,
|
578
|
+
"state": "complete"
|
579
|
+
}
|
580
|
+
]
|
581
|
+
},
|
582
|
+
{
|
583
|
+
"id": "54d8d6905a4c941656e68ac5",
|
584
|
+
"name": "Feedback",
|
585
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
586
|
+
"idCard": "5319c15d4a5040bb15f74655",
|
587
|
+
"pos": 32768,
|
588
|
+
"checkItems": [
|
589
|
+
{
|
590
|
+
"id": "54d8d6905a4c941656e68ac6",
|
591
|
+
"name": "Ask user who requested the feature",
|
592
|
+
"nameData": null,
|
593
|
+
"pos": 16465,
|
594
|
+
"state": "complete"
|
595
|
+
},
|
596
|
+
{
|
597
|
+
"id": "54d8d6905a4c941656e68ac7",
|
598
|
+
"name": "Ask product manager",
|
599
|
+
"nameData": null,
|
600
|
+
"pos": 33130,
|
601
|
+
"state": "incomplete"
|
602
|
+
}
|
603
|
+
]
|
604
|
+
}
|
605
|
+
]
|
606
|
+
},
|
607
|
+
{
|
608
|
+
"id": "5319c12ca78944d77d7912ea",
|
609
|
+
"checkItemStates": [
|
610
|
+
|
611
|
+
],
|
612
|
+
"closed": false,
|
613
|
+
"dateLastActivity": "2014-03-07T12:53:06.043Z",
|
614
|
+
"desc": "",
|
615
|
+
"descData": null,
|
616
|
+
"email": null,
|
617
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
618
|
+
"idList": "5319bf088cdf9cd82be336b0",
|
619
|
+
"idMembersVoted": [
|
620
|
+
|
621
|
+
],
|
622
|
+
"idShort": 14,
|
623
|
+
"idAttachmentCover": null,
|
624
|
+
"manualCoverAttachment": false,
|
625
|
+
"idLabels": [
|
626
|
+
"5463b41e74d650d56700f16a"
|
627
|
+
],
|
628
|
+
"name": "Burndown chart",
|
629
|
+
"pos": 32767.5,
|
630
|
+
"shortLink": "m2WRyutm",
|
631
|
+
"badges": {
|
632
|
+
"votes": 0,
|
633
|
+
"viewingMemberVoted": false,
|
634
|
+
"subscribed": false,
|
635
|
+
"fogbugz": "",
|
636
|
+
"checkItems": 0,
|
637
|
+
"checkItemsChecked": 0,
|
638
|
+
"comments": 0,
|
639
|
+
"attachments": 0,
|
640
|
+
"description": false,
|
641
|
+
"due": null
|
642
|
+
},
|
643
|
+
"due": null,
|
644
|
+
"idChecklists": [
|
645
|
+
|
646
|
+
],
|
647
|
+
"idMembers": [
|
648
|
+
|
649
|
+
],
|
650
|
+
"labels": [
|
651
|
+
{
|
652
|
+
"id": "5463b41e74d650d56700f16a",
|
653
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
654
|
+
"name": "Sticky",
|
655
|
+
"color": "blue",
|
656
|
+
"uses": 8
|
657
|
+
}
|
658
|
+
],
|
659
|
+
"shortUrl": "https://trello.com/c/m2WRyutm",
|
660
|
+
"subscribed": false,
|
661
|
+
"url": "https://trello.com/c/m2WRyutm/14-burndown-chart",
|
662
|
+
"checklists": [
|
663
|
+
|
664
|
+
]
|
665
|
+
},
|
666
|
+
{
|
667
|
+
"id": "54ae8485221b1cc5b173e713",
|
668
|
+
"checkItemStates": [
|
669
|
+
|
670
|
+
],
|
671
|
+
"closed": false,
|
672
|
+
"dateLastActivity": "2015-01-08T13:22:38.264Z",
|
673
|
+
"desc": "```yaml\ntotal_days: 18\nweekend_lines:\n - 1.5\n - 6.5\n - 11.5\n - 16.5\n```",
|
674
|
+
"descData": null,
|
675
|
+
"email": null,
|
676
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
677
|
+
"idList": "5319bf088cdf9cd82be336b0",
|
678
|
+
"idMembersVoted": [
|
679
|
+
|
680
|
+
],
|
681
|
+
"idShort": 21,
|
682
|
+
"idAttachmentCover": null,
|
683
|
+
"manualCoverAttachment": false,
|
684
|
+
"idLabels": [
|
685
|
+
"5463b41e74d650d56700f16a"
|
686
|
+
],
|
687
|
+
"name": "Sprint 10",
|
688
|
+
"pos": 49151.25,
|
689
|
+
"shortLink": "enSlF2v1",
|
690
|
+
"badges": {
|
691
|
+
"votes": 0,
|
692
|
+
"viewingMemberVoted": false,
|
693
|
+
"subscribed": false,
|
694
|
+
"fogbugz": "",
|
695
|
+
"checkItems": 0,
|
696
|
+
"checkItemsChecked": 0,
|
697
|
+
"comments": 0,
|
698
|
+
"attachments": 0,
|
699
|
+
"description": true,
|
700
|
+
"due": null
|
701
|
+
},
|
702
|
+
"due": null,
|
703
|
+
"idChecklists": [
|
704
|
+
|
705
|
+
],
|
706
|
+
"idMembers": [
|
707
|
+
|
708
|
+
],
|
709
|
+
"labels": [
|
710
|
+
{
|
711
|
+
"id": "5463b41e74d650d56700f16a",
|
712
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
713
|
+
"name": "Sticky",
|
714
|
+
"color": "blue",
|
715
|
+
"uses": 8
|
716
|
+
}
|
717
|
+
],
|
718
|
+
"shortUrl": "https://trello.com/c/enSlF2v1",
|
719
|
+
"subscribed": false,
|
720
|
+
"url": "https://trello.com/c/enSlF2v1/21-sprint-10",
|
721
|
+
"checklists": [
|
722
|
+
|
723
|
+
]
|
724
|
+
},
|
725
|
+
{
|
726
|
+
"id": "5319c07f277eb1661503be8a",
|
727
|
+
"checkItemStates": [
|
728
|
+
{
|
729
|
+
"idCheckItem": "5319c0b4deedfe4142d2f2bc",
|
730
|
+
"state": "complete"
|
731
|
+
},
|
732
|
+
{
|
733
|
+
"idCheckItem": "5319c0b8a8f372aa2b17ab8d",
|
734
|
+
"state": "complete"
|
735
|
+
},
|
736
|
+
{
|
737
|
+
"idCheckItem": "5319c0bd66b5b18a15d6c0ac",
|
738
|
+
"state": "complete"
|
739
|
+
}
|
740
|
+
],
|
741
|
+
"closed": false,
|
742
|
+
"dateLastActivity": "2014-03-07T12:54:22.043Z",
|
743
|
+
"desc": "",
|
744
|
+
"descData": null,
|
745
|
+
"email": null,
|
746
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
747
|
+
"idList": "5319bf088cdf9cd82be336b0",
|
748
|
+
"idMembersVoted": [
|
749
|
+
|
750
|
+
],
|
751
|
+
"idShort": 9,
|
752
|
+
"idAttachmentCover": null,
|
753
|
+
"manualCoverAttachment": false,
|
754
|
+
"idLabels": [
|
755
|
+
|
756
|
+
],
|
757
|
+
"name": "(3) P3: Fill Done columns",
|
758
|
+
"pos": 65535,
|
759
|
+
"shortLink": "mbmz1nct",
|
760
|
+
"badges": {
|
761
|
+
"votes": 0,
|
762
|
+
"viewingMemberVoted": false,
|
763
|
+
"subscribed": false,
|
764
|
+
"fogbugz": "",
|
765
|
+
"checkItems": 3,
|
766
|
+
"checkItemsChecked": 3,
|
767
|
+
"comments": 0,
|
768
|
+
"attachments": 0,
|
769
|
+
"description": false,
|
770
|
+
"due": null
|
771
|
+
},
|
772
|
+
"due": null,
|
773
|
+
"idChecklists": [
|
774
|
+
"5319c09cab4511c37d2a6254"
|
775
|
+
],
|
776
|
+
"idMembers": [
|
777
|
+
|
778
|
+
],
|
779
|
+
"labels": [
|
780
|
+
|
781
|
+
],
|
782
|
+
"shortUrl": "https://trello.com/c/mbmz1nct",
|
783
|
+
"subscribed": false,
|
784
|
+
"url": "https://trello.com/c/mbmz1nct/9-3-p3-fill-done-columns",
|
785
|
+
"checklists": [
|
786
|
+
{
|
787
|
+
"id": "5319c09cab4511c37d2a6254",
|
788
|
+
"name": "Tasks",
|
789
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
790
|
+
"idCard": "5319c07f277eb1661503be8a",
|
791
|
+
"pos": 16384,
|
792
|
+
"checkItems": [
|
793
|
+
{
|
794
|
+
"id": "5319c0b4deedfe4142d2f2bc",
|
795
|
+
"name": "Fill Done Sprint 1",
|
796
|
+
"nameData": null,
|
797
|
+
"pos": 16534,
|
798
|
+
"state": "complete"
|
799
|
+
},
|
800
|
+
{
|
801
|
+
"id": "5319c0b8a8f372aa2b17ab8d",
|
802
|
+
"name": "Fill Done Sprint 2",
|
803
|
+
"nameData": null,
|
804
|
+
"pos": 33881,
|
805
|
+
"state": "complete"
|
806
|
+
},
|
807
|
+
{
|
808
|
+
"id": "5319c0bd66b5b18a15d6c0ac",
|
809
|
+
"name": "Fill Done Sprint 3",
|
810
|
+
"nameData": null,
|
811
|
+
"pos": 50814,
|
812
|
+
"state": "complete"
|
813
|
+
}
|
814
|
+
]
|
815
|
+
}
|
816
|
+
]
|
817
|
+
},
|
818
|
+
{
|
819
|
+
"id": "5319c10ed542ef5b1591d0e4",
|
820
|
+
"checkItemStates": [
|
821
|
+
|
822
|
+
],
|
823
|
+
"closed": false,
|
824
|
+
"dateLastActivity": "2014-03-07T12:52:52.679Z",
|
825
|
+
"desc": "",
|
826
|
+
"descData": null,
|
827
|
+
"email": null,
|
828
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
829
|
+
"idList": "5319bf045c6ef0092c55331e",
|
830
|
+
"idMembersVoted": [
|
831
|
+
|
832
|
+
],
|
833
|
+
"idShort": 13,
|
834
|
+
"idAttachmentCover": null,
|
835
|
+
"manualCoverAttachment": false,
|
836
|
+
"idLabels": [
|
837
|
+
"5463b41e74d650d56700f16a"
|
838
|
+
],
|
839
|
+
"name": "Burndown chart",
|
840
|
+
"pos": 65535.75,
|
841
|
+
"shortLink": "WGpuHyli",
|
842
|
+
"badges": {
|
843
|
+
"votes": 0,
|
844
|
+
"viewingMemberVoted": false,
|
845
|
+
"subscribed": false,
|
846
|
+
"fogbugz": "",
|
847
|
+
"checkItems": 0,
|
848
|
+
"checkItemsChecked": 0,
|
849
|
+
"comments": 0,
|
850
|
+
"attachments": 0,
|
851
|
+
"description": false,
|
852
|
+
"due": null
|
853
|
+
},
|
854
|
+
"due": null,
|
855
|
+
"idChecklists": [
|
856
|
+
|
857
|
+
],
|
858
|
+
"idMembers": [
|
859
|
+
|
860
|
+
],
|
861
|
+
"labels": [
|
862
|
+
{
|
863
|
+
"id": "5463b41e74d650d56700f16a",
|
864
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
865
|
+
"name": "Sticky",
|
866
|
+
"color": "blue",
|
867
|
+
"uses": 8
|
868
|
+
}
|
869
|
+
],
|
870
|
+
"shortUrl": "https://trello.com/c/WGpuHyli",
|
871
|
+
"subscribed": false,
|
872
|
+
"url": "https://trello.com/c/WGpuHyli/13-burndown-chart",
|
873
|
+
"checklists": [
|
874
|
+
|
875
|
+
]
|
876
|
+
},
|
877
|
+
{
|
878
|
+
"id": "5319c0ccfb3dad67457985d0",
|
879
|
+
"checkItemStates": [
|
880
|
+
|
881
|
+
],
|
882
|
+
"closed": false,
|
883
|
+
"dateLastActivity": "2015-01-08T13:22:45.975Z",
|
884
|
+
"desc": "```yaml\ntotal_days: 18\nweekend_lines:\n - 1.5\n - 6.5\n - 11.5\n - 16.5\n```",
|
885
|
+
"descData": {
|
886
|
+
"emoji": {
|
887
|
+
}
|
888
|
+
},
|
889
|
+
"email": null,
|
890
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
891
|
+
"idList": "5319bf045c6ef0092c55331e",
|
892
|
+
"idMembersVoted": [
|
893
|
+
|
894
|
+
],
|
895
|
+
"idShort": 10,
|
896
|
+
"idAttachmentCover": null,
|
897
|
+
"manualCoverAttachment": false,
|
898
|
+
"idLabels": [
|
899
|
+
"5463b41e74d650d56700f16a"
|
900
|
+
],
|
901
|
+
"name": "Sprint 9",
|
902
|
+
"pos": 131071.5,
|
903
|
+
"shortLink": "tHgAV3is",
|
904
|
+
"badges": {
|
905
|
+
"votes": 0,
|
906
|
+
"viewingMemberVoted": false,
|
907
|
+
"subscribed": false,
|
908
|
+
"fogbugz": "",
|
909
|
+
"checkItems": 0,
|
910
|
+
"checkItemsChecked": 0,
|
911
|
+
"comments": 0,
|
912
|
+
"attachments": 0,
|
913
|
+
"description": true,
|
914
|
+
"due": null
|
915
|
+
},
|
916
|
+
"due": null,
|
917
|
+
"idChecklists": [
|
918
|
+
|
919
|
+
],
|
920
|
+
"idMembers": [
|
921
|
+
|
922
|
+
],
|
923
|
+
"labels": [
|
924
|
+
{
|
925
|
+
"id": "5463b41e74d650d56700f16a",
|
926
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
927
|
+
"name": "Sticky",
|
928
|
+
"color": "blue",
|
929
|
+
"uses": 8
|
930
|
+
}
|
931
|
+
],
|
932
|
+
"shortUrl": "https://trello.com/c/tHgAV3is",
|
933
|
+
"subscribed": false,
|
934
|
+
"url": "https://trello.com/c/tHgAV3is/10-sprint-9",
|
935
|
+
"checklists": [
|
936
|
+
|
937
|
+
]
|
938
|
+
},
|
939
|
+
{
|
940
|
+
"id": "5319bf851193a85e110d8460",
|
941
|
+
"checkItemStates": [
|
942
|
+
|
943
|
+
],
|
944
|
+
"closed": false,
|
945
|
+
"dateLastActivity": "2014-03-07T12:48:06.330Z",
|
946
|
+
"desc": "",
|
947
|
+
"descData": null,
|
948
|
+
"email": null,
|
949
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
950
|
+
"idList": "5319bf045c6ef0092c55331e",
|
951
|
+
"idMembersVoted": [
|
952
|
+
|
953
|
+
],
|
954
|
+
"idShort": 7,
|
955
|
+
"idAttachmentCover": null,
|
956
|
+
"manualCoverAttachment": false,
|
957
|
+
"idLabels": [
|
958
|
+
|
959
|
+
],
|
960
|
+
"name": "(2) P1: Explain purpose",
|
961
|
+
"pos": 262143,
|
962
|
+
"shortLink": "xIBbjlRQ",
|
963
|
+
"badges": {
|
964
|
+
"votes": 0,
|
965
|
+
"viewingMemberVoted": false,
|
966
|
+
"subscribed": false,
|
967
|
+
"fogbugz": "",
|
968
|
+
"checkItems": 0,
|
969
|
+
"checkItemsChecked": 0,
|
970
|
+
"comments": 0,
|
971
|
+
"attachments": 0,
|
972
|
+
"description": false,
|
973
|
+
"due": null
|
974
|
+
},
|
975
|
+
"due": null,
|
976
|
+
"idChecklists": [
|
977
|
+
|
978
|
+
],
|
979
|
+
"idMembers": [
|
980
|
+
|
981
|
+
],
|
982
|
+
"labels": [
|
983
|
+
|
984
|
+
],
|
985
|
+
"shortUrl": "https://trello.com/c/xIBbjlRQ",
|
986
|
+
"subscribed": false,
|
987
|
+
"url": "https://trello.com/c/xIBbjlRQ/7-2-p1-explain-purpose",
|
988
|
+
"checklists": [
|
989
|
+
|
990
|
+
]
|
991
|
+
},
|
992
|
+
{
|
993
|
+
"id": "5319c0409a567dc62b68aa6b",
|
994
|
+
"checkItemStates": [
|
995
|
+
{
|
996
|
+
"idCheckItem": "5319c052d86da6cb6fa2a9e0",
|
997
|
+
"state": "complete"
|
998
|
+
},
|
999
|
+
{
|
1000
|
+
"idCheckItem": "5319c0548163d08c11d36a07",
|
1001
|
+
"state": "complete"
|
1002
|
+
},
|
1003
|
+
{
|
1004
|
+
"idCheckItem": "5319c0562fef3bc511c79279",
|
1005
|
+
"state": "complete"
|
1006
|
+
}
|
1007
|
+
],
|
1008
|
+
"closed": false,
|
1009
|
+
"dateLastActivity": "2014-03-07T12:49:44.474Z",
|
1010
|
+
"desc": "",
|
1011
|
+
"descData": null,
|
1012
|
+
"email": null,
|
1013
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1014
|
+
"idList": "5319bf045c6ef0092c55331e",
|
1015
|
+
"idMembersVoted": [
|
1016
|
+
|
1017
|
+
],
|
1018
|
+
"idShort": 8,
|
1019
|
+
"idAttachmentCover": null,
|
1020
|
+
"manualCoverAttachment": false,
|
1021
|
+
"idLabels": [
|
1022
|
+
|
1023
|
+
],
|
1024
|
+
"name": "(2) P2: Create Scrum columns",
|
1025
|
+
"pos": 327679,
|
1026
|
+
"shortLink": "afmNzjbW",
|
1027
|
+
"badges": {
|
1028
|
+
"votes": 0,
|
1029
|
+
"viewingMemberVoted": false,
|
1030
|
+
"subscribed": false,
|
1031
|
+
"fogbugz": "",
|
1032
|
+
"checkItems": 3,
|
1033
|
+
"checkItemsChecked": 3,
|
1034
|
+
"comments": 0,
|
1035
|
+
"attachments": 0,
|
1036
|
+
"description": false,
|
1037
|
+
"due": null
|
1038
|
+
},
|
1039
|
+
"due": null,
|
1040
|
+
"idChecklists": [
|
1041
|
+
"5319c04d592a9182153db831"
|
1042
|
+
],
|
1043
|
+
"idMembers": [
|
1044
|
+
|
1045
|
+
],
|
1046
|
+
"labels": [
|
1047
|
+
|
1048
|
+
],
|
1049
|
+
"shortUrl": "https://trello.com/c/afmNzjbW",
|
1050
|
+
"subscribed": false,
|
1051
|
+
"url": "https://trello.com/c/afmNzjbW/8-2-p2-create-scrum-columns",
|
1052
|
+
"checklists": [
|
1053
|
+
{
|
1054
|
+
"id": "5319c04d592a9182153db831",
|
1055
|
+
"name": "Tasks",
|
1056
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1057
|
+
"idCard": "5319c0409a567dc62b68aa6b",
|
1058
|
+
"pos": 16384,
|
1059
|
+
"checkItems": [
|
1060
|
+
{
|
1061
|
+
"id": "5319c052d86da6cb6fa2a9e0",
|
1062
|
+
"name": "Backlog",
|
1063
|
+
"nameData": null,
|
1064
|
+
"pos": 17223,
|
1065
|
+
"state": "complete"
|
1066
|
+
},
|
1067
|
+
{
|
1068
|
+
"id": "5319c0548163d08c11d36a07",
|
1069
|
+
"name": "Doing",
|
1070
|
+
"nameData": null,
|
1071
|
+
"pos": 33889,
|
1072
|
+
"state": "complete"
|
1073
|
+
},
|
1074
|
+
{
|
1075
|
+
"id": "5319c0562fef3bc511c79279",
|
1076
|
+
"name": "Multiple Done Columns",
|
1077
|
+
"nameData": {
|
1078
|
+
"emoji": {
|
1079
|
+
}
|
1080
|
+
},
|
1081
|
+
"pos": 50322,
|
1082
|
+
"state": "complete"
|
1083
|
+
}
|
1084
|
+
]
|
1085
|
+
}
|
1086
|
+
]
|
1087
|
+
},
|
1088
|
+
{
|
1089
|
+
"id": "5319c1062d3cd2de456c3127",
|
1090
|
+
"checkItemStates": [
|
1091
|
+
|
1092
|
+
],
|
1093
|
+
"closed": false,
|
1094
|
+
"dateLastActivity": "2014-03-07T12:52:49.208Z",
|
1095
|
+
"desc": "",
|
1096
|
+
"descData": null,
|
1097
|
+
"email": null,
|
1098
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1099
|
+
"idList": "53186e8391ef8671265ebaa0",
|
1100
|
+
"idMembersVoted": [
|
1101
|
+
|
1102
|
+
],
|
1103
|
+
"idShort": 12,
|
1104
|
+
"idAttachmentCover": null,
|
1105
|
+
"manualCoverAttachment": false,
|
1106
|
+
"idLabels": [
|
1107
|
+
"5463b41e74d650d56700f16a"
|
1108
|
+
],
|
1109
|
+
"name": "Burndown chart",
|
1110
|
+
"pos": 16383.75,
|
1111
|
+
"shortLink": "dBvqdCxL",
|
1112
|
+
"badges": {
|
1113
|
+
"votes": 0,
|
1114
|
+
"viewingMemberVoted": false,
|
1115
|
+
"subscribed": false,
|
1116
|
+
"fogbugz": "",
|
1117
|
+
"checkItems": 0,
|
1118
|
+
"checkItemsChecked": 0,
|
1119
|
+
"comments": 0,
|
1120
|
+
"attachments": 0,
|
1121
|
+
"description": false,
|
1122
|
+
"due": null
|
1123
|
+
},
|
1124
|
+
"due": null,
|
1125
|
+
"idChecklists": [
|
1126
|
+
|
1127
|
+
],
|
1128
|
+
"idMembers": [
|
1129
|
+
|
1130
|
+
],
|
1131
|
+
"labels": [
|
1132
|
+
{
|
1133
|
+
"id": "5463b41e74d650d56700f16a",
|
1134
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1135
|
+
"name": "Sticky",
|
1136
|
+
"color": "blue",
|
1137
|
+
"uses": 8
|
1138
|
+
}
|
1139
|
+
],
|
1140
|
+
"shortUrl": "https://trello.com/c/dBvqdCxL",
|
1141
|
+
"subscribed": false,
|
1142
|
+
"url": "https://trello.com/c/dBvqdCxL/12-burndown-chart",
|
1143
|
+
"checklists": [
|
1144
|
+
|
1145
|
+
]
|
1146
|
+
},
|
1147
|
+
{
|
1148
|
+
"id": "5319c0cf0c9c84b0450b41ce",
|
1149
|
+
"checkItemStates": [
|
1150
|
+
|
1151
|
+
],
|
1152
|
+
"closed": false,
|
1153
|
+
"dateLastActivity": "2015-01-08T13:22:54.227Z",
|
1154
|
+
"desc": "",
|
1155
|
+
"descData": null,
|
1156
|
+
"email": null,
|
1157
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1158
|
+
"idList": "53186e8391ef8671265ebaa0",
|
1159
|
+
"idMembersVoted": [
|
1160
|
+
|
1161
|
+
],
|
1162
|
+
"idShort": 11,
|
1163
|
+
"idAttachmentCover": null,
|
1164
|
+
"manualCoverAttachment": false,
|
1165
|
+
"idLabels": [
|
1166
|
+
"5463b41e74d650d56700f16a"
|
1167
|
+
],
|
1168
|
+
"name": "Sprint 8",
|
1169
|
+
"pos": 32767.5,
|
1170
|
+
"shortLink": "kyPwZhls",
|
1171
|
+
"badges": {
|
1172
|
+
"votes": 0,
|
1173
|
+
"viewingMemberVoted": false,
|
1174
|
+
"subscribed": false,
|
1175
|
+
"fogbugz": "",
|
1176
|
+
"checkItems": 0,
|
1177
|
+
"checkItemsChecked": 0,
|
1178
|
+
"comments": 0,
|
1179
|
+
"attachments": 0,
|
1180
|
+
"description": false,
|
1181
|
+
"due": null
|
1182
|
+
},
|
1183
|
+
"due": null,
|
1184
|
+
"idChecklists": [
|
1185
|
+
|
1186
|
+
],
|
1187
|
+
"idMembers": [
|
1188
|
+
|
1189
|
+
],
|
1190
|
+
"labels": [
|
1191
|
+
{
|
1192
|
+
"id": "5463b41e74d650d56700f16a",
|
1193
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1194
|
+
"name": "Sticky",
|
1195
|
+
"color": "blue",
|
1196
|
+
"uses": 8
|
1197
|
+
}
|
1198
|
+
],
|
1199
|
+
"shortUrl": "https://trello.com/c/kyPwZhls",
|
1200
|
+
"subscribed": false,
|
1201
|
+
"url": "https://trello.com/c/kyPwZhls/11-sprint-8",
|
1202
|
+
"checklists": [
|
1203
|
+
|
1204
|
+
]
|
1205
|
+
},
|
1206
|
+
{
|
1207
|
+
"id": "5319bf6980da466e451848bb",
|
1208
|
+
"checkItemStates": [
|
1209
|
+
{
|
1210
|
+
"idCheckItem": "5319bfd806b13b906faa1705",
|
1211
|
+
"state": "complete"
|
1212
|
+
},
|
1213
|
+
{
|
1214
|
+
"idCheckItem": "5319bfdb43b3177d1112b8b4",
|
1215
|
+
"state": "complete"
|
1216
|
+
}
|
1217
|
+
],
|
1218
|
+
"closed": false,
|
1219
|
+
"dateLastActivity": "2014-03-07T12:48:42.185Z",
|
1220
|
+
"desc": "",
|
1221
|
+
"descData": null,
|
1222
|
+
"email": null,
|
1223
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1224
|
+
"idList": "53186e8391ef8671265ebaa0",
|
1225
|
+
"idMembersVoted": [
|
1226
|
+
|
1227
|
+
],
|
1228
|
+
"idShort": 4,
|
1229
|
+
"idAttachmentCover": null,
|
1230
|
+
"manualCoverAttachment": false,
|
1231
|
+
"idLabels": [
|
1232
|
+
|
1233
|
+
],
|
1234
|
+
"name": "(1) P1: Create Trello Testing Board",
|
1235
|
+
"pos": 65535,
|
1236
|
+
"shortLink": "jK3lHglS",
|
1237
|
+
"badges": {
|
1238
|
+
"votes": 0,
|
1239
|
+
"viewingMemberVoted": false,
|
1240
|
+
"subscribed": false,
|
1241
|
+
"fogbugz": "",
|
1242
|
+
"checkItems": 2,
|
1243
|
+
"checkItemsChecked": 2,
|
1244
|
+
"comments": 0,
|
1245
|
+
"attachments": 0,
|
1246
|
+
"description": false,
|
1247
|
+
"due": null
|
1248
|
+
},
|
1249
|
+
"due": null,
|
1250
|
+
"idChecklists": [
|
1251
|
+
"5319bfca9876ce6d4591c4b2"
|
1252
|
+
],
|
1253
|
+
"idMembers": [
|
1254
|
+
|
1255
|
+
],
|
1256
|
+
"labels": [
|
1257
|
+
|
1258
|
+
],
|
1259
|
+
"shortUrl": "https://trello.com/c/jK3lHglS",
|
1260
|
+
"subscribed": false,
|
1261
|
+
"url": "https://trello.com/c/jK3lHglS/4-1-p1-create-trello-testing-board",
|
1262
|
+
"checklists": [
|
1263
|
+
{
|
1264
|
+
"id": "5319bfca9876ce6d4591c4b2",
|
1265
|
+
"name": "Tasks",
|
1266
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1267
|
+
"idCard": "5319bf6980da466e451848bb",
|
1268
|
+
"pos": 16384,
|
1269
|
+
"checkItems": [
|
1270
|
+
{
|
1271
|
+
"id": "5319bfd806b13b906faa1705",
|
1272
|
+
"name": "Create board",
|
1273
|
+
"nameData": null,
|
1274
|
+
"pos": 17406,
|
1275
|
+
"state": "complete"
|
1276
|
+
},
|
1277
|
+
{
|
1278
|
+
"id": "5319bfdb43b3177d1112b8b4",
|
1279
|
+
"name": "Name board",
|
1280
|
+
"nameData": null,
|
1281
|
+
"pos": 33959,
|
1282
|
+
"state": "complete"
|
1283
|
+
}
|
1284
|
+
]
|
1285
|
+
}
|
1286
|
+
]
|
1287
|
+
},
|
1288
|
+
{
|
1289
|
+
"id": "5319bf7099ee686d15b3e966",
|
1290
|
+
"checkItemStates": [
|
1291
|
+
{
|
1292
|
+
"idCheckItem": "5319bfae5a24d7037e79a726",
|
1293
|
+
"state": "complete"
|
1294
|
+
},
|
1295
|
+
{
|
1296
|
+
"idCheckItem": "5319bfb5b0d2cfb56fa08a3b",
|
1297
|
+
"state": "complete"
|
1298
|
+
},
|
1299
|
+
{
|
1300
|
+
"idCheckItem": "5319bfb7eeecdca82bffe3d4",
|
1301
|
+
"state": "complete"
|
1302
|
+
},
|
1303
|
+
{
|
1304
|
+
"idCheckItem": "5319bfbe5b4bd5c845e3c598",
|
1305
|
+
"state": "complete"
|
1306
|
+
}
|
1307
|
+
],
|
1308
|
+
"closed": false,
|
1309
|
+
"dateLastActivity": "2014-03-07T12:46:58.957Z",
|
1310
|
+
"desc": "",
|
1311
|
+
"descData": null,
|
1312
|
+
"email": null,
|
1313
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1314
|
+
"idList": "53186e8391ef8671265ebaa0",
|
1315
|
+
"idMembersVoted": [
|
1316
|
+
|
1317
|
+
],
|
1318
|
+
"idShort": 5,
|
1319
|
+
"idAttachmentCover": null,
|
1320
|
+
"manualCoverAttachment": false,
|
1321
|
+
"idLabels": [
|
1322
|
+
|
1323
|
+
],
|
1324
|
+
"name": "(5) P2: Add fancy background",
|
1325
|
+
"pos": 131071,
|
1326
|
+
"shortLink": "Ph2XGEwl",
|
1327
|
+
"badges": {
|
1328
|
+
"votes": 0,
|
1329
|
+
"viewingMemberVoted": false,
|
1330
|
+
"subscribed": false,
|
1331
|
+
"fogbugz": "",
|
1332
|
+
"checkItems": 4,
|
1333
|
+
"checkItemsChecked": 4,
|
1334
|
+
"comments": 0,
|
1335
|
+
"attachments": 0,
|
1336
|
+
"description": false,
|
1337
|
+
"due": null
|
1338
|
+
},
|
1339
|
+
"due": null,
|
1340
|
+
"idChecklists": [
|
1341
|
+
"5319bfaa8ff351c22b123ad0"
|
1342
|
+
],
|
1343
|
+
"idMembers": [
|
1344
|
+
|
1345
|
+
],
|
1346
|
+
"labels": [
|
1347
|
+
|
1348
|
+
],
|
1349
|
+
"shortUrl": "https://trello.com/c/Ph2XGEwl",
|
1350
|
+
"subscribed": false,
|
1351
|
+
"url": "https://trello.com/c/Ph2XGEwl/5-5-p2-add-fancy-background",
|
1352
|
+
"checklists": [
|
1353
|
+
{
|
1354
|
+
"id": "5319bfaa8ff351c22b123ad0",
|
1355
|
+
"name": "Tasks",
|
1356
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1357
|
+
"idCard": "5319bf7099ee686d15b3e966",
|
1358
|
+
"pos": 16384,
|
1359
|
+
"checkItems": [
|
1360
|
+
{
|
1361
|
+
"id": "5319bfae5a24d7037e79a726",
|
1362
|
+
"name": "Find image",
|
1363
|
+
"nameData": null,
|
1364
|
+
"pos": 16461,
|
1365
|
+
"state": "complete"
|
1366
|
+
},
|
1367
|
+
{
|
1368
|
+
"id": "5319bfb5b0d2cfb56fa08a3b",
|
1369
|
+
"name": "Download image",
|
1370
|
+
"nameData": null,
|
1371
|
+
"pos": 32870,
|
1372
|
+
"state": "complete"
|
1373
|
+
},
|
1374
|
+
{
|
1375
|
+
"id": "5319bfb7eeecdca82bffe3d4",
|
1376
|
+
"name": "Set image",
|
1377
|
+
"nameData": null,
|
1378
|
+
"pos": 49499,
|
1379
|
+
"state": "complete"
|
1380
|
+
},
|
1381
|
+
{
|
1382
|
+
"id": "5319bfbe5b4bd5c845e3c598",
|
1383
|
+
"name": "Add attribution",
|
1384
|
+
"nameData": null,
|
1385
|
+
"pos": 66653,
|
1386
|
+
"state": "complete"
|
1387
|
+
}
|
1388
|
+
]
|
1389
|
+
}
|
1390
|
+
]
|
1391
|
+
},
|
1392
|
+
{
|
1393
|
+
"id": "5319bf7bf2c8ecce45c2f5bb",
|
1394
|
+
"checkItemStates": [
|
1395
|
+
{
|
1396
|
+
"idCheckItem": "5319bff6c1d6da8742926989",
|
1397
|
+
"state": "complete"
|
1398
|
+
}
|
1399
|
+
],
|
1400
|
+
"closed": false,
|
1401
|
+
"dateLastActivity": "2014-03-07T12:48:38.152Z",
|
1402
|
+
"desc": "",
|
1403
|
+
"descData": null,
|
1404
|
+
"email": null,
|
1405
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1406
|
+
"idList": "53186e8391ef8671265ebaa0",
|
1407
|
+
"idMembersVoted": [
|
1408
|
+
|
1409
|
+
],
|
1410
|
+
"idShort": 6,
|
1411
|
+
"idAttachmentCover": null,
|
1412
|
+
"manualCoverAttachment": false,
|
1413
|
+
"idLabels": [
|
1414
|
+
|
1415
|
+
],
|
1416
|
+
"name": "(1) P4: Add legend",
|
1417
|
+
"pos": 196607,
|
1418
|
+
"shortLink": "02broblM",
|
1419
|
+
"badges": {
|
1420
|
+
"votes": 0,
|
1421
|
+
"viewingMemberVoted": false,
|
1422
|
+
"subscribed": false,
|
1423
|
+
"fogbugz": "",
|
1424
|
+
"checkItems": 1,
|
1425
|
+
"checkItemsChecked": 1,
|
1426
|
+
"comments": 0,
|
1427
|
+
"attachments": 0,
|
1428
|
+
"description": false,
|
1429
|
+
"due": null
|
1430
|
+
},
|
1431
|
+
"due": null,
|
1432
|
+
"idChecklists": [
|
1433
|
+
"5319bfeb2d638eb411117815"
|
1434
|
+
],
|
1435
|
+
"idMembers": [
|
1436
|
+
|
1437
|
+
],
|
1438
|
+
"labels": [
|
1439
|
+
|
1440
|
+
],
|
1441
|
+
"shortUrl": "https://trello.com/c/02broblM",
|
1442
|
+
"subscribed": false,
|
1443
|
+
"url": "https://trello.com/c/02broblM/6-1-p4-add-legend",
|
1444
|
+
"checklists": [
|
1445
|
+
{
|
1446
|
+
"id": "5319bfeb2d638eb411117815",
|
1447
|
+
"name": "Tasks",
|
1448
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1449
|
+
"idCard": "5319bf7bf2c8ecce45c2f5bb",
|
1450
|
+
"pos": 16384,
|
1451
|
+
"checkItems": [
|
1452
|
+
{
|
1453
|
+
"id": "5319bff6c1d6da8742926989",
|
1454
|
+
"name": "Create Legend column",
|
1455
|
+
"nameData": null,
|
1456
|
+
"pos": 16455,
|
1457
|
+
"state": "complete"
|
1458
|
+
}
|
1459
|
+
]
|
1460
|
+
}
|
1461
|
+
]
|
1462
|
+
},
|
1463
|
+
{
|
1464
|
+
"id": "5319bd1a8b60144a4255b294",
|
1465
|
+
"checkItemStates": [
|
1466
|
+
|
1467
|
+
],
|
1468
|
+
"closed": false,
|
1469
|
+
"dateLastActivity": "2014-03-07T12:36:34.037Z",
|
1470
|
+
"desc": "This board is used for testing the command line application \"Trollolo\", which is used by Team Alfred to extract data from their Scrum board to create Burndown charts.",
|
1471
|
+
"descData": {
|
1472
|
+
"emoji": {
|
1473
|
+
}
|
1474
|
+
},
|
1475
|
+
"email": null,
|
1476
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1477
|
+
"idList": "5319bc0aa338308d42f108d6",
|
1478
|
+
"idMembersVoted": [
|
1479
|
+
|
1480
|
+
],
|
1481
|
+
"idShort": 2,
|
1482
|
+
"idAttachmentCover": null,
|
1483
|
+
"manualCoverAttachment": false,
|
1484
|
+
"idLabels": [
|
1485
|
+
|
1486
|
+
],
|
1487
|
+
"name": "Purpose",
|
1488
|
+
"pos": 32767.5,
|
1489
|
+
"shortLink": "APlDWOc8",
|
1490
|
+
"badges": {
|
1491
|
+
"votes": 0,
|
1492
|
+
"viewingMemberVoted": false,
|
1493
|
+
"subscribed": false,
|
1494
|
+
"fogbugz": "",
|
1495
|
+
"checkItems": 0,
|
1496
|
+
"checkItemsChecked": 0,
|
1497
|
+
"comments": 0,
|
1498
|
+
"attachments": 0,
|
1499
|
+
"description": true,
|
1500
|
+
"due": null
|
1501
|
+
},
|
1502
|
+
"due": null,
|
1503
|
+
"idChecklists": [
|
1504
|
+
|
1505
|
+
],
|
1506
|
+
"idMembers": [
|
1507
|
+
|
1508
|
+
],
|
1509
|
+
"labels": [
|
1510
|
+
|
1511
|
+
],
|
1512
|
+
"shortUrl": "https://trello.com/c/APlDWOc8",
|
1513
|
+
"subscribed": false,
|
1514
|
+
"url": "https://trello.com/c/APlDWOc8/2-purpose",
|
1515
|
+
"checklists": [
|
1516
|
+
|
1517
|
+
]
|
1518
|
+
},
|
1519
|
+
{
|
1520
|
+
"id": "5319bc12f1ac326d11e3f46c",
|
1521
|
+
"checkItemStates": [
|
1522
|
+
|
1523
|
+
],
|
1524
|
+
"closed": false,
|
1525
|
+
"dateLastActivity": "2014-03-07T12:35:23.121Z",
|
1526
|
+
"desc": "[Lots of thirty-second notes with a legato above by Horia Varlan, on Flickr](http://www.flickr.com/photos/horiavarlan/4268316033/) (CC BY 2.0)\n",
|
1527
|
+
"descData": {
|
1528
|
+
"emoji": {
|
1529
|
+
}
|
1530
|
+
},
|
1531
|
+
"email": null,
|
1532
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1533
|
+
"idList": "5319bc0aa338308d42f108d6",
|
1534
|
+
"idMembersVoted": [
|
1535
|
+
|
1536
|
+
],
|
1537
|
+
"idShort": 1,
|
1538
|
+
"idAttachmentCover": null,
|
1539
|
+
"manualCoverAttachment": false,
|
1540
|
+
"idLabels": [
|
1541
|
+
|
1542
|
+
],
|
1543
|
+
"name": "Background image",
|
1544
|
+
"pos": 65535,
|
1545
|
+
"shortLink": "C46wQCD2",
|
1546
|
+
"badges": {
|
1547
|
+
"votes": 0,
|
1548
|
+
"viewingMemberVoted": false,
|
1549
|
+
"subscribed": false,
|
1550
|
+
"fogbugz": "",
|
1551
|
+
"checkItems": 0,
|
1552
|
+
"checkItemsChecked": 0,
|
1553
|
+
"comments": 0,
|
1554
|
+
"attachments": 0,
|
1555
|
+
"description": true,
|
1556
|
+
"due": null
|
1557
|
+
},
|
1558
|
+
"due": null,
|
1559
|
+
"idChecklists": [
|
1560
|
+
|
1561
|
+
],
|
1562
|
+
"idMembers": [
|
1563
|
+
|
1564
|
+
],
|
1565
|
+
"labels": [
|
1566
|
+
|
1567
|
+
],
|
1568
|
+
"shortUrl": "https://trello.com/c/C46wQCD2",
|
1569
|
+
"subscribed": false,
|
1570
|
+
"url": "https://trello.com/c/C46wQCD2/1-background-image",
|
1571
|
+
"checklists": [
|
1572
|
+
|
1573
|
+
]
|
1574
|
+
}
|
1575
|
+
],
|
1576
|
+
"lists": [
|
1577
|
+
{
|
1578
|
+
"id": "53186e8391ef8671265eba9e",
|
1579
|
+
"name": "Sprint Backlog",
|
1580
|
+
"closed": false,
|
1581
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1582
|
+
"pos": 16384,
|
1583
|
+
"subscribed": false
|
1584
|
+
},
|
1585
|
+
{
|
1586
|
+
"id": "53186e8391ef8671265eba9f",
|
1587
|
+
"name": "Doing",
|
1588
|
+
"closed": false,
|
1589
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1590
|
+
"pos": 32768,
|
1591
|
+
"subscribed": false
|
1592
|
+
},
|
1593
|
+
{
|
1594
|
+
"id": "5319bf088cdf9cd82be336b0",
|
1595
|
+
"name": "Done Sprint 10",
|
1596
|
+
"closed": false,
|
1597
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1598
|
+
"pos": 36864,
|
1599
|
+
"subscribed": false
|
1600
|
+
},
|
1601
|
+
{
|
1602
|
+
"id": "5319bf045c6ef0092c55331e",
|
1603
|
+
"name": "Done Sprint 9",
|
1604
|
+
"closed": false,
|
1605
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1606
|
+
"pos": 40960,
|
1607
|
+
"subscribed": false
|
1608
|
+
},
|
1609
|
+
{
|
1610
|
+
"id": "53186e8391ef8671265ebaa0",
|
1611
|
+
"name": "Done Sprint 8",
|
1612
|
+
"closed": false,
|
1613
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1614
|
+
"pos": 49152,
|
1615
|
+
"subscribed": false
|
1616
|
+
},
|
1617
|
+
{
|
1618
|
+
"id": "5319bc0aa338308d42f108d6",
|
1619
|
+
"name": "Legend",
|
1620
|
+
"closed": false,
|
1621
|
+
"idBoard": "53186e8391ef8671265eba9d",
|
1622
|
+
"pos": 114688,
|
1623
|
+
"subscribed": false
|
1624
|
+
}
|
1625
|
+
]
|
1626
|
+
}
|