go_cd_feed 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/.rvmrc +1 -0
  4. data/.zeroci.yml +1 -0
  5. data/Gemfile +4 -0
  6. data/Gemfile.lock +32 -0
  7. data/README.textile +36 -0
  8. data/Rakefile +39 -0
  9. data/bin/go_api_client +3 -0
  10. data/go_api_client.gemspec +27 -0
  11. data/lib/go_api_client.rb +60 -0
  12. data/lib/go_api_client/atom.rb +4 -0
  13. data/lib/go_api_client/atom/author.rb +42 -0
  14. data/lib/go_api_client/atom/entry.rb +34 -0
  15. data/lib/go_api_client/atom/feed.rb +44 -0
  16. data/lib/go_api_client/atom/feed_page.rb +49 -0
  17. data/lib/go_api_client/commit.rb +30 -0
  18. data/lib/go_api_client/helpers.rb +1 -0
  19. data/lib/go_api_client/helpers/simple_attribute_support.rb +11 -0
  20. data/lib/go_api_client/http_fetcher.rb +43 -0
  21. data/lib/go_api_client/job.rb +64 -0
  22. data/lib/go_api_client/pipeline.rb +49 -0
  23. data/lib/go_api_client/stage.rb +57 -0
  24. data/lib/go_api_client/user.rb +36 -0
  25. data/lib/go_api_client/version.rb +9 -0
  26. data/ssh_keys/git-ci.zeroci.com +27 -0
  27. data/ssh_keys/git-ci.zeroci.com.pub +1 -0
  28. data/ssh_keys/git-ssh +3 -0
  29. data/test/fixtures/building/job_1.xml +41 -0
  30. data/test/fixtures/building/job_2.xml +43 -0
  31. data/test/fixtures/building/job_3.xml +40 -0
  32. data/test/fixtures/building/job_4.xml +40 -0
  33. data/test/fixtures/building/pipeline_1.xml +45 -0
  34. data/test/fixtures/building/pipeline_2.xml +39 -0
  35. data/test/fixtures/building/pipeline_3.xml +71 -0
  36. data/test/fixtures/building/stages.xml +180 -0
  37. data/test/fixtures/building/stages_1.xml +16 -0
  38. data/test/fixtures/building/stages_2.xml +16 -0
  39. data/test/fixtures/building/stages_3.xml +16 -0
  40. data/test/fixtures/building/stages_4.xml +16 -0
  41. data/test/fixtures/job_1_console.log.txt +82 -0
  42. data/test/fixtures/job_2_console.log.txt +82 -0
  43. data/test/fixtures/jobs_1.xml +29 -0
  44. data/test/fixtures/jobs_2.xml +29 -0
  45. data/test/fixtures/jobs_with_no_properties.xml +42 -0
  46. data/test/fixtures/ordering/go/api/jobs/1.xml +29 -0
  47. data/test/fixtures/ordering/go/api/jobs/10.xml +31 -0
  48. data/test/fixtures/ordering/go/api/jobs/2.xml +29 -0
  49. data/test/fixtures/ordering/go/api/jobs/3.xml +29 -0
  50. data/test/fixtures/ordering/go/api/jobs/4.xml +29 -0
  51. data/test/fixtures/ordering/go/api/jobs/5.xml +29 -0
  52. data/test/fixtures/ordering/go/api/jobs/6.xml +29 -0
  53. data/test/fixtures/ordering/go/api/jobs/7.xml +31 -0
  54. data/test/fixtures/ordering/go/api/jobs/8.xml +31 -0
  55. data/test/fixtures/ordering/go/api/jobs/9.xml +31 -0
  56. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/1.xml +31 -0
  57. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/2.xml +26 -0
  58. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/3.xml +26 -0
  59. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/4.xml +27 -0
  60. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/5.xml +33 -0
  61. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/stages.xml +255 -0
  62. data/test/fixtures/ordering/go/api/stages/1.xml +14 -0
  63. data/test/fixtures/ordering/go/api/stages/10.xml +14 -0
  64. data/test/fixtures/ordering/go/api/stages/2.xml +14 -0
  65. data/test/fixtures/ordering/go/api/stages/3.xml +14 -0
  66. data/test/fixtures/ordering/go/api/stages/4.xml +14 -0
  67. data/test/fixtures/ordering/go/api/stages/5.xml +14 -0
  68. data/test/fixtures/ordering/go/api/stages/6.xml +14 -0
  69. data/test/fixtures/ordering/go/api/stages/7.xml +14 -0
  70. data/test/fixtures/ordering/go/api/stages/8.xml +14 -0
  71. data/test/fixtures/ordering/go/api/stages/9.xml +14 -0
  72. data/test/fixtures/pagination/stages.xml +636 -0
  73. data/test/fixtures/pagination/stages_before_7916973.xml +615 -0
  74. data/test/fixtures/pagination/stages_before_7959831.xml +615 -0
  75. data/test/fixtures/pipelines_1.xml +32 -0
  76. data/test/fixtures/stages.xml +63 -0
  77. data/test/fixtures/stages_1.xml +14 -0
  78. data/test/fixtures/stages_2.xml +14 -0
  79. data/test/fixtures/stages_empty.xml +9 -0
  80. data/test/go_api_client/atom/author_test.rb +27 -0
  81. data/test/go_api_client/atom/entry_test.rb +27 -0
  82. data/test/go_api_client/atom/feed_page_test.rb +41 -0
  83. data/test/go_api_client/atom/feed_test.rb +25 -0
  84. data/test/go_api_client/building_test.rb +38 -0
  85. data/test/go_api_client/commit_test.rb +38 -0
  86. data/test/go_api_client/job_test.rb +42 -0
  87. data/test/go_api_client/pipeline_test.rb +34 -0
  88. data/test/go_api_client/stage_test.rb +75 -0
  89. data/test/go_api_client/user_test.rb +27 -0
  90. data/test/test_helper.rb +31 -0
  91. metadata +272 -0
@@ -0,0 +1,615 @@
1
+ <feed xmlns="http://www.w3.org/2005/Atom" xmlns:go="http://www.thoughtworks-studios.com/ns/go">
2
+ <title><![CDATA[tlb]]></title>
3
+ <id>https://go-server.example.com/go/api/pipelines/tlb/stages.xml</id>
4
+ <author>
5
+ <name>Go</name>
6
+ </author>
7
+ <updated>2011-12-27T18:29:06-08:00</updated>
8
+ <link rel="self" href="https://go-server.example.com/go/api/pipelines/tlb/stages.xml"/>
9
+
10
+
11
+ <!-- <link rel="next" href="https://go-server.example.com/go/api/pipelines/tlb/stages.xml?before=7819016"/> -->
12
+
13
+
14
+
15
+ <entry>
16
+ <title><![CDATA[tlb(171) stage ant_count_go(1) Passed]]></title>
17
+ <updated>2011-12-27T18:29:06-08:00</updated>
18
+ <id>https://go-server.example.com/go/pipelines/tlb/171/ant_count_go/1</id>
19
+
20
+
21
+ <author>
22
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
23
+ </author>
24
+
25
+
26
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/api/stages/207014.xml" rel="alternate" type="application/vnd.go+xml"/>
27
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/171/ant_count_go/1" rel="alternate" type="text/html"/>
28
+
29
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95652.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
30
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/171/ant_count_go/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
31
+
32
+
33
+
34
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
35
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
36
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
37
+ </entry>
38
+
39
+ <entry>
40
+ <title><![CDATA[tlb(171) stage ant_smoothed_time_tlb(1) Passed]]></title>
41
+ <updated>2011-12-27T18:24:49-08:00</updated>
42
+ <id>https://go-server.example.com/go/pipelines/tlb/171/ant_smoothed_time_tlb/1</id>
43
+
44
+
45
+ <author>
46
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
47
+ </author>
48
+
49
+
50
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/207013.xml" rel="alternate" type="application/vnd.go+xml"/>
51
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/171/ant_smoothed_time_tlb/1" rel="alternate" type="text/html"/>
52
+
53
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95652.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
54
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/171/ant_smoothed_time_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
55
+
56
+
57
+
58
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
59
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
60
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
61
+ </entry>
62
+
63
+ <entry>
64
+ <title><![CDATA[tlb(171) stage ant_time_tlb(1) Passed]]></title>
65
+ <updated>2011-12-27T18:20:50-08:00</updated>
66
+ <id>https://go-server.example.com/go/pipelines/tlb/171/ant_time_tlb/1</id>
67
+
68
+
69
+ <author>
70
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
71
+ </author>
72
+
73
+
74
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/207012.xml" rel="alternate" type="application/vnd.go+xml"/>
75
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/171/ant_time_tlb/1" rel="alternate" type="text/html"/>
76
+
77
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95652.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
78
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/171/ant_time_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
79
+
80
+
81
+
82
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
83
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
84
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
85
+ </entry>
86
+
87
+ <entry>
88
+ <title><![CDATA[tlb(171) stage ant_count_tlb(1) Passed]]></title>
89
+ <updated>2011-12-27T18:17:00-08:00</updated>
90
+ <id>https://go-server.example.com/go/pipelines/tlb/171/ant_count_tlb/1</id>
91
+
92
+
93
+ <author>
94
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
95
+ </author>
96
+
97
+
98
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/207010.xml" rel="alternate" type="application/vnd.go+xml"/>
99
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/171/ant_count_tlb/1" rel="alternate" type="text/html"/>
100
+
101
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95652.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
102
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/171/ant_count_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
103
+
104
+
105
+
106
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
107
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
108
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
109
+ </entry>
110
+
111
+ <entry>
112
+ <title><![CDATA[tlb(171) stage main(1) Passed]]></title>
113
+ <updated>2011-12-27T18:13:47-08:00</updated>
114
+ <id>https://go-server.example.com/go/pipelines/tlb/171/main/1</id>
115
+
116
+
117
+ <author>
118
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
119
+ </author>
120
+
121
+
122
+ <link title="main Stage Detail" href="https://go-server.example.com/go/api/stages/207008.xml" rel="alternate" type="application/vnd.go+xml"/>
123
+ <link title="main Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/171/main/1" rel="alternate" type="text/html"/>
124
+
125
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95652.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
126
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/171/main/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
127
+
128
+
129
+
130
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
131
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
132
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
133
+ </entry>
134
+
135
+ <entry>
136
+ <title><![CDATA[tlb(170) stage perf(1) Failed]]></title>
137
+ <updated>2011-12-23T18:39:50-08:00</updated>
138
+ <id>https://go-server.example.com/go/pipelines/tlb/170/perf/1</id>
139
+
140
+
141
+ <author>
142
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
143
+ </author>
144
+
145
+
146
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/api/stages/206687.xml" rel="alternate" type="application/vnd.go+xml"/>
147
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/170/perf/1" rel="alternate" type="text/html"/>
148
+
149
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95538.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
150
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/170/perf/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
151
+
152
+
153
+
154
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
155
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
156
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="failed" label="Failed" />
157
+ </entry>
158
+
159
+ <entry>
160
+ <title><![CDATA[tlb(170) stage ant_time_go(1) Passed]]></title>
161
+ <updated>2011-12-23T18:38:44-08:00</updated>
162
+ <id>https://go-server.example.com/go/pipelines/tlb/170/ant_time_go/1</id>
163
+
164
+
165
+ <author>
166
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
167
+ </author>
168
+
169
+
170
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/api/stages/206686.xml" rel="alternate" type="application/vnd.go+xml"/>
171
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/170/ant_time_go/1" rel="alternate" type="text/html"/>
172
+
173
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95538.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
174
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/170/ant_time_go/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
175
+
176
+
177
+
178
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
179
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
180
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
181
+ </entry>
182
+
183
+ <entry>
184
+ <title><![CDATA[tlb(170) stage ant_count_go(1) Passed]]></title>
185
+ <updated>2011-12-23T18:33:22-08:00</updated>
186
+ <id>https://go-server.example.com/go/pipelines/tlb/170/ant_count_go/1</id>
187
+
188
+
189
+ <author>
190
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
191
+ </author>
192
+
193
+
194
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/api/stages/206685.xml" rel="alternate" type="application/vnd.go+xml"/>
195
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/170/ant_count_go/1" rel="alternate" type="text/html"/>
196
+
197
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95538.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
198
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/170/ant_count_go/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
199
+
200
+
201
+
202
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
203
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
204
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
205
+ </entry>
206
+
207
+ <entry>
208
+ <title><![CDATA[tlb(170) stage ant_smoothed_time_tlb(1) Passed]]></title>
209
+ <updated>2011-12-23T18:29:15-08:00</updated>
210
+ <id>https://go-server.example.com/go/pipelines/tlb/170/ant_smoothed_time_tlb/1</id>
211
+
212
+
213
+ <author>
214
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
215
+ </author>
216
+
217
+
218
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/206684.xml" rel="alternate" type="application/vnd.go+xml"/>
219
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/170/ant_smoothed_time_tlb/1" rel="alternate" type="text/html"/>
220
+
221
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95538.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
222
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/170/ant_smoothed_time_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
223
+
224
+
225
+
226
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
227
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
228
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
229
+ </entry>
230
+
231
+ <entry>
232
+ <title><![CDATA[tlb(170) stage ant_time_tlb(1) Passed]]></title>
233
+ <updated>2011-12-23T18:24:56-08:00</updated>
234
+ <id>https://go-server.example.com/go/pipelines/tlb/170/ant_time_tlb/1</id>
235
+
236
+
237
+ <author>
238
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
239
+ </author>
240
+
241
+
242
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/206683.xml" rel="alternate" type="application/vnd.go+xml"/>
243
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/170/ant_time_tlb/1" rel="alternate" type="text/html"/>
244
+
245
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95538.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
246
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/170/ant_time_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
247
+
248
+
249
+
250
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
251
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
252
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
253
+ </entry>
254
+
255
+ <entry>
256
+ <title><![CDATA[tlb(170) stage ant_count_tlb(1) Passed]]></title>
257
+ <updated>2011-12-23T18:20:49-08:00</updated>
258
+ <id>https://go-server.example.com/go/pipelines/tlb/170/ant_count_tlb/1</id>
259
+
260
+
261
+ <author>
262
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
263
+ </author>
264
+
265
+
266
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/206682.xml" rel="alternate" type="application/vnd.go+xml"/>
267
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/170/ant_count_tlb/1" rel="alternate" type="text/html"/>
268
+
269
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95538.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
270
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/170/ant_count_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
271
+
272
+
273
+
274
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
275
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
276
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
277
+ </entry>
278
+
279
+ <entry>
280
+ <title><![CDATA[tlb(170) stage main(1) Passed]]></title>
281
+ <updated>2011-12-23T18:17:07-08:00</updated>
282
+ <id>https://go-server.example.com/go/pipelines/tlb/170/main/1</id>
283
+
284
+
285
+ <author>
286
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
287
+ </author>
288
+
289
+
290
+ <link title="main Stage Detail" href="https://go-server.example.com/go/api/stages/206681.xml" rel="alternate" type="application/vnd.go+xml"/>
291
+ <link title="main Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/170/main/1" rel="alternate" type="text/html"/>
292
+
293
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95538.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
294
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/170/main/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
295
+
296
+
297
+
298
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
299
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
300
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
301
+ </entry>
302
+
303
+ <entry>
304
+ <title><![CDATA[tlb(169) stage ant_time_tlb(1) Failed]]></title>
305
+ <updated>2011-12-22T18:28:48-08:00</updated>
306
+ <id>https://go-server.example.com/go/pipelines/tlb/169/ant_time_tlb/1</id>
307
+
308
+
309
+ <author>
310
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
311
+ </author>
312
+
313
+
314
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/206552.xml" rel="alternate" type="application/vnd.go+xml"/>
315
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/169/ant_time_tlb/1" rel="alternate" type="text/html"/>
316
+
317
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95479.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
318
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/169/ant_time_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
319
+
320
+
321
+
322
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
323
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
324
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="failed" label="Failed" />
325
+ </entry>
326
+
327
+ <entry>
328
+ <title><![CDATA[tlb(169) stage ant_count_tlb(1) Passed]]></title>
329
+ <updated>2011-12-22T18:04:38-08:00</updated>
330
+ <id>https://go-server.example.com/go/pipelines/tlb/169/ant_count_tlb/1</id>
331
+
332
+
333
+ <author>
334
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
335
+ </author>
336
+
337
+
338
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/206551.xml" rel="alternate" type="application/vnd.go+xml"/>
339
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/169/ant_count_tlb/1" rel="alternate" type="text/html"/>
340
+
341
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95479.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
342
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/169/ant_count_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
343
+
344
+
345
+
346
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
347
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
348
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
349
+ </entry>
350
+
351
+ <entry>
352
+ <title><![CDATA[tlb(169) stage main(1) Passed]]></title>
353
+ <updated>2011-12-22T18:01:10-08:00</updated>
354
+ <id>https://go-server.example.com/go/pipelines/tlb/169/main/1</id>
355
+
356
+
357
+ <author>
358
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
359
+ </author>
360
+
361
+
362
+ <link title="main Stage Detail" href="https://go-server.example.com/go/api/stages/206550.xml" rel="alternate" type="application/vnd.go+xml"/>
363
+ <link title="main Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/169/main/1" rel="alternate" type="text/html"/>
364
+
365
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95479.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
366
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/169/main/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
367
+
368
+
369
+
370
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
371
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
372
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
373
+ </entry>
374
+
375
+ <entry>
376
+ <title><![CDATA[tlb(168) stage perf(1) Cancelled]]></title>
377
+ <updated>2011-12-21T17:55:27-08:00</updated>
378
+ <id>https://go-server.example.com/go/pipelines/tlb/168/perf/1</id>
379
+
380
+
381
+ <author>
382
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
383
+ </author>
384
+
385
+
386
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/api/stages/206302.xml" rel="alternate" type="application/vnd.go+xml"/>
387
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/168/perf/1" rel="alternate" type="text/html"/>
388
+
389
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95331.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
390
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/168/perf/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
391
+
392
+
393
+
394
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
395
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
396
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="cancelled" label="Cancelled" />
397
+ </entry>
398
+
399
+ <entry>
400
+ <title><![CDATA[tlb(168) stage ant_time_go(1) Passed]]></title>
401
+ <updated>2011-12-21T17:24:32-08:00</updated>
402
+ <id>https://go-server.example.com/go/pipelines/tlb/168/ant_time_go/1</id>
403
+
404
+
405
+ <author>
406
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
407
+ </author>
408
+
409
+
410
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/api/stages/206300.xml" rel="alternate" type="application/vnd.go+xml"/>
411
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/168/ant_time_go/1" rel="alternate" type="text/html"/>
412
+
413
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95331.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
414
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/168/ant_time_go/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
415
+
416
+
417
+
418
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
419
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
420
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
421
+ </entry>
422
+
423
+ <entry>
424
+ <title><![CDATA[tlb(168) stage ant_count_go(1) Passed]]></title>
425
+ <updated>2011-12-21T17:13:55-08:00</updated>
426
+ <id>https://go-server.example.com/go/pipelines/tlb/168/ant_count_go/1</id>
427
+
428
+
429
+ <author>
430
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
431
+ </author>
432
+
433
+
434
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/api/stages/206298.xml" rel="alternate" type="application/vnd.go+xml"/>
435
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/168/ant_count_go/1" rel="alternate" type="text/html"/>
436
+
437
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95331.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
438
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/168/ant_count_go/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
439
+
440
+
441
+
442
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
443
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
444
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
445
+ </entry>
446
+
447
+ <entry>
448
+ <title><![CDATA[tlb(168) stage ant_smoothed_time_tlb(1) Passed]]></title>
449
+ <updated>2011-12-21T17:10:04-08:00</updated>
450
+ <id>https://go-server.example.com/go/pipelines/tlb/168/ant_smoothed_time_tlb/1</id>
451
+
452
+
453
+ <author>
454
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
455
+ </author>
456
+
457
+
458
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/206296.xml" rel="alternate" type="application/vnd.go+xml"/>
459
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/168/ant_smoothed_time_tlb/1" rel="alternate" type="text/html"/>
460
+
461
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95331.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
462
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/168/ant_smoothed_time_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
463
+
464
+
465
+
466
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
467
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
468
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
469
+ </entry>
470
+
471
+ <entry>
472
+ <title><![CDATA[tlb(168) stage ant_time_tlb(1) Passed]]></title>
473
+ <updated>2011-12-21T17:06:28-08:00</updated>
474
+ <id>https://go-server.example.com/go/pipelines/tlb/168/ant_time_tlb/1</id>
475
+
476
+
477
+ <author>
478
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
479
+ </author>
480
+
481
+
482
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/206288.xml" rel="alternate" type="application/vnd.go+xml"/>
483
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/168/ant_time_tlb/1" rel="alternate" type="text/html"/>
484
+
485
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95331.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
486
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/168/ant_time_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
487
+
488
+
489
+
490
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
491
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
492
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
493
+ </entry>
494
+
495
+ <entry>
496
+ <title><![CDATA[tlb(168) stage ant_count_tlb(1) Passed]]></title>
497
+ <updated>2011-12-21T17:02:05-08:00</updated>
498
+ <id>https://go-server.example.com/go/pipelines/tlb/168/ant_count_tlb/1</id>
499
+
500
+
501
+ <author>
502
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
503
+ </author>
504
+
505
+
506
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/206282.xml" rel="alternate" type="application/vnd.go+xml"/>
507
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/168/ant_count_tlb/1" rel="alternate" type="text/html"/>
508
+
509
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95331.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
510
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/168/ant_count_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
511
+
512
+
513
+
514
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
515
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
516
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
517
+ </entry>
518
+
519
+ <entry>
520
+ <title><![CDATA[tlb(168) stage main(1) Passed]]></title>
521
+ <updated>2011-12-21T16:57:59-08:00</updated>
522
+ <id>https://go-server.example.com/go/pipelines/tlb/168/main/1</id>
523
+
524
+
525
+ <author>
526
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
527
+ </author>
528
+
529
+
530
+ <link title="main Stage Detail" href="https://go-server.example.com/go/api/stages/206280.xml" rel="alternate" type="application/vnd.go+xml"/>
531
+ <link title="main Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/168/main/1" rel="alternate" type="text/html"/>
532
+
533
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95331.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
534
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/168/main/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
535
+
536
+
537
+
538
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
539
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
540
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
541
+ </entry>
542
+
543
+ <entry>
544
+ <title><![CDATA[tlb(167) stage perf(1) Cancelled]]></title>
545
+ <updated>2011-12-10T20:27:20-08:00</updated>
546
+ <id>https://go-server.example.com/go/pipelines/tlb/167/perf/1</id>
547
+
548
+
549
+ <author>
550
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
551
+ </author>
552
+
553
+
554
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/api/stages/204828.xml" rel="alternate" type="application/vnd.go+xml"/>
555
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/167/perf/1" rel="alternate" type="text/html"/>
556
+
557
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/94769.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
558
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/167/perf/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
559
+
560
+
561
+
562
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
563
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
564
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="cancelled" label="Cancelled" />
565
+ </entry>
566
+
567
+ <entry>
568
+ <title><![CDATA[tlb(167) stage ant_time_go(1) Passed]]></title>
569
+ <updated>2011-12-10T19:56:34-08:00</updated>
570
+ <id>https://go-server.example.com/go/pipelines/tlb/167/ant_time_go/1</id>
571
+
572
+
573
+ <author>
574
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
575
+ </author>
576
+
577
+
578
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/api/stages/204827.xml" rel="alternate" type="application/vnd.go+xml"/>
579
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/167/ant_time_go/1" rel="alternate" type="text/html"/>
580
+
581
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/94769.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
582
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/167/ant_time_go/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
583
+
584
+
585
+
586
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
587
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
588
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
589
+ </entry>
590
+
591
+ <entry>
592
+ <title><![CDATA[tlb(167) stage ant_count_go(1) Passed]]></title>
593
+ <updated>2011-12-10T19:46:59-08:00</updated>
594
+ <id>https://go-server.example.com/go/pipelines/tlb/167/ant_count_go/1</id>
595
+
596
+
597
+ <author>
598
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
599
+ </author>
600
+
601
+
602
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/api/stages/204826.xml" rel="alternate" type="application/vnd.go+xml"/>
603
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/167/ant_count_go/1" rel="alternate" type="text/html"/>
604
+
605
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/94769.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
606
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/167/ant_count_go/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
607
+
608
+
609
+
610
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
611
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
612
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
613
+ </entry>
614
+
615
+ </feed>