go_cd_feed 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
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,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>
@@ -0,0 +1,636 @@
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-04-17T03:56:53-07: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=7959831"/>
12
+
13
+
14
+
15
+ <entry>
16
+ <title><![CDATA[tlb(178) stage perf(1) Failed]]></title>
17
+ <updated>2012-04-17T03:56:53-07:00</updated>
18
+ <id>https://go-server.example.com/go/pipelines/tlb/178/perf/1</id>
19
+
20
+
21
+ <author>
22
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
23
+ </author>
24
+
25
+
26
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/api/stages/222447.xml" rel="alternate" type="application/vnd.go+xml"/>
27
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/178/perf/1" rel="alternate" type="text/html"/>
28
+
29
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/102275.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/178/perf/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="failed" label="Failed" />
37
+ </entry>
38
+
39
+ <entry>
40
+ <title><![CDATA[tlb(178) stage ant_time_go(1) Passed]]></title>
41
+ <updated>2012-04-17T03:56:16-07:00</updated>
42
+ <id>https://go-server.example.com/go/pipelines/tlb/178/ant_time_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_time_go Stage Detail" href="https://go-server.example.com/go/api/stages/222446.xml" rel="alternate" type="application/vnd.go+xml"/>
51
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/178/ant_time_go/1" rel="alternate" type="text/html"/>
52
+
53
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/102275.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/178/ant_time_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(178) stage ant_count_go(1) Passed]]></title>
65
+ <updated>2012-04-17T03:47:34-07:00</updated>
66
+ <id>https://go-server.example.com/go/pipelines/tlb/178/ant_count_go/1</id>
67
+
68
+
69
+ <author>
70
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
71
+ </author>
72
+
73
+
74
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/api/stages/222445.xml" rel="alternate" type="application/vnd.go+xml"/>
75
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/178/ant_count_go/1" rel="alternate" type="text/html"/>
76
+
77
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/102275.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/178/ant_count_go/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(178) stage ant_smoothed_time_tlb(1) Passed]]></title>
89
+ <updated>2012-04-17T03:39:42-07:00</updated>
90
+ <id>https://go-server.example.com/go/pipelines/tlb/178/ant_smoothed_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_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/222444.xml" rel="alternate" type="application/vnd.go+xml"/>
99
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/178/ant_smoothed_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/102275.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/178/ant_smoothed_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(178) stage ant_time_tlb(1) Passed]]></title>
113
+ <updated>2012-04-17T03:36:10-07:00</updated>
114
+ <id>https://go-server.example.com/go/pipelines/tlb/178/ant_time_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_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/222443.xml" rel="alternate" type="application/vnd.go+xml"/>
123
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/178/ant_time_tlb/1" rel="alternate" type="text/html"/>
124
+
125
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/102275.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/178/ant_time_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(178) stage ant_count_tlb(2) Passed]]></title>
137
+ <updated>2012-04-17T03:32:54-07:00</updated>
138
+ <id>https://go-server.example.com/go/pipelines/tlb/178/ant_count_tlb/2</id>
139
+
140
+
141
+ <author>
142
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
143
+ </author>
144
+
145
+
146
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/222442.xml" rel="alternate" type="application/vnd.go+xml"/>
147
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/178/ant_count_tlb/2" rel="alternate" type="text/html"/>
148
+
149
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/102275.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/178/ant_count_tlb/2/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(178) stage ant_count_tlb(1) Failed]]></title>
161
+ <updated>2012-04-17T02:32:39-07:00</updated>
162
+ <id>https://go-server.example.com/go/pipelines/tlb/178/ant_count_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_count_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/222439.xml" rel="alternate" type="application/vnd.go+xml"/>
171
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/178/ant_count_tlb/1" rel="alternate" type="text/html"/>
172
+
173
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/102275.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/178/ant_count_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(178) stage main(1) Passed]]></title>
185
+ <updated>2012-04-17T02:29:36-07:00</updated>
186
+ <id>https://go-server.example.com/go/pipelines/tlb/178/main/1</id>
187
+
188
+
189
+ <author>
190
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
191
+ </author>
192
+
193
+
194
+ <link title="main Stage Detail" href="https://go-server.example.com/go/api/stages/222438.xml" rel="alternate" type="application/vnd.go+xml"/>
195
+ <link title="main Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/178/main/1" rel="alternate" type="text/html"/>
196
+
197
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/102275.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/178/main/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(176) stage ant_count_tlb(2) Cancelled]]></title>
209
+ <updated>2012-04-08T23:12:00-07:00</updated>
210
+ <id>https://go-server.example.com/go/pipelines/tlb/176/ant_count_tlb/2</id>
211
+
212
+
213
+ <author>
214
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
215
+ </author>
216
+
217
+
218
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/221176.xml" rel="alternate" type="application/vnd.go+xml"/>
219
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/176/ant_count_tlb/2" rel="alternate" type="text/html"/>
220
+
221
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96594.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/176/ant_count_tlb/2/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="cancelled" label="Cancelled" />
229
+ </entry>
230
+
231
+ <entry>
232
+ <title><![CDATA[tlb(176) stage main(2) Passed]]></title>
233
+ <updated>2012-04-08T23:10:48-07:00</updated>
234
+ <id>https://go-server.example.com/go/pipelines/tlb/176/main/2</id>
235
+
236
+
237
+ <author>
238
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
239
+ </author>
240
+
241
+
242
+ <link title="main Stage Detail" href="https://go-server.example.com/go/api/stages/221175.xml" rel="alternate" type="application/vnd.go+xml"/>
243
+ <link title="main Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/176/main/2" rel="alternate" type="text/html"/>
244
+
245
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96594.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/176/main/2/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(177) stage perf(1) Failed]]></title>
257
+ <updated>2012-01-22T03:37:56-08:00</updated>
258
+ <id>https://go-server.example.com/go/pipelines/tlb/177/perf/1</id>
259
+
260
+
261
+ <author>
262
+ <name><![CDATA[Pavan <itspanzi@gmail.com>]]></name>
263
+ </author>
264
+ <author>
265
+ <name><![CDATA[Pavan Sudarshan <itspanzi@gmail.com>]]></name>
266
+ </author>
267
+
268
+
269
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/api/stages/210163.xml" rel="alternate" type="application/vnd.go+xml"/>
270
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/177/perf/1" rel="alternate" type="text/html"/>
271
+
272
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96938.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
273
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/177/perf/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
274
+
275
+
276
+
277
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
278
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
279
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="failed" label="Failed" />
280
+ </entry>
281
+
282
+ <entry>
283
+ <title><![CDATA[tlb(177) stage ant_time_go(1) Passed]]></title>
284
+ <updated>2012-01-22T03:37:25-08:00</updated>
285
+ <id>https://go-server.example.com/go/pipelines/tlb/177/ant_time_go/1</id>
286
+
287
+
288
+ <author>
289
+ <name><![CDATA[Pavan <itspanzi@gmail.com>]]></name>
290
+ </author>
291
+ <author>
292
+ <name><![CDATA[Pavan Sudarshan <itspanzi@gmail.com>]]></name>
293
+ </author>
294
+
295
+
296
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/api/stages/210162.xml" rel="alternate" type="application/vnd.go+xml"/>
297
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/177/ant_time_go/1" rel="alternate" type="text/html"/>
298
+
299
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96938.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
300
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/177/ant_time_go/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
301
+
302
+
303
+
304
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
305
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
306
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
307
+ </entry>
308
+
309
+ <entry>
310
+ <title><![CDATA[tlb(177) stage ant_count_go(1) Passed]]></title>
311
+ <updated>2012-01-22T03:32:57-08:00</updated>
312
+ <id>https://go-server.example.com/go/pipelines/tlb/177/ant_count_go/1</id>
313
+
314
+
315
+ <author>
316
+ <name><![CDATA[Pavan <itspanzi@gmail.com>]]></name>
317
+ </author>
318
+ <author>
319
+ <name><![CDATA[Pavan Sudarshan <itspanzi@gmail.com>]]></name>
320
+ </author>
321
+
322
+
323
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/api/stages/210161.xml" rel="alternate" type="application/vnd.go+xml"/>
324
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/177/ant_count_go/1" rel="alternate" type="text/html"/>
325
+
326
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96938.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
327
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/177/ant_count_go/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
328
+
329
+
330
+
331
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
332
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
333
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
334
+ </entry>
335
+
336
+ <entry>
337
+ <title><![CDATA[tlb(177) stage ant_smoothed_time_tlb(1) Passed]]></title>
338
+ <updated>2012-01-22T03:28:35-08:00</updated>
339
+ <id>https://go-server.example.com/go/pipelines/tlb/177/ant_smoothed_time_tlb/1</id>
340
+
341
+
342
+ <author>
343
+ <name><![CDATA[Pavan <itspanzi@gmail.com>]]></name>
344
+ </author>
345
+ <author>
346
+ <name><![CDATA[Pavan Sudarshan <itspanzi@gmail.com>]]></name>
347
+ </author>
348
+
349
+
350
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/210160.xml" rel="alternate" type="application/vnd.go+xml"/>
351
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/177/ant_smoothed_time_tlb/1" rel="alternate" type="text/html"/>
352
+
353
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96938.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
354
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/177/ant_smoothed_time_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
355
+
356
+
357
+
358
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
359
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
360
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
361
+ </entry>
362
+
363
+ <entry>
364
+ <title><![CDATA[tlb(177) stage ant_time_tlb(1) Passed]]></title>
365
+ <updated>2012-01-22T03:24:55-08:00</updated>
366
+ <id>https://go-server.example.com/go/pipelines/tlb/177/ant_time_tlb/1</id>
367
+
368
+
369
+ <author>
370
+ <name><![CDATA[Pavan <itspanzi@gmail.com>]]></name>
371
+ </author>
372
+ <author>
373
+ <name><![CDATA[Pavan Sudarshan <itspanzi@gmail.com>]]></name>
374
+ </author>
375
+
376
+
377
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/210159.xml" rel="alternate" type="application/vnd.go+xml"/>
378
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/177/ant_time_tlb/1" rel="alternate" type="text/html"/>
379
+
380
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96938.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
381
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/177/ant_time_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
382
+
383
+
384
+
385
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
386
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
387
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
388
+ </entry>
389
+
390
+ <entry>
391
+ <title><![CDATA[tlb(177) stage ant_count_tlb(1) Passed]]></title>
392
+ <updated>2012-01-22T03:20:55-08:00</updated>
393
+ <id>https://go-server.example.com/go/pipelines/tlb/177/ant_count_tlb/1</id>
394
+
395
+
396
+ <author>
397
+ <name><![CDATA[Pavan <itspanzi@gmail.com>]]></name>
398
+ </author>
399
+ <author>
400
+ <name><![CDATA[Pavan Sudarshan <itspanzi@gmail.com>]]></name>
401
+ </author>
402
+
403
+
404
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/210158.xml" rel="alternate" type="application/vnd.go+xml"/>
405
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/177/ant_count_tlb/1" rel="alternate" type="text/html"/>
406
+
407
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96938.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
408
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/177/ant_count_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
409
+
410
+
411
+
412
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
413
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
414
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
415
+ </entry>
416
+
417
+ <entry>
418
+ <title><![CDATA[tlb(177) stage main(1) Passed]]></title>
419
+ <updated>2012-01-22T03:17:25-08:00</updated>
420
+ <id>https://go-server.example.com/go/pipelines/tlb/177/main/1</id>
421
+
422
+
423
+ <author>
424
+ <name><![CDATA[Pavan <itspanzi@gmail.com>]]></name>
425
+ </author>
426
+ <author>
427
+ <name><![CDATA[Pavan Sudarshan <itspanzi@gmail.com>]]></name>
428
+ </author>
429
+
430
+
431
+ <link title="main Stage Detail" href="https://go-server.example.com/go/api/stages/210157.xml" rel="alternate" type="application/vnd.go+xml"/>
432
+ <link title="main Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/177/main/1" rel="alternate" type="text/html"/>
433
+
434
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96938.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
435
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/177/main/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
436
+
437
+
438
+
439
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
440
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
441
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
442
+ </entry>
443
+
444
+ <entry>
445
+ <title><![CDATA[tlb(176) stage perf(1) Failed]]></title>
446
+ <updated>2012-01-12T18:02:14-08:00</updated>
447
+ <id>https://go-server.example.com/go/pipelines/tlb/176/perf/1</id>
448
+
449
+
450
+ <author>
451
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
452
+ </author>
453
+
454
+
455
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/api/stages/209297.xml" rel="alternate" type="application/vnd.go+xml"/>
456
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/176/perf/1" rel="alternate" type="text/html"/>
457
+
458
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96594.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
459
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/176/perf/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
460
+
461
+
462
+
463
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
464
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
465
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="failed" label="Failed" />
466
+ </entry>
467
+
468
+ <entry>
469
+ <title><![CDATA[tlb(176) stage ant_time_go(1) Passed]]></title>
470
+ <updated>2012-01-12T18:01:44-08:00</updated>
471
+ <id>https://go-server.example.com/go/pipelines/tlb/176/ant_time_go/1</id>
472
+
473
+
474
+ <author>
475
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
476
+ </author>
477
+
478
+
479
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/api/stages/209294.xml" rel="alternate" type="application/vnd.go+xml"/>
480
+ <link title="ant_time_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/176/ant_time_go/1" rel="alternate" type="text/html"/>
481
+
482
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96594.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
483
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/176/ant_time_go/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
484
+
485
+
486
+
487
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
488
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
489
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
490
+ </entry>
491
+
492
+ <entry>
493
+ <title><![CDATA[tlb(176) stage ant_count_go(1) Passed]]></title>
494
+ <updated>2012-01-12T17:56:35-08:00</updated>
495
+ <id>https://go-server.example.com/go/pipelines/tlb/176/ant_count_go/1</id>
496
+
497
+
498
+ <author>
499
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
500
+ </author>
501
+
502
+
503
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/api/stages/209286.xml" rel="alternate" type="application/vnd.go+xml"/>
504
+ <link title="ant_count_go Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/176/ant_count_go/1" rel="alternate" type="text/html"/>
505
+
506
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96594.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
507
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/176/ant_count_go/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
508
+
509
+
510
+
511
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
512
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
513
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
514
+ </entry>
515
+
516
+ <entry>
517
+ <title><![CDATA[tlb(176) stage ant_smoothed_time_tlb(1) Passed]]></title>
518
+ <updated>2012-01-12T17:52:07-08:00</updated>
519
+ <id>https://go-server.example.com/go/pipelines/tlb/176/ant_smoothed_time_tlb/1</id>
520
+
521
+
522
+ <author>
523
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
524
+ </author>
525
+
526
+
527
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/209285.xml" rel="alternate" type="application/vnd.go+xml"/>
528
+ <link title="ant_smoothed_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/176/ant_smoothed_time_tlb/1" rel="alternate" type="text/html"/>
529
+
530
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96594.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
531
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/176/ant_smoothed_time_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
532
+
533
+
534
+
535
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
536
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
537
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
538
+ </entry>
539
+
540
+ <entry>
541
+ <title><![CDATA[tlb(176) stage ant_time_tlb(1) Passed]]></title>
542
+ <updated>2012-01-12T17:48:07-08:00</updated>
543
+ <id>https://go-server.example.com/go/pipelines/tlb/176/ant_time_tlb/1</id>
544
+
545
+
546
+ <author>
547
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
548
+ </author>
549
+
550
+
551
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/209284.xml" rel="alternate" type="application/vnd.go+xml"/>
552
+ <link title="ant_time_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/176/ant_time_tlb/1" rel="alternate" type="text/html"/>
553
+
554
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96594.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
555
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/176/ant_time_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
556
+
557
+
558
+
559
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
560
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
561
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
562
+ </entry>
563
+
564
+ <entry>
565
+ <title><![CDATA[tlb(176) stage ant_count_tlb(1) Passed]]></title>
566
+ <updated>2012-01-12T17:43:43-08:00</updated>
567
+ <id>https://go-server.example.com/go/pipelines/tlb/176/ant_count_tlb/1</id>
568
+
569
+
570
+ <author>
571
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
572
+ </author>
573
+
574
+
575
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/api/stages/209283.xml" rel="alternate" type="application/vnd.go+xml"/>
576
+ <link title="ant_count_tlb Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/176/ant_count_tlb/1" rel="alternate" type="text/html"/>
577
+
578
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96594.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
579
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/176/ant_count_tlb/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
580
+
581
+
582
+
583
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
584
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
585
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
586
+ </entry>
587
+
588
+ <entry>
589
+ <title><![CDATA[tlb(176) stage main(1) Passed]]></title>
590
+ <updated>2012-01-12T17:39:17-08:00</updated>
591
+ <id>https://go-server.example.com/go/pipelines/tlb/176/main/1</id>
592
+
593
+
594
+ <author>
595
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
596
+ </author>
597
+
598
+
599
+ <link title="main Stage Detail" href="https://go-server.example.com/go/api/stages/209281.xml" rel="alternate" type="application/vnd.go+xml"/>
600
+ <link title="main Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/176/main/1" rel="alternate" type="text/html"/>
601
+
602
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/api/pipelines/tlb/96594.xml" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="application/vnd.go+xml"/>
603
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/176/main/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
604
+
605
+
606
+
607
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
608
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
609
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="passed" label="Passed" />
610
+ </entry>
611
+
612
+ <entry>
613
+ <title><![CDATA[tlb(175) stage perf(1) Failed]]></title>
614
+ <updated>2012-01-05T18:10:08-08:00</updated>
615
+ <id>https://go-server.example.com/go/pipelines/tlb/175/perf/1</id>
616
+
617
+
618
+ <author>
619
+ <name><![CDATA[Janmejay Singh <singh.janmejay@gmail.com>]]></name>
620
+ </author>
621
+
622
+
623
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/api/stages/208043.xml" rel="alternate" type="application/vnd.go+xml"/>
624
+ <link title="perf Stage Detail" href="https://go-server.example.com/go/pipelines/tlb/175/perf/1" rel="alternate" type="text/html"/>
625
+
626
+ <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"/>
627
+ <link title="tlb Pipeline Detail" href="https://go-server.example.com/go/pipelines/tlb/175/perf/1/pipeline" rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline" type="text/html"/>
628
+
629
+
630
+
631
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="stage" label="Stage" />
632
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="completed" label="Completed" />
633
+ <category scheme="http://www.thoughtworks-studios.com/ns/categories/go" term="failed" label="Failed" />
634
+ </entry>
635
+
636
+ </feed>