go_api_client 0.0.8 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. data/.gitignore +7 -39
  2. data/.rvmrc +1 -0
  3. data/Gemfile.lock +12 -2
  4. data/Rakefile +8 -9
  5. data/go_api_client.gemspec +5 -2
  6. data/lib/go_api_client/atom/author.rb +25 -1
  7. data/lib/go_api_client/atom/entry.rb +9 -3
  8. data/lib/go_api_client/atom/feed.rb +19 -14
  9. data/lib/go_api_client/atom/feed_page.rb +49 -0
  10. data/lib/go_api_client/atom.rb +1 -0
  11. data/lib/go_api_client/commit.rb +30 -0
  12. data/lib/go_api_client/helpers/simple_attribute_support.rb +11 -0
  13. data/lib/go_api_client/helpers.rb +1 -0
  14. data/lib/go_api_client/http_fetcher.rb +41 -0
  15. data/lib/go_api_client/job.rb +56 -10
  16. data/lib/go_api_client/pipeline.rb +36 -12
  17. data/lib/go_api_client/stage.rb +43 -14
  18. data/lib/go_api_client/user.rb +36 -0
  19. data/lib/go_api_client/version.rb +7 -1
  20. data/lib/go_api_client.rb +45 -12
  21. data/test/fixtures/building/job_1.xml +41 -0
  22. data/test/fixtures/building/job_2.xml +43 -0
  23. data/test/fixtures/building/job_3.xml +40 -0
  24. data/test/fixtures/building/job_4.xml +40 -0
  25. data/test/fixtures/building/pipeline_1.xml +45 -0
  26. data/test/fixtures/building/pipeline_2.xml +39 -0
  27. data/test/fixtures/building/pipeline_3.xml +71 -0
  28. data/test/fixtures/building/stages.xml +180 -0
  29. data/test/fixtures/building/stages_1.xml +16 -0
  30. data/test/fixtures/building/stages_2.xml +16 -0
  31. data/test/fixtures/building/stages_3.xml +16 -0
  32. data/test/fixtures/building/stages_4.xml +16 -0
  33. data/test/fixtures/jobs_1.xml +3 -3
  34. data/test/fixtures/jobs_with_no_properties.xml +42 -0
  35. data/test/fixtures/ordering/go/api/jobs/1.xml +29 -0
  36. data/test/fixtures/ordering/go/api/jobs/10.xml +31 -0
  37. data/test/fixtures/ordering/go/api/jobs/2.xml +29 -0
  38. data/test/fixtures/ordering/go/api/jobs/3.xml +29 -0
  39. data/test/fixtures/ordering/go/api/jobs/4.xml +29 -0
  40. data/test/fixtures/ordering/go/api/jobs/5.xml +29 -0
  41. data/test/fixtures/ordering/go/api/jobs/6.xml +29 -0
  42. data/test/fixtures/ordering/go/api/jobs/7.xml +31 -0
  43. data/test/fixtures/ordering/go/api/jobs/8.xml +31 -0
  44. data/test/fixtures/ordering/go/api/jobs/9.xml +31 -0
  45. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/1.xml +31 -0
  46. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/2.xml +26 -0
  47. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/3.xml +26 -0
  48. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/4.xml +27 -0
  49. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/5.xml +33 -0
  50. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/stages.xml +255 -0
  51. data/test/fixtures/ordering/go/api/stages/1.xml +14 -0
  52. data/test/fixtures/ordering/go/api/stages/10.xml +14 -0
  53. data/test/fixtures/ordering/go/api/stages/2.xml +14 -0
  54. data/test/fixtures/ordering/go/api/stages/3.xml +14 -0
  55. data/test/fixtures/ordering/go/api/stages/4.xml +14 -0
  56. data/test/fixtures/ordering/go/api/stages/5.xml +14 -0
  57. data/test/fixtures/ordering/go/api/stages/6.xml +14 -0
  58. data/test/fixtures/ordering/go/api/stages/7.xml +14 -0
  59. data/test/fixtures/ordering/go/api/stages/8.xml +14 -0
  60. data/test/fixtures/ordering/go/api/stages/9.xml +14 -0
  61. data/test/fixtures/pagination/stages.xml +636 -0
  62. data/test/fixtures/pagination/stages_before_7916973.xml +615 -0
  63. data/test/fixtures/pagination/stages_before_7959831.xml +615 -0
  64. data/test/fixtures/pipelines_1.xml +8 -1
  65. data/test/fixtures/stages.xml +1 -1
  66. data/test/go_api_client/atom/author_test.rb +27 -0
  67. data/test/go_api_client/atom/entry_test.rb +27 -0
  68. data/test/go_api_client/atom/feed_page_test.rb +41 -0
  69. data/test/go_api_client/atom/feed_test.rb +25 -0
  70. data/test/go_api_client/building_test.rb +38 -0
  71. data/test/go_api_client/commit_test.rb +38 -0
  72. data/test/go_api_client/job_test.rb +42 -0
  73. data/test/go_api_client/pipeline_test.rb +63 -16
  74. data/test/go_api_client/stage_test.rb +48 -14
  75. data/test/go_api_client/user_test.rb +27 -0
  76. data/test/test_helper.rb +19 -3
  77. metadata +173 -10
  78. data/bin/go_api_client +0 -3
@@ -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>2012-01-05T18:09:36-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=7916973"/>
12
+
13
+
14
+
15
+ <entry>
16
+ <title><![CDATA[tlb(175) stage ant_time_go(1) Passed]]></title>
17
+ <updated>2012-01-05T18:09:36-08:00</updated>
18
+ <id>https://go-server.example.com/go/pipelines/tlb/175/ant_time_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_time_go Stage Detail" href="https://go-server.example.com/go/api/stages/208042.xml" rel="alternate" type="application/vnd.go+xml"/>
27
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/175/ant_time_go/1" rel="alternate" type="text/html"/>
28
+
29
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96058.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/175/ant_time_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(175) stage ant_count_go(1) Passed]]></title>
41
+ <updated>2012-01-05T18:05:24-08:00</updated>
42
+ <id>https://go-server.example.com/go/pipelines/tlb/175/ant_count_go/1</id>
43
+
44
+
45
+ <author>
46
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
47
+ </author>
48
+
49
+
50
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/api/stages/208041.xml" rel="alternate" type="application/vnd.go+xml"/>
51
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/175/ant_count_go/1" rel="alternate" type="text/html"/>
52
+
53
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96058.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/175/ant_count_go/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(175) stage ant_smoothed_time_tlb(1) Passed]]></title>
65
+ <updated>2012-01-05T18:01:27-08:00</updated>
66
+ <id>https://go-server.example.com/go/pipelines/tlb/175/ant_smoothed_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_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/208040.xml" rel="alternate" type="application/vnd.go+xml"/>
75
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/175/ant_smoothed_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/96058.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/175/ant_smoothed_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(175) stage ant_time_tlb(1) Passed]]></title>
89
+ <updated>2012-01-05T17:57:47-08:00</updated>
90
+ <id>https://go-server.example.com/go/pipelines/tlb/175/ant_time_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_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/208039.xml" rel="alternate" type="application/vnd.go+xml"/>
99
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/175/ant_time_tlb/1" rel="alternate" type="text/html"/>
100
+
101
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96058.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/175/ant_time_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(175) stage ant_count_tlb(1) Passed]]></title>
113
+ <updated>2012-01-05T17:54:23-08:00</updated>
114
+ <id>https://go-server.example.com/go/pipelines/tlb/175/ant_count_tlb/1</id>
115
+
116
+
117
+ <author>
118
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
119
+ </author>
120
+
121
+
122
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/208038.xml" rel="alternate" type="application/vnd.go+xml"/>
123
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/175/ant_count_tlb/1" rel="alternate" type="text/html"/>
124
+
125
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96058.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/175/ant_count_tlb/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(175) stage main(1) Passed]]></title>
137
+ <updated>2012-01-05T17:51:18-08:00</updated>
138
+ <id>https://go-server.example.com/go/pipelines/tlb/175/main/1</id>
139
+
140
+
141
+ <author>
142
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
143
+ </author>
144
+
145
+
146
+ <link title="main Stage Detail" href="https://go-server.example.com/go/api/stages/208037.xml" rel="alternate" type="application/vnd.go+xml"/>
147
+ <link title="main Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/175/main/1" rel="alternate" type="text/html"/>
148
+
149
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96058.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/175/main/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="passed" label="Passed" />
157
+ </entry>
158
+
159
+ <entry>
160
+ <title><![CDATA[tlb(174) stage ant_time_tlb(1) Failed]]></title>
161
+ <updated>2012-01-05T16:44:31-08:00</updated>
162
+ <id>https://go-server.example.com/go/pipelines/tlb/174/ant_time_tlb/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_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/208036.xml" rel="alternate" type="application/vnd.go+xml"/>
171
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/174/ant_time_tlb/1" rel="alternate" type="text/html"/>
172
+
173
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96057.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/174/ant_time_tlb/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="failed" label="Failed" />
181
+ </entry>
182
+
183
+ <entry>
184
+ <title><![CDATA[tlb(174) stage ant_count_tlb(1) Passed]]></title>
185
+ <updated>2012-01-05T16:42:13-08:00</updated>
186
+ <id>https://go-server.example.com/go/pipelines/tlb/174/ant_count_tlb/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_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/208035.xml" rel="alternate" type="application/vnd.go+xml"/>
195
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/174/ant_count_tlb/1" rel="alternate" type="text/html"/>
196
+
197
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96057.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/174/ant_count_tlb/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(174) stage main(1) Passed]]></title>
209
+ <updated>2012-01-05T16:38:41-08:00</updated>
210
+ <id>https://go-server.example.com/go/pipelines/tlb/174/main/1</id>
211
+
212
+
213
+ <author>
214
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
215
+ </author>
216
+
217
+
218
+ <link title="main Stage Detail" href="https://go-server.example.com/go/api/stages/208034.xml" rel="alternate" type="application/vnd.go+xml"/>
219
+ <link title="main Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/174/main/1" rel="alternate" type="text/html"/>
220
+
221
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96057.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/174/main/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(173) stage perf(1) Failed]]></title>
233
+ <updated>2012-01-02T18:03:40-08:00</updated>
234
+ <id>https://go-server.example.com/go/pipelines/tlb/173/perf/1</id>
235
+
236
+
237
+ <author>
238
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
239
+ </author>
240
+
241
+
242
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/api/stages/207516.xml" rel="alternate" type="application/vnd.go+xml"/>
243
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/173/perf/1" rel="alternate" type="text/html"/>
244
+
245
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95843.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/173/perf/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="failed" label="Failed" />
253
+ </entry>
254
+
255
+ <entry>
256
+ <title><![CDATA[tlb(173) stage ant_time_go(1) Passed]]></title>
257
+ <updated>2012-01-02T18:02:53-08:00</updated>
258
+ <id>https://go-server.example.com/go/pipelines/tlb/173/ant_time_go/1</id>
259
+
260
+
261
+ <author>
262
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
263
+ </author>
264
+
265
+
266
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/api/stages/207515.xml" rel="alternate" type="application/vnd.go+xml"/>
267
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/173/ant_time_go/1" rel="alternate" type="text/html"/>
268
+
269
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95843.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/173/ant_time_go/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(173) stage ant_count_go(1) Passed]]></title>
281
+ <updated>2012-01-02T17:58:45-08:00</updated>
282
+ <id>https://go-server.example.com/go/pipelines/tlb/173/ant_count_go/1</id>
283
+
284
+
285
+ <author>
286
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
287
+ </author>
288
+
289
+
290
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/api/stages/207511.xml" rel="alternate" type="application/vnd.go+xml"/>
291
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/173/ant_count_go/1" rel="alternate" type="text/html"/>
292
+
293
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95843.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/173/ant_count_go/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(173) stage ant_smoothed_time_tlb(1) Passed]]></title>
305
+ <updated>2012-01-02T17:55:19-08:00</updated>
306
+ <id>https://go-server.example.com/go/pipelines/tlb/173/ant_smoothed_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_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/207508.xml" rel="alternate" type="application/vnd.go+xml"/>
315
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/173/ant_smoothed_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/95843.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/173/ant_smoothed_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="passed" label="Passed" />
325
+ </entry>
326
+
327
+ <entry>
328
+ <title><![CDATA[tlb(173) stage ant_time_tlb(1) Passed]]></title>
329
+ <updated>2012-01-02T17:51:53-08:00</updated>
330
+ <id>https://go-server.example.com/go/pipelines/tlb/173/ant_time_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_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/207500.xml" rel="alternate" type="application/vnd.go+xml"/>
339
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/173/ant_time_tlb/1" rel="alternate" type="text/html"/>
340
+
341
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95843.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/173/ant_time_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(173) stage ant_count_tlb(1) Passed]]></title>
353
+ <updated>2012-01-02T17:48:34-08:00</updated>
354
+ <id>https://go-server.example.com/go/pipelines/tlb/173/ant_count_tlb/1</id>
355
+
356
+
357
+ <author>
358
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
359
+ </author>
360
+
361
+
362
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/207499.xml" rel="alternate" type="application/vnd.go+xml"/>
363
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/173/ant_count_tlb/1" rel="alternate" type="text/html"/>
364
+
365
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95843.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/173/ant_count_tlb/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(173) stage main(1) Passed]]></title>
377
+ <updated>2012-01-02T17:45:44-08:00</updated>
378
+ <id>https://go-server.example.com/go/pipelines/tlb/173/main/1</id>
379
+
380
+
381
+ <author>
382
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
383
+ </author>
384
+
385
+
386
+ <link title="main Stage Detail" href="https://go-server.example.com/go/api/stages/207498.xml" rel="alternate" type="application/vnd.go+xml"/>
387
+ <link title="main Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/173/main/1" rel="alternate" type="text/html"/>
388
+
389
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95843.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/173/main/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="passed" label="Passed" />
397
+ </entry>
398
+
399
+ <entry>
400
+ <title><![CDATA[tlb(172) stage perf(1) Failed]]></title>
401
+ <updated>2011-12-30T17:57:35-08:00</updated>
402
+ <id>https://go-server.example.com/go/pipelines/tlb/172/perf/1</id>
403
+
404
+
405
+ <author>
406
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
407
+ </author>
408
+
409
+
410
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/api/stages/207354.xml" rel="alternate" type="application/vnd.go+xml"/>
411
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/172/perf/1" rel="alternate" type="text/html"/>
412
+
413
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95774.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/172/perf/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="failed" label="Failed" />
421
+ </entry>
422
+
423
+ <entry>
424
+ <title><![CDATA[tlb(172) stage ant_time_go(1) Passed]]></title>
425
+ <updated>2011-12-30T17:57:04-08:00</updated>
426
+ <id>https://go-server.example.com/go/pipelines/tlb/172/ant_time_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_time_go Stage Detail" href="https://go-server.example.com/go/api/stages/207353.xml" rel="alternate" type="application/vnd.go+xml"/>
435
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/172/ant_time_go/1" rel="alternate" type="text/html"/>
436
+
437
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95774.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/172/ant_time_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(172) stage ant_count_go(1) Passed]]></title>
449
+ <updated>2011-12-30T17:53:37-08:00</updated>
450
+ <id>https://go-server.example.com/go/pipelines/tlb/172/ant_count_go/1</id>
451
+
452
+
453
+ <author>
454
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
455
+ </author>
456
+
457
+
458
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/api/stages/207352.xml" rel="alternate" type="application/vnd.go+xml"/>
459
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/172/ant_count_go/1" rel="alternate" type="text/html"/>
460
+
461
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95774.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/172/ant_count_go/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(172) stage ant_smoothed_time_tlb(1) Passed]]></title>
473
+ <updated>2011-12-30T17:49:57-08:00</updated>
474
+ <id>https://go-server.example.com/go/pipelines/tlb/172/ant_smoothed_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_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/207351.xml" rel="alternate" type="application/vnd.go+xml"/>
483
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/172/ant_smoothed_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/95774.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/172/ant_smoothed_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(172) stage ant_time_tlb(1) Passed]]></title>
497
+ <updated>2011-12-30T17:46:52-08:00</updated>
498
+ <id>https://go-server.example.com/go/pipelines/tlb/172/ant_time_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_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/207350.xml" rel="alternate" type="application/vnd.go+xml"/>
507
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/172/ant_time_tlb/1" rel="alternate" type="text/html"/>
508
+
509
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95774.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/172/ant_time_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(172) stage ant_count_tlb(1) Passed]]></title>
521
+ <updated>2011-12-30T17:43:26-08:00</updated>
522
+ <id>https://go-server.example.com/go/pipelines/tlb/172/ant_count_tlb/1</id>
523
+
524
+
525
+ <author>
526
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
527
+ </author>
528
+
529
+
530
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/207349.xml" rel="alternate" type="application/vnd.go+xml"/>
531
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/172/ant_count_tlb/1" rel="alternate" type="text/html"/>
532
+
533
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95774.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/172/ant_count_tlb/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(172) stage main(1) Passed]]></title>
545
+ <updated>2011-12-30T17:40:04-08:00</updated>
546
+ <id>https://go-server.example.com/go/pipelines/tlb/172/main/1</id>
547
+
548
+
549
+ <author>
550
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
551
+ </author>
552
+
553
+
554
+ <link title="main Stage Detail" href="https://go-server.example.com/go/api/stages/207348.xml" rel="alternate" type="application/vnd.go+xml"/>
555
+ <link title="main Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/172/main/1" rel="alternate" type="text/html"/>
556
+
557
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/95774.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/172/main/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="passed" label="Passed" />
565
+ </entry>
566
+
567
+ <entry>
568
+ <title><![CDATA[tlb(171) stage perf(1) Failed]]></title>
569
+ <updated>2011-12-27T18:34:40-08:00</updated>
570
+ <id>https://go-server.example.com/go/pipelines/tlb/171/perf/1</id>
571
+
572
+
573
+ <author>
574
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
575
+ </author>
576
+
577
+
578
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/api/stages/207018.xml" rel="alternate" type="application/vnd.go+xml"/>
579
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/171/perf/1" rel="alternate" type="text/html"/>
580
+
581
+ <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"/>
582
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/171/perf/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="failed" label="Failed" />
589
+ </entry>
590
+
591
+ <entry>
592
+ <title><![CDATA[tlb(171) stage ant_time_go(1) Passed]]></title>
593
+ <updated>2011-12-27T18:33:58-08:00</updated>
594
+ <id>https://go-server.example.com/go/pipelines/tlb/171/ant_time_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_time_go Stage Detail" href="https://go-server.example.com/go/api/stages/207015.xml" rel="alternate" type="application/vnd.go+xml"/>
603
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/171/ant_time_go/1" rel="alternate" type="text/html"/>
604
+
605
+ <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"/>
606
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/171/ant_time_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>