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,255 @@
1
+ <feed xmlns="http://www.w3.org/2005/Atom" xmlns:go="http://www.thoughtworks-studios.com/ns/go">
2
+ <title><![CDATA[defaultPipeline]]></title>
3
+ <id>http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/stages.xml</id>
4
+ <author>
5
+ <name>Go</name>
6
+ </author>
7
+ <updated>2012-10-29T08:09:11Z</updated>
8
+ <link rel="self" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/stages.xml"/>
9
+
10
+
11
+ <!-- <link rel="next" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/stages.xml?before=6"/> -->
12
+
13
+
14
+
15
+ <entry>
16
+ <title><![CDATA[defaultPipeline(5) stage PostBuild(1) Passed]]></title>
17
+ <updated>2012-10-29T08:09:11Z</updated>
18
+ <id>http://go-server.2.project:8153/go/pipelines/defaultPipeline/5/PostBuild/1</id>
19
+
20
+
21
+ <author>
22
+ <name><![CDATA[Ketan Padegaonkar <KetanPadegaonkar@gmail.com>]]></name>
23
+ </author>
24
+
25
+
26
+ <link title="PostBuild Stage Detail" href="http://go-server.2.project:8153/go/api/stages/10.xml" rel="alternate" type="application/vnd.go+xml"/>
27
+ <link title="PostBuild Stage Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/5/PostBuild/1" rel="alternate" type="text/html"/>
28
+
29
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/5.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
30
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/5/PostBuild/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[defaultPipeline(5) stage Units(1) Passed]]></title>
41
+ <updated>2012-10-29T08:08:43Z</updated>
42
+ <id>http://go-server.2.project:8153/go/pipelines/defaultPipeline/5/Units/1</id>
43
+
44
+
45
+ <author>
46
+ <name><![CDATA[Ketan Padegaonkar <KetanPadegaonkar@gmail.com>]]></name>
47
+ </author>
48
+
49
+
50
+ <link title="Units Stage Detail" href="http://go-server.2.project:8153/go/api/stages/9.xml" rel="alternate" type="application/vnd.go+xml"/>
51
+ <link title="Units Stage Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/5/Units/1" rel="alternate" type="text/html"/>
52
+
53
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/5.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
54
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/5/Units/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[defaultPipeline(4) stage PostBuild(1) Passed]]></title>
65
+ <updated>2012-10-26T05:53:19Z</updated>
66
+ <id>http://go-server.2.project:8153/go/pipelines/defaultPipeline/4/PostBuild/1</id>
67
+
68
+
69
+ <author>
70
+ <name><![CDATA[Sahil Muthoo and James Gray <go-saas+sahilm+jrgray@thoughtworks.com>]]></name>
71
+ </author>
72
+
73
+
74
+ <link title="PostBuild Stage Detail" href="http://go-server.2.project:8153/go/api/stages/8.xml" rel="alternate" type="application/vnd.go+xml"/>
75
+ <link title="PostBuild Stage Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/4/PostBuild/1" rel="alternate" type="text/html"/>
76
+
77
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/4.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
78
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/4/PostBuild/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[defaultPipeline(4) stage Units(1) Passed]]></title>
89
+ <updated>2012-10-26T05:52:51Z</updated>
90
+ <id>http://go-server.2.project:8153/go/pipelines/defaultPipeline/4/Units/1</id>
91
+
92
+
93
+ <author>
94
+ <name><![CDATA[Sahil Muthoo and James Gray <go-saas+sahilm+jrgray@thoughtworks.com>]]></name>
95
+ </author>
96
+
97
+
98
+ <link title="Units Stage Detail" href="http://go-server.2.project:8153/go/api/stages/7.xml" rel="alternate" type="application/vnd.go+xml"/>
99
+ <link title="Units Stage Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/4/Units/1" rel="alternate" type="text/html"/>
100
+
101
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/4.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
102
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/4/Units/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[defaultPipeline(3) stage PostBuild(1) Passed]]></title>
113
+ <updated>2012-10-23T08:47:11Z</updated>
114
+ <id>http://go-server.2.project:8153/go/pipelines/defaultPipeline/3/PostBuild/1</id>
115
+
116
+
117
+ <author>
118
+ <name><![CDATA[Ketan Padegaonkar <KetanPadegaonkar@gmail.com>]]></name>
119
+ </author>
120
+
121
+
122
+ <link title="PostBuild Stage Detail" href="http://go-server.2.project:8153/go/api/stages/6.xml" rel="alternate" type="application/vnd.go+xml"/>
123
+ <link title="PostBuild Stage Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/3/PostBuild/1" rel="alternate" type="text/html"/>
124
+
125
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/3.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
126
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/3/PostBuild/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[defaultPipeline(3) stage Units(1) Passed]]></title>
137
+ <updated>2012-10-23T08:46:42Z</updated>
138
+ <id>http://go-server.2.project:8153/go/pipelines/defaultPipeline/3/Units/1</id>
139
+
140
+
141
+ <author>
142
+ <name><![CDATA[Ketan Padegaonkar <KetanPadegaonkar@gmail.com>]]></name>
143
+ </author>
144
+
145
+
146
+ <link title="Units Stage Detail" href="http://go-server.2.project:8153/go/api/stages/5.xml" rel="alternate" type="application/vnd.go+xml"/>
147
+ <link title="Units Stage Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/3/Units/1" rel="alternate" type="text/html"/>
148
+
149
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/3.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
150
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/3/Units/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[defaultPipeline(2) stage PostBuild(1) Passed]]></title>
161
+ <updated>2012-10-19T15:19:18Z</updated>
162
+ <id>http://go-server.2.project:8153/go/pipelines/defaultPipeline/2/PostBuild/1</id>
163
+
164
+
165
+ <author>
166
+ <name><![CDATA[Ketan Padegaonkar <KetanPadegaonkar@gmail.com>]]></name>
167
+ </author>
168
+
169
+
170
+ <link title="PostBuild Stage Detail" href="http://go-server.2.project:8153/go/api/stages/4.xml" rel="alternate" type="application/vnd.go+xml"/>
171
+ <link title="PostBuild Stage Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/2/PostBuild/1" rel="alternate" type="text/html"/>
172
+
173
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/2.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
174
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/2/PostBuild/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[defaultPipeline(2) stage Units(1) Passed]]></title>
185
+ <updated>2012-10-19T15:18:50Z</updated>
186
+ <id>http://go-server.2.project:8153/go/pipelines/defaultPipeline/2/Units/1</id>
187
+
188
+
189
+ <author>
190
+ <name><![CDATA[Ketan Padegaonkar <KetanPadegaonkar@gmail.com>]]></name>
191
+ </author>
192
+
193
+
194
+ <link title="Units Stage Detail" href="http://go-server.2.project:8153/go/api/stages/3.xml" rel="alternate" type="application/vnd.go+xml"/>
195
+ <link title="Units Stage Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/2/Units/1" rel="alternate" type="text/html"/>
196
+
197
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/2.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
198
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/2/Units/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[defaultPipeline(1) stage PostBuild(1) Passed]]></title>
209
+ <updated>2012-10-17T09:47:47Z</updated>
210
+ <id>http://go-server.2.project:8153/go/pipelines/defaultPipeline/1/PostBuild/1</id>
211
+
212
+
213
+ <author>
214
+ <name><![CDATA[Badrinath Janakiraman <badri.j@gmail.com>]]></name>
215
+ </author>
216
+
217
+
218
+ <link title="PostBuild Stage Detail" href="http://go-server.2.project:8153/go/api/stages/2.xml" rel="alternate" type="application/vnd.go+xml"/>
219
+ <link title="PostBuild Stage Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/1/PostBuild/1" rel="alternate" type="text/html"/>
220
+
221
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/1.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
222
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/1/PostBuild/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[defaultPipeline(1) stage Units(1) Passed]]></title>
233
+ <updated>2012-10-17T09:47:19Z</updated>
234
+ <id>http://go-server.2.project:8153/go/pipelines/defaultPipeline/1/Units/1</id>
235
+
236
+
237
+ <author>
238
+ <name><![CDATA[Badrinath Janakiraman <badri.j@gmail.com>]]></name>
239
+ </author>
240
+
241
+
242
+ <link title="Units Stage Detail" href="http://go-server.2.project:8153/go/api/stages/1.xml" rel="alternate" type="application/vnd.go+xml"/>
243
+ <link title="Units Stage Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/1/Units/1" rel="alternate" type="text/html"/>
244
+
245
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/1.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
246
+ <link title="defaultPipeline Pipeline Detail" href="http://go-server.2.project:8153/go/pipelines/defaultPipeline/1/Units/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
+ </feed>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="Units" counter="1">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/stages/1.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:1:Units:1]]></id>
6
+ <pipeline name="defaultPipeline" counter="1" label="1" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/1.xml"/>
7
+ <updated>2012-10-17T09:47:19Z</updated>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
11
+ <jobs>
12
+ <job href="http://go-server.2.project:8153/go/api/jobs/1.xml"/>
13
+ </jobs>
14
+ </stage>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="PostBuild" counter="1">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/stages/10.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:5:PostBuild:1]]></id>
6
+ <pipeline name="defaultPipeline" counter="5" label="5" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/5.xml"/>
7
+ <updated>2012-10-29T08:09:11Z</updated>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <approvedBy><![CDATA[changes]]></approvedBy>
11
+ <jobs>
12
+ <job href="http://go-server.2.project:8153/go/api/jobs/10.xml"/>
13
+ </jobs>
14
+ </stage>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="PostBuild" counter="1">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/stages/2.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:1:PostBuild:1]]></id>
6
+ <pipeline name="defaultPipeline" counter="1" label="1" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/1.xml"/>
7
+ <updated>2012-10-17T09:47:47Z</updated>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <approvedBy><![CDATA[changes]]></approvedBy>
11
+ <jobs>
12
+ <job href="http://go-server.2.project:8153/go/api/jobs/2.xml"/>
13
+ </jobs>
14
+ </stage>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="Units" counter="1">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/stages/3.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:2:Units:1]]></id>
6
+ <pipeline name="defaultPipeline" counter="2" label="2" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/2.xml"/>
7
+ <updated>2012-10-19T15:18:50Z</updated>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
11
+ <jobs>
12
+ <job href="http://go-server.2.project:8153/go/api/jobs/3.xml"/>
13
+ </jobs>
14
+ </stage>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="PostBuild" counter="1">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/stages/4.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:2:PostBuild:1]]></id>
6
+ <pipeline name="defaultPipeline" counter="2" label="2" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/2.xml"/>
7
+ <updated>2012-10-19T15:19:18Z</updated>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <approvedBy><![CDATA[changes]]></approvedBy>
11
+ <jobs>
12
+ <job href="http://go-server.2.project:8153/go/api/jobs/4.xml"/>
13
+ </jobs>
14
+ </stage>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="Units" counter="1">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/stages/5.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:3:Units:1]]></id>
6
+ <pipeline name="defaultPipeline" counter="3" label="3" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/3.xml"/>
7
+ <updated>2012-10-23T08:46:42Z</updated>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
11
+ <jobs>
12
+ <job href="http://go-server.2.project:8153/go/api/jobs/5.xml"/>
13
+ </jobs>
14
+ </stage>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="PostBuild" counter="1">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/stages/6.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:3:PostBuild:1]]></id>
6
+ <pipeline name="defaultPipeline" counter="3" label="3" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/3.xml"/>
7
+ <updated>2012-10-23T08:47:11Z</updated>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <approvedBy><![CDATA[changes]]></approvedBy>
11
+ <jobs>
12
+ <job href="http://go-server.2.project:8153/go/api/jobs/6.xml"/>
13
+ </jobs>
14
+ </stage>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="Units" counter="1">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/stages/7.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:4:Units:1]]></id>
6
+ <pipeline name="defaultPipeline" counter="4" label="4" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/4.xml"/>
7
+ <updated>2012-10-26T05:52:51Z</updated>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
11
+ <jobs>
12
+ <job href="http://go-server.2.project:8153/go/api/jobs/7.xml"/>
13
+ </jobs>
14
+ </stage>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="PostBuild" counter="1">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/stages/8.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:4:PostBuild:1]]></id>
6
+ <pipeline name="defaultPipeline" counter="4" label="4" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/4.xml"/>
7
+ <updated>2012-10-26T05:53:19Z</updated>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <approvedBy><![CDATA[changes]]></approvedBy>
11
+ <jobs>
12
+ <job href="http://go-server.2.project:8153/go/api/jobs/8.xml"/>
13
+ </jobs>
14
+ </stage>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="Units" counter="1">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/stages/9.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:5:Units:1]]></id>
6
+ <pipeline name="defaultPipeline" counter="5" label="5" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/5.xml"/>
7
+ <updated>2012-10-29T08:08:43Z</updated>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
11
+ <jobs>
12
+ <job href="http://go-server.2.project:8153/go/api/jobs/9.xml"/>
13
+ </jobs>
14
+ </stage>