go_cd_feed 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/.rvmrc +1 -0
  4. data/.zeroci.yml +1 -0
  5. data/Gemfile +4 -0
  6. data/Gemfile.lock +32 -0
  7. data/README.textile +36 -0
  8. data/Rakefile +39 -0
  9. data/bin/go_api_client +3 -0
  10. data/go_api_client.gemspec +27 -0
  11. data/lib/go_api_client.rb +60 -0
  12. data/lib/go_api_client/atom.rb +4 -0
  13. data/lib/go_api_client/atom/author.rb +42 -0
  14. data/lib/go_api_client/atom/entry.rb +34 -0
  15. data/lib/go_api_client/atom/feed.rb +44 -0
  16. data/lib/go_api_client/atom/feed_page.rb +49 -0
  17. data/lib/go_api_client/commit.rb +30 -0
  18. data/lib/go_api_client/helpers.rb +1 -0
  19. data/lib/go_api_client/helpers/simple_attribute_support.rb +11 -0
  20. data/lib/go_api_client/http_fetcher.rb +43 -0
  21. data/lib/go_api_client/job.rb +64 -0
  22. data/lib/go_api_client/pipeline.rb +49 -0
  23. data/lib/go_api_client/stage.rb +57 -0
  24. data/lib/go_api_client/user.rb +36 -0
  25. data/lib/go_api_client/version.rb +9 -0
  26. data/ssh_keys/git-ci.zeroci.com +27 -0
  27. data/ssh_keys/git-ci.zeroci.com.pub +1 -0
  28. data/ssh_keys/git-ssh +3 -0
  29. data/test/fixtures/building/job_1.xml +41 -0
  30. data/test/fixtures/building/job_2.xml +43 -0
  31. data/test/fixtures/building/job_3.xml +40 -0
  32. data/test/fixtures/building/job_4.xml +40 -0
  33. data/test/fixtures/building/pipeline_1.xml +45 -0
  34. data/test/fixtures/building/pipeline_2.xml +39 -0
  35. data/test/fixtures/building/pipeline_3.xml +71 -0
  36. data/test/fixtures/building/stages.xml +180 -0
  37. data/test/fixtures/building/stages_1.xml +16 -0
  38. data/test/fixtures/building/stages_2.xml +16 -0
  39. data/test/fixtures/building/stages_3.xml +16 -0
  40. data/test/fixtures/building/stages_4.xml +16 -0
  41. data/test/fixtures/job_1_console.log.txt +82 -0
  42. data/test/fixtures/job_2_console.log.txt +82 -0
  43. data/test/fixtures/jobs_1.xml +29 -0
  44. data/test/fixtures/jobs_2.xml +29 -0
  45. data/test/fixtures/jobs_with_no_properties.xml +42 -0
  46. data/test/fixtures/ordering/go/api/jobs/1.xml +29 -0
  47. data/test/fixtures/ordering/go/api/jobs/10.xml +31 -0
  48. data/test/fixtures/ordering/go/api/jobs/2.xml +29 -0
  49. data/test/fixtures/ordering/go/api/jobs/3.xml +29 -0
  50. data/test/fixtures/ordering/go/api/jobs/4.xml +29 -0
  51. data/test/fixtures/ordering/go/api/jobs/5.xml +29 -0
  52. data/test/fixtures/ordering/go/api/jobs/6.xml +29 -0
  53. data/test/fixtures/ordering/go/api/jobs/7.xml +31 -0
  54. data/test/fixtures/ordering/go/api/jobs/8.xml +31 -0
  55. data/test/fixtures/ordering/go/api/jobs/9.xml +31 -0
  56. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/1.xml +31 -0
  57. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/2.xml +26 -0
  58. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/3.xml +26 -0
  59. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/4.xml +27 -0
  60. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/5.xml +33 -0
  61. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/stages.xml +255 -0
  62. data/test/fixtures/ordering/go/api/stages/1.xml +14 -0
  63. data/test/fixtures/ordering/go/api/stages/10.xml +14 -0
  64. data/test/fixtures/ordering/go/api/stages/2.xml +14 -0
  65. data/test/fixtures/ordering/go/api/stages/3.xml +14 -0
  66. data/test/fixtures/ordering/go/api/stages/4.xml +14 -0
  67. data/test/fixtures/ordering/go/api/stages/5.xml +14 -0
  68. data/test/fixtures/ordering/go/api/stages/6.xml +14 -0
  69. data/test/fixtures/ordering/go/api/stages/7.xml +14 -0
  70. data/test/fixtures/ordering/go/api/stages/8.xml +14 -0
  71. data/test/fixtures/ordering/go/api/stages/9.xml +14 -0
  72. data/test/fixtures/pagination/stages.xml +636 -0
  73. data/test/fixtures/pagination/stages_before_7916973.xml +615 -0
  74. data/test/fixtures/pagination/stages_before_7959831.xml +615 -0
  75. data/test/fixtures/pipelines_1.xml +32 -0
  76. data/test/fixtures/stages.xml +63 -0
  77. data/test/fixtures/stages_1.xml +14 -0
  78. data/test/fixtures/stages_2.xml +14 -0
  79. data/test/fixtures/stages_empty.xml +9 -0
  80. data/test/go_api_client/atom/author_test.rb +27 -0
  81. data/test/go_api_client/atom/entry_test.rb +27 -0
  82. data/test/go_api_client/atom/feed_page_test.rb +41 -0
  83. data/test/go_api_client/atom/feed_test.rb +25 -0
  84. data/test/go_api_client/building_test.rb +38 -0
  85. data/test/go_api_client/commit_test.rb +38 -0
  86. data/test/go_api_client/job_test.rb +42 -0
  87. data/test/go_api_client/pipeline_test.rb +34 -0
  88. data/test/go_api_client/stage_test.rb +75 -0
  89. data/test/go_api_client/user_test.rb +27 -0
  90. data/test/test_helper.rb +31 -0
  91. metadata +272 -0
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <job name="Test">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/jobs/9.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:5:Units:1:Test]]></id>
6
+ <pipeline name="defaultPipeline" counter="5" label="5"/>
7
+ <stage name="Units" counter="1" href="http://go-server.2.project:8153/go/api/stages/9.xml"/>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <properties>
11
+ <property name="cruise_agent"><![CDATA[go-agent-01.2.project]]></property>
12
+ <property name="cruise_job_duration"><![CDATA[18]]></property>
13
+ <property name="cruise_job_id"><![CDATA[9]]></property>
14
+ <property name="cruise_job_result"><![CDATA[Passed]]></property>
15
+ <property name="cruise_pipeline_counter"><![CDATA[5]]></property>
16
+ <property name="cruise_pipeline_label"><![CDATA[5]]></property>
17
+ <property name="cruise_stage_counter"><![CDATA[1]]></property>
18
+ <property name="cruise_timestamp_01_scheduled"><![CDATA[2012-10-29T08:08:08Z]]></property>
19
+ <property name="cruise_timestamp_02_assigned"><![CDATA[2012-10-29T08:08:14Z]]></property>
20
+ <property name="cruise_timestamp_03_preparing"><![CDATA[2012-10-29T08:08:24Z]]></property>
21
+ <property name="cruise_timestamp_04_building"><![CDATA[2012-10-29T08:08:25Z]]></property>
22
+ <property name="cruise_timestamp_05_completing"><![CDATA[2012-10-29T08:08:43Z]]></property>
23
+ <property name="cruise_timestamp_06_completed"><![CDATA[2012-10-29T08:08:43Z]]></property>
24
+ </properties>
25
+ <agent uuid="8511cc52-9d29-4dba-9f9f-4ae6de1019f2"/>
26
+ <artifacts baseUri="http://go-server.2.project:8153/go/files/defaultPipeline/5/Units/1/Test" pathFromArtifactRoot="pipelines/defaultPipeline/5/Units/1/Test"/>
27
+ <resources/>
28
+ <environmentvariables>
29
+ <variable name="PATH"><![CDATA[/opt/local/ruby/1.9.2-p290/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin]]></variable>
30
+ </environmentvariables>
31
+ </job>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <pipeline name="defaultPipeline" counter="1" label="1">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/1.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:1]]></id>
6
+ <scheduleTime>2012-10-17T09:46:08Z</scheduleTime>
7
+ <materials>
8
+ <material materialUri="http://go-server.2.project:8153/go/api/materials/1.xml" type="GitMaterial" url="git://go-saas-worker.2.project/ThoughtWorksInc/go_saas_trigger" branch="master">
9
+ <modifications>
10
+ <changeset changesetUri="http://go-server.2.project:8153/go/api/materials/1/changeset/fed1b0c09dffc299f5a7ff51223cacaceb7cd453.xml">
11
+ <user><![CDATA[Badrinath Janakiraman <badri.j@gmail.com>]]></user>
12
+ <checkinTime>2012-10-16T15:05:34Z</checkinTime>
13
+ <revision><![CDATA[fed1b0c09dffc299f5a7ff51223cacaceb7cd453]]></revision>
14
+ <message><![CDATA[Ensure that queue, exchange creations are durable and that all messages are persistent]]></message>
15
+ <file name="lib/go_saas_trigger/amqp_client.rb" action="modified"/>
16
+ <file name="lib/go_saas_trigger/cli/agent_converger.rb" action="modified"/>
17
+ <file name="lib/go_saas_trigger/cli/create_project.rb" action="modified"/>
18
+ <file name="lib/go_saas_trigger/cli/delete_project.rb" action="modified"/>
19
+ <file name="lib/go_saas_trigger/cli/dns_provisioner.rb" action="modified"/>
20
+ <file name="lib/go_saas_trigger/cli/project_provisioner.rb" action="modified"/>
21
+ <file name="lib/go_saas_trigger/cli/project_unprovisioner.rb" action="modified"/>
22
+ </changeset>
23
+ </modifications>
24
+ </material>
25
+ </materials>
26
+ <stages>
27
+ <stage href="http://go-server.2.project:8153/go/api/stages/1.xml"/>
28
+ <stage href="http://go-server.2.project:8153/go/api/stages/2.xml"/>
29
+ </stages>
30
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
31
+ </pipeline>
@@ -0,0 +1,26 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <pipeline name="defaultPipeline" counter="2" label="2">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/2.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:2]]></id>
6
+ <link rel="insertedAfter" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/1.xml"/>
7
+ <scheduleTime>2012-10-19T15:18:09Z</scheduleTime>
8
+ <materials>
9
+ <material materialUri="http://go-server.2.project:8153/go/api/materials/1.xml" type="GitMaterial" url="git://go-saas-worker.2.project/ThoughtWorksInc/go_saas_trigger" branch="master">
10
+ <modifications>
11
+ <changeset changesetUri="http://go-server.2.project:8153/go/api/materials/1/changeset/eb37d12dfcf3781148f9d155b7ae8fd372669e3d.xml">
12
+ <user><![CDATA[Ketan Padegaonkar <KetanPadegaonkar@gmail.com>]]></user>
13
+ <checkinTime>2012-10-19T15:17:07Z</checkinTime>
14
+ <revision><![CDATA[eb37d12dfcf3781148f9d155b7ae8fd372669e3d]]></revision>
15
+ <message><![CDATA[Ensure we log the initialisation message after the logger is setup]]></message>
16
+ <file name="lib/go_saas_trigger/amqp_client.rb" action="modified"/>
17
+ </changeset>
18
+ </modifications>
19
+ </material>
20
+ </materials>
21
+ <stages>
22
+ <stage href="http://go-server.2.project:8153/go/api/stages/3.xml"/>
23
+ <stage href="http://go-server.2.project:8153/go/api/stages/4.xml"/>
24
+ </stages>
25
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
26
+ </pipeline>
@@ -0,0 +1,26 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <pipeline name="defaultPipeline" counter="3" label="3">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/3.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:3]]></id>
6
+ <link rel="insertedAfter" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/2.xml"/>
7
+ <scheduleTime>2012-10-23T08:46:07Z</scheduleTime>
8
+ <materials>
9
+ <material materialUri="http://go-server.2.project:8153/go/api/materials/1.xml" type="GitMaterial" url="git://go-saas-worker.2.project/ThoughtWorksInc/go_saas_trigger" branch="master">
10
+ <modifications>
11
+ <changeset changesetUri="http://go-server.2.project:8153/go/api/materials/1/changeset/50d153db238600bb4474ecca69e45c408cadfccb.xml">
12
+ <user><![CDATA[Ketan Padegaonkar <KetanPadegaonkar@gmail.com>]]></user>
13
+ <checkinTime>2012-10-23T08:45:24Z</checkinTime>
14
+ <revision><![CDATA[50d153db238600bb4474ecca69e45c408cadfccb]]></revision>
15
+ <message><![CDATA[Ensure that we log the environment under which the trigger app is running to ensure sanity while developing suff.]]></message>
16
+ <file name="lib/go_saas_trigger/amqp_client.rb" action="modified"/>
17
+ </changeset>
18
+ </modifications>
19
+ </material>
20
+ </materials>
21
+ <stages>
22
+ <stage href="http://go-server.2.project:8153/go/api/stages/5.xml"/>
23
+ <stage href="http://go-server.2.project:8153/go/api/stages/6.xml"/>
24
+ </stages>
25
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
26
+ </pipeline>
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <pipeline name="defaultPipeline" counter="4" label="4">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/4.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:4]]></id>
6
+ <link rel="insertedAfter" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/3.xml"/>
7
+ <scheduleTime>2012-10-26T05:52:10Z</scheduleTime>
8
+ <materials>
9
+ <material materialUri="http://go-server.2.project:8153/go/api/materials/1.xml" type="GitMaterial" url="git://go-saas-worker.2.project/ThoughtWorksInc/go_saas_trigger" branch="master">
10
+ <modifications>
11
+ <changeset changesetUri="http://go-server.2.project:8153/go/api/materials/1/changeset/48ce81580ecb6ab8d1c7933087f85466c23c16c0.xml">
12
+ <user><![CDATA[Sahil Muthoo and James Gray <go-saas+sahilm+jrgray@thoughtworks.com>]]></user>
13
+ <checkinTime>2012-10-26T05:46:27Z</checkinTime>
14
+ <revision><![CDATA[48ce81580ecb6ab8d1c7933087f85466c23c16c0]]></revision>
15
+ <message><![CDATA[Use the project_go_server role to setup the project's go server]]></message>
16
+ <file name="lib/go_saas_trigger/node.rb" action="modified"/>
17
+ <file name="test/node_test.rb" action="modified"/>
18
+ </changeset>
19
+ </modifications>
20
+ </material>
21
+ </materials>
22
+ <stages>
23
+ <stage href="http://go-server.2.project:8153/go/api/stages/7.xml"/>
24
+ <stage href="http://go-server.2.project:8153/go/api/stages/8.xml"/>
25
+ </stages>
26
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
27
+ </pipeline>
@@ -0,0 +1,33 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <pipeline name="defaultPipeline" counter="5" label="5">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/5.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:5]]></id>
6
+ <link rel="insertedAfter" href="http://go-server.2.project:8153/go/api/pipelines/defaultPipeline/4.xml"/>
7
+ <scheduleTime>2012-10-29T08:08:08Z</scheduleTime>
8
+ <materials>
9
+ <material materialUri="http://go-server.2.project:8153/go/api/materials/1.xml" type="GitMaterial" url="git://go-saas-worker.2.project/ThoughtWorksInc/go_saas_trigger" branch="master">
10
+ <modifications>
11
+ <changeset changesetUri="http://go-server.2.project:8153/go/api/materials/1/changeset/53fd6b7cc1d95f8d198b3e52fc0f3755e12ff0de.xml">
12
+ <user><![CDATA[Ketan Padegaonkar <KetanPadegaonkar@gmail.com>]]></user>
13
+ <checkinTime>2012-10-29T08:07:53Z</checkinTime>
14
+ <revision><![CDATA[53fd6b7cc1d95f8d198b3e52fc0f3755e12ff0de]]></revision>
15
+ <message><![CDATA[Merge branch 'master' of github.com:ThoughtWorksInc/go_saas_trigger]]></message>
16
+ </changeset>
17
+ <changeset changesetUri="http://go-server.2.project:8153/go/api/materials/1/changeset/a9f3c5aa0c2ddd7601dfe81f6a8970de51f63bd1.xml">
18
+ <user><![CDATA[Ketan Padegaonkar <KetanPadegaonkar@gmail.com>]]></user>
19
+ <checkinTime>2012-10-29T08:07:32Z</checkinTime>
20
+ <revision><![CDATA[a9f3c5aa0c2ddd7601dfe81f6a8970de51f63bd1]]></revision>
21
+ <message><![CDATA[Tweak the config files for running on vagrant]]></message>
22
+ <file name="config/app_config.yml" action="modified"/>
23
+ <file name="config/database.yml" action="modified"/>
24
+ </changeset>
25
+ </modifications>
26
+ </material>
27
+ </materials>
28
+ <stages>
29
+ <stage href="http://go-server.2.project:8153/go/api/stages/9.xml"/>
30
+ <stage href="http://go-server.2.project:8153/go/api/stages/10.xml"/>
31
+ </stages>
32
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
33
+ </pipeline>
@@ -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>