teamcity-rest-client 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "rspec", ">= 2.3.0"
10
+ gem "bundler", "~> 1.0.0"
11
+ gem "jeweler", "~> 1.6.4"
12
+ gem "rcov", ">= 0"
13
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,28 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ diff-lcs (1.1.3)
5
+ git (1.2.5)
6
+ jeweler (1.6.4)
7
+ bundler (~> 1.0)
8
+ git (>= 1.2.5)
9
+ rake
10
+ rake (0.9.2)
11
+ rcov (0.9.11)
12
+ rspec (2.7.0)
13
+ rspec-core (~> 2.7.0)
14
+ rspec-expectations (~> 2.7.0)
15
+ rspec-mocks (~> 2.7.0)
16
+ rspec-core (2.7.1)
17
+ rspec-expectations (2.7.0)
18
+ diff-lcs (~> 1.1.2)
19
+ rspec-mocks (2.7.0)
20
+
21
+ PLATFORMS
22
+ ruby
23
+
24
+ DEPENDENCIES
25
+ bundler (~> 1.0.0)
26
+ jeweler (~> 1.6.4)
27
+ rcov
28
+ rspec (>= 2.3.0)
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 simon
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,19 @@
1
+ = teamcity-rest-client
2
+
3
+ Teamcity rest api client (readonly)
4
+
5
+ == Contributing to teamcity-rest-client
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
9
+ * Fork the project
10
+ * Start a feature/bugfix branch
11
+ * Commit and push until you are happy with your contribution
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2011 simon. See LICENSE.txt for
18
+ further details.
19
+
data/Rakefile ADDED
@@ -0,0 +1,49 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "teamcity-rest-client"
18
+ gem.homepage = "http://github.com/simojenki/teamcity-rest-client"
19
+ gem.license = "MIT"
20
+ gem.summary = "Teamcity rest api client (readonly)"
21
+ gem.description = "Teamcity rest api client (readonly)"
22
+ gem.email = "simojenki@gmail.com"
23
+ gem.authors = ["simon"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
35
+ spec.pattern = 'spec/**/*_spec.rb'
36
+ spec.rcov = true
37
+ end
38
+
39
+ task :default => :spec
40
+
41
+ require 'rake/rdoctask'
42
+ Rake::RDocTask.new do |rdoc|
43
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
44
+
45
+ rdoc.rdoc_dir = 'rdoc'
46
+ rdoc.title = "teamcity-rest-client #{version}"
47
+ rdoc.rdoc_files.include('README*')
48
+ rdoc.rdoc_files.include('lib/**/*.rb')
49
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
@@ -0,0 +1,83 @@
1
+ require 'open-uri'
2
+ require 'rexml/document'
3
+ require 'set'
4
+
5
+ module TeamcityRestClient
6
+
7
+ Project = Struct.new(:teamcity, :name, :id, :href) do
8
+ def build_types
9
+ teamcity.build_types.find_all { |bt| bt.project_id == id }
10
+ end
11
+
12
+ def builds
13
+ bt_ids = Set.new(build_types.collect(&:id))
14
+ teamcity.builds.find_all { |b| bt_ids.include? b.build_type_id }
15
+ end
16
+ end
17
+
18
+ BuildType = Struct.new(:id, :name, :href, :project_name, :project_id, :web_url)
19
+
20
+ Build = Struct.new(:id, :number, :status, :build_type_id, :start_date, :href, :web_url) do
21
+ def success?
22
+ status == :SUCCESS
23
+ end
24
+ end
25
+
26
+ end
27
+
28
+ class REXML::Element
29
+ def att name
30
+ attribute(name).value
31
+ end
32
+ end
33
+
34
+ class Teamcity
35
+
36
+ attr_reader :host, :port, :user, :password
37
+
38
+ def initialize host, port, user = nil, password = nil
39
+ @host, @port, @user, @password = host, port, user, password
40
+ end
41
+
42
+ def project spec
43
+ field = spec =~ /project\d+/ ? :id : :name
44
+ project = projects.find { |p| p.send(field) == spec }
45
+ raise "Sorry, cannot find project with name or id '#{spec}'" unless project
46
+ project
47
+ end
48
+
49
+ def projects
50
+ doc(get(url('/app/rest/projects'))).elements.collect('//project') do |e|
51
+ TeamcityRestClient::Project.new(self, e.att("name"), e.att("id"), url(e.att("href")))
52
+ end
53
+ end
54
+
55
+ def build_types
56
+ doc(get(url('/app/rest/buildTypes'))).elements.collect('//buildType') do |e|
57
+ TeamcityRestClient::BuildType.new(e.att("id"), e.att("name"), url(e.att("href")), e.att('projectName'), e.att('projectId'), e.att('webUrl'))
58
+ end
59
+ end
60
+
61
+ def builds
62
+ doc(get(url('/app/rest/builds')).gsub(/&buildTypeId/,'&buildTypeId')).elements.collect('//build') do |e|
63
+ TeamcityRestClient::Build.new(e.att('id'), e.att('number'), e.att('status').to_sym, e.att('buildTypeId'), e.att('startDate'), url(e.att('href')), e.att('webUrl'))
64
+ end
65
+ end
66
+
67
+ def url path
68
+ if user != nil && password != nil
69
+ "http://#{user}:#{password}@#{host}:#{port}#{path}"
70
+ else
71
+ "http://#{host}:#{port}#{path}"
72
+ end
73
+ end
74
+
75
+ private
76
+ def doc string
77
+ REXML::Document.new string
78
+ end
79
+
80
+ def get url
81
+ open(url).read
82
+ end
83
+ end
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?><buildTypes><buildType id="bt297" name="Build" href="/app/rest/buildTypes/id:bt297" projectName="Amazon API client" projectId="project54" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt297"/><buildType id="bt296" name="Download missing jar" href="/app/rest/buildTypes/id:bt296" projectName="Amazon API client" projectId="project54" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt296"/><buildType id="bt298" name="maragogype" href="/app/rest/buildTypes/id:bt298" projectName="Amazon API client" projectId="project54" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt298"/><buildType id="bt132" name="Checkstyle" href="/app/rest/buildTypes/id:bt132" projectName="Apache Ant" projectId="project28" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt132"/><buildType id="bt134" name="Core Trunk (Linux)" href="/app/rest/buildTypes/id:bt134" projectName="Apache Ant" projectId="project28" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt134"/><buildType id="bt135" name="Core Trunk (MacOS)" href="/app/rest/buildTypes/id:bt135" projectName="Apache Ant" projectId="project28" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt135"/><buildType id="bt133" name="Core Trunk (Windows)" href="/app/rest/buildTypes/id:bt133" projectName="Apache Ant" projectId="project28" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt133"/><buildType id="bt130" name="Distribution" href="/app/rest/buildTypes/id:bt130" projectName="Apache Ant" projectId="project28" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt130"/><buildType id="bt136" name="Findbugs" href="/app/rest/buildTypes/id:bt136" projectName="Apache Ant" projectId="project28" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt136"/><buildType id="bt131" name="JavaDoc" href="/app/rest/buildTypes/id:bt131" projectName="Apache Ant" projectId="project28" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt131"/><buildType id="bt126" name="Core 2.0.x" href="/app/rest/buildTypes/id:bt126" projectName="Apache Ivy" projectId="project27" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt126"/><buildType id="bt125" name="Core Trunk" href="/app/rest/buildTypes/id:bt125" projectName="Apache Ivy" projectId="project27" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt125"/><buildType id="bt127" name="Core Trunk - Checkstyle" href="/app/rest/buildTypes/id:bt127" projectName="Apache Ivy" projectId="project27" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt127"/><buildType id="bt128" name="Core Trunk - Distribution" href="/app/rest/buildTypes/id:bt128" projectName="Apache Ivy" projectId="project27" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt128"/><buildType id="bt208" name="Release" href="/app/rest/buildTypes/id:bt208" projectName="Artifactory Plugin for TeamCity" projectId="project35" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt208"/><buildType id="bt206" name="Trunk" href="/app/rest/buildTypes/id:bt206" projectName="Artifactory Plugin for TeamCity" projectId="project35" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt206"/><buildType id="bt212" name="Gem Package" href="/app/rest/buildTypes/id:bt212" projectName="Bundler" projectId="project37" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt212"/><buildType id="bt209" name="Specs [ruby-1.8.7-p302]" href="/app/rest/buildTypes/id:bt209" projectName="Bundler" projectId="project37" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt209"/><buildType id="bt213" name="Specs [ruby-1.9.2-p0]" href="/app/rest/buildTypes/id:bt213" projectName="Bundler" projectId="project37" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt213"/><buildType id="bt218" name="Cucumber gem: cucumber tests [Linux, ruby-1.8.7-p302]" href="/app/rest/buildTypes/id:bt218" projectName="Cucumber" projectId="project39" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt218"/><buildType id="bt219" name="Cucumber gem: cucumber tests [Linux, ruby-1.9.2-p0]" href="/app/rest/buildTypes/id:bt219" projectName="Cucumber" projectId="project39" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt219"/><buildType id="bt220" name="Cucumber gem: spec tests [Linux, ruby-1.8.7-p302]" href="/app/rest/buildTypes/id:bt220" projectName="Cucumber" projectId="project39" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt220"/><buildType id="bt221" name="Cucumber gem: spec tests [Linux, ruby-1.9.2-p0]" href="/app/rest/buildTypes/id:bt221" projectName="Cucumber" projectId="project39" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt221"/><buildType id="bt308" name="BuildDist" href="/app/rest/buildTypes/id:bt308" projectName="Genome Query" projectId="project46" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt308"/><buildType id="bt266" name="Code Duplicates" href="/app/rest/buildTypes/id:bt266" projectName="Genome Query" projectId="project46" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt266"/><buildType id="bt265" name="Code Inspections" href="/app/rest/buildTypes/id:bt265" projectName="Genome Query" projectId="project46" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt265"/><buildType id="bt260" name="Unit Tests" href="/app/rest/buildTypes/id:bt260" projectName="Genome Query" projectId="project46" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt260"/><buildType id="bt302" name="Unit Tests (gq0.1 branch)" href="/app/rest/buildTypes/id:bt302" projectName="Genome Query" projectId="project46" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt302"/><buildType id="bt15" name="Build Trunk" href="/app/rest/buildTypes/id:bt15" projectName="Google Web Toolkit" projectId="project14" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt15"/><buildType id="bt17" name="Tests" href="/app/rest/buildTypes/id:bt17" projectName="Google Web Toolkit" projectId="project14" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt17"/><buildType id="bt184" name="Tests (Coverage)" href="/app/rest/buildTypes/id:bt184" projectName="Google Web Toolkit" projectId="project14" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt184"/><buildType id="bt113" name="Release Branch (Windows)" href="/app/rest/buildTypes/id:bt113" projectName="Gradle" projectId="project22" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt113"/><buildType id="bt107" name="Trunk (Linux)" href="/app/rest/buildTypes/id:bt107" projectName="Gradle" projectId="project22" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt107"/><buildType id="bt41" name="Trunk (Windows)" href="/app/rest/buildTypes/id:bt41" projectName="Gradle" projectId="project22" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt41"/><buildType id="bt10" name="Core (Linux)" href="/app/rest/buildTypes/id:bt10" projectName="Groovy" projectId="project12" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt10"/><buildType id="bt109" name="Core (Windows)" href="/app/rest/buildTypes/id:bt109" projectName="Groovy" projectId="project12" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt109"/><buildType id="bt185" name="Coverage" href="/app/rest/buildTypes/id:bt185" projectName="Groovy" projectId="project12" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt185"/><buildType id="bt299" name="Build" href="/app/rest/buildTypes/id:bt299" projectName="IdeaVIM" projectId="project55" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt299"/><buildType id="bt111" name="TeamCity 3.1.1" href="/app/rest/buildTypes/id:bt111" projectName="JetBrains Dependency Retrieve" projectId="project24" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt111"/><buildType id="bt119" name="TeamCity 4.0.x branch" href="/app/rest/buildTypes/id:bt119" projectName="JetBrains Dependency Retrieve" projectId="project24" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt119"/><buildType id="bt150" name="TeamCity 4.x" href="/app/rest/buildTypes/id:bt150" projectName="JetBrains Dependency Retrieve" projectId="project24" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt150"/><buildType id="bt176" name="TeamCity 5.0.x" href="/app/rest/buildTypes/id:bt176" projectName="JetBrains Dependency Retrieve" projectId="project24" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt176"/><buildType id="bt201" name="TeamCity 5.x" href="/app/rest/buildTypes/id:bt201" projectName="JetBrains Dependency Retrieve" projectId="project24" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt201"/><buildType id="bt236" name="TeamCity 6.0.x" href="/app/rest/buildTypes/id:bt236" projectName="JetBrains Dependency Retrieve" projectId="project24" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt236"/><buildType id="bt313" name="TeamCity 6.5.x" href="/app/rest/buildTypes/id:bt313" projectName="JetBrains Dependency Retrieve" projectId="project24" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt313"/><buildType id="bt305" name="TeamCity Trunk (EAP releases)" href="/app/rest/buildTypes/id:bt305" projectName="JetBrains Dependency Retrieve" projectId="project24" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt305"/><buildType id="bt156" name="JGit (Windows)" href="/app/rest/buildTypes/id:bt156" projectName="JGit" projectId="project33" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt156"/><buildType id="bt157" name="JGit Tests (Linux)" href="/app/rest/buildTypes/id:bt157" projectName="JGit" projectId="project33" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt157"/><buildType id="bt33" name="JMock 2" href="/app/rest/buildTypes/id:bt33" projectName="JMock 2" projectId="project2" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt33"/><buildType id="bt186" name="JMock 2 (Coverage)" href="/app/rest/buildTypes/id:bt186" projectName="JMock 2" projectId="project2" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt186"/><buildType id="bt32" name="main" href="/app/rest/buildTypes/id:bt32" projectName="joustim" projectId="project6" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt32"/><buildType id="bt100" name="nightly" href="/app/rest/buildTypes/id:bt100" projectName="joustsim" projectId="project7" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt100"/><buildType id="bt25" name="Duplicate code" href="/app/rest/buildTypes/id:bt25" projectName="Juxy" projectId="project16" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt25"/><buildType id="bt24" name="Snapshot" href="/app/rest/buildTypes/id:bt24" projectName="Juxy" projectId="project16" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt24"/><buildType id="bt22" name="Tests" href="/app/rest/buildTypes/id:bt22" projectName="Juxy" projectId="project16" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt22"/><buildType id="bt248" name="Trunk (Linux,Mono 1.0)" href="/app/rest/buildTypes/id:bt248" projectName="NUnit v2" projectId="project45" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt248"/><buildType id="bt247" name="Trunk (Linux,Mono 2.0)" href="/app/rest/buildTypes/id:bt247" projectName="NUnit v2" projectId="project45" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt247"/><buildType id="bt306" name="Trunk (Windows,.NET 1.1)" href="/app/rest/buildTypes/id:bt306" projectName="NUnit v2" projectId="project45" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt306"/><buildType id="bt249" name="Trunk (Windows,.NET 2.0)" href="/app/rest/buildTypes/id:bt249" projectName="NUnit v2" projectId="project45" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt249"/><buildType id="bt246" name="Trunk (Windows,.NET 3.5)" href="/app/rest/buildTypes/id:bt246" projectName="NUnit v2" projectId="project45" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt246"/><buildType id="bt286" name="Trunk (Windows,Mono 2.0)" href="/app/rest/buildTypes/id:bt286" projectName="NUnit v2" projectId="project45" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt286"/><buildType id="bt34" name="Picocontainer 2.x" href="/app/rest/buildTypes/id:bt34" projectName="Picocontainer" projectId="project3" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt34"/><buildType id="bt330" name="debug-intermediate" href="/app/rest/buildTypes/id:bt330" projectName="Ruby-Debug Gem" projectId="project51" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt330"/><buildType id="bt277" name="ruby-debug tests" href="/app/rest/buildTypes/id:bt277" projectName="Ruby-Debug Gem" projectId="project51" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt277"/><buildType id="bt281" name="ruby-debug-base19 gem" href="/app/rest/buildTypes/id:bt281" projectName="Ruby-Debug Gem" projectId="project51" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt281"/><buildType id="bt320" name="ruby-debug-base19 tests" href="/app/rest/buildTypes/id:bt320" projectName="Ruby-Debug Gem" projectId="project51" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt320"/><buildType id="bt279" name="ruby-debug-ide gem" href="/app/rest/buildTypes/id:bt279" projectName="Ruby-Debug Gem" projectId="project51" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt279"/><buildType id="bt282" name="ruby-debug-ide gem (no extensions)" href="/app/rest/buildTypes/id:bt282" projectName="Ruby-Debug Gem" projectId="project51" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt282"/><buildType id="bt278" name="ruby-debug-ide tests (1.8.7)" href="/app/rest/buildTypes/id:bt278" projectName="Ruby-Debug Gem" projectId="project51" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt278"/><buildType id="bt318" name="ruby-debug-ide tests (1.9.2)" href="/app/rest/buildTypes/id:bt318" projectName="Ruby-Debug Gem" projectId="project51" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt318"/><buildType id="bt319" name="ruby-debug-ide tests (jruby)" href="/app/rest/buildTypes/id:bt319" projectName="Ruby-Debug Gem" projectId="project51" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt319"/><buildType id="bt140" name="build" href="/app/rest/buildTypes/id:bt140" projectName="Scala" projectId="project30" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt140"/><buildType id="bt141" name="tests" href="/app/rest/buildTypes/id:bt141" projectName="Scala" projectId="project30" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt141"/><buildType id="bt14" name="Duplicates" href="/app/rest/buildTypes/id:bt14" projectName="Smack" projectId="project8" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt14"/><buildType id="bt4" name="Inspections" href="/app/rest/buildTypes/id:bt4" projectName="Smack" projectId="project8" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt4"/><buildType id="bt19" name="Tests" href="/app/rest/buildTypes/id:bt19" projectName="Spring Framework" projectId="project15" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt19"/><buildType id="bt138" name="Build" href="/app/rest/buildTypes/id:bt138" projectName="TeamCity Accurev Support" projectId="project29" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt138"/><buildType id="bt241" name="C# Compiler plugin part" href="/app/rest/buildTypes/id:bt241" projectName="TeamCity C# runner plugin" projectId="project44" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt241"/><buildType id="bt239" name="C# plugin (against TeamCity 5.x)" href="/app/rest/buildTypes/id:bt239" projectName="TeamCity C# runner plugin" projectId="project44" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt239"/><buildType id="bt240" name="C# plugin (against TeamCity 6.0.x)" href="/app/rest/buildTypes/id:bt240" projectName="TeamCity C# runner plugin" projectId="project44" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt240"/><buildType id="bt321" name="C# plugin (against TeamCity 6.5.x)" href="/app/rest/buildTypes/id:bt321" projectName="TeamCity C# runner plugin" projectId="project44" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt321"/><buildType id="bt329" name="Build (against TeamCity 6.5.x)" href="/app/rest/buildTypes/id:bt329" projectName="TeamCity make plugin" projectId="project61" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt329"/><buildType id="bt328" name="Code Duplicates" href="/app/rest/buildTypes/id:bt328" projectName="TeamCity make plugin" projectId="project61" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt328"/><buildType id="bt327" name="Code Inspection" href="/app/rest/buildTypes/id:bt327" projectName="TeamCity make plugin" projectId="project61" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt327"/><buildType id="bt326" name="Unit Tests" href="/app/rest/buildTypes/id:bt326" projectName="TeamCity make plugin" projectId="project61" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt326"/><buildType id="bt288" name="Android runner (against TeamCity 6.x)" href="/app/rest/buildTypes/id:bt288" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt288"/><buildType id="bt177" name="Autoincrementer (against TeamCity 5.0.x - 6.0.x)" href="/app/rest/buildTypes/id:bt177" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt177"/><buildType id="bt287" name="Autoincrementer (against TeamCity 6.5.x)" href="/app/rest/buildTypes/id:bt287" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt287"/><buildType id="bt205" name="Command Line Tool (against TeamCity 5.0.x)" href="/app/rest/buildTypes/id:bt205" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt205"/><buildType id="bt161" name="Command Line Tool (against TeamCity 5.1.x)" href="/app/rest/buildTypes/id:bt161" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt161"/><buildType id="bt234" name="Command Line Tool (against TeamCity 6.0.x)" href="/app/rest/buildTypes/id:bt234" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt234"/><buildType id="bt314" name="Command Line Tool (against TeamCity 6.5.x)" href="/app/rest/buildTypes/id:bt314" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt314"/><buildType id="bt312" name="Command Line Tool (against TeamCity latest EAP)" href="/app/rest/buildTypes/id:bt312" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt312"/><buildType id="bt303" name="Fool's Day Plugin 2011 (against TeamCity 6.0.x)" href="/app/rest/buildTypes/id:bt303" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt303"/><buildType id="bt175" name="Groovy plug (against TeamCity 4.x)" href="/app/rest/buildTypes/id:bt175" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt175"/><buildType id="bt204" name="Groovy plug (against TeamCity 5.0.x)" href="/app/rest/buildTypes/id:bt204" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt204"/><buildType id="bt151" name="Groovy plug (against TeamCity 5.x)" href="/app/rest/buildTypes/id:bt151" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt151"/><buildType id="bt301" name="Groovy plug 6.0.x branch (against TeamCity 6.0.x)" href="/app/rest/buildTypes/id:bt301" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt301"/><buildType id="bt315" name="Groovy plug 6.5.x branch (against TeamCity 6.5)" href="/app/rest/buildTypes/id:bt315" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt315"/><buildType id="bt316" name="Groovy plug trunk (against TeamCity 7.0 EAP)" href="/app/rest/buildTypes/id:bt316" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt316"/><buildType id="bt152" name="JetBrains Git Plugin (Calcutta-4.5.x branch)" href="/app/rest/buildTypes/id:bt152" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt152"/><buildType id="bt233" name="JetBrains Git Plugin (TeamCity 5.1.x)" href="/app/rest/buildTypes/id:bt233" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt233"/><buildType id="bt245" name="JetBrains Git Plugin (TeamCity 6.x)" href="/app/rest/buildTypes/id:bt245" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt245"/><buildType id="bt121" name="Mercurial SCM Support (TeamCity 3.1, 4.x)" href="/app/rest/buildTypes/id:bt121" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt121"/><buildType id="bt193" name="Mercurial SCM Support (TeamCity 5.0.x)" href="/app/rest/buildTypes/id:bt193" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt193"/><buildType id="bt242" name="Mercurial SCM Support (TeamCity 6.x)" href="/app/rest/buildTypes/id:bt242" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt242"/><buildType id="bt276" name="Meta-runner (against TeamCity 6.x)" href="/app/rest/buildTypes/id:bt276" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt276"/><buildType id="bt324" name="NuGet Support" href="/app/rest/buildTypes/id:bt324" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt324"/><buildType id="bt280" name="OpenID Login (against TeamCity 6.x)" href="/app/rest/buildTypes/id:bt280" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt280"/><buildType id="bt268" name="Powershell runner (against TeamCity 6.x)" href="/app/rest/buildTypes/id:bt268" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt268"/><buildType id="bt231" name="Priority queue" href="/app/rest/buildTypes/id:bt231" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt231"/><buildType id="bt271" name="Priority queue 6.0.x" href="/app/rest/buildTypes/id:bt271" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt271"/><buildType id="bt332" name="RunAs (TeamCity 6.5.3 and above)" href="/app/rest/buildTypes/id:bt332" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt332"/><buildType id="bt270" name="Scripted Properties (against TeamCity last EAP)" href="/app/rest/buildTypes/id:bt270" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt270"/><buildType id="bt120" name="Server Profiling Plugin (against TeamCity 4.x)" href="/app/rest/buildTypes/id:bt120" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt120"/><buildType id="bt194" name="Server Profiling Plugin (against TeamCity 5.x)" href="/app/rest/buildTypes/id:bt194" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt194"/><buildType id="bt262" name="Server Profiling Plugin (against TeamCity 6.x)" href="/app/rest/buildTypes/id:bt262" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt262"/><buildType id="bt180" name="Swabra (4.5.x branch against TeamCity 4.5.x)" href="/app/rest/buildTypes/id:bt180" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt180"/><buildType id="bt153" name="Swabra (5.0.x branch against TeamCity 5.0.x)" href="/app/rest/buildTypes/id:bt153" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt153"/><buildType id="bt203" name="Swabra (trunk against TeamCity 5.x)" href="/app/rest/buildTypes/id:bt203" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt203"/><buildType id="bt272" name="Url Build Trigger (TeamCity 6.x)" href="/app/rest/buildTypes/id:bt272" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt272"/><buildType id="bt165" name="Vault (trunk against TeamCity 6.0.x)" href="/app/rest/buildTypes/id:bt165" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt165"/><buildType id="bt304" name="VMWare plugin (on 6.x)" href="/app/rest/buildTypes/id:bt304" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt304"/><buildType id="bt143" name="XML test reporting (against TeamCity 4.5.x)" href="/app/rest/buildTypes/id:bt143" projectName="TeamCity Plugins by JetBrains" projectId="project25" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt143"/><buildType id="bt144" name="Ruby Dependency Retrieve" href="/app/rest/buildTypes/id:bt144" projectName="Teamcity Rake Runner" projectId="project21" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt144"/><buildType id="bt40" name="Version 1.5 : build" href="/app/rest/buildTypes/id:bt40" projectName="Teamcity Rake Runner" projectId="project21" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt40"/><buildType id="bt217" name="Bundler Project: spec tests [Linux, ruby-1.8.7-p249]" href="/app/rest/buildTypes/id:bt217" projectName="TeamCity Rake Runner Demo" projectId="project23" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt217"/><buildType id="bt145" name="Gal Project: Test::Unit tests [Linux]" href="/app/rest/buildTypes/id:bt145" projectName="TeamCity Rake Runner Demo" projectId="project23" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt145"/><buildType id="bt101" name="RSpec Project (svn) : spec examples [Windows]" href="/app/rest/buildTypes/id:bt101" projectName="TeamCity Rake Runner Demo" projectId="project23" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt101"/><buildType id="bt222" name="RSpec Project: cucumber tests [Linux, ruby-1.8.7-p249]" href="/app/rest/buildTypes/id:bt222" projectName="TeamCity Rake Runner Demo" projectId="project23" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt222"/><buildType id="bt224" name="RSpec Project: cucumber tests [Linux, ruby-1.9.1-p378]" href="/app/rest/buildTypes/id:bt224" projectName="TeamCity Rake Runner Demo" projectId="project23" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt224"/><buildType id="bt225" name="RSpec Project: spec tests [Linux, ruby-1.8.7-p249]" href="/app/rest/buildTypes/id:bt225" projectName="TeamCity Rake Runner Demo" projectId="project23" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt225"/><buildType id="bt226" name="RSpec Project: spec tests [Linux, ruby-1.9.1-p378]" href="/app/rest/buildTypes/id:bt226" projectName="TeamCity Rake Runner Demo" projectId="project23" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt226"/><buildType id="bt149" name="Tento Project: spec Examples [Linux]" href="/app/rest/buildTypes/id:bt149" projectName="TeamCity Rake Runner Demo" projectId="project23" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt149"/><buildType id="bt307" name="Build (against TeamCity 6.0.x)" href="/app/rest/buildTypes/id:bt307" projectName="TeamCity Redmine plugin" projectId="project56" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt307"/><buildType id="bt273" name="C# Tfs wrapper" href="/app/rest/buildTypes/id:bt273" projectName="TeamCity TFS Issue Tracker integration plugin" projectId="project50" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt273"/><buildType id="bt275" name="Tfs issue tracker plugin (against TeamCity 6.0.x)" href="/app/rest/buildTypes/id:bt275" projectName="TeamCity TFS Issue Tracker integration plugin" projectId="project50" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt275"/><buildType id="bt325" name="Tfs issue tracker plugin (against TeamCity 6.5.x)" href="/app/rest/buildTypes/id:bt325" projectName="TeamCity TFS Issue Tracker integration plugin" projectId="project50" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt325"/><buildType id="bt5" name="Tests" href="/app/rest/buildTypes/id:bt5" projectName="TestNG" projectId="project9" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt5"/><buildType id="bt187" name="TestNG - Coverage" href="/app/rest/buildTypes/id:bt187" projectName="TestNG Test Project" projectId="project20" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt187"/><buildType id="bt37" name="TestNG - Duplicates" href="/app/rest/buildTypes/id:bt37" projectName="TestNG Test Project" projectId="project20" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt37"/><buildType id="bt38" name="TestNG - Inspections" href="/app/rest/buildTypes/id:bt38" projectName="TestNG Test Project" projectId="project20" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt38"/><buildType id="bt39" name="TestNG - Maven build" href="/app/rest/buildTypes/id:bt39" projectName="TestNG Test Project" projectId="project20" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt39"/><buildType id="bt36" name="TestNG - Tests" href="/app/rest/buildTypes/id:bt36" projectName="TestNG Test Project" projectId="project20" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt36"/><buildType id="bt190" name="tcBuildInvoker" href="/app/rest/buildTypes/id:bt190" projectName="WebHooks and other plugins" projectId="project32" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt190"/><buildType id="bt191" name="tcBuildInvoker - TC4.5.3" href="/app/rest/buildTypes/id:bt191" projectName="WebHooks and other plugins" projectId="project32" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt191"/><buildType id="bt192" name="tcBuildInvoker - TC4.5.4" href="/app/rest/buildTypes/id:bt192" projectName="WebHooks and other plugins" projectId="project32" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt192"/><buildType id="bt195" name="tcCoberturaStatsPrinter" href="/app/rest/buildTypes/id:bt195" projectName="WebHooks and other plugins" projectId="project32" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt195"/><buildType id="bt155" name="tcMonitor" href="/app/rest/buildTypes/id:bt155" projectName="WebHooks and other plugins" projectId="project32" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt155"/><buildType id="bt167" name="tcMonitor - TC4.5.6" href="/app/rest/buildTypes/id:bt167" projectName="WebHooks and other plugins" projectId="project32" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt167"/><buildType id="bt168" name="tcMonitor - TC5.0.1" href="/app/rest/buildTypes/id:bt168" projectName="WebHooks and other plugins" projectId="project32" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt168"/><buildType id="bt159" name="tcPrettyEmail" href="/app/rest/buildTypes/id:bt159" projectName="WebHooks and other plugins" projectId="project32" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt159"/><buildType id="bt163" name="tcPrettyEmail - TC4.5.6" href="/app/rest/buildTypes/id:bt163" projectName="WebHooks and other plugins" projectId="project32" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt163"/><buildType id="bt164" name="tcPrettyEmail - TC5.0.1" href="/app/rest/buildTypes/id:bt164" projectName="WebHooks and other plugins" projectId="project32" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt164"/><buildType id="bt154" name="tcWebHooks" href="/app/rest/buildTypes/id:bt154" projectName="WebHooks and other plugins" projectId="project32" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt154"/><buildType id="bt158" name="tcWebHooks - branch 0.7.x.x" href="/app/rest/buildTypes/id:bt158" projectName="WebHooks and other plugins" projectId="project32" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt158"/><buildType id="bt174" name="tcWebHooks - branch 0.8.x.x" href="/app/rest/buildTypes/id:bt174" projectName="WebHooks and other plugins" projectId="project32" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt174"/><buildType id="bt31" name="XStream" href="/app/rest/buildTypes/id:bt31" projectName="XStream" projectId="project4" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt31"/></buildTypes>
@@ -0,0 +1,201 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?><builds nextHref="/app/rest/builds?count=100&amp;start=100"
2
+ count="100"><build id="56264" number="126" status="FAILURE" buildTypeId="bt212" startDate="20111021T123714+0400"
3
+ href="/app/rest/builds/id:56264" webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56264&buildTypeId=bt212"/><build
4
+ id="56262" number="568" status="FAILURE" buildTypeId="bt213" startDate="20111021T120639+0400" href="/app/rest/builds/id:56262"
5
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56262&buildTypeId=bt213"/><build id="56261" number="612"
6
+ status="FAILURE" buildTypeId="bt209" startDate="20111021T120439+0400" href="/app/rest/builds/id:56261"
7
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56261&buildTypeId=bt209"/><build id="56260" number="1638"
8
+ status="FAILURE" buildTypeId="bt22" startDate="20111021T101454+0400" href="/app/rest/builds/id:56260"
9
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56260&buildTypeId=bt22"/><build id="56259" number="1613"
10
+ status="FAILURE" buildTypeId="bt24" startDate="20111021T101432+0400" href="/app/rest/builds/id:56259"
11
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56259&buildTypeId=bt24"/><build id="56258" number="673"
12
+ status="FAILURE" buildTypeId="bt184" startDate="20111021T101156+0400" href="/app/rest/builds/id:56258"
13
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56258&buildTypeId=bt184"/><build id="56254" number="2854"
14
+ status="FAILURE" buildTypeId="bt17" startDate="20111021T050050+0400" href="/app/rest/builds/id:56254"
15
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56254&buildTypeId=bt17"/><build id="56252" number="4034"
16
+ status="SUCCESS" buildTypeId="bt15" startDate="20111021T044648+0400" href="/app/rest/builds/id:56252"
17
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56252&buildTypeId=bt15"/><build id="56250" number="2557"
18
+ status="SUCCESS" buildTypeId="bt41" startDate="20111021T011303+0400" href="/app/rest/builds/id:56250"
19
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56250&buildTypeId=bt41"/><build id="56249" number="2326"
20
+ status="FAILURE" buildTypeId="bt107" startDate="20111021T010015+0400" href="/app/rest/builds/id:56249"
21
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56249&buildTypeId=bt107"/><build id="56247" number="2853"
22
+ status="FAILURE" buildTypeId="bt17" startDate="20111020T234039+0400" href="/app/rest/builds/id:56247"
23
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56247&buildTypeId=bt17"/><build id="56246" number="567"
24
+ status="FAILURE" buildTypeId="bt213" startDate="20111020T233834+0400" href="/app/rest/builds/id:56246"
25
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56246&buildTypeId=bt213"/><build id="56245" number="4033"
26
+ status="SUCCESS" buildTypeId="bt15" startDate="20111020T232617+0400" href="/app/rest/builds/id:56245"
27
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56245&buildTypeId=bt15"/><build id="56244" number="611"
28
+ status="FAILURE" buildTypeId="bt209" startDate="20111020T232154+0400" href="/app/rest/builds/id:56244"
29
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56244&buildTypeId=bt209"/><build id="56241" number="2852"
30
+ status="FAILURE" buildTypeId="bt17" startDate="20111020T213101+0400" href="/app/rest/builds/id:56241"
31
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56241&buildTypeId=bt17"/><build id="56239" number="4032"
32
+ status="SUCCESS" buildTypeId="bt15" startDate="20111020T211422+0400" href="/app/rest/builds/id:56239"
33
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56239&buildTypeId=bt15"/><build id="56232" number="2556"
34
+ status="SUCCESS" buildTypeId="bt41" startDate="20111020T195607+0400" href="/app/rest/builds/id:56232"
35
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56232&buildTypeId=bt41"/><build id="56231" number="2325"
36
+ status="FAILURE" buildTypeId="bt107" startDate="20111020T190024+0400" href="/app/rest/builds/id:56231"
37
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56231&buildTypeId=bt107"/><build id="56229" number="2324"
38
+ status="FAILURE" buildTypeId="bt107" startDate="20111020T160738+0400" href="/app/rest/builds/id:56229"
39
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56229&buildTypeId=bt107"/><build id="56228" number="125"
40
+ status="FAILURE" buildTypeId="bt212" startDate="20111020T123658+0400" href="/app/rest/builds/id:56228"
41
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56228&buildTypeId=bt212"/><build id="56227" number="566"
42
+ status="FAILURE" buildTypeId="bt213" startDate="20111020T121311+0400" href="/app/rest/builds/id:56227"
43
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56227&buildTypeId=bt213"/><build id="56226" number="610"
44
+ status="FAILURE" buildTypeId="bt209" startDate="20111020T120019+0400" href="/app/rest/builds/id:56226"
45
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56226&buildTypeId=bt209"/><build id="56225" number="2323"
46
+ status="FAILURE" buildTypeId="bt107" startDate="20111020T110019+0400" href="/app/rest/builds/id:56225"
47
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56225&buildTypeId=bt107"/><build id="56223" number="1637"
48
+ status="FAILURE" buildTypeId="bt22" startDate="20111020T103347+0400" href="/app/rest/builds/id:56223"
49
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56223&buildTypeId=bt22"/><build id="56222" number="1612"
50
+ status="FAILURE" buildTypeId="bt24" startDate="20111020T103140+0400" href="/app/rest/builds/id:56222"
51
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56222&buildTypeId=bt24"/><build id="56221" number="672"
52
+ status="FAILURE" buildTypeId="bt184" startDate="20111020T100617+0400" href="/app/rest/builds/id:56221"
53
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56221&buildTypeId=bt184"/><build id="56220" number="41"
54
+ status="SUCCESS" buildTypeId="bt277" startDate="20111020T064111+0400" href="/app/rest/builds/id:56220"
55
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56220&buildTypeId=bt277"/><build id="56219" number="2851"
56
+ status="FAILURE" buildTypeId="bt17" startDate="20111020T054951+0400" href="/app/rest/builds/id:56219"
57
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56219&buildTypeId=bt17"/><build id="56217" number="4031"
58
+ status="SUCCESS" buildTypeId="bt15" startDate="20111020T052105+0400" href="/app/rest/builds/id:56217"
59
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56217&buildTypeId=bt15"/><build id="56216" number="2322"
60
+ status="SUCCESS" buildTypeId="bt107" startDate="20111020T020656+0400" href="/app/rest/builds/id:56216"
61
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56216&buildTypeId=bt107"/><build id="56215" number="1040"
62
+ status="ERROR" buildTypeId="bt31" startDate="20111020T014551+0400" href="/app/rest/builds/id:56215"
63
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56215&buildTypeId=bt31"/><build id="56213" number="2555"
64
+ status="SUCCESS" buildTypeId="bt41" startDate="20111020T010021+0400" href="/app/rest/builds/id:56213"
65
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56213&buildTypeId=bt41"/><build id="56210" number="2554"
66
+ status="SUCCESS" buildTypeId="bt41" startDate="20111020T001202+0400" href="/app/rest/builds/id:56210"
67
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56210&buildTypeId=bt41"/><build id="56209" number="2321"
68
+ status="FAILURE" buildTypeId="bt107" startDate="20111020T000013+0400" href="/app/rest/builds/id:56209"
69
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56209&buildTypeId=bt107"/><build id="56206" number="2320"
70
+ status="FAILURE" buildTypeId="bt107" startDate="20111019T224141+0400" href="/app/rest/builds/id:56206"
71
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56206&buildTypeId=bt107"/><build id="56204" number="1.5.4699"
72
+ status="ERROR" buildTypeId="bt40" startDate="20111019T221313+0400" href="/app/rest/builds/id:56204"
73
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56204&buildTypeId=bt40"/><build id="56203" number="2850"
74
+ status="FAILURE" buildTypeId="bt17" startDate="20111019T215218+0400" href="/app/rest/builds/id:56203"
75
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56203&buildTypeId=bt17"/><build id="56202" number="4030"
76
+ status="SUCCESS" buildTypeId="bt15" startDate="20111019T213517+0400" href="/app/rest/builds/id:56202"
77
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56202&buildTypeId=bt15"/><build id="56201" number="2553"
78
+ status="SUCCESS" buildTypeId="bt41" startDate="20111019T210010+0400" href="/app/rest/builds/id:56201"
79
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56201&buildTypeId=bt41"/><build id="56200" number="2319"
80
+ status="FAILURE" buildTypeId="bt107" startDate="20111019T200521+0400" href="/app/rest/builds/id:56200"
81
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56200&buildTypeId=bt107"/><build id="56199" number="2552"
82
+ status="FAILURE" buildTypeId="bt41" startDate="20111019T191216+0400" href="/app/rest/builds/id:56199"
83
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56199&buildTypeId=bt41"/><build id="56198" number="2318"
84
+ status="FAILURE" buildTypeId="bt107" startDate="20111019T190612+0400" href="/app/rest/builds/id:56198"
85
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56198&buildTypeId=bt107"/><build id="56197" number="snapshot-98"
86
+ status="SUCCESS" buildTypeId="bt245" startDate="20111019T144033+0400" href="/app/rest/builds/id:56197"
87
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56197&buildTypeId=bt245"/><build id="56193" number="2317"
88
+ status="FAILURE" buildTypeId="bt107" startDate="20111019T131720+0400" href="/app/rest/builds/id:56193"
89
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56193&buildTypeId=bt107"/><build id="56192" number="2551"
90
+ status="FAILURE" buildTypeId="bt41" startDate="20111019T130015+0400" href="/app/rest/builds/id:56192"
91
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56192&buildTypeId=bt41"/><build id="56191" number="565"
92
+ status="FAILURE" buildTypeId="bt213" startDate="20111019T125149+0400" href="/app/rest/builds/id:56191"
93
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56191&buildTypeId=bt213"/><build id="56190" number="609"
94
+ status="FAILURE" buildTypeId="bt209" startDate="20111019T123807+0400" href="/app/rest/builds/id:56190"
95
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56190&buildTypeId=bt209"/><build id="56189" number="2316"
96
+ status="FAILURE" buildTypeId="bt107" startDate="20111019T121747+0400" href="/app/rest/builds/id:56189"
97
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56189&buildTypeId=bt107"/><build id="56187" number="2550"
98
+ status="SUCCESS" buildTypeId="bt41" startDate="20111019T121241+0400" href="/app/rest/builds/id:56187"
99
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56187&buildTypeId=bt41"/><build id="56186" number="2549"
100
+ status="FAILURE" buildTypeId="bt41" startDate="20111019T110046+0400" href="/app/rest/builds/id:56186"
101
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56186&buildTypeId=bt41"/><build id="56185" number="135"
102
+ status="SUCCESS" buildTypeId="bt113" startDate="20111019T105957+0400" href="/app/rest/builds/id:56185"
103
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56185&buildTypeId=bt113"/><build id="56183" number="1636"
104
+ status="FAILURE" buildTypeId="bt22" startDate="20111019T103021+0400" href="/app/rest/builds/id:56183"
105
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56183&buildTypeId=bt22"/><build id="56182" number="1611"
106
+ status="FAILURE" buildTypeId="bt24" startDate="20111019T102917+0400" href="/app/rest/builds/id:56182"
107
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56182&buildTypeId=bt24"/><build id="56181" number="671"
108
+ status="FAILURE" buildTypeId="bt184" startDate="20111019T101233+0400" href="/app/rest/builds/id:56181"
109
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56181&buildTypeId=bt184"/><build id="56180" number="2548"
110
+ status="SUCCESS" buildTypeId="bt41" startDate="20111019T091419+0400" href="/app/rest/builds/id:56180"
111
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56180&buildTypeId=bt41"/><build id="56179" number="134"
112
+ status="SUCCESS" buildTypeId="bt113" startDate="20111019T091411+0400" href="/app/rest/builds/id:56179"
113
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56179&buildTypeId=bt113"/><build id="56178" number="2315"
114
+ status="FAILURE" buildTypeId="bt107" startDate="20111019T090507+0400" href="/app/rest/builds/id:56178"
115
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56178&buildTypeId=bt107"/><build id="56177" number="2547"
116
+ status="SUCCESS" buildTypeId="bt41" startDate="20111019T080002+0400" href="/app/rest/builds/id:56177"
117
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56177&buildTypeId=bt41"/><build id="56176" number="2314"
118
+ status="FAILURE" buildTypeId="bt107" startDate="20111019T080001+0400" href="/app/rest/builds/id:56176"
119
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56176&buildTypeId=bt107"/><build id="56171" number="1039"
120
+ status="ERROR" buildTypeId="bt31" startDate="20111019T045751+0400" href="/app/rest/builds/id:56171"
121
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56171&buildTypeId=bt31"/><build id="56170" number="2546"
122
+ status="SUCCESS" buildTypeId="bt41" startDate="20111019T041034+0400" href="/app/rest/builds/id:56170"
123
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56170&buildTypeId=bt41"/><build id="56168" number="2313"
124
+ status="FAILURE" buildTypeId="bt107" startDate="20111019T040937+0400" href="/app/rest/builds/id:56168"
125
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56168&buildTypeId=bt107"/><build id="56166" number="2849"
126
+ status="FAILURE" buildTypeId="bt17" startDate="20111019T022859+0400" href="/app/rest/builds/id:56166"
127
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56166&buildTypeId=bt17"/><build id="56165" number="4029"
128
+ status="SUCCESS" buildTypeId="bt15" startDate="20111019T015845+0400" href="/app/rest/builds/id:56165"
129
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56165&buildTypeId=bt15"/><build id="56164" number="2848"
130
+ status="FAILURE" buildTypeId="bt17" startDate="20111019T012335+0400" href="/app/rest/builds/id:56164"
131
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56164&buildTypeId=bt17"/><build id="56163" number="4028"
132
+ status="SUCCESS" buildTypeId="bt15" startDate="20111019T011033+0400" href="/app/rest/builds/id:56163"
133
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56163&buildTypeId=bt15"/><build id="56162" number="2847"
134
+ status="FAILURE" buildTypeId="bt17" startDate="20111019T000800+0400" href="/app/rest/builds/id:56162"
135
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56162&buildTypeId=bt17"/><build id="56161" number="4027"
136
+ status="SUCCESS" buildTypeId="bt15" startDate="20111018T235256+0400" href="/app/rest/builds/id:56161"
137
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56161&buildTypeId=bt15"/><build id="56160" number="2846"
138
+ status="FAILURE" buildTypeId="bt17" startDate="20111018T222605+0400" href="/app/rest/builds/id:56160"
139
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56160&buildTypeId=bt17"/><build id="56159" number="1038"
140
+ status="ERROR" buildTypeId="bt31" startDate="20111018T221612+0400" href="/app/rest/builds/id:56159"
141
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56159&buildTypeId=bt31"/><build id="56158" number="4026"
142
+ status="SUCCESS" buildTypeId="bt15" startDate="20111018T220956+0400" href="/app/rest/builds/id:56158"
143
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56158&buildTypeId=bt15"/><build id="56149" number="1037"
144
+ status="ERROR" buildTypeId="bt31" startDate="20111018T115238+0400" href="/app/rest/builds/id:56149"
145
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56149&buildTypeId=bt31"/><build id="56148" number="1635"
146
+ status="FAILURE" buildTypeId="bt22" startDate="20111018T100007+0400" href="/app/rest/builds/id:56148"
147
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56148&buildTypeId=bt22"/><build id="56147" number="1610"
148
+ status="FAILURE" buildTypeId="bt24" startDate="20111018T100005+0400" href="/app/rest/builds/id:56147"
149
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56147&buildTypeId=bt24"/><build id="56146" number="670"
150
+ status="FAILURE" buildTypeId="bt184" startDate="20111018T100005+0400" href="/app/rest/builds/id:56146"
151
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56146&buildTypeId=bt184"/><build id="56145" number="2312"
152
+ status="SUCCESS" buildTypeId="bt107" startDate="20111018T084434+0400" href="/app/rest/builds/id:56145"
153
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56145&buildTypeId=bt107"/><build id="56143" number="2545"
154
+ status="SUCCESS" buildTypeId="bt41" startDate="20111018T082206+0400" href="/app/rest/builds/id:56143"
155
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56143&buildTypeId=bt41"/><build id="56142" number="2845"
156
+ status="FAILURE" buildTypeId="bt17" startDate="20111018T072015+0400" href="/app/rest/builds/id:56142"
157
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56142&buildTypeId=bt17"/><build id="56141" number="2544"
158
+ status="FAILURE" buildTypeId="bt41" startDate="20111018T071530+0400" href="/app/rest/builds/id:56141"
159
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56141&buildTypeId=bt41"/><build id="56140" number="4025"
160
+ status="SUCCESS" buildTypeId="bt15" startDate="20111018T070730+0400" href="/app/rest/builds/id:56140"
161
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56140&buildTypeId=bt15"/><build id="56139" number="2311"
162
+ status="FAILURE" buildTypeId="bt107" startDate="20111018T060329+0400" href="/app/rest/builds/id:56139"
163
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56139&buildTypeId=bt107"/><build id="56138" number="2543"
164
+ status="SUCCESS" buildTypeId="bt41" startDate="20111018T060021+0400" href="/app/rest/builds/id:56138"
165
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56138&buildTypeId=bt41"/><build id="56137" number="1036"
166
+ status="ERROR" buildTypeId="bt31" startDate="20111018T053931+0400" href="/app/rest/builds/id:56137"
167
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56137&buildTypeId=bt31"/><build id="56135" number="2844"
168
+ status="FAILURE" buildTypeId="bt17" startDate="20111018T045024+0400" href="/app/rest/builds/id:56135"
169
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56135&buildTypeId=bt17"/><build id="56133" number="2542"
170
+ status="SUCCESS" buildTypeId="bt41" startDate="20111018T041201+0400" href="/app/rest/builds/id:56133"
171
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56133&buildTypeId=bt41"/><build id="56132" number="1035"
172
+ status="ERROR" buildTypeId="bt31" startDate="20111018T041148+0400" href="/app/rest/builds/id:56132"
173
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56132&buildTypeId=bt31"/><build id="56131" number="2310"
174
+ status="SUCCESS" buildTypeId="bt107" startDate="20111018T040740+0400" href="/app/rest/builds/id:56131"
175
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56131&buildTypeId=bt107"/><build id="56130" number="1.5.4695"
176
+ status="ERROR" buildTypeId="bt40" startDate="20111018T012131+0400" href="/app/rest/builds/id:56130"
177
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56130&buildTypeId=bt40"/><build id="56129" number="133"
178
+ status="SUCCESS" buildTypeId="bt113" startDate="20111018T004808+0400" href="/app/rest/builds/id:56129"
179
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56129&buildTypeId=bt113"/><build id="56128" number="1.5.4694"
180
+ status="ERROR" buildTypeId="bt40" startDate="20111017T231946+0400" href="/app/rest/builds/id:56128"
181
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56128&buildTypeId=bt40"/><build id="56127" number="40"
182
+ status="SUCCESS" buildTypeId="bt277" startDate="20111017T205909+0400" href="/app/rest/builds/id:56127"
183
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56127&buildTypeId=bt277"/><build id="56125" number="1.5.4693"
184
+ status="ERROR" buildTypeId="bt40" startDate="20111017T163743+0400" href="/app/rest/builds/id:56125"
185
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56125&buildTypeId=bt40"/><build id="56124" number="306"
186
+ status="FAILURE" buildTypeId="bt38" startDate="20111017T143331+0400" href="/app/rest/builds/id:56124"
187
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56124&buildTypeId=bt38"/><build id="56121" number="124"
188
+ status="FAILURE" buildTypeId="bt212" startDate="20111017T124635+0400" href="/app/rest/builds/id:56121"
189
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56121&buildTypeId=bt212"/><build id="56120" number="564"
190
+ status="FAILURE" buildTypeId="bt213" startDate="20111017T122028+0400" href="/app/rest/builds/id:56120"
191
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56120&buildTypeId=bt213"/><build id="56118" number="608"
192
+ status="FAILURE" buildTypeId="bt209" startDate="20111017T120547+0400" href="/app/rest/builds/id:56118"
193
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56118&buildTypeId=bt209"/><build id="56117" number="1634"
194
+ status="FAILURE" buildTypeId="bt22" startDate="20111017T101336+0400" href="/app/rest/builds/id:56117"
195
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56117&buildTypeId=bt22"/><build id="56116" number="1609"
196
+ status="FAILURE" buildTypeId="bt24" startDate="20111017T101230+0400" href="/app/rest/builds/id:56116"
197
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56116&buildTypeId=bt24"/><build id="56115" number="2541"
198
+ status="SUCCESS" buildTypeId="bt41" startDate="20111017T091328+0400" href="/app/rest/builds/id:56115"
199
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56115&buildTypeId=bt41"/><build id="56114" number="2309"
200
+ status="FAILURE" buildTypeId="bt107" startDate="20111017T090508+0400" href="/app/rest/builds/id:56114"
201
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56114&buildTypeId=bt107"/></builds>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?><changes nextHref="/app/rest/changes?count=100&amp;start=100" count="100"><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49754&amp;personal=false" version="10718" id="49754" href="/app/rest/changes/id:49754"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49750&amp;personal=false" version="25866" id="49750" href="/app/rest/changes/id:49750"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49749&amp;personal=false" version="25865" id="49749" href="/app/rest/changes/id:49749"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49748&amp;personal=false" version="25864" id="49748" href="/app/rest/changes/id:49748"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49747&amp;personal=false" version="25863" id="49747" href="/app/rest/changes/id:49747"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49746&amp;personal=false" version="25862" id="49746" href="/app/rest/changes/id:49746"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49745&amp;personal=false" version="25861" id="49745" href="/app/rest/changes/id:49745"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49744&amp;personal=false" version="25860" id="49744" href="/app/rest/changes/id:49744"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49743&amp;personal=false" version="25859" id="49743" href="/app/rest/changes/id:49743"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49742&amp;personal=false" version="25858" id="49742" href="/app/rest/changes/id:49742"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49741&amp;personal=false" version="25857" id="49741" href="/app/rest/changes/id:49741"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49740&amp;personal=false" version="25856" id="49740" href="/app/rest/changes/id:49740"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49738&amp;personal=false" version="1e76b4d544a11df347ba6142df9450eeb564d789" id="49738" href="/app/rest/changes/id:49738"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49737&amp;personal=false" version="0622a3485a9872264f5aef529b34d5d34052d865" id="49737" href="/app/rest/changes/id:49737"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49735&amp;personal=false" version="447236cb3b234e92dcf55181dadc799c73ba603e" id="49735" href="/app/rest/changes/id:49735"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49734&amp;personal=false" version="25855" id="49734" href="/app/rest/changes/id:49734"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49733&amp;personal=false" version="10717" id="49733" href="/app/rest/changes/id:49733"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49732&amp;personal=false" version="2671c42c4c7b94bb841cb86c5782652105d547b2" id="49732" href="/app/rest/changes/id:49732"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49730&amp;personal=false" version="10716" id="49730" href="/app/rest/changes/id:49730"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49719&amp;personal=false" version="7fe7d7ce01d13be81dd1bbbeb90b0afc7e1984d3" id="49719" href="/app/rest/changes/id:49719"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49718&amp;personal=false" version="48973d5274af807f08bc20b077934bb82b41fd58" id="49718" href="/app/rest/changes/id:49718"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49717&amp;personal=false" version="f3507e7f5ed20ce835249b8b877726dabfdca9cc" id="49717" href="/app/rest/changes/id:49717"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49716&amp;personal=false" version="496f229a91bac0d8de2f3bb6c9e05c29ec37017b" id="49716" href="/app/rest/changes/id:49716"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49715&amp;personal=false" version="be87209a8f8a4d3e06c87eb248d64bb9e2b3bd3a" id="49715" href="/app/rest/changes/id:49715"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49714&amp;personal=false" version="b21b06e5601530d5d2bbd9e82355789b05a453c6" id="49714" href="/app/rest/changes/id:49714"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49712&amp;personal=false" version="ae13d3f48675eb7c7247f58bfa8f45dd07d9e0f2" id="49712" href="/app/rest/changes/id:49712"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49711&amp;personal=false" version="089d4ed4ed3306767f4a0bea11e08b11ddcb8800" id="49711" href="/app/rest/changes/id:49711"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49710&amp;personal=false" version="064623360a1437e228d42f48662fcf6676878d57" id="49710" href="/app/rest/changes/id:49710"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49709&amp;personal=false" version="aa273a3ec019d333cea2c2a461e12b88ffec77e6" id="49709" href="/app/rest/changes/id:49709"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49708&amp;personal=false" version="abd0935e213d9c2e2a36b0b93d15de12d7553464" id="49708" href="/app/rest/changes/id:49708"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49707&amp;personal=false" version="2e7883f941851537b8392a305fbb805770d25d3f" id="49707" href="/app/rest/changes/id:49707"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49706&amp;personal=false" version="10715" id="49706" href="/app/rest/changes/id:49706"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49700&amp;personal=false" version="1936" id="49700" href="/app/rest/changes/id:49700"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49699&amp;personal=false" version="1935" id="49699" href="/app/rest/changes/id:49699"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49698&amp;personal=false" version="25854" id="49698" href="/app/rest/changes/id:49698"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49695&amp;personal=false" version="25853" id="49695" href="/app/rest/changes/id:49695"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49693&amp;personal=false" version="11ead25f9b9378e2168d42ec8bb711bc9145da11" id="49693" href="/app/rest/changes/id:49693"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49692&amp;personal=false" version="32432aa4496362f524658c9ae239f5d9ad927ada" id="49692" href="/app/rest/changes/id:49692"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49691&amp;personal=false" version="93930fa26352fefc1487fa5eef41607f74b96d69" id="49691" href="/app/rest/changes/id:49691"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49689&amp;personal=false" version="4699" id="49689" href="/app/rest/changes/id:49689"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49688&amp;personal=false" version="4699" id="49688" href="/app/rest/changes/id:49688"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49686&amp;personal=false" version="25852" id="49686" href="/app/rest/changes/id:49686"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49685&amp;personal=false" version="10714" id="49685" href="/app/rest/changes/id:49685"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49684&amp;personal=false" version="40810afe9baaeeed7dcf21ee6dee4250b66152ae" id="49684" href="/app/rest/changes/id:49684"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49683&amp;personal=false" version="5e4287e965e363eb6e15c8b416a775b5b55a146d" id="49683" href="/app/rest/changes/id:49683"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49682&amp;personal=false" version="0241cf853bd43533bf4970df7c7a8ceef0fb4857" id="49682" href="/app/rest/changes/id:49682"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49681&amp;personal=false" version="113f2cb4e02ac92916f75d82e19a0482e7f636ca" id="49681" href="/app/rest/changes/id:49681"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49680&amp;personal=false" version="d926fbc9ba39287a0678b5282ad276e101b6e075" id="49680" href="/app/rest/changes/id:49680"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49679&amp;personal=false" version="06e1a0682692f73b21975ac16778d6fe01fd1ab1" id="49679" href="/app/rest/changes/id:49679"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49678&amp;personal=false" version="178a29a56f5fc021770339015eefcb3b30595293" id="49678" href="/app/rest/changes/id:49678"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49677&amp;personal=false" version="d896f807a4d92c11ef757d4ea96deeac2b03bb92" id="49677" href="/app/rest/changes/id:49677"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49676&amp;personal=false" version="d4420515259c66e9a4b2b025f042e91e155d44bc" id="49676" href="/app/rest/changes/id:49676"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49675&amp;personal=false" version="7376bc1bf4c533a040d77fd34e7a88ee6aed8c35" id="49675" href="/app/rest/changes/id:49675"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49674&amp;personal=false" version="77519e4b4aed03fe6ee05cb8b9c08466f7f52da8" id="49674" href="/app/rest/changes/id:49674"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49673&amp;personal=false" version="1b64ee19e3e231bec7b5a9c4ad459bbae1184927" id="49673" href="/app/rest/changes/id:49673"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49672&amp;personal=false" version="4e0744b2d9531a670f70542981f39458580d0642" id="49672" href="/app/rest/changes/id:49672"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49670&amp;personal=false" version="79ea5e227b449693b6acdc8ac345f2287af73dbd" id="49670" href="/app/rest/changes/id:49670"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49665&amp;personal=false" version="6c392fce5608768bf67d8f10228832fe1346ef51" id="49665" href="/app/rest/changes/id:49665"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49664&amp;personal=false" version="963d23ca97d264574123f0c524435b5ecc85c0aa" id="49664" href="/app/rest/changes/id:49664"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49663&amp;personal=false" version="48a9da415a02fc744dd5e8f4d2926bc5a8541285" id="49663" href="/app/rest/changes/id:49663"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49662&amp;personal=false" version="afc2ff634e839d008b16ff8254e57d00227477fa" id="49662" href="/app/rest/changes/id:49662"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49661&amp;personal=false" version="e65e53f73c1aa05a4be025ba229041364db7698f" id="49661" href="/app/rest/changes/id:49661"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49660&amp;personal=false" version="404e13e36e17dfa64635cfca902824cd538fa70e" id="49660" href="/app/rest/changes/id:49660"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49659&amp;personal=false" version="0171be663257483af27f4690959c47b049f617cb" id="49659" href="/app/rest/changes/id:49659"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49658&amp;personal=false" version="0e867738433be71dc5ae96117dfa5a506605b2dd" id="49658" href="/app/rest/changes/id:49658"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49657&amp;personal=false" version="f60f7a6dd44baa6dd25c629c9fa5ab437447834a" id="49657" href="/app/rest/changes/id:49657"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49656&amp;personal=false" version="461a88f75b523d95c14bca91bb3995ace5c14237" id="49656" href="/app/rest/changes/id:49656"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49655&amp;personal=false" version="16c31a7b1f0a5c55c1c7f5bf2549df350fa3e7a0" id="49655" href="/app/rest/changes/id:49655"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49654&amp;personal=false" version="83d84cd77f2d3da58fb8e831ccf41322c456a1db" id="49654" href="/app/rest/changes/id:49654"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49653&amp;personal=false" version="3b4b6974c8663f4e15427410310800bb8fd7bf29" id="49653" href="/app/rest/changes/id:49653"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49652&amp;personal=false" version="affa629f82b8614a5526f81f7f7440f8984da6f0" id="49652" href="/app/rest/changes/id:49652"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49651&amp;personal=false" version="60cf5b4cd6862e13336740c53a2e18f07ec8ab6f" id="49651" href="/app/rest/changes/id:49651"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49650&amp;personal=false" version="615f69032b4d40933bbad6789eec98d852318ac0" id="49650" href="/app/rest/changes/id:49650"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49649&amp;personal=false" version="4b256c14498ef9b228d09d0c9a8a894d92da3b90" id="49649" href="/app/rest/changes/id:49649"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49648&amp;personal=false" version="0493250ef23ebfb02e13dbd8cc6a343313099773" id="49648" href="/app/rest/changes/id:49648"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49647&amp;personal=false" version="a81336ba96925bcc595cee7803f7799e3f2eca1e" id="49647" href="/app/rest/changes/id:49647"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49646&amp;personal=false" version="83d84cd77f2d3da58fb8e831ccf41322c456a1db" id="49646" href="/app/rest/changes/id:49646"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49645&amp;personal=false" version="3b4b6974c8663f4e15427410310800bb8fd7bf29" id="49645" href="/app/rest/changes/id:49645"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49644&amp;personal=false" version="4c261d44288c83e3286728ad159af9161d8cf400" id="49644" href="/app/rest/changes/id:49644"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49643&amp;personal=false" version="e45ade3c63819b42045084b438917804d3eb988b" id="49643" href="/app/rest/changes/id:49643"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49641&amp;personal=false" version="d0cf23d0bf63a797bce3c5a77cac0123aef5489a" id="49641" href="/app/rest/changes/id:49641"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49640&amp;personal=false" version="affa629f82b8614a5526f81f7f7440f8984da6f0" id="49640" href="/app/rest/changes/id:49640"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49639&amp;personal=false" version="d7d2c4c93e1dcc31e95586a92eccf24a5f3d3c08" id="49639" href="/app/rest/changes/id:49639"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49638&amp;personal=false" version="0d836c49e8a6bf69a9d4e8bf8b03d239b7c6cdf8" id="49638" href="/app/rest/changes/id:49638"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49637&amp;personal=false" version="fe55ffc350502d4e620d099d3bdaac5451d131fa" id="49637" href="/app/rest/changes/id:49637"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49635&amp;personal=false" version="1934" id="49635" href="/app/rest/changes/id:49635"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49634&amp;personal=false" version="13598f32229aaa4ad92f0ddde35927ee7f3b20b2" id="49634" href="/app/rest/changes/id:49634"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49632&amp;personal=false" version="10713" id="49632" href="/app/rest/changes/id:49632"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49623&amp;personal=false" version="10712" id="49623" href="/app/rest/changes/id:49623"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49622&amp;personal=false" version="10711" id="49622" href="/app/rest/changes/id:49622"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49621&amp;personal=false" version="10710" id="49621" href="/app/rest/changes/id:49621"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49620&amp;personal=false" version="25850" id="49620" href="/app/rest/changes/id:49620"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49619&amp;personal=false" version="25849" id="49619" href="/app/rest/changes/id:49619"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49618&amp;personal=false" version="25848" id="49618" href="/app/rest/changes/id:49618"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49617&amp;personal=false" version="25847" id="49617" href="/app/rest/changes/id:49617"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49616&amp;personal=false" version="25846" id="49616" href="/app/rest/changes/id:49616"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49615&amp;personal=false" version="1933" id="49615" href="/app/rest/changes/id:49615"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49614&amp;personal=false" version="10709" id="49614" href="/app/rest/changes/id:49614"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49613&amp;personal=false" version="10708" id="49613" href="/app/rest/changes/id:49613"/><change webLink="http://teamcity.jetbrains.com/viewModification.html?modId=49607&amp;personal=false" version="1932" id="49607" href="/app/rest/changes/id:49607"/></changes>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?><projects><project name="Amazon API client" id="project54" href="/app/rest/projects/id:project54"/><project name="Apache Ant" id="project28" href="/app/rest/projects/id:project28"/><project name="Apache Ivy" id="project27" href="/app/rest/projects/id:project27"/><project name="Artifactory Plugin for TeamCity" id="project35" href="/app/rest/projects/id:project35"/><project name="Bundler" id="project37" href="/app/rest/projects/id:project37"/><project name="Cucumber" id="project39" href="/app/rest/projects/id:project39"/><project name="Genome Query" id="project46" href="/app/rest/projects/id:project46"/><project name="Google Web Toolkit" id="project14" href="/app/rest/projects/id:project14"/><project name="Gradle" id="project22" href="/app/rest/projects/id:project22"/><project name="Groovy" id="project12" href="/app/rest/projects/id:project12"/><project name="IdeaVIM" id="project55" href="/app/rest/projects/id:project55"/><project name="JetBrains Dependency Retrieve" id="project24" href="/app/rest/projects/id:project24"/><project name="JGit" id="project33" href="/app/rest/projects/id:project33"/><project name="JMock 2" id="project2" href="/app/rest/projects/id:project2"/><project name="joustim" id="project6" href="/app/rest/projects/id:project6"/><project name="joustsim" id="project7" href="/app/rest/projects/id:project7"/><project name="Juxy" id="project16" href="/app/rest/projects/id:project16"/><project name="NUnit v2" id="project45" href="/app/rest/projects/id:project45"/><project name="NUnit v3" id="project53" href="/app/rest/projects/id:project53"/><project name="Picocontainer" id="project3" href="/app/rest/projects/id:project3"/><project name="Ruby-Debug Gem" id="project51" href="/app/rest/projects/id:project51"/><project name="Scala" id="project30" href="/app/rest/projects/id:project30"/><project name="Smack" id="project8" href="/app/rest/projects/id:project8"/><project name="Spring Framework" id="project15" href="/app/rest/projects/id:project15"/><project name="TeamCity Accurev Support" id="project29" href="/app/rest/projects/id:project29"/><project name="TeamCity C# runner plugin" id="project44" href="/app/rest/projects/id:project44"/><project name="TeamCity make plugin" id="project61" href="/app/rest/projects/id:project61"/><project name="TeamCity Plugins by JetBrains" id="project25" href="/app/rest/projects/id:project25"/><project name="Teamcity Rake Runner" id="project21" href="/app/rest/projects/id:project21"/><project name="TeamCity Rake Runner Demo" id="project23" href="/app/rest/projects/id:project23"/><project name="TeamCity Redmine plugin" id="project56" href="/app/rest/projects/id:project56"/><project name="TeamCity TFS Issue Tracker integration plugin" id="project50" href="/app/rest/projects/id:project50"/><project name="TestNG" id="project9" href="/app/rest/projects/id:project9"/><project name="TestNG Test Project" id="project20" href="/app/rest/projects/id:project20"/><project name="WebHooks and other plugins" id="project32" href="/app/rest/projects/id:project32"/><project name="XStream" id="project4" href="/app/rest/projects/id:project4"/></projects>
@@ -0,0 +1,12 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'rspec'
4
+ require 'teamcity-rest-client'
5
+
6
+ # Requires supporting files with custom matchers and macros, etc,
7
+ # in ./support/ and its subdirectories.
8
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
9
+
10
+ RSpec.configure do |config|
11
+
12
+ end
@@ -0,0 +1,207 @@
1
+ require_relative 'spec_helper'
2
+
3
+ describe TeamcityRestClient::Project do
4
+ before :each do
5
+ @bt11 = stub('bt11', :id => "bt11", :name => "project1-build1", :project_id => "project1")
6
+ @bt12 = stub('bt12', :id => "bt12", :name => "project1-build2", :project_id => "project1")
7
+ @bt21 = stub('bt21', :id => "bt21", :name => "project2-build1", :project_id => "project2")
8
+
9
+ @bt11_1 = stub('bt11_1', :id => "1", :build_type_id => "bt11")
10
+ @bt11_2 = stub('bt11_2', :id => "2", :build_type_id => "bt11")
11
+ @bt12_33 = stub('bt12_33', :id => "33", :build_type_id => "bt12")
12
+ @bt21_666 = stub('bt21_666', :id => "666", :build_type_id => "bt21")
13
+
14
+ @tc = stub('teamcity', :build_types => [@bt11, @bt12, @bt21], :builds => [@bt11_1, @bt11_2, @bt12_33, @bt21_666])
15
+ @project1 = TeamcityRestClient::Project.new @tc, "Project 1", "project1", "http://www.example.com"
16
+ end
17
+
18
+ describe "asking it for it's build types" do
19
+ before :each do
20
+ @build_types = @project1.build_types
21
+ end
22
+
23
+ it "should have only those for project 1" do
24
+ @build_types.should == [@bt11, @bt12]
25
+ end
26
+ end
27
+
28
+ describe "asking it for it's builds" do
29
+ before :each do
30
+ @builds = @project1.builds
31
+ end
32
+
33
+ it "should have only builds for project 1" do
34
+ @builds.should == [@bt11_1, @bt11_2, @bt12_33]
35
+ end
36
+ end
37
+ end
38
+
39
+ describe Teamcity do
40
+ describe "using basic http authentication" do
41
+ before :each do
42
+ @user = "bob"
43
+ @password = "marley"
44
+ @tc = Teamcity.new "authtc.example.com", 9999, @user, @password
45
+ end
46
+
47
+ it "should create a valid url to /something" do
48
+ @tc.url("/something").should == "http://bob:marley@authtc.example.com:9999/something"
49
+ end
50
+ end
51
+
52
+ describe "finding a specific project" do
53
+ before :each do
54
+ @tc = Teamcity.new "tc.example.com", 5678
55
+ @project1 = stub('project1', :name => "First Project", :id => "project1")
56
+ @project456 = stub('project456', :name => "Project 456", :id => "project456")
57
+ @project3877 = stub('project3877', :name => "Some other project with a big number", :id => "project3877")
58
+ @tc.stub(:projects).and_return [@project1, @project456, @project3877]
59
+ end
60
+
61
+ describe "by project name" do
62
+ it "should return project with name First Project" do
63
+ @tc.project("First Project").should === @project1
64
+ end
65
+
66
+ it "should return project with name Some other project with a big number" do
67
+ @tc.project("Some other project with a big number").should === @project3877
68
+ end
69
+
70
+ it "should blowup when the project name doesnt exist" do
71
+ lambda { @tc.project("bollocks") }.should raise_error "Sorry, cannot find project with name or id 'bollocks'"
72
+ end
73
+ end
74
+
75
+ describe "by project id" do
76
+ it "should return project with id project456" do
77
+ @tc.project("project456").should === @project456
78
+ end
79
+
80
+ it "should return project with id project3877" do
81
+ @tc.project("project3877").should === @project3877
82
+ end
83
+ end
84
+ end
85
+
86
+ describe "parsing xml feeds" do
87
+ before :each do
88
+ @tc = Teamcity.new "tc.example.com", 1234
89
+ end
90
+
91
+ describe "projects" do
92
+ before :each do
93
+ xml = <<XML
94
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
95
+ <projects>
96
+ <project name="Amazon API client" id="project54" href="/app/rest/projects/id:project54"/>
97
+ <project name="Apache Ant" id="project28" href="/app/rest/projects/id:project28"/>
98
+ </projects>
99
+ XML
100
+ @tc.should_receive(:open).with("http://tc.example.com:1234/app/rest/projects").and_return(stub(:read => xml))
101
+ @projects = @tc.projects
102
+ end
103
+
104
+ it "should have 2" do
105
+ @projects.length.should == 2
106
+ end
107
+
108
+ it "should have amazon project" do
109
+ amazon = @projects[0]
110
+ amazon.name.should == "Amazon API client"
111
+ amazon.id.should == "project54"
112
+ amazon.href.should == "http://tc.example.com:1234/app/rest/projects/id:project54"
113
+ end
114
+
115
+ it "should have ant project" do
116
+ ant = @projects[1]
117
+ ant.name.should == "Apache Ant"
118
+ ant.id.should == "project28"
119
+ ant.href.should == "http://tc.example.com:1234/app/rest/projects/id:project28"
120
+ end
121
+ end
122
+
123
+ describe "buildTypes" do
124
+ before :each do
125
+ xml = <<XML
126
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
127
+ <buildTypes>
128
+ <buildType id="bt297" name="Build" href="/app/rest/buildTypes/id:bt297"
129
+ projectName="Amazon API client" projectId="project54" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt297"/>
130
+ <buildType id="bt296" name="Download missing jar" href="/app/rest/buildTypes/id:bt296"
131
+ projectName="Amazon API client" projectId="project54" webUrl="http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt296"/>
132
+ </buildTypes>
133
+ XML
134
+ @tc.should_receive(:open).with("http://tc.example.com:1234/app/rest/buildTypes").and_return(stub(:read => xml))
135
+ @build_types = @tc.build_types
136
+ end
137
+
138
+ it 'should have 2' do
139
+ @build_types.length.should == 2
140
+ end
141
+
142
+ it "should have build bt297" do
143
+ bt297 = @build_types[0]
144
+ bt297.id.should == "bt297"
145
+ bt297.name.should == "Build"
146
+ bt297.href.should == "http://tc.example.com:1234/app/rest/buildTypes/id:bt297"
147
+ bt297.project_name.should == "Amazon API client"
148
+ bt297.project_id.should == "project54"
149
+ bt297.web_url.should == "http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt297"
150
+ end
151
+
152
+ it "should have build bt296" do
153
+ bt296 = @build_types[1]
154
+ bt296.id.should == "bt296"
155
+ bt296.name.should == "Download missing jar"
156
+ bt296.href.should == "http://tc.example.com:1234/app/rest/buildTypes/id:bt296"
157
+ bt296.project_name.should == "Amazon API client"
158
+ bt296.project_id.should == "project54"
159
+ bt296.web_url.should == "http://teamcity.jetbrains.com/viewType.html?buildTypeId=bt296"
160
+ end
161
+ end
162
+
163
+ describe "builds" do
164
+ before :each do
165
+ xml = <<XML
166
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
167
+ <builds nextHref="/app/rest/builds?count=100&amp;start=100" count="100">
168
+ <build id="56264" number="126" status="FAILURE" buildTypeId="bt212" startDate="20111021T123714+0400" href="/app/rest/builds/id:56264"
169
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56264&buildTypeId=bt212"/>
170
+ <build id="56262" number="568" status="SUCCESS" buildTypeId="bt213" startDate="20111021T120639+0400" href="/app/rest/builds/id:56262"
171
+ webUrl="http://teamcity.jetbrains.com/viewLog.html?buildId=56262&buildTypeId=bt213"/>
172
+ </builds>
173
+ XML
174
+ @tc.should_receive(:open).with("http://tc.example.com:1234/app/rest/builds").and_return(stub(:read => xml))
175
+ @builds = @tc.builds
176
+ end
177
+
178
+ it "should have 2" do
179
+ @builds.length.should == 2
180
+ end
181
+
182
+ it "should have build 56264" do
183
+ build = @builds[0]
184
+ build.id.should == "56264"
185
+ build.number.should == "126"
186
+ build.status.should == :FAILURE
187
+ build.success?.should == false
188
+ build.build_type_id.should == "bt212"
189
+ build.start_date.should == "20111021T123714+0400"
190
+ build.href.should == "http://tc.example.com:1234/app/rest/builds/id:56264"
191
+ build.web_url.should == "http://teamcity.jetbrains.com/viewLog.html?buildId=56264&buildTypeId=bt212"
192
+ end
193
+
194
+ it "should have build 56262" do
195
+ build = @builds[1]
196
+ build.id.should == "56262"
197
+ build.number.should == "568"
198
+ build.status.should == :SUCCESS
199
+ build.success?.should == true
200
+ build.build_type_id.should == "bt213"
201
+ build.start_date.should == "20111021T120639+0400"
202
+ build.href.should == "http://tc.example.com:1234/app/rest/builds/id:56262"
203
+ build.web_url.should == "http://teamcity.jetbrains.com/viewLog.html?buildId=56262&buildTypeId=bt213"
204
+ end
205
+ end
206
+ end
207
+ end
@@ -0,0 +1,64 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "teamcity-rest-client"
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["simon"]
12
+ s.date = "2011-10-24"
13
+ s.description = "Teamcity rest api client (readonly)"
14
+ s.email = "simojenki@gmail.com"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".rspec",
22
+ "Gemfile",
23
+ "Gemfile.lock",
24
+ "LICENSE.txt",
25
+ "README.rdoc",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "lib/teamcity-rest-client.rb",
29
+ "spec/samples/buildTypes.xml",
30
+ "spec/samples/builds.xml",
31
+ "spec/samples/changes.xml",
32
+ "spec/samples/projects.xml",
33
+ "spec/spec_helper.rb",
34
+ "spec/teamcity-rest-client_spec.rb",
35
+ "teamcity-rest-client.gemspec"
36
+ ]
37
+ s.homepage = "http://github.com/simojenki/teamcity-rest-client"
38
+ s.licenses = ["MIT"]
39
+ s.require_paths = ["lib"]
40
+ s.rubygems_version = "1.8.10"
41
+ s.summary = "Teamcity rest api client (readonly)"
42
+
43
+ if s.respond_to? :specification_version then
44
+ s.specification_version = 3
45
+
46
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
47
+ s.add_development_dependency(%q<rspec>, [">= 2.3.0"])
48
+ s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
49
+ s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
50
+ s.add_development_dependency(%q<rcov>, [">= 0"])
51
+ else
52
+ s.add_dependency(%q<rspec>, [">= 2.3.0"])
53
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
54
+ s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
55
+ s.add_dependency(%q<rcov>, [">= 0"])
56
+ end
57
+ else
58
+ s.add_dependency(%q<rspec>, [">= 2.3.0"])
59
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
60
+ s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
61
+ s.add_dependency(%q<rcov>, [">= 0"])
62
+ end
63
+ end
64
+
metadata ADDED
@@ -0,0 +1,110 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: teamcity-rest-client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - simon
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-10-24 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rspec
16
+ requirement: &2158820600 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 2.3.0
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *2158820600
25
+ - !ruby/object:Gem::Dependency
26
+ name: bundler
27
+ requirement: &2158820120 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.0
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *2158820120
36
+ - !ruby/object:Gem::Dependency
37
+ name: jeweler
38
+ requirement: &2158819640 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ version: 1.6.4
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *2158819640
47
+ - !ruby/object:Gem::Dependency
48
+ name: rcov
49
+ requirement: &2158819160 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: *2158819160
58
+ description: Teamcity rest api client (readonly)
59
+ email: simojenki@gmail.com
60
+ executables: []
61
+ extensions: []
62
+ extra_rdoc_files:
63
+ - LICENSE.txt
64
+ - README.rdoc
65
+ files:
66
+ - .document
67
+ - .rspec
68
+ - Gemfile
69
+ - Gemfile.lock
70
+ - LICENSE.txt
71
+ - README.rdoc
72
+ - Rakefile
73
+ - VERSION
74
+ - lib/teamcity-rest-client.rb
75
+ - spec/samples/buildTypes.xml
76
+ - spec/samples/builds.xml
77
+ - spec/samples/changes.xml
78
+ - spec/samples/projects.xml
79
+ - spec/spec_helper.rb
80
+ - spec/teamcity-rest-client_spec.rb
81
+ - teamcity-rest-client.gemspec
82
+ homepage: http://github.com/simojenki/teamcity-rest-client
83
+ licenses:
84
+ - MIT
85
+ post_install_message:
86
+ rdoc_options: []
87
+ require_paths:
88
+ - lib
89
+ required_ruby_version: !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
92
+ - - ! '>='
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ segments:
96
+ - 0
97
+ hash: 667469090941014696
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ none: false
100
+ requirements:
101
+ - - ! '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ requirements: []
105
+ rubyforge_project:
106
+ rubygems_version: 1.8.10
107
+ signing_key:
108
+ specification_version: 3
109
+ summary: Teamcity rest api client (readonly)
110
+ test_files: []