diff --git a/Rakefile b/Rakefile index 494c7b6f..52e1413e 100644 --- a/Rakefile +++ b/Rakefile @@ -5,7 +5,7 @@ require(File.join(File.dirname(__FILE__), 'config', 'boot')) require 'rake' require 'rake/testtask' -require 'rake/rdoctask' +require 'rdoc/task' require 'tasks/rails' @@ -13,4 +13,4 @@ begin require 'test/rails/rake_tasks' rescue LoadError => e #It's ok if you don't have ZenTest installed if you're not a developer -end \ No newline at end of file +end diff --git a/config/environments/cucumber.rb b/config/environments/cucumber.rb index a7392a85..1ad1a7d6 100644 --- a/config/environments/cucumber.rb +++ b/config/environments/cucumber.rb @@ -26,8 +26,8 @@ config.action_mailer.delivery_method = :test config.action_controller.session_store = :cookie_store config.action_controller.session = { :key => 'TracksCucumber', :secret => SITE_CONFIG['salt'] * (30.0 / SITE_CONFIG['salt'].length).ceil } -config.gem 'cucumber', :lib => false, :version => '<0.10.0' unless File.directory?(File.join(Rails.root, 'vendor/plugins/cucumber')) -config.gem 'cucumber-rails', :lib => false, :version => '>=0.3.2' unless File.directory?(File.join(Rails.root, 'vendor/plugins/cucumber-rails')) -config.gem 'gherkin', :lib => false, :version => '2.2.9' unless File.directory?(File.join(Rails.root, 'vendor/plugins/gherkin')) +config.gem 'cucumber', :lib => false, :version => '=0.9.4' unless File.directory?(File.join(Rails.root, 'vendor/plugins/cucumber')) +config.gem 'cucumber-rails', :lib => false, :version => '=0.3.2' unless File.directory?(File.join(Rails.root, 'vendor/plugins/cucumber-rails')) +config.gem 'gherkin', :lib => false, :version => '=2.4.0' unless File.directory?(File.join(Rails.root, 'vendor/plugins/gherkin')) config.gem 'database_cleaner', :lib => false, :version => '>=0.5.0' unless File.directory?(File.join(Rails.root, 'vendor/plugins/database_cleaner')) -config.gem 'webrat', :lib => false, :version => '>=0.7.0' unless File.directory?(File.join(Rails.root, 'vendor/plugins/webrat')) \ No newline at end of file +config.gem 'webrat', :lib => false, :version => '>=0.7.0' unless File.directory?(File.join(Rails.root, 'vendor/plugins/webrat')) diff --git a/vendor/gems/datanoise-actionwebservice-2.3.2/.specification b/vendor/gems/datanoise-actionwebservice-2.3.2/.specification index 3e8a3ccc..ce200267 100644 --- a/vendor/gems/datanoise-actionwebservice-2.3.2/.specification +++ b/vendor/gems/datanoise-actionwebservice-2.3.2/.specification @@ -29,8 +29,8 @@ dependencies: segments: - 2 - 3 - - 11 - version: 2.3.11 + - 12 + version: 2.3.12 type: :runtime version_requirements: *id001 - !ruby/object:Gem::Dependency @@ -45,8 +45,8 @@ dependencies: segments: - 2 - 3 - - 11 - version: 2.3.11 + - 12 + version: 2.3.12 type: :runtime version_requirements: *id002 description: Adds WSDL/SOAP and XML-RPC web service support to Action Pack diff --git a/vendor/gems/datanoise-actionwebservice-2.3.2/Rakefile b/vendor/gems/datanoise-actionwebservice-2.3.2/Rakefile index c4758806..49e1aefd 100644 --- a/vendor/gems/datanoise-actionwebservice-2.3.2/Rakefile +++ b/vendor/gems/datanoise-actionwebservice-2.3.2/Rakefile @@ -72,8 +72,8 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "aws" s.homepage = "http://www.rubyonrails.org" - s.add_dependency('actionpack', '= 2.3.11' + PKG_BUILD) - s.add_dependency('activerecord', '= 2.3.11' + PKG_BUILD) + s.add_dependency('actionpack', '= 2.3.12' + PKG_BUILD) + s.add_dependency('activerecord', '= 2.3.12' + PKG_BUILD) s.has_rdoc = true s.requirements << 'none' diff --git a/vendor/gems/has_many_polymorphs-2.13/lib/has_many_polymorphs/class_methods.rb b/vendor/gems/has_many_polymorphs-2.13/lib/has_many_polymorphs/class_methods.rb index 394985cf..1db66969 100644 --- a/vendor/gems/has_many_polymorphs-2.13/lib/has_many_polymorphs/class_methods.rb +++ b/vendor/gems/has_many_polymorphs-2.13/lib/has_many_polymorphs/class_methods.rb @@ -340,7 +340,7 @@ Be aware, however, that NULL != 'Spot' returns false due to SQ options[:parent_extend] = spiked_create_extension_module(association_id, Array(options[:parent_extend]), "Parent") # create the reflection object - returning(create_reflection(:has_many_polymorphs, association_id, options, self)) do |reflection| + create_reflection(:has_many_polymorphs, association_id, options, self).tap do |reflection| # set up the other related associations create_join_association(association_id, reflection) create_has_many_through_associations_for_parent_to_children(association_id, reflection) @@ -355,7 +355,7 @@ Be aware, however, that NULL != 'Spot' returns false due to SQ def build_table_aliases(from) # for the targets - returning({}) do |aliases| + {}.tap do |aliases| from.map(&:to_s).sort.map(&:to_sym).each_with_index do |plural, t_index| begin table = plural._as_class.table_name diff --git a/vendor/rails/actionmailer/Rakefile b/vendor/rails/actionmailer/Rakefile index e7ef2b23..ba85056e 100644 --- a/vendor/rails/actionmailer/Rakefile +++ b/vendor/rails/actionmailer/Rakefile @@ -1,9 +1,9 @@ require 'rubygems' require 'rake' require 'rake/testtask' -require 'rake/rdoctask' +require 'rdoc/task' require 'rake/packagetask' -require 'rake/gempackagetask' +require 'rubygems/package_task' require File.join(File.dirname(__FILE__), 'lib', 'action_mailer', 'version') PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' @@ -29,7 +29,7 @@ Rake::TestTask.new { |t| # Generate the RDoc documentation -Rake::RDocTask.new { |rdoc| +RDoc::Task.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title = "Action Mailer -- Easy email delivery and testing" rdoc.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object' @@ -54,19 +54,17 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "actionmailer" s.homepage = "http://www.rubyonrails.org" - s.add_dependency('actionpack', '= 2.3.11' + PKG_BUILD) + s.add_dependency('actionpack', '= 2.3.12' + PKG_BUILD) - s.has_rdoc = true s.requirements << 'none' s.require_path = 'lib' - s.autorequire = 'action_mailer' s.files = [ "Rakefile", "install.rb", "README", "CHANGELOG", "MIT-LICENSE" ] s.files = s.files + Dir.glob( "lib/**/*" ).delete_if { |item| item.include?( "\.svn" ) } s.files = s.files + Dir.glob( "test/**/*" ).delete_if { |item| item.include?( "\.svn" ) } end -Rake::GemPackageTask.new(spec) do |p| +Gem::PackageTask.new(spec) do |p| p.gem_spec = spec p.need_tar = true p.need_zip = true diff --git a/vendor/rails/actionmailer/lib/action_mailer/version.rb b/vendor/rails/actionmailer/lib/action_mailer/version.rb index da9b986a..ce0b782e 100644 --- a/vendor/rails/actionmailer/lib/action_mailer/version.rb +++ b/vendor/rails/actionmailer/lib/action_mailer/version.rb @@ -2,7 +2,7 @@ module ActionMailer module VERSION #:nodoc: MAJOR = 2 MINOR = 3 - TINY = 11 + TINY = 12 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/vendor/rails/actionpack/Rakefile b/vendor/rails/actionpack/Rakefile index 4c7c4b7b..004ed541 100644 --- a/vendor/rails/actionpack/Rakefile +++ b/vendor/rails/actionpack/Rakefile @@ -1,9 +1,9 @@ require 'rubygems' require 'rake' require 'rake/testtask' -require 'rake/rdoctask' +require 'rdoc/task' require 'rake/packagetask' -require 'rake/gempackagetask' +require 'rubygems/package_task' require File.join(File.dirname(__FILE__), 'lib', 'action_pack', 'version') PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' @@ -45,7 +45,7 @@ end # Genereate the RDoc documentation -Rake::RDocTask.new { |rdoc| +RDoc::Task.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title = "Action Pack -- On rails from request to response" rdoc.options << '--line-numbers' << '--inline-source' @@ -76,14 +76,12 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "actionpack" s.homepage = "http://www.rubyonrails.org" - s.has_rdoc = true s.requirements << 'none' - s.add_dependency('activesupport', '= 2.3.11' + PKG_BUILD) + s.add_dependency('activesupport', '= 2.3.12' + PKG_BUILD) s.add_dependency('rack', '~> 1.1.0') s.require_path = 'lib' - s.autorequire = 'action_controller' s.files = [ "Rakefile", "install.rb", "README", "RUNNING_UNIT_TESTS", "CHANGELOG", "MIT-LICENSE" ] dist_dirs.each do |dir| @@ -91,7 +89,7 @@ spec = Gem::Specification.new do |s| end end -Rake::GemPackageTask.new(spec) do |p| +Gem::PackageTask.new(spec) do |p| p.gem_spec = spec p.need_tar = true p.need_zip = true diff --git a/vendor/rails/actionpack/lib/action_controller/request.rb b/vendor/rails/actionpack/lib/action_controller/request.rb index 98c5e8ce..dc462530 100755 --- a/vendor/rails/actionpack/lib/action_controller/request.rb +++ b/vendor/rails/actionpack/lib/action_controller/request.rb @@ -446,7 +446,9 @@ EOM end def reset_session - session.destroy if session + # session may be a hash, if so, we do not want to call destroy + # fixes issue 6440 + session.destroy if session and session.respond_to?(:destroy) self.session = {} end diff --git a/vendor/rails/actionpack/lib/action_controller/session/abstract_store.rb b/vendor/rails/actionpack/lib/action_controller/session/abstract_store.rb index de0163d2..1d2ee87f 100644 --- a/vendor/rails/actionpack/lib/action_controller/session/abstract_store.rb +++ b/vendor/rails/actionpack/lib/action_controller/session/abstract_store.rb @@ -196,6 +196,7 @@ module ActionController if (request_cookies.nil? || request_cookies[@key] != sid) || options[:expire_after] cookie = {:value => sid} + cookie[:expires] = Time.now + options[:expire_after] if options[:expire_after] Rack::Utils.set_cookie_header!(response[1], @key, cookie.merge(options)) end end diff --git a/vendor/rails/actionpack/lib/action_pack/version.rb b/vendor/rails/actionpack/lib/action_pack/version.rb index 227ef601..010bfcb0 100644 --- a/vendor/rails/actionpack/lib/action_pack/version.rb +++ b/vendor/rails/actionpack/lib/action_pack/version.rb @@ -2,7 +2,7 @@ module ActionPack #:nodoc: module VERSION #:nodoc: MAJOR = 2 MINOR = 3 - TINY = 11 + TINY = 12 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/vendor/rails/actionpack/test/controller/session/abstract_store_test.rb b/vendor/rails/actionpack/test/controller/session/abstract_store_test.rb new file mode 100644 index 00000000..2df66a2e --- /dev/null +++ b/vendor/rails/actionpack/test/controller/session/abstract_store_test.rb @@ -0,0 +1,64 @@ +require 'abstract_unit' + +# You need to start a memcached server inorder to run these tests +class AbstractStoreTest < ActionController::IntegrationTest + SessionKey = '_myapp_session' + DispatcherApp = ActionController::Dispatcher.new + + class TestController < ActionController::Base + def get_session + session[:test] = 'test' + head :ok + end + end + + def test_expiry_after + with_test_route_set(:expire_after => 5 * 60) do + get 'get_session' + assert_response :success + assert_match /expires=\S+/, headers['Set-Cookie'] + end + end + +protected + + def with_test_route_set(options = {}) + with_routing do |set| + set.draw do |map| + map.with_options :controller => "abstract_store_test/test" do |c| + c.connect "/:action" + end + end + + options = { :key => SessionKey, :secret => 'SessionSecret' }.merge!(options) + @integration_session = open_session(TestStore.new(DispatcherApp, options)) + + yield + end + end + + class TestStore < ActionController::Session::AbstractStore + def initialize(app, options = {}) + super + @_store = Hash.new({}) + end + + private + + def get_session(env, sid) + sid ||= generate_sid + session = @_store[sid] + [sid, session] + end + + def set_session(env, sid, session_data) + @_store[sid] = session_data + end + + def destroy(env) + @_store.delete(sid) + end + end + +end + diff --git a/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb b/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb index b7b922c3..8d02fffa 100644 --- a/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb +++ b/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb @@ -42,6 +42,12 @@ class CookieStoreTest < ActionController::IntegrationTest head :ok end + def call_reset_session_twice + reset_session + reset_session + head :ok + end + def call_reset_session reset_session head :ok @@ -190,6 +196,44 @@ class CookieStoreTest < ActionController::IntegrationTest end end + def test_calling_session_reset_twice + with_test_route_set do + get '/set_session_value' + assert_response :success + session_payload = response.body + assert_equal "_myapp_session=#{response.body}; path=/; HttpOnly", + headers['Set-Cookie'] + + get '/call_reset_session_twice' + assert_response :success + assert_not_equal "", headers['Set-Cookie'] + assert_not_equal session_payload, cookies[SessionKey] + + get '/get_session_value' + assert_response :success + assert_equal 'foo: nil', response.body + end + end + + def test_setting_session_value_after_session_reset + with_test_route_set do + get '/set_session_value' + assert_response :success + session_payload = response.body + assert_equal "_myapp_session=#{response.body}; path=/; HttpOnly", + headers['Set-Cookie'] + + get '/call_reset_session' + assert_response :success + assert_not_equal "", headers['Set-Cookie'] + assert_not_equal session_payload, cookies[SessionKey] + + get '/get_session_value' + assert_response :success + assert_equal 'foo: nil', response.body + end + end + def test_setting_session_value_after_session_reset with_test_route_set do get '/set_session_value' diff --git a/vendor/rails/activerecord/Rakefile b/vendor/rails/activerecord/Rakefile index 613bda69..dcdff6ba 100644 --- a/vendor/rails/activerecord/Rakefile +++ b/vendor/rails/activerecord/Rakefile @@ -1,9 +1,9 @@ require 'rubygems' require 'rake' require 'rake/testtask' -require 'rake/rdoctask' +require 'rdoc/task' require 'rake/packagetask' -require 'rake/gempackagetask' +require 'rubygems/package_task' require File.join(File.dirname(__FILE__), 'lib', 'active_record', 'version') require File.expand_path(File.dirname(__FILE__)) + "/test/config" @@ -157,7 +157,7 @@ task :rebuild_frontbase_databases => 'frontbase:rebuild_databases' # Generate the RDoc documentation -Rake::RDocTask.new { |rdoc| +RDoc::Task.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title = "Active Record -- Object-relation mapping put on rails" rdoc.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object' @@ -192,16 +192,14 @@ spec = Gem::Specification.new do |s| s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) } end - s.add_dependency('activesupport', '= 2.3.11' + PKG_BUILD) + s.add_dependency('activesupport', '= 2.3.12' + PKG_BUILD) s.files.delete FIXTURES_ROOT + "/fixture_database.sqlite" s.files.delete FIXTURES_ROOT + "/fixture_database_2.sqlite" s.files.delete FIXTURES_ROOT + "/fixture_database.sqlite3" s.files.delete FIXTURES_ROOT + "/fixture_database_2.sqlite3" s.require_path = 'lib' - s.autorequire = 'active_record' - s.has_rdoc = true s.extra_rdoc_files = %w( README ) s.rdoc_options.concat ['--main', 'README'] @@ -211,7 +209,7 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "activerecord" end -Rake::GemPackageTask.new(spec) do |p| +Gem::PackageTask.new(spec) do |p| p.gem_spec = spec p.need_tar = true p.need_zip = true diff --git a/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb b/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb index 3a602e49..c04110a9 100644 --- a/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +++ b/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb @@ -381,7 +381,7 @@ module ActiveRecord when /^find_or_create_by_(.*)$/ rest = $1 find_args = pull_finder_args_from(DynamicFinderMatch.match(method).attribute_names, *args) - return send("find_by_#{rest}", find_args) || + return send("find_by_#{rest}", *find_args) || method_missing("create_by_#{rest}", *args, &block) when /^create_by_(.*)$/ return create($1.split('_and_').zip(args).inject({}) { |h,kv| k,v=kv ; h[k] = v ; h }, &block) diff --git a/vendor/rails/activerecord/lib/active_record/base.rb b/vendor/rails/activerecord/lib/active_record/base.rb index ac82cc1b..461007fd 100755 --- a/vendor/rails/activerecord/lib/active_record/base.rb +++ b/vendor/rails/activerecord/lib/active_record/base.rb @@ -1286,7 +1286,7 @@ module ActiveRecord #:nodoc: # Turns the +table_name+ back into a class name following the reverse rules of +table_name+. def class_name(table_name = table_name) # :nodoc: - ActiveSupport::Deprecation.warn("ActiveRecord::Base#class_name is deprecated and will be removed in Rails 2.3.9.", caller) + ActiveSupport::Deprecation.warn("ActiveRecord::Base#class_name is deprecated and will be removed in Rails 3.", caller) # remove any prefix and/or suffix from the table name class_name = table_name[table_name_prefix.length..-(table_name_suffix.length + 1)].camelize diff --git a/vendor/rails/activerecord/lib/active_record/version.rb b/vendor/rails/activerecord/lib/active_record/version.rb index f106e409..db0e08ef 100644 --- a/vendor/rails/activerecord/lib/active_record/version.rb +++ b/vendor/rails/activerecord/lib/active_record/version.rb @@ -2,7 +2,7 @@ module ActiveRecord module VERSION #:nodoc: MAJOR = 2 MINOR = 3 - TINY = 11 + TINY = 12 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/vendor/rails/activerecord/test/cases/associations/has_many_associations_test.rb b/vendor/rails/activerecord/test/cases/associations/has_many_associations_test.rb index 3996b847..2f715a46 100644 --- a/vendor/rails/activerecord/test/cases/associations/has_many_associations_test.rb +++ b/vendor/rails/activerecord/test/cases/associations/has_many_associations_test.rb @@ -82,6 +82,15 @@ class HasManyAssociationsTest < ActiveRecord::TestCase assert_equal 4, post.comments.length end + def test_find_or_create_by_with_same_parameters_creates_a_single_record + author = Author.first + assert_difference "Post.count", +1 do + 2.times do + author.posts.find_or_create_by_body_and_title('one', 'two') + end + end + end + def test_find_or_create_by_with_block post = Post.create! :title => 'test_find_or_create_by_with_additional_parameters', :body => 'this is the body' comment = post.comments.find_or_create_by_body('other test comment body') { |comment| comment.type = 'test' } diff --git a/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite b/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite deleted file mode 100644 index d7b6b958..00000000 Binary files a/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite and /dev/null differ diff --git a/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite3 b/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite3 index 0b18df9c..b3299c65 100644 Binary files a/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite3 and b/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite3 differ diff --git a/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite b/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite deleted file mode 100644 index fdd88691..00000000 Binary files a/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite and /dev/null differ diff --git a/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite3 b/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite3 index dcc13a42..f106c802 100644 Binary files a/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite3 and b/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite3 differ diff --git a/vendor/rails/activeresource/Rakefile b/vendor/rails/activeresource/Rakefile index 3aa276b1..f298853b 100644 --- a/vendor/rails/activeresource/Rakefile +++ b/vendor/rails/activeresource/Rakefile @@ -1,9 +1,9 @@ require 'rubygems' require 'rake' require 'rake/testtask' -require 'rake/rdoctask' +require 'rdoc/task' require 'rake/packagetask' -require 'rake/gempackagetask' +require 'rubygems/package_task' require File.join(File.dirname(__FILE__), 'lib', 'active_resource', 'version') @@ -38,7 +38,7 @@ Rake::TestTask.new { |t| # Generate the RDoc documentation -Rake::RDocTask.new { |rdoc| +RDoc::Task.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title = "Active Resource -- Object-oriented REST services" rdoc.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object' @@ -66,12 +66,10 @@ spec = Gem::Specification.new do |s| s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) } end - s.add_dependency('activesupport', '= 2.3.11' + PKG_BUILD) + s.add_dependency('activesupport', '= 2.3.12' + PKG_BUILD) s.require_path = 'lib' - s.autorequire = 'active_resource' - s.has_rdoc = true s.extra_rdoc_files = %w( README ) s.rdoc_options.concat ['--main', 'README'] @@ -81,7 +79,7 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "activeresource" end -Rake::GemPackageTask.new(spec) do |p| +Gem::PackageTask.new(spec) do |p| p.gem_spec = spec p.need_tar = true p.need_zip = true diff --git a/vendor/rails/activeresource/lib/active_resource/version.rb b/vendor/rails/activeresource/lib/active_resource/version.rb index 0e36311c..6ef5f11a 100644 --- a/vendor/rails/activeresource/lib/active_resource/version.rb +++ b/vendor/rails/activeresource/lib/active_resource/version.rb @@ -2,7 +2,7 @@ module ActiveResource module VERSION #:nodoc: MAJOR = 2 MINOR = 3 - TINY = 11 + TINY = 12 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/vendor/rails/activeresource/test/debug.log b/vendor/rails/activeresource/test/debug.log deleted file mode 100644 index e3864578..00000000 --- a/vendor/rails/activeresource/test/debug.log +++ /dev/null @@ -1,11182 +0,0 @@ -# Logfile created on Tue Oct 14 21:53:47 +0200 2008 by / -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0b 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107b 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0b 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0b 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0b 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0b 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0b 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106b 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106b 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120b 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222b 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147b 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147b 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0b 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222b 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107b 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106b 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222b 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0b 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107b 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166b 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0b 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0b 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0b 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106b 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222b 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77b 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208b 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107b 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0b 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0b 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1b 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0b 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0b 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146b 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0b 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0b 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0b 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0b 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106b 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106b 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106b 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106b 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0b 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78b 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92b 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106b 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146b 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55b 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224b 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28b 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149b 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26b 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26b 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103b 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103b 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16b 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74b 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103b 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0b 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107b 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0b 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0b 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0b 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0b 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0b 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0b 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106b 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106b 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120b 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222b 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147b 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147b 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0b 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222b 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107b 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106b 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222b 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0b 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107b 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166b 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0b 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0b 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0b 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106b 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222b 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77b 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208b 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107b 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0b 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0b 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1b 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0b 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0b 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146b 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0b 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0b 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0b 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0b 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106b 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106b 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106b 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106b 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120b 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0b 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78b 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92b 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106b 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146b 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55b 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224b 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28b 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149b 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26b 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26b 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103b 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103b 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16b 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74b 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103b 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (b 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 ( - - David - 2 - -b 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (b 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0b 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (Age can't be blankName can't be blankName must start with a letterPerson quota full for today.b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (Age can't be blankName can't be blankName must start with a letterPerson quota full for today.b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (Age can't be blankName can't be blankName must start with a letterPerson quota full for today.b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (Age can't be blankName can't be blankName must start with a letterPerson quota full for today.b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (Age can't be blankName can't be blankName must start with a letterPerson quota full for today.b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (Age can't be blankName can't be blankName must start with a letterPerson quota full for today.b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 ( - - 25 - Rick - -b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (b 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (b 0.00s) -GET http://37s.sunrise.i:3000/people/3.xml ---> 404 404 (b 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (b 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 ( -
- 12345 Street - 1 -
-b 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 ( -
- 12345 Street - 1 -
-b 0.00s) -GET http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 ( -
- 12345 Street - 1 -
-b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 ( -
- 12345 Street - 1 -
-b 0.00s) -GET http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (b 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 ( - - - Matz - 1 - - - David - 2 - - -b 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 ( - - - David - 2 - - -b 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 ( - - - David - 2 - - -b 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 ( - - - David - 2 - - -b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (b 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 ( -
- 12345 Street - 1 -
-b 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 ( - - - Matz - 1 - - - David - 2 - - -b 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 ( - - David - 2 - -b 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 ( - - David - 2 - -b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 ( -
- 12345 Street - 1 -
-b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 ( -
- 12345 Street - 1 -
-b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 ( -
- 12345 Street - 1 -
-b 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 ( - - - Matz - 1 - - - David - 2 - - -b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 ( - - 25 - Rick - -b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 ( - - - Matz - 1 - - - David - 2 - - -b 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0b 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 ( - - David - 2 - -b 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 ( -
- 12345 Street - 1 -
-b 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 ( - -
- 12345 Street - 1 -
-
-b 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0b 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (b 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (b 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -GET http://localhost:80/people.xml ---> 200 200 ( - - - Matz - 1 - - - David - 2 - - -b 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 ( - -b 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 ( - - - Matz - 1 - - -b 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 ( - - David - 2 - -b 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (b 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (keyvalueb 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0b 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0b 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 ( - - - Matz - 1 - - -b 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (b 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0b 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0b 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (b 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 ( - - Matz - other - 1 - -b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 ( - - Matz - 1 - -b 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 ( -
- 12345 Street - 1 -
-b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 ( -
- 12345 Street - 27519 - 1 -
-b 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 ( -
- 12345 Street - 1 -
-b 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0b 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 ( - - Ryan - -b 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 ( -
- 12345 Street -
-b 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 ( - - Matz - 1 - -b 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 ( - - - Matz - 1 - - -b 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 ([{"name": "Matz", "id": 1}, {"name": "David", "id": 2}]b 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 ( - - - Matz - 1 - - - David - 2 - - -b 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 ([{"name": "David", "id": 2}]b 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 ( - - - David - 2 - - -b 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 ({"name": "David", "id": 2}b 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 ({"name": "David", "id": 2}b 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 ( - - David - 2 - -b 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 ( - - David - 2 - -b 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 ({"name": "Ryan"}b 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 ( - - Ryan - -b 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 ({"name": "David", "id": 2}b 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 ( - - David - 2 - -b 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0.00s) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0.00s) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0.00s) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0.00s) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0.00s) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://localhost:80/people.xml ---> 200 200 (222 0.00s) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0.00s) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0.00s) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0.00s) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0.00s) -POST http://localhost:80/people.xml ---> 201 201 (0 0.00s) -POST http://localhost:80/members.xml ---> 201 201 (1 0.00s) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0.00s) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0.00s) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0.00s) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0.00s) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0.00s) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0.00s) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0.00s) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0.00s) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0.00s) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0.00s) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0.00s) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0.00s) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0.00s) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0.00s) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0.00s) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0.00s) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0.00s) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0.00s) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0.00s) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0.00s) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0.00s) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0.00s) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0.00s) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0.00s) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0ms) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0ms) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -GET http://localhost:80/people.xml ---> 200 200 (222 0ms) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0ms) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -POST http://localhost:80/people.xml ---> 201 201 (0 0ms) -POST http://localhost:80/members.xml ---> 201 201 (1 0ms) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0ms) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0ms) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0ms) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0ms) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0ms) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0ms) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0ms) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0ms) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0ms) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0ms) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0ms) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0ms) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0ms) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -GET http://localhost:80/people.xml ---> 200 200 (222 0ms) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0ms) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -POST http://localhost:80/people.xml ---> 201 201 (0 0ms) -POST http://localhost:80/members.xml ---> 201 201 (1 0ms) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0ms) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0ms) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0ms) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0ms) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0ms) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0ms) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0ms) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0ms) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0ms) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0ms) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0ms) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0ms) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0ms) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -GET http://localhost:80/people.xml ---> 200 200 (222 0ms) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0ms) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -POST http://localhost:80/people.xml ---> 201 201 (0 0ms) -POST http://localhost:80/members.xml ---> 201 201 (1 0ms) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0ms) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0ms) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0ms) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0ms) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0ms) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0ms) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0ms) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0ms) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0ms) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0ms) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0ms) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0ms) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0ms) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -GET http://localhost:80/people.xml ---> 200 200 (222 0ms) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0ms) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -POST http://localhost:80/people.xml ---> 201 201 (0 0ms) -POST http://localhost:80/members.xml ---> 201 201 (1 1ms) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0ms) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0ms) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0ms) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0ms) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0ms) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0ms) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0ms) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0ms) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0ms) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0ms) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0ms) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0ms) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0ms) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -GET http://localhost:80/people.xml ---> 200 200 (222 0ms) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0ms) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -POST http://localhost:80/people.xml ---> 201 201 (0 0ms) -POST http://localhost:80/members.xml ---> 201 201 (1 0ms) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0ms) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0ms) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0ms) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0ms) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0ms) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0ms) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0ms) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0ms) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0ms) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0ms) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0ms) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (230 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -GET http://localhost:80/people.xml ---> 200 200 (222 0ms) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0ms) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -POST http://localhost:80/people.xml ---> 201 201 (0 0ms) -POST http://localhost:80/members.xml ---> 201 201 (1 0ms) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0ms) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0ms) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0ms) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0ms) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0ms) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0ms) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (223 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0ms) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0ms) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -GET http://localhost:80/people.xml ---> 200 200 (222 0ms) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0ms) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -POST http://localhost:80/people.xml ---> 201 201 (0 0ms) -POST http://localhost:80/members.xml ---> 201 201 (1 0ms) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0ms) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0ms) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0ms) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0ms) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0ms) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0ms) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0ms) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0ms) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0ms) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0ms) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0ms) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (223 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0ms) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0ms) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -GET http://localhost:80/people.xml ---> 200 200 (222 0ms) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0ms) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -POST http://localhost:80/people.xml ---> 201 201 (0 0ms) -POST http://localhost:80/members.xml ---> 201 201 (1 0ms) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0ms) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0ms) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0ms) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0ms) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0ms) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0ms) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people.json ---> 200 200 (55 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0ms) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (28 0ms) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0ms) -GET http://somewhere.else:80/people/2.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0ms) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (16 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0ms) -GET http://somewhere.else:80/people/1.json ---> 200 200 (26 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (54 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (223 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0ms) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0ms) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -GET http://localhost:80/people.xml ---> 200 200 (222 0ms) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0ms) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -POST http://localhost:80/people.xml ---> 201 201 (0 0ms) -POST http://localhost:80/members.xml ---> 201 201 (1 0ms) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0ms) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0ms) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0ms) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0ms) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0ms) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0ms) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people.json ---> 200 200 (48 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0ms) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (25 0ms) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0ms) -GET http://somewhere.else:80/people/2.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0ms) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (15 0ms) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (15 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0ms) -GET http://somewhere.else:80/people/1.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (50 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (223 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0ms) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0ms) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -GET http://localhost:80/people.xml ---> 200 200 (222 0ms) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0ms) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -POST http://localhost:80/people.xml ---> 201 201 (0 0ms) -POST http://localhost:80/members.xml ---> 201 201 (1 0ms) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0ms) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0ms) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0ms) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0ms) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0ms) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0ms) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people.json ---> 200 200 (48 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0ms) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (25 0ms) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0ms) -GET http://somewhere.else:80/people/2.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0ms) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (15 0ms) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (15 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0ms) -GET http://somewhere.else:80/people/1.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (50 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0ms) -I, [2009-09-14T21:24:22.919953 #50281] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-09-14T21:24:22.945630 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:22.946693 #50281] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-09-14T21:24:22.946794 #50281] INFO -- : --> 200 200 (107 0ms) -I, [2009-09-14T21:24:22.989426 #50281] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-09-14T21:24:22.989575 #50281] INFO -- : --> 201 201 (0 0ms) -I, [2009-09-14T21:24:22.990381 #50281] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-09-14T21:24:22.990471 #50281] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-14T21:24:22.991355 #50281] INFO -- : POST http://localhost:80/people/2.xml -I, [2009-09-14T21:24:22.991574 #50281] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-09-14T21:24:22.991747 #50281] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-09-14T21:24:22.991942 #50281] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-09-14T21:24:23.021253 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-09-14T21:24:23.021420 #50281] INFO -- : --> 422 422 (118 0ms) -I, [2009-09-14T21:24:23.027192 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-14T21:24:23.027344 #50281] INFO -- : --> 422 422 (209 0ms) -I, [2009-09-14T21:24:23.030327 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-09-14T21:24:23.030465 #50281] INFO -- : --> 422 422 (118 0ms) -I, [2009-09-14T21:24:23.031293 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-14T21:24:23.031389 #50281] INFO -- : --> 422 422 (209 0ms) -I, [2009-09-14T21:24:23.033508 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-09-14T21:24:23.033632 #50281] INFO -- : --> 422 422 (118 0ms) -I, [2009-09-14T21:24:23.034615 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-14T21:24:23.034708 #50281] INFO -- : --> 422 422 (209 0ms) -I, [2009-09-14T21:24:23.036864 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-09-14T21:24:23.036989 #50281] INFO -- : --> 422 422 (118 0ms) -I, [2009-09-14T21:24:23.037978 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-14T21:24:23.038086 #50281] INFO -- : --> 422 422 (209 0ms) -I, [2009-09-14T21:24:23.074441 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-09-14T21:24:23.074586 #50281] INFO -- : --> 422 422 (118 0ms) -I, [2009-09-14T21:24:23.075428 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-14T21:24:23.075520 #50281] INFO -- : --> 422 422 (209 0ms) -I, [2009-09-14T21:24:23.077530 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-09-14T21:24:23.077673 #50281] INFO -- : --> 422 422 (118 0ms) -I, [2009-09-14T21:24:23.078663 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-14T21:24:23.078793 #50281] INFO -- : --> 422 422 (209 0ms) -I, [2009-09-14T21:24:23.095453 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.095594 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.146805 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.146971 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.148565 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.148687 #50281] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-14T21:24:23.162103 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-14T21:24:23.162316 #50281] INFO -- : --> 201 201 (109 0ms) -I, [2009-09-14T21:24:23.165790 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-14T21:24:23.165954 #50281] INFO -- : --> 409 409 (0 0ms) -I, [2009-09-14T21:24:23.176076 #50281] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-09-14T21:24:23.176250 #50281] INFO -- : --> 201 201 (0 0ms) -I, [2009-09-14T21:24:23.186390 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-14T21:24:23.186781 #50281] INFO -- : --> 201 201 (0 0ms) -I, [2009-09-14T21:24:23.330055 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-14T21:24:23.330203 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.339513 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/4.xml -I, [2009-09-14T21:24:23.339662 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:23.362630 #50281] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.362845 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.363077 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.363158 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:23.374985 #50281] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.375153 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.375382 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.375466 #50281] INFO -- : --> 410 410 (0 0ms) -I, [2009-09-14T21:24:23.383843 #50281] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.384099 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.384431 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.384594 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:23.394988 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.395181 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.397116 #50281] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.397287 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.397578 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.397670 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:23.406314 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.406475 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.408011 #50281] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.408116 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.408365 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.408446 #50281] INFO -- : --> 410 410 (0 0ms) -I, [2009-09-14T21:24:23.416351 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.416547 #50281] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-14T21:24:23.419011 #50281] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.419228 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.419568 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.419668 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:23.428427 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.428624 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.428752 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml -I, [2009-09-14T21:24:23.428838 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:23.429219 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.429404 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.430935 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.431045 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.431276 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml -I, [2009-09-14T21:24:23.431365 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:23.431532 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.431619 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.431743 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml -I, [2009-09-14T21:24:23.431829 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:23.431979 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml -I, [2009-09-14T21:24:23.432064 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:23.432217 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.432296 #50281] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-14T21:24:23.433516 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.433622 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.433799 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml -I, [2009-09-14T21:24:23.433886 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:23.434085 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml -I, [2009-09-14T21:24:23.434172 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:23.441773 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.441900 #50281] INFO -- : --> 410 410 (0 0ms) -I, [2009-09-14T21:24:23.449974 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-14T21:24:23.450139 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.450400 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-14T21:24:23.450528 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.452128 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-14T21:24:23.452268 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.452416 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-14T21:24:23.452490 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.453675 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2009-09-14T21:24:23.453779 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.453913 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-14T21:24:23.453987 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.455126 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2009-09-14T21:24:23.455223 #50281] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-14T21:24:23.456462 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2009-09-14T21:24:23.456590 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.464525 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/not-mocked.xml -I, [2009-09-14T21:24:23.464708 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:23.487339 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.487501 #50281] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-14T21:24:23.547774 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/5.xml -I, [2009-09-14T21:24:23.547935 #50281] INFO -- : --> 200 200 (223 0ms) -I, [2009-09-14T21:24:23.557598 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.557752 #50281] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-14T21:24:23.567067 #50281] INFO -- : GET http://37s.sunrise.i:3000/customers/1.xml -I, [2009-09-14T21:24:23.567231 #50281] INFO -- : --> 200 200 (1458 0ms) -I, [2009-09-14T21:24:23.634160 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-14T21:24:23.634325 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.635884 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-14T21:24:23.636076 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.644907 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.645150 #50281] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-14T21:24:23.646829 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.646933 #50281] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-14T21:24:23.655574 #50281] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2009-09-14T21:24:23.655724 #50281] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-14T21:24:23.658096 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.658187 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.666947 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-14T21:24:23.667087 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.675971 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-14T21:24:23.676100 #50281] INFO -- : --> 201 201 (109 0ms) -I, [2009-09-14T21:24:23.685888 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-14T21:24:23.686045 #50281] INFO -- : --> 201 201 (109 0ms) -I, [2009-09-14T21:24:23.873414 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-14T21:24:23.873599 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.882478 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-14T21:24:23.882616 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:23.893034 #50281] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-14T21:24:23.893189 #50281] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-14T21:24:23.896017 #50281] INFO -- : PUT http://somewhere.else:80/people/1.xml -I, [2009-09-14T21:24:23.896124 #50281] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-14T21:24:23.955127 #50281] INFO -- : GET http://somewhere.else:80/people/2.xml -I, [2009-09-14T21:24:23.955293 #50281] INFO -- : --> 200 200 (107 0ms) -I, [2009-09-14T21:24:23.957219 #50281] INFO -- : PUT http://somewhere.else:80/people/2.xml -I, [2009-09-14T21:24:23.957339 #50281] INFO -- : --> 409 409 (0 0ms) -I, [2009-09-14T21:24:23.965430 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.965710 #50281] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-14T21:24:23.967738 #50281] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.967868 #50281] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-14T21:24:23.975448 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-09-14T21:24:23.975598 #50281] INFO -- : --> 200 200 (166 0ms) -I, [2009-09-14T21:24:23.977737 #50281] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:23.977847 #50281] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-14T21:24:24.026581 #50281] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-09-14T21:24:24.026763 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:24.030444 #50281] INFO -- : DELETE http://localhost:80/people/1.xml -I, [2009-09-14T21:24:24.030580 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:24.032557 #50281] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-09-14T21:24:24.032652 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:24.034638 #50281] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-09-14T21:24:24.034732 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:24.038170 #50281] INFO -- : GET http://localhost:80/people.xml -I, [2009-09-14T21:24:24.038291 #50281] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-14T21:24:24.042378 #50281] INFO -- : GET http://localhost:80/people_empty_elements.xml -I, [2009-09-14T21:24:24.042487 #50281] INFO -- : --> 200 200 (77 0ms) -I, [2009-09-14T21:24:24.045491 #50281] INFO -- : GET http://localhost:80/people_single_elements.xml -I, [2009-09-14T21:24:24.045670 #50281] INFO -- : --> 200 200 (208 0ms) -I, [2009-09-14T21:24:24.049464 #50281] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-09-14T21:24:24.049653 #50281] INFO -- : --> 200 200 (107 0ms) -I, [2009-09-14T21:24:24.056120 #50281] INFO -- : HEAD http://localhost:80/people/1.xml -I, [2009-09-14T21:24:24.056254 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:24.060249 #50281] INFO -- : POST http://localhost:80/people.xml -I, [2009-09-14T21:24:24.060392 #50281] INFO -- : --> 201 201 (0 0ms) -I, [2009-09-14T21:24:24.062543 #50281] INFO -- : POST http://localhost:80/members.xml -I, [2009-09-14T21:24:24.062648 #50281] INFO -- : --> 201 201 (1 0ms) -I, [2009-09-14T21:24:24.066784 #50281] INFO -- : PUT http://localhost:80/people/1.xml -I, [2009-09-14T21:24:24.066895 #50281] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-14T21:24:24.068860 #50281] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-09-14T21:24:24.068955 #50281] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-14T21:24:24.077541 #50281] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-09-14T21:24:24.103909 #50281] INFO -- : GET http://localhost:80/people_timeout.xml -I, [2009-09-14T21:24:24.108652 #50281] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=Matz -I, [2009-09-14T21:24:24.108779 #50281] INFO -- : --> 200 200 (146 0ms) -I, [2009-09-14T21:24:24.110569 #50281] INFO -- : POST http://somewhere.else:80/people/hire.xml?name=Matz -I, [2009-09-14T21:24:24.110669 #50281] INFO -- : --> 201 201 (0 0ms) -I, [2009-09-14T21:24:24.110824 #50281] INFO -- : PUT http://somewhere.else:80/people/promote.xml?name=Matz -I, [2009-09-14T21:24:24.110902 #50281] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-14T21:24:24.111055 #50281] INFO -- : PUT http://somewhere.else:80/people/sort.xml?by=name -I, [2009-09-14T21:24:24.111141 #50281] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-14T21:24:24.111284 #50281] INFO -- : DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz -I, [2009-09-14T21:24:24.111361 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:24.111507 #50281] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name -I, [2009-09-14T21:24:24.111588 #50281] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-14T21:24:24.113906 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-14T21:24:24.114000 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:24.115291 #50281] INFO -- : GET http://somewhere.else:80/people/1/shallow.xml -I, [2009-09-14T21:24:24.115376 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:24.116519 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-14T21:24:24.116627 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:24.117864 #50281] INFO -- : GET http://somewhere.else:80/people/1/deep.xml -I, [2009-09-14T21:24:24.117958 #50281] INFO -- : --> 200 200 (129 0ms) -I, [2009-09-14T21:24:24.119237 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-14T21:24:24.119317 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:24.120440 #50281] INFO -- : PUT http://somewhere.else:80/people/1/promote.xml?position=Manager -I, [2009-09-14T21:24:24.120526 #50281] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-14T21:24:24.120669 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-14T21:24:24.120741 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:24.121860 #50281] INFO -- : DELETE http://somewhere.else:80/people/1/deactivate.xml -I, [2009-09-14T21:24:24.121951 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:24.122101 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:24.122181 #50281] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-14T21:24:24.123443 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml -I, [2009-09-14T21:24:24.123538 #50281] INFO -- : --> 200 200 (139 0ms) -I, [2009-09-14T21:24:24.125436 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:24.125696 #50281] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-14T21:24:24.127093 #50281] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US -I, [2009-09-14T21:24:24.127255 #50281] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-14T21:24:24.129973 #50281] INFO -- : POST http://somewhere.else:80/people/new/register.xml -I, [2009-09-14T21:24:24.130094 #50281] INFO -- : --> 201 201 (78 0ms) -I, [2009-09-14T21:24:24.130675 #50281] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml -I, [2009-09-14T21:24:24.130760 #50281] INFO -- : --> 201 201 (92 0ms) -I, [2009-09-14T21:24:24.131220 #50281] INFO -- : POST http://somewhere.else:80/people/1/register.xml -I, [2009-09-14T21:24:24.131301 #50281] INFO -- : --> 201 201 (106 0ms) -I, [2009-09-14T21:24:24.133757 #50281] INFO -- : GET http://somewhere.else:80/people/managers.xml -I, [2009-09-14T21:24:24.133859 #50281] INFO -- : --> 200 200 (146 0ms) -I, [2009-09-14T21:24:24.195154 #50281] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-14T21:24:24.195311 #50281] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-14T21:24:24.205812 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-09-14T21:24:24.205970 #50281] INFO -- : --> 200 200 (166 0ms) -I, [2009-09-14T21:24:24.215313 #50281] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-14T21:24:24.215456 #50281] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-14T21:24:24.225355 #50281] INFO -- : GET http://somewhere.else:80/companies/1/people.xml -I, [2009-09-14T21:24:24.225495 #50281] INFO -- : --> 200 200 (147 0ms) -I, [2009-09-14T21:24:24.234791 #50281] INFO -- : GET http://somewhere.else:80/companies/1/people.xml -I, [2009-09-14T21:24:24.234929 #50281] INFO -- : --> 200 200 (147 0ms) -I, [2009-09-14T21:24:24.244271 #50281] INFO -- : GET http://somewhere.else:80/people/managers.xml -I, [2009-09-14T21:24:24.244456 #50281] INFO -- : --> 200 200 (147 0ms) -I, [2009-09-14T21:24:24.254442 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-09-14T21:24:24.254604 #50281] INFO -- : --> 200 200 (166 0ms) -I, [2009-09-14T21:24:24.263912 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/2/addresses.xml -I, [2009-09-14T21:24:24.264054 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:24.271426 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-14T21:24:24.271547 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:24.280591 #50281] INFO -- : GET http://somewhere.else:80/people/99.xml -I, [2009-09-14T21:24:24.280738 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:24.280955 #50281] INFO -- : GET http://37s.sunrise.i:3000/people//addresses/1.xml -I, [2009-09-14T21:24:24.281041 #50281] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-14T21:24:24.288805 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-14T21:24:24.288950 #50281] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-14T21:24:24.297915 #50281] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-14T21:24:24.298064 #50281] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-14T21:24:24.308063 #50281] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-14T21:24:24.308210 #50281] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-14T21:24:24.318114 #50281] INFO -- : GET http://somewhere.else:80/companies/1/manager.xml -I, [2009-09-14T21:24:24.318250 #50281] INFO -- : --> 200 200 (107 0ms) -I, [2009-09-14T21:24:24.327230 #50281] INFO -- : GET http://somewhere.else:80/people/leader.xml -I, [2009-09-14T21:24:24.327378 #50281] INFO -- : --> 200 200 (107 0ms) -I, [2009-09-14T21:24:24.336108 #50281] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-14T21:24:24.336247 #50281] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-14T21:24:24.395267 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-09-14T21:24:24.395418 #50281] INFO -- : --> 200 200 (166 0ms) -I, [2009-09-14T21:24:24.405022 #50281] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-14T21:24:24.405322 #50281] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-14T21:24:24.415551 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-09-14T21:24:24.415694 #50281] INFO -- : --> 200 200 (166 0ms) -I, [2009-09-14T21:24:24.417811 #50281] INFO -- : GET http://somewhere.else:80/people.json -I, [2009-09-14T21:24:24.417919 #50281] INFO -- : --> 200 200 (48 0ms) -I, [2009-09-14T21:24:24.419132 #50281] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-14T21:24:24.419229 #50281] INFO -- : --> 200 200 (224 0ms) -I, [2009-09-14T21:24:24.422099 #50281] INFO -- : GET http://somewhere.else:80/people/retrieve.json?name=David -I, [2009-09-14T21:24:24.422224 #50281] INFO -- : --> 200 200 (25 0ms) -I, [2009-09-14T21:24:24.423053 #50281] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=David -I, [2009-09-14T21:24:24.423134 #50281] INFO -- : --> 200 200 (149 0ms) -I, [2009-09-14T21:24:24.425043 #50281] INFO -- : GET http://somewhere.else:80/people/2.json -I, [2009-09-14T21:24:24.425139 #50281] INFO -- : --> 200 200 (23 0ms) -I, [2009-09-14T21:24:24.425427 #50281] INFO -- : GET http://somewhere.else:80/people/2/shallow.json -I, [2009-09-14T21:24:24.425508 #50281] INFO -- : --> 200 200 (23 0ms) -I, [2009-09-14T21:24:24.426363 #50281] INFO -- : GET http://somewhere.else:80/people/2.xml -I, [2009-09-14T21:24:24.426443 #50281] INFO -- : --> 200 200 (103 0ms) -I, [2009-09-14T21:24:24.427693 #50281] INFO -- : GET http://somewhere.else:80/people/2/shallow.xml -I, [2009-09-14T21:24:24.427777 #50281] INFO -- : --> 200 200 (103 0ms) -I, [2009-09-14T21:24:24.429095 #50281] INFO -- : POST http://somewhere.else:80/people.json -I, [2009-09-14T21:24:24.429296 #50281] INFO -- : --> 201 201 (15 0ms) -I, [2009-09-14T21:24:24.429634 #50281] INFO -- : POST http://somewhere.else:80/people/new/register.json -I, [2009-09-14T21:24:24.429713 #50281] INFO -- : --> 201 201 (15 0ms) -I, [2009-09-14T21:24:24.430327 #50281] INFO -- : POST http://somewhere.else:80/people.xml -I, [2009-09-14T21:24:24.430404 #50281] INFO -- : --> 201 201 (74 0ms) -I, [2009-09-14T21:24:24.431694 #50281] INFO -- : POST http://somewhere.else:80/people/new/register.xml -I, [2009-09-14T21:24:24.431786 #50281] INFO -- : --> 201 201 (74 0ms) -I, [2009-09-14T21:24:24.432223 #50281] INFO -- : GET http://somewhere.else:80/people/1.json -I, [2009-09-14T21:24:24.432307 #50281] INFO -- : --> 200 200 (23 0ms) -I, [2009-09-14T21:24:24.432986 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-14T21:24:24.433074 #50281] INFO -- : --> 200 200 (103 0ms) -I, [2009-09-14T21:24:24.435294 #50281] INFO -- : POST http://somewhere.else:80/people.json -I, [2009-09-14T21:24:24.435404 #50281] INFO -- : --> 201 201 (50 0ms) -I, [2009-09-14T21:24:24.436642 #50281] INFO -- : POST http://somewhere.else:80/people.xml -I, [2009-09-14T21:24:24.436722 #50281] INFO -- : --> 201 201 (132 0ms) -I, [2009-09-14T21:24:24.439316 #50281] INFO -- : POST http://somewhere.else:80/people.xml -I, [2009-09-14T21:24:24.439431 #50281] INFO -- : --> 201 201 (106 0ms) -I, [2009-09-14T21:24:24.441278 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-14T21:24:24.441377 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:24.442635 #50281] INFO -- : DELETE http://somewhere.else:80/people/1.xml -I, [2009-09-14T21:24:24.442730 #50281] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-14T21:24:24.443356 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-14T21:24:24.443441 #50281] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-14T21:24:24.445406 #50281] INFO -- : PUT http://somewhere.else:80/people/1.xml -I, [2009-09-14T21:24:24.445599 #50281] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-14T21:24:24.447940 #50281] INFO -- : POST http://37s.sunrise.i:3000/projects.xml -I, [2009-09-14T21:24:24.448044 #50281] INFO -- : --> 201 201 (123 0ms) -I, [2009-09-14T21:24:24.451356 #50281] INFO -- : POST http://37s.sunrise.i:3000/projects.xml -I, [2009-09-14T21:24:24.451491 #50281] INFO -- : --> 201 201 (123 0ms) -I, [2009-09-28T14:52:01.460213 #26952] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-09-28T14:52:01.460470 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.461456 #26952] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-09-28T14:52:01.461579 #26952] INFO -- : --> 200 200 (107 0ms) -I, [2009-09-28T14:52:01.504344 #26952] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-09-28T14:52:01.504498 #26952] INFO -- : --> 201 201 (0 0ms) -I, [2009-09-28T14:52:01.505429 #26952] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-09-28T14:52:01.505534 #26952] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-28T14:52:01.506435 #26952] INFO -- : POST http://localhost:80/people/2.xml -I, [2009-09-28T14:52:01.506665 #26952] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-09-28T14:52:01.506845 #26952] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-09-28T14:52:01.507014 #26952] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-09-28T14:52:01.535014 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-09-28T14:52:01.535176 #26952] INFO -- : --> 422 422 (118 0ms) -I, [2009-09-28T14:52:01.540865 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-28T14:52:01.541020 #26952] INFO -- : --> 422 422 (209 0ms) -I, [2009-09-28T14:52:01.543553 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-09-28T14:52:01.543681 #26952] INFO -- : --> 422 422 (118 0ms) -I, [2009-09-28T14:52:01.544522 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-28T14:52:01.544631 #26952] INFO -- : --> 422 422 (209 0ms) -I, [2009-09-28T14:52:01.579554 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-09-28T14:52:01.579708 #26952] INFO -- : --> 422 422 (118 0ms) -I, [2009-09-28T14:52:01.580736 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-28T14:52:01.580835 #26952] INFO -- : --> 422 422 (209 0ms) -I, [2009-09-28T14:52:01.583063 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-09-28T14:52:01.583185 #26952] INFO -- : --> 422 422 (118 0ms) -I, [2009-09-28T14:52:01.584123 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-28T14:52:01.584216 #26952] INFO -- : --> 422 422 (209 0ms) -I, [2009-09-28T14:52:01.587445 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-09-28T14:52:01.587573 #26952] INFO -- : --> 422 422 (118 0ms) -I, [2009-09-28T14:52:01.588401 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-28T14:52:01.588494 #26952] INFO -- : --> 422 422 (209 0ms) -I, [2009-09-28T14:52:01.590570 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-09-28T14:52:01.590684 #26952] INFO -- : --> 422 422 (118 0ms) -I, [2009-09-28T14:52:01.591506 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-28T14:52:01.591596 #26952] INFO -- : --> 422 422 (209 0ms) -I, [2009-09-28T14:52:01.606746 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.606893 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:01.653619 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.653775 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:01.655365 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:01.655480 #26952] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-28T14:52:01.665085 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-28T14:52:01.665227 #26952] INFO -- : --> 201 201 (109 0ms) -I, [2009-09-28T14:52:01.667305 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-28T14:52:01.667423 #26952] INFO -- : --> 409 409 (0 0ms) -I, [2009-09-28T14:52:01.675679 #26952] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-09-28T14:52:01.675851 #26952] INFO -- : --> 201 201 (0 0ms) -I, [2009-09-28T14:52:01.684069 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-28T14:52:01.684211 #26952] INFO -- : --> 201 201 (0 0ms) -I, [2009-09-28T14:52:01.808680 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-28T14:52:01.808883 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:01.817842 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/4.xml -I, [2009-09-28T14:52:01.817990 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:01.832680 #26952] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.832825 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.833037 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.833114 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:01.840485 #26952] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.840614 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.840819 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.840895 #26952] INFO -- : --> 410 410 (0 0ms) -I, [2009-09-28T14:52:01.848751 #26952] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:01.848893 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.849110 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:01.849196 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:01.856609 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.856732 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:01.858119 #26952] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.858214 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.858424 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.858500 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:01.866181 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.866340 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:01.867802 #26952] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.867916 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.868144 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.868225 #26952] INFO -- : --> 410 410 (0 0ms) -I, [2009-09-28T14:52:01.875539 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:01.875660 #26952] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-28T14:52:01.877418 #26952] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:01.877569 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.877857 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:01.878131 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:01.885664 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.885799 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.885927 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml -I, [2009-09-28T14:52:01.886013 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:01.886216 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.886291 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:01.887652 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.887756 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.887934 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml -I, [2009-09-28T14:52:01.888022 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:01.888192 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:01.888283 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.888442 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml -I, [2009-09-28T14:52:01.888533 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:01.888690 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml -I, [2009-09-28T14:52:01.888823 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:01.888982 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:01.889061 #26952] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-28T14:52:01.890277 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:01.890374 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.890552 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml -I, [2009-09-28T14:52:01.890640 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:01.890840 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml -I, [2009-09-28T14:52:01.890927 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:01.898320 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:01.898442 #26952] INFO -- : --> 410 410 (0 0ms) -I, [2009-09-28T14:52:01.906003 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-28T14:52:01.906154 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.906302 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-28T14:52:01.906378 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:01.907770 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-28T14:52:01.907883 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.908023 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-28T14:52:01.908099 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:01.909310 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2009-09-28T14:52:01.909417 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.909559 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-28T14:52:01.909634 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:01.910770 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2009-09-28T14:52:01.910859 #26952] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-28T14:52:01.912055 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2009-09-28T14:52:01.912167 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.920207 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/not-mocked.xml -I, [2009-09-28T14:52:01.920393 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:01.943331 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:01.943495 #26952] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-28T14:52:02.004029 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/5.xml -I, [2009-09-28T14:52:02.004180 #26952] INFO -- : --> 200 200 (223 0ms) -I, [2009-09-28T14:52:02.013630 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:02.013778 #26952] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-28T14:52:02.023169 #26952] INFO -- : GET http://37s.sunrise.i:3000/customers/1.xml -I, [2009-09-28T14:52:02.023330 #26952] INFO -- : --> 200 200 (1458 0ms) -I, [2009-09-28T14:52:02.089768 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-28T14:52:02.089922 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.091439 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-09-28T14:52:02.091540 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.100044 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:02.100179 #26952] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-28T14:52:02.101524 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:02.101622 #26952] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-28T14:52:02.110278 #26952] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2009-09-28T14:52:02.110439 #26952] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-28T14:52:02.113141 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:02.113322 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.121832 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-09-28T14:52:02.121968 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.130868 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-28T14:52:02.131009 #26952] INFO -- : --> 201 201 (109 0ms) -I, [2009-09-28T14:52:02.188388 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-09-28T14:52:02.188560 #26952] INFO -- : --> 201 201 (109 0ms) -I, [2009-09-28T14:52:02.324244 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-28T14:52:02.324402 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.333306 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-28T14:52:02.333446 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.342591 #26952] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-28T14:52:02.342736 #26952] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-28T14:52:02.395093 #26952] INFO -- : PUT http://somewhere.else:80/people/1.xml -I, [2009-09-28T14:52:02.395255 #26952] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-28T14:52:02.402985 #26952] INFO -- : GET http://somewhere.else:80/people/2.xml -I, [2009-09-28T14:52:02.403127 #26952] INFO -- : --> 200 200 (107 0ms) -I, [2009-09-28T14:52:02.404916 #26952] INFO -- : PUT http://somewhere.else:80/people/2.xml -I, [2009-09-28T14:52:02.405022 #26952] INFO -- : --> 409 409 (0 0ms) -I, [2009-09-28T14:52:02.412655 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:02.412819 #26952] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-28T14:52:02.414692 #26952] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:02.414809 #26952] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-28T14:52:02.422142 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-09-28T14:52:02.422266 #26952] INFO -- : --> 200 200 (166 0ms) -I, [2009-09-28T14:52:02.424368 #26952] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:02.424477 #26952] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-28T14:52:02.472662 #26952] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-09-28T14:52:02.472847 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.476152 #26952] INFO -- : DELETE http://localhost:80/people/1.xml -I, [2009-09-28T14:52:02.476273 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:02.478207 #26952] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-09-28T14:52:02.478310 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:02.480262 #26952] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-09-28T14:52:02.480415 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.483905 #26952] INFO -- : GET http://localhost:80/people.xml -I, [2009-09-28T14:52:02.484031 #26952] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-28T14:52:02.488297 #26952] INFO -- : GET http://localhost:80/people_empty_elements.xml -I, [2009-09-28T14:52:02.488429 #26952] INFO -- : --> 200 200 (77 0ms) -I, [2009-09-28T14:52:02.491054 #26952] INFO -- : GET http://localhost:80/people_single_elements.xml -I, [2009-09-28T14:52:02.491162 #26952] INFO -- : --> 200 200 (208 0ms) -I, [2009-09-28T14:52:02.494574 #26952] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-09-28T14:52:02.494692 #26952] INFO -- : --> 200 200 (107 0ms) -I, [2009-09-28T14:52:02.500795 #26952] INFO -- : HEAD http://localhost:80/people/1.xml -I, [2009-09-28T14:52:02.500918 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:02.505916 #26952] INFO -- : POST http://localhost:80/people.xml -I, [2009-09-28T14:52:02.506066 #26952] INFO -- : --> 201 201 (0 0ms) -I, [2009-09-28T14:52:02.508113 #26952] INFO -- : POST http://localhost:80/members.xml -I, [2009-09-28T14:52:02.508208 #26952] INFO -- : --> 201 201 (1 0ms) -I, [2009-09-28T14:52:02.512453 #26952] INFO -- : PUT http://localhost:80/people/1.xml -I, [2009-09-28T14:52:02.512617 #26952] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-28T14:52:02.514660 #26952] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-09-28T14:52:02.514759 #26952] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-28T14:52:02.523517 #26952] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-09-28T14:52:02.528732 #26952] INFO -- : GET http://localhost:80/people_timeout.xml -I, [2009-09-28T14:52:02.533369 #26952] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=Matz -I, [2009-09-28T14:52:02.533485 #26952] INFO -- : --> 200 200 (146 0ms) -I, [2009-09-28T14:52:02.535225 #26952] INFO -- : POST http://somewhere.else:80/people/hire.xml?name=Matz -I, [2009-09-28T14:52:02.535341 #26952] INFO -- : --> 201 201 (0 0ms) -I, [2009-09-28T14:52:02.535501 #26952] INFO -- : PUT http://somewhere.else:80/people/promote.xml?name=Matz -I, [2009-09-28T14:52:02.535581 #26952] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-28T14:52:02.535735 #26952] INFO -- : PUT http://somewhere.else:80/people/sort.xml?by=name -I, [2009-09-28T14:52:02.535812 #26952] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-28T14:52:02.535959 #26952] INFO -- : DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz -I, [2009-09-28T14:52:02.536039 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:02.536187 #26952] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name -I, [2009-09-28T14:52:02.536270 #26952] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-28T14:52:02.538740 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-28T14:52:02.538839 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.540189 #26952] INFO -- : GET http://somewhere.else:80/people/1/shallow.xml -I, [2009-09-28T14:52:02.540302 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.541635 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-28T14:52:02.541760 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.543200 #26952] INFO -- : GET http://somewhere.else:80/people/1/deep.xml -I, [2009-09-28T14:52:02.543313 #26952] INFO -- : --> 200 200 (129 0ms) -I, [2009-09-28T14:52:02.544837 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-28T14:52:02.544929 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.546096 #26952] INFO -- : PUT http://somewhere.else:80/people/1/promote.xml?position=Manager -I, [2009-09-28T14:52:02.546274 #26952] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-28T14:52:02.546445 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-28T14:52:02.546521 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.547738 #26952] INFO -- : DELETE http://somewhere.else:80/people/1/deactivate.xml -I, [2009-09-28T14:52:02.547834 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:02.547990 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:02.548072 #26952] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-28T14:52:02.549234 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml -I, [2009-09-28T14:52:02.549326 #26952] INFO -- : --> 200 200 (139 0ms) -I, [2009-09-28T14:52:02.550709 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:02.550808 #26952] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-28T14:52:02.604786 #26952] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US -I, [2009-09-28T14:52:02.604956 #26952] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-28T14:52:02.607742 #26952] INFO -- : POST http://somewhere.else:80/people/new/register.xml -I, [2009-09-28T14:52:02.607876 #26952] INFO -- : --> 201 201 (78 0ms) -I, [2009-09-28T14:52:02.608498 #26952] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml -I, [2009-09-28T14:52:02.608596 #26952] INFO -- : --> 201 201 (92 0ms) -I, [2009-09-28T14:52:02.609063 #26952] INFO -- : POST http://somewhere.else:80/people/1/register.xml -I, [2009-09-28T14:52:02.609197 #26952] INFO -- : --> 201 201 (106 0ms) -I, [2009-09-28T14:52:02.611577 #26952] INFO -- : GET http://somewhere.else:80/people/managers.xml -I, [2009-09-28T14:52:02.611681 #26952] INFO -- : --> 200 200 (146 0ms) -I, [2009-09-28T14:52:02.621305 #26952] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-28T14:52:02.621466 #26952] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-28T14:52:02.632147 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-09-28T14:52:02.632303 #26952] INFO -- : --> 200 200 (166 0ms) -I, [2009-09-28T14:52:02.641954 #26952] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-28T14:52:02.642104 #26952] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-28T14:52:02.651960 #26952] INFO -- : GET http://somewhere.else:80/companies/1/people.xml -I, [2009-09-28T14:52:02.652098 #26952] INFO -- : --> 200 200 (147 0ms) -I, [2009-09-28T14:52:02.661335 #26952] INFO -- : GET http://somewhere.else:80/companies/1/people.xml -I, [2009-09-28T14:52:02.661490 #26952] INFO -- : --> 200 200 (147 0ms) -I, [2009-09-28T14:52:02.670678 #26952] INFO -- : GET http://somewhere.else:80/people/managers.xml -I, [2009-09-28T14:52:02.670813 #26952] INFO -- : --> 200 200 (147 0ms) -I, [2009-09-28T14:52:02.680093 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-09-28T14:52:02.680271 #26952] INFO -- : --> 200 200 (166 0ms) -I, [2009-09-28T14:52:02.689394 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/2/addresses.xml -I, [2009-09-28T14:52:02.689543 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:02.697043 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-28T14:52:02.697172 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.706010 #26952] INFO -- : GET http://somewhere.else:80/people/99.xml -I, [2009-09-28T14:52:02.706149 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:02.706364 #26952] INFO -- : GET http://37s.sunrise.i:3000/people//addresses/1.xml -I, [2009-09-28T14:52:02.706450 #26952] INFO -- : --> 404 404 (0 0ms) -I, [2009-09-28T14:52:02.714361 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-09-28T14:52:02.714500 #26952] INFO -- : --> 200 200 (120 0ms) -I, [2009-09-28T14:52:02.723666 #26952] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-28T14:52:02.723814 #26952] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-28T14:52:02.733784 #26952] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-28T14:52:02.733957 #26952] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-28T14:52:02.743608 #26952] INFO -- : GET http://somewhere.else:80/companies/1/manager.xml -I, [2009-09-28T14:52:02.743738 #26952] INFO -- : --> 200 200 (107 0ms) -I, [2009-09-28T14:52:02.752763 #26952] INFO -- : GET http://somewhere.else:80/people/leader.xml -I, [2009-09-28T14:52:02.752925 #26952] INFO -- : --> 200 200 (107 0ms) -I, [2009-09-28T14:52:02.811759 #26952] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-28T14:52:02.811920 #26952] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-28T14:52:02.822307 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-09-28T14:52:02.822474 #26952] INFO -- : --> 200 200 (166 0ms) -I, [2009-09-28T14:52:02.831621 #26952] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-28T14:52:02.831767 #26952] INFO -- : --> 200 200 (222 0ms) -I, [2009-09-28T14:52:02.841653 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-09-28T14:52:02.841792 #26952] INFO -- : --> 200 200 (166 0ms) -I, [2009-09-28T14:52:02.843917 #26952] INFO -- : GET http://somewhere.else:80/people.json -I, [2009-09-28T14:52:02.844023 #26952] INFO -- : --> 200 200 (48 0ms) -I, [2009-09-28T14:52:02.845200 #26952] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-09-28T14:52:02.845282 #26952] INFO -- : --> 200 200 (224 0ms) -I, [2009-09-28T14:52:02.847996 #26952] INFO -- : GET http://somewhere.else:80/people/retrieve.json?name=David -I, [2009-09-28T14:52:02.848112 #26952] INFO -- : --> 200 200 (25 0ms) -I, [2009-09-28T14:52:02.849066 #26952] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=David -I, [2009-09-28T14:52:02.849188 #26952] INFO -- : --> 200 200 (149 0ms) -I, [2009-09-28T14:52:02.851277 #26952] INFO -- : GET http://somewhere.else:80/people/2.json -I, [2009-09-28T14:52:02.851398 #26952] INFO -- : --> 200 200 (23 0ms) -I, [2009-09-28T14:52:02.851710 #26952] INFO -- : GET http://somewhere.else:80/people/2/shallow.json -I, [2009-09-28T14:52:02.851786 #26952] INFO -- : --> 200 200 (23 0ms) -I, [2009-09-28T14:52:02.852810 #26952] INFO -- : GET http://somewhere.else:80/people/2.xml -I, [2009-09-28T14:52:02.852899 #26952] INFO -- : --> 200 200 (103 0ms) -I, [2009-09-28T14:52:02.854292 #26952] INFO -- : GET http://somewhere.else:80/people/2/shallow.xml -I, [2009-09-28T14:52:02.854389 #26952] INFO -- : --> 200 200 (103 0ms) -I, [2009-09-28T14:52:02.855825 #26952] INFO -- : POST http://somewhere.else:80/people.json -I, [2009-09-28T14:52:02.855924 #26952] INFO -- : --> 201 201 (15 0ms) -I, [2009-09-28T14:52:02.856267 #26952] INFO -- : POST http://somewhere.else:80/people/new/register.json -I, [2009-09-28T14:52:02.856348 #26952] INFO -- : --> 201 201 (15 0ms) -I, [2009-09-28T14:52:02.856969 #26952] INFO -- : POST http://somewhere.else:80/people.xml -I, [2009-09-28T14:52:02.857048 #26952] INFO -- : --> 201 201 (74 0ms) -I, [2009-09-28T14:52:02.858450 #26952] INFO -- : POST http://somewhere.else:80/people/new/register.xml -I, [2009-09-28T14:52:02.858540 #26952] INFO -- : --> 201 201 (74 0ms) -I, [2009-09-28T14:52:02.859000 #26952] INFO -- : GET http://somewhere.else:80/people/1.json -I, [2009-09-28T14:52:02.859086 #26952] INFO -- : --> 200 200 (23 0ms) -I, [2009-09-28T14:52:02.859747 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-28T14:52:02.859825 #26952] INFO -- : --> 200 200 (103 0ms) -I, [2009-09-28T14:52:02.861843 #26952] INFO -- : POST http://somewhere.else:80/people.json -I, [2009-09-28T14:52:02.861948 #26952] INFO -- : --> 201 201 (50 0ms) -I, [2009-09-28T14:52:02.863211 #26952] INFO -- : POST http://somewhere.else:80/people.xml -I, [2009-09-28T14:52:02.863297 #26952] INFO -- : --> 201 201 (132 0ms) -I, [2009-09-28T14:52:02.865978 #26952] INFO -- : POST http://somewhere.else:80/people.xml -I, [2009-09-28T14:52:02.866106 #26952] INFO -- : --> 201 201 (106 0ms) -I, [2009-09-28T14:52:02.868541 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-28T14:52:02.868704 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.870297 #26952] INFO -- : DELETE http://somewhere.else:80/people/1.xml -I, [2009-09-28T14:52:02.870434 #26952] INFO -- : --> 200 200 (0 0ms) -I, [2009-09-28T14:52:02.871137 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-09-28T14:52:02.871229 #26952] INFO -- : --> 200 200 (106 0ms) -I, [2009-09-28T14:52:02.872891 #26952] INFO -- : PUT http://somewhere.else:80/people/1.xml -I, [2009-09-28T14:52:02.872986 #26952] INFO -- : --> 204 204 (0 0ms) -I, [2009-09-28T14:52:02.875449 #26952] INFO -- : POST http://37s.sunrise.i:3000/projects.xml -I, [2009-09-28T14:52:02.875560 #26952] INFO -- : --> 201 201 (123 0ms) -I, [2009-09-28T14:52:02.878486 #26952] INFO -- : POST http://37s.sunrise.i:3000/projects.xml -I, [2009-09-28T14:52:02.878596 #26952] INFO -- : --> 201 201 (123 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 410 410 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 410 410 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 410 410 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/not-mocked.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (223 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0ms) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0ms) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -GET http://localhost:80/people.xml ---> 200 200 (222 0ms) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0ms) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -POST http://localhost:80/people.xml ---> 201 201 (0 0ms) -POST http://localhost:80/members.xml ---> 201 201 (1 0ms) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0ms) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0ms) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0ms) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0ms) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0ms) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0ms) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people.json ---> 200 200 (48 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0ms) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (25 0ms) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0ms) -GET http://somewhere.else:80/people/2.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0ms) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (15 0ms) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (15 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0ms) -GET http://somewhere.else:80/people/1.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (50 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0ms) -I, [2009-10-15T10:42:00.965918 #83316] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-10-15T10:42:00.985066 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:00.986753 #83316] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-10-15T10:42:00.986916 #83316] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T10:42:00.987199 #83316] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-10-15T10:42:00.987314 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:00.988691 #83316] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T10:42:00.988812 #83316] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T10:42:01.032768 #83316] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.032922 #83316] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T10:42:01.033165 #83316] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.033259 #83316] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T10:42:01.034861 #83316] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-10-15T10:42:01.035001 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.037408 #83316] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.037542 #83316] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T10:42:01.037776 #83316] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.037869 #83316] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T10:42:01.072145 #83316] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.072300 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.073448 #83316] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.073560 #83316] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T10:42:01.073788 #83316] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.073884 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.075093 #83316] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-10-15T10:42:01.075206 #83316] INFO -- : --> 201 201 (0 0ms) -I, [2009-10-15T10:42:01.076434 #83316] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-10-15T10:42:01.076542 #83316] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T10:42:01.076766 #83316] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-10-15T10:42:01.076906 #83316] INFO -- : --> 201 201 (0 0ms) -I, [2009-10-15T10:42:01.078068 #83316] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.078166 #83316] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T10:42:01.079285 #83316] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.079389 #83316] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T10:42:01.079599 #83316] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.079687 #83316] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T10:42:01.080876 #83316] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.081152 #83316] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-10-15T10:42:01.081387 #83316] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.081625 #83316] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.081858 #83316] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.083196 #83316] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.083467 #83316] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-10-15T10:42:01.083694 #83316] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.083939 #83316] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.084217 #83316] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2009-10-15T10:42:01.085609 #83316] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-10-15T10:42:01.085721 #83316] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T10:42:01.164890 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-10-15T10:42:01.165060 #83316] INFO -- : --> 422 422 (118 0ms) -I, [2009-10-15T10:42:01.194799 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T10:42:01.194968 #83316] INFO -- : --> 422 422 (209 0ms) -I, [2009-10-15T10:42:01.197493 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-10-15T10:42:01.197627 #83316] INFO -- : --> 422 422 (118 0ms) -I, [2009-10-15T10:42:01.198503 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T10:42:01.198591 #83316] INFO -- : --> 422 422 (209 0ms) -I, [2009-10-15T10:42:01.200542 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-10-15T10:42:01.200654 #83316] INFO -- : --> 422 422 (118 0ms) -I, [2009-10-15T10:42:01.201656 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T10:42:01.201744 #83316] INFO -- : --> 422 422 (209 0ms) -I, [2009-10-15T10:42:01.203945 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-10-15T10:42:01.204077 #83316] INFO -- : --> 422 422 (118 0ms) -I, [2009-10-15T10:42:01.205107 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T10:42:01.205198 #83316] INFO -- : --> 422 422 (209 0ms) -I, [2009-10-15T10:42:01.208510 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-10-15T10:42:01.208637 #83316] INFO -- : --> 422 422 (118 0ms) -I, [2009-10-15T10:42:01.209541 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T10:42:01.209639 #83316] INFO -- : --> 422 422 (209 0ms) -I, [2009-10-15T10:42:01.211913 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-10-15T10:42:01.212042 #83316] INFO -- : --> 422 422 (118 0ms) -I, [2009-10-15T10:42:01.212946 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T10:42:01.213044 #83316] INFO -- : --> 422 422 (209 0ms) -I, [2009-10-15T10:42:01.229377 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.229533 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.276696 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.276854 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.278501 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:01.278617 #83316] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T10:42:01.289029 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T10:42:01.289187 #83316] INFO -- : --> 201 201 (109 0ms) -I, [2009-10-15T10:42:01.291250 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T10:42:01.291363 #83316] INFO -- : --> 409 409 (0 0ms) -I, [2009-10-15T10:42:01.299687 #83316] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T10:42:01.299884 #83316] INFO -- : --> 201 201 (0 0ms) -I, [2009-10-15T10:42:01.308566 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T10:42:01.308717 #83316] INFO -- : --> 201 201 (0 0ms) -I, [2009-10-15T10:42:01.430805 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T10:42:01.430954 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.439904 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/4.xml -I, [2009-10-15T10:42:01.440049 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:01.455159 #83316] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.455307 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.455580 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.455659 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:01.463255 #83316] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.463398 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.463673 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.463751 #83316] INFO -- : --> 410 410 (0 0ms) -I, [2009-10-15T10:42:01.471542 #83316] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:01.471677 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.471954 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:01.472031 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:01.479611 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.479741 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.481250 #83316] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.481370 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.481669 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.481756 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:01.489478 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.489624 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.491095 #83316] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.491198 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.491470 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.491547 #83316] INFO -- : --> 410 410 (0 0ms) -I, [2009-10-15T10:42:01.499333 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:01.499470 #83316] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T10:42:01.501141 #83316] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:01.501251 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.501536 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:01.501613 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:01.509617 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.509774 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.509969 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml -I, [2009-10-15T10:42:01.510059 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:01.510351 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.510428 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.511888 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.512047 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.512301 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml -I, [2009-10-15T10:42:01.512392 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:01.512634 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:01.512724 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.512918 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml -I, [2009-10-15T10:42:01.513009 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:01.513230 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml -I, [2009-10-15T10:42:01.513363 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:01.513609 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:01.513697 #83316] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T10:42:01.515358 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:01.515481 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.515765 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml -I, [2009-10-15T10:42:01.515867 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:01.516171 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml -I, [2009-10-15T10:42:01.516272 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:01.524600 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.524754 #83316] INFO -- : --> 410 410 (0 0ms) -I, [2009-10-15T10:42:01.582889 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T10:42:01.583064 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.583284 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T10:42:01.583369 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.584912 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T10:42:01.585038 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.585256 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T10:42:01.585343 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.586841 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2009-10-15T10:42:01.586991 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.587218 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T10:42:01.587299 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.588710 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2009-10-15T10:42:01.588837 #83316] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T10:42:01.590465 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2009-10-15T10:42:01.590606 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.598879 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/not-mocked.xml -I, [2009-10-15T10:42:01.599071 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:01.621559 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:01.621707 #83316] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T10:42:01.631585 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/5.xml -I, [2009-10-15T10:42:01.631744 #83316] INFO -- : --> 200 200 (223 0ms) -I, [2009-10-15T10:42:01.641218 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:01.641363 #83316] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T10:42:01.650825 #83316] INFO -- : GET http://37s.sunrise.i:3000/customers/1.xml -I, [2009-10-15T10:42:01.650986 #83316] INFO -- : --> 200 200 (1458 0ms) -I, [2009-10-15T10:42:01.716995 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T10:42:01.717148 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.767500 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T10:42:01.767665 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.776776 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:01.776928 #83316] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T10:42:01.778657 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:01.778768 #83316] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T10:42:01.787914 #83316] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T10:42:01.788064 #83316] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T10:42:01.790538 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.790640 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.799416 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T10:42:01.799556 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:01.808889 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T10:42:01.809058 #83316] INFO -- : --> 201 201 (109 0ms) -I, [2009-10-15T10:42:01.818067 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T10:42:01.818235 #83316] INFO -- : --> 201 201 (109 0ms) -I, [2009-10-15T10:42:02.012857 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T10:42:02.013009 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:02.021991 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T10:42:02.022137 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:02.031250 #83316] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T10:42:02.031400 #83316] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T10:42:02.034341 #83316] INFO -- : PUT http://somewhere.else:80/people/1.xml -I, [2009-10-15T10:42:02.034464 #83316] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T10:42:02.042263 #83316] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T10:42:02.042404 #83316] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T10:42:02.052848 #83316] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T10:42:02.053004 #83316] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T10:42:02.063404 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T10:42:02.063555 #83316] INFO -- : --> 200 200 (199 0ms) -I, [2009-10-15T10:42:02.073546 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T10:42:02.073694 #83316] INFO -- : --> 200 200 (199 0ms) -I, [2009-10-15T10:42:02.083550 #83316] INFO -- : GET http://somewhere.else:80/people/2.xml -I, [2009-10-15T10:42:02.083697 #83316] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T10:42:02.085528 #83316] INFO -- : PUT http://somewhere.else:80/people/2.xml -I, [2009-10-15T10:42:02.085638 #83316] INFO -- : --> 409 409 (0 0ms) -I, [2009-10-15T10:42:02.093300 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:02.093449 #83316] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T10:42:02.095727 #83316] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:02.095857 #83316] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T10:42:02.103405 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T10:42:02.103549 #83316] INFO -- : --> 200 200 (199 0ms) -I, [2009-10-15T10:42:02.106041 #83316] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:02.106168 #83316] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T10:42:02.204130 #83316] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-10-15T10:42:02.204310 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:02.213357 #83316] INFO -- : DELETE http://localhost:80/people/1.xml -I, [2009-10-15T10:42:02.213513 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:02.215676 #83316] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-10-15T10:42:02.215846 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:02.217857 #83316] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-10-15T10:42:02.217951 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:02.221442 #83316] INFO -- : GET http://localhost:80/people.xml -I, [2009-10-15T10:42:02.221574 #83316] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T10:42:02.225904 #83316] INFO -- : GET http://localhost:80/people_empty_elements.xml -I, [2009-10-15T10:42:02.226023 #83316] INFO -- : --> 200 200 (77 0ms) -I, [2009-10-15T10:42:02.228612 #83316] INFO -- : GET http://localhost:80/people_single_elements.xml -I, [2009-10-15T10:42:02.228721 #83316] INFO -- : --> 200 200 (208 0ms) -I, [2009-10-15T10:42:02.232221 #83316] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T10:42:02.232342 #83316] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T10:42:02.238505 #83316] INFO -- : HEAD http://localhost:80/people/1.xml -I, [2009-10-15T10:42:02.238639 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:02.242779 #83316] INFO -- : POST http://localhost:80/people.xml -I, [2009-10-15T10:42:02.242899 #83316] INFO -- : --> 201 201 (0 0ms) -I, [2009-10-15T10:42:02.244914 #83316] INFO -- : POST http://localhost:80/members.xml -I, [2009-10-15T10:42:02.245012 #83316] INFO -- : --> 201 201 (1 0ms) -I, [2009-10-15T10:42:02.249121 #83316] INFO -- : PUT http://localhost:80/people/1.xml -I, [2009-10-15T10:42:02.249265 #83316] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T10:42:02.251531 #83316] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-10-15T10:42:02.251720 #83316] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T10:42:02.260575 #83316] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-10-15T10:42:02.265763 #83316] INFO -- : GET http://localhost:80/people_timeout.xml -I, [2009-10-15T10:42:02.270289 #83316] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=Matz -I, [2009-10-15T10:42:02.270408 #83316] INFO -- : --> 200 200 (146 0ms) -I, [2009-10-15T10:42:02.272131 #83316] INFO -- : POST http://somewhere.else:80/people/hire.xml?name=Matz -I, [2009-10-15T10:42:02.272233 #83316] INFO -- : --> 201 201 (0 0ms) -I, [2009-10-15T10:42:02.272452 #83316] INFO -- : PUT http://somewhere.else:80/people/promote.xml?name=Matz -I, [2009-10-15T10:42:02.272537 #83316] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T10:42:02.272761 #83316] INFO -- : PUT http://somewhere.else:80/people/sort.xml?by=name -I, [2009-10-15T10:42:02.272843 #83316] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T10:42:02.273062 #83316] INFO -- : DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz -I, [2009-10-15T10:42:02.273149 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:02.273377 #83316] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name -I, [2009-10-15T10:42:02.273463 #83316] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T10:42:02.275835 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T10:42:02.275930 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:02.277383 #83316] INFO -- : GET http://somewhere.else:80/people/1/shallow.xml -I, [2009-10-15T10:42:02.277484 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:02.278674 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T10:42:02.278762 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:02.280004 #83316] INFO -- : GET http://somewhere.else:80/people/1/deep.xml -I, [2009-10-15T10:42:02.280100 #83316] INFO -- : --> 200 200 (129 0ms) -I, [2009-10-15T10:42:02.281906 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T10:42:02.282016 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:02.283331 #83316] INFO -- : PUT http://somewhere.else:80/people/1/promote.xml?position=Manager -I, [2009-10-15T10:42:02.283427 #83316] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T10:42:02.283633 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T10:42:02.283708 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:02.285094 #83316] INFO -- : DELETE http://somewhere.else:80/people/1/deactivate.xml -I, [2009-10-15T10:42:02.285207 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:02.285442 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:02.285533 #83316] INFO -- : --> 200 200 (120 0ms) -I, [2009-10-15T10:42:02.287083 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml -I, [2009-10-15T10:42:02.287235 #83316] INFO -- : --> 200 200 (139 0ms) -I, [2009-10-15T10:42:02.288895 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:02.289034 #83316] INFO -- : --> 200 200 (120 0ms) -I, [2009-10-15T10:42:02.290430 #83316] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US -I, [2009-10-15T10:42:02.290548 #83316] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T10:42:02.293258 #83316] INFO -- : POST http://somewhere.else:80/people/new/register.xml -I, [2009-10-15T10:42:02.293394 #83316] INFO -- : --> 201 201 (78 0ms) -I, [2009-10-15T10:42:02.294110 #83316] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml -I, [2009-10-15T10:42:02.294206 #83316] INFO -- : --> 201 201 (92 0ms) -I, [2009-10-15T10:42:02.294738 #83316] INFO -- : POST http://somewhere.else:80/people/1/register.xml -I, [2009-10-15T10:42:02.294821 #83316] INFO -- : --> 201 201 (106 0ms) -I, [2009-10-15T10:42:02.297148 #83316] INFO -- : GET http://somewhere.else:80/people/managers.xml -I, [2009-10-15T10:42:02.297245 #83316] INFO -- : --> 200 200 (146 0ms) -I, [2009-10-15T10:42:02.306522 #83316] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T10:42:02.306671 #83316] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T10:42:02.316547 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T10:42:02.316691 #83316] INFO -- : --> 200 200 (166 0ms) -I, [2009-10-15T10:42:02.326102 #83316] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T10:42:02.326313 #83316] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T10:42:02.389348 #83316] INFO -- : GET http://somewhere.else:80/companies/1/people.xml -I, [2009-10-15T10:42:02.389505 #83316] INFO -- : --> 200 200 (147 0ms) -I, [2009-10-15T10:42:02.398881 #83316] INFO -- : GET http://somewhere.else:80/companies/1/people.xml -I, [2009-10-15T10:42:02.399030 #83316] INFO -- : --> 200 200 (147 0ms) -I, [2009-10-15T10:42:02.408807 #83316] INFO -- : GET http://somewhere.else:80/people/managers.xml -I, [2009-10-15T10:42:02.408956 #83316] INFO -- : --> 200 200 (147 0ms) -I, [2009-10-15T10:42:02.418332 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T10:42:02.418483 #83316] INFO -- : --> 200 200 (166 0ms) -I, [2009-10-15T10:42:02.427871 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/2/addresses.xml -I, [2009-10-15T10:42:02.428032 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:02.435439 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T10:42:02.435558 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:02.444822 #83316] INFO -- : GET http://somewhere.else:80/people/99.xml -I, [2009-10-15T10:42:02.444973 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:02.445476 #83316] INFO -- : GET http://37s.sunrise.i:3000/people//addresses/1.xml -I, [2009-10-15T10:42:02.445576 #83316] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T10:42:02.453021 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T10:42:02.453141 #83316] INFO -- : --> 200 200 (120 0ms) -I, [2009-10-15T10:42:02.462067 #83316] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T10:42:02.462231 #83316] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T10:42:02.472418 #83316] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T10:42:02.472572 #83316] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T10:42:02.482747 #83316] INFO -- : GET http://somewhere.else:80/companies/1/manager.xml -I, [2009-10-15T10:42:02.482940 #83316] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T10:42:02.491809 #83316] INFO -- : GET http://somewhere.else:80/people/leader.xml -I, [2009-10-15T10:42:02.491944 #83316] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T10:42:02.500743 #83316] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T10:42:02.500919 #83316] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T10:42:02.511114 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T10:42:02.511264 #83316] INFO -- : --> 200 200 (166 0ms) -I, [2009-10-15T10:42:02.520490 #83316] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T10:42:02.520633 #83316] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T10:42:02.530556 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T10:42:02.530704 #83316] INFO -- : --> 200 200 (166 0ms) -I, [2009-10-15T10:42:02.532967 #83316] INFO -- : GET http://somewhere.else:80/people.json -I, [2009-10-15T10:42:02.533082 #83316] INFO -- : --> 200 200 (48 0ms) -I, [2009-10-15T10:42:02.534424 #83316] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T10:42:02.534513 #83316] INFO -- : --> 200 200 (224 0ms) -I, [2009-10-15T10:42:02.587824 #83316] INFO -- : GET http://somewhere.else:80/people/retrieve.json?name=David -I, [2009-10-15T10:42:02.587966 #83316] INFO -- : --> 200 200 (25 0ms) -I, [2009-10-15T10:42:02.588901 #83316] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=David -I, [2009-10-15T10:42:02.588992 #83316] INFO -- : --> 200 200 (149 0ms) -I, [2009-10-15T10:42:02.591152 #83316] INFO -- : GET http://somewhere.else:80/people/2.json -I, [2009-10-15T10:42:02.591267 #83316] INFO -- : --> 200 200 (23 0ms) -I, [2009-10-15T10:42:02.591662 #83316] INFO -- : GET http://somewhere.else:80/people/2/shallow.json -I, [2009-10-15T10:42:02.591746 #83316] INFO -- : --> 200 200 (23 0ms) -I, [2009-10-15T10:42:02.592679 #83316] INFO -- : GET http://somewhere.else:80/people/2.xml -I, [2009-10-15T10:42:02.592764 #83316] INFO -- : --> 200 200 (103 0ms) -I, [2009-10-15T10:42:02.594216 #83316] INFO -- : GET http://somewhere.else:80/people/2/shallow.xml -I, [2009-10-15T10:42:02.594318 #83316] INFO -- : --> 200 200 (103 0ms) -I, [2009-10-15T10:42:02.595862 #83316] INFO -- : POST http://somewhere.else:80/people.json -I, [2009-10-15T10:42:02.595976 #83316] INFO -- : --> 201 201 (15 0ms) -I, [2009-10-15T10:42:02.596412 #83316] INFO -- : POST http://somewhere.else:80/people/new/register.json -I, [2009-10-15T10:42:02.596492 #83316] INFO -- : --> 201 201 (15 0ms) -I, [2009-10-15T10:42:02.597203 #83316] INFO -- : POST http://somewhere.else:80/people.xml -I, [2009-10-15T10:42:02.597285 #83316] INFO -- : --> 201 201 (74 0ms) -I, [2009-10-15T10:42:02.598656 #83316] INFO -- : POST http://somewhere.else:80/people/new/register.xml -I, [2009-10-15T10:42:02.598753 #83316] INFO -- : --> 201 201 (74 0ms) -I, [2009-10-15T10:42:02.599282 #83316] INFO -- : GET http://somewhere.else:80/people/1.json -I, [2009-10-15T10:42:02.599373 #83316] INFO -- : --> 200 200 (23 0ms) -I, [2009-10-15T10:42:02.600126 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T10:42:02.600213 #83316] INFO -- : --> 200 200 (103 0ms) -I, [2009-10-15T10:42:02.602587 #83316] INFO -- : POST http://somewhere.else:80/people.json -I, [2009-10-15T10:42:02.602720 #83316] INFO -- : --> 201 201 (50 0ms) -I, [2009-10-15T10:42:02.604176 #83316] INFO -- : POST http://somewhere.else:80/people.xml -I, [2009-10-15T10:42:02.604275 #83316] INFO -- : --> 201 201 (132 0ms) -I, [2009-10-15T10:42:02.607111 #83316] INFO -- : POST http://somewhere.else:80/people.xml -I, [2009-10-15T10:42:02.607234 #83316] INFO -- : --> 201 201 (106 0ms) -I, [2009-10-15T10:42:02.609228 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T10:42:02.609337 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:02.610714 #83316] INFO -- : DELETE http://somewhere.else:80/people/1.xml -I, [2009-10-15T10:42:02.610817 #83316] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T10:42:02.611571 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T10:42:02.611663 #83316] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T10:42:02.613326 #83316] INFO -- : PUT http://somewhere.else:80/people/1.xml -I, [2009-10-15T10:42:02.613426 #83316] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T10:42:02.615834 #83316] INFO -- : POST http://37s.sunrise.i:3000/projects.xml -I, [2009-10-15T10:42:02.615947 #83316] INFO -- : --> 201 201 (123 0ms) -I, [2009-10-15T10:42:02.618964 #83316] INFO -- : POST http://37s.sunrise.i:3000/projects.xml -I, [2009-10-15T10:42:02.619083 #83316] INFO -- : --> 201 201 (123 0ms) -I, [2009-10-15T17:27:43.829170 #85221] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.849670 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:43.851683 #85221] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.851851 #85221] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T17:27:43.852140 #85221] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.852262 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:43.853724 #85221] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.853842 #85221] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T17:27:43.897556 #85221] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.897711 #85221] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T17:27:43.897941 #85221] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.898026 #85221] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T17:27:43.899421 #85221] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-10-15T17:27:43.899525 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:43.901872 #85221] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.901994 #85221] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T17:27:43.902214 #85221] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.902305 #85221] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T17:27:43.936515 #85221] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.936663 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:43.937900 #85221] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.938010 #85221] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T17:27:43.938246 #85221] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.938352 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:43.939801 #85221] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-10-15T17:27:43.939920 #85221] INFO -- : --> 201 201 (0 0ms) -I, [2009-10-15T17:27:43.941072 #85221] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-10-15T17:27:43.941174 #85221] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T17:27:43.941396 #85221] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-10-15T17:27:43.941484 #85221] INFO -- : --> 201 201 (0 0ms) -I, [2009-10-15T17:27:43.942604 #85221] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.942697 #85221] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T17:27:43.943825 #85221] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.943921 #85221] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T17:27:43.944131 #85221] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.944218 #85221] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T17:27:43.945388 #85221] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.945653 #85221] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-10-15T17:27:43.945881 #85221] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.946114 #85221] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.946345 #85221] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.947519 #85221] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.947832 #85221] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2009-10-15T17:27:43.948058 #85221] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.948285 #85221] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.948515 #85221] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2009-10-15T17:27:43.949728 #85221] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-10-15T17:27:43.949822 #85221] INFO -- : --> 401 401 (0 0ms) -I, [2009-10-15T17:27:43.977553 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-10-15T17:27:43.977704 #85221] INFO -- : --> 422 422 (118 0ms) -I, [2009-10-15T17:27:43.982859 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T17:27:43.982996 #85221] INFO -- : --> 422 422 (209 0ms) -I, [2009-10-15T17:27:43.985273 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-10-15T17:27:43.985402 #85221] INFO -- : --> 422 422 (118 0ms) -I, [2009-10-15T17:27:43.986238 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T17:27:43.986326 #85221] INFO -- : --> 422 422 (209 0ms) -I, [2009-10-15T17:27:43.988797 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-10-15T17:27:43.988932 #85221] INFO -- : --> 422 422 (118 0ms) -I, [2009-10-15T17:27:43.989982 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T17:27:43.990068 #85221] INFO -- : --> 422 422 (209 0ms) -I, [2009-10-15T17:27:43.992216 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-10-15T17:27:43.992328 #85221] INFO -- : --> 422 422 (118 0ms) -I, [2009-10-15T17:27:43.993293 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T17:27:43.993374 #85221] INFO -- : --> 422 422 (209 0ms) -I, [2009-10-15T17:27:43.996771 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-10-15T17:27:43.996895 #85221] INFO -- : --> 422 422 (118 0ms) -I, [2009-10-15T17:27:43.997807 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T17:27:43.997898 #85221] INFO -- : --> 422 422 (209 0ms) -I, [2009-10-15T17:27:44.000092 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2009-10-15T17:27:44.000208 #85221] INFO -- : --> 422 422 (118 0ms) -I, [2009-10-15T17:27:44.001078 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T17:27:44.001167 #85221] INFO -- : --> 422 422 (209 0ms) -I, [2009-10-15T17:27:44.018012 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.018158 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.065321 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.065478 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.067533 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.067690 #85221] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T17:27:44.078185 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T17:27:44.078338 #85221] INFO -- : --> 201 201 (109 0ms) -I, [2009-10-15T17:27:44.080383 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T17:27:44.080492 #85221] INFO -- : --> 409 409 (0 0ms) -I, [2009-10-15T17:27:44.088790 #85221] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T17:27:44.088928 #85221] INFO -- : --> 201 201 (0 0ms) -I, [2009-10-15T17:27:44.097420 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T17:27:44.097566 #85221] INFO -- : --> 201 201 (0 0ms) -I, [2009-10-15T17:27:44.219959 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T17:27:44.220105 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.229225 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/4.xml -I, [2009-10-15T17:27:44.229376 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:44.244275 #85221] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.244465 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.244760 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.244847 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:44.252198 #85221] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.252312 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.252564 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.252641 #85221] INFO -- : --> 410 410 (0 0ms) -I, [2009-10-15T17:27:44.260414 #85221] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.260535 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.260797 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.260873 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:44.268828 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.268976 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.270542 #85221] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.270682 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.270963 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.271040 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:44.278653 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.278775 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.280254 #85221] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.280349 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.280614 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.280691 #85221] INFO -- : --> 410 410 (0 0ms) -I, [2009-10-15T17:27:44.288407 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.288534 #85221] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T17:27:44.290245 #85221] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.290356 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.290631 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.290707 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:44.298660 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.298806 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.298998 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml -I, [2009-10-15T17:27:44.299090 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:44.299364 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.299440 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.300928 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.301041 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.301302 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml -I, [2009-10-15T17:27:44.301395 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:44.301650 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.301749 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.301945 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml -I, [2009-10-15T17:27:44.302039 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:44.302270 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml -I, [2009-10-15T17:27:44.302368 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:44.302608 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.302695 #85221] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T17:27:44.304291 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.304399 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.304703 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml -I, [2009-10-15T17:27:44.304852 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:44.305166 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml -I, [2009-10-15T17:27:44.305278 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:44.313708 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.313854 #85221] INFO -- : --> 410 410 (0 0ms) -I, [2009-10-15T17:27:44.371761 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T17:27:44.371935 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.372144 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T17:27:44.372224 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.373747 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T17:27:44.373863 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.374063 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T17:27:44.374143 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.375454 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2009-10-15T17:27:44.375563 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.375763 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T17:27:44.375843 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.377147 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2009-10-15T17:27:44.377246 #85221] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T17:27:44.378717 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2009-10-15T17:27:44.378829 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.387061 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/not-mocked.xml -I, [2009-10-15T17:27:44.387257 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:44.409357 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.409497 #85221] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T17:27:44.419282 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/5.xml -I, [2009-10-15T17:27:44.419479 #85221] INFO -- : --> 200 200 (223 0ms) -I, [2009-10-15T17:27:44.429156 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.429303 #85221] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T17:27:44.438524 #85221] INFO -- : GET http://37s.sunrise.i:3000/customers/1.xml -I, [2009-10-15T17:27:44.438669 #85221] INFO -- : --> 200 200 (1458 0ms) -I, [2009-10-15T17:27:44.506425 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T17:27:44.556246 #85221] INFO -- : --> 200 200 (106 50ms) -I, [2009-10-15T17:27:44.557948 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2009-10-15T17:27:44.558065 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.567377 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.567524 #85221] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T17:27:44.569232 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.569338 #85221] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T17:27:44.578668 #85221] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T17:27:44.578832 #85221] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T17:27:44.581377 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.581483 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.590407 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2009-10-15T17:27:44.590540 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.600447 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T17:27:44.600600 #85221] INFO -- : --> 201 201 (109 0ms) -I, [2009-10-15T17:27:44.610088 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2009-10-15T17:27:44.610264 #85221] INFO -- : --> 201 201 (109 0ms) -I, [2009-10-15T17:27:44.806542 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T17:27:44.806689 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.815632 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T17:27:44.815766 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:44.825086 #85221] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T17:27:44.825235 #85221] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T17:27:44.828122 #85221] INFO -- : PUT http://somewhere.else:80/people/1.xml -I, [2009-10-15T17:27:44.828232 #85221] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T17:27:44.835906 #85221] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T17:27:44.836033 #85221] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T17:27:44.846551 #85221] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T17:27:44.846699 #85221] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T17:27:44.857207 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T17:27:44.857355 #85221] INFO -- : --> 200 200 (199 0ms) -I, [2009-10-15T17:27:44.867887 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T17:27:44.868037 #85221] INFO -- : --> 200 200 (199 0ms) -I, [2009-10-15T17:27:44.878141 #85221] INFO -- : GET http://somewhere.else:80/people/2.xml -I, [2009-10-15T17:27:44.878281 #85221] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T17:27:44.880058 #85221] INFO -- : PUT http://somewhere.else:80/people/2.xml -I, [2009-10-15T17:27:44.880155 #85221] INFO -- : --> 409 409 (0 0ms) -I, [2009-10-15T17:27:44.888249 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.888399 #85221] INFO -- : --> 200 200 (151 0ms) -I, [2009-10-15T17:27:44.890658 #85221] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.890772 #85221] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T17:27:44.898410 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T17:27:44.898536 #85221] INFO -- : --> 200 200 (199 0ms) -I, [2009-10-15T17:27:44.900979 #85221] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:44.901091 #85221] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T17:27:45.001170 #85221] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-10-15T17:27:45.001350 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:45.010602 #85221] INFO -- : DELETE http://localhost:80/people/1.xml -I, [2009-10-15T17:27:45.010764 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:45.013165 #85221] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2009-10-15T17:27:45.013286 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:45.015299 #85221] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-10-15T17:27:45.015393 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:45.018761 #85221] INFO -- : GET http://localhost:80/people.xml -I, [2009-10-15T17:27:45.018893 #85221] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T17:27:45.023569 #85221] INFO -- : GET http://localhost:80/people_empty_elements.xml -I, [2009-10-15T17:27:45.023703 #85221] INFO -- : --> 200 200 (77 0ms) -I, [2009-10-15T17:27:45.026335 #85221] INFO -- : GET http://localhost:80/people_single_elements.xml -I, [2009-10-15T17:27:45.026438 #85221] INFO -- : --> 200 200 (208 0ms) -I, [2009-10-15T17:27:45.030186 #85221] INFO -- : GET http://localhost:80/people/2.xml -I, [2009-10-15T17:27:45.030310 #85221] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T17:27:45.036681 #85221] INFO -- : HEAD http://localhost:80/people/1.xml -I, [2009-10-15T17:27:45.036813 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:45.041087 #85221] INFO -- : POST http://localhost:80/people.xml -I, [2009-10-15T17:27:45.041241 #85221] INFO -- : --> 201 201 (0 0ms) -I, [2009-10-15T17:27:45.043248 #85221] INFO -- : POST http://localhost:80/members.xml -I, [2009-10-15T17:27:45.043345 #85221] INFO -- : --> 201 201 (1 0ms) -I, [2009-10-15T17:27:45.047940 #85221] INFO -- : PUT http://localhost:80/people/1.xml -I, [2009-10-15T17:27:45.048077 #85221] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T17:27:45.050170 #85221] INFO -- : PUT http://localhost:80/people/2.xml -I, [2009-10-15T17:27:45.050269 #85221] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T17:27:45.059435 #85221] INFO -- : GET http://localhost:80/people/1.xml -I, [2009-10-15T17:27:45.065119 #85221] INFO -- : GET http://localhost:80/people_timeout.xml -I, [2009-10-15T17:27:45.069872 #85221] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=Matz -I, [2009-10-15T17:27:45.069998 #85221] INFO -- : --> 200 200 (146 0ms) -I, [2009-10-15T17:27:45.071746 #85221] INFO -- : POST http://somewhere.else:80/people/hire.xml?name=Matz -I, [2009-10-15T17:27:45.071845 #85221] INFO -- : --> 201 201 (0 0ms) -I, [2009-10-15T17:27:45.072059 #85221] INFO -- : PUT http://somewhere.else:80/people/promote.xml?name=Matz -I, [2009-10-15T17:27:45.072137 #85221] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T17:27:45.072343 #85221] INFO -- : PUT http://somewhere.else:80/people/sort.xml?by=name -I, [2009-10-15T17:27:45.072421 #85221] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T17:27:45.072620 #85221] INFO -- : DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz -I, [2009-10-15T17:27:45.072699 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:45.072915 #85221] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name -I, [2009-10-15T17:27:45.072998 #85221] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T17:27:45.075325 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T17:27:45.075420 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:45.076980 #85221] INFO -- : GET http://somewhere.else:80/people/1/shallow.xml -I, [2009-10-15T17:27:45.077088 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:45.078452 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T17:27:45.078558 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:45.080227 #85221] INFO -- : GET http://somewhere.else:80/people/1/deep.xml -I, [2009-10-15T17:27:45.080332 #85221] INFO -- : --> 200 200 (129 0ms) -I, [2009-10-15T17:27:45.081948 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T17:27:45.082076 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:45.083464 #85221] INFO -- : PUT http://somewhere.else:80/people/1/promote.xml?position=Manager -I, [2009-10-15T17:27:45.083558 #85221] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T17:27:45.083760 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T17:27:45.083950 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:45.085359 #85221] INFO -- : DELETE http://somewhere.else:80/people/1/deactivate.xml -I, [2009-10-15T17:27:45.085470 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:45.085742 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:45.085842 #85221] INFO -- : --> 200 200 (120 0ms) -I, [2009-10-15T17:27:45.087296 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml -I, [2009-10-15T17:27:45.087408 #85221] INFO -- : --> 200 200 (139 0ms) -I, [2009-10-15T17:27:45.088827 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:45.088925 #85221] INFO -- : --> 200 200 (120 0ms) -I, [2009-10-15T17:27:45.090192 #85221] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US -I, [2009-10-15T17:27:45.090325 #85221] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T17:27:45.093032 #85221] INFO -- : POST http://somewhere.else:80/people/new/register.xml -I, [2009-10-15T17:27:45.093157 #85221] INFO -- : --> 201 201 (78 0ms) -I, [2009-10-15T17:27:45.093871 #85221] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml -I, [2009-10-15T17:27:45.093958 #85221] INFO -- : --> 201 201 (92 0ms) -I, [2009-10-15T17:27:45.094544 #85221] INFO -- : POST http://somewhere.else:80/people/1/register.xml -I, [2009-10-15T17:27:45.094645 #85221] INFO -- : --> 201 201 (106 0ms) -I, [2009-10-15T17:27:45.096945 #85221] INFO -- : GET http://somewhere.else:80/people/managers.xml -I, [2009-10-15T17:27:45.097080 #85221] INFO -- : --> 200 200 (146 0ms) -I, [2009-10-15T17:27:45.106455 #85221] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T17:27:45.106599 #85221] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T17:27:45.116771 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T17:27:45.116912 #85221] INFO -- : --> 200 200 (166 0ms) -I, [2009-10-15T17:27:45.126942 #85221] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T17:27:45.127149 #85221] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T17:27:45.190478 #85221] INFO -- : GET http://somewhere.else:80/companies/1/people.xml -I, [2009-10-15T17:27:45.190632 #85221] INFO -- : --> 200 200 (147 0ms) -I, [2009-10-15T17:27:45.199922 #85221] INFO -- : GET http://somewhere.else:80/companies/1/people.xml -I, [2009-10-15T17:27:45.200063 #85221] INFO -- : --> 200 200 (147 0ms) -I, [2009-10-15T17:27:45.209289 #85221] INFO -- : GET http://somewhere.else:80/people/managers.xml -I, [2009-10-15T17:27:45.209423 #85221] INFO -- : --> 200 200 (147 0ms) -I, [2009-10-15T17:27:45.218676 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T17:27:45.218811 #85221] INFO -- : --> 200 200 (166 0ms) -I, [2009-10-15T17:27:45.228083 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/2/addresses.xml -I, [2009-10-15T17:27:45.228243 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:45.235835 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T17:27:45.235976 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:45.245082 #85221] INFO -- : GET http://somewhere.else:80/people/99.xml -I, [2009-10-15T17:27:45.245228 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:45.245518 #85221] INFO -- : GET http://37s.sunrise.i:3000/people//addresses/1.xml -I, [2009-10-15T17:27:45.245608 #85221] INFO -- : --> 404 404 (0 0ms) -I, [2009-10-15T17:27:45.252939 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2009-10-15T17:27:45.253058 #85221] INFO -- : --> 200 200 (120 0ms) -I, [2009-10-15T17:27:45.261897 #85221] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T17:27:45.262049 #85221] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T17:27:45.272692 #85221] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T17:27:45.272853 #85221] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T17:27:45.283032 #85221] INFO -- : GET http://somewhere.else:80/companies/1/manager.xml -I, [2009-10-15T17:27:45.283172 #85221] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T17:27:45.292057 #85221] INFO -- : GET http://somewhere.else:80/people/leader.xml -I, [2009-10-15T17:27:45.292189 #85221] INFO -- : --> 200 200 (107 0ms) -I, [2009-10-15T17:27:45.301058 #85221] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T17:27:45.301208 #85221] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T17:27:45.311322 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T17:27:45.311470 #85221] INFO -- : --> 200 200 (166 0ms) -I, [2009-10-15T17:27:45.320899 #85221] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T17:27:45.321048 #85221] INFO -- : --> 200 200 (222 0ms) -I, [2009-10-15T17:27:45.330944 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2009-10-15T17:27:45.331085 #85221] INFO -- : --> 200 200 (166 0ms) -I, [2009-10-15T17:27:45.388846 #85221] INFO -- : GET http://somewhere.else:80/people.json -I, [2009-10-15T17:27:45.389013 #85221] INFO -- : --> 200 200 (48 0ms) -I, [2009-10-15T17:27:45.390447 #85221] INFO -- : GET http://somewhere.else:80/people.xml -I, [2009-10-15T17:27:45.390588 #85221] INFO -- : --> 200 200 (224 0ms) -I, [2009-10-15T17:27:45.395324 #85221] INFO -- : GET http://somewhere.else:80/people/retrieve.json?name=David -I, [2009-10-15T17:27:45.395483 #85221] INFO -- : --> 200 200 (25 0ms) -I, [2009-10-15T17:27:45.396943 #85221] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=David -I, [2009-10-15T17:27:45.397122 #85221] INFO -- : --> 200 200 (149 0ms) -I, [2009-10-15T17:27:45.399485 #85221] INFO -- : GET http://somewhere.else:80/people/2.json -I, [2009-10-15T17:27:45.399606 #85221] INFO -- : --> 200 200 (23 0ms) -I, [2009-10-15T17:27:45.400026 #85221] INFO -- : GET http://somewhere.else:80/people/2/shallow.json -I, [2009-10-15T17:27:45.400108 #85221] INFO -- : --> 200 200 (23 0ms) -I, [2009-10-15T17:27:45.401163 #85221] INFO -- : GET http://somewhere.else:80/people/2.xml -I, [2009-10-15T17:27:45.401274 #85221] INFO -- : --> 200 200 (103 0ms) -I, [2009-10-15T17:27:45.402804 #85221] INFO -- : GET http://somewhere.else:80/people/2/shallow.xml -I, [2009-10-15T17:27:45.402903 #85221] INFO -- : --> 200 200 (103 0ms) -I, [2009-10-15T17:27:45.404815 #85221] INFO -- : POST http://somewhere.else:80/people.json -I, [2009-10-15T17:27:45.404969 #85221] INFO -- : --> 201 201 (15 0ms) -I, [2009-10-15T17:27:45.405422 #85221] INFO -- : POST http://somewhere.else:80/people/new/register.json -I, [2009-10-15T17:27:45.405501 #85221] INFO -- : --> 201 201 (15 0ms) -I, [2009-10-15T17:27:45.406207 #85221] INFO -- : POST http://somewhere.else:80/people.xml -I, [2009-10-15T17:27:45.406290 #85221] INFO -- : --> 201 201 (74 0ms) -I, [2009-10-15T17:27:45.407697 #85221] INFO -- : POST http://somewhere.else:80/people/new/register.xml -I, [2009-10-15T17:27:45.407790 #85221] INFO -- : --> 201 201 (74 0ms) -I, [2009-10-15T17:27:45.408327 #85221] INFO -- : GET http://somewhere.else:80/people/1.json -I, [2009-10-15T17:27:45.408427 #85221] INFO -- : --> 200 200 (23 0ms) -I, [2009-10-15T17:27:45.409527 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T17:27:45.409763 #85221] INFO -- : --> 200 200 (103 0ms) -I, [2009-10-15T17:27:45.414594 #85221] INFO -- : POST http://somewhere.else:80/people.json -I, [2009-10-15T17:27:45.414736 #85221] INFO -- : --> 201 201 (50 0ms) -I, [2009-10-15T17:27:45.416124 #85221] INFO -- : POST http://somewhere.else:80/people.xml -I, [2009-10-15T17:27:45.416209 #85221] INFO -- : --> 201 201 (132 0ms) -I, [2009-10-15T17:27:45.419161 #85221] INFO -- : POST http://somewhere.else:80/people.xml -I, [2009-10-15T17:27:45.419285 #85221] INFO -- : --> 201 201 (106 0ms) -I, [2009-10-15T17:27:45.422452 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T17:27:45.422613 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:45.424155 #85221] INFO -- : DELETE http://somewhere.else:80/people/1.xml -I, [2009-10-15T17:27:45.424256 #85221] INFO -- : --> 200 200 (0 0ms) -I, [2009-10-15T17:27:45.425208 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml -I, [2009-10-15T17:27:45.425363 #85221] INFO -- : --> 200 200 (106 0ms) -I, [2009-10-15T17:27:45.427631 #85221] INFO -- : PUT http://somewhere.else:80/people/1.xml -I, [2009-10-15T17:27:45.427799 #85221] INFO -- : --> 204 204 (0 0ms) -I, [2009-10-15T17:27:45.431576 #85221] INFO -- : POST http://37s.sunrise.i:3000/projects.xml -I, [2009-10-15T17:27:45.431716 #85221] INFO -- : --> 201 201 (123 0ms) -I, [2009-10-15T17:27:45.435104 #85221] INFO -- : POST http://37s.sunrise.i:3000/projects.xml -I, [2009-10-15T17:27:45.435230 #85221] INFO -- : --> 201 201 (123 0ms) -I, [2010-07-27T14:25:16.147997 #72319] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.167678 #72319] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-07-27T14:25:16.169284 #72319] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.169398 #72319] INFO -- : --> 401 401 0 (0.1ms) -I, [2010-07-27T14:25:16.169792 #72319] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.169867 #72319] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-07-27T14:25:16.171081 #72319] INFO -- : GET http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.171169 #72319] INFO -- : --> 200 200 107 (0.0ms) -I, [2010-07-27T14:25:16.338483 #72319] INFO -- : GET http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.338624 #72319] INFO -- : --> 401 401 0 (0.1ms) -I, [2010-07-27T14:25:16.338948 #72319] INFO -- : GET http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.339023 #72319] INFO -- : --> 200 200 107 (0.0ms) -I, [2010-07-27T14:25:16.341980 #72319] INFO -- : GET http://localhost:80/people/1.xml -I, [2010-07-27T14:25:16.342087 #72319] INFO -- : --> 200 200 106 (0.1ms) -I, [2010-07-27T14:25:16.345731 #72319] INFO -- : GET http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.345848 #72319] INFO -- : --> 401 401 0 (0.0ms) -I, [2010-07-27T14:25:16.346157 #72319] INFO -- : GET http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.346229 #72319] INFO -- : --> 200 200 107 (0.0ms) -I, [2010-07-27T14:25:16.350134 #72319] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.350263 #72319] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-07-27T14:25:16.351431 #72319] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.351528 #72319] INFO -- : --> 401 401 0 (0.1ms) -I, [2010-07-27T14:25:16.351853 #72319] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.351934 #72319] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-07-27T14:25:16.353144 #72319] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2010-07-27T14:25:16.353240 #72319] INFO -- : --> 201 201 0 (0.0ms) -I, [2010-07-27T14:25:16.354436 #72319] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2010-07-27T14:25:16.354526 #72319] INFO -- : --> 401 401 0 (0.0ms) -I, [2010-07-27T14:25:16.354857 #72319] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2010-07-27T14:25:16.354931 #72319] INFO -- : --> 201 201 0 (0.1ms) -I, [2010-07-27T14:25:16.356175 #72319] INFO -- : PUT http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.356270 #72319] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-07-27T14:25:16.357457 #72319] INFO -- : PUT http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.357550 #72319] INFO -- : --> 401 401 0 (0.0ms) -I, [2010-07-27T14:25:16.357858 #72319] INFO -- : PUT http://localhost:80/people/2.xml -I, [2010-07-27T14:25:16.357931 #72319] INFO -- : --> 204 204 0 (0.1ms) -I, [2010-07-27T14:25:16.359296 #72319] INFO -- : GET http://localhost:80/people/2.xml -E, [2010-07-27T14:25:16.359444 #72319] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-07-27T14:25:16.359760 #72319] INFO -- : POST http://localhost:80/people/2/addresses.xml -E, [2010-07-27T14:25:16.359873 #72319] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-07-27T14:25:16.360175 #72319] INFO -- : PUT http://localhost:80/people/2.xml -E, [2010-07-27T14:25:16.360281 #72319] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-07-27T14:25:16.360576 #72319] INFO -- : DELETE http://localhost:80/people/2.xml -E, [2010-07-27T14:25:16.360681 #72319] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-07-27T14:25:16.360997 #72319] INFO -- : HEAD http://localhost:80/people/2.xml -E, [2010-07-27T14:25:16.361103 #72319] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-07-27T14:25:16.362473 #72319] INFO -- : GET http://localhost:80/people/2.xml -E, [2010-07-27T14:25:16.362617 #72319] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-07-27T14:25:16.362914 #72319] INFO -- : POST http://localhost:80/people/2/addresses.xml -E, [2010-07-27T14:25:16.363019 #72319] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-07-27T14:25:16.363356 #72319] INFO -- : PUT http://localhost:80/people/2.xml -E, [2010-07-27T14:25:16.363461 #72319] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-07-27T14:25:16.363750 #72319] INFO -- : DELETE http://localhost:80/people/2.xml -E, [2010-07-27T14:25:16.363855 #72319] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-07-27T14:25:16.364141 #72319] INFO -- : HEAD http://localhost:80/people/2.xml -E, [2010-07-27T14:25:16.364244 #72319] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-07-27T14:25:16.365339 #72319] INFO -- : GET http://localhost:80/people/1.xml -I, [2010-07-27T14:25:16.365428 #72319] INFO -- : --> 401 401 0 (0.0ms) -I, [2010-07-27T14:25:16.370254 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-07-27T14:25:16.370381 #72319] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-07-27T14:25:16.401620 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:16.401769 #72319] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-07-27T14:25:16.407434 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-07-27T14:25:16.407563 #72319] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-07-27T14:25:16.408546 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:16.408638 #72319] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-07-27T14:25:16.412396 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-07-27T14:25:16.412523 #72319] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-07-27T14:25:16.414862 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:16.414959 #72319] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-07-27T14:25:16.419963 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-07-27T14:25:16.420088 #72319] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-07-27T14:25:16.421086 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:16.421170 #72319] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-07-27T14:25:16.428406 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-07-27T14:25:16.428537 #72319] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-07-27T14:25:16.429678 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:16.429776 #72319] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-07-27T14:25:16.436801 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-07-27T14:25:16.436931 #72319] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-07-27T14:25:16.437862 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:16.437943 #72319] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-07-27T14:25:16.442123 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-07-27T14:25:16.442254 #72319] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-07-27T14:25:16.443246 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:16.443329 #72319] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-07-27T14:25:16.447046 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-07-27T14:25:16.447162 #72319] INFO -- : --> 422 422 2 (0.0ms) -I, [2010-07-27T14:25:16.465915 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.466060 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:16.521780 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.521925 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:16.525737 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:16.525864 #72319] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-07-27T14:25:16.537714 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:16.537862 #72319] INFO -- : --> 201 201 109 (0.0ms) -I, [2010-07-27T14:25:16.541934 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:16.542068 #72319] INFO -- : --> 409 409 0 (0.0ms) -I, [2010-07-27T14:25:16.552074 #72319] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-07-27T14:25:16.552217 #72319] INFO -- : --> 201 201 0 (0.0ms) -I, [2010-07-27T14:25:16.560782 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:16.560916 #72319] INFO -- : --> 201 201 0 (0.0ms) -I, [2010-07-27T14:25:16.730007 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-07-27T14:25:16.730151 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:16.741142 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/4.xml -I, [2010-07-27T14:25:16.741290 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:16.757287 #72319] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.757426 #72319] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-07-27T14:25:16.757765 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.757840 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:16.767261 #72319] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.767397 #72319] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-07-27T14:25:16.767761 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.767839 #72319] INFO -- : --> 410 410 0 (0.0ms) -I, [2010-07-27T14:25:16.776011 #72319] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:16.776146 #72319] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-07-27T14:25:16.776496 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:16.776571 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:16.784238 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.784382 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:16.787724 #72319] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.787850 #72319] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-07-27T14:25:16.788211 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.788291 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:16.796232 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.796394 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:16.799916 #72319] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.800042 #72319] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-07-27T14:25:16.800385 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.800460 #72319] INFO -- : --> 410 410 0 (0.0ms) -I, [2010-07-27T14:25:16.808123 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:16.808246 #72319] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-07-27T14:25:16.812691 #72319] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:16.812821 #72319] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-07-27T14:25:16.813591 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:16.813680 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:16.823091 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.823244 #72319] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-07-27T14:25:16.823563 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml -I, [2010-07-27T14:25:16.823657 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:16.824193 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.824289 #72319] INFO -- : --> 200 200 106 (0.1ms) -I, [2010-07-27T14:25:16.827501 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.827619 #72319] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-07-27T14:25:16.828007 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml -I, [2010-07-27T14:25:16.828081 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:16.828406 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:16.828480 #72319] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-07-27T14:25:16.828754 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml -I, [2010-07-27T14:25:16.828827 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:16.829133 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml -I, [2010-07-27T14:25:16.829206 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:16.829508 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:16.829581 #72319] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-07-27T14:25:16.832954 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:16.833075 #72319] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-07-27T14:25:16.833445 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml -I, [2010-07-27T14:25:16.833519 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:16.833901 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml -I, [2010-07-27T14:25:16.833974 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:16.842198 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:16.842333 #72319] INFO -- : --> 410 410 0 (0.0ms) -I, [2010-07-27T14:25:16.850596 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-07-27T14:25:16.850740 #72319] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-07-27T14:25:16.851043 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-07-27T14:25:16.851119 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:16.854202 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-07-27T14:25:16.854303 #72319] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-07-27T14:25:16.854566 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-07-27T14:25:16.854639 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:16.857499 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2010-07-27T14:25:16.857598 #72319] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-07-27T14:25:16.857864 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-07-27T14:25:16.857936 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:16.861382 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2010-07-27T14:25:16.861517 #72319] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-07-27T14:25:16.864882 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2010-07-27T14:25:16.864998 #72319] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-07-27T14:25:16.875499 #72319] INFO -- : HEAD http://37s.sunrise.i:3000/people/not-mocked.xml -I, [2010-07-27T14:25:16.875635 #72319] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-07-27T14:25:16.898968 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:16.899120 #72319] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-07-27T14:25:16.910157 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/5.xml -I, [2010-07-27T14:25:16.910458 #72319] INFO -- : --> 200 200 223 (0.0ms) -I, [2010-07-27T14:25:16.931385 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:16.931528 #72319] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-07-27T14:25:16.943536 #72319] INFO -- : GET http://37s.sunrise.i:3000/customers/1.xml -I, [2010-07-27T14:25:16.943680 #72319] INFO -- : --> 200 200 1458 (0.1ms) -I, [2010-07-27T14:25:17.106570 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-07-27T14:25:17.106708 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.109901 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-07-27T14:25:17.110061 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.122927 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:17.123074 #72319] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-07-27T14:25:17.126883 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:17.127011 #72319] INFO -- : --> 200 200 151 (0.1ms) -I, [2010-07-27T14:25:17.138802 #72319] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:17.138947 #72319] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-07-27T14:25:17.143646 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:17.143811 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.154391 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:17.154526 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.165647 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:17.165806 #72319] INFO -- : --> 201 201 109 (0.0ms) -I, [2010-07-27T14:25:17.177123 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:17.177263 #72319] INFO -- : --> 201 201 109 (0.0ms) -I, [2010-07-27T14:25:17.338608 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/6.json -I, [2010-07-27T14:25:17.338760 #72319] INFO -- : --> 200 200 32 (0.0ms) -I, [2010-07-27T14:25:17.347885 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/6.json -I, [2010-07-27T14:25:17.348043 #72319] INFO -- : --> 200 200 32 (0.0ms) -I, [2010-07-27T14:25:17.439965 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:17.440113 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.451653 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:17.451794 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.462265 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:17.462400 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.474339 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:17.474481 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.486772 #72319] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:17.486915 #72319] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-07-27T14:25:17.491991 #72319] INFO -- : PUT http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:17.492125 #72319] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-07-27T14:25:17.500443 #72319] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:17.500578 #72319] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-07-27T14:25:17.512548 #72319] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:17.551280 #72319] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-07-27T14:25:17.577724 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-07-27T14:25:17.578134 #72319] INFO -- : --> 200 200 199 (0.0ms) -I, [2010-07-27T14:25:17.591073 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-07-27T14:25:17.591215 #72319] INFO -- : --> 200 200 199 (0.0ms) -I, [2010-07-27T14:25:17.603254 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/2.xml -I, [2010-07-27T14:25:17.603407 #72319] INFO -- : --> 200 200 107 (0.0ms) -I, [2010-07-27T14:25:17.607045 #72319] INFO -- : PUT http://37s.sunrise.i:3000/people/2.xml -I, [2010-07-27T14:25:17.607179 #72319] INFO -- : --> 409 409 0 (0.0ms) -I, [2010-07-27T14:25:17.616032 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:17.616219 #72319] INFO -- : --> 200 200 151 (0.1ms) -I, [2010-07-27T14:25:17.620435 #72319] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:17.620564 #72319] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-07-27T14:25:17.628978 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-07-27T14:25:17.651594 #72319] INFO -- : --> 200 200 199 (0.0ms) -I, [2010-07-27T14:25:17.655994 #72319] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:17.656115 #72319] INFO -- : --> 204 204 0 (0.1ms) -I, [2010-07-27T14:25:17.707169 #72319] INFO -- : GET http://localhost:80/people/1.xml -I, [2010-07-27T14:25:17.707304 #72319] INFO -- : --> 200 200 106 (0.1ms) -I, [2010-07-27T14:25:17.718327 #72319] INFO -- : DELETE http://localhost:80/people/1.xml -I, [2010-07-27T14:25:17.718465 #72319] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-07-27T14:25:17.721420 #72319] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2010-07-27T14:25:17.721548 #72319] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-07-27T14:25:17.723876 #72319] INFO -- : GET http://localhost:80/people/1.xml -I, [2010-07-27T14:25:17.723984 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.729574 #72319] INFO -- : GET http://localhost:80/people.xml -I, [2010-07-27T14:25:17.729717 #72319] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-07-27T14:25:17.735933 #72319] INFO -- : GET http://localhost:80/people_empty_elements.xml -I, [2010-07-27T14:25:17.736061 #72319] INFO -- : --> 200 200 77 (0.0ms) -I, [2010-07-27T14:25:17.740721 #72319] INFO -- : GET http://localhost:80/people_single_elements.xml -I, [2010-07-27T14:25:17.740852 #72319] INFO -- : --> 200 200 208 (0.0ms) -I, [2010-07-27T14:25:17.746201 #72319] INFO -- : GET http://localhost:80/people/2.xml -I, [2010-07-27T14:25:17.746328 #72319] INFO -- : --> 200 200 107 (0.0ms) -I, [2010-07-27T14:25:17.756053 #72319] INFO -- : HEAD http://localhost:80/people/1.xml -I, [2010-07-27T14:25:17.756183 #72319] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-07-27T14:25:17.760196 #72319] INFO -- : POST http://localhost:80/people.xml -I, [2010-07-27T14:25:17.760316 #72319] INFO -- : --> 201 201 0 (0.0ms) -I, [2010-07-27T14:25:17.762484 #72319] INFO -- : POST http://localhost:80/members.xml -I, [2010-07-27T14:25:17.762583 #72319] INFO -- : --> 201 201 8 (0.0ms) -I, [2010-07-27T14:25:17.766862 #72319] INFO -- : PUT http://localhost:80/people/1.xml -I, [2010-07-27T14:25:17.766985 #72319] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-07-27T14:25:17.769533 #72319] INFO -- : PUT http://localhost:80/people/2.xml -I, [2010-07-27T14:25:17.769720 #72319] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-07-27T14:25:17.862153 #72319] INFO -- : GET http://localhost:80/people/1.xml -E, [2010-07-27T14:25:17.862405 #72319] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-07-27T14:25:17.868206 #72319] INFO -- : GET http://localhost:80/people_timeout.xml -E, [2010-07-27T14:25:17.868382 #72319] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-07-27T14:25:17.873509 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/retrieve.xml?name=Matz -I, [2010-07-27T14:25:17.873642 #72319] INFO -- : --> 200 200 146 (0.0ms) -I, [2010-07-27T14:25:17.877559 #72319] INFO -- : POST http://37s.sunrise.i:3000/people/hire.xml?name=Matz -I, [2010-07-27T14:25:17.877697 #72319] INFO -- : --> 201 201 0 (0.0ms) -I, [2010-07-27T14:25:17.878033 #72319] INFO -- : PUT http://37s.sunrise.i:3000/people/promote.xml?name=Matz -I, [2010-07-27T14:25:17.878116 #72319] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-07-27T14:25:17.878395 #72319] INFO -- : PUT http://37s.sunrise.i:3000/people/sort.xml?by=name -I, [2010-07-27T14:25:17.878469 #72319] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-07-27T14:25:17.878744 #72319] INFO -- : DELETE http://37s.sunrise.i:3000/people/deactivate.xml?name=Matz -I, [2010-07-27T14:25:17.878817 #72319] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-07-27T14:25:17.879117 #72319] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name -I, [2010-07-27T14:25:17.879191 #72319] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-07-27T14:25:17.881665 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:17.881766 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.947769 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/shallow.xml -I, [2010-07-27T14:25:17.947896 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.951029 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:17.951151 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.955639 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/deep.xml -I, [2010-07-27T14:25:17.955770 #72319] INFO -- : --> 200 200 129 (0.0ms) -I, [2010-07-27T14:25:17.958761 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:17.958870 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.961689 #72319] INFO -- : PUT http://37s.sunrise.i:3000/people/1/promote.xml?position=Manager -I, [2010-07-27T14:25:17.961787 #72319] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-07-27T14:25:17.962077 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:17.962154 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:17.964979 #72319] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/deactivate.xml -I, [2010-07-27T14:25:17.965095 #72319] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-07-27T14:25:17.965430 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:17.965514 #72319] INFO -- : --> 200 200 120 (0.0ms) -I, [2010-07-27T14:25:17.968604 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml -I, [2010-07-27T14:25:17.968719 #72319] INFO -- : --> 200 200 139 (0.0ms) -I, [2010-07-27T14:25:17.971872 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:17.971987 #72319] INFO -- : --> 200 200 120 (0.0ms) -I, [2010-07-27T14:25:17.975306 #72319] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US -I, [2010-07-27T14:25:17.975426 #72319] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-07-27T14:25:17.978735 #72319] INFO -- : POST http://37s.sunrise.i:3000/people/new/register.xml -I, [2010-07-27T14:25:17.978860 #72319] INFO -- : --> 201 201 78 (0.0ms) -I, [2010-07-27T14:25:17.979621 #72319] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml -I, [2010-07-27T14:25:17.979698 #72319] INFO -- : --> 201 201 92 (0.0ms) -I, [2010-07-27T14:25:17.980335 #72319] INFO -- : POST http://37s.sunrise.i:3000/people/1/register.xml -I, [2010-07-27T14:25:17.980412 #72319] INFO -- : --> 201 201 106 (0.0ms) -I, [2010-07-27T14:25:17.982740 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/managers.xml -I, [2010-07-27T14:25:17.982829 #72319] INFO -- : --> 200 200 146 (0.0ms) -I, [2010-07-27T14:25:17.993462 #72319] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:17.993606 #72319] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-07-27T14:25:18.005513 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-07-27T14:25:18.005654 #72319] INFO -- : --> 200 200 166 (0.0ms) -I, [2010-07-27T14:25:18.017042 #72319] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:18.017189 #72319] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-07-27T14:25:18.029347 #72319] INFO -- : GET http://37s.sunrise.i:3000/companies/1/people.xml -I, [2010-07-27T14:25:18.029488 #72319] INFO -- : --> 200 200 147 (0.0ms) -I, [2010-07-27T14:25:18.040314 #72319] INFO -- : GET http://37s.sunrise.i:3000/companies/1/people.xml -I, [2010-07-27T14:25:18.040451 #72319] INFO -- : --> 200 200 147 (0.0ms) -I, [2010-07-27T14:25:18.051786 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/managers.xml -I, [2010-07-27T14:25:18.051931 #72319] INFO -- : --> 200 200 147 (0.0ms) -I, [2010-07-27T14:25:18.064154 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-07-27T14:25:18.064324 #72319] INFO -- : --> 200 200 166 (0.1ms) -I, [2010-07-27T14:25:18.075926 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/2/addresses.xml -I, [2010-07-27T14:25:18.076066 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:18.083981 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:18.084166 #72319] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-07-27T14:25:18.095061 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/99.xml -I, [2010-07-27T14:25:18.095216 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:18.095629 #72319] INFO -- : GET http://37s.sunrise.i:3000/people//addresses/1.xml -I, [2010-07-27T14:25:18.095710 #72319] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-07-27T14:25:18.104222 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-07-27T14:25:18.104365 #72319] INFO -- : --> 200 200 120 (0.0ms) -I, [2010-07-27T14:25:18.114626 #72319] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:18.114760 #72319] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-07-27T14:25:18.127809 #72319] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:18.127955 #72319] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-07-27T14:25:18.140039 #72319] INFO -- : GET http://37s.sunrise.i:3000/companies/1/manager.xml -I, [2010-07-27T14:25:18.140179 #72319] INFO -- : --> 200 200 107 (0.1ms) -I, [2010-07-27T14:25:18.151038 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/leader.xml -I, [2010-07-27T14:25:18.151178 #72319] INFO -- : --> 200 200 107 (0.0ms) -I, [2010-07-27T14:25:18.162013 #72319] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:18.162149 #72319] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-07-27T14:25:18.173867 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-07-27T14:25:18.174010 #72319] INFO -- : --> 200 200 166 (0.0ms) -I, [2010-07-27T14:25:18.185452 #72319] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:18.185598 #72319] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-07-27T14:25:18.279817 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-07-27T14:25:18.279971 #72319] INFO -- : --> 200 200 166 (0.0ms) -I, [2010-07-27T14:25:18.284087 #72319] INFO -- : GET http://37s.sunrise.i:3000/people.json -I, [2010-07-27T14:25:18.284217 #72319] INFO -- : --> 200 200 48 (0.0ms) -I, [2010-07-27T14:25:18.285471 #72319] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:18.285557 #72319] INFO -- : --> 200 200 224 (0.0ms) -I, [2010-07-27T14:25:18.290345 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/retrieve.json?name=David -I, [2010-07-27T14:25:18.290467 #72319] INFO -- : --> 200 200 25 (0.0ms) -I, [2010-07-27T14:25:18.291336 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/retrieve.xml?name=David -I, [2010-07-27T14:25:18.291415 #72319] INFO -- : --> 200 200 149 (0.0ms) -I, [2010-07-27T14:25:18.295286 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/2.json -I, [2010-07-27T14:25:18.295410 #72319] INFO -- : --> 200 200 23 (0.0ms) -I, [2010-07-27T14:25:18.295788 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/2/shallow.json -I, [2010-07-27T14:25:18.295946 #72319] INFO -- : --> 200 200 23 (0.0ms) -I, [2010-07-27T14:25:18.297009 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/2.xml -I, [2010-07-27T14:25:18.297102 #72319] INFO -- : --> 200 200 103 (0.0ms) -I, [2010-07-27T14:25:18.300537 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/2/shallow.xml -I, [2010-07-27T14:25:18.300659 #72319] INFO -- : --> 200 200 103 (0.0ms) -I, [2010-07-27T14:25:18.303894 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-07-27T14:25:18.304011 #72319] INFO -- : --> 201 201 15 (0.0ms) -I, [2010-07-27T14:25:18.304542 #72319] INFO -- : POST http://37s.sunrise.i:3000/people/new/register.json -I, [2010-07-27T14:25:18.304626 #72319] INFO -- : --> 201 201 15 (0.0ms) -I, [2010-07-27T14:25:18.305437 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:18.305523 #72319] INFO -- : --> 201 201 74 (0.0ms) -I, [2010-07-27T14:25:18.308623 #72319] INFO -- : POST http://37s.sunrise.i:3000/people/new/register.xml -I, [2010-07-27T14:25:18.308742 #72319] INFO -- : --> 201 201 74 (0.0ms) -I, [2010-07-27T14:25:18.309325 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.json -I, [2010-07-27T14:25:18.309411 #72319] INFO -- : --> 200 200 23 (0.0ms) -I, [2010-07-27T14:25:18.310192 #72319] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-07-27T14:25:18.310283 #72319] INFO -- : --> 200 200 103 (0.0ms) -I, [2010-07-27T14:25:18.314379 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-07-27T14:25:18.314537 #72319] INFO -- : --> 201 201 50 (0.0ms) -I, [2010-07-27T14:25:18.315983 #72319] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-07-27T14:25:18.316092 #72319] INFO -- : --> 201 201 132 (0.0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 410 410 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 410 410 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 410 410 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/not-mocked.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (223 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -GET http://somewhere.else:80/people/6.json ---> 200 200 (32 0ms) -GET http://somewhere.else:80/people/6.json ---> 200 200 (32 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0ms) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0ms) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -GET http://localhost:80/people.xml ---> 200 200 (222 0ms) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0ms) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -POST http://localhost:80/people.xml ---> 201 201 (0 0ms) -POST http://localhost:80/members.xml ---> 201 201 (1 0ms) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0ms) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0ms) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0ms) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0ms) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0ms) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0ms) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people.json ---> 200 200 (48 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0ms) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (25 0ms) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0ms) -GET http://somewhere.else:80/people/2.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0ms) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (15 0ms) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (15 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0ms) -GET http://somewhere.else:80/people/1.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (50 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0ms) -I, [2010-08-12T16:09:06.387101 #67812] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.404342 #67812] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-08-12T16:09:06.405965 #67812] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.406182 #67812] INFO -- : --> 401 401 0 (0.1ms) -I, [2010-08-12T16:09:06.406557 #67812] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.406649 #67812] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-08-12T16:09:06.407913 #67812] INFO -- : GET http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.408008 #67812] INFO -- : --> 200 200 107 (0.0ms) -I, [2010-08-12T16:09:06.565679 #67812] INFO -- : GET http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.565818 #67812] INFO -- : --> 401 401 0 (0.1ms) -I, [2010-08-12T16:09:06.566160 #67812] INFO -- : GET http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.566240 #67812] INFO -- : --> 200 200 107 (0.1ms) -I, [2010-08-12T16:09:06.569391 #67812] INFO -- : GET http://localhost:80/people/1.xml -I, [2010-08-12T16:09:06.569523 #67812] INFO -- : --> 200 200 106 (0.1ms) -I, [2010-08-12T16:09:06.573816 #67812] INFO -- : GET http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.573954 #67812] INFO -- : --> 401 401 0 (0.0ms) -I, [2010-08-12T16:09:06.574310 #67812] INFO -- : GET http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.574385 #67812] INFO -- : --> 200 200 107 (0.0ms) -I, [2010-08-12T16:09:06.578495 #67812] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.578619 #67812] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-08-12T16:09:06.579938 #67812] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.580034 #67812] INFO -- : --> 401 401 0 (0.0ms) -I, [2010-08-12T16:09:06.580358 #67812] INFO -- : HEAD http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.580431 #67812] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-08-12T16:09:06.581629 #67812] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2010-08-12T16:09:06.581726 #67812] INFO -- : --> 201 201 0 (0.0ms) -I, [2010-08-12T16:09:06.582925 #67812] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2010-08-12T16:09:06.583012 #67812] INFO -- : --> 401 401 0 (0.0ms) -I, [2010-08-12T16:09:06.583335 #67812] INFO -- : POST http://localhost:80/people/2/addresses.xml -I, [2010-08-12T16:09:06.583415 #67812] INFO -- : --> 201 201 0 (0.1ms) -I, [2010-08-12T16:09:06.584529 #67812] INFO -- : PUT http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.584619 #67812] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-08-12T16:09:06.585950 #67812] INFO -- : PUT http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.586061 #67812] INFO -- : --> 401 401 0 (0.1ms) -I, [2010-08-12T16:09:06.586383 #67812] INFO -- : PUT http://localhost:80/people/2.xml -I, [2010-08-12T16:09:06.586457 #67812] INFO -- : --> 204 204 0 (0.1ms) -I, [2010-08-12T16:09:06.587769 #67812] INFO -- : GET http://localhost:80/people/2.xml -E, [2010-08-12T16:09:06.587914 #67812] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-08-12T16:09:06.588235 #67812] INFO -- : POST http://localhost:80/people/2/addresses.xml -E, [2010-08-12T16:09:06.588347 #67812] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-08-12T16:09:06.588659 #67812] INFO -- : PUT http://localhost:80/people/2.xml -E, [2010-08-12T16:09:06.588771 #67812] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-08-12T16:09:06.589078 #67812] INFO -- : DELETE http://localhost:80/people/2.xml -E, [2010-08-12T16:09:06.589187 #67812] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-08-12T16:09:06.589497 #67812] INFO -- : HEAD http://localhost:80/people/2.xml -E, [2010-08-12T16:09:06.589606 #67812] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-08-12T16:09:06.590890 #67812] INFO -- : GET http://localhost:80/people/2.xml -E, [2010-08-12T16:09:06.591028 #67812] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-08-12T16:09:06.591351 #67812] INFO -- : POST http://localhost:80/people/2/addresses.xml -E, [2010-08-12T16:09:06.591463 #67812] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-08-12T16:09:06.591817 #67812] INFO -- : PUT http://localhost:80/people/2.xml -E, [2010-08-12T16:09:06.591932 #67812] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-08-12T16:09:06.592245 #67812] INFO -- : DELETE http://localhost:80/people/2.xml -E, [2010-08-12T16:09:06.592364 #67812] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-08-12T16:09:06.592696 #67812] INFO -- : HEAD http://localhost:80/people/2.xml -E, [2010-08-12T16:09:06.592820 #67812] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-08-12T16:09:06.594077 #67812] INFO -- : GET http://localhost:80/people/1.xml -I, [2010-08-12T16:09:06.594175 #67812] INFO -- : --> 401 401 0 (0.0ms) -I, [2010-08-12T16:09:06.613418 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-08-12T16:09:06.613587 #67812] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-08-12T16:09:06.627575 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:06.627732 #67812] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-08-12T16:09:06.691824 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-08-12T16:09:06.691965 #67812] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-08-12T16:09:06.692910 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:06.693017 #67812] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-08-12T16:09:06.696890 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-08-12T16:09:06.697024 #67812] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-08-12T16:09:06.699219 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:06.699335 #67812] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-08-12T16:09:06.704624 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-08-12T16:09:06.704759 #67812] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-08-12T16:09:06.705748 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:06.705836 #67812] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-08-12T16:09:06.712293 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-08-12T16:09:06.712430 #67812] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-08-12T16:09:06.713447 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:06.713544 #67812] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-08-12T16:09:06.720010 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-08-12T16:09:06.720147 #67812] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-08-12T16:09:06.721070 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:06.721156 #67812] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-08-12T16:09:06.724807 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-08-12T16:09:06.724942 #67812] INFO -- : --> 422 422 118 (0.0ms) -I, [2010-08-12T16:09:06.726008 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:06.726141 #67812] INFO -- : --> 422 422 209 (0.0ms) -I, [2010-08-12T16:09:06.729939 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-08-12T16:09:06.730077 #67812] INFO -- : --> 422 422 2 (0.0ms) -I, [2010-08-12T16:09:06.749299 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:06.749447 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:06.799429 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:06.799586 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:06.802895 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:06.803044 #67812] INFO -- : --> 200 200 151 (0.1ms) -I, [2010-08-12T16:09:06.814158 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:06.814299 #67812] INFO -- : --> 201 201 109 (0.0ms) -I, [2010-08-12T16:09:06.818199 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:06.818340 #67812] INFO -- : --> 409 409 0 (0.0ms) -I, [2010-08-12T16:09:06.826677 #67812] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-08-12T16:09:06.826824 #67812] INFO -- : --> 201 201 0 (0.0ms) -I, [2010-08-12T16:09:06.835139 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:06.835280 #67812] INFO -- : --> 201 201 0 (0.0ms) -I, [2010-08-12T16:09:06.916615 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-08-12T16:09:06.916759 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:06.929307 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/4.xml -I, [2010-08-12T16:09:06.929451 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:06.945577 #67812] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:06.945740 #67812] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-08-12T16:09:06.946085 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:06.946159 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:06.954669 #67812] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:06.954821 #67812] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-08-12T16:09:06.955203 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:06.955292 #67812] INFO -- : --> 410 410 0 (0.0ms) -I, [2010-08-12T16:09:06.964422 #67812] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:06.964574 #67812] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-08-12T16:09:06.964942 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:06.965018 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:06.973621 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:06.973778 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:06.977189 #67812] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:06.977309 #67812] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-08-12T16:09:06.977649 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:06.977729 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:06.986409 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:06.986565 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:06.989962 #67812] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:06.990081 #67812] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-08-12T16:09:06.990430 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:06.990506 #67812] INFO -- : --> 410 410 0 (0.0ms) -I, [2010-08-12T16:09:07.080925 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.081094 #67812] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-08-12T16:09:07.084725 #67812] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.084870 #67812] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-08-12T16:09:07.085286 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.085375 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:07.093379 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.093518 #67812] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-08-12T16:09:07.093784 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml -I, [2010-08-12T16:09:07.093856 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:07.094205 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.094280 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.097291 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.097394 #67812] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-08-12T16:09:07.097738 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml -I, [2010-08-12T16:09:07.097856 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:07.098190 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.098265 #67812] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-08-12T16:09:07.098539 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml -I, [2010-08-12T16:09:07.098612 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:07.098914 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml -I, [2010-08-12T16:09:07.098988 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:07.099286 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.099360 #67812] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-08-12T16:09:07.102574 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.102699 #67812] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-08-12T16:09:07.103076 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml -I, [2010-08-12T16:09:07.103158 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:07.103574 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml -I, [2010-08-12T16:09:07.103659 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:07.111395 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.111527 #67812] INFO -- : --> 410 410 0 (0.0ms) -I, [2010-08-12T16:09:07.119248 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-08-12T16:09:07.119397 #67812] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-08-12T16:09:07.119711 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-08-12T16:09:07.119799 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.123298 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-08-12T16:09:07.123438 #67812] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-08-12T16:09:07.123719 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-08-12T16:09:07.123799 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.127017 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2010-08-12T16:09:07.127137 #67812] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-08-12T16:09:07.127424 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-08-12T16:09:07.127500 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.130550 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2010-08-12T16:09:07.130656 #67812] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-08-12T16:09:07.133773 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml -I, [2010-08-12T16:09:07.133874 #67812] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-08-12T16:09:07.142196 #67812] INFO -- : HEAD http://37s.sunrise.i:3000/people/not-mocked.xml -I, [2010-08-12T16:09:07.142337 #67812] INFO -- : --> 200 200 0 (0.1ms) -I, [2010-08-12T16:09:07.164572 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.164711 #67812] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-08-12T16:09:07.175602 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/5.xml -I, [2010-08-12T16:09:07.175746 #67812] INFO -- : --> 200 200 223 (0.0ms) -I, [2010-08-12T16:09:07.195155 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.195303 #67812] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-08-12T16:09:07.206382 #67812] INFO -- : GET http://37s.sunrise.i:3000/customers/1.xml -I, [2010-08-12T16:09:07.206543 #67812] INFO -- : --> 200 200 1458 (0.1ms) -I, [2010-08-12T16:09:07.275026 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-08-12T16:09:07.275178 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.278196 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml -I, [2010-08-12T16:09:07.278303 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.288533 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.288682 #67812] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-08-12T16:09:07.292305 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.292430 #67812] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-08-12T16:09:07.303603 #67812] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:07.303750 #67812] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-08-12T16:09:07.307795 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.307923 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.318633 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.318800 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.330171 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:07.330332 #67812] INFO -- : --> 201 201 109 (0.1ms) -I, [2010-08-12T16:09:07.341797 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:07.341942 #67812] INFO -- : --> 201 201 109 (0.0ms) -I, [2010-08-12T16:09:07.572197 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/6.json -I, [2010-08-12T16:09:07.572337 #67812] INFO -- : --> 200 200 32 (0.0ms) -I, [2010-08-12T16:09:07.580780 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/6.json -I, [2010-08-12T16:09:07.580920 #67812] INFO -- : --> 200 200 32 (0.0ms) -I, [2010-08-12T16:09:07.589351 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.589500 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.600008 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.600152 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.610635 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.610779 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.621784 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.621930 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.633549 #67812] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:07.633723 #67812] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-08-12T16:09:07.638837 #67812] INFO -- : PUT http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.638994 #67812] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-08-12T16:09:07.646762 #67812] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:07.646916 #67812] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-08-12T16:09:07.659178 #67812] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:07.659370 #67812] INFO -- : --> 200 200 222 (0.1ms) -I, [2010-08-12T16:09:07.672382 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-08-12T16:09:07.672542 #67812] INFO -- : --> 200 200 199 (0.0ms) -I, [2010-08-12T16:09:07.684553 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-08-12T16:09:07.684725 #67812] INFO -- : --> 200 200 199 (0.0ms) -I, [2010-08-12T16:09:07.696597 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/2.xml -I, [2010-08-12T16:09:07.696777 #67812] INFO -- : --> 200 200 107 (0.0ms) -I, [2010-08-12T16:09:07.700475 #67812] INFO -- : PUT http://37s.sunrise.i:3000/people/2.xml -I, [2010-08-12T16:09:07.700600 #67812] INFO -- : --> 409 409 0 (0.0ms) -I, [2010-08-12T16:09:07.708697 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.708840 #67812] INFO -- : --> 200 200 151 (0.0ms) -I, [2010-08-12T16:09:07.713197 #67812] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.713341 #67812] INFO -- : --> 204 204 0 (0.1ms) -I, [2010-08-12T16:09:07.805240 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-08-12T16:09:07.805390 #67812] INFO -- : --> 200 200 199 (0.0ms) -I, [2010-08-12T16:09:07.809779 #67812] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.809915 #67812] INFO -- : --> 204 204 0 (0.1ms) -I, [2010-08-12T16:09:07.859114 #67812] INFO -- : GET http://localhost:80/people/1.xml -I, [2010-08-12T16:09:07.859254 #67812] INFO -- : --> 200 200 106 (0.1ms) -I, [2010-08-12T16:09:07.869687 #67812] INFO -- : DELETE http://localhost:80/people/1.xml -I, [2010-08-12T16:09:07.869835 #67812] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-08-12T16:09:07.871878 #67812] INFO -- : DELETE http://localhost:80/people/2.xml -I, [2010-08-12T16:09:07.871969 #67812] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-08-12T16:09:07.873979 #67812] INFO -- : GET http://localhost:80/people/1.xml -I, [2010-08-12T16:09:07.874077 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.878869 #67812] INFO -- : GET http://localhost:80/people.xml -I, [2010-08-12T16:09:07.879000 #67812] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-08-12T16:09:07.885138 #67812] INFO -- : GET http://localhost:80/people_empty_elements.xml -I, [2010-08-12T16:09:07.885299 #67812] INFO -- : --> 200 200 77 (0.0ms) -I, [2010-08-12T16:09:07.889974 #67812] INFO -- : GET http://localhost:80/people_single_elements.xml -I, [2010-08-12T16:09:07.890105 #67812] INFO -- : --> 200 200 208 (0.0ms) -I, [2010-08-12T16:09:07.895089 #67812] INFO -- : GET http://localhost:80/people/2.xml -I, [2010-08-12T16:09:07.895218 #67812] INFO -- : --> 200 200 107 (0.0ms) -I, [2010-08-12T16:09:07.903285 #67812] INFO -- : HEAD http://localhost:80/people/1.xml -I, [2010-08-12T16:09:07.903419 #67812] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-08-12T16:09:07.907333 #67812] INFO -- : POST http://localhost:80/people.xml -I, [2010-08-12T16:09:07.907443 #67812] INFO -- : --> 201 201 0 (0.0ms) -I, [2010-08-12T16:09:07.909469 #67812] INFO -- : POST http://localhost:80/members.xml -I, [2010-08-12T16:09:07.909562 #67812] INFO -- : --> 201 201 8 (0.0ms) -I, [2010-08-12T16:09:07.913497 #67812] INFO -- : PUT http://localhost:80/people/1.xml -I, [2010-08-12T16:09:07.913593 #67812] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-08-12T16:09:07.915613 #67812] INFO -- : PUT http://localhost:80/people/2.xml -I, [2010-08-12T16:09:07.915714 #67812] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-08-12T16:09:07.924963 #67812] INFO -- : GET http://localhost:80/people/1.xml -E, [2010-08-12T16:09:07.925144 #67812] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-08-12T16:09:07.968383 #67812] INFO -- : GET http://localhost:80/people_timeout.xml -E, [2010-08-12T16:09:07.968571 #67812] ERROR -- : Could not log "request.active_resource" event. NoMethodError: undefined method `code' for nil:NilClass -I, [2010-08-12T16:09:07.973202 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/retrieve.xml?name=Matz -I, [2010-08-12T16:09:07.973329 #67812] INFO -- : --> 200 200 146 (0.0ms) -I, [2010-08-12T16:09:07.976581 #67812] INFO -- : POST http://37s.sunrise.i:3000/people/hire.xml?name=Matz -I, [2010-08-12T16:09:07.976687 #67812] INFO -- : --> 201 201 0 (0.0ms) -I, [2010-08-12T16:09:07.977074 #67812] INFO -- : PUT http://37s.sunrise.i:3000/people/promote.xml?name=Matz -I, [2010-08-12T16:09:07.977150 #67812] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-08-12T16:09:07.977418 #67812] INFO -- : PUT http://37s.sunrise.i:3000/people/sort.xml?by=name -I, [2010-08-12T16:09:07.977495 #67812] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-08-12T16:09:07.977756 #67812] INFO -- : DELETE http://37s.sunrise.i:3000/people/deactivate.xml?name=Matz -I, [2010-08-12T16:09:07.977829 #67812] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-08-12T16:09:07.978131 #67812] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name -I, [2010-08-12T16:09:07.978205 #67812] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-08-12T16:09:07.980712 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.980830 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.983896 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/shallow.xml -I, [2010-08-12T16:09:07.984059 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.987047 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.987182 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.989930 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/deep.xml -I, [2010-08-12T16:09:07.990027 #67812] INFO -- : --> 200 200 129 (0.0ms) -I, [2010-08-12T16:09:07.992800 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.992897 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.995680 #67812] INFO -- : PUT http://37s.sunrise.i:3000/people/1/promote.xml?position=Manager -I, [2010-08-12T16:09:07.995792 #67812] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-08-12T16:09:07.996064 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:07.996136 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:07.999099 #67812] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/deactivate.xml -I, [2010-08-12T16:09:07.999212 #67812] INFO -- : --> 200 200 0 (0.0ms) -I, [2010-08-12T16:09:07.999544 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:07.999626 #67812] INFO -- : --> 200 200 120 (0.0ms) -I, [2010-08-12T16:09:08.002954 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml -I, [2010-08-12T16:09:08.003105 #67812] INFO -- : --> 200 200 139 (0.1ms) -I, [2010-08-12T16:09:08.006360 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:08.006491 #67812] INFO -- : --> 200 200 120 (0.0ms) -I, [2010-08-12T16:09:08.009343 #67812] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US -I, [2010-08-12T16:09:08.009452 #67812] INFO -- : --> 204 204 0 (0.0ms) -I, [2010-08-12T16:09:08.012174 #67812] INFO -- : POST http://37s.sunrise.i:3000/people/new/register.xml -I, [2010-08-12T16:09:08.012283 #67812] INFO -- : --> 201 201 78 (0.0ms) -I, [2010-08-12T16:09:08.013028 #67812] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml -I, [2010-08-12T16:09:08.013104 #67812] INFO -- : --> 201 201 92 (0.0ms) -I, [2010-08-12T16:09:08.013725 #67812] INFO -- : POST http://37s.sunrise.i:3000/people/1/register.xml -I, [2010-08-12T16:09:08.013800 #67812] INFO -- : --> 201 201 106 (0.0ms) -I, [2010-08-12T16:09:08.016087 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/managers.xml -I, [2010-08-12T16:09:08.016183 #67812] INFO -- : --> 200 200 146 (0.0ms) -I, [2010-08-12T16:09:08.026871 #67812] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:08.027019 #67812] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-08-12T16:09:08.038333 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-08-12T16:09:08.038478 #67812] INFO -- : --> 200 200 166 (0.0ms) -I, [2010-08-12T16:09:08.049017 #67812] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:08.049161 #67812] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-08-12T16:09:08.060937 #67812] INFO -- : GET http://37s.sunrise.i:3000/companies/1/people.xml -I, [2010-08-12T16:09:08.061086 #67812] INFO -- : --> 200 200 147 (0.0ms) -I, [2010-08-12T16:09:08.071729 #67812] INFO -- : GET http://37s.sunrise.i:3000/companies/1/people.xml -I, [2010-08-12T16:09:08.071871 #67812] INFO -- : --> 200 200 147 (0.0ms) -I, [2010-08-12T16:09:08.082631 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/managers.xml -I, [2010-08-12T16:09:08.082781 #67812] INFO -- : --> 200 200 147 (0.0ms) -I, [2010-08-12T16:09:08.093738 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-08-12T16:09:08.093898 #67812] INFO -- : --> 200 200 166 (0.0ms) -I, [2010-08-12T16:09:08.105448 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/2/addresses.xml -I, [2010-08-12T16:09:08.105594 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:08.113229 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:08.113408 #67812] INFO -- : --> 200 200 106 (0.0ms) -I, [2010-08-12T16:09:08.207201 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/99.xml -I, [2010-08-12T16:09:08.207355 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:08.207771 #67812] INFO -- : GET http://37s.sunrise.i:3000/people//addresses/1.xml -I, [2010-08-12T16:09:08.207851 #67812] INFO -- : --> 404 404 0 (0.0ms) -I, [2010-08-12T16:09:08.215471 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml -I, [2010-08-12T16:09:08.215613 #67812] INFO -- : --> 200 200 120 (0.0ms) -I, [2010-08-12T16:09:08.225930 #67812] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:08.226085 #67812] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-08-12T16:09:08.237727 #67812] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:08.238104 #67812] INFO -- : --> 200 200 222 (0.1ms) -I, [2010-08-12T16:09:08.251237 #67812] INFO -- : GET http://37s.sunrise.i:3000/companies/1/manager.xml -I, [2010-08-12T16:09:08.251399 #67812] INFO -- : --> 200 200 107 (0.0ms) -I, [2010-08-12T16:09:08.262290 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/leader.xml -I, [2010-08-12T16:09:08.262437 #67812] INFO -- : --> 200 200 107 (0.0ms) -I, [2010-08-12T16:09:08.272795 #67812] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:08.272938 #67812] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-08-12T16:09:08.284373 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-08-12T16:09:08.284518 #67812] INFO -- : --> 200 200 166 (0.0ms) -I, [2010-08-12T16:09:08.295608 #67812] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:08.295754 #67812] INFO -- : --> 200 200 222 (0.0ms) -I, [2010-08-12T16:09:08.307305 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml -I, [2010-08-12T16:09:08.307461 #67812] INFO -- : --> 200 200 166 (0.0ms) -I, [2010-08-12T16:09:08.311302 #67812] INFO -- : GET http://37s.sunrise.i:3000/people.json -I, [2010-08-12T16:09:08.311426 #67812] INFO -- : --> 200 200 48 (0.0ms) -I, [2010-08-12T16:09:08.312606 #67812] INFO -- : GET http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:08.312688 #67812] INFO -- : --> 200 200 224 (0.0ms) -I, [2010-08-12T16:09:08.317274 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/retrieve.json?name=David -I, [2010-08-12T16:09:08.317396 #67812] INFO -- : --> 200 200 25 (0.0ms) -I, [2010-08-12T16:09:08.318338 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/retrieve.xml?name=David -I, [2010-08-12T16:09:08.318445 #67812] INFO -- : --> 200 200 149 (0.0ms) -I, [2010-08-12T16:09:08.322152 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/2.json -I, [2010-08-12T16:09:08.322286 #67812] INFO -- : --> 200 200 23 (0.0ms) -I, [2010-08-12T16:09:08.322712 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/2/shallow.json -I, [2010-08-12T16:09:08.322811 #67812] INFO -- : --> 200 200 23 (0.0ms) -I, [2010-08-12T16:09:08.323828 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/2.xml -I, [2010-08-12T16:09:08.323945 #67812] INFO -- : --> 200 200 103 (0.0ms) -I, [2010-08-12T16:09:08.326945 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/2/shallow.xml -I, [2010-08-12T16:09:08.327053 #67812] INFO -- : --> 200 200 103 (0.0ms) -I, [2010-08-12T16:09:08.330403 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-08-12T16:09:08.330533 #67812] INFO -- : --> 201 201 15 (0.0ms) -I, [2010-08-12T16:09:08.330991 #67812] INFO -- : POST http://37s.sunrise.i:3000/people/new/register.json -I, [2010-08-12T16:09:08.331077 #67812] INFO -- : --> 201 201 15 (0.0ms) -I, [2010-08-12T16:09:08.331878 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:08.331958 #67812] INFO -- : --> 201 201 74 (0.0ms) -I, [2010-08-12T16:09:08.334876 #67812] INFO -- : POST http://37s.sunrise.i:3000/people/new/register.xml -I, [2010-08-12T16:09:08.334986 #67812] INFO -- : --> 201 201 74 (0.0ms) -I, [2010-08-12T16:09:08.335526 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.json -I, [2010-08-12T16:09:08.335673 #67812] INFO -- : --> 200 200 23 (0.0ms) -I, [2010-08-12T16:09:08.336608 #67812] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml -I, [2010-08-12T16:09:08.336764 #67812] INFO -- : --> 200 200 103 (0.0ms) -I, [2010-08-12T16:09:08.341032 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.json -I, [2010-08-12T16:09:08.341162 #67812] INFO -- : --> 201 201 50 (0.0ms) -I, [2010-08-12T16:09:08.342613 #67812] INFO -- : POST http://37s.sunrise.i:3000/people.xml -I, [2010-08-12T16:09:08.342700 #67812] INFO -- : --> 201 201 132 (0.0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 409 409 (0 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses.xml ---> 201 201 (0 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/4.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 410 410 (0 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -DELETE http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 410 410 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml ---> 404 404 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/1.xml ---> 410 410 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (120 0ms) -HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml ---> 200 200 (0 0ms) -HEAD http://37s.sunrise.i:3000/people/not-mocked.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/companies/1/people.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/managers.xml ---> 200 200 (147 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/99.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people//addresses/1.xml ---> 404 404 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/companies/1/manager.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/leader.xml ---> 200 200 (107 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/5.xml ---> 200 200 (223 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/customers/1.xml ---> 200 200 (1458 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/Greg.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people.xml ---> 200 200 (222 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 201 201 (109 0ms) -GET http://somewhere.else:80/people/6.json ---> 200 200 (32 0ms) -GET http://somewhere.else:80/people/6.json ---> 200 200 (32 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (222 0ms) -PUT http://somewhere.else:80/people/1.xml ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (107 0ms) -PUT http://somewhere.else:80/people/2.xml ---> 409 409 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses.xml ---> 200 200 (166 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/1.xml ---> 200 200 (106 0ms) -GET http://localhost:80/people.xml ---> 200 200 (222 0ms) -GET http://localhost:80/people_empty_elements.xml ---> 200 200 (77 0ms) -GET http://localhost:80/people_single_elements.xml ---> 200 200 (208 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -HEAD http://localhost:80/people/1.xml ---> 200 200 (0 0ms) -POST http://localhost:80/people.xml ---> 201 201 (0 0ms) -POST http://localhost:80/members.xml ---> 201 201 (1 0ms) -PUT http://localhost:80/people/1.xml ---> 204 204 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -GET http://localhost:80/people/1.xml -GET http://localhost:80/people_timeout.xml -GET http://somewhere.else:80/people/retrieve.xml?name=Matz ---> 200 200 (146 0ms) -POST http://somewhere.else:80/people/hire.xml?name=Matz ---> 201 201 (0 0ms) -PUT http://somewhere.else:80/people/promote.xml?name=Matz ---> 204 204 (0 0ms) -PUT http://somewhere.else:80/people/sort.xml?by=name ---> 204 204 (0 0ms) -DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz ---> 200 200 (0 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/shallow.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -GET http://somewhere.else:80/people/1/deep.xml ---> 200 200 (129 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -PUT http://somewhere.else:80/people/1/promote.xml?position=Manager ---> 204 204 (0 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (106 0ms) -DELETE http://somewhere.else:80/people/1/deactivate.xml ---> 200 200 (0 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml ---> 200 200 (139 0ms) -GET http://37s.sunrise.i:3000/people/1/addresses/1.xml ---> 200 200 (120 0ms) -PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US ---> 204 204 (0 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (78 0ms) -POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml ---> 201 201 (92 0ms) -POST http://somewhere.else:80/people/1/register.xml ---> 201 201 (106 0ms) -GET http://somewhere.else:80/people/managers.xml ---> 200 200 (146 0ms) -GET http://somewhere.else:80/people.json ---> 200 200 (48 0ms) -GET http://somewhere.else:80/people.xml ---> 200 200 (224 0ms) -GET http://somewhere.else:80/people/retrieve.json?name=David ---> 200 200 (25 0ms) -GET http://somewhere.else:80/people/retrieve.xml?name=David ---> 200 200 (149 0ms) -GET http://somewhere.else:80/people/2.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/2/shallow.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/2.xml ---> 200 200 (103 0ms) -GET http://somewhere.else:80/people/2/shallow.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (15 0ms) -POST http://somewhere.else:80/people/new/register.json ---> 201 201 (15 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (74 0ms) -POST http://somewhere.else:80/people/new/register.xml ---> 201 201 (74 0ms) -GET http://somewhere.else:80/people/1.json ---> 200 200 (23 0ms) -GET http://somewhere.else:80/people/1.xml ---> 200 200 (103 0ms) -POST http://somewhere.else:80/people.json ---> 201 201 (50 0ms) -POST http://somewhere.else:80/people.xml ---> 201 201 (132 0ms) -DELETE http://localhost:80/people/2.xml ---> 200 200 (0 0ms) -GET http://localhost:80/people/2.xml ---> 200 200 (107 0ms) -POST http://localhost:80/people/2/addresses.xml ---> 201 201 (0 0ms) -PUT http://localhost:80/people/2.xml ---> 204 204 (0 0ms) -POST http://localhost:80/people/2.xml -POST http://localhost:80/people/2/addresses.xml -PUT http://localhost:80/people/2.xml -DELETE http://localhost:80/people/2.xml -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -POST http://37s.sunrise.i:3000/people.json ---> 422 422 (118 0ms) -POST http://37s.sunrise.i:3000/people.xml ---> 422 422 (209 0ms) -GET http://37s.sunrise.i:3000/people/1.xml ---> 200 200 (106 0ms) diff --git a/vendor/rails/activesupport/lib/active_support/version.rb b/vendor/rails/activesupport/lib/active_support/version.rb index 922d12ff..eee0a635 100644 --- a/vendor/rails/activesupport/lib/active_support/version.rb +++ b/vendor/rails/activesupport/lib/active_support/version.rb @@ -2,7 +2,7 @@ module ActiveSupport module VERSION #:nodoc: MAJOR = 2 MINOR = 3 - TINY = 11 + TINY = 12 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/vendor/rails/railties/Rakefile b/vendor/rails/railties/Rakefile index ebf7c68e..01ac7019 100644 --- a/vendor/rails/railties/Rakefile +++ b/vendor/rails/railties/Rakefile @@ -1,7 +1,7 @@ require 'rake' require 'rake/testtask' -require 'rake/rdoctask' -require 'rake/gempackagetask' +require 'rdoc/task' +require 'rubygems/package_task' require 'date' require 'rbconfig' @@ -267,7 +267,7 @@ task :generate_app_doc do system %{cd #{PKG_DESTINATION}; rake doc:app} end -Rake::RDocTask.new { |rdoc| +RDoc::Task.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title = "Railties -- Gluing the Engine to the Rails" rdoc.options << '--line-numbers' << '--inline-source' << '--accessor' << 'cattr_accessor=object' @@ -313,20 +313,18 @@ spec = Gem::Specification.new do |s| EOF s.add_dependency('rake', '>= 0.8.3') - s.add_dependency('activesupport', '= 2.3.11' + PKG_BUILD) - s.add_dependency('activerecord', '= 2.3.11' + PKG_BUILD) - s.add_dependency('actionpack', '= 2.3.11' + PKG_BUILD) - s.add_dependency('actionmailer', '= 2.3.11' + PKG_BUILD) - s.add_dependency('activeresource', '= 2.3.11' + PKG_BUILD) + s.add_dependency('activesupport', '= 2.3.12' + PKG_BUILD) + s.add_dependency('activerecord', '= 2.3.12' + PKG_BUILD) + s.add_dependency('actionpack', '= 2.3.12' + PKG_BUILD) + s.add_dependency('actionmailer', '= 2.3.12' + PKG_BUILD) + s.add_dependency('activeresource', '= 2.3.12' + PKG_BUILD) s.rdoc_options << '--exclude' << '.' - s.has_rdoc = false s.files = PKG_FILES s.require_path = 'lib' s.bindir = "bin" # Use these for applications. s.executables = ["rails"] - s.default_executable = "rails" s.author = "David Heinemeier Hansson" s.email = "david@loudthinking.com" @@ -334,7 +332,7 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "rails" end -Rake::GemPackageTask.new(spec) do |pkg| +Gem::PackageTask.new(spec) do |pkg| pkg.gem_spec = spec end diff --git a/vendor/rails/railties/lib/rails/gem_dependency.rb b/vendor/rails/railties/lib/rails/gem_dependency.rb index 4a2418c1..1ff608a8 100644 --- a/vendor/rails/railties/lib/rails/gem_dependency.rb +++ b/vendor/rails/railties/lib/rails/gem_dependency.rb @@ -38,7 +38,7 @@ module Rails result = self.new(name, :version => version) spec_filename = File.join(directory_name, '.specification') if load_spec - raise "Missing specification file in #{File.dirname(spec_filename)}. Perhaps you need to do a 'rake gems:refresh_specs'?" unless File.exists?(spec_filename) + raise "Missing specification file in #{File.dirname(spec_filename)}. Perhaps you need to do a 'rake gems:refresh_specs'\?" unless File.exists?(spec_filename) spec = YAML::load_file(spec_filename) result.specification = spec end @@ -72,7 +72,15 @@ module Rails @load_paths_added = @loaded = @frozen = true return end - gem self + + begin + dep = Gem::Dependency.new(name, requirement) + spec = Gem.source_index.find { |_,s| s.satisfies_requirement?(dep) }.last + spec.activate # a way that exists + rescue + gem self.name, self.requirement # < 1.8 unhappy way + end + @spec = Gem.loaded_specs[name] @frozen = @spec.loaded_from.include?(self.class.unpacked_path) if @spec @load_paths_added = true @@ -117,18 +125,6 @@ module Rails @spec = s end - if method_defined?(:requirement) - def requirement - req = super - req unless req == Gem::Requirement.default - end - else - def requirement - req = version_requirements - req unless req == Gem::Requirement.default - end - end - def built? return false unless frozen? @@ -274,9 +270,10 @@ module Rails end def ==(other) - self.name == other.name && self.requirement == other.requirement + Gem::Dependency === other.class && + self.name == other.name && self.requirement == other.requirement end - alias_method :"eql?", :"==" + alias_method :eql?, :"==" private diff --git a/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb b/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb index ea5147a8..9324de98 100644 --- a/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb +++ b/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb @@ -31,7 +31,7 @@ module Rails def refresh! # reload the installed gems - @installed_source_index.refresh! + # HACK: I don't think this is needed: @installed_source_index.refresh! vendor_gems = {} # handle vendor Rails gems - they are identified by having loaded_from set to "" diff --git a/vendor/rails/railties/lib/rails/version.rb b/vendor/rails/railties/lib/rails/version.rb index 2f557201..94df7c10 100644 --- a/vendor/rails/railties/lib/rails/version.rb +++ b/vendor/rails/railties/lib/rails/version.rb @@ -2,7 +2,7 @@ module Rails module VERSION #:nodoc: MAJOR = 2 MINOR = 3 - TINY = 11 + TINY = 12 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile b/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile index 85e8ff18..c56ce947 100644 --- a/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile +++ b/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile @@ -1,6 +1,6 @@ require 'rake' require 'rake/testtask' -require 'rake/rdoctask' +require 'rdoc/task' desc 'Default: run unit tests.' task :default => :test @@ -14,7 +14,7 @@ Rake::TestTask.new(:test) do |t| end desc 'Generate documentation for the <%= file_name %> plugin.' -Rake::RDocTask.new(:rdoc) do |rdoc| +RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = '<%= class_name %>' rdoc.options << '--line-numbers' << '--inline-source' diff --git a/vendor/rails/railties/lib/tasks/documentation.rake b/vendor/rails/railties/lib/tasks/documentation.rake index 8b41478a..bc7887b7 100644 --- a/vendor/rails/railties/lib/tasks/documentation.rake +++ b/vendor/rails/railties/lib/tasks/documentation.rake @@ -1,6 +1,6 @@ namespace :doc do desc "Generate documentation for the application. Set custom template with TEMPLATE=/path/to/rdoc/template.rb or title with TITLE=\"Custom Title\"" - Rake::RDocTask.new("app") { |rdoc| + RDoc::Task.new("app") { |rdoc| rdoc.rdoc_dir = 'doc/app' rdoc.template = ENV['template'] if ENV['template'] rdoc.title = ENV['title'] || "Rails Application Documentation" @@ -12,7 +12,7 @@ namespace :doc do } desc "Generate documentation for the Rails framework" - Rake::RDocTask.new("rails") { |rdoc| + RDoc::Task.new("rails") { |rdoc| rdoc.rdoc_dir = 'doc/api' rdoc.template = "#{ENV['template']}.rb" if ENV['template'] rdoc.title = "Rails Framework Documentation" diff --git a/vendor/rails/railties/lib/tasks/framework.rake b/vendor/rails/railties/lib/tasks/framework.rake index 5dcdacef..76ee9aff 100644 --- a/vendor/rails/railties/lib/tasks/framework.rake +++ b/vendor/rails/railties/lib/tasks/framework.rake @@ -24,7 +24,7 @@ namespace :rails do begin chdir("vendor/rails") do rails.dependencies.select { |g| deps.include? g.name }.each do |g| - Gem::GemRunner.new.run(["unpack", g.name, "--version", g.version_requirements.to_s]) + Gem::GemRunner.new.run(["unpack", g.name, "--version", g.respond_to?(:requirement) ? g.requirement.to_s : g.version_requirements.to_s]) mv(Dir.glob("#{g.name}*").first, g.name) end diff --git a/vendor/rails/railties/tags b/vendor/rails/railties/tags new file mode 100644 index 00000000..b79f0943 --- /dev/null +++ b/vendor/rails/railties/tags @@ -0,0 +1,2260 @@ +!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/ +!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/ +!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/ +!_TAG_PROGRAM_NAME Exuberant Ctags // +!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/ +!_TAG_PROGRAM_VERSION 5.8 // +%name%.rb lib/rails/generators/rails/plugin_new/templates/lib/%name%.rb 1;" F +%name%_test.rb lib/rails/generators/rails/plugin_new/templates/test/%name%_test.rb 1;" F ++ lib/rails/initializable.rb /^ def +(other)$/;" f class:Rails.Initializable.Collection +404.html lib/rails/generators/rails/app/templates/public/404.html 1;" F +404.html tmp/app/public/404.html 1;" F +404.html tmp/app_template/public/404.html 1;" F +422.html lib/rails/generators/rails/app/templates/public/422.html 1;" F +422.html tmp/app/public/422.html 1;" F +422.html tmp/app_template/public/422.html 1;" F +500.html lib/rails/generators/rails/app/templates/public/500.html 1;" F +500.html tmp/app/public/500.html 1;" F +500.html tmp/app_template/public/500.html 1;" F +ActionController lib/rails/test_help.rb /^class ActionController::TestCase$/;" c +ActionController test/rails_info_controller_test.rb /^module ActionController$/;" m +ActionDispatch lib/rails/test_help.rb /^class ActionDispatch::IntegrationTest$/;" c +ActionMethods lib/rails/generators/rails/app/app_generator.rb /^ module ActionMethods$/;" m class:Rails +Actions lib/rails/generators/actions.rb /^ module Actions$/;" m class:Rails.Generators +ActionsTest test/generators/actions_test.rb /^class ActionsTest < Rails::Generators::TestCase$/;" c +ActiveModel lib/rails/generators/active_model.rb /^ class ActiveModel$/;" c class:Rails.Generators +ActiveRecord test/fixtures/lib/generators/active_record/fixjour_generator.rb /^module ActiveRecord$/;" m +ActiveRecord test/generators/named_base_test.rb /^module ActiveRecord$/;" m +ActiveSupport lib/rails/test_help.rb /^ class ActiveSupport::TestCase$/;" c +ActiveSupport tmp/app/test/test_helper.rb /^class ActiveSupport::TestCase$/;" c +ActiveSupport tmp/app_template/test/test_helper.rb /^class ActiveSupport::TestCase$/;" c +AddLastNameToUsers test/railties/shared_tests.rb /^ class AddLastNameToUsers < ActiveRecord::Migration$/;" c class:RailtiesTest.SharedTests.test_copying_migrations +Admin test/application/routing_test.rb /^ module Admin$/;" m +Admin test/railties/shared_tests.rb /^ class Admin::Foo::BarController < ApplicationController$/;" c class:RailtiesTest.test_namespaced_controllers_with_namespaced_routes +Ajax.InPlaceCollectionEditor.DefaultOptions.loadingCollectionText lib/rails/generators/rails/app/templates/public/javascripts/controls.js /^Ajax.InPlaceCollectionEditor.DefaultOptions = {$/;" p +Ajax.InPlaceCollectionEditor.DefaultOptions.loadingCollectionText tmp/app/public/javascripts/controls.js /^Ajax.InPlaceCollectionEditor.DefaultOptions = {$/;" p +Ajax.InPlaceCollectionEditor.DefaultOptions.loadingCollectionText tmp/app_template/public/javascripts/controls.js /^Ajax.InPlaceCollectionEditor.DefaultOptions = {$/;" p +Ajax.InPlaceEditor lib/rails/generators/rails/app/templates/public/javascripts/controls.js /^});$/;" c +Ajax.InPlaceEditor tmp/app/public/javascripts/controls.js /^});$/;" c +Ajax.InPlaceEditor tmp/app_template/public/javascripts/controls.js /^});$/;" c +Ajax.InPlaceEditor.initialize lib/rails/generators/rails/app/templates/public/javascripts/controls.js /^Ajax.InPlaceEditor.prototype.initialize.dealWithDeprecatedOptions = function(options) {$/;" m +Ajax.InPlaceEditor.initialize tmp/app/public/javascripts/controls.js /^Ajax.InPlaceEditor.prototype.initialize.dealWithDeprecatedOptions = function(options) {$/;" m +Ajax.InPlaceEditor.initialize tmp/app_template/public/javascripts/controls.js /^Ajax.InPlaceEditor.prototype.initialize.dealWithDeprecatedOptions = function(options) {$/;" m +Annotation lib/rails/source_annotation_extractor.rb /^ class Annotation < Struct.new(:line, :tag, :text)$/;" c class:SourceAnnotationExtractor +AppBase lib/rails/generators/app_base.rb /^ class AppBase < Base$/;" c class:Rails.Generators +AppBuilder lib/rails/generators/rails/app/app_generator.rb /^ class AppBuilder$/;" c class:Rails +AppBuilder test/fixtures/lib/app_builders/empty_builder.rb /^class AppBuilder$/;" c +AppBuilder test/fixtures/lib/app_builders/simple_builder.rb /^class AppBuilder$/;" c +AppBuilder test/fixtures/lib/app_builders/tweak_builder.rb /^class AppBuilder < Rails::AppBuilder$/;" c +AppGenerator lib/rails/generators/rails/app/app_generator.rb /^ class AppGenerator < AppBase$/;" c class:Generators +AppGeneratorTest test/generators/app_generator_test.rb /^class AppGeneratorTest < Rails::Generators::TestCase$/;" c +AppTemplate test/railties/engine_test.rb /^ module AppTemplate$/;" m +AppTemplate tmp/app/config/application.rb /^module AppTemplate$/;" m +AppTemplate tmp/app_template/config/application.rb /^module AppTemplate$/;" m +Application lib/rails/application.rb /^ class Application < Engine$/;" c class:Rails +Application lib/rails/application/bootstrap.rb /^ class Application$/;" c class:Rails +Application lib/rails/application/configuration.rb /^ class Application$/;" c class:Rails +Application lib/rails/application/finisher.rb /^ class Application$/;" c class:Rails +Application lib/rails/application/railties.rb /^ class Application < Engine$/;" c class:Rails +Application lib/rails/application/routes_reloader.rb /^ class Application$/;" c class:Rails +Application lib/rails/generators/rails/app/templates/config/application.rb /^ class Application < Rails::Application$/;" c +Application test/abstract_unit.rb /^ class Application < Rails::Application$/;" c class:TestApp +Application test/initializable_test.rb /^ class Application$/;" c +Application tmp/app/config/application.rb /^ class Application < Rails::Application$/;" c class:AppTemplate +Application tmp/app_template/config/application.rb /^ class Application < Rails::Application$/;" c class:AppTemplate +ApplicationController lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb /^class ApplicationController < ActionController::Base$/;" c +ApplicationController test/application/initializers/frameworks_test.rb /^ class ApplicationController < ActionController::Base$/;" c +ApplicationController tmp/app/app/controllers/application_controller.rb /^class ApplicationController < ActionController::Base$/;" c +ApplicationController tmp/app_template/app/controllers/application_controller.rb /^class ApplicationController < ActionController::Base$/;" c +ApplicationGeneratingController test/railties/mounted_engine_test.rb /^ class ApplicationGeneratingController < ActionController::Base$/;" c class:ApplicationTests.ApplicationRoutingTest +ApplicationHelper lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb /^module ApplicationHelper$/;" m +ApplicationHelper test/application/initializers/frameworks_test.rb /^ module ApplicationHelper$/;" m +ApplicationHelper tmp/app/app/helpers/application_helper.rb /^module ApplicationHelper$/;" m +ApplicationHelper tmp/app_template/app/helpers/application_helper.rb /^module ApplicationHelper$/;" m +ApplicationRoutingTest test/railties/mounted_engine_test.rb /^ class ApplicationRoutingTest < Test::Unit::TestCase$/;" c class:ApplicationTests +ApplicationTests test/application/configuration_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/generators_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/initializers/boot_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/initializers/check_ruby_version_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/initializers/frameworks_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/initializers/hooks_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/initializers/i18n_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/initializers/load_path_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/initializers/notifications_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/middleware/best_practices_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/middleware/cache_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/middleware/remote_ip_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/middleware/sendfile_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/middleware_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/paths_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/rackup_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/rake_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/routing_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/runner_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/test_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/application/url_generation_test.rb /^module ApplicationTests$/;" m +ApplicationTests test/railties/mounted_engine_test.rb /^module ApplicationTests$/;" m +Autocompleter.Base lib/rails/generators/rails/app/templates/public/javascripts/controls.js /^});$/;" c +Autocompleter.Base tmp/app/public/javascripts/controls.js /^});$/;" c +Autocompleter.Base tmp/app_template/public/javascripts/controls.js /^});$/;" c +Autocompleter.Base.getTokenBounds lib/rails/generators/rails/app/templates/public/javascripts/controls.js /^Autocompleter.Base.prototype.getTokenBounds.getFirstDifferencePos = function(newS, oldS) {$/;" m +Autocompleter.Base.getTokenBounds tmp/app/public/javascripts/controls.js /^Autocompleter.Base.prototype.getTokenBounds.getFirstDifferencePos = function(newS, oldS) {$/;" m +Autocompleter.Base.getTokenBounds tmp/app_template/public/javascripts/controls.js /^Autocompleter.Base.prototype.getTokenBounds.getFirstDifferencePos = function(newS, oldS) {$/;" m +BacktraceCleaner lib/rails/backtrace_cleaner.rb /^ class BacktraceCleaner < ActiveSupport::BacktraceCleaner$/;" c class:Rails +BacktraceCleanerFilterTest test/backtrace_cleaner_test.rb /^ class BacktraceCleanerFilterTest < ActiveSupport::TestCase$/;" c +BacktraceCleanerVendorGemTest test/backtrace_cleaner_test.rb /^ class BacktraceCleanerVendorGemTest < ActiveSupport::TestCase$/;" c +BacktraceFilterForTestUnit lib/rails/backtrace_cleaner.rb /^ module BacktraceFilterForTestUnit #:nodoc:$/;" m class:Rails +Bar test/initializable_test.rb /^ class Bar < Foo$/;" c class:InitializableTests +Bar test/railties/railtie_test.rb /^ class Bar < Foo; end$/;" c +BarController test/application/routing_test.rb /^ class BarController < ActionController::Base$/;" c +BarController test/railties/shared_tests.rb /^ class BarController < ActionController::Base$/;" c class:RailtiesTest.test_routes_in_plugins_have_lower_priority_than_application_ones +BarHelper test/application/initializers/frameworks_test.rb /^ module BarHelper$/;" m +BarHelper test/application/routing_test.rb /^ module BarHelper$/;" m +BarHelper test/railties/engine_test.rb /^ module BarHelper$/;" m +Base lib/rails/generators/base.rb /^ class Base < Thor::Group$/;" c class:Rails.Generators +Base lib/rails/generators/erb.rb /^ class Base < Rails::Generators::NamedBase #:nodoc:$/;" c class:Erb.Generators +Base lib/rails/generators/test_unit.rb /^ class Base < Rails::Generators::NamedBase #:nodoc:$/;" c class:TestUnit.Generators +Base test/generators/named_base_test.rb /^ class Base$/;" c class:ActiveRecord +Base test/rails_info_controller_test.rb /^ class Base$/;" c class:ActionController +Basic test/initializable_test.rb /^ class Basic < ActiveSupport::TestCase$/;" c +BeforeAfter test/initializable_test.rb /^ class BeforeAfter < ActiveSupport::TestCase$/;" c +BestPracticesTest test/application/middleware/best_practices_test.rb /^ class BestPracticesTest < Test::Unit::TestCase$/;" c class:ApplicationTests +Blog test/railties/mounted_engine_test.rb /^ module Blog$/;" m class:ApplicationTests.ApplicationRoutingTest +Bootstrap lib/rails/application/bootstrap.rb /^ module Bootstrap$/;" m class:Rails.Application +BrowsingTest lib/rails/generators/rails/app/templates/test/performance/browsing_test.rb /^class BrowsingTest < ActionDispatch::PerformanceTest$/;" c +BrowsingTest tmp/app/test/performance/browsing_test.rb /^class BrowsingTest < ActionDispatch::PerformanceTest$/;" c +BrowsingTest tmp/app_template/test/performance/browsing_test.rb /^class BrowsingTest < ActionDispatch::PerformanceTest$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushAS3.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushAppleScript.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushBash.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushCSharp.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushColdFusion.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushCpp.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushCss.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushDelphi.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushDiff.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushErlang.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushGroovy.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushJScript.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushJava.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushJavaFX.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushPerl.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushPhp.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushPlain.js /^ function Brush()$/;" f +Brush guides/assets/javascripts/syntaxhighlighter/shBrushPlain.js /^ };$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushPowerShell.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushPython.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushRuby.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushSass.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushScala.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushSql.js /^ function Brush()$/;" c +Brush guides/assets/javascripts/syntaxhighlighter/shBrushXml.js /^ function Brush()$/;" c +Brush.fixComments guides/assets/javascripts/syntaxhighlighter/shBrushCSharp.js /^ function fixComments(match, regexInfo)$/;" f +Brush.getKeywordsCSS guides/assets/javascripts/syntaxhighlighter/shBrushCss.js /^ function getKeywordsCSS(str)$/;" f +Brush.getKeywordsCSS guides/assets/javascripts/syntaxhighlighter/shBrushSass.js /^ function getKeywordsCSS(str)$/;" f +Brush.getValuesCSS guides/assets/javascripts/syntaxhighlighter/shBrushCss.js /^ function getValuesCSS(str)$/;" f +Brush.getValuesCSS guides/assets/javascripts/syntaxhighlighter/shBrushSass.js /^ function getValuesCSS(str)$/;" f +Brush.process guides/assets/javascripts/syntaxhighlighter/shBrushXml.js /^ function process(match, regexInfo)$/;" f +Bukkit test/isolation/abstract_unit.rb /^ class Bukkit$/;" c +BukkitController test/railties/shared_tests.rb /^ class BukkitController < ActionController::Base$/;" c class:RailtiesTest.test_adds_helpers_to_controller_views +BukkitController test/railties/shared_tests.rb /^ class BukkitController < ActionController::Base$/;" c class:RailtiesTest.test_adds_its_views_to_view_paths +BukkitController test/railties/shared_tests.rb /^ class BukkitController < ActionController::Base$/;" c class:RailtiesTest.test_adds_its_views_to_view_paths_with_lower_proriority_than_app_ones +BukkitHelper test/railties/shared_tests.rb /^ module BukkitHelper$/;" m class:RailtiesTest.test_adds_helpers_to_controller_views +Bukkits test/railties/engine_test.rb /^ class Bukkits$/;" c class:RailtiesTest.EngineTest.setup +Bukkits test/railties/engine_test.rb /^ class Bukkits$/;" c +Bukkits test/railties/engine_test.rb /^ class Bukkits::FooController < ActionController::Base$/;" c +Bukkits test/railties/engine_test.rb /^ class Bukkits::PostsController < ActionController::Base$/;" c +Bukkits test/railties/engine_test.rb /^ module Bukkits$/;" m +Bukkits test/railties/plugin_test.rb /^ class Bukkits$/;" c +Bukkits test/railties/shared_tests.rb /^ class Bukkits$/;" c class:RailtiesTest.test_midleware_referenced_in_configuration +CheckRubyVersionTest test/application/initializers/check_ruby_version_test.rb /^ class CheckRubyVersionTest < Test::Unit::TestCase$/;" c class:ApplicationTests +Child test/initializable_test.rb /^ class Child < Parent$/;" c class:InitializableTests +ClassMethods lib/rails/generators/migration.rb /^ module ClassMethods$/;" m class:Rails.Generators.Migration +ClassMethods lib/rails/initializable.rb /^ module ClassMethods$/;" m class:Rails.Initializable +ClassMethods lib/rails/railtie/configurable.rb /^ module ClassMethods$/;" m class:Rails.Railtie.Configurable +CodeStatistics lib/rails/code_statistics.rb /^class CodeStatistics #:nodoc:$/;" c +Collection lib/rails/initializable.rb /^ class Collection < Array$/;" c class:Rails.Initializable +Commands lib/rails/commands/plugin.rb /^module Commands$/;" m +Configurable lib/rails/railtie/configurable.rb /^ module Configurable$/;" m class:Rails.Railtie +Configuration lib/rails/application/configuration.rb /^ class Configuration < ::Rails::Engine::Configuration$/;" c class:Rails.Application +Configuration lib/rails/configuration.rb /^ module Configuration$/;" m class:Rails +Configuration lib/rails/engine/configuration.rb /^ class Configuration < ::Rails::Railtie::Configuration$/;" c class:Rails.Engine +Configuration lib/rails/railtie/configuration.rb /^ class Configuration$/;" c class:Rails.Railtie +ConfigurationTest test/application/configuration_test.rb /^ class ConfigurationTest < Test::Unit::TestCase$/;" c class:ApplicationTests +Console lib/rails/commands/console.rb /^ class Console$/;" c class:Rails +ConsoleTest test/application/console_test.rb /^class ConsoleTest < Test::Unit::TestCase$/;" c +ControllerGenerator lib/rails/generators/erb/controller/controller_generator.rb /^ class ControllerGenerator < Base$/;" c class:Erb.Generators +ControllerGenerator lib/rails/generators/rails/controller/controller_generator.rb /^ class ControllerGenerator < NamedBase$/;" c class:Rails.Generators +ControllerGenerator lib/rails/generators/test_unit/controller/controller_generator.rb /^ class ControllerGenerator < Base$/;" c class:TestUnit.Generators +ControllerGeneratorTest test/generators/controller_generator_test.rb /^class ControllerGeneratorTest < Rails::Generators::TestCase$/;" c +CreateSessions test/railties/shared_tests.rb /^ class CreateSessions < ActiveRecord::Migration$/;" c class:RailtiesTest.SharedTests.test_copying_migrations +CreateSessions test/railties/shared_tests.rb /^ class CreateSessions < ActiveRecord::Migration$/;" c class:RailtiesTest.SharedTests.test_install_migrations_and_assets +CreateUsers test/railties/shared_tests.rb /^ class CreateUsers < ActiveRecord::Migration$/;" c class:RailtiesTest.SharedTests.test_copying_migrations +CreateUsers test/railties/shared_tests.rb /^ class CreateUsers < ActiveRecord::Migration$/;" c class:RailtiesTest.SharedTests.test_install_migrations_and_assets +CreateYaffles test/railties/shared_tests.rb /^ class CreateYaffles < ActiveRecord::Migration$/;" c class:RailtiesTest.SharedTests +CustomAppGeneratorTest test/generators/app_generator_test.rb /^class CustomAppGeneratorTest < Rails::Generators::TestCase$/;" c +CustomPluginGeneratorTest test/generators/plugin_new_generator_test.rb /^class CustomPluginGeneratorTest < Rails::Generators::TestCase$/;" c +DBConsole lib/rails/commands/dbconsole.rb /^ class DBConsole$/;" c class:Rails +Debugger lib/rails/rack/debugger.rb /^ class Debugger$/;" c class:Rails.Rack +Draggable lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^var Draggable = Class.create({$/;" v +Draggable tmp/app/public/javascripts/dragdrop.js /^var Draggable = Class.create({$/;" v +Draggable tmp/app_template/public/javascripts/dragdrop.js /^var Draggable = Class.create({$/;" v +Draggables.drags lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^var Draggables = {$/;" p +Draggables.drags tmp/app/public/javascripts/dragdrop.js /^var Draggables = {$/;" p +Draggables.drags tmp/app_template/public/javascripts/dragdrop.js /^var Draggables = {$/;" p +Droppables.drops lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^var Droppables = {$/;" p +Droppables.drops tmp/app/public/javascripts/dragdrop.js /^var Droppables = {$/;" p +Droppables.drops tmp/app_template/public/javascripts/dragdrop.js /^var Droppables = {$/;" p +Effect.Appear lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.Appear tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.Appear tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.BlindDown lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.BlindDown tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.BlindDown tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.BlindUp lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.BlindUp tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.BlindUp tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.DropOut lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.DropOut tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.DropOut tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.DropOut.oldStyle.top lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.DropOut.oldStyle.top tmp/app/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.DropOut.oldStyle.top tmp/app_template/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Fade lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.Fade tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.Fade tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.Fold lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.Fold tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.Fold tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.Fold.oldStyle.top lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Fold.oldStyle.top tmp/app/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Fold.oldStyle.top tmp/app_template/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Grow lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.Grow tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.Grow tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.Grow.oldStyle.top lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Grow.oldStyle.top tmp/app/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Grow.oldStyle.top tmp/app_template/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Methods.highlight lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ },$/;" m +Effect.Methods.highlight tmp/app/public/javascripts/effects.js /^ },$/;" m +Effect.Methods.highlight tmp/app_template/public/javascripts/effects.js /^ },$/;" m +Effect.Methods.morph lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^Effect.Methods = {$/;" m +Effect.Methods.morph tmp/app/public/javascripts/effects.js /^Effect.Methods = {$/;" m +Effect.Methods.morph tmp/app_template/public/javascripts/effects.js /^Effect.Methods = {$/;" m +Effect.Methods.visualEffect lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ },$/;" m +Effect.Methods.visualEffect tmp/app/public/javascripts/effects.js /^ },$/;" m +Effect.Methods.visualEffect tmp/app_template/public/javascripts/effects.js /^ },$/;" m +Effect.MoveBy lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^});$/;" f +Effect.MoveBy tmp/app/public/javascripts/effects.js /^});$/;" f +Effect.MoveBy tmp/app_template/public/javascripts/effects.js /^});$/;" f +Effect.Puff lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.Puff tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.Puff tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.Puff.oldStyle.opacity lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Puff.oldStyle.opacity tmp/app/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Puff.oldStyle.opacity tmp/app_template/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Pulsate lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.Pulsate tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.Pulsate tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.Queues.instances lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^Effect.Queues = {$/;" p +Effect.Queues.instances tmp/app/public/javascripts/effects.js /^Effect.Queues = {$/;" p +Effect.Queues.instances tmp/app_template/public/javascripts/effects.js /^Effect.Queues = {$/;" p +Effect.ScrollTo lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^});$/;" f +Effect.ScrollTo tmp/app/public/javascripts/effects.js /^});$/;" f +Effect.ScrollTo tmp/app_template/public/javascripts/effects.js /^});$/;" f +Effect.Shake lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.Shake tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.Shake tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.Shake.oldStyle.top lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Shake.oldStyle.top tmp/app/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Shake.oldStyle.top tmp/app_template/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Shrink lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.Shrink tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.Shrink tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.Shrink.oldStyle.top lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Shrink.oldStyle.top tmp/app/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.Shrink.oldStyle.top tmp/app_template/public/javascripts/effects.js /^ var oldStyle = {$/;" p +Effect.SlideDown lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.SlideDown tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.SlideDown tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.SlideUp lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.SlideUp tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.SlideUp tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.Squish lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.Squish tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.Squish tmp/app_template/public/javascripts/effects.js /^};$/;" f +Effect.SwitchOff lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Effect.SwitchOff tmp/app/public/javascripts/effects.js /^};$/;" f +Effect.SwitchOff tmp/app_template/public/javascripts/effects.js /^};$/;" f +Element.collectTextNodes lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Element.collectTextNodes tmp/app/public/javascripts/effects.js /^};$/;" f +Element.collectTextNodes tmp/app_template/public/javascripts/effects.js /^};$/;" f +Element.collectTextNodesIgnoreClass lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Element.collectTextNodesIgnoreClass tmp/app/public/javascripts/effects.js /^};$/;" f +Element.collectTextNodesIgnoreClass tmp/app_template/public/javascripts/effects.js /^};$/;" f +Element.findChildren lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^};$/;" f +Element.findChildren tmp/app/public/javascripts/dragdrop.js /^};$/;" f +Element.findChildren tmp/app_template/public/javascripts/dragdrop.js /^};$/;" f +Element.forceRerendering lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Element.forceRerendering tmp/app/public/javascripts/effects.js /^};$/;" f +Element.forceRerendering tmp/app_template/public/javascripts/effects.js /^};$/;" f +Element.getInlineOpacity lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Element.getInlineOpacity tmp/app/public/javascripts/effects.js /^};$/;" f +Element.getInlineOpacity tmp/app_template/public/javascripts/effects.js /^};$/;" f +Element.getStyles lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^if (document.defaultView && document.defaultView.getComputedStyle) {$/;" f +Element.getStyles tmp/app/public/javascripts/effects.js /^if (document.defaultView && document.defaultView.getComputedStyle) {$/;" f +Element.getStyles tmp/app_template/public/javascripts/effects.js /^if (document.defaultView && document.defaultView.getComputedStyle) {$/;" f +Element.isParent lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^};$/;" f +Element.isParent tmp/app/public/javascripts/dragdrop.js /^};$/;" f +Element.isParent tmp/app_template/public/javascripts/dragdrop.js /^};$/;" f +Element.offsetSize lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^};$/;" f +Element.offsetSize tmp/app/public/javascripts/dragdrop.js /^};$/;" f +Element.offsetSize tmp/app_template/public/javascripts/dragdrop.js /^};$/;" f +Element.setContentZoom lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^};$/;" f +Element.setContentZoom tmp/app/public/javascripts/effects.js /^};$/;" f +Element.setContentZoom tmp/app_template/public/javascripts/effects.js /^};$/;" f +Engine lib/rails/engine.rb /^ class Engine < Railtie$/;" c class:Rails +Engine lib/rails/engine/configuration.rb /^ class Engine$/;" c class:Rails +Engine lib/rails/engine/railties.rb /^ class Engine < Railtie$/;" c class:Rails +Engine lib/rails/generators/rails/plugin_new/templates/lib/%name%/engine.rb /^ class Engine < Rails::Engine$/;" c +Engine test/railties/engine_test.rb /^ class Engine < ::Rails::Engine$/;" c class:RailtiesTest.EngineTest.setup.Bukkits +Engine test/railties/engine_test.rb /^ class Engine < ::Rails::Engine$/;" c class:AppTemplate +Engine test/railties/engine_test.rb /^ class Engine < ::Rails::Engine$/;" c class:Bukkits +Engine test/railties/mounted_engine_test.rb /^ class Engine < ::Rails::Engine$/;" c class:ApplicationTests.ApplicationRoutingTest.Blog +Engine test/railties/plugin_test.rb /^ class Engine < Rails::Engine$/;" c class:Bukkits +EngineHelper test/railties/engine_test.rb /^ module EngineHelper$/;" m +EngineTest test/railties/engine_test.rb /^ class EngineTest < Test::Unit::TestCase$/;" c class:RailtiesTest +Erb lib/rails/generators/erb.rb /^module Erb$/;" m +Erb lib/rails/generators/erb/controller/controller_generator.rb /^module Erb$/;" m +Erb lib/rails/generators/erb/mailer/mailer_generator.rb /^module Erb$/;" m +Erb lib/rails/generators/erb/scaffold/scaffold_generator.rb /^module Erb$/;" m +Error lib/rails/generators/base.rb /^ class Error < Thor::Error$/;" c class:Rails.Generators +Event.Handler lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ if (!submitBubbles || !changeBubbles) {$/;" c +Event.Handler tmp/app/public/javascripts/rails.js /^ if (!submitBubbles || !changeBubbles) {$/;" c +Event.Handler tmp/app_template/public/javascripts/rails.js /^ if (!submitBubbles || !changeBubbles) {$/;" c +Event.Handler.initialize lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap($/;" m +Event.Handler.initialize tmp/app/public/javascripts/rails.js /^ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap($/;" m +Event.Handler.initialize tmp/app_template/public/javascripts/rails.js /^ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap($/;" m +ExpiresController test/application/middleware/cache_test.rb /^ class ExpiresController < ApplicationController$/;" c class:ApplicationTests.RoutingTest.simple_controller +Field.scrollFreeActivate lib/rails/generators/rails/app/templates/public/javascripts/controls.js /^});$/;" f +Field.scrollFreeActivate tmp/app/public/javascripts/controls.js /^});$/;" f +Field.scrollFreeActivate tmp/app_template/public/javascripts/controls.js /^});$/;" f +Finisher lib/rails/application/finisher.rb /^ module Finisher$/;" m class:Rails.Application +FixjourGenerator test/fixtures/lib/generators/active_record/fixjour_generator.rb /^ class FixjourGenerator < Base$/;" c class:ActiveRecord.Generators +FixjourGenerator test/fixtures/lib/generators/fixjour_generator.rb /^class FixjourGenerator < Rails::Generators::NamedBase$/;" c +Foo test/application/initializers/frameworks_test.rb /^ class Foo < ActionMailer::Base$/;" c +Foo test/application/initializers/load_path_test.rb /^ module Foo; end$/;" m +Foo test/application/initializers/load_path_test.rb /^ module Foo; end$/;" m class:ApplicationTests +Foo test/initializable_test.rb /^ class Foo$/;" c class:InitializableTests +Foo test/railties/plugin_test.rb /^ class Foo < Rails::Plugin; end$/;" c +Foo test/railties/railtie_test.rb /^ class Foo < Rails::Railtie ; config.after_initialize { $after_initialize = true } ; end$/;" c +Foo test/railties/railtie_test.rb /^ class Foo < Rails::Railtie ; config.to_prepare { $to_prepare = true } ; end$/;" c +Foo test/railties/railtie_test.rb /^ class Foo < Rails::Railtie ; end$/;" c +Foo test/railties/railtie_test.rb /^ class Foo < Rails::Railtie$/;" c +Foo test/railties/shared_tests.rb /^ module Foo; end$/;" m class:RailtiesTest.test_autoload_any_path_under_app +FooController test/application/initializers/frameworks_test.rb /^ class FooController < ApplicationController$/;" c +FooController test/application/routing_test.rb /^ class FooController < ApplicationController$/;" c +FooController test/application/routing_test.rb /^ class FooController < ApplicationController$/;" c class:Admin +FooController test/application/routing_test.rb /^ class FooController < ApplicationController$/;" c +FooController test/isolation/abstract_unit.rb /^ class FooController < ApplicationController$/;" c class:simple_controller +FooController test/railties/engine_test.rb /^ class FooController < ActionController::Base$/;" c +FooController test/railties/shared_tests.rb /^ class FooController < ActionController::Base$/;" c class:RailtiesTest.test_routes_in_plugins_have_lower_priority_than_application_ones +FooHelper test/application/initializers/frameworks_test.rb /^ module FooHelper$/;" m +FooTest test/application/test_test.rb /^ class FooTest < ActiveSupport::TestCase$/;" c class:ApplicationTests +FooTest test/application/test_test.rb /^ class FooTest < ActiveSupport::TestCase$/;" c class:ApplicationTests.TestTest +Foobar test/fixtures/lib/rails/generators/foobar/foobar_generator.rb /^module Foobar$/;" m +FoobarGenerator test/fixtures/lib/rails/generators/foobar/foobar_generator.rb /^ class FoobarGenerator < Rails::Generators::Base$/;" c class:Foobar +FrameworlsTest test/application/initializers/frameworks_test.rb /^ class FrameworlsTest < Test::Unit::TestCase$/;" c class:ApplicationTests +GemBooting test/application/initializers/boot_test.rb /^ class GemBooting < Test::Unit::TestCase$/;" c class:ApplicationTests +GeneratedAttribute lib/rails/generators/generated_attribute.rb /^ class GeneratedAttribute$/;" c class:Rails.Generators +GeneratedAttributeTest test/generators/generated_attribute_test.rb /^class GeneratedAttributeTest < Rails::Generators::TestCase$/;" c +Generation test/isolation/abstract_unit.rb /^ module Generation$/;" m +Generator guides/rails_guides/generator.rb /^ class Generator$/;" c class:RailsGuides +GeneratorGenerator lib/rails/generators/rails/generator/generator_generator.rb /^ class GeneratorGenerator < NamedBase$/;" c class:Rails.Generators +GeneratorGeneratorTest test/generators/generator_generator_test.rb /^class GeneratorGeneratorTest < Rails::Generators::TestCase$/;" c +Generators lib/rails/configuration.rb /^ class Generators #:nodoc:$/;" c class:Rails.Configuration +Generators lib/rails/generators.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/actions.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/active_model.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/app_base.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/base.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/erb.rb /^ module Generators$/;" m class:Erb +Generators lib/rails/generators/erb/controller/controller_generator.rb /^ module Generators$/;" m class:Erb +Generators lib/rails/generators/erb/mailer/mailer_generator.rb /^ module Generators$/;" m class:Erb +Generators lib/rails/generators/erb/scaffold/scaffold_generator.rb /^ module Generators$/;" m class:Erb +Generators lib/rails/generators/generated_attribute.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/migration.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/named_base.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/app/app_generator.rb /^ module Generators$/;" m +Generators lib/rails/generators/rails/controller/controller_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/generator/generator_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/helper/helper_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/integration_test/integration_test_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/migration/migration_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/model/model_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/observer/observer_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/performance_test/performance_test_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/plugin/plugin_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ module Generators$/;" m +Generators lib/rails/generators/rails/resource/resource_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/scaffold/scaffold_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/session_migration/session_migration_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/rails/stylesheets/stylesheets_generator.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/resource_helpers.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/test_case.rb /^ module Generators$/;" m class:Rails +Generators lib/rails/generators/test_unit.rb /^ module Generators$/;" m class:TestUnit +Generators lib/rails/generators/test_unit/controller/controller_generator.rb /^ module Generators$/;" m class:TestUnit +Generators lib/rails/generators/test_unit/helper/helper_generator.rb /^ module Generators$/;" m class:TestUnit +Generators lib/rails/generators/test_unit/integration/integration_generator.rb /^ module Generators$/;" m class:TestUnit +Generators lib/rails/generators/test_unit/mailer/mailer_generator.rb /^ module Generators$/;" m class:TestUnit +Generators lib/rails/generators/test_unit/model/model_generator.rb /^ module Generators$/;" m class:TestUnit +Generators lib/rails/generators/test_unit/observer/observer_generator.rb /^ module Generators$/;" m class:TestUnit +Generators lib/rails/generators/test_unit/performance/performance_generator.rb /^ module Generators$/;" m class:TestUnit +Generators lib/rails/generators/test_unit/plugin/plugin_generator.rb /^ module Generators$/;" m class:TestUnit +Generators lib/rails/generators/test_unit/scaffold/scaffold_generator.rb /^ module Generators$/;" m class:TestUnit +Generators test/fixtures/lib/generators/active_record/fixjour_generator.rb /^ module Generators$/;" m class:ActiveRecord +Generators test/generators/scaffold_controller_generator_test.rb /^ module Generators$/;" m class:Unknown +GeneratorsTest test/application/generators_test.rb /^ class GeneratorsTest < Test::Unit::TestCase$/;" c class:ApplicationTests +GeneratorsTest test/generators_test.rb /^class GeneratorsTest < Rails::Generators::TestCase$/;" c +GeneratorsTestHelper test/generators/generators_test_helper.rb /^module GeneratorsTestHelper$/;" m +HelperGenerator lib/rails/generators/rails/helper/helper_generator.rb /^ class HelperGenerator < NamedBase$/;" c class:Rails.Generators +HelperGenerator lib/rails/generators/test_unit/helper/helper_generator.rb /^ class HelperGenerator < Base$/;" c class:TestUnit.Generators +HelperGeneratorTest test/generators/helper_generator_test.rb /^class HelperGeneratorTest < Rails::Generators::TestCase$/;" c +Helpers guides/rails_guides/helpers.rb /^ module Helpers$/;" m class:RailsGuides +HomeController test/railties/engine_test.rb /^ class HomeController < ActionController::Base$/;" c class:Bukkits +I18nTest test/application/initializers/i18n_test.rb /^ class I18nTest < Test::Unit::TestCase$/;" c class:ApplicationTests +Indexer guides/rails_guides/indexer.rb /^ class Indexer$/;" c class:RailsGuides +Info lib/rails/commands/plugin.rb /^ class Info$/;" c class:Commands +Info lib/rails/info.rb /^ module Info$/;" m class:Rails +Info test/rails_info_test.rb /^ class Info; end$/;" c class:Rails +InfoControllerTest test/rails_info_controller_test.rb /^class InfoControllerTest < ActionController::TestCase$/;" c +InfoTest test/rails_info_test.rb /^class InfoTest < ActiveSupport::TestCase$/;" c +Initializable lib/rails/initializable.rb /^ module Initializable$/;" m class:Rails +InitializableTests test/initializable_test.rb /^module InitializableTests$/;" m +Initializer lib/rails/initializable.rb /^ class Initializer$/;" c class:Rails.Initializable +InitializersTest test/application/initializers/hooks_test.rb /^ class InitializersTest < Test::Unit::TestCase$/;" c class:ApplicationTests +Install lib/rails/commands/plugin.rb /^ class Install$/;" c class:Commands +Instance test/initializable_test.rb /^ class Instance$/;" c class:InitializableTests +InstanceTest test/initializable_test.rb /^ class InstanceTest < ActiveSupport::TestCase$/;" c +IntegrationGenerator lib/rails/generators/test_unit/integration/integration_generator.rb /^ class IntegrationGenerator < Base$/;" c class:TestUnit.Generators +IntegrationTestGenerator lib/rails/generators/rails/integration_test/integration_test_generator.rb /^ class IntegrationTestGenerator < NamedBase$/;" c class:Rails.Generators +IntegrationTestGeneratorTest test/generators/integration_test_generator_test.rb /^class IntegrationTestGeneratorTest < Rails::Generators::TestCase$/;" c +Interdependent test/initializable_test.rb /^ module Interdependent$/;" m class:InitializableTests +Levenshtein guides/rails_guides/levenshtein.rb /^ module Levenshtein$/;" m class:RailsGuides +LoadPathTest test/application/initializers/load_path_test.rb /^ class LoadPathTest < Test::Unit::TestCase$/;" c class:ApplicationTests +LoadingTest test/application/loading_test.rb /^class LoadingTest < Test::Unit::TestCase$/;" c +LogTailer lib/rails/rack/log_tailer.rb /^ class LogTailer$/;" c class:Rails.Rack +Logger lib/rails/rack/logger.rb /^ class Logger < ActiveSupport::LogSubscriber$/;" c class:Rails.Rack +MailerGenerator lib/rails/generators/erb/mailer/mailer_generator.rb /^ class MailerGenerator < ControllerGenerator$/;" c class:Erb.Generators +MailerGenerator lib/rails/generators/test_unit/mailer/mailer_generator.rb /^ class MailerGenerator < Base$/;" c class:TestUnit.Generators +MailerGeneratorTest test/generators/mailer_generator_test.rb /^class MailerGeneratorTest < Rails::Generators::TestCase$/;" c +MiddlewareStackProxy lib/rails/configuration.rb /^ class MiddlewareStackProxy #:nodoc:$/;" c class:Rails.Configuration +MiddlewareTest test/application/middleware_test.rb /^ class MiddlewareTest < Test::Unit::TestCase$/;" c class:ApplicationTests +Migration lib/rails/generators/migration.rb /^ module Migration$/;" m class:Rails.Generators +MigrationGenerator lib/rails/generators/rails/migration/migration_generator.rb /^ class MigrationGenerator < NamedBase #metagenerator$/;" c class:Rails.Generators +MigrationGeneratorTest test/generators/migration_generator_test.rb /^class MigrationGeneratorTest < Rails::Generators::TestCase$/;" c +ModelGenerator lib/rails/generators/rails/model/model_generator.rb /^ class ModelGenerator < NamedBase #metagenerator$/;" c class:Rails.Generators +ModelGenerator lib/rails/generators/test_unit/model/model_generator.rb /^ class ModelGenerator < Base$/;" c class:TestUnit.Generators +ModelGeneratorTest test/generators/model_generator_test.rb /^class ModelGeneratorTest < Rails::Generators::TestCase$/;" c +MoreInitializers test/initializable_test.rb /^ class MoreInitializers$/;" c class:InitializableTests.OverriddenInitializer +MyApp test/application/url_generation_test.rb /^ class MyApp < Rails::Application$/;" c class:ApplicationTests.UrlGenerationTest +MyMailer test/railties/engine_test.rb /^ class MyMailer < ActionMailer::Base$/;" c class:Bukkits +MyTie test/railties/railtie_test.rb /^ class MyTie < Rails::Railtie$/;" c +NamedBase lib/rails/generators/named_base.rb /^ class NamedBase < Base$/;" c class:Rails.Generators +NamedBaseTest test/generators/named_base_test.rb /^class NamedBaseTest < Rails::Generators::TestCase$/;" c +NamespacedControllerGeneratorTest test/generators/namespaced_generators_test.rb /^class NamespacedControllerGeneratorTest < NamespacedGeneratorTestCase$/;" c +NamespacedGeneratorTestCase test/generators/namespaced_generators_test.rb /^class NamespacedGeneratorTestCase < Rails::Generators::TestCase$/;" c +NamespacedMailerGeneratorTest test/generators/namespaced_generators_test.rb /^class NamespacedMailerGeneratorTest < NamespacedGeneratorTestCase$/;" c +NamespacedModelGeneratorTest test/generators/namespaced_generators_test.rb /^class NamespacedModelGeneratorTest < NamespacedGeneratorTestCase$/;" c +NamespacedObserverGeneratorTest test/generators/namespaced_generators_test.rb /^class NamespacedObserverGeneratorTest < NamespacedGeneratorTestCase$/;" c +NamespacedScaffoldGeneratorTest test/generators/namespaced_generators_test.rb /^class NamespacedScaffoldGeneratorTest < NamespacedGeneratorTestCase$/;" c +NavigationTest lib/rails/generators/rails/plugin_new/templates/test/integration/navigation_test.rb /^class NavigationTest < ActionDispatch::IntegrationTest$/;" c +NotificationsTest test/application/initializers/notifications_test.rb /^ class NotificationsTest < Test::Unit::TestCase$/;" c class:ApplicationTests +ObserverGenerator lib/rails/generators/rails/observer/observer_generator.rb /^ class ObserverGenerator < NamedBase #metagenerator$/;" c class:Rails.Generators +ObserverGenerator lib/rails/generators/test_unit/observer/observer_generator.rb /^ class ObserverGenerator < Base$/;" c class:TestUnit.Generators +ObserverGeneratorTest test/generators/observer_generator_test.rb /^class ObserverGeneratorTest < Rails::Generators::TestCase$/;" c +Options lib/rails/commands/server.rb /^ class Options$/;" c class:Rails.Server +OverriddenInitializer test/initializable_test.rb /^ class OverriddenInitializer$/;" c class:InitializableTests +OverriddenInitializerTest test/initializable_test.rb /^ class OverriddenInitializerTest < ActiveSupport::TestCase$/;" c +Parent test/initializable_test.rb /^ class Parent$/;" c class:InitializableTests +Path lib/rails/paths.rb /^ class Path < Array$/;" c class:Rails.Paths +PathParent lib/rails/paths.rb /^ module PathParent #:nodoc:$/;" m class:Rails.Paths +Paths lib/rails/paths.rb /^ module Paths$/;" m class:Rails +Paths test/isolation/abstract_unit.rb /^ module Paths$/;" m class:TestHelpers +PathsTest test/application/paths_test.rb /^ class PathsTest < Test::Unit::TestCase$/;" c class:ApplicationTests +PathsTest test/paths_test.rb /^class PathsTest < ActiveSupport::TestCase$/;" c +PerformanceGenerator lib/rails/generators/test_unit/performance/performance_generator.rb /^ class PerformanceGenerator < Base$/;" c class:TestUnit.Generators +PerformanceTestGenerator lib/rails/generators/rails/performance_test/performance_test_generator.rb /^ class PerformanceTestGenerator < NamedBase$/;" c class:Rails.Generators +PerformanceTestGeneratorTest test/generators/performance_test_generator_test.rb /^class PerformanceTestGeneratorTest < Rails::Generators::TestCase$/;" c +Plugin lib/rails/commands/plugin.rb /^ class Plugin$/;" c class:Commands +Plugin lib/rails/commands/plugin.rb /^class Plugin$/;" c +Plugin lib/rails/plugin.rb /^ class Plugin < Engine$/;" c class:Rails +PluginA test/initializable_test.rb /^ class PluginA$/;" c class:InitializableTests.Interdependent +PluginB test/initializable_test.rb /^ class PluginB$/;" c +PluginBuilder lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ class PluginBuilder$/;" c class:Rails +PluginBuilder test/fixtures/lib/plugin_builders/empty_builder.rb /^class PluginBuilder$/;" c +PluginBuilder test/fixtures/lib/plugin_builders/simple_builder.rb /^class PluginBuilder$/;" c +PluginBuilder test/fixtures/lib/plugin_builders/spec_builder.rb /^class PluginBuilder < Rails::PluginBuilder$/;" c +PluginBuilder test/fixtures/lib/plugin_builders/tweak_builder.rb /^class PluginBuilder < Rails::PluginBuilder$/;" c +PluginGenerator lib/rails/generators/rails/plugin/plugin_generator.rb /^ class PluginGenerator < NamedBase$/;" c class:Rails.Generators +PluginGenerator lib/rails/generators/test_unit/plugin/plugin_generator.rb /^ class PluginGenerator < Base$/;" c class:TestUnit.Generators +PluginGeneratorTest test/generators/plugin_generator_test.rb /^class PluginGeneratorTest < Rails::Generators::TestCase$/;" c +PluginNewGenerator lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ class PluginNewGenerator < AppBase$/;" c class:Generators +PluginNewGeneratorTest test/generators/plugin_new_generator_test.rb /^class PluginNewGeneratorTest < Rails::Generators::TestCase$/;" c +PluginOrderingTest test/railties/plugin_ordering_test.rb /^ class PluginOrderingTest < Test::Unit::TestCase$/;" c class:RailtiesTest +PluginTest test/railties/plugin_test.rb /^ class PluginTest < Test::Unit::TestCase$/;" c class:RailtiesTest +Post test/application/loading_test.rb /^ class Post < ActiveRecord::Base$/;" c class:LoadingTest.test_constants_in_app_are_autoloaded +Post test/application/loading_test.rb /^ class Post < ActiveRecord::Base$/;" c class:test_descendants_are_cleaned_on_each_request_without_cache_classes +Post test/railties/engine_test.rb /^ class Post$/;" c class:Bukkits +Post test/railties/mounted_engine_test.rb /^ class Post$/;" c class:ApplicationTests.ApplicationRoutingTest.Blog +PostsController test/application/test_test.rb /^ class PostsController < ActionController::Base$/;" c +PostsController test/railties/mounted_engine_test.rb /^ class PostsController < ActionController::Base$/;" c class:ApplicationTests.ApplicationRoutingTest.Blog +PostsTest test/application/test_test.rb /^ class PostsTest < ActionDispatch::IntegrationTest$/;" c +Prof lib/rails/rubyprof_ext.rb /^module Prof #:nodoc:$/;" m +Prototype.Browser lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ Version: '1.7',$/;" p +Prototype.Browser tmp/app/public/javascripts/prototype.js /^ Version: '1.7',$/;" p +Prototype.Browser tmp/app_template/public/javascripts/prototype.js /^ Version: '1.7',$/;" p +Prototype.Version lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^var Prototype = {$/;" p +Prototype.Version tmp/app/public/javascripts/prototype.js /^var Prototype = {$/;" p +Prototype.Version tmp/app_template/public/javascripts/prototype.js /^var Prototype = {$/;" p +Rack lib/rails/rack.rb /^ module Rack$/;" m class:Rails +Rack lib/rails/rack/debugger.rb /^ module Rack$/;" m class:Rails +Rack lib/rails/rack/log_tailer.rb /^ module Rack$/;" m class:Rails +Rack lib/rails/rack/logger.rb /^ module Rack$/;" m class:Rails +Rack test/isolation/abstract_unit.rb /^ module Rack$/;" m class:TestHelpers +RackupTest test/application/rackup_test.rb /^ class RackupTest < Test::Unit::TestCase$/;" c class:ApplicationTests +Rails lib/rails.rb /^module Rails$/;" m +Rails lib/rails/application.rb /^module Rails$/;" m +Rails lib/rails/application/bootstrap.rb /^module Rails$/;" m +Rails lib/rails/application/configuration.rb /^module Rails$/;" m +Rails lib/rails/application/finisher.rb /^module Rails$/;" m +Rails lib/rails/application/railties.rb /^module Rails$/;" m +Rails lib/rails/application/routes_reloader.rb /^module Rails$/;" m +Rails lib/rails/backtrace_cleaner.rb /^module Rails$/;" m +Rails lib/rails/commands/console.rb /^module Rails$/;" m +Rails lib/rails/commands/dbconsole.rb /^module Rails$/;" m +Rails lib/rails/commands/server.rb /^module Rails$/;" m +Rails lib/rails/configuration.rb /^module Rails$/;" m +Rails lib/rails/engine.rb /^module Rails$/;" m +Rails lib/rails/engine/configuration.rb /^module Rails$/;" m +Rails lib/rails/engine/railties.rb /^module Rails$/;" m +Rails lib/rails/generators.rb /^module Rails$/;" m +Rails lib/rails/generators/actions.rb /^module Rails$/;" m +Rails lib/rails/generators/active_model.rb /^module Rails$/;" m +Rails lib/rails/generators/app_base.rb /^module Rails$/;" m +Rails lib/rails/generators/base.rb /^module Rails$/;" m +Rails lib/rails/generators/generated_attribute.rb /^module Rails$/;" m +Rails lib/rails/generators/migration.rb /^module Rails$/;" m +Rails lib/rails/generators/named_base.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/app/app_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/controller/controller_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/generator/generator_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/helper/helper_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/integration_test/integration_test_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/migration/migration_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/model/model_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/observer/observer_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/performance_test/performance_test_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/plugin/plugin_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/resource/resource_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/scaffold/scaffold_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/session_migration/session_migration_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/rails/stylesheets/stylesheets_generator.rb /^module Rails$/;" m +Rails lib/rails/generators/resource_helpers.rb /^module Rails$/;" m +Rails lib/rails/generators/test_case.rb /^module Rails$/;" m +Rails lib/rails/info.rb /^module Rails$/;" m +Rails lib/rails/info_controller.rb /^class Rails::InfoController < ActionController::Base$/;" c +Rails lib/rails/initializable.rb /^module Rails$/;" m +Rails lib/rails/paths.rb /^module Rails$/;" m +Rails lib/rails/plugin.rb /^module Rails$/;" m +Rails lib/rails/rack.rb /^module Rails$/;" m +Rails lib/rails/rack/debugger.rb /^module Rails$/;" m +Rails lib/rails/rack/log_tailer.rb /^module Rails$/;" m +Rails lib/rails/rack/logger.rb /^module Rails$/;" m +Rails lib/rails/rack/static.rb /^module Rails::Rack$/;" m +Rails lib/rails/railtie.rb /^module Rails$/;" m +Rails lib/rails/railtie/configurable.rb /^module Rails$/;" m +Rails lib/rails/railtie/configuration.rb /^module Rails$/;" m +Rails lib/rails/script_rails_loader.rb /^module Rails$/;" m +Rails lib/rails/test_unit/railtie.rb /^module Rails$/;" m +Rails lib/rails/version.rb /^module Rails$/;" m +Rails test/generators/generators_test_helper.rb /^module Rails$/;" m +Rails test/rails_info_test.rb /^ module Rails$/;" m +Rails test/railties/railtie_test.rb /^ class Rails::Railtie$/;" c +RailsEnvironment lib/rails/commands/plugin.rb /^class RailsEnvironment$/;" c +RailsGuides guides/rails_guides/generator.rb /^module RailsGuides$/;" m +RailsGuides guides/rails_guides/helpers.rb /^module RailsGuides$/;" m +RailsGuides guides/rails_guides/indexer.rb /^module RailsGuides$/;" m +RailsGuides guides/rails_guides/levenshtein.rb /^module RailsGuides$/;" m +RailsGuides guides/rails_guides/textile_extensions.rb /^module RailsGuides$/;" m +RailsGuides guides/w3c_validator.rb /^module RailsGuides$/;" m +Railtie lib/rails/railtie.rb /^ class Railtie$/;" c class:Rails +Railtie lib/rails/railtie/configurable.rb /^ class Railtie$/;" c class:Rails +Railtie lib/rails/railtie/configuration.rb /^ class Railtie$/;" c class:Rails +RailtieTest test/railties/railtie_test.rb /^ class RailtieTest < Test::Unit::TestCase$/;" c class:RailtiesTest +Railties lib/rails/application/railties.rb /^ class Railties < Rails::Engine::Railties$/;" c class:Rails.Application +Railties lib/rails/engine/railties.rb /^ class Railties$/;" c class:Rails.Engine +RailtiesTest test/railties/engine_test.rb /^module RailtiesTest$/;" m +RailtiesTest test/railties/plugin_ordering_test.rb /^module RailtiesTest$/;" m +RailtiesTest test/railties/plugin_test.rb /^module RailtiesTest$/;" m +RailtiesTest test/railties/railtie_test.rb /^module RailtiesTest$/;" m +RailtiesTest test/railties/shared_tests.rb /^module RailtiesTest$/;" m +RakeTest test/application/rake_test.rb /^ class RakeTest < Test::Unit::TestCase$/;" c class:ApplicationTests +RecursiveHTTPFetcher lib/rails/commands/plugin.rb /^class RecursiveHTTPFetcher$/;" c +RemoteIpTest test/application/middleware/remote_ip_test.rb /^ class RemoteIpTest < Test::Unit::TestCase$/;" c class:ApplicationTests +Remove lib/rails/commands/plugin.rb /^ class Remove$/;" c class:Commands +ResourceGenerator lib/rails/generators/rails/resource/resource_generator.rb /^ class ResourceGenerator < ModelGenerator #metagenerator$/;" c class:Rails.Generators +ResourceGeneratorTest test/generators/resource_generator_test.rb /^class ResourceGeneratorTest < Rails::Generators::TestCase$/;" c +ResourceHelpers lib/rails/generators/resource_helpers.rb /^ module ResourceHelpers$/;" m class:Rails.Generators +Root lib/rails/paths.rb /^ class Root < ::Hash$/;" c class:Rails.Paths +RoutesReloader lib/rails/application/routes_reloader.rb /^ class RoutesReloader < ::ActiveSupport::FileUpdateChecker$/;" c class:Rails.Application +RoutingTest test/application/middleware/cache_test.rb /^ class RoutingTest < Test::Unit::TestCase$/;" c class:ApplicationTests +RoutingTest test/application/routing_test.rb /^ class RoutingTest < Test::Unit::TestCase$/;" c class:ApplicationTests +RunnerTest test/application/runner_test.rb /^ class RunnerTest < Test::Unit::TestCase$/;" c class:ApplicationTests +ScaffoldControllerGenerator lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb /^ class ScaffoldControllerGenerator < NamedBase$/;" c class:Rails.Generators +ScaffoldControllerGeneratorTest test/generators/scaffold_controller_generator_test.rb /^class ScaffoldControllerGeneratorTest < Rails::Generators::TestCase$/;" c +ScaffoldGenerator lib/rails/generators/erb/scaffold/scaffold_generator.rb /^ class ScaffoldGenerator < Base$/;" c class:Erb.Generators +ScaffoldGenerator lib/rails/generators/rails/scaffold/scaffold_generator.rb /^ class ScaffoldGenerator < ResourceGenerator #metagenerator$/;" c class:Rails.Generators +ScaffoldGenerator lib/rails/generators/test_unit/scaffold/scaffold_generator.rb /^ class ScaffoldGenerator < Base$/;" c class:TestUnit.Generators +ScaffoldGeneratorTest test/generators/scaffold_generator_test.rb /^class ScaffoldGeneratorTest < Rails::Generators::TestCase$/;" c +ScriptRailsLoader lib/rails/script_rails_loader.rb /^ module ScriptRailsLoader$/;" m class:Rails +ScriptRailsLoaderTest test/script_rails_loader_test.rb /^class ScriptRailsLoaderTest < ActiveSupport::TestCase$/;" c +SendfileTest test/application/middleware/sendfile_test.rb /^ class SendfileTest < Test::Unit::TestCase$/;" c class:ApplicationTests +Server lib/rails/commands/server.rb /^ class Server < ::Rack::Server$/;" c class:Rails +SessionMigrationGenerator lib/rails/generators/rails/session_migration/session_migration_generator.rb /^ class SessionMigrationGenerator < NamedBase #metagenerator$/;" c class:Rails.Generators +SessionMigrationGeneratorTest test/generators/session_migration_generator_test.rb /^class SessionMigrationGeneratorTest < Rails::Generators::TestCase$/;" c +SharedCustomGeneratorTests test/generators/shared_generator_tests.rb /^module SharedCustomGeneratorTests$/;" m +SharedGeneratorTests test/generators/shared_generator_tests.rb /^module SharedGeneratorTests$/;" m +SharedTests test/railties/shared_tests.rb /^ module SharedTests$/;" m class:RailtiesTest +SomeHelper test/railties/engine_test.rb /^ module SomeHelper$/;" m +Sortable.SERIALIZE_RULE lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^var Sortable = {$/;" p +Sortable.SERIALIZE_RULE tmp/app/public/javascripts/dragdrop.js /^var Sortable = {$/;" p +Sortable.SERIALIZE_RULE tmp/app_template/public/javascripts/dragdrop.js /^var Sortable = {$/;" p +SortableObserver lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^var SortableObserver = Class.create({$/;" v +SortableObserver tmp/app/public/javascripts/dragdrop.js /^var SortableObserver = Class.create({$/;" v +SortableObserver tmp/app_template/public/javascripts/dragdrop.js /^var SortableObserver = Class.create({$/;" v +SourceAnnotationExtractor lib/rails/source_annotation_extractor.rb /^class SourceAnnotationExtractor$/;" c +Sprokkit test/railties/shared_tests.rb /^ class Sprokkit$/;" c class:RailtiesTest.test_routes_are_added_to_router +Str lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function Str(key, holder, stack) {$/;" f +Str tmp/app/public/javascripts/prototype.js /^ function Str(key, holder, stack) {$/;" f +Str tmp/app_template/public/javascripts/prototype.js /^ function Str(key, holder, stack) {$/;" f +String lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^\/\/ script.aculo.us effects.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009$/;" c +String tmp/app/public/javascripts/effects.js /^\/\/ script.aculo.us effects.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009$/;" c +String tmp/app_template/public/javascripts/effects.js /^\/\/ script.aculo.us effects.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009$/;" c +String.parseColor lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^String.prototype.parseColor = function() {$/;" m +String.parseColor tmp/app/public/javascripts/effects.js /^String.prototype.parseColor = function() {$/;" m +String.parseColor tmp/app_template/public/javascripts/effects.js /^String.prototype.parseColor = function() {$/;" m +String.parseStyle lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^String.prototype.parseStyle = function(){$/;" m +String.parseStyle tmp/app/public/javascripts/effects.js /^String.prototype.parseStyle = function(){$/;" m +String.parseStyle tmp/app_template/public/javascripts/effects.js /^String.prototype.parseStyle = function(){$/;" m +StylesheetsGenerator lib/rails/generators/rails/stylesheets/stylesheets_generator.rb /^ class StylesheetsGenerator < Base$/;" c class:Rails.Generators +StylesheetsGeneratorTest test/generators/stylesheets_generator_test.rb /^class StylesheetsGeneratorTest < Rails::Generators::TestCase$/;" c +Test test/isolation/abstract_unit.rb /^class Test::Unit::TestCase$/;" c +TestApp test/abstract_unit.rb /^module TestApp$/;" m +TestCase lib/rails/generators/test_case.rb /^ class TestCase < ActiveSupport::TestCase$/;" c class:Rails.Generators +TestHelpers test/isolation/abstract_unit.rb /^module TestHelpers$/;" m +TestTest test/application/test_test.rb /^ class TestTest < Test::Unit::TestCase$/;" c class:ApplicationTests +TestUnit lib/rails/generators/test_unit.rb /^module TestUnit$/;" m +TestUnit lib/rails/generators/test_unit/controller/controller_generator.rb /^module TestUnit$/;" m +TestUnit lib/rails/generators/test_unit/helper/helper_generator.rb /^module TestUnit$/;" m +TestUnit lib/rails/generators/test_unit/integration/integration_generator.rb /^module TestUnit$/;" m +TestUnit lib/rails/generators/test_unit/mailer/mailer_generator.rb /^module TestUnit$/;" m +TestUnit lib/rails/generators/test_unit/model/model_generator.rb /^module TestUnit$/;" m +TestUnit lib/rails/generators/test_unit/observer/observer_generator.rb /^module TestUnit$/;" m +TestUnit lib/rails/generators/test_unit/performance/performance_generator.rb /^module TestUnit$/;" m +TestUnit lib/rails/generators/test_unit/plugin/plugin_generator.rb /^module TestUnit$/;" m +TestUnit lib/rails/generators/test_unit/scaffold/scaffold_generator.rb /^module TestUnit$/;" m +TestUnitRailtie lib/rails/test_unit/railtie.rb /^ class TestUnitRailtie < Rails::Railtie$/;" c class:Rails +TestWithBacktrace test/backtrace_cleaner_test.rb /^ class TestWithBacktrace$/;" c +TextileExtensions guides/rails_guides/textile_extensions.rb /^ module TextileExtensions$/;" m class:RailsGuides +Try.these lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^var Try = {$/;" m +Try.these tmp/app/public/javascripts/prototype.js /^var Try = {$/;" m +Try.these tmp/app_template/public/javascripts/prototype.js /^var Try = {$/;" m +Type lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function Type(o) {$/;" f +Type tmp/app/public/javascripts/prototype.js /^ function Type(o) {$/;" f +Type tmp/app_template/public/javascripts/prototype.js /^ function Type(o) {$/;" f +Unknown test/generators/scaffold_controller_generator_test.rb /^module Unknown$/;" m +Upcaser test/railties/engine_test.rb /^ class Upcaser$/;" c +UrlGenerationTest test/application/url_generation_test.rb /^ class UrlGenerationTest < Test::Unit::TestCase$/;" c class:ApplicationTests +User test/application/console_test.rb /^ class User < ActiveRecord::Base$/;" c class:ConsoleTest.test_active_record_does_not_panic_when_referencing_an_observed_constant +User test/application/console_test.rb /^ class User$/;" c class:ConsoleTest.test_reload_should_reload_constants +User test/application/loading_test.rb /^ class User < ActiveRecord::Base$/;" c class:LoadingTest.test_models_without_table_do_not_panic_on_scope_definitions_when_loaded +User test/application/runner_test.rb /^ class User$/;" c class:ApplicationTests.RunnerTest.setup +UserObserver test/application/console_test.rb /^ class UserObserver < ActiveRecord::Observer$/;" c class:ConsoleTest.test_active_record_does_not_panic_when_referencing_an_observed_constant +VERSION lib/rails/version.rb /^ module VERSION #:nodoc:$/;" m class:Rails +Validator guides/w3c_validator.rb /^ class Validator$/;" c class:RailsGuides +WithArgs test/initializable_test.rb /^ class WithArgs$/;" c class:InitializableTests +WithArgsTest test/initializable_test.rb /^ class WithArgsTest < ActiveSupport::TestCase$/;" c +WithOptionsGenerator test/generators_test.rb /^ class WithOptionsGenerator < Rails::Generators::Base$/;" c class:GeneratorsTest.test_developer_options_are_overwriten_by_user_options +Word test/initializable_test.rb /^ module Word$/;" m class:InitializableTests +WrongGenerator test/fixtures/lib/generators/wrong_generator.rb /^class WrongGenerator < Rails::Generator::NamedBase$/;" c +YazilarController test/application/routing_test.rb /^ class YazilarController < ApplicationController$/;" c +Zoo test/application/initializers/load_path_test.rb /^ class Zoo ; include ReptileHouse ; end$/;" c +Zoo test/application/initializers/load_path_test.rb /^ module Zoo::ReptileHouse ; end$/;" m +[]= lib/rails/paths.rb /^ def []=(path, value)$/;" f class:Rails.Paths.Root +_all_autoload_once_paths lib/rails/engine.rb /^ def _all_autoload_once_paths$/;" f +_all_autoload_paths lib/rails/engine.rb /^ def _all_autoload_paths$/;" f +_all_load_paths lib/rails/engine.rb /^ def _all_load_paths$/;" f +about lib/rails/generators/rails/app/templates/public/index.html /^ function about() {$/;" f +about tmp/app/public/index.html /^ function about() {$/;" f +about tmp/app_template/public/index.html /^ function about() {$/;" f +abstract_railtie? lib/rails/railtie.rb /^ def abstract_railtie?$/;" f class:Rails.Railtie +abstract_unit.rb test/abstract_unit.rb 1;" F +abstract_unit.rb test/isolation/abstract_unit.rb 1;" F +action test/generators/actions_test.rb /^ def action(*args, &block)$/;" f class:ActionsTest +action test/generators/app_generator_test.rb /^ def action(*args, &block)$/;" f +action test/generators/app_generator_test.rb /^ def action(*args, &block)$/;" f class:CustomAppGeneratorTest +action test/generators/plugin_new_generator_test.rb /^ def action(*args, &block)$/;" f class:CustomPluginGeneratorTest +action test/generators/plugin_new_generator_test.rb /^ def action(*args, &block)$/;" f class:PluginNewGeneratorTest +actions.rb lib/rails/generators/actions.rb 1;" F +actions_test.rb test/generators/actions_test.rb 1;" F +active_model.rb lib/rails/generators/active_model.rb 1;" F +add lib/rails/paths.rb /^ def add(path, options={})$/;" f class:Rails.Paths.Root +add_gem_filters lib/rails/backtrace_cleaner.rb /^ def add_gem_filters$/;" f class:Rails.BacktraceCleaner +add_lib_to_load_path! lib/rails/application.rb /^ def add_lib_to_load_path! #:nodoc:$/;" f class:Rails +add_resource_route lib/rails/generators/rails/resource/resource_generator.rb /^ def add_resource_route$/;" f class:Rails.Generators.ResourceGenerator +add_routes lib/rails/generators/rails/controller/controller_generator.rb /^ def add_routes$/;" f class:Rails.Generators.ControllerGenerator +add_shared_options_for lib/rails/generators/app_base.rb /^ def self.add_shared_options_for(name)$/;" F class:Rails.Generators.AppBase +add_shebang_option lib/rails/generators/base.rb /^ def self.add_shebang_option!$/;" F class:Rails +add_source lib/rails/generators/actions.rb /^ def add_source(source, options={})$/;" f class:Rails.Generators.Actions +add_to_config test/isolation/abstract_unit.rb /^ def add_to_config(str)$/;" f +after lib/rails/initializable.rb /^ def after$/;" f class:Rails.Initializable.Initializer +after_dispatch lib/rails/rack/logger.rb /^ def after_dispatch(env)$/;" f class:Rails.Rack.Logger +after_initialize lib/rails/railtie/configuration.rb /^ def after_initialize(&block)$/;" f class:Rails.Railtie.Configuration +aliases lib/rails/generators.rb /^ def self.aliases #:nodoc:$/;" F class:Rails.Generators +all lib/rails/application/railties.rb /^ def all(&block)$/;" f class:Rails.Application.Railties +all lib/rails/engine/railties.rb /^ def all(&block)$/;" f class:Rails.Engine.Railties +all lib/rails/generators/active_model.rb /^ def self.all(klass)$/;" F class:Rails.Generators.ActiveModel +all lib/rails/plugin.rb /^ def self.all(list, paths)$/;" F class:Rails.Plugin +all test/generators/scaffold_controller_generator_test.rb /^ def self.all(klass)$/;" F class:test_customized_orm_is_used +all.rb lib/rails/all.rb 1;" F +all_paths lib/rails/paths.rb /^ def all_paths$/;" f class:Rails.Paths.Root +allowAction lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function allowAction(element) {$/;" f +allowAction tmp/app/public/javascripts/rails.js /^ function allowAction(element) {$/;" f +allowAction tmp/app_template/public/javascripts/rails.js /^ function allowAction(element) {$/;" f +app lib/rails/console/app.rb /^def app(create=false)$/;" f +app lib/rails/engine.rb /^ def app$/;" f +app lib/rails/generators/rails/app/app_generator.rb /^ def app$/;" f class:Rails.AppBuilder +app lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def app$/;" f class:Rails.PluginBuilder +app test/application/configuration_test.rb /^ def app$/;" f class:ApplicationTests.ConfigurationTest +app test/application/initializers/i18n_test.rb /^ def app$/;" f class:ApplicationTests.I18nTest +app test/application/loading_test.rb /^ def app$/;" f class:LoadingTest +app test/application/middleware/remote_ip_test.rb /^ def app$/;" f class:ApplicationTests.RemoteIpTest +app test/application/middleware/sendfile_test.rb /^ def app$/;" f class:ApplicationTests.SendfileTest +app test/application/middleware_test.rb /^ def app$/;" f class:ApplicationTests.MiddlewareTest +app test/application/url_generation_test.rb /^ def app$/;" f class:ApplicationTests.UrlGenerationTest +app test/isolation/abstract_unit.rb /^ def app(env = "production")$/;" f class:TestHelpers.Rack +app test/railties/engine_test.rb /^ def app$/;" f +app test/railties/mounted_engine_test.rb /^ def app$/;" f class:ApplicationTests +app test/railties/railtie_test.rb /^ def app$/;" f class:RailtiesTest.RailtieTest +app test/railties/shared_tests.rb /^ def app$/;" f class:RailtiesTest.SharedTests +app.rb lib/rails/console/app.rb 1;" F +app_base.rb lib/rails/generators/app_base.rb 1;" F +app_const lib/rails/generators/rails/app/app_generator.rb /^ def app_const$/;" f class:Generators.AppGenerator +app_const test/application/generators_test.rb /^ def app_const$/;" f class:ApplicationTests.GeneratorsTest +app_const_base lib/rails/generators/rails/app/app_generator.rb /^ def app_const_base$/;" f class:Generators.AppGenerator +app_file test/isolation/abstract_unit.rb /^ def app_file(path, contents)$/;" f +app_generator.rb lib/rails/generators/rails/app/app_generator.rb 1;" F +app_generator_test.rb test/generators/app_generator_test.rb 1;" F +app_generators lib/rails/railtie/configuration.rb /^ def app_generators$/;" f class:Rails.Railtie.Configuration +app_middleware lib/rails/railtie/configuration.rb /^ def app_middleware$/;" f class:Rails.Railtie.Configuration +app_name lib/rails/generators/rails/app/app_generator.rb /^ def app_name$/;" f class:Generators.AppGenerator +app_path test/isolation/abstract_unit.rb /^ def app_path(*args)$/;" f class:TestHelpers.Paths +app_secret lib/rails/generators/rails/app/app_generator.rb /^ def app_secret$/;" f class:Generators.AppGenerator +app_templates_dir lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def app_templates_dir$/;" f class:Generators.PluginNewGenerator +application lib/rails.rb /^ def application$/;" f class:Rails +application.js lib/rails/generators/rails/app/templates/public/javascripts/application.js 1;" F +application.js tmp/app/public/javascripts/application.js 1;" F +application.js tmp/app_template/public/javascripts/application.js 1;" F +application.rb lib/rails/application.rb 1;" F +application.rb lib/rails/commands/application.rb 1;" F +application.rb lib/rails/generators/rails/app/templates/config/application.rb 1;" F +application.rb lib/rails/generators/rails/plugin_new/templates/rails/application.rb 1;" F +application.rb tmp/app/config/application.rb 1;" F +application.rb tmp/app_template/config/application.rb 1;" F +application= lib/rails.rb /^ def application=(application)$/;" f class:Rails +application_controller.rb lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb 1;" F +application_controller.rb tmp/app/app/controllers/application_controller.rb 1;" F +application_controller.rb tmp/app_template/app/controllers/application_controller.rb 1;" F +application_definition lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def application_definition$/;" f class:Generators.PluginNewGenerator +application_helper.rb lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb 1;" F +application_helper.rb tmp/app/app/helpers/application_helper.rb 1;" F +application_helper.rb tmp/app_template/app/helpers/application_helper.rb 1;" F +application_name lib/rails/generators/named_base.rb /^ def application_name$/;" f class:Rails.Generators +application_route_in_view test/railties/mounted_engine_test.rb /^ def application_route_in_view$/;" f class:ApplicationTests.ApplicationRoutingTest.Blog.PostsController +apply_rails_template lib/rails/generators/app_base.rb /^ def apply_rails_template$/;" f class:Rails.Generators.AppBase +arguments lib/rails/generators/test_case.rb /^ def self.arguments(array)$/;" F class:Rails.Generators.TestCase +assert_body test/isolation/abstract_unit.rb /^ def assert_body(expected, resp)$/;" f class:TestHelpers +assert_class_method lib/rails/generators/test_case.rb /^ def assert_class_method(method, content, &block)$/;" f class:Rails.Generators.TestCase +assert_fallbacks test/application/initializers/i18n_test.rb /^ def assert_fallbacks(fallbacks)$/;" f class:ApplicationTests.I18nTest +assert_field_default_value lib/rails/generators/test_case.rb /^ def assert_field_default_value(attribute_type, value)$/;" f class:Rails.Generators.TestCase +assert_field_type lib/rails/generators/test_case.rb /^ def assert_field_type(attribute_type, field_type)$/;" f class:Rails.Generators.TestCase +assert_file lib/rails/generators/test_case.rb /^ def assert_file(relative, *contents)$/;" f class:Rails.Generators.TestCase +assert_header test/isolation/abstract_unit.rb /^ def assert_header(key, value, resp)$/;" f class:TestHelpers +assert_in_load_path test/application/paths_test.rb /^ def assert_in_load_path(*path)$/;" f class:ApplicationTests.PathsTest +assert_instance_method lib/rails/generators/test_case.rb /^ def assert_instance_method(method, content)$/;" f class:Rails.Generators.TestCase +assert_migration lib/rails/generators/test_case.rb /^ def assert_migration(relative, *contents, &block)$/;" f class:Rails.Generators.TestCase +assert_missing test/isolation/abstract_unit.rb /^ def assert_missing(resp)$/;" f class:TestHelpers +assert_name test/generators/named_base_test.rb /^ def assert_name(generator, value, method)$/;" f class:NamedBaseTest +assert_no_fallbacks test/application/initializers/i18n_test.rb /^ def assert_no_fallbacks$/;" f class:ApplicationTests.I18nTest +assert_no_file lib/rails/generators/test_case.rb /^ def assert_no_file(relative)$/;" f class:Rails.Generators.TestCase +assert_no_migration lib/rails/generators/test_case.rb /^ def assert_no_migration(relative)$/;" f class:Rails.Generators.TestCase +assert_not_in_load_path test/application/paths_test.rb /^ def assert_not_in_load_path(*path)$/;" f class:ApplicationTests.PathsTest +assert_path test/application/paths_test.rb /^ def assert_path(paths, *dir)$/;" f class:ApplicationTests.PathsTest +assert_property test/rails_info_test.rb /^ def assert_property(property_name, value)$/;" f +assert_rails_boots test/application/initializers/check_ruby_version_test.rb /^ def assert_rails_boots$/;" f class:ApplicationTests +assert_rails_does_not_boot test/application/initializers/check_ruby_version_test.rb /^ def assert_rails_does_not_boot$/;" f +assert_success test/isolation/abstract_unit.rb /^ def assert_success(resp)$/;" f class:TestHelpers +assert_utf8 test/application/configuration_test.rb /^ def assert_utf8$/;" f +assert_welcome test/isolation/abstract_unit.rb /^ def assert_welcome(resp)$/;" f class:TestHelpers +assign_names! lib/rails/generators/named_base.rb /^ def assign_names!(name) #:nodoc:$/;" f class:Rails.Generators +author guides/rails_guides/helpers.rb /^ def author(name, nick, image = 'credits_pic_blank.gif', &block)$/;" f class:RailsGuides.Helpers +autoload_once lib/rails/paths.rb /^ def autoload_once$/;" f class:Rails.Paths.Root +autoload_once_paths lib/rails/engine/configuration.rb /^ def autoload_once_paths$/;" f class:Rails.Engine.Configuration +autoload_paths lib/rails/engine/configuration.rb /^ def autoload_paths$/;" f class:Rails.Engine.Configuration +autoload_paths lib/rails/paths.rb /^ def autoload_paths$/;" f class:Rails.Paths.Root +available_views lib/rails/generators/erb/scaffold/scaffold_generator.rb /^ def available_views$/;" f class:Erb.Generators.ScaffoldGenerator +backtrace_cleaner lib/rails.rb /^ def backtrace_cleaner$/;" f class:Rails +backtrace_cleaner.rb lib/rails/backtrace_cleaner.rb 1;" F +backtrace_cleaner_test.rb test/backtrace_cleaner_test.rb 1;" F +backtrace_silencers.rb lib/rails/generators/rails/app/templates/config/initializers/backtrace_silencers.rb 1;" F +backtrace_silencers.rb tmp/app_template/config/initializers/backtrace_silencers.rb 1;" F +banner lib/rails/generators/base.rb /^ def self.banner$/;" F class:Rails +banner lib/rails/generators/rails/app/app_generator.rb /^ def self.banner$/;" F class:Generators.AppGenerator +banner lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def self.banner$/;" F class:Generators.PluginNewGenerator +bar test/application/routing_test.rb /^ def bar$/;" f class:FooController +bar test/railties/engine_test.rb /^ def bar$/;" f class:BarHelper +bar test/railties/engine_test.rb /^ def bar$/;" f class:Bukkits +base.rb lib/rails/generators/base.rb 1;" F +base_name lib/rails/generators/base.rb /^ def self.base_name$/;" F class:Rails +base_root lib/rails/generators/base.rb /^ def self.base_root$/;" F class:Rails +baz test/application/routing_test.rb /^ def baz$/;" f class:FooController +before lib/rails/initializable.rb /^ def before$/;" f class:Rails.Initializable.Initializer +before_configuration lib/rails/railtie/configuration.rb /^ def before_configuration(&block)$/;" f class:Rails.Railtie.Configuration +before_dispatch lib/rails/rack/logger.rb /^ def before_dispatch(env)$/;" f class:Rails.Rack.Logger +before_eager_load lib/rails/railtie/configuration.rb /^ def before_eager_load(&block)$/;" f class:Rails.Railtie.Configuration +before_initialize lib/rails/railtie/configuration.rb /^ def before_initialize(&block)$/;" f class:Rails.Railtie.Configuration +benchmarker.rb lib/rails/commands/benchmarker.rb 1;" F +best_install_method lib/rails/commands/plugin.rb /^ def best_install_method$/;" f class:RailsEnvironment +best_practices_test.rb test/application/middleware/best_practices_test.rb 1;" F +bind lib/rails/initializable.rb /^ def bind(context)$/;" f class:Rails.Initializable.Initializer +boot! test/application/middleware_test.rb /^ def boot!$/;" f +boot.rb lib/rails/generators/rails/app/templates/config/boot.rb 1;" F +boot.rb lib/rails/generators/rails/plugin_new/templates/rails/boot.rb 1;" F +boot.rb tmp/app/config/boot.rb 1;" F +boot.rb tmp/app_template/config/boot.rb 1;" F +boot_rails test/isolation/abstract_unit.rb /^ def boot_rails$/;" f +boot_rails test/railties/plugin_ordering_test.rb /^ def boot_rails$/;" f class:RailtiesTest.PluginOrderingTest +boot_rails test/railties/shared_tests.rb /^ def boot_rails$/;" f class:RailtiesTest.SharedTests +boot_test.rb test/application/initializers/boot_test.rb 1;" F +bootstrap.rb lib/rails/application/bootstrap.rb 1;" F +browsing_test.rb lib/rails/generators/rails/app/templates/test/performance/browsing_test.rb 1;" F +browsing_test.rb tmp/app/test/performance/browsing_test.rb 1;" F +browsing_test.rb tmp/app_template/test/performance/browsing_test.rb 1;" F +build lib/rails/generators/active_model.rb /^ def self.build(klass, params=nil)$/;" F class:Rails.Generators.ActiveModel +build lib/rails/generators/app_base.rb /^ def build(meth, *args)$/;" f class:Rails.Generators.AppBase +build_app test/isolation/abstract_unit.rb /^ def build_app(options = {})$/;" f class:Generation +builder lib/rails/generators/app_base.rb /^ def builder$/;" f class:Rails.Generators.AppBase +builder_class test/generators/app_generator_test.rb /^ def builder_class$/;" f class:CustomAppGeneratorTest +builder_class test/generators/plugin_new_generator_test.rb /^ def builder_class$/;" f class:CustomPluginGeneratorTest +builders_dir test/generators/app_generator_test.rb /^ def builders_dir$/;" f class:CustomAppGeneratorTest +builders_dir test/generators/plugin_new_generator_test.rb /^ def builders_dir$/;" f class:CustomPluginGeneratorTest +bukkits test/railties/shared_tests.rb /^ def bukkits$/;" f class:RailtiesTest.test_adds_helpers_to_controller_views.BukkitHelper +bundle_if_dev_or_edge lib/rails/generators/app_base.rb /^ def bundle_if_dev_or_edge$/;" f class:Rails.Generators +bundler? guides/rails_guides.rb /^def bundler?$/;" f +cache lib/rails.rb /^ def cache$/;" f class:Rails +cache_store lib/rails/application/configuration.rb /^ def cache_store$/;" f class:Rails.Application.Configuration +cache_test.rb test/application/middleware/cache_test.rb 1;" F +calculate_code lib/rails/code_statistics.rb /^ def calculate_code$/;" f class:CodeStatistics +calculate_directory_statistics lib/rails/code_statistics.rb /^ def calculate_directory_statistics(directory, pattern = \/.*\\.rb$\/)$/;" f class:CodeStatistics +calculate_statistics lib/rails/code_statistics.rb /^ def calculate_statistics$/;" f class:CodeStatistics +calculate_tests lib/rails/code_statistics.rb /^ def calculate_tests$/;" f class:CodeStatistics +calculate_total lib/rails/code_statistics.rb /^ def calculate_total$/;" f class:CodeStatistics +call lib/rails/engine.rb /^ def call(env)$/;" f +call lib/rails/rack/debugger.rb /^ def call(env)$/;" f class:Rails.Rack.Debugger +call lib/rails/rack/log_tailer.rb /^ def call(env)$/;" f class:Rails.Rack.LogTailer +call lib/rails/rack/logger.rb /^ def call(env)$/;" f class:Rails.Rack.Logger +call test/application/middleware_test.rb /^ def call(env)$/;" f +call test/railties/engine_test.rb /^ def call(env)$/;" f class:Upcaser +call test/railties/shared_tests.rb /^ def call(env)$/;" f class:RailtiesTest.test_midleware_referenced_in_configuration.Bukkits +call test/railties/shared_tests.rb /^ def self.call(env)$/;" F class:RailtiesTest.test_routes_are_added_to_router.Sprokkit +camelized lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def camelized$/;" f class:Generators.PluginNewGenerator +capify! lib/rails/generators/actions.rb /^ def capify!$/;" f class:Rails.Generators +check_class_collision lib/rails/generators/named_base.rb /^ def self.check_class_collision(options={})$/;" F class:Rails.Generators +check_fragment_identifiers guides/rails_guides/generator.rb /^ def check_fragment_identifiers(html, anchors)$/;" f +check_ruby_version_test.rb test/application/initializers/check_ruby_version_test.rb 1;" F +child.id lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var child = {$/;" p +child.id tmp/app/public/javascripts/dragdrop.js /^ var child = {$/;" p +child.id tmp/app_template/public/javascripts/dragdrop.js /^ var child = {$/;" p +children lib/rails/paths.rb /^ def children$/;" f class:Rails.Paths.Path +class_collisions lib/rails/generators/base.rb /^ def class_collisions(*class_names) #:nodoc:$/;" f class:Rails +class_name lib/rails/generators/named_base.rb /^ def class_name$/;" f class:Rails.Generators +class_option lib/rails/generators/base.rb /^ def self.class_option(name, options={}) #:nodoc:$/;" F class:Rails +class_path lib/rails/generators/named_base.rb /^ def class_path$/;" f class:Rails.Generators +clear! lib/rails/application/routes_reloader.rb /^ def clear!$/;" f class:Rails.Application.RoutesReloader +cli.rb lib/rails/cli.rb 1;" F +clone lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function clone(object) {$/;" f +clone tmp/app/public/javascripts/prototype.js /^ function clone(object) {$/;" f +clone tmp/app_template/public/javascripts/prototype.js /^ function clone(object) {$/;" f +code guides/rails_guides/helpers.rb /^ def code(&block)$/;" f class:RailsGuides.Helpers +code guides/rails_guides/textile_extensions.rb /^ def code(body)$/;" f class:RailsGuides.TextileExtensions +code_statistics.rb lib/rails/code_statistics.rb 1;" F +colorize_logging lib/rails/application/configuration.rb /^ def colorize_logging$/;" f class:Rails.Application.Configuration +colorize_logging= lib/rails/application/configuration.rb /^ def colorize_logging=(val)$/;" f class:Rails.Application.Configuration +commands.rb lib/rails/commands.rb 1;" F +compiled_asset_path lib/rails/application/configuration.rb /^ def compiled_asset_path$/;" f class:Rails.Application.Configuration +compiled_asset_path lib/rails/engine/configuration.rb /^ def compiled_asset_path$/;" f class:Rails.Engine.Configuration +config lib/rails/application.rb /^ def config$/;" f class:Rails +config lib/rails/engine.rb /^ def config$/;" f +config lib/rails/generators/rails/app/app_generator.rb /^ def config$/;" f class:Rails.AppBuilder +config lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def config$/;" f class:Rails.PluginBuilder +config lib/rails/plugin.rb /^ def config$/;" f class:Rails +config lib/rails/railtie.rb /^ def config$/;" f class:Rails +configru lib/rails/generators/rails/app/app_generator.rb /^ def configru$/;" f class:Rails.AppBuilder +configurable.rb lib/rails/railtie/configurable.rb 1;" F +configuration lib/rails.rb /^ def configuration$/;" f class:Rails +configuration.rb lib/rails/application/configuration.rb 1;" F +configuration.rb lib/rails/configuration.rb 1;" F +configuration.rb lib/rails/engine/configuration.rb 1;" F +configuration.rb lib/rails/railtie/configuration.rb 1;" F +configuration_test.rb test/application/configuration_test.rb 1;" F +configure lib/rails/generators.rb /^ def self.configure!(config = Rails.application.config.generators) #:nodoc:$/;" F class:Rails.Generators +configure lib/rails/railtie/configurable.rb /^ def configure(&block)$/;" f class:Rails.Railtie.Configurable.ClassMethods +consider_all_requests_local? lib/rails/info_controller.rb /^ def consider_all_requests_local?$/;" f class:Rails +console lib/rails/railtie.rb /^ def console(&blk)$/;" f class:Rails.Railtie +console.rb lib/rails/commands/console.rb 1;" F +console_test.rb test/application/console_test.rb 1;" F +controller lib/rails/console/helpers.rb /^def controller$/;" f +controller test/isolation/abstract_unit.rb /^ def controller(name, contents)$/;" f +controller.rb lib/rails/generators/rails/controller/templates/controller.rb 1;" F +controller.rb lib/rails/generators/rails/scaffold_controller/templates/controller.rb 1;" F +controller_class_name lib/rails/generators/resource_helpers.rb /^ def controller_class_name$/;" f class:Rails.Generators.ResourceHelpers +controller_class_path lib/rails/generators/resource_helpers.rb /^ def controller_class_path$/;" f class:Rails.Generators.ResourceHelpers +controller_file_name lib/rails/generators/resource_helpers.rb /^ def controller_file_name$/;" f class:Rails.Generators.ResourceHelpers +controller_file_path lib/rails/generators/resource_helpers.rb /^ def controller_file_path$/;" f class:Rails.Generators.ResourceHelpers +controller_generator.rb lib/rails/generators/erb/controller/controller_generator.rb 1;" F +controller_generator.rb lib/rails/generators/rails/controller/controller_generator.rb 1;" F +controller_generator.rb lib/rails/generators/test_unit/controller/controller_generator.rb 1;" F +controller_generator_test.rb test/generators/controller_generator_test.rb 1;" F +controller_i18n_scope lib/rails/generators/resource_helpers.rb /^ def controller_i18n_scope$/;" f class:Rails.Generators.ResourceHelpers +controls.js lib/rails/generators/rails/app/templates/public/javascripts/controls.js 1;" F +controls.js tmp/app/public/javascripts/controls.js 1;" F +controls.js tmp/app_template/public/javascripts/controls.js 1;" F +copy_app test/application/configuration_test.rb /^ def copy_app$/;" f class:ApplicationTests.ConfigurationTest +copy_assets guides/rails_guides/generator.rb /^ def copy_assets$/;" f class:RailsGuides.Generator +copy_routes test/generators/generators_test_helper.rb /^ def copy_routes$/;" f class:GeneratorsTestHelper +copy_stylesheets_file lib/rails/generators/rails/stylesheets/stylesheets_generator.rb /^ def copy_stylesheets_file$/;" f class:Rails.Generators.StylesheetsGenerator +copy_view_files lib/rails/generators/erb/controller/controller_generator.rb /^ def copy_view_files$/;" f class:Erb.Generators.ControllerGenerator +copy_view_files lib/rails/generators/erb/scaffold/scaffold_generator.rb /^ def copy_view_files$/;" f class:Erb.Generators.ScaffoldGenerator +count test/application/runner_test.rb /^ def self.count$/;" F class:ApplicationTests.RunnerTest.setup.User +create lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def create$/;" f +create_active_record_files lib/rails/generators/rails/app/app_generator.rb /^ def create_active_record_files$/;" f class:Generators.AppGenerator +create_app_files lib/rails/generators/rails/app/app_generator.rb /^ def create_app_files$/;" f class:Generators.AppGenerator +create_app_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_app_files$/;" f class:Generators.PluginNewGenerator +create_boot_file lib/rails/generators/rails/app/app_generator.rb /^ def create_boot_file$/;" f class:Generators.AppGenerator +create_config_files lib/rails/generators/rails/app/app_generator.rb /^ def create_config_files$/;" f class:Generators.AppGenerator +create_config_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_config_files$/;" f class:Generators.PluginNewGenerator +create_controller_files lib/rails/generators/rails/controller/controller_generator.rb /^ def create_controller_files$/;" f class:Rails.Generators.ControllerGenerator +create_controller_files lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb /^ def create_controller_files$/;" f class:Rails.Generators.ScaffoldControllerGenerator +create_db_files lib/rails/generators/rails/app/app_generator.rb /^ def create_db_files$/;" f class:Generators.AppGenerator +create_doc_files lib/rails/generators/rails/app/app_generator.rb /^ def create_doc_files$/;" f class:Generators.AppGenerator +create_dummy_app lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_dummy_app(path = nil)$/;" f class:Generators.PluginNewGenerator +create_fixture_file lib/rails/generators/test_unit/model/model_generator.rb /^ def create_fixture_file$/;" f class:TestUnit.Generators.ModelGenerator +create_fixtures lib/rails/test_help.rb /^ def create_fixtures(*table_names, &block)$/;" f +create_generated_attribute lib/rails/generators/test_case.rb /^ def create_generated_attribute(attribute_type, name = 'test')$/;" f class:Rails.Generators.TestCase +create_generator_files lib/rails/generators/rails/generator/generator_generator.rb /^ def create_generator_files$/;" f class:Rails.Generators.GeneratorGenerator +create_helper_files lib/rails/generators/rails/helper/helper_generator.rb /^ def create_helper_files$/;" f class:Rails.Generators.HelperGenerator +create_helper_files lib/rails/generators/test_unit/helper/helper_generator.rb /^ def create_helper_files$/;" f class:TestUnit.Generators.HelperGenerator +create_javascript_files lib/rails/generators/rails/app/app_generator.rb /^ def create_javascript_files$/;" f class:Generators.AppGenerator +create_javascript_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_javascript_files$/;" f class:Generators.PluginNewGenerator +create_lib_files lib/rails/generators/rails/app/app_generator.rb /^ def create_lib_files$/;" f class:Generators.AppGenerator +create_lib_files lib/rails/generators/rails/plugin/plugin_generator.rb /^ def create_lib_files$/;" f class:Rails.Generators.PluginGenerator +create_lib_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_lib_files$/;" f class:Generators.PluginNewGenerator +create_log_files lib/rails/generators/rails/app/app_generator.rb /^ def create_log_files$/;" f class:Generators.AppGenerator +create_output_dir_if_needed guides/rails_guides/generator.rb /^ def create_output_dir_if_needed$/;" f class:RailsGuides.Generator +create_public_files lib/rails/generators/rails/app/app_generator.rb /^ def create_public_files$/;" f class:Generators.AppGenerator +create_public_image_files lib/rails/generators/rails/app/app_generator.rb /^ def create_public_image_files$/;" f class:Generators.AppGenerator +create_public_stylesheets_files lib/rails/generators/rails/app/app_generator.rb /^ def create_public_stylesheets_files$/;" f class:Generators.AppGenerator +create_public_stylesheets_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_public_stylesheets_files$/;" f class:Generators.PluginNewGenerator +create_root lib/rails/generators/app_base.rb /^ def create_root$/;" f class:Rails.Generators.AppBase +create_root_files lib/rails/generators/rails/app/app_generator.rb /^ def create_root_files$/;" f class:Generators.AppGenerator +create_root_files lib/rails/generators/rails/plugin/plugin_generator.rb /^ def create_root_files$/;" f class:Rails.Generators.PluginGenerator +create_root_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_root_files$/;" f class:Generators.PluginNewGenerator +create_root_folder lib/rails/generators/erb/scaffold/scaffold_generator.rb /^ def create_root_folder$/;" f class:Erb.Generators.ScaffoldGenerator +create_script_files lib/rails/generators/rails/app/app_generator.rb /^ def create_script_files$/;" f class:Generators.AppGenerator +create_script_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_script_files$/;" f class:Generators.PluginNewGenerator +create_tasks_files lib/rails/generators/rails/plugin/plugin_generator.rb /^ def create_tasks_files$/;" f class:Rails.Generators.PluginGenerator +create_test_dummy_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_test_dummy_files$/;" f class:Generators.PluginNewGenerator +create_test_dummy_template.rb test/fixtures/lib/create_test_dummy_template.rb 1;" F +create_test_file lib/rails/generators/test_unit/model/model_generator.rb /^ def create_test_file$/;" f class:TestUnit.Generators.ModelGenerator +create_test_files lib/rails/generators/rails/app/app_generator.rb /^ def create_test_files$/;" f class:Generators.AppGenerator +create_test_files lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def create_test_files$/;" f class:Generators.PluginNewGenerator +create_test_files lib/rails/generators/test_unit/controller/controller_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.ControllerGenerator +create_test_files lib/rails/generators/test_unit/integration/integration_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.IntegrationGenerator +create_test_files lib/rails/generators/test_unit/mailer/mailer_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.MailerGenerator +create_test_files lib/rails/generators/test_unit/observer/observer_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.ObserverGenerator +create_test_files lib/rails/generators/test_unit/performance/performance_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.PerformanceGenerator +create_test_files lib/rails/generators/test_unit/plugin/plugin_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.PluginGenerator +create_test_files lib/rails/generators/test_unit/scaffold/scaffold_generator.rb /^ def create_test_files$/;" f class:TestUnit.Generators.ScaffoldGenerator +create_tmp_files lib/rails/generators/rails/app/app_generator.rb /^ def create_tmp_files$/;" f class:Generators.AppGenerator +create_vendor_files lib/rails/generators/rails/app/app_generator.rb /^ def create_vendor_files$/;" f class:Generators.AppGenerator +current_migration_number lib/rails/generators/migration.rb /^ def current_migration_number(dirname) #:nodoc:$/;" f class:Rails.Generators.Migration.ClassMethods +database_configuration lib/rails/application/configuration.rb /^ def database_configuration$/;" f class:Rails.Application.Configuration +database_gemfile_entry lib/rails/generators/app_base.rb /^ def database_gemfile_entry$/;" f class:Rails.Generators +database_yml lib/rails/generators/rails/app/app_generator.rb /^ def database_yml$/;" f class:Rails +db lib/rails/generators/rails/app/app_generator.rb /^ def db$/;" f class:Rails +dbconsole.rb lib/rails/commands/dbconsole.rb 1;" F +debugger.rb lib/rails/rack/debugger.rb 1;" F +default lib/rails/commands/plugin.rb /^ def self.default$/;" F class:RailsEnvironment +default lib/rails/commands/plugin.rb /^ def self.default=(rails_env)$/;" F class:RailsEnvironment +default lib/rails/generators/generated_attribute.rb /^ def default$/;" f class:Rails.Generators +default_aliases_for_option lib/rails/generators/base.rb /^ def self.default_aliases_for_option(name, options)$/;" F class:Rails +default_asset_path lib/rails/application.rb /^ def default_asset_path$/;" f class:Rails +default_asset_path lib/rails/engine.rb /^ def default_asset_path$/;" f +default_files test/generators/app_generator_test.rb /^ def default_files$/;" f class:AppGeneratorTest +default_files test/generators/app_generator_test.rb /^ def default_files$/;" f class:CustomAppGeneratorTest +default_files test/generators/plugin_new_generator_test.rb /^ def default_files$/;" f class:CustomPluginGeneratorTest +default_files test/generators/plugin_new_generator_test.rb /^ def default_files$/;" f class:PluginNewGeneratorTest +default_for_option lib/rails/generators/base.rb /^ def self.default_for_option(config, name, options, default)$/;" F class:Rails +default_middleware_stack lib/rails/application.rb /^ def default_middleware_stack$/;" f class:Rails +default_middleware_stack lib/rails/engine.rb /^ def default_middleware_stack$/;" f +default_options lib/rails/commands/server.rb /^ def default_options$/;" f class:Rails.Server +default_source_root lib/rails/generators/base.rb /^ def self.default_source_root$/;" F class:Rails +default_value_for_option lib/rails/generators/base.rb /^ def self.default_value_for_option(name, options)$/;" F class:Rails +defined_app_const_base lib/rails/generators/rails/app/app_generator.rb /^ def defined_app_const_base$/;" f class:Generators.AppGenerator +defined_app_name lib/rails/generators/rails/app/app_generator.rb /^ def defined_app_name$/;" f class:Generators.AppGenerator +delete lib/rails/configuration.rb /^ def delete(*args, &block)$/;" f class:Rails.Configuration.MiddlewareStackProxy +delete test/isolation/abstract_unit.rb /^ def delete(file)$/;" f class:Bukkit +desc lib/rails/generators/base.rb /^ def self.desc(description=nil)$/;" F class:Rails.Generators.Base +destination lib/rails/generators/test_case.rb /^ def self.destination(path)$/;" F class:Rails.Generators.TestCase +destination_root_is_set? lib/rails/generators/test_case.rb /^ def destination_root_is_set? #:nodoc:$/;" f class:Rails.Generators.TestCase +destroy lib/rails/generators/active_model.rb /^ def destroy$/;" f class:Rails.Generators.ActiveModel +destroy lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def destroy$/;" f +destroy.rb lib/rails/commands/destroy.rb 1;" F +determine_install_method lib/rails/commands/plugin.rb /^ def determine_install_method$/;" f class:Commands.Install +dev_or_edge? lib/rails/generators/app_base.rb /^ def dev_or_edge?$/;" f class:Rails.Generators +development.rb tmp/app_template/config/environments/development.rb 1;" F +disableFormElements lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function disableFormElements(form) {$/;" f +disableFormElements tmp/app/public/javascripts/rails.js /^ function disableFormElements(form) {$/;" f +disableFormElements tmp/app_template/public/javascripts/rails.js /^ function disableFormElements(form) {$/;" f +display lib/rails/source_annotation_extractor.rb /^ def display(results, options={})$/;" f +distance guides/rails_guides/levenshtein.rb /^ def self.distance(s1, s2)$/;" F class:RailsGuides.Levenshtein +doc lib/rails/generators/rails/app/app_generator.rb /^ def doc$/;" f class:Rails +download lib/rails/commands/plugin.rb /^ def download(link)$/;" f class:RecursiveHTTPFetcher +dragdrop.js lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js 1;" F +dragdrop.js tmp/app/public/javascripts/dragdrop.js 1;" F +dragdrop.js tmp/app_template/public/javascripts/dragdrop.js 1;" F +drop lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var drop, affected = [];$/;" v +drop tmp/app/public/javascripts/dragdrop.js /^ var drop, affected = [];$/;" v +drop tmp/app_template/public/javascripts/dragdrop.js /^ var drop, affected = [];$/;" v +droponOptions lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var droponOptions = Sortable.options(dropon);$/;" v +droponOptions tmp/app/public/javascripts/dragdrop.js /^ var droponOptions = Sortable.options(dropon);$/;" v +droponOptions tmp/app_template/public/javascripts/dragdrop.js /^ var droponOptions = Sortable.options(dropon);$/;" v +dummy_path lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def dummy_path(path = nil)$/;" f class:Generators.PluginNewGenerator +eager_load lib/rails/paths.rb /^ def eager_load$/;" f class:Rails.Paths.Root +eager_load! lib/rails/application.rb /^ def eager_load! #:nodoc:$/;" f class:Rails +eager_load! lib/rails/engine.rb /^ def eager_load!$/;" f class:Rails +eager_load! lib/rails/railtie.rb /^ def eager_load!$/;" f class:Rails +eager_load_paths lib/rails/engine/configuration.rb /^ def eager_load_paths$/;" f class:Rails.Engine.Configuration +edit lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def edit$/;" f +effects.js lib/rails/generators/rails/app/templates/public/javascripts/effects.js 1;" F +effects.js tmp/app/public/javascripts/effects.js 1;" F +effects.js tmp/app_template/public/javascripts/effects.js 1;" F +empty_builder.rb test/fixtures/lib/app_builders/empty_builder.rb 1;" F +empty_builder.rb test/fixtures/lib/plugin_builders/empty_builder.rb 1;" F +empty_directory_with_gitkeep lib/rails/generators/app_base.rb /^ def empty_directory_with_gitkeep(destination, config = {})$/;" f class:Rails.Generators +enableFormElements lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function enableFormElements(form) {$/;" f +enableFormElements tmp/app/public/javascripts/rails.js /^ function enableFormElements(form) {$/;" f +enableFormElements tmp/app_template/public/javascripts/rails.js /^ function enableFormElements(form) {$/;" f +encoding= lib/rails/application/configuration.rb /^ def encoding=(value)$/;" f class:Rails.Application.Configuration +endpoint lib/rails/engine.rb /^ def endpoint(endpoint = nil)$/;" f class:Rails.Engine +endpoint lib/rails/engine.rb /^ def endpoint$/;" f +engine test/isolation/abstract_unit.rb /^ def engine(name)$/;" f +engine.rb lib/rails/engine.rb 1;" F +engine.rb lib/rails/generators/rails/plugin_new/templates/lib/%name%/engine.rb 1;" F +engine_route test/railties/mounted_engine_test.rb /^ def engine_route$/;" f class:ApplicationTests.ApplicationRoutingTest.ApplicationGeneratingController +engine_route_in_view test/railties/mounted_engine_test.rb /^ def engine_route_in_view$/;" f class:ApplicationTests.ApplicationRoutingTest.ApplicationGeneratingController +engine_test.rb test/railties/engine_test.rb 1;" F +engines lib/rails/engine/railties.rb /^ def self.engines$/;" F class:Rails.Engine.Railties +ensure_current_path lib/rails/generators/test_case.rb /^ def ensure_current_path #:nodoc:$/;" f class:Rails.Generators.TestCase +enumerate lib/rails/source_annotation_extractor.rb /^ def self.enumerate(tag, options={})$/;" F class:SourceAnnotationExtractor +env lib/rails.rb /^ def env$/;" f class:Rails +env= lib/rails.rb /^ def env=(environment)$/;" f class:Rails +env_config lib/rails/application.rb /^ def env_config$/;" f class:Rails +env_config lib/rails/engine.rb /^ def env_config$/;" f +environment lib/rails/generators/actions.rb /^ def environment(data=nil, options={}, &block)$/;" f class:Rails.Generators.Actions +environment.rb lib/rails/generators/rails/app/templates/config/environment.rb 1;" F +environment.rb tmp/app/config/environment.rb 1;" F +environment.rb tmp/app_template/config/environment.rb 1;" F +environment= lib/rails/commands/plugin.rb /^ def environment=(value)$/;" f class:Commands.Plugin +erb.rb lib/rails/generators/erb.rb 1;" F +errors lib/rails/generators/active_model.rb /^ def errors$/;" f class:Rails.Generators.ActiveModel +exec_script_rails lib/rails/script_rails_loader.rb /^ def self.exec_script_rails!$/;" F class:Rails.ScriptRailsLoader +existent lib/rails/paths.rb /^ def existent$/;" f class:Rails +expanded lib/rails/paths.rb /^ def expanded$/;" f class:Rails +expires_etag test/application/middleware/cache_test.rb /^ def expires_etag$/;" f class:ApplicationTests.RoutingTest.simple_controller.ExpiresController +expires_header test/application/middleware/cache_test.rb /^ def expires_header$/;" f class:ApplicationTests.RoutingTest.simple_controller.ExpiresController +expires_last_modified test/application/middleware/cache_test.rb /^ def expires_last_modified$/;" f class:ApplicationTests.RoutingTest.simple_controller.ExpiresController +extend lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function extend(destination, source) {$/;" f +extend tmp/app/public/javascripts/prototype.js /^ function extend(destination, source) {$/;" f +extend tmp/app_template/public/javascripts/prototype.js /^ function extend(destination, source) {$/;" f +externals lib/rails/commands/plugin.rb /^ def externals$/;" f class:RailsEnvironment +externals= lib/rails/commands/plugin.rb /^ def externals=(items)$/;" f class:RailsEnvironment +extify lib/rails/generators/actions.rb /^ def extify(name)$/;" f class:Rails.Generators.route +extract_anchors guides/rails_guides/generator.rb /^ def extract_anchors(html)$/;" f class:RailsGuides +extract_annotations_from lib/rails/source_annotation_extractor.rb /^ def extract_annotations_from(file, pattern)$/;" f +extract_body test/isolation/abstract_unit.rb /^ def extract_body(response)$/;" f class:TestHelpers.Rack +fallbacks lib/rails/generators.rb /^ def self.fallbacks$/;" F class:Rails.Generators +fetch lib/rails/commands/plugin.rb /^ def fetch(links = @urls_to_fetch)$/;" f +fetch_dir lib/rails/commands/plugin.rb /^ def fetch_dir(url)$/;" f +field_type lib/rails/generators/generated_attribute.rb /^ def field_type$/;" f class:Rails.Generators.GeneratedAttribute +file lib/rails/generators/rails/app/app_generator.rb /^ def file(*args, &block)$/;" f class:Generators.AppGenerator +file_path lib/rails/generators/named_base.rb /^ def file_path$/;" f class:Rails.Generators +filename_with_extensions lib/rails/generators/erb.rb /^ def filename_with_extensions(name)$/;" f class:Erb.Generators.Base +filter_backtrace_with_cleaning lib/rails/backtrace_cleaner.rb /^ def filter_backtrace_with_cleaning(backtrace, prefix=nil)$/;" f class:Rails.BacktraceFilterForTestUnit +filter_by lib/rails/paths.rb /^ def filter_by(constraint)$/;" f class:Rails.Paths.Root +finalize! lib/rails/application/routes_reloader.rb /^ def finalize!$/;" f class:Rails.Application.RoutesReloader +find lib/rails/commands/plugin.rb /^ def self.find(dir=nil)$/;" F class:RailsEnvironment +find lib/rails/commands/plugin.rb /^ def self.find(name)$/;" F class:Plugin +find lib/rails/engine.rb /^ def find(path)$/;" f class:Rails.Engine +find lib/rails/generators/active_model.rb /^ def self.find(klass, params=nil)$/;" F class:Rails.Generators.ActiveModel +find lib/rails/source_annotation_extractor.rb /^ def find(dirs=%w(app lib test))$/;" f class:SourceAnnotationExtractor +find_by_namespace lib/rails/generators.rb /^ def self.find_by_namespace(name, base=nil, context=nil) #:nodoc:$/;" F class:Rails.Generators +find_cmd lib/rails/commands/dbconsole.rb /^ def find_cmd(*commands)$/;" f +find_in lib/rails/source_annotation_extractor.rb /^ def find_in(dir)$/;" f class:SourceAnnotationExtractor +find_root_with_flag lib/rails/engine.rb /^ def find_root_with_flag(flag, default=nil)$/;" f +finish_template lib/rails/generators/rails/app/app_generator.rb /^ def finish_template$/;" f class:Generators.AppGenerator +finish_template lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def finish_template$/;" f class:Generators.PluginNewGenerator +finisher.rb lib/rails/application/finisher.rb 1;" F +first lib/rails/paths.rb /^ def first$/;" f class:Rails.Paths.Path +fixjour_generator.rb test/fixtures/lib/generators/active_record/fixjour_generator.rb 1;" F +fixjour_generator.rb test/fixtures/lib/generators/fixjour_generator.rb 1;" F +foo_or_bar? test/application/routing_test.rb /^ def foo_or_bar?$/;" f class:BarHelper +foobar_generator.rb test/fixtures/lib/rails/generators/foobar/foobar_generator.rb 1;" F +format lib/rails/generators/erb.rb /^ def format$/;" f class:Erb.Generators.Base +format lib/rails/generators/erb/mailer/mailer_generator.rb /^ def format$/;" f class:Erb.Generators.MailerGenerator +framework_path test/isolation/abstract_unit.rb /^ def framework_path$/;" f class:TestHelpers.Paths +framework_version lib/rails/info.rb /^ def framework_version(framework)$/;" f class:Rails +frameworks lib/rails/info.rb /^ def frameworks$/;" f class:Rails +frameworks_test.rb test/application/initializers/frameworks_test.rb 1;" F +from_app test/railties/engine_test.rb /^ def from_app$/;" f class:Bukkits +from_app_helper test/application/initializers/frameworks_test.rb /^ def from_app_helper$/;" f class:ApplicationHelper +from_bar_helper test/application/initializers/frameworks_test.rb /^ def from_bar_helper$/;" f class:BarHelper +from_foo_helper test/application/initializers/frameworks_test.rb /^ def from_foo_helper$/;" f class:FooHelper +full? lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def full?$/;" f class:Generators.PluginNewGenerator +functional_test.rb lib/rails/generators/test_unit/controller/templates/functional_test.rb 1;" F +functional_test.rb lib/rails/generators/test_unit/mailer/templates/functional_test.rb 1;" F +functional_test.rb lib/rails/generators/test_unit/scaffold/templates/functional_test.rb 1;" F +gem lib/rails/generators/actions.rb /^ def gem(*args)$/;" f class:Rails.Generators.Actions +gem_for_database lib/rails/generators/app_base.rb /^ def gem_for_database$/;" f class:Rails.Generators +gemfile lib/rails/generators/rails/app/app_generator.rb /^ def gemfile$/;" f class:Rails.AppBuilder +gemfile lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def gemfile$/;" f class:Rails.PluginBuilder +gemspec lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def gemspec$/;" f class:Rails.PluginBuilder +generate guides/rails_guides/generator.rb /^ def generate$/;" f class:RailsGuides.Generator +generate lib/rails/generators/actions.rb /^ def generate(what, *args)$/;" f class:Rails.Generators +generate.rb lib/rails/commands/generate.rb 1;" F +generate? guides/rails_guides/generator.rb /^ def generate?(source_file, output_file)$/;" f class:RailsGuides.Generator +generate_application_route test/railties/mounted_engine_test.rb /^ def generate_application_route$/;" f class:ApplicationTests.ApplicationRoutingTest.Blog.PostsController +generate_guide guides/rails_guides/generator.rb /^ def generate_guide(guide, output_file)$/;" f class:RailsGuides.Generator +generate_guides guides/rails_guides/generator.rb /^ def generate_guides$/;" f class:RailsGuides.Generator +generate_railtie_name lib/rails/railtie.rb /^ def generate_railtie_name(class_or_module)$/;" f class:Rails.Railtie +generate_test_dummy lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def generate_test_dummy(force = false)$/;" f class:Rails.PluginBuilder +generate_test_dummy test/fixtures/lib/plugin_builders/spec_builder.rb /^ def generate_test_dummy$/;" f class:PluginBuilder +generated_attribute.rb lib/rails/generators/generated_attribute.rb 1;" F +generated_attribute_test.rb test/generators/generated_attribute_test.rb 1;" F +generator lib/rails/generators/test_case.rb /^ def generator(args=self.default_arguments, options={}, config={})$/;" f class:Rails.Generators.TestCase +generator.rb guides/rails_guides/generator.rb 1;" F +generator_dir lib/rails/generators/rails/generator/generator_generator.rb /^ def generator_dir$/;" f class:Rails.Generators.GeneratorGenerator +generator_generator.rb lib/rails/generators/rails/generator/generator_generator.rb 1;" F +generator_generator_test.rb test/generators/generator_generator_test.rb 1;" F +generator_name lib/rails/generators/base.rb /^ def self.generator_name$/;" F class:Rails +generators lib/rails/engine/configuration.rb /^ def generators #:nodoc$/;" f class:Rails.Engine.Configuration +generators lib/rails/railtie.rb /^ def generators(&blk)$/;" f class:Rails.Railtie +generators lib/rails/railtie/configuration.rb /^ def generators(&block) #:nodoc$/;" f class:Rails.Railtie.Configuration +generators.rb lib/rails/generators.rb 1;" F +generators_test.rb test/application/generators_test.rb 1;" F +generators_test.rb test/generators_test.rb 1;" F +generators_test_helper.rb test/generators/generators_test_helper.rb 1;" F +get test/isolation/abstract_unit.rb /^ def get(path)$/;" f class:TestHelpers +get_builder_class lib/rails/generators/rails/app/app_generator.rb /^ def get_builder_class$/;" f class:Generators.AppGenerator +get_builder_class lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def get_builder_class$/;" f class:Generators.PluginNewGenerator +git lib/rails/generators/actions.rb /^ def git(command={})$/;" f class:Rails.Generators +git_url? lib/rails/commands/plugin.rb /^ def git_url?$/;" f class:Plugin +gitignore lib/rails/generators/rails/app/app_generator.rb /^ def gitignore$/;" f class:Rails.AppBuilder +gitignore lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def gitignore$/;" f class:Rails.PluginBuilder +gitignore test/fixtures/lib/app_builders/simple_builder.rb /^ def gitignore$/;" f class:AppBuilder +gitignore test/fixtures/lib/app_builders/tweak_builder.rb /^ def gitignore$/;" f class:AppBuilder +gitignore test/fixtures/lib/plugin_builders/simple_builder.rb /^ def gitignore$/;" f class:PluginBuilder +gitignore test/fixtures/lib/plugin_builders/tweak_builder.rb /^ def gitignore$/;" f class:PluginBuilder +global_plugins lib/rails/plugin.rb /^ def self.global_plugins$/;" F class:Rails.Plugin +guess_name lib/rails/commands/plugin.rb /^ def guess_name(url)$/;" f +guide guides/rails_guides/helpers.rb /^ def guide(name, url, options = {}, &block)$/;" f class:RailsGuides.Helpers +guideMenu guides/assets/javascripts/guides.js /^function guideMenu(){$/;" f +guides.js guides/assets/javascripts/guides.js 1;" F +guides_to_generate guides/rails_guides/generator.rb /^ def guides_to_generate$/;" f class:RailsGuides.Generator +guides_to_validate guides/w3c_validator.rb /^ def guides_to_validate$/;" f class:RailsGuides.Validator +handleMethod lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function handleMethod(element) {$/;" f +handleMethod tmp/app/public/javascripts/rails.js /^ function handleMethod(element) {$/;" f +handleMethod tmp/app_template/public/javascripts/rails.js /^ function handleMethod(element) {$/;" f +handleRemote lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function handleRemote(element) {$/;" f +handleRemote tmp/app/public/javascripts/rails.js /^ function handleRemote(element) {$/;" f +handleRemote tmp/app_template/public/javascripts/rails.js /^ function handleRemote(element) {$/;" f +handler lib/rails/generators/erb.rb /^ def handler$/;" f class:Erb.Generators.Base +help lib/rails/generators.rb /^ def self.help(command = 'generate')$/;" F class:Rails +help_the_engine test/railties/engine_test.rb /^ def help_the_engine$/;" f class:EngineHelper +helper lib/rails/console/helpers.rb /^def helper$/;" f +helper.rb lib/rails/generators/rails/helper/templates/helper.rb 1;" F +helper_generator.rb lib/rails/generators/rails/helper/helper_generator.rb 1;" F +helper_generator.rb lib/rails/generators/test_unit/helper/helper_generator.rb 1;" F +helper_generator_test.rb test/generators/helper_generator_test.rb 1;" F +helper_test.rb lib/rails/generators/test_unit/helper/templates/helper_test.rb 1;" F +helpers.rb guides/rails_guides/helpers.rb 1;" F +helpers.rb lib/rails/console/helpers.rb 1;" F +hidden_namespaces lib/rails/generators.rb /^ def self.hidden_namespaces$/;" F class:Rails.Generators +hide_namespaces lib/rails/generators.rb /^ def hide_namespaces(*namespaces)$/;" f class:Rails.Generators +hook_for lib/rails/generators/base.rb /^ def self.hook_for(*names, &block)$/;" F class:Rails.Generators +hooks lib/rails/generators/base.rb /^ def self.hooks #:nodoc:$/;" F class:Rails +hooks_test.rb test/application/initializers/hooks_test.rb 1;" F +human_name lib/rails/generators/generated_attribute.rb /^ def human_name$/;" f class:Rails +human_name lib/rails/generators/named_base.rb /^ def human_name$/;" f class:Rails.Generators +i18n_scope lib/rails/generators/named_base.rb /^ def i18n_scope$/;" f class:Rails.Generators +i18n_test.rb test/application/initializers/i18n_test.rb 1;" F +id test/railties/mounted_engine_test.rb /^ def id$/;" f class:ApplicationTests.ApplicationRoutingTest.Blog.Post +images lib/rails/generators/rails/app/app_generator.rb /^ def images$/;" f +in_rails_application lib/rails/script_rails_loader.rb /^ def self.in_rails_application?$/;" F class:Rails +in_rails_application_subdirectory lib/rails/script_rails_loader.rb /^ def self.in_rails_application_subdirectory?(path = Pathname.new(Dir.pwd))$/;" F class:Rails +included lib/rails/backtrace_cleaner.rb /^ def self.included(klass)$/;" F class:Rails.BacktraceFilterForTestUnit +included lib/rails/generators/migration.rb /^ def self.included(base) #:nodoc:$/;" F class:Rails.Generators.Migration +included lib/rails/generators/resource_helpers.rb /^ def self.included(base) #:nodoc:$/;" F class:Rails.Generators.ResourceHelpers +included lib/rails/initializable.rb /^ def self.included(base)$/;" F class:Rails.Initializable +included test/generators/generators_test_helper.rb /^ def self.included(base)$/;" F class:GeneratorsTestHelper +included_helpers test/application/initializers/frameworks_test.rb /^ def included_helpers$/;" f class:FooController +indent lib/rails/generators/named_base.rb /^ def indent(content, multiplier = 2)$/;" f class:Rails.Generators.NamedBase +index guides/rails_guides/indexer.rb /^ def index$/;" f class:RailsGuides.Indexer +index lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def index$/;" f +index test/application/configuration_test.rb /^ def index$/;" f +index test/application/middleware/sendfile_test.rb /^ def index$/;" f class:ApplicationTests.SendfileTest +index test/application/middleware_test.rb /^ def index$/;" f +index test/application/routing_test.rb /^ def index$/;" f class:Admin.FooController +index test/application/routing_test.rb /^ def index$/;" f class:BarController +index test/application/routing_test.rb /^ def index$/;" f class:FooController +index test/application/routing_test.rb /^ def index$/;" f class:YazilarController +index test/application/url_generation_test.rb /^ def index$/;" f class:ApplicationTests +index test/isolation/abstract_unit.rb /^ def index$/;" f class:simple_controller.FooController +index test/railties/engine_test.rb /^ def index$/;" f class:Bukkits.HomeController +index test/railties/engine_test.rb /^ def index$/;" f class:Bukkits +index test/railties/engine_test.rb /^ def index$/;" f class:FooController +index test/railties/mounted_engine_test.rb /^ def index$/;" f class:ApplicationTests.ApplicationRoutingTest.Blog.PostsController +index test/railties/shared_tests.rb /^ def index$/;" f class:RailtiesTest.test_adds_helpers_to_controller_views.BukkitController +index test/railties/shared_tests.rb /^ def index$/;" f class:RailtiesTest.test_adds_its_views_to_view_paths.BukkitController +index test/railties/shared_tests.rb /^ def index$/;" f class:RailtiesTest.test_adds_its_views_to_view_paths_with_lower_proriority_than_app_ones.BukkitController +index test/railties/shared_tests.rb /^ def index$/;" f class:RailtiesTest.test_namespaced_controllers_with_namespaced_routes.Admin +index test/railties/shared_tests.rb /^ def index$/;" f class:RailtiesTest.test_routes_in_plugins_have_lower_priority_than_application_ones.BarController +index test/railties/shared_tests.rb /^ def index$/;" f class:RailtiesTest.test_routes_in_plugins_have_lower_priority_than_application_ones.FooController +index.html lib/rails/generators/rails/app/templates/public/index.html 1;" F +index.html tmp/app/public/index.html 1;" F +index.html tmp/app_template/public/index.html 1;" F +index_helper lib/rails/generators/named_base.rb /^ def index_helper$/;" f class:Rails.Generators +indexer.rb guides/rails_guides/indexer.rb 1;" F +inflections.rb lib/rails/generators/rails/app/templates/config/initializers/inflections.rb 1;" F +inflections.rb tmp/app_template/config/initializers/inflections.rb 1;" F +info lib/rails/commands/plugin.rb /^ def info$/;" f class:Plugin +info.rb lib/rails/info.rb 1;" F +info_controller.rb lib/rails/info_controller.rb 1;" F +inherited lib/rails/application.rb /^ def inherited(base)$/;" f class:Rails.Application +inherited lib/rails/engine.rb /^ def inherited(base)$/;" f class:Rails.Engine +inherited lib/rails/generators/base.rb /^ def self.inherited(base) #:nodoc:$/;" F class:Rails +inherited lib/rails/plugin.rb /^ def self.inherited(base)$/;" F class:Rails.Plugin +inherited lib/rails/railtie.rb /^ def inherited(base)$/;" f class:Rails.Railtie +inherited lib/rails/railtie/configurable.rb /^ def inherited(base)$/;" f class:Rails.Railtie.Configurable.ClassMethods +init.rb lib/rails/generators/rails/plugin/templates/init.rb 1;" F +init.rb test/fixtures/about_yml_plugins/bad_about_yml/init.rb 1;" F +init.rb test/fixtures/about_yml_plugins/plugin_without_about_yml/init.rb 1;" F +initializable.rb lib/rails/initializable.rb 1;" F +initializable_test.rb test/initializable_test.rb 1;" F +initialize guides/rails_guides/generator.rb /^ def initialize(output=nil)$/;" f class:RailsGuides.Generator +initialize guides/rails_guides/indexer.rb /^ def initialize(body, warnings)$/;" f class:RailsGuides.Indexer +initialize lib/rails/application/configuration.rb /^ def initialize(*)$/;" f class:Rails.Application.Configuration +initialize lib/rails/application/routes_reloader.rb /^ def initialize$/;" f class:Rails.Application.RoutesReloader +initialize lib/rails/backtrace_cleaner.rb /^ def initialize$/;" f class:Rails.BacktraceCleaner +initialize lib/rails/code_statistics.rb /^ def initialize(*pairs)$/;" f class:CodeStatistics +initialize lib/rails/commands/console.rb /^ def initialize(app)$/;" f class:Rails.Console +initialize lib/rails/commands/dbconsole.rb /^ def initialize(app)$/;" f class:Rails.DBConsole +initialize lib/rails/commands/plugin.rb /^ def initialize$/;" f class:Commands.Plugin +initialize lib/rails/commands/plugin.rb /^ def initialize(base_command)$/;" f class:Commands.Info +initialize lib/rails/commands/plugin.rb /^ def initialize(base_command)$/;" f class:Commands.Install +initialize lib/rails/commands/plugin.rb /^ def initialize(base_command)$/;" f class:Commands.Remove +initialize lib/rails/commands/plugin.rb /^ def initialize(dir)$/;" f class:RailsEnvironment +initialize lib/rails/commands/plugin.rb /^ def initialize(uri, name = nil)$/;" f class:Plugin +initialize lib/rails/commands/plugin.rb /^ def initialize(urls_to_fetch, level = 1, cwd = ".")$/;" f class:RecursiveHTTPFetcher +initialize lib/rails/commands/server.rb /^ def initialize(*)$/;" f class:Rails.Server +initialize lib/rails/configuration.rb /^ def initialize$/;" f class:Rails.Configuration.Generators +initialize lib/rails/configuration.rb /^ def initialize$/;" f class:Rails.Configuration.MiddlewareStackProxy +initialize lib/rails/engine/configuration.rb /^ def initialize(root=nil)$/;" f class:Rails.Engine.Configuration +initialize lib/rails/engine/railties.rb /^ def initialize(config)$/;" f class:Rails.Engine.Railties +initialize lib/rails/generators/active_model.rb /^ def initialize(name)$/;" f class:Rails.Generators.ActiveModel +initialize lib/rails/generators/app_base.rb /^ def initialize(*args)$/;" f class:Rails.Generators.AppBase +initialize lib/rails/generators/generated_attribute.rb /^ def initialize(name, type)$/;" f class:Rails.Generators.GeneratedAttribute +initialize lib/rails/generators/named_base.rb /^ def initialize(args, *options) #:nodoc:$/;" f class:Rails.Generators.NamedBase +initialize lib/rails/generators/rails/app/app_generator.rb /^ def initialize(*args)$/;" f class:Generators.AppGenerator +initialize lib/rails/generators/rails/app/app_generator.rb /^ def initialize(generator)$/;" f class:Rails.ActionMethods +initialize lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def initialize(*args)$/;" f class:Generators.PluginNewGenerator +initialize lib/rails/generators/resource_helpers.rb /^ def initialize(*args) #:nodoc:$/;" f class:Rails.Generators.ResourceHelpers +initialize lib/rails/initializable.rb /^ def initialize(name, context, options, &block)$/;" f class:Rails.Initializable.Initializer +initialize lib/rails/paths.rb /^ def initialize(path)$/;" f class:Rails.Paths.Root +initialize lib/rails/paths.rb /^ def initialize(root, current, *paths)$/;" f class:Rails.Paths.Path +initialize lib/rails/plugin.rb /^ def initialize(root)$/;" f class:Rails +initialize lib/rails/rack/debugger.rb /^ def initialize(app)$/;" f class:Rails.Rack.Debugger +initialize lib/rails/rack/log_tailer.rb /^ def initialize(app, log = nil)$/;" f class:Rails.Rack.LogTailer +initialize lib/rails/rack/logger.rb /^ def initialize(app)$/;" f class:Rails.Rack.Logger +initialize lib/rails/railtie/configuration.rb /^ def initialize$/;" f class:Rails.Railtie.Configuration +initialize lib/rails/source_annotation_extractor.rb /^ def initialize(tag)$/;" f class:SourceAnnotationExtractor +initialize test/isolation/abstract_unit.rb /^ def initialize(path)$/;" f class:Bukkit +initialize test/railties/engine_test.rb /^ def initialize(app)$/;" f class:Upcaser +initialize test/railties/shared_tests.rb /^ def initialize(app)$/;" f class:RailtiesTest.test_midleware_referenced_in_configuration.Bukkits +initialize! lib/rails.rb /^ def initialize!$/;" f class:Rails +initialize! lib/rails/application.rb /^ def initialize!$/;" f class:Rails +initialize_console lib/rails/application.rb /^ def initialize_console(sandbox=false)$/;" f class:Rails +initialize_copy lib/rails/configuration.rb /^ def initialize_copy(source)$/;" f class:Rails.Configuration.Generators +initialize_dirs guides/rails_guides/generator.rb /^ def initialize_dirs(output)$/;" f class:RailsGuides.Generator +initialize_generators lib/rails/application.rb /^ def initialize_generators$/;" f class:Rails +initialize_tasks lib/rails/application.rb /^ def initialize_tasks$/;" f class:Rails +initialized= lib/rails.rb /^ def initialized=(initialized)$/;" f class:Rails +initialized? lib/rails.rb /^ def initialized?$/;" f class:Rails +initializer lib/rails/generators/actions.rb /^ def initializer(filename, data=nil, &block)$/;" f class:Rails.Generators +initializer lib/rails/initializable.rb /^ def initializer(name, opts = {}, &blk)$/;" f class:Rails.Initializable.ClassMethods +initializers lib/rails/application.rb /^ def initializers$/;" f class:Rails +initializers lib/rails/engine.rb /^ def initializers$/;" f +initializers lib/rails/initializable.rb /^ def initializers$/;" f class:Rails.Initializable.ClassMethods +initializers lib/rails/initializable.rb /^ def initializers$/;" f class:Rails.Initializable +initializers test/initializable_test.rb /^ def self.initializers$/;" F class:Application +initializers test/initializable_test.rb /^ def self.initializers$/;" F class:InitializableTests.OverriddenInitializer +initializers_chain lib/rails/initializable.rb /^ def initializers_chain$/;" f class:Rails.Initializable.ClassMethods +initializers_for lib/rails/initializable.rb /^ def initializers_for(binding)$/;" f class:Rails.Initializable.ClassMethods +insertHiddenField lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function insertHiddenField(form, name, value) {$/;" f +insertHiddenField tmp/app/public/javascripts/rails.js /^ function insertHiddenField(form, name, value) {$/;" f +insertHiddenField tmp/app_template/public/javascripts/rails.js /^ function insertHiddenField(form, name, value) {$/;" f +insert_after lib/rails/configuration.rb /^ def insert_after(*args, &block)$/;" f class:Rails.Configuration.MiddlewareStackProxy +insert_before lib/rails/configuration.rb /^ def insert_before(*args, &block)$/;" f class:Rails.Configuration.MiddlewareStackProxy +inside_template lib/rails/generators/named_base.rb /^ def inside_template$/;" f class:Rails.Generators.NamedBase +inside_template? lib/rails/generators/named_base.rb /^ def inside_template?$/;" f class:Rails.Generators.NamedBase +inspect lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function inspect(object) {$/;" f +inspect tmp/app/public/javascripts/prototype.js /^ function inspect(object) {$/;" f +inspect tmp/app_template/public/javascripts/prototype.js /^ function inspect(object) {$/;" f +install lib/rails/commands/plugin.rb /^ def install(method=nil, options = {})$/;" f class:Plugin +install lib/rails/commands/plugin.rb /^ def install(name_uri_or_plugin)$/;" f class:RailsEnvironment +install.rb lib/rails/generators/rails/plugin/templates/install.rb 1;" F +install_using_checkout lib/rails/commands/plugin.rb /^ def install_using_checkout(options = {})$/;" f class:Plugin +install_using_export lib/rails/commands/plugin.rb /^ def install_using_export(options = {})$/;" f class:Plugin +install_using_externals lib/rails/commands/plugin.rb /^ def install_using_externals(options = {})$/;" f class:Plugin +install_using_git lib/rails/commands/plugin.rb /^ def install_using_git(options = {})$/;" f +install_using_http lib/rails/commands/plugin.rb /^ def install_using_http(options = {})$/;" f class:Plugin +installed? lib/rails/commands/plugin.rb /^ def installed?$/;" f class:Plugin +instance lib/rails/railtie/configurable.rb /^ def instance$/;" f class:Rails.Railtie.Configurable.ClassMethods +instrument test/application/initializers/notifications_test.rb /^ def instrument(*args, &block)$/;" f class:ApplicationTests.NotificationsTest +integration_generator.rb lib/rails/generators/test_unit/integration/integration_generator.rb 1;" F +integration_test.rb lib/rails/generators/test_unit/integration/templates/integration_test.rb 1;" F +integration_test_generator.rb lib/rails/generators/rails/integration_test/integration_test_generator.rb 1;" F +integration_test_generator_test.rb test/generators/integration_test_generator_test.rb 1;" F +invoke lib/rails/generators.rb /^ def self.invoke(namespace, args=ARGV, config={})$/;" F class:Rails.Generators +invoke_fallbacks_for lib/rails/generators.rb /^ def self.invoke_fallbacks_for(name, base) #:nodoc:$/;" F class:Rails +isArray lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isArray(object) {$/;" f +isArray tmp/app/public/javascripts/prototype.js /^ function isArray(object) {$/;" f +isArray tmp/app_template/public/javascripts/prototype.js /^ function isArray(object) {$/;" f +isDate lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isDate(object) {$/;" f +isDate tmp/app/public/javascripts/prototype.js /^ function isDate(object) {$/;" f +isDate tmp/app_template/public/javascripts/prototype.js /^ function isDate(object) {$/;" f +isElement lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isElement(object) {$/;" f +isElement tmp/app/public/javascripts/prototype.js /^ function isElement(object) {$/;" f +isElement tmp/app_template/public/javascripts/prototype.js /^ function isElement(object) {$/;" f +isForm lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function isForm(element) {$/;" f +isForm tmp/app/public/javascripts/rails.js /^ function isForm(element) {$/;" f +isForm tmp/app_template/public/javascripts/rails.js /^ function isForm(element) {$/;" f +isFunction lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isFunction(object) {$/;" f +isFunction tmp/app/public/javascripts/prototype.js /^ function isFunction(object) {$/;" f +isFunction tmp/app_template/public/javascripts/prototype.js /^ function isFunction(object) {$/;" f +isHash lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isHash(object) {$/;" f +isHash tmp/app/public/javascripts/prototype.js /^ function isHash(object) {$/;" f +isHash tmp/app_template/public/javascripts/prototype.js /^ function isHash(object) {$/;" f +isInput lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ function isInput(element) {$/;" f +isInput tmp/app/public/javascripts/rails.js /^ function isInput(element) {$/;" f +isInput tmp/app_template/public/javascripts/rails.js /^ function isInput(element) {$/;" f +isNumber lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isNumber(object) {$/;" f +isNumber tmp/app/public/javascripts/prototype.js /^ function isNumber(object) {$/;" f +isNumber tmp/app_template/public/javascripts/prototype.js /^ function isNumber(object) {$/;" f +isString lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isString(object) {$/;" f +isString tmp/app/public/javascripts/prototype.js /^ function isString(object) {$/;" f +isString tmp/app_template/public/javascripts/prototype.js /^ function isString(object) {$/;" f +isUndefined lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function isUndefined(object) {$/;" f +isUndefined tmp/app/public/javascripts/prototype.js /^ function isUndefined(object) {$/;" f +isUndefined tmp/app_template/public/javascripts/prototype.js /^ function isUndefined(object) {$/;" f +isolate_namespace lib/rails/engine.rb /^ def isolate_namespace(mod)$/;" f class:Rails.Engine +javascripts lib/rails/generators/rails/app/app_generator.rb /^ def javascripts$/;" f +javascripts lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def javascripts$/;" f class:Rails.PluginBuilder +jquery.js lib/rails/generators/rails/app/templates/public/javascripts/jquery.js 1;" F +jquery_ujs.js lib/rails/generators/rails/app/templates/public/javascripts/jquery_ujs.js 1;" F +keys lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function keys(object) {$/;" f +keys tmp/app/public/javascripts/prototype.js /^ function keys(object) {$/;" f +keys tmp/app_template/public/javascripts/prototype.js /^ function keys(object) {$/;" f +last lib/rails/paths.rb /^ def last$/;" f class:Rails.Paths.Path +levenshtein.rb guides/rails_guides/levenshtein.rb 1;" F +lib lib/rails/generators/actions.rb /^ def lib(filename, data=nil, &block)$/;" f class:Rails.Generators +lib lib/rails/generators/rails/app/app_generator.rb /^ def lib$/;" f class:Rails +lib lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def lib$/;" f class:Rails.PluginBuilder +license lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def license$/;" f class:Rails.PluginBuilder +links lib/rails/commands/plugin.rb /^ def links(base_url, contents)$/;" f class:RecursiveHTTPFetcher.ls +load_app test/application/initializers/i18n_test.rb /^ def load_app$/;" f class:ApplicationTests.I18nTest +load_console lib/rails/application.rb /^ def load_console(sandbox=false)$/;" f class:Rails +load_console lib/rails/railtie.rb /^ def load_console$/;" f class:Rails +load_environment test/application/console_test.rb /^ def load_environment$/;" f class:ConsoleTest +load_generators lib/rails/application.rb /^ def load_generators$/;" f class:Rails +load_generators lib/rails/railtie.rb /^ def load_generators$/;" f class:Rails +load_generators_from_railties lib/rails/generators.rb /^ def self.load_generators_from_railties! #:nodoc:$/;" F +load_path_test.rb test/application/initializers/load_path_test.rb 1;" F +load_paths lib/rails/application/routes_reloader.rb /^ def load_paths$/;" f class:Rails.Application.RoutesReloader +load_paths lib/rails/paths.rb /^ def load_paths$/;" f class:Rails.Paths.Root +load_seed lib/rails/engine.rb /^ def load_seed$/;" f +load_tasks lib/rails/application.rb /^ def load_tasks$/;" f class:Rails +load_tasks lib/rails/engine.rb /^ def load_tasks$/;" f class:Rails +load_tasks lib/rails/railtie.rb /^ def load_tasks$/;" f class:Rails +loading_test.rb test/application/loading_test.rb 1;" F +log lib/rails/generators/actions.rb /^ def log(*args)$/;" f class:Rails.Generators.route +log lib/rails/generators/rails/app/app_generator.rb /^ def log$/;" f class:Rails +log_level lib/rails/application/configuration.rb /^ def log_level$/;" f class:Rails.Application.Configuration +log_path lib/rails/commands/server.rb /^ def log_path$/;" f class:Rails.Server +log_tailer.rb lib/rails/rack/log_tailer.rb 1;" F +logger lib/rails.rb /^ def logger$/;" f class:Rails +logger.rb lib/rails/rack/logger.rb 1;" F +logger= lib/rails.rb /^ def logger=(logger)$/;" f class:Rails +lookup lib/rails/generators.rb /^ def self.lookup! #:nodoc:$/;" F +lookup lib/rails/generators.rb /^ def self.lookup(namespaces) #:nodoc:$/;" F class:Rails +ls lib/rails/commands/plugin.rb /^ def ls$/;" f class:RecursiveHTTPFetcher +mailer_generator.rb lib/rails/generators/erb/mailer/mailer_generator.rb 1;" F +mailer_generator.rb lib/rails/generators/test_unit/mailer/mailer_generator.rb 1;" F +mailer_generator_test.rb test/generators/mailer_generator_test.rb 1;" F +make_basic_app test/isolation/abstract_unit.rb /^ def make_basic_app$/;" f +masterDelay lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^ var masterDelay = options.delay;$/;" v +masterDelay tmp/app/public/javascripts/effects.js /^ var masterDelay = options.delay;$/;" v +masterDelay tmp/app_template/public/javascripts/effects.js /^ var masterDelay = options.delay;$/;" v +merge_into lib/rails/configuration.rb /^ def merge_into(other)$/;" f class:Rails.Configuration.MiddlewareStackProxy +method_missing lib/rails/configuration.rb /^ def method_missing(method, *args)$/;" f class:Rails.Configuration.Generators +method_missing lib/rails/generators/rails/app/app_generator.rb /^ def method_missing(meth, *args, &block)$/;" f class:Rails.ActionMethods +method_missing lib/rails/paths.rb /^ def method_missing(id, *args)$/;" f class:Rails.Paths.PathParent +method_missing lib/rails/railtie/configurable.rb /^ def method_missing(*args, &block)$/;" f class:Rails.Railtie.Configurable.ClassMethods +method_missing lib/rails/railtie/configuration.rb /^ def method_missing(name, *args, &blk)$/;" f class:Rails.Railtie.Configuration +middleware lib/rails/commands/server.rb /^ def middleware$/;" f class:Rails.Server +middleware lib/rails/engine/configuration.rb /^ def middleware$/;" f class:Rails.Engine.Configuration +middleware test/application/middleware_test.rb /^ def middleware$/;" f +middleware_test.rb test/application/middleware_test.rb 1;" F +migration.rb lib/rails/generators/migration.rb 1;" F +migration_exists? lib/rails/generators/migration.rb /^ def migration_exists?(dirname, file_name) #:nodoc:$/;" f class:Rails.Generators.Migration.ClassMethods +migration_file_name lib/rails/generators/test_case.rb /^ def migration_file_name(relative) #:nodoc:$/;" f class:Rails.Generators.TestCase +migration_generator.rb lib/rails/generators/rails/migration/migration_generator.rb 1;" F +migration_generator_test.rb test/generators/migration_generator_test.rb 1;" F +migration_lookup_at lib/rails/generators/migration.rb /^ def migration_lookup_at(dirname) #:nodoc:$/;" f class:Rails.Generators.Migration.ClassMethods +migration_template lib/rails/generators/migration.rb /^ def migration_template(source, destination=nil, config={})$/;" f class:Rails.Generators.Migration.ClassMethods +mime_types.rb lib/rails/generators/rails/app/templates/config/initializers/mime_types.rb 1;" F +mime_types.rb tmp/app_template/config/initializers/mime_types.rb 1;" F +model_generator.rb lib/rails/generators/rails/model/model_generator.rb 1;" F +model_generator.rb lib/rails/generators/test_unit/model/model_generator.rb 1;" F +model_generator.rb test/fixtures/lib/generators/model_generator.rb 1;" F +model_generator_test.rb test/generators/model_generator_test.rb 1;" F +module_namespacing lib/rails/generators/named_base.rb /^ def module_namespacing(&block)$/;" f class:Rails.Generators.NamedBase +mountable? lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def mountable?$/;" f class:Generators.PluginNewGenerator +mounted_engine_test.rb test/railties/mounted_engine_test.rb 1;" F +mute lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def mute(&block)$/;" f class:Generators.PluginNewGenerator +mysql_socket lib/rails/generators/rails/app/app_generator.rb /^ def mysql_socket$/;" f class:Generators.AppGenerator +name lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var name = encodeURIComponent($/;" v +name lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def name$/;" f class:Generators.PluginNewGenerator +name tmp/app/public/javascripts/dragdrop.js /^ var name = encodeURIComponent($/;" v +name tmp/app_template/public/javascripts/dragdrop.js /^ var name = encodeURIComponent($/;" v +named_base.rb lib/rails/generators/named_base.rb 1;" F +named_base_test.rb test/generators/named_base_test.rb 1;" F +names lib/rails/info.rb /^ def names$/;" f class:Rails.Info +namespace lib/rails/generators/base.rb /^ def self.namespace(name=nil)$/;" F class:Rails.Generators +namespace lib/rails/generators/named_base.rb /^ def namespace$/;" f class:Rails.Generators.NamedBase +namespaced? lib/rails/generators/named_base.rb /^ def namespaced?$/;" f class:Rails.Generators +namespaced_class_path lib/rails/generators/named_base.rb /^ def namespaced_class_path$/;" f class:Rails.Generators +namespaced_generators_test.rb test/generators/namespaced_generators_test.rb 1;" F +namespaces_to_paths lib/rails/generators.rb /^ def self.namespaces_to_paths(namespaces) #:nodoc:$/;" F +navigation_test.rb lib/rails/generators/rails/plugin_new/templates/test/integration/navigation_test.rb 1;" F +new lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def new$/;" f +new test/railties/engine_test.rb /^ def new$/;" f class:Bukkits +new_app test/application/configuration_test.rb /^ def new_app$/;" f class:ApplicationTests.ConfigurationTest +new_record? test/railties/mounted_engine_test.rb /^ def new_record?$/;" f class:ApplicationTests.ApplicationRoutingTest.Blog.Post +new_session lib/rails/console/app.rb /^def new_session$/;" f +next_migration_number lib/rails/generators/migration.rb /^ def next_migration_number(dirname) #:nodoc:$/;" f class:Rails.Generators.Migration.ClassMethods.current_migration_number +no_color lib/rails/generators.rb /^ def self.no_color!$/;" F class:Rails.Generators +not_included_helper test/application/initializers/frameworks_test.rb /^ def not_included_helper$/;" f class:FooController +notestuff guides/rails_guides/textile_extensions.rb /^ def notestuff(body)$/;" f class:RailsGuides.TextileExtensions +notifications_test.rb test/application/initializers/notifications_test.rb 1;" F +notify test/application/initializers/frameworks_test.rb /^ def notify$/;" f class:Foo +observer_generator.rb lib/rails/generators/rails/observer/observer_generator.rb 1;" F +observer_generator.rb lib/rails/generators/test_unit/observer/observer_generator.rb 1;" F +observer_generator_test.rb test/generators/observer_generator_test.rb 1;" F +offsets lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var offsets = dropon.cumulativeOffset();$/;" v +offsets tmp/app/public/javascripts/dragdrop.js /^ var offsets = dropon.cumulativeOffset();$/;" v +offsets tmp/app_template/public/javascripts/dragdrop.js /^ var offsets = dropon.cumulativeOffset();$/;" v +opt_parser lib/rails/commands/server.rb /^ def opt_parser$/;" f class:Rails.Server +options lib/rails/commands/plugin.rb /^ def options$/;" f class:Commands.Info +options lib/rails/commands/plugin.rb /^ def options$/;" f class:Commands.Install +options lib/rails/commands/plugin.rb /^ def options$/;" f class:Commands.Plugin +options lib/rails/commands/plugin.rb /^ def options$/;" f class:Commands.Remove +options lib/rails/generators.rb /^ def self.options #:nodoc:$/;" F class:Rails.Generators +options_for_draggable.quiet lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ revert: true,$/;" p +options_for_draggable.quiet tmp/app/public/javascripts/dragdrop.js /^ revert: true,$/;" p +options_for_draggable.quiet tmp/app_template/public/javascripts/dragdrop.js /^ revert: true,$/;" p +options_for_draggable.revert lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var options_for_draggable = {$/;" p +options_for_draggable.revert tmp/app/public/javascripts/dragdrop.js /^ var options_for_draggable = {$/;" p +options_for_draggable.revert tmp/app_template/public/javascripts/dragdrop.js /^ var options_for_draggable = {$/;" p +options_for_droppable.overlap lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var options_for_droppable = {$/;" p +options_for_droppable.overlap tmp/app/public/javascripts/dragdrop.js /^ var options_for_droppable = {$/;" p +options_for_droppable.overlap tmp/app_template/public/javascripts/dragdrop.js /^ var options_for_droppable = {$/;" p +options_for_tree.onHover lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var options_for_tree = {$/;" p +options_for_tree.onHover tmp/app/public/javascripts/dragdrop.js /^ var options_for_tree = {$/;" p +options_for_tree.onHover tmp/app_template/public/javascripts/dragdrop.js /^ var options_for_tree = {$/;" p +orm_class lib/rails/generators/resource_helpers.rb /^ def orm_class$/;" f class:Rails.Generators.ResourceHelpers +orm_instance lib/rails/generators/resource_helpers.rb /^ def orm_instance(name=singular_table_name)$/;" f class:Rails.Generators.ResourceHelpers +output_file_for guides/rails_guides/generator.rb /^ def output_file_for(guide)$/;" f class:RailsGuides.Generator +parse lib/rails/commands/plugin.rb /^ def self.parse!(args=ARGV)$/;" F class:Commands.Plugin +parse! lib/rails/commands/plugin.rb /^ def parse!(args)$/;" f class:Commands.Info +parse! lib/rails/commands/plugin.rb /^ def parse!(args)$/;" f class:Commands.Install +parse! lib/rails/commands/plugin.rb /^ def parse!(args)$/;" f class:Commands.Remove +parse! lib/rails/commands/plugin.rb /^ def parse!(args=ARGV)$/;" f class:Commands.Plugin +parse! lib/rails/commands/server.rb /^ def parse!(args)$/;" f class:Rails.Server.Options +parse_attributes! lib/rails/generators/named_base.rb /^ def parse_attributes! #:nodoc:$/;" f class:Rails.Generators +partial lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ var partial = [];$/;" v +partial tmp/app/public/javascripts/prototype.js /^ var partial = [];$/;" v +partial tmp/app_template/public/javascripts/prototype.js /^ var partial = [];$/;" v +paths lib/rails/application/configuration.rb /^ def paths$/;" f class:Rails.Application.Configuration +paths lib/rails/engine/configuration.rb /^ def paths$/;" f class:Rails.Engine.Configuration +paths lib/rails/paths.rb /^ def paths$/;" f class:Rails +paths.rb lib/rails/paths.rb 1;" F +paths_test.rb test/application/paths_test.rb 1;" F +paths_test.rb test/paths_test.rb 1;" F +performance_generator.rb lib/rails/generators/test_unit/performance/performance_generator.rb 1;" F +performance_test.rb lib/rails/generators/test_unit/performance/templates/performance_test.rb 1;" F +performance_test_generator.rb lib/rails/generators/rails/performance_test/performance_test_generator.rb 1;" F +performance_test_generator_test.rb test/generators/performance_test_generator_test.rb 1;" F +performance_test_help.rb lib/rails/performance_test_help.rb 1;" F +persisted? test/railties/engine_test.rb /^ def persisted?$/;" f class:Bukkits.Post +plugin lib/rails/generators/actions.rb /^ def plugin(name, options)$/;" f class:Rails.Generators.Actions +plugin test/isolation/abstract_unit.rb /^ def plugin(name, string = "")$/;" f +plugin.rb lib/rails/commands/plugin.rb 1;" F +plugin.rb lib/rails/plugin.rb 1;" F +plugin_dir lib/rails/generators/rails/plugin/plugin_generator.rb /^ def plugin_dir(join=nil)$/;" f class:Rails.Generators.PluginGenerator +plugin_generator.rb lib/rails/generators/rails/plugin/plugin_generator.rb 1;" F +plugin_generator.rb lib/rails/generators/test_unit/plugin/plugin_generator.rb 1;" F +plugin_generator_test.rb test/generators/plugin_generator_test.rb 1;" F +plugin_new.rb lib/rails/commands/plugin_new.rb 1;" F +plugin_new_generator.rb lib/rails/generators/rails/plugin_new/plugin_new_generator.rb 1;" F +plugin_new_generator_test.rb test/generators/plugin_new_generator_test.rb 1;" F +plugin_ordering_test.rb test/railties/plugin_ordering_test.rb 1;" F +plugin_test.rb test/railties/plugin_test.rb 1;" F +plugins lib/rails/engine/railties.rb /^ def plugins$/;" f class:Rails.Engine.Railties +plural_file_name lib/rails/generators/named_base.rb /^ def plural_file_name$/;" f class:Rails.Generators +plural_name lib/rails/generators/named_base.rb /^ def plural_name$/;" f class:Rails.Generators +plural_table_name lib/rails/generators/named_base.rb /^ def plural_table_name$/;" f class:Rails.Generators +pluralize_table_names? lib/rails/generators/named_base.rb /^ def pluralize_table_names?$/;" f class:Rails.Generators +plusplus guides/rails_guides/textile_extensions.rb /^ def plusplus(body)$/;" f class:RailsGuides.TextileExtensions +pointer lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var pointer = [Event.pointerX(event), Event.pointerY(event)];$/;" v +pointer tmp/app/public/javascripts/dragdrop.js /^ var pointer = [Event.pointerX(event), Event.pointerY(event)];$/;" v +pointer tmp/app_template/public/javascripts/dragdrop.js /^ var pointer = [Event.pointerX(event), Event.pointerY(event)];$/;" v +polymorphic_path_without_namespace test/railties/engine_test.rb /^ def polymorphic_path_without_namespace$/;" f class:Bukkits +polymorphic_route test/railties/mounted_engine_test.rb /^ def polymorphic_route$/;" f class:ApplicationTests.ApplicationRoutingTest.ApplicationGeneratingController +pop_d lib/rails/commands/plugin.rb /^ def pop_d$/;" f class:RecursiveHTTPFetcher.ls +prepare_destination lib/rails/generators/test_case.rb /^ def prepare_destination$/;" f class:Rails.Generators.TestCase +prepare_for_invocation lib/rails/generators/base.rb /^ def self.prepare_for_invocation(name, value) #:nodoc:$/;" F class:Rails +print_code_test_stats lib/rails/code_statistics.rb /^ def print_code_test_stats$/;" f +print_header lib/rails/code_statistics.rb /^ def print_header$/;" f class:CodeStatistics +print_line lib/rails/code_statistics.rb /^ def print_line(name, statistics)$/;" f class:CodeStatistics +print_list lib/rails/generators.rb /^ def self.print_list(base, namespaces) #:nodoc:$/;" F class:Rails +print_profile lib/rails/rubyprof_ext.rb /^ def self.print_profile(results, io = $stderr)$/;" F class:Prof +print_splitter lib/rails/code_statistics.rb /^ def print_splitter$/;" f class:CodeStatistics +process guides/rails_guides/indexer.rb /^ def process(string, current_level=3, counters=[1])$/;" f class:RailsGuides.Indexer +production.rb tmp/app_template/config/environments/production.rb 1;" F +profiler.rb lib/rails/commands/profiler.rb 1;" F +properties lib/rails/info_controller.rb /^ def properties$/;" f class:Rails +properties test/rails_info_test.rb /^ def properties$/;" f +property lib/rails/info.rb /^ def property(name, value = nil)$/;" f class:Rails +property_defined? test/rails_info_test.rb /^ def property_defined?(property_name)$/;" f +prototype.js lib/rails/generators/rails/app/templates/public/javascripts/prototype.js 1;" F +prototype.js tmp/app/public/javascripts/prototype.js 1;" F +prototype.js tmp/app_template/public/javascripts/prototype.js 1;" F +prototype_ujs.js lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js 1;" F +public_directory lib/rails/generators/rails/app/app_generator.rb /^ def public_directory$/;" f +public_path lib/rails.rb /^ def public_path$/;" f class:Rails +push_d lib/rails/commands/plugin.rb /^ def push_d(dir)$/;" f class:RecursiveHTTPFetcher.ls +rack.rb lib/rails/rack.rb 1;" F +rackup test/application/rackup_test.rb /^ def rackup$/;" f class:ApplicationTests.RackupTest +rackup_test.rb test/application/rackup_test.rb 1;" F +rails tmp/app_template/script/rails 1;" F +rails.js tmp/app/public/javascripts/rails.js 1;" F +rails.js tmp/app_template/public/javascripts/rails.js 1;" F +rails.rb lib/rails.rb 1;" F +rails_env lib/rails/commands/plugin.rb /^ def rails_env$/;" f +rails_gemfile_entry lib/rails/generators/app_base.rb /^ def rails_gemfile_entry$/;" f class:Rails.Generators +rails_guides.rb guides/rails_guides.rb 1;" F +rails_info_controller_test.rb test/rails_info_controller_test.rb 1;" F +rails_info_test.rb test/rails_info_test.rb 1;" F +rails_root test/isolation/abstract_unit.rb /^ def rails_root$/;" f class:TestHelpers.Paths +railtie.rb lib/rails/railtie.rb 1;" F +railtie.rb lib/rails/test_unit/railtie.rb 1;" F +railtie_name lib/rails/plugin.rb /^ def railtie_name$/;" f class:Rails +railtie_name lib/rails/railtie.rb /^ def railtie_name(name = nil)$/;" f class:Rails.Railtie +railtie_test.rb test/railties/railtie_test.rb 1;" F +railties lib/rails/engine.rb /^ def railties$/;" f +railties lib/rails/engine/railties.rb /^ def self.railties$/;" F class:Rails.Engine.Railties +railties.rb lib/rails/application/railties.rb 1;" F +railties.rb lib/rails/engine/railties.rb 1;" F +rake lib/rails/generators/actions.rb /^ def rake(command, options={})$/;" f class:Rails.Generators +rake_tasks lib/rails/railtie.rb /^ def rake_tasks(&blk)$/;" f class:Rails.Railtie +rake_test.rb test/application/rake_test.rb 1;" F +rakefile lib/rails/generators/actions.rb /^ def rakefile(filename, data=nil, &block)$/;" f class:Rails.Generators +rakefile lib/rails/generators/rails/app/app_generator.rb /^ def rakefile$/;" f class:Rails.AppBuilder +rakefile lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def rakefile$/;" f class:Rails.PluginBuilder +rakefile_test_tasks lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def rakefile_test_tasks$/;" f class:Generators.PluginNewGenerator +readme lib/rails/generators/actions.rb /^ def readme(path)$/;" f class:Rails.Generators.route +readme lib/rails/generators/rails/app/app_generator.rb /^ def readme$/;" f class:Rails.AppBuilder +readme lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def readme$/;" f class:Rails.PluginBuilder +reference? lib/rails/generators/generated_attribute.rb /^ def reference?$/;" f class:Rails +regular_class_path lib/rails/generators/named_base.rb /^ def regular_class_path$/;" f class:Rails.Generators +reload! lib/rails/application/routes_reloader.rb /^ def reload!$/;" f class:Rails.Application.RoutesReloader +reload! lib/rails/console/app.rb /^def reload!(print=true)$/;" f +reload_routes! lib/rails/application.rb /^ def reload_routes!$/;" f class:Rails +remote_ip test/application/middleware/remote_ip_test.rb /^ def remote_ip(env = {})$/;" f class:ApplicationTests.RemoteIpTest +remote_ip_test.rb test/application/middleware/remote_ip_test.rb 1;" F +remove_hook_for lib/rails/generators/base.rb /^ def self.remove_hook_for(*names)$/;" F class:Rails +render_conditionally test/application/middleware/cache_test.rb /^ def render_conditionally(headers)$/;" f class:ApplicationTests.RoutingTest.simple_controller.ExpiresController +require_environment! lib/rails/application.rb /^ def require_environment! #:nodoc:$/;" f class:Rails +require_for_database lib/rails/generators/app_base.rb /^ def require_for_database$/;" f class:Rails.Generators +reset_script_name! test/railties/mounted_engine_test.rb /^ def reset_script_name!$/;" f class:ApplicationTests +resource_generator.rb lib/rails/generators/rails/resource/resource_generator.rb 1;" F +resource_generator_test.rb test/generators/resource_generator_test.rb 1;" F +resource_helpers.rb lib/rails/generators/resource_helpers.rb 1;" F +respond_to? lib/rails/railtie/configurable.rb /^ def respond_to?(*args)$/;" f class:Rails.Railtie.Configurable.ClassMethods +respond_to? lib/rails/railtie/configuration.rb /^ def respond_to?(name)$/;" f class:Rails.Railtie.Configuration +revert lib/rails/application/routes_reloader.rb /^ def revert$/;" f class:Rails.Application.RoutesReloader +root lib/rails.rb /^ def root$/;" f class:Rails +root test/application/paths_test.rb /^ def root(*path)$/;" f class:ApplicationTests.PathsTest +root test/generators/generators_test_helper.rb /^ def self.root$/;" F class:Rails +root.children lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ parent: null,$/;" p +root.children tmp/app/public/javascripts/dragdrop.js /^ parent: null,$/;" p +root.children tmp/app_template/public/javascripts/dragdrop.js /^ parent: null,$/;" p +root.id lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var root = {$/;" p +root.id tmp/app/public/javascripts/dragdrop.js /^ var root = {$/;" p +root.id tmp/app_template/public/javascripts/dragdrop.js /^ var root = {$/;" p +root.parent lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ id: null,$/;" p +root.parent tmp/app/public/javascripts/dragdrop.js /^ id: null,$/;" p +root.parent tmp/app_template/public/javascripts/dragdrop.js /^ id: null,$/;" p +root= lib/rails/engine/configuration.rb /^ def root=(value)$/;" f class:Rails.Engine.Configuration +route lib/rails/generators/actions.rb /^ def route(routing_code)$/;" f class:Rails.Generators +route_url lib/rails/generators/named_base.rb /^ def route_url$/;" f class:Rails.Generators +routes lib/rails/engine.rb /^ def routes$/;" f +routes.rb lib/rails/generators/rails/app/templates/config/routes.rb 1;" F +routes.rb lib/rails/generators/rails/plugin_new/templates/config/routes.rb 1;" F +routes.rb lib/rails/generators/rails/plugin_new/templates/rails/routes.rb 1;" F +routes.rb tmp/app/config/routes.rb 1;" F +routes.rb tmp/app_template/config/routes.rb 1;" F +routes? lib/rails/engine.rb /^ def routes?$/;" f +routes_helpers_in_view test/railties/engine_test.rb /^ def routes_helpers_in_view$/;" f class:Bukkits +routes_reloader lib/rails/application.rb /^ def routes_reloader$/;" f class:Rails +routes_reloader.rb lib/rails/application/routes_reloader.rb 1;" F +routing_test.rb test/application/routing_test.rb 1;" F +ruby test/application/test_test.rb /^ def ruby(*args)$/;" f +ruby_version_check.rb lib/rails/ruby_version_check.rb 1;" F +rubyprof_ext.rb lib/rails/rubyprof_ext.rb 1;" F +run lib/rails/initializable.rb /^ def run(*args)$/;" f class:Rails.Initializable.Initializer +run_generator lib/rails/generators/test_case.rb /^ def run_generator(args=self.default_arguments, config={})$/;" f class:Rails.Generators.TestCase +run_initializers lib/rails/initializable.rb /^ def run_initializers(*args)$/;" f class:Rails.Initializable +run_install_hook lib/rails/commands/plugin.rb /^ def run_install_hook$/;" f class:Plugin +run_test test/application/test_test.rb /^ def run_test(name)$/;" f +run_uninstall_hook lib/rails/commands/plugin.rb /^ def run_uninstall_hook$/;" f class:Plugin +runner.rb lib/rails/commands/runner.rb 1;" F +runner_test.rb test/application/runner_test.rb 1;" F +s lib/rails/generators/rails/app/templates/public/javascripts/dragdrop.js /^ var s = Sortable.sortables[element.id];$/;" v +s tmp/app/public/javascripts/dragdrop.js /^ var s = Sortable.sortables[element.id];$/;" v +s tmp/app_template/public/javascripts/dragdrop.js /^ var s = Sortable.sortables[element.id];$/;" v +sandbox.rb lib/rails/console/sandbox.rb 1;" F +save lib/rails/generators/active_model.rb /^ def save$/;" f class:Rails.Generators.ActiveModel +scaffold_controller_generator.rb lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb 1;" F +scaffold_controller_generator_test.rb test/generators/scaffold_controller_generator_test.rb 1;" F +scaffold_generator.rb lib/rails/generators/erb/scaffold/scaffold_generator.rb 1;" F +scaffold_generator.rb lib/rails/generators/rails/scaffold/scaffold_generator.rb 1;" F +scaffold_generator.rb lib/rails/generators/test_unit/scaffold/scaffold_generator.rb 1;" F +scaffold_generator_test.rb test/generators/scaffold_generator_test.rb 1;" F +script lib/rails/generators/rails/app/app_generator.rb /^ def script$/;" f +script lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def script(force = false)$/;" f class:Rails.PluginBuilder +script test/isolation/abstract_unit.rb /^ def script(script)$/;" f +script_name test/railties/mounted_engine_test.rb /^ def script_name(script_name)$/;" f class:ApplicationTests +script_rails_loader.rb lib/rails/script_rails_loader.rb 1;" F +script_rails_loader_test.rb test/script_rails_loader_test.rb 1;" F +secret_token.rb tmp/app_template/config/initializers/secret_token.rb 1;" F +seeds.rb lib/rails/generators/rails/app/templates/db/seeds.rb 1;" F +seeds.rb tmp/app/db/seeds.rb 1;" F +seeds.rb tmp/app_template/db/seeds.rb 1;" F +select_only guides/rails_guides/generator.rb /^ def select_only(guides)$/;" f class:RailsGuides.Generator +select_only guides/w3c_validator.rb /^ def select_only(guides)$/;" f class:RailsGuides.Validator +sendfile_test.rb test/application/middleware/sendfile_test.rb 1;" F +server.rb lib/rails/commands/server.rb 1;" F +session_migration_generator.rb lib/rails/generators/rails/session_migration/session_migration_generator.rb 1;" F +session_migration_generator_test.rb test/generators/session_migration_generator_test.rb 1;" F +session_store lib/rails/application/configuration.rb /^ def session_store(*args)$/;" f class:Rails.Application.Configuration +session_store.rb tmp/app_template/config/initializers/session_store.rb 1;" F +set_default_accessors! lib/rails/generators/app_base.rb /^ def set_default_accessors!$/;" f class:Rails.Generators.AppBase +set_environment lib/rails/commands/server.rb /^ def set_environment$/;" f class:Rails.Server +set_flags_from_environment guides/rails_guides/generator.rb /^ def set_flags_from_environment$/;" f class:RailsGuides.Generator +set_header_section guides/rails_guides/generator.rb /^ def set_header_section(body, view)$/;" f class:RailsGuides.Generator +set_index guides/rails_guides/generator.rb /^ def set_index(body, view)$/;" f class:RailsGuides.Generator +setup test/application/configuration_test.rb /^ def setup$/;" f class:ApplicationTests.ConfigurationTest +setup test/application/console_test.rb /^ def setup$/;" f class:ConsoleTest +setup test/application/generators_test.rb /^ def setup$/;" f class:ApplicationTests.GeneratorsTest +setup test/application/initializers/boot_test.rb /^ def setup$/;" f class:ApplicationTests.GemBooting +setup test/application/initializers/check_ruby_version_test.rb /^ def setup$/;" f class:ApplicationTests.CheckRubyVersionTest +setup test/application/initializers/frameworks_test.rb /^ def setup$/;" f class:ApplicationTests.FrameworlsTest +setup test/application/initializers/hooks_test.rb /^ def setup$/;" f class:ApplicationTests.InitializersTest +setup test/application/initializers/i18n_test.rb /^ def setup$/;" f class:ApplicationTests.I18nTest +setup test/application/initializers/load_path_test.rb /^ def setup$/;" f class:ApplicationTests.LoadPathTest +setup test/application/initializers/notifications_test.rb /^ def setup$/;" f class:ApplicationTests.NotificationsTest +setup test/application/loading_test.rb /^ def setup$/;" f class:LoadingTest +setup test/application/middleware/best_practices_test.rb /^ def setup$/;" f class:ApplicationTests.BestPracticesTest +setup test/application/middleware/cache_test.rb /^ def setup$/;" f class:ApplicationTests.RoutingTest +setup test/application/middleware/remote_ip_test.rb /^ def setup$/;" f class:ApplicationTests.RemoteIpTest +setup test/application/middleware/sendfile_test.rb /^ def setup$/;" f class:ApplicationTests.SendfileTest +setup test/application/middleware_test.rb /^ def setup$/;" f class:ApplicationTests.MiddlewareTest +setup test/application/paths_test.rb /^ def setup$/;" f class:ApplicationTests.PathsTest +setup test/application/rackup_test.rb /^ def setup$/;" f class:ApplicationTests.RackupTest +setup test/application/rake_test.rb /^ def setup$/;" f class:ApplicationTests.RakeTest +setup test/application/routing_test.rb /^ def setup$/;" f class:ApplicationTests.RoutingTest +setup test/application/runner_test.rb /^ def setup$/;" f class:ApplicationTests.RunnerTest +setup test/application/test_test.rb /^ def setup$/;" f class:ApplicationTests.TestTest +setup test/backtrace_cleaner_test.rb /^ def setup$/;" f class:BacktraceCleanerFilterTest +setup test/backtrace_cleaner_test.rb /^ def setup$/;" f class:BacktraceCleanerVendorGemTest +setup test/generators/actions_test.rb /^ def setup$/;" f class:ActionsTest +setup test/generators/namespaced_generators_test.rb /^ def setup$/;" f class:NamespacedGeneratorTestCase +setup test/generators/shared_generator_tests.rb /^ def setup$/;" f class:SharedCustomGeneratorTests +setup test/generators/shared_generator_tests.rb /^ def setup$/;" f class:SharedGeneratorTests +setup test/generators_test.rb /^ def setup$/;" f class:GeneratorsTest +setup test/paths_test.rb /^ def setup$/;" f class:PathsTest +setup test/rails_info_controller_test.rb /^ def setup$/;" f class:InfoControllerTest +setup test/rails_info_test.rb /^ def setup$/;" f class:InfoTest +setup test/railties/engine_test.rb /^ def setup$/;" f class:RailtiesTest.EngineTest +setup test/railties/mounted_engine_test.rb /^ def setup$/;" f class:ApplicationTests.ApplicationRoutingTest +setup test/railties/plugin_ordering_test.rb /^ def setup$/;" f class:RailtiesTest.PluginOrderingTest +setup test/railties/plugin_test.rb /^ def setup$/;" f class:RailtiesTest.PluginTest +setup test/railties/railtie_test.rb /^ def setup$/;" f class:RailtiesTest.RailtieTest +setup_ar! test/application/loading_test.rb /^ def setup_ar!$/;" f +shBrushAS3.js guides/assets/javascripts/syntaxhighlighter/shBrushAS3.js 1;" F +shBrushAppleScript.js guides/assets/javascripts/syntaxhighlighter/shBrushAppleScript.js 1;" F +shBrushBash.js guides/assets/javascripts/syntaxhighlighter/shBrushBash.js 1;" F +shBrushCSharp.js guides/assets/javascripts/syntaxhighlighter/shBrushCSharp.js 1;" F +shBrushColdFusion.js guides/assets/javascripts/syntaxhighlighter/shBrushColdFusion.js 1;" F +shBrushCpp.js guides/assets/javascripts/syntaxhighlighter/shBrushCpp.js 1;" F +shBrushCss.js guides/assets/javascripts/syntaxhighlighter/shBrushCss.js 1;" F +shBrushDelphi.js guides/assets/javascripts/syntaxhighlighter/shBrushDelphi.js 1;" F +shBrushDiff.js guides/assets/javascripts/syntaxhighlighter/shBrushDiff.js 1;" F +shBrushErlang.js guides/assets/javascripts/syntaxhighlighter/shBrushErlang.js 1;" F +shBrushGroovy.js guides/assets/javascripts/syntaxhighlighter/shBrushGroovy.js 1;" F +shBrushJScript.js guides/assets/javascripts/syntaxhighlighter/shBrushJScript.js 1;" F +shBrushJava.js guides/assets/javascripts/syntaxhighlighter/shBrushJava.js 1;" F +shBrushJavaFX.js guides/assets/javascripts/syntaxhighlighter/shBrushJavaFX.js 1;" F +shBrushPerl.js guides/assets/javascripts/syntaxhighlighter/shBrushPerl.js 1;" F +shBrushPhp.js guides/assets/javascripts/syntaxhighlighter/shBrushPhp.js 1;" F +shBrushPlain.js guides/assets/javascripts/syntaxhighlighter/shBrushPlain.js 1;" F +shBrushPowerShell.js guides/assets/javascripts/syntaxhighlighter/shBrushPowerShell.js 1;" F +shBrushPython.js guides/assets/javascripts/syntaxhighlighter/shBrushPython.js 1;" F +shBrushRuby.js guides/assets/javascripts/syntaxhighlighter/shBrushRuby.js 1;" F +shBrushSass.js guides/assets/javascripts/syntaxhighlighter/shBrushSass.js 1;" F +shBrushScala.js guides/assets/javascripts/syntaxhighlighter/shBrushScala.js 1;" F +shBrushSql.js guides/assets/javascripts/syntaxhighlighter/shBrushSql.js 1;" F +shBrushVb.js guides/assets/javascripts/syntaxhighlighter/shBrushVb.js 1;" F +shBrushXml.js guides/assets/javascripts/syntaxhighlighter/shBrushXml.js 1;" F +shCore.js guides/assets/javascripts/syntaxhighlighter/shCore.js 1;" F +shared_generator_tests.rb test/generators/shared_generator_tests.rb 1;" F +shared_tests.rb test/railties/shared_tests.rb 1;" F +show lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def show$/;" f +show test/railties/engine_test.rb /^ def show$/;" f class:Bukkits +show_deprecation lib/rails/generators/rails/plugin/plugin_generator.rb /^ def show_deprecation$/;" f class:Rails.Generators.PluginGenerator +show_results guides/w3c_validator.rb /^ def show_results(error_list)$/;" f class:RailsGuides.Validator +simple_builder.rb test/fixtures/lib/app_builders/simple_builder.rb 1;" F +simple_builder.rb test/fixtures/lib/plugin_builders/simple_builder.rb 1;" F +simple_controller test/application/middleware/cache_test.rb /^ def simple_controller$/;" f class:ApplicationTests.RoutingTest +simple_controller test/isolation/abstract_unit.rb /^ def simple_controller$/;" f +singular_table_name lib/rails/generators/named_base.rb /^ def singular_table_name$/;" f class:Rails.Generators +skip_ lib/rails/paths.rb /^ def skip_#{m}!$/;" f class:Rails.Paths.Path +skip_test_unit? test/fixtures/lib/plugin_builders/spec_builder.rb /^ def skip_test_unit?$/;" f class:PluginBuilder +something test/railties/engine_test.rb /^ def something$/;" f class:SomeHelper +source_annotation_extractor.rb lib/rails/source_annotation_extractor.rb 1;" F +source_root lib/rails/generators/base.rb /^ def self.source_root(path=nil)$/;" F class:Rails.Generators.Base +spec_builder.rb test/fixtures/lib/plugin_builders/spec_builder.rb 1;" F +split_args lib/rails/commands/plugin.rb /^ def split_args(args)$/;" f class:Commands.Plugin +start lib/rails/commands/console.rb /^ def self.start(app)$/;" F class:Rails.Console +start lib/rails/commands/console.rb /^ def start$/;" f class:Rails.Console +start lib/rails/commands/dbconsole.rb /^ def self.start(app)$/;" F class:Rails.DBConsole +start lib/rails/commands/dbconsole.rb /^ def start$/;" f class:Rails.DBConsole +start lib/rails/commands/server.rb /^ def start$/;" f class:Rails.Server +static.rb lib/rails/rack/static.rb 1;" F +static_asset_paths lib/rails/railtie/configuration.rb /^ def static_asset_paths$/;" f class:Rails.Railtie.Configuration +stringify lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function stringify(object) {$/;" f +stringify tmp/app/public/javascripts/prototype.js /^ function stringify(object) {$/;" f +stringify tmp/app_template/public/javascripts/prototype.js /^ function stringify(object) {$/;" f +stylesheets lib/rails/generators/rails/app/app_generator.rb /^ def stylesheets$/;" f +stylesheets lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def stylesheets$/;" f class:Rails.PluginBuilder +stylesheets_generator.rb lib/rails/generators/rails/stylesheets/stylesheets_generator.rb 1;" F +stylesheets_generator_test.rb test/generators/stylesheets_generator_test.rb 1;" F +subclasses lib/rails/generators.rb /^ def self.subclasses$/;" F class:Rails.Generators +subclasses lib/rails/railtie.rb /^ def subclasses$/;" f class:Rails.Railtie +submitBubbles lib/rails/generators/rails/app/templates/public/javascripts/prototype_ujs.js /^ var submitBubbles = isEventSupported('submit'),$/;" v +submitBubbles tmp/app/public/javascripts/rails.js /^ var submitBubbles = isEventSupported('submit'),$/;" v +submitBubbles tmp/app_template/public/javascripts/rails.js /^ var submitBubbles = isEventSupported('submit'),$/;" v +svn_command lib/rails/commands/plugin.rb /^ def svn_command(cmd, options = {})$/;" f +svn_info test/rails_info_test.rb /^ def svn_info$/;" f class:InfoTest.svn_info= +svn_info= test/rails_info_test.rb /^ def svn_info=(info)$/;" f class:InfoTest +svn_url? lib/rails/commands/plugin.rb /^ def svn_url?$/;" f class:Plugin +swap lib/rails/configuration.rb /^ def swap(*args, &block)$/;" f class:Rails.Configuration.MiddlewareStackProxy +table_name lib/rails/generators/named_base.rb /^ def table_name$/;" f class:Rails.Generators +table_name_prefix test/railties/engine_test.rb /^ def self.table_name_prefix$/;" F class:Bukkits +tail! lib/rails/rack/log_tailer.rb /^ def tail!$/;" f class:Rails.Rack.LogTailer +tasks.rb lib/rails/tasks.rb 1;" F +teardown test/application/configuration_test.rb /^ def teardown$/;" f class:ApplicationTests.ConfigurationTest +teardown test/generators/actions_test.rb /^ def teardown$/;" f class:ActionsTest +teardown test/generators/namespaced_generators_test.rb /^ def teardown$/;" f class:NamespacedGeneratorTestCase +teardown test/generators/shared_generator_tests.rb /^ def teardown$/;" f class:SharedCustomGeneratorTests +teardown test/generators/shared_generator_tests.rb /^ def teardown$/;" f class:SharedGeneratorTests +teardown test/generators_test.rb /^ def teardown$/;" f class:GeneratorsTest +template lib/rails/generators/named_base.rb /^ def template(source, *args, &block)$/;" f class:Rails.Generators.NamedBase +template.rb test/fixtures/lib/template.rb 1;" F +templates_path lib/rails/generators.rb /^ def self.templates_path$/;" F class:Rails.Generators +test lib/rails/generators/rails/app/app_generator.rb /^ def test$/;" f +test lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def test$/;" f class:Rails.PluginBuilder +test test/fixtures/lib/plugin_builders/spec_builder.rb /^ def test$/;" f class:PluginBuilder +test.rb tmp/app_template/config/environments/test.rb 1;" F +test_access_to_helpers test/application/console_test.rb /^ def test_access_to_helpers$/;" f class:ConsoleTest +test_actions_are_turned_into_methods test/generators/controller_generator_test.rb /^ def test_actions_are_turned_into_methods$/;" f class:ControllerGeneratorTest +test_actions_are_turned_into_methods test/generators/mailer_generator_test.rb /^ def test_actions_are_turned_into_methods$/;" f +test_active_record_does_not_panic_when_referencing_an_observed_constant test/application/console_test.rb /^ def test_active_record_does_not_panic_when_referencing_an_observed_constant$/;" f class:ConsoleTest +test_active_record_is_removed_from_frameworks_if_skip_active_record_is_given test/generators/app_generator_test.rb /^ def test_active_record_is_removed_from_frameworks_if_skip_active_record_is_given$/;" f +test_active_record_is_removed_from_frameworks_if_skip_active_record_is_given test/generators/plugin_new_generator_test.rb /^ def test_active_record_is_removed_from_frameworks_if_skip_active_record_is_given$/;" f class:PluginNewGeneratorTest +test_add_migration_with_attributes test/generators/migration_generator_test.rb /^ def test_add_migration_with_attributes$/;" f class:MigrationGeneratorTest +test_add_routes test/generators/controller_generator_test.rb /^ def test_add_routes$/;" f class:ControllerGeneratorTest +test_add_source_adds_source_to_gemfile test/generators/actions_test.rb /^ def test_add_source_adds_source_to_gemfile$/;" f class:ActionsTest +test_adds_helpers_to_controller_views test/railties/shared_tests.rb /^ def test_adds_helpers_to_controller_views$/;" f class:RailtiesTest +test_adds_its_views_to_view_paths test/railties/shared_tests.rb /^ def test_adds_its_views_to_view_paths$/;" f class:RailtiesTest +test_adds_its_views_to_view_paths_with_lower_proriority_than_app_ones test/railties/shared_tests.rb /^ def test_adds_its_views_to_view_paths_with_lower_proriority_than_app_ones$/;" f class:RailtiesTest +test_adds_namespace_to_model test/generators/namespaced_generators_test.rb /^ def test_adds_namespace_to_model$/;" f class:NamespacedModelGeneratorTest +test_app_method_should_return_integration_session test/application/console_test.rb /^ def test_app_method_should_return_integration_session$/;" f class:ConsoleTest +test_application_controller_and_layout_files test/generators/app_generator_test.rb /^ def test_application_controller_and_layout_files$/;" f class:AppGeneratorTest +test_application_name test/generators/named_base_test.rb /^ def test_application_name$/;" f class:NamedBaseTest +test_application_name_is_detected_if_it_exists_and_app_folder_renamed test/generators/app_generator_test.rb /^ def test_application_name_is_detected_if_it_exists_and_app_folder_renamed$/;" f class:AppGeneratorTest +test_application_names_are_not_singularized test/generators/app_generator_test.rb /^ def test_application_names_are_not_singularized$/;" f class:AppGeneratorTest +test_autoload_any_path_under_app test/railties/shared_tests.rb /^ def test_autoload_any_path_under_app$/;" f class:RailtiesTest +test_being_quiet_while_creating_dummy_application test/generators/plugin_new_generator_test.rb /^ def test_being_quiet_while_creating_dummy_application$/;" f class:PluginNewGeneratorTest +test_builder_option_with_empty_app_builder test/generators/shared_generator_tests.rb /^ def test_builder_option_with_empty_app_builder$/;" f class:SharedCustomGeneratorTests +test_builder_option_with_http test/generators/shared_generator_tests.rb /^ def test_builder_option_with_http$/;" f class:SharedCustomGeneratorTests +test_builder_option_with_relative_path test/generators/shared_generator_tests.rb /^ def test_builder_option_with_relative_path$/;" f class:SharedCustomGeneratorTests +test_builder_option_with_simple_plugin_builder test/generators/shared_generator_tests.rb /^ def test_builder_option_with_simple_plugin_builder$/;" f class:SharedCustomGeneratorTests +test_builder_option_with_tweak_plugin_builder test/generators/shared_generator_tests.rb /^ def test_builder_option_with_tweak_plugin_builder$/;" f class:SharedCustomGeneratorTests +test_cache_is_disabled_in_dev_mode test/application/middleware/cache_test.rb /^ def test_cache_is_disabled_in_dev_mode$/;" f class:ApplicationTests.RoutingTest +test_cache_works_with_etags test/application/middleware/cache_test.rb /^ def test_cache_works_with_etags$/;" f class:ApplicationTests.RoutingTest +test_cache_works_with_etags_private test/application/middleware/cache_test.rb /^ def test_cache_works_with_etags_private$/;" f class:ApplicationTests.RoutingTest +test_cache_works_with_expires test/application/middleware/cache_test.rb /^ def test_cache_works_with_expires$/;" f class:ApplicationTests.RoutingTest +test_cache_works_with_expires_private test/application/middleware/cache_test.rb /^ def test_cache_works_with_expires_private$/;" f class:ApplicationTests.RoutingTest +test_cache_works_with_last_modified test/application/middleware/cache_test.rb /^ def test_cache_works_with_last_modified$/;" f class:ApplicationTests.RoutingTest +test_cache_works_with_last_modified_private test/application/middleware/cache_test.rb /^ def test_cache_works_with_last_modified_private$/;" f class:ApplicationTests.RoutingTest +test_capify_should_run_the_capify_command test/generators/actions_test.rb /^ def test_capify_should_run_the_capify_command$/;" f class:ActionsTest +test_case.rb lib/rails/generators/test_case.rb 1;" F +test_check_class_collision test/generators/controller_generator_test.rb /^ def test_check_class_collision$/;" f class:ControllerGeneratorTest +test_check_class_collision test/generators/helper_generator_test.rb /^ def test_check_class_collision$/;" f class:HelperGeneratorTest +test_check_class_collision test/generators/mailer_generator_test.rb /^ def test_check_class_collision$/;" f +test_check_class_collision test/generators/model_generator_test.rb /^ def test_check_class_collision$/;" f +test_check_class_collision test/generators/plugin_generator_test.rb /^ def test_check_class_collision$/;" f class:PluginGeneratorTest +test_check_class_collision_on_tests test/generators/helper_generator_test.rb /^ def test_check_class_collision_on_tests$/;" f class:HelperGeneratorTest +test_code_statistics_sanity test/application/rake_test.rb /^ def test_code_statistics_sanity$/;" f class:ApplicationTests +test_config_another_database test/generators/app_generator_test.rb /^ def test_config_another_database$/;" f class:AppGeneratorTest +test_config_another_database test/generators/plugin_new_generator_test.rb /^ def test_config_another_database$/;" f class:PluginNewGeneratorTest +test_config_database_is_added_by_default test/generators/app_generator_test.rb /^ def test_config_database_is_added_by_default$/;" f class:AppGeneratorTest +test_config_jquery_javascript_library test/generators/app_generator_test.rb /^ def test_config_jquery_javascript_library$/;" f +test_config_prototype_javascript_library test/generators/app_generator_test.rb /^ def test_config_prototype_javascript_library$/;" f +test_constants_in_app_are_autoloaded test/application/loading_test.rb /^ def test_constants_in_app_are_autoloaded$/;" f class:LoadingTest +test_controller_skeleton_is_created test/generators/controller_generator_test.rb /^ def test_controller_skeleton_is_created$/;" f class:ControllerGeneratorTest +test_controller_skeleton_is_created test/generators/scaffold_controller_generator_test.rb /^ def test_controller_skeleton_is_created$/;" f class:ScaffoldControllerGeneratorTest +test_copy_stylesheets test/generators/stylesheets_generator_test.rb /^ def test_copy_stylesheets$/;" f class:StylesheetsGeneratorTest +test_copying_assets test/railties/shared_tests.rb /^ def test_copying_assets$/;" f class:RailtiesTest.SharedTests +test_copying_migrations test/railties/shared_tests.rb /^ def test_copying_migrations$/;" f class:RailtiesTest.SharedTests +test_create_file_should_write_block_contents_to_file_path test/generators/actions_test.rb /^ def test_create_file_should_write_block_contents_to_file_path$/;" f class:ActionsTest +test_create_file_should_write_data_to_file_path test/generators/actions_test.rb /^ def test_create_file_should_write_data_to_file_path$/;" f class:ActionsTest +test_create_mountable_application_with_mountable_option test/generators/plugin_new_generator_test.rb /^ def test_create_mountable_application_with_mountable_option$/;" f class:PluginNewGeneratorTest +test_creates_generator_if_required test/generators/plugin_generator_test.rb /^ def test_creates_generator_if_required$/;" f class:PluginGeneratorTest +test_creates_tasks_if_required test/generators/plugin_generator_test.rb /^ def test_creates_tasks_if_required$/;" f class:PluginGeneratorTest +test_creating_engine_in_full_mode test/generators/plugin_new_generator_test.rb /^ def test_creating_engine_in_full_mode$/;" f class:PluginNewGeneratorTest +test_customized_orm_is_used test/generators/scaffold_controller_generator_test.rb /^ def test_customized_orm_is_used$/;" f +test_database_entry_is_assed_by_default_in_full_mode test/generators/plugin_new_generator_test.rb /^ def test_database_entry_is_assed_by_default_in_full_mode$/;" f class:PluginNewGeneratorTest +test_default_banner_should_not_show_rails_generator_namespace test/generators_test.rb /^ def test_default_banner_should_not_show_rails_generator_namespace$/;" f class:GeneratorsTest +test_default_banner_should_show_generator_namespace test/generators_test.rb /^ def test_default_banner_should_show_generator_namespace$/;" f class:GeneratorsTest +test_default_namespace test/generators/app_generator_test.rb /^ def test_default_namespace$/;" f +test_default_orm_is_used test/generators/scaffold_controller_generator_test.rb /^ def test_default_orm_is_used$/;" f +test_default_usage test/generators/app_generator_test.rb /^ def test_default_usage$/;" f +test_default_value_is_boolean test/generators/generated_attribute_test.rb /^ def test_default_value_is_boolean$/;" f class:GeneratedAttributeTest +test_default_value_is_date test/generators/generated_attribute_test.rb /^ def test_default_value_is_date$/;" f class:GeneratedAttributeTest +test_default_value_is_datetime test/generators/generated_attribute_test.rb /^ def test_default_value_is_datetime$/;" f class:GeneratedAttributeTest +test_default_value_is_decimal test/generators/generated_attribute_test.rb /^ def test_default_value_is_decimal$/;" f class:GeneratedAttributeTest +test_default_value_is_empty_string test/generators/generated_attribute_test.rb /^ def test_default_value_is_empty_string$/;" f class:GeneratedAttributeTest +test_default_value_is_float test/generators/generated_attribute_test.rb /^ def test_default_value_is_float$/;" f class:GeneratedAttributeTest +test_default_value_is_integer test/generators/generated_attribute_test.rb /^ def test_default_value_is_integer$/;" f class:GeneratedAttributeTest +test_default_value_is_nil test/generators/generated_attribute_test.rb /^ def test_default_value_is_nil$/;" f class:GeneratedAttributeTest +test_default_value_is_string test/generators/generated_attribute_test.rb /^ def test_default_value_is_string$/;" f class:GeneratedAttributeTest +test_default_value_is_text test/generators/generated_attribute_test.rb /^ def test_default_value_is_text$/;" f class:GeneratedAttributeTest +test_deprecation test/generators/plugin_generator_test.rb /^ def test_deprecation$/;" f class:PluginGeneratorTest +test_descendants_are_cleaned_on_each_request_without_cache_classes test/application/loading_test.rb /^ def test_descendants_are_cleaned_on_each_request_without_cache_classes$/;" f +test_dev_option test/generators/shared_generator_tests.rb /^ def test_dev_option$/;" f class:SharedGeneratorTests +test_developer_options_are_overwriten_by_user_options test/generators_test.rb /^ def test_developer_options_are_overwriten_by_user_options$/;" f class:GeneratorsTest +test_does_not_invoke_helper_if_required test/generators/controller_generator_test.rb /^ def test_does_not_invoke_helper_if_required$/;" f class:ControllerGeneratorTest +test_does_not_invoke_test_framework_if_required test/generators/controller_generator_test.rb /^ def test_does_not_invoke_test_framework_if_required$/;" f class:ControllerGeneratorTest +test_dummy_clean lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def test_dummy_clean$/;" f class:Rails.PluginBuilder +test_dummy_config lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def test_dummy_config$/;" f class:Rails.PluginBuilder +test_edge_option test/generators/shared_generator_tests.rb /^ def test_edge_option$/;" f class:SharedGeneratorTests +test_ensure_that_database_option_is_passed_to_app_generator test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_database_option_is_passed_to_app_generator$/;" f class:PluginNewGeneratorTest +test_ensure_that_javascript_option_is_passed_to_app_generator test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_javascript_option_is_passed_to_app_generator$/;" f class:PluginNewGeneratorTest +test_ensure_that_plugin_options_are_not_passed_to_app_generator test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_plugin_options_are_not_passed_to_app_generator$/;" f class:PluginNewGeneratorTest +test_ensure_that_skip_active_record_option_is_passed_to_app_generator test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_skip_active_record_option_is_passed_to_app_generator$/;" f class:PluginNewGeneratorTest +test_ensure_that_skip_javascript_option_is_passed_to_app_generator test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_skip_javascript_option_is_passed_to_app_generator$/;" f class:PluginNewGeneratorTest +test_ensure_that_test_dummy_can_be_generated_from_a_template test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_test_dummy_can_be_generated_from_a_template$/;" f class:PluginNewGeneratorTest +test_ensure_that_tests_works test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_tests_works$/;" f class:PluginNewGeneratorTest +test_ensure_that_tests_works_in_full_mode test/generators/plugin_new_generator_test.rb /^ def test_ensure_that_tests_works_in_full_mode$/;" f class:PluginNewGeneratorTest +test_environment_is_required_in_rake_tasks test/application/rake_test.rb /^ def test_environment_is_required_in_rake_tasks$/;" f class:ApplicationTests.RakeTest +test_environment_should_include_data_in_environment_initializer_block test/generators/actions_test.rb /^ def test_environment_should_include_data_in_environment_initializer_block$/;" f class:ActionsTest +test_environment_with_block_should_include_block_contents_in_environment_initializer_block test/generators/actions_test.rb /^ def test_environment_with_block_should_include_block_contents_in_environment_initializer_block$/;" f class:ActionsTest +test_existing_migration_is_removed_on_force test/generators/model_generator_test.rb /^ def test_existing_migration_is_removed_on_force$/;" f +test_fallbacks_for_generators_on_find_by_namespace test/generators_test.rb /^ def test_fallbacks_for_generators_on_find_by_namespace$/;" f class:GeneratorsTest +test_fallbacks_for_generators_on_find_by_namespace_with_context test/generators_test.rb /^ def test_fallbacks_for_generators_on_find_by_namespace_with_context$/;" f class:GeneratorsTest +test_fallbacks_for_generators_on_invoke test/generators_test.rb /^ def test_fallbacks_for_generators_on_invoke$/;" f class:GeneratorsTest +test_field_type_returns_check_box test/generators/generated_attribute_test.rb /^ def test_field_type_returns_check_box$/;" f class:GeneratedAttributeTest +test_field_type_returns_date_select test/generators/generated_attribute_test.rb /^ def test_field_type_returns_date_select$/;" f class:GeneratedAttributeTest +test_field_type_returns_datetime_select test/generators/generated_attribute_test.rb /^ def test_field_type_returns_datetime_select$/;" f class:GeneratedAttributeTest +test_field_type_returns_text_area test/generators/generated_attribute_test.rb /^ def test_field_type_returns_text_area$/;" f class:GeneratedAttributeTest +test_field_type_returns_text_field test/generators/generated_attribute_test.rb /^ def test_field_type_returns_text_field$/;" f class:GeneratedAttributeTest +test_field_type_returns_time_select test/generators/generated_attribute_test.rb /^ def test_field_type_returns_time_select$/;" f class:GeneratedAttributeTest +test_field_type_with_unknown_type_returns_text_field test/generators/generated_attribute_test.rb /^ def test_field_type_with_unknown_type_returns_text_field$/;" f class:GeneratedAttributeTest +test_file_is_added_for_backwards_compatibility test/generators/app_generator_test.rb /^ def test_file_is_added_for_backwards_compatibility$/;" f +test_files_from_inherited_invocation test/generators/resource_generator_test.rb /^ def test_files_from_inherited_invocation$/;" f class:ResourceGeneratorTest +test_find_by_namespace test/generators_test.rb /^ def test_find_by_namespace$/;" f class:GeneratorsTest +test_find_by_namespace_in_subfolder test/generators_test.rb /^ def test_find_by_namespace_in_subfolder$/;" f class:GeneratorsTest +test_find_by_namespace_show_warning_if_generator_cant_be_loaded test/generators_test.rb /^ def test_find_by_namespace_show_warning_if_generator_cant_be_loaded$/;" f class:GeneratorsTest +test_find_by_namespace_with_base test/generators_test.rb /^ def test_find_by_namespace_with_base$/;" f class:GeneratorsTest +test_find_by_namespace_with_context test/generators_test.rb /^ def test_find_by_namespace_with_context$/;" f class:GeneratorsTest +test_find_by_namespace_with_duplicated_name test/generators_test.rb /^ def test_find_by_namespace_with_duplicated_name$/;" f class:GeneratorsTest +test_find_by_namespace_with_generator_on_root test/generators_test.rb /^ def test_find_by_namespace_with_generator_on_root$/;" f class:GeneratorsTest +test_find_by_namespace_without_base_or_context_looks_into_rails_namespace test/generators_test.rb /^ def test_find_by_namespace_without_base_or_context_looks_into_rails_namespace$/;" f class:GeneratorsTest +test_fixture_is_skipped test/generators/model_generator_test.rb /^ def test_fixture_is_skipped$/;" f +test_fixture_is_skipped_if_fixture_replacement_is_given test/generators/model_generator_test.rb /^ def test_fixture_is_skipped_if_fixture_replacement_is_given$/;" f +test_framework_version test/rails_info_test.rb /^ def test_framework_version$/;" f class:InfoTest +test_frameworks_exist test/rails_info_test.rb /^ def test_frameworks_exist$/;" f class:InfoTest +test_functional_tests test/generators/scaffold_controller_generator_test.rb /^ def test_functional_tests$/;" f +test_gem_should_insert_on_separate_lines test/generators/actions_test.rb /^ def test_gem_should_insert_on_separate_lines$/;" f class:ActionsTest +test_gem_should_put_gem_dependency_in_gemfile test/generators/actions_test.rb /^ def test_gem_should_put_gem_dependency_in_gemfile$/;" f class:ActionsTest +test_gem_with_version_should_include_version_in_gemfile test/generators/actions_test.rb /^ def test_gem_with_version_should_include_version_in_gemfile$/;" f class:ActionsTest +test_gems_tasks_are_loaded_first_than_application_ones test/application/rake_test.rb /^ def test_gems_tasks_are_loaded_first_than_application_ones$/;" f class:ApplicationTests.RakeTest +test_generate_should_run_script_generate_with_argument_and_options test/generators/actions_test.rb /^ def test_generate_should_run_script_generate_with_argument_and_options$/;" f class:ActionsTest +test_generating_test_files test/generators/plugin_new_generator_test.rb /^ def test_generating_test_files$/;" f class:PluginNewGeneratorTest +test_generating_test_files_in_full_mode test/generators/plugin_new_generator_test.rb /^ def test_generating_test_files_in_full_mode$/;" f class:PluginNewGeneratorTest +test_generator_if_skip_active_record_is_given test/generators/app_generator_test.rb /^ def test_generator_if_skip_active_record_is_given$/;" f class:AppGeneratorTest +test_generator_skeleton_is_created test/generators/generator_generator_test.rb /^ def test_generator_skeleton_is_created$/;" f class:GeneratorGeneratorTest +test_generator_skeleton_is_created_without_file_name_namespace test/generators/generator_generator_test.rb /^ def test_generator_skeleton_is_created_without_file_name_namespace$/;" f class:GeneratorGeneratorTest +test_git_with_hash_should_run_each_command_using_git_scm test/generators/actions_test.rb /^ def test_git_with_hash_should_run_each_command_using_git_scm$/;" f class:ActionsTest +test_git_with_symbol_should_run_command_using_git_scm test/generators/actions_test.rb /^ def test_git_with_symbol_should_run_command_using_git_scm$/;" f class:ActionsTest +test_help.rb lib/rails/test_help.rb 1;" F +test_help_does_not_show_invoked_generators_options_if_they_already_exist test/generators/controller_generator_test.rb /^ def test_help_does_not_show_invoked_generators_options_if_they_already_exist$/;" f class:ControllerGeneratorTest +test_help_shows_invoked_generators_options test/generators/model_generator_test.rb /^ def test_help_shows_invoked_generators_options$/;" f class:ModelGeneratorTest +test_help_when_a_generator_with_required_arguments_is_invoked_without_arguments test/generators_test.rb /^ def test_help_when_a_generator_with_required_arguments_is_invoked_without_arguments$/;" f class:GeneratorsTest +test_help_with_inherited_options test/generators/resource_generator_test.rb /^ def test_help_with_inherited_options$/;" f class:ResourceGeneratorTest +test_helper.rb lib/rails/generators/rails/plugin_new/templates/test/test_helper.rb 1;" F +test_helper.rb lib/rails/generators/test_unit/plugin/templates/test_helper.rb 1;" F +test_helper.rb tmp/app/test/test_helper.rb 1;" F +test_helper.rb tmp/app_template/test/test_helper.rb 1;" F +test_helper_are_invoked_with_a_pluralized_name test/generators/scaffold_controller_generator_test.rb /^ def test_helper_are_invoked_with_a_pluralized_name$/;" f +test_helper_skeleton_is_created test/generators/helper_generator_test.rb /^ def test_helper_skeleton_is_created$/;" f class:HelperGeneratorTest +test_helpr_is_also_namespaced test/generators/namespaced_generators_test.rb /^ def test_helpr_is_also_namespaced$/;" f class:NamespacedControllerGeneratorTest +test_homepage lib/rails/generators/rails/app/templates/test/performance/browsing_test.rb /^ def test_homepage$/;" f class:BrowsingTest +test_homepage lib/rails/generators/test_unit/performance/templates/performance_test.rb /^ def test_homepage$/;" f +test_homepage tmp/app/test/performance/browsing_test.rb /^ def test_homepage$/;" f class:BrowsingTest +test_homepage tmp/app_template/test/performance/browsing_test.rb /^ def test_homepage$/;" f class:BrowsingTest +test_html_includes_middleware test/rails_info_test.rb /^ def test_html_includes_middleware$/;" f class:InfoTest +test_human_name test/generators/generated_attribute_test.rb /^ def test_human_name$/;" f class:GeneratedAttributeTest +test_i18n_files_have_lower_priority_than_application_ones test/railties/shared_tests.rb /^ def test_i18n_files_have_lower_priority_than_application_ones$/;" f class:RailtiesTest +test_index test/application/test_test.rb /^ def test_index$/;" f class:PostsTest +test_index_helper test/generators/named_base_test.rb /^ def test_index_helper$/;" f class:NamedBaseTest +test_index_helper_with_uncountable test/generators/named_base_test.rb /^ def test_index_helper_with_uncountable$/;" f class:NamedBaseTest +test_inherited_invocations_with_attributes test/generators/resource_generator_test.rb /^ def test_inherited_invocations_with_attributes$/;" f class:ResourceGeneratorTest +test_initializer_should_write_date_to_file_in_config_initializers test/generators/actions_test.rb /^ def test_initializer_should_write_date_to_file_in_config_initializers$/;" f class:ActionsTest +test_initializers test/railties/shared_tests.rb /^ def test_initializers$/;" f class:RailtiesTest +test_initializers_are_executed_in_rake_tasks test/application/rake_test.rb /^ def test_initializers_are_executed_in_rake_tasks$/;" f class:ApplicationTests.RakeTest +test_install_migrations_and_assets test/railties/shared_tests.rb /^ def test_install_migrations_and_assets$/;" f class:RailtiesTest.SharedTests +test_integration_test_skeleton_is_created test/generators/integration_test_generator_test.rb /^ def test_integration_test_skeleton_is_created$/;" f class:IntegrationTestGeneratorTest +test_invalid_application_name_is_fixed test/generators/app_generator_test.rb /^ def test_invalid_application_name_is_fixed$/;" f class:AppGeneratorTest +test_invalid_application_name_raises_an_error test/generators/app_generator_test.rb /^ def test_invalid_application_name_raises_an_error$/;" f class:AppGeneratorTest +test_invalid_database_option_raises_an_error test/generators/shared_generator_tests.rb /^ def test_invalid_database_option_raises_an_error$/;" f class:SharedGeneratorTests +test_invalid_plugin_name_is_fixed test/generators/plugin_new_generator_test.rb /^ def test_invalid_plugin_name_is_fixed$/;" f class:PluginNewGeneratorTest +test_invalid_plugin_name_raises_an_error test/generators/plugin_new_generator_test.rb /^ def test_invalid_plugin_name_raises_an_error$/;" f class:PluginNewGeneratorTest +test_invoke_other_generator_with_full_namespace test/generators/actions_test.rb /^ def test_invoke_other_generator_with_full_namespace$/;" f class:ActionsTest +test_invoke_other_generator_with_shortcut test/generators/actions_test.rb /^ def test_invoke_other_generator_with_shortcut$/;" f class:ActionsTest +test_invoke_when_generator_is_not_found test/generators_test.rb /^ def test_invoke_when_generator_is_not_found$/;" f class:GeneratorsTest +test_invoke_with_config_values test/generators_test.rb /^ def test_invoke_with_config_values$/;" f class:GeneratorsTest +test_invoke_with_default_values test/generators_test.rb /^ def test_invoke_with_default_values$/;" f class:GeneratorsTest +test_invoke_with_nested_namespaces test/generators_test.rb /^ def test_invoke_with_nested_namespaces$/;" f class:GeneratorsTest +test_invokes_default_orm test/generators/model_generator_test.rb /^ def test_invokes_default_orm$/;" f class:ModelGeneratorTest +test_invokes_default_orm test/generators/namespaced_generators_test.rb /^ def test_invokes_default_orm$/;" f class:NamespacedObserverGeneratorTest +test_invokes_default_orm test/generators/observer_generator_test.rb /^ def test_invokes_default_orm$/;" f class:ObserverGeneratorTest +test_invokes_default_orm_with_class_path test/generators/namespaced_generators_test.rb /^ def test_invokes_default_orm_with_class_path$/;" f class:NamespacedObserverGeneratorTest +test_invokes_default_orm_with_class_path test/generators/observer_generator_test.rb /^ def test_invokes_default_orm_with_class_path$/;" f class:ObserverGeneratorTest +test_invokes_default_template_engine test/generators/controller_generator_test.rb /^ def test_invokes_default_template_engine$/;" f class:ControllerGeneratorTest +test_invokes_default_template_engine test/generators/mailer_generator_test.rb /^ def test_invokes_default_template_engine$/;" f +test_invokes_default_template_engine test/generators/namespaced_generators_test.rb /^ def test_invokes_default_template_engine$/;" f +test_invokes_default_template_engine test/generators/namespaced_generators_test.rb /^ def test_invokes_default_template_engine$/;" f class:NamespacedControllerGeneratorTest +test_invokes_default_template_engine_even_with_no_action test/generators/controller_generator_test.rb /^ def test_invokes_default_template_engine_even_with_no_action$/;" f class:ControllerGeneratorTest +test_invokes_default_template_engine_even_with_no_action test/generators/mailer_generator_test.rb /^ def test_invokes_default_template_engine_even_with_no_action$/;" f +test_invokes_default_template_engine_even_with_no_action test/generators/namespaced_generators_test.rb /^ def test_invokes_default_template_engine_even_with_no_action$/;" f +test_invokes_default_template_engine_even_with_no_action test/generators/namespaced_generators_test.rb /^ def test_invokes_default_template_engine_even_with_no_action$/;" f class:NamespacedControllerGeneratorTest +test_invokes_default_test_framework test/generators/controller_generator_test.rb /^ def test_invokes_default_test_framework$/;" f class:ControllerGeneratorTest +test_invokes_default_test_framework test/generators/helper_generator_test.rb /^ def test_invokes_default_test_framework$/;" f class:HelperGeneratorTest +test_invokes_default_test_framework test/generators/mailer_generator_test.rb /^ def test_invokes_default_test_framework$/;" f +test_invokes_default_test_framework test/generators/model_generator_test.rb /^ def test_invokes_default_test_framework$/;" f +test_invokes_default_test_framework test/generators/namespaced_generators_test.rb /^ def test_invokes_default_test_framework$/;" f +test_invokes_default_test_framework test/generators/namespaced_generators_test.rb /^ def test_invokes_default_test_framework$/;" f class:NamespacedControllerGeneratorTest +test_invokes_default_test_framework test/generators/namespaced_generators_test.rb /^ def test_invokes_default_test_framework$/;" f class:NamespacedModelGeneratorTest +test_invokes_default_test_framework test/generators/namespaced_generators_test.rb /^ def test_invokes_default_test_framework$/;" f class:NamespacedObserverGeneratorTest +test_invokes_default_test_framework test/generators/observer_generator_test.rb /^ def test_invokes_default_test_framework$/;" f class:ObserverGeneratorTest +test_invokes_default_test_framework test/generators/plugin_generator_test.rb /^ def test_invokes_default_test_framework$/;" f class:PluginGeneratorTest +test_invokes_helper test/generators/controller_generator_test.rb /^ def test_invokes_helper$/;" f class:ControllerGeneratorTest +test_javascript_is_skipped_if_required test/generators/app_generator_test.rb /^ def test_javascript_is_skipped_if_required$/;" f +test_javascripts_generation test/generators/plugin_new_generator_test.rb /^ def test_javascripts_generation$/;" f class:PluginNewGeneratorTest +test_lib_should_write_data_to_file_in_lib test/generators/actions_test.rb /^ def test_lib_should_write_data_to_file_in_lib$/;" f class:ActionsTest +test_load_generators_from_railties test/generators_test.rb /^ def test_load_generators_from_railties$/;" f class:GeneratorsTest +test_logs_if_the_template_engine_cannot_be_found test/generators/mailer_generator_test.rb /^ def test_logs_if_the_template_engine_cannot_be_found$/;" f +test_logs_if_the_test_framework_cannot_be_found test/generators/helper_generator_test.rb /^ def test_logs_if_the_test_framework_cannot_be_found$/;" f class:HelperGeneratorTest +test_logs_if_the_test_framework_cannot_be_found test/generators/observer_generator_test.rb /^ def test_logs_if_the_test_framework_cannot_be_found$/;" f class:ObserverGeneratorTest +test_logs_if_the_test_framework_cannot_be_found test/generators/plugin_generator_test.rb /^ def test_logs_if_the_test_framework_cannot_be_found$/;" f class:PluginGeneratorTest +test_mailer_skeleton_is_created test/generators/mailer_generator_test.rb /^ def test_mailer_skeleton_is_created$/;" f class:MailerGeneratorTest +test_mailer_skeleton_is_created test/generators/namespaced_generators_test.rb /^ def test_mailer_skeleton_is_created$/;" f class:NamespacedMailerGeneratorTest +test_mailer_with_i18n_helper test/generators/mailer_generator_test.rb /^ def test_mailer_with_i18n_helper$/;" f +test_mailer_with_i18n_helper test/generators/namespaced_generators_test.rb /^ def test_mailer_with_i18n_helper$/;" f +test_mailer_with_namedspaced_mailer test/generators/mailer_generator_test.rb /^ def test_mailer_with_namedspaced_mailer$/;" f +test_mass_nouns_do_not_throw_warnings test/generators/resource_generator_test.rb /^ def test_mass_nouns_do_not_throw_warnings$/;" f +test_midleware_referenced_in_configuration test/railties/shared_tests.rb /^ def test_midleware_referenced_in_configuration$/;" f class:RailtiesTest +test_migration test/generators/migration_generator_test.rb /^ def test_migration$/;" f class:MigrationGeneratorTest +test_migration test/generators/model_generator_test.rb /^ def test_migration$/;" f class:ModelGeneratorTest +test_migration test/generators/namespaced_generators_test.rb /^ def test_migration$/;" f class:NamespacedModelGeneratorTest +test_migration_error_is_not_shown_on_revoke test/generators/model_generator_test.rb /^ def test_migration_error_is_not_shown_on_revoke$/;" f +test_migration_is_ignored_as_identical_with_skip_option test/generators/model_generator_test.rb /^ def test_migration_is_ignored_as_identical_with_skip_option$/;" f +test_migration_is_removed_on_revoke test/generators/model_generator_test.rb /^ def test_migration_is_removed_on_revoke$/;" f +test_migration_is_skipped test/generators/model_generator_test.rb /^ def test_migration_is_skipped$/;" f class:ModelGeneratorTest +test_migration_is_skipped_on_skip_behavior test/generators/model_generator_test.rb /^ def test_migration_is_skipped_on_skip_behavior$/;" f +test_migration_is_skipped_with_skip_option test/generators/model_generator_test.rb /^ def test_migration_is_skipped_with_skip_option$/;" f +test_migration_timestamps_are_skipped test/generators/model_generator_test.rb /^ def test_migration_timestamps_are_skipped$/;" f +test_migration_with_attributes test/generators/model_generator_test.rb /^ def test_migration_with_attributes$/;" f class:ModelGeneratorTest +test_migration_with_class_name test/generators/migration_generator_test.rb /^ def test_migration_with_class_name$/;" f class:MigrationGeneratorTest +test_migration_with_namespace test/generators/model_generator_test.rb /^ def test_migration_with_namespace$/;" f class:ModelGeneratorTest +test_migration_with_namespace test/generators/namespaced_generators_test.rb /^ def test_migration_with_namespace$/;" f class:NamespacedModelGeneratorTest +test_migration_with_namespaces_in_model_name_without_plurization test/generators/model_generator_test.rb /^ def test_migration_with_namespaces_in_model_name_without_plurization$/;" f class:ModelGeneratorTest +test_migration_with_nested_namespace test/generators/model_generator_test.rb /^ def test_migration_with_nested_namespace$/;" f class:ModelGeneratorTest +test_migration_with_nested_namespace test/generators/namespaced_generators_test.rb /^ def test_migration_with_nested_namespace$/;" f class:NamespacedModelGeneratorTest +test_migration_with_nested_namespace_without_pluralization test/generators/model_generator_test.rb /^ def test_migration_with_nested_namespace_without_pluralization$/;" f class:ModelGeneratorTest +test_migration_with_nested_namespace_without_pluralization test/generators/namespaced_generators_test.rb /^ def test_migration_with_nested_namespace_without_pluralization$/;" f class:NamespacedModelGeneratorTest +test_migration_with_timestamps test/generators/model_generator_test.rb /^ def test_migration_with_timestamps$/;" f +test_migration_without_pluralization test/generators/model_generator_test.rb /^ def test_migration_without_pluralization$/;" f class:ModelGeneratorTest +test_migration_without_timestamps test/generators/model_generator_test.rb /^ def test_migration_without_timestamps$/;" f +test_migrations_generated_simultaneously test/generators/migration_generator_test.rb /^ def test_migrations_generated_simultaneously$/;" f class:MigrationGeneratorTest +test_missing_type_raises_exception test/generators/generated_attribute_test.rb /^ def test_missing_type_raises_exception$/;" f class:GeneratedAttributeTest +test_model_and_migration_generator_with_change_syntax test/application/rake_test.rb /^ def test_model_and_migration_generator_with_change_syntax$/;" f class:ApplicationTests +test_model_with_belongs_to_attribute_generates_belongs_to_associations test/generators/model_generator_test.rb /^ def test_model_with_belongs_to_attribute_generates_belongs_to_associations$/;" f +test_model_with_missing_attribute_type test/generators/model_generator_test.rb /^ def test_model_with_missing_attribute_type$/;" f class:ModelGeneratorTest +test_model_with_namespace test/generators/model_generator_test.rb /^ def test_model_with_namespace$/;" f class:ModelGeneratorTest +test_model_with_namespace test/generators/namespaced_generators_test.rb /^ def test_model_with_namespace$/;" f class:NamespacedModelGeneratorTest +test_model_with_parent_option test/generators/model_generator_test.rb /^ def test_model_with_parent_option$/;" f class:ModelGeneratorTest +test_model_with_references_attribute_generates_belongs_to_associations test/generators/model_generator_test.rb /^ def test_model_with_references_attribute_generates_belongs_to_associations$/;" f +test_model_with_underscored_parent_option test/generators/model_generator_test.rb /^ def test_model_with_underscored_parent_option$/;" f class:ModelGeneratorTest +test_models_without_table_do_not_panic_on_scope_definitions_when_loaded test/application/loading_test.rb /^ def test_models_without_table_do_not_panic_on_scope_definitions_when_loaded$/;" f class:LoadingTest +test_module_file_is_not_created test/generators/namespaced_generators_test.rb /^ def test_module_file_is_not_created$/;" f class:NamespacedModelGeneratorTest +test_name_collision_raises_an_error test/generators/shared_generator_tests.rb /^ def test_name_collision_raises_an_error$/;" f class:SharedGeneratorTests +test_name_raises_an_error_if_name_already_used_constant test/generators/shared_generator_tests.rb /^ def test_name_raises_an_error_if_name_already_used_constant$/;" f class:SharedGeneratorTests +test_named_generator_attributes test/generators/named_base_test.rb /^ def test_named_generator_attributes$/;" f class:NamedBaseTest +test_named_generator_attributes_as_ruby test/generators/named_base_test.rb /^ def test_named_generator_attributes_as_ruby$/;" f class:NamedBaseTest +test_named_generator_attributes_without_pluralized test/generators/named_base_test.rb /^ def test_named_generator_attributes_without_pluralized$/;" f class:NamedBaseTest +test_named_generator_with_underscore test/generators/named_base_test.rb /^ def test_named_generator_with_underscore$/;" f class:NamedBaseTest +test_namespaced_and_not_namespaced_helpers test/generators/helper_generator_test.rb /^ def test_namespaced_and_not_namespaced_helpers$/;" f class:HelperGeneratorTest +test_namespaced_controller_skeleton_is_created test/generators/namespaced_generators_test.rb /^ def test_namespaced_controller_skeleton_is_created$/;" f class:NamespacedControllerGeneratorTest +test_namespaced_controller_with_additional_namespace test/generators/namespaced_generators_test.rb /^ def test_namespaced_controller_with_additional_namespace$/;" f class:NamespacedControllerGeneratorTest +test_namespaced_controllers_with_namespaced_routes test/railties/shared_tests.rb /^ def test_namespaced_controllers_with_namespaced_routes$/;" f class:RailtiesTest +test_namespaced_generator_skeleton test/generators/generator_generator_test.rb /^ def test_namespaced_generator_skeleton$/;" f class:GeneratorGeneratorTest +test_namespaced_generator_skeleton_without_file_name_namespace test/generators/generator_generator_test.rb /^ def test_namespaced_generator_skeleton_without_file_name_namespace$/;" f class:GeneratorGeneratorTest +test_nested_fallbacks_for_generators test/generators_test.rb /^ def test_nested_fallbacks_for_generators$/;" f class:GeneratorsTest +test_new_session_should_return_integration_session test/application/console_test.rb /^ def test_new_session_should_return_integration_session$/;" f class:ConsoleTest +test_nil_type_raises_exception test/generators/generated_attribute_test.rb /^ def test_nil_type_raises_exception$/;" f class:GeneratedAttributeTest +test_no_color_sets_proper_shell test/generators_test.rb /^ def test_no_color_sets_proper_shell$/;" f class:GeneratorsTest +test_options_before_application_name_raises_an_error test/generators/shared_generator_tests.rb /^ def test_options_before_application_name_raises_an_error$/;" f class:SharedGeneratorTests +test_overriding_test_framework test/generators/plugin_new_generator_test.rb /^ def test_overriding_test_framework$/;" f class:CustomPluginGeneratorTest +test_passing_dummy_path_as_a_parameter test/generators/plugin_new_generator_test.rb /^ def test_passing_dummy_path_as_a_parameter$/;" f class:PluginNewGeneratorTest +test_performance_test_skeleton_is_created test/generators/performance_test_generator_test.rb /^ def test_performance_test_skeleton_is_created$/;" f class:PerformanceTestGeneratorTest +test_plugin_generator_on_revoke test/generators/plugin_generator_test.rb /^ def test_plugin_generator_on_revoke$/;" f class:PluginGeneratorTest +test_plugin_new_generate_pretend test/generators/shared_generator_tests.rb /^ def test_plugin_new_generate_pretend$/;" f class:SharedGeneratorTests +test_plugin_skeleton_is_created test/generators/plugin_generator_test.rb /^ def test_plugin_skeleton_is_created$/;" f class:PluginGeneratorTest +test_plugin_with_git_option_and_branch_should_run_plugin_install test/generators/actions_test.rb /^ def test_plugin_with_git_option_and_branch_should_run_plugin_install$/;" f class:ActionsTest +test_plugin_with_git_option_and_submodule_should_use_git_scm test/generators/actions_test.rb /^ def test_plugin_with_git_option_and_submodule_should_use_git_scm$/;" f class:ActionsTest +test_plugin_with_git_option_should_run_plugin_install test/generators/actions_test.rb /^ def test_plugin_with_git_option_should_run_plugin_install$/;" f class:ActionsTest +test_plugin_with_no_options_should_skip_method test/generators/actions_test.rb /^ def test_plugin_with_no_options_should_skip_method$/;" f class:ActionsTest +test_plugin_with_svn_option_and_revision_should_run_plugin_install test/generators/actions_test.rb /^ def test_plugin_with_svn_option_and_revision_should_run_plugin_install$/;" f class:ActionsTest +test_plugin_with_svn_option_should_run_plugin_install test/generators/actions_test.rb /^ def test_plugin_with_svn_option_should_run_plugin_install$/;" f class:ActionsTest +test_plural_names_are_singularized test/generators/resource_generator_test.rb /^ def test_plural_names_are_singularized$/;" f +test_plural_names_can_be_forced test/generators/resource_generator_test.rb /^ def test_plural_names_can_be_forced$/;" f +test_property_with_block test/rails_info_test.rb /^ def test_property_with_block$/;" f class:InfoTest +test_property_with_block_swallows_exceptions_and_ignores_property test/rails_info_test.rb /^ def test_property_with_block_swallows_exceptions_and_ignores_property$/;" f class:InfoTest +test_property_with_string test/rails_info_test.rb /^ def test_property_with_string$/;" f class:InfoTest +test_prototype_and_test_unit_are_added_by_default test/generators/app_generator_test.rb /^ def test_prototype_and_test_unit_are_added_by_default$/;" f +test_puts_its_controllers_directory_on_autoload_path test/railties/shared_tests.rb /^ def test_puts_its_controllers_directory_on_autoload_path$/;" f class:RailtiesTest +test_puts_its_lib_directory_on_load_path test/railties/shared_tests.rb /^ def test_puts_its_lib_directory_on_load_path$/;" f class:RailtiesTest +test_puts_its_models_directory_on_autoload_path test/railties/shared_tests.rb /^ def test_puts_its_models_directory_on_autoload_path$/;" f class:RailtiesTest +test_rails_generators_does_not_show_active_record_hooks test/generators_test.rb /^ def test_rails_generators_does_not_show_active_record_hooks$/;" f class:GeneratorsTest +test_rails_generators_help_does_not_include_app_nor_plugin_new test/generators_test.rb /^ def test_rails_generators_help_does_not_include_app_nor_plugin_new$/;" f class:GeneratorsTest +test_rails_generators_help_with_builtin_information test/generators_test.rb /^ def test_rails_generators_help_with_builtin_information$/;" f class:GeneratorsTest +test_rails_generators_with_others_information test/generators_test.rb /^ def test_rails_generators_with_others_information$/;" f class:GeneratorsTest +test_rails_root_templates test/generators_test.rb /^ def test_rails_root_templates$/;" f class:GeneratorsTest +test_rails_update_generates_correct_session_key test/generators/app_generator_test.rb /^ def test_rails_update_generates_correct_session_key$/;" f class:AppGeneratorTest +test_rake_routes_output_strips_anchors_from_http_verbs test/application/rake_test.rb /^ def test_rake_routes_output_strips_anchors_from_http_verbs$/;" f class:ApplicationTests +test_rake_should_run_rake_command_with_development_env test/generators/actions_test.rb /^ def test_rake_should_run_rake_command_with_development_env$/;" f class:ActionsTest +test_rake_tasks_lib_tasks_are_loaded test/railties/shared_tests.rb /^ def test_rake_tasks_lib_tasks_are_loaded$/;" f class:RailtiesTest +test_rake_with_env_option_should_run_rake_command_in_env test/generators/actions_test.rb /^ def test_rake_with_env_option_should_run_rake_command_in_env$/;" f class:ActionsTest +test_rake_with_sudo_option_should_run_rake_command_with_sudo test/generators/actions_test.rb /^ def test_rake_with_sudo_option_should_run_rake_command_with_sudo$/;" f class:ActionsTest +test_rakefile_should_write_date_to_file_in_lib_tasks test/generators/actions_test.rb /^ def test_rakefile_should_write_date_to_file_in_lib_tasks$/;" f class:ActionsTest +test_readme test/generators/actions_test.rb /^ def test_readme$/;" f class:ActionsTest +test_reference_is_false test/generators/generated_attribute_test.rb /^ def test_reference_is_false$/;" f class:GeneratedAttributeTest +test_reference_is_true test/generators/generated_attribute_test.rb /^ def test_reference_is_true$/;" f class:GeneratedAttributeTest +test_reload_should_fire_preparation_and_cleanup_callbacks test/application/console_test.rb /^ def test_reload_should_fire_preparation_and_cleanup_callbacks$/;" f class:ConsoleTest +test_reload_should_reload_constants test/application/console_test.rb /^ def test_reload_should_reload_constants$/;" f class:ConsoleTest +test_remove_migration_with_attributes test/generators/migration_generator_test.rb /^ def test_remove_migration_with_attributes$/;" f +test_resource_controller_with_actions test/generators/resource_generator_test.rb /^ def test_resource_controller_with_actions$/;" f class:ResourceGeneratorTest +test_resource_controller_with_pluralized_class_name test/generators/resource_generator_test.rb /^ def test_resource_controller_with_pluralized_class_name$/;" f class:ResourceGeneratorTest +test_resource_routes_are_added test/generators/resource_generator_test.rb /^ def test_resource_routes_are_added$/;" f +test_route_is_removed_on_revoke test/generators/resource_generator_test.rb /^ def test_route_is_removed_on_revoke$/;" f +test_route_should_add_data_to_the_routes_block_in_config_routes test/generators/actions_test.rb /^ def test_route_should_add_data_to_the_routes_block_in_config_routes$/;" f class:ActionsTest +test_routes_are_added_to_router test/railties/shared_tests.rb /^ def test_routes_are_added_to_router$/;" f class:RailtiesTest +test_routes_in_plugins_have_lower_priority_than_application_ones test/railties/shared_tests.rb /^ def test_routes_in_plugins_have_lower_priority_than_application_ones$/;" f class:RailtiesTest +test_routes_should_not_be_namespaced test/generators/namespaced_generators_test.rb /^ def test_routes_should_not_be_namespaced$/;" f class:NamespacedControllerGeneratorTest +test_scaffold_generator_on_revoke_does_not_mutilate_legacy_map_parameter test/generators/scaffold_generator_test.rb /^ def test_scaffold_generator_on_revoke_does_not_mutilate_legacy_map_parameter$/;" f +test_scaffold_generator_outputs_error_message_on_missing_attribute_type test/generators/scaffold_generator_test.rb /^ def test_scaffold_generator_outputs_error_message_on_missing_attribute_type$/;" f +test_scaffold_on_invoke test/generators/namespaced_generators_test.rb /^ def test_scaffold_on_invoke$/;" f class:NamespacedScaffoldGeneratorTest +test_scaffold_on_invoke test/generators/scaffold_generator_test.rb /^ def test_scaffold_on_invoke$/;" f class:ScaffoldGeneratorTest +test_scaffold_on_revoke test/generators/namespaced_generators_test.rb /^ def test_scaffold_on_revoke$/;" f +test_scaffold_on_revoke test/generators/scaffold_generator_test.rb /^ def test_scaffold_on_revoke$/;" f +test_scaffold_plural_names test/generators/named_base_test.rb /^ def test_scaffold_plural_names$/;" f class:NamedBaseTest +test_scaffold_plural_names_as_ruby test/generators/named_base_test.rb /^ def test_scaffold_plural_names_as_ruby$/;" f class:NamedBaseTest +test_scaffold_with_namespace_on_invoke test/generators/namespaced_generators_test.rb /^ def test_scaffold_with_namespace_on_invoke$/;" f +test_scaffold_with_namespace_on_invoke test/generators/scaffold_generator_test.rb /^ def test_scaffold_with_namespace_on_invoke$/;" f +test_scaffold_with_namespace_on_revoke test/generators/namespaced_generators_test.rb /^ def test_scaffold_with_namespace_on_revoke$/;" f +test_scaffold_with_namespace_on_revoke test/generators/scaffold_generator_test.rb /^ def test_scaffold_with_namespace_on_revoke$/;" f +test_session_migration_with_custom_table_name test/generators/session_migration_generator_test.rb /^ def test_session_migration_with_custom_table_name$/;" f class:SessionMigrationGeneratorTest +test_session_migration_with_default_name test/generators/session_migration_generator_test.rb /^ def test_session_migration_with_default_name$/;" f class:SessionMigrationGeneratorTest +test_session_migration_with_given_name test/generators/session_migration_generator_test.rb /^ def test_session_migration_with_given_name$/;" f class:SessionMigrationGeneratorTest +test_shebang_is_added_to_rails_file test/generators/shared_generator_tests.rb /^ def test_shebang_is_added_to_rails_file$/;" f class:SharedGeneratorTests +test_shebang_when_is_the_same_as_default_use_env test/generators/shared_generator_tests.rb /^ def test_shebang_when_is_the_same_as_default_use_env$/;" f class:SharedGeneratorTests +test_should_create_empty_migrations_if_name_not_start_with_add_or_remove test/generators/migration_generator_test.rb /^ def test_should_create_empty_migrations_if_name_not_start_with_add_or_remove$/;" f +test_should_give_higher_preference_to_rails_generators test/generators_test.rb /^ def test_should_give_higher_preference_to_rails_generators$/;" f class:GeneratorsTest +test_should_include_runner_in_shebang_line_in_help test/application/runner_test.rb /^ def test_should_include_runner_in_shebang_line_in_help$/;" f class:ApplicationTests.RunnerTest +test_should_run_file test/application/runner_test.rb /^ def test_should_run_file$/;" f class:ApplicationTests.RunnerTest +test_should_run_ruby_statement test/application/runner_test.rb /^ def test_should_run_ruby_statement$/;" f class:ApplicationTests.RunnerTest +test_should_set_dollar_0_to_file test/application/runner_test.rb /^ def test_should_set_dollar_0_to_file$/;" f class:ApplicationTests.RunnerTest +test_should_set_dollar_program_name_to_file test/application/runner_test.rb /^ def test_should_set_dollar_program_name_to_file$/;" f class:ApplicationTests.RunnerTest +test_simple_invoke test/generators_test.rb /^ def test_simple_invoke$/;" f class:GeneratorsTest +test_skeleton_is_created test/generators/shared_generator_tests.rb /^ def test_skeleton_is_created$/;" f class:SharedGeneratorTests +test_skip_helper_if_required test/generators/scaffold_controller_generator_test.rb /^ def test_skip_helper_if_required$/;" f +test_skip_javascripts test/generators/plugin_new_generator_test.rb /^ def test_skip_javascripts$/;" f class:PluginNewGeneratorTest +test_skip_layout_if_required test/generators/scaffold_controller_generator_test.rb /^ def test_skip_layout_if_required$/;" f +test_skipping_gemspec test/generators/plugin_new_generator_test.rb /^ def test_skipping_gemspec$/;" f class:PluginNewGeneratorTest +test_skipping_javascripts_without_mountable_option test/generators/plugin_new_generator_test.rb /^ def test_skipping_javascripts_without_mountable_option$/;" f class:PluginNewGeneratorTest +test_skipping_namespace test/generators/namespaced_generators_test.rb /^ def test_skipping_namespace$/;" f class:NamespacedControllerGeneratorTest +test_source_paths_for_not_namespaced_generators test/generators_test.rb /^ def test_source_paths_for_not_namespaced_generators$/;" f +test_stylesheets_are_not_deleted_on_revoke test/generators/stylesheets_generator_test.rb /^ def test_stylesheets_are_not_deleted_on_revoke$/;" f class:StylesheetsGeneratorTest +test_template_engine_with_class_path test/generators/controller_generator_test.rb /^ def test_template_engine_with_class_path$/;" f class:ControllerGeneratorTest +test_template_from_dir_pwd test/generators/app_generator_test.rb /^ def test_template_from_dir_pwd$/;" f +test_template_from_dir_pwd test/generators/plugin_new_generator_test.rb /^ def test_template_from_dir_pwd$/;" f class:PluginNewGeneratorTest +test_template_is_executed_when_supplied test/generators/shared_generator_tests.rb /^ def test_template_is_executed_when_supplied$/;" f class:SharedGeneratorTests +test_template_is_executed_when_supplied_an_https_path test/generators/shared_generator_tests.rb /^ def test_template_is_executed_when_supplied_an_https_path$/;" f class:SharedGeneratorTests +test_template_raises_an_error_with_invalid_path test/generators/shared_generator_tests.rb /^ def test_template_raises_an_error_with_invalid_path$/;" f class:SharedGeneratorTests +test_test.rb test/application/test_test.rb 1;" F +test_test_unit_is_removed_from_frameworks_if_skip_test_unit_is_given test/generators/app_generator_test.rb /^ def test_test_unit_is_removed_from_frameworks_if_skip_test_unit_is_given$/;" f +test_test_unit_is_skipped_if_required test/generators/shared_generator_tests.rb /^ def test_test_unit_is_skipped_if_required$/;" f class:SharedGeneratorTests +test_truth test/application/test_test.rb /^ def test_truth$/;" f class:ApplicationTests.FooTest +test_truth test/application/test_test.rb /^ def test_truth$/;" f class:ApplicationTests.TestTest.FooTest +test_unit.rb lib/rails/generators/test_unit.rb 1;" F +test_usage_read_from_file test/generators/app_generator_test.rb /^ def test_usage_read_from_file$/;" f +test_vendor_should_write_data_to_file_in_vendor test/generators/actions_test.rb /^ def test_vendor_should_write_data_to_file_in_vendor$/;" f class:ActionsTest +test_views_are_generated test/generators/scaffold_controller_generator_test.rb /^ def test_views_are_generated$/;" f +tests lib/rails/generators/test_case.rb /^ def self.tests(klass)$/;" F class:Rails.Generators.TestCase +textile guides/rails_guides/generator.rb /^ def textile(body, lite_mode=false)$/;" f class:RailsGuides.Generator +textile_extensions.rb guides/rails_guides/textile_extensions.rb 1;" F +threadsafe! lib/rails/application/configuration.rb /^ def threadsafe!$/;" f class:Rails.Application.Configuration +tip guides/rails_guides/textile_extensions.rb /^ def tip(body)$/;" f class:RailsGuides.TextileExtensions +title_to_idx guides/rails_guides/indexer.rb /^ def title_to_idx(title)$/;" f class:RailsGuides.Indexer +tmp lib/rails/generators/rails/app/app_generator.rb /^ def tmp$/;" f +tmp_path test/isolation/abstract_unit.rb /^ def tmp_path(*args)$/;" f class:TestHelpers.Paths +toHTML lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function toHTML(object) {$/;" f +toHTML tmp/app/public/javascripts/prototype.js /^ function toHTML(object) {$/;" f +toHTML tmp/app_template/public/javascripts/prototype.js /^ function toHTML(object) {$/;" f +toJSON lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function toJSON(value) {$/;" f +toJSON tmp/app/public/javascripts/prototype.js /^ function toJSON(value) {$/;" f +toJSON tmp/app_template/public/javascripts/prototype.js /^ function toJSON(value) {$/;" f +toQueryString lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function toQueryString(object) {$/;" f +toQueryString tmp/app/public/javascripts/prototype.js /^ function toQueryString(object) {$/;" f +toQueryString tmp/app_template/public/javascripts/prototype.js /^ function toQueryString(object) {$/;" f +to_html lib/rails/info.rb /^ def to_html$/;" f class:Rails +to_param test/railties/engine_test.rb /^ def to_param$/;" f class:Bukkits.Post +to_param test/railties/mounted_engine_test.rb /^ def to_param$/;" f class:ApplicationTests.ApplicationRoutingTest.Blog.Post +to_prepare lib/rails/railtie/configuration.rb /^ def to_prepare(&blk)$/;" f class:Rails.Railtie.Configuration +to_prepare_blocks lib/rails/railtie/configuration.rb /^ def to_prepare_blocks$/;" f class:Rails.Railtie.Configuration +to_s lib/rails/code_statistics.rb /^ def to_s$/;" f class:CodeStatistics +to_s lib/rails/commands/plugin.rb /^ def to_s$/;" f class:Plugin +to_s lib/rails/info.rb /^ def to_s$/;" f class:Rails +to_s lib/rails/source_annotation_extractor.rb /^ def to_s(options={})$/;" f class:SourceAnnotationExtractor.Annotation +tsort_each_child lib/rails/initializable.rb /^ def tsort_each_child(initializer, &block)$/;" f class:Rails.Initializable.Collection +tweak_builder.rb test/fixtures/lib/app_builders/tweak_builder.rb 1;" F +tweak_builder.rb test/fixtures/lib/plugin_builders/tweak_builder.rb 1;" F +two test/initializable_test.rb /^ def two$/;" f class:InitializableTests.OverriddenInitializer.MoreInitializers +uncountable? lib/rails/generators/named_base.rb /^ def uncountable?$/;" f class:Rails.Generators +uninstall lib/rails/commands/plugin.rb /^ def uninstall$/;" f class:Plugin +uninstall.rb lib/rails/generators/rails/plugin/templates/uninstall.rb 1;" F +unit_test.rb lib/rails/generators/test_unit/model/templates/unit_test.rb 1;" F +unit_test.rb lib/rails/generators/test_unit/observer/templates/unit_test.rb 1;" F +update lib/rails/generators/rails/scaffold_controller/templates/controller.rb /^ def update$/;" f +update.rb lib/rails/commands/update.rb 1;" F +update_attributes lib/rails/generators/active_model.rb /^ def update_attributes(params=nil)$/;" f class:Rails.Generators.ActiveModel +url_for_engine_route test/railties/mounted_engine_test.rb /^ def url_for_engine_route$/;" f class:ApplicationTests.ApplicationRoutingTest.ApplicationGeneratingController +url_generation_test.rb test/application/url_generation_test.rb 1;" F +use lib/rails/configuration.rb /^ def use(*args, &block)$/;" f class:Rails.Configuration.MiddlewareStackProxy +use_checkout? lib/rails/commands/plugin.rb /^ def use_checkout?$/;" f class:RailsEnvironment +use_externals? lib/rails/commands/plugin.rb /^ def use_externals?$/;" f class:RailsEnvironment +use_frameworks test/isolation/abstract_unit.rb /^ def use_frameworks(arr)$/;" f +use_svn? lib/rails/commands/plugin.rb /^ def use_svn?$/;" f class:RailsEnvironment +valid_const? lib/rails/generators/rails/app/app_generator.rb /^ def valid_const?$/;" f class:Generators.AppGenerator +valid_const? lib/rails/generators/rails/plugin_new/plugin_new_generator.rb /^ def valid_const?$/;" f class:Generators.PluginNewGenerator +validate guides/w3c_validator.rb /^ def validate$/;" f class:RailsGuides.Validator +value_for lib/rails/info.rb /^ def value_for(property_name)$/;" f class:Rails.Info +values lib/rails/generators/rails/app/templates/public/javascripts/prototype.js /^ function values(object) {$/;" f +values tmp/app/public/javascripts/prototype.js /^ function values(object) {$/;" f +values tmp/app_template/public/javascripts/prototype.js /^ function values(object) {$/;" f +var.Effect._elementDoesNotExistError lib/rails/generators/rails/app/templates/public/javascripts/effects.js /^var Effect = {$/;" p +var.Effect._elementDoesNotExistError tmp/app/public/javascripts/effects.js /^var Effect = {$/;" p +var.Effect._elementDoesNotExistError tmp/app_template/public/javascripts/effects.js /^var Effect = {$/;" p +vendor lib/rails/generators/actions.rb /^ def vendor(filename, data=nil, &block)$/;" f class:Rails.Generators +vendor_plugins lib/rails/generators/rails/app/app_generator.rb /^ def vendor_plugins$/;" f +version lib/rails.rb /^ def version$/;" f class:Rails +version.rb lib/rails/version.rb 1;" F +w3c_validator.rb guides/w3c_validator.rb 1;" F +wait test/application/initializers/notifications_test.rb /^ def wait$/;" f class:ApplicationTests.NotificationsTest +warn_about_broken_links guides/rails_guides/generator.rb /^ def warn_about_broken_links(html)$/;" f class:RailsGuides +with_bare_config test/application/generators_test.rb /^ def with_bare_config$/;" f class:ApplicationTests.GeneratorsTest +with_config test/application/generators_test.rb /^ def with_config$/;" f class:ApplicationTests.GeneratorsTest +with_workaround_for_notextile guides/rails_guides/generator.rb /^ def with_workaround_for_notextile(body)$/;" f class:RailsGuides.Generator +wrap_with_namespace lib/rails/generators/named_base.rb /^ def wrap_with_namespace(content)$/;" f class:Rails.Generators.NamedBase +write test/isolation/abstract_unit.rb /^ def write(file, string)$/;" f class:Bukkit +wrong_generator.rb test/fixtures/lib/generators/wrong_generator.rb 1;" F