hydra-editor 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +51 -0
  3. data/Rakefile +57 -0
  4. data/app/assets/javascripts/hydra-editor/editMetadata.js +4 -0
  5. data/app/assets/javascripts/hydra-editor/hydra-editor.js +2 -0
  6. data/app/assets/javascripts/hydra-editor/multiForm.js +58 -0
  7. data/app/assets/stylesheets/hydra-editor/application.css +13 -0
  8. data/app/assets/stylesheets/hydra-editor/hydra-editor.css +6 -0
  9. data/app/controllers/concerns/records_controller_behavior.rb +75 -0
  10. data/app/controllers/records_controller.rb +3 -0
  11. data/app/helpers/concerns/records_helper_behavior.rb +59 -0
  12. data/app/helpers/records_helper.rb +3 -0
  13. data/app/views/records/_edit_field.html.erb +15 -0
  14. data/app/views/records/_form.html.erb +16 -0
  15. data/app/views/records/choose_type.html.erb +8 -0
  16. data/app/views/records/edit.html.erb +3 -0
  17. data/app/views/records/edit_fields/_default.html.erb +10 -0
  18. data/app/views/records/edit_fields/_suffix.html.erb +6 -0
  19. data/app/views/records/new.html.erb +2 -0
  20. data/config/routes.rb +4 -0
  21. data/lib/hydra-editor.rb +12 -0
  22. data/lib/hydra_editor/engine.rb +8 -0
  23. data/lib/hydra_editor/version.rb +3 -0
  24. data/lib/tasks/hydra-editor_tasks.rake +4 -0
  25. data/spec/controllers/records_controller_spec.rb +101 -0
  26. data/spec/dummy/Gemfile +16 -0
  27. data/spec/dummy/Gemfile.lock +246 -0
  28. data/spec/dummy/README.rdoc +261 -0
  29. data/spec/dummy/Rakefile +7 -0
  30. data/spec/dummy/app/assets/images/blacklight/bg.png +0 -0
  31. data/spec/dummy/app/assets/images/blacklight/border.png +0 -0
  32. data/spec/dummy/app/assets/images/blacklight/bul_sq_gry.gif +0 -0
  33. data/spec/dummy/app/assets/images/blacklight/checkmark.gif +0 -0
  34. data/spec/dummy/app/assets/images/blacklight/logo.png +0 -0
  35. data/spec/dummy/app/assets/images/blacklight/magnifying_glass.gif +0 -0
  36. data/spec/dummy/app/assets/images/blacklight/remove.gif +0 -0
  37. data/spec/dummy/app/assets/images/blacklight/separator.gif +0 -0
  38. data/spec/dummy/app/assets/images/blacklight/start_over.gif +0 -0
  39. data/spec/dummy/app/assets/images/rails.png +0 -0
  40. data/spec/dummy/app/assets/javascripts/application.js +18 -0
  41. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  42. data/spec/dummy/app/assets/stylesheets/blacklight.css.scss +4 -0
  43. data/spec/dummy/app/controllers/application_controller.rb +10 -0
  44. data/spec/dummy/app/controllers/catalog_controller.rb +170 -0
  45. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  46. data/spec/dummy/app/models/solr_document.rb +33 -0
  47. data/spec/dummy/app/models/user.rb +22 -0
  48. data/spec/dummy/app/views/devise/confirmations/new.html.erb +12 -0
  49. data/spec/dummy/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  50. data/spec/dummy/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  51. data/spec/dummy/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  52. data/spec/dummy/app/views/devise/passwords/edit.html.erb +16 -0
  53. data/spec/dummy/app/views/devise/passwords/new.html.erb +12 -0
  54. data/spec/dummy/app/views/devise/registrations/edit.html.erb +29 -0
  55. data/spec/dummy/app/views/devise/registrations/new.html.erb +18 -0
  56. data/spec/dummy/app/views/devise/sessions/new.html.erb +17 -0
  57. data/spec/dummy/app/views/devise/shared/_links.erb +25 -0
  58. data/spec/dummy/app/views/devise/unlocks/new.html.erb +12 -0
  59. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  60. data/spec/dummy/config.ru +4 -0
  61. data/spec/dummy/config/SolrMarc/config-test.properties +37 -0
  62. data/spec/dummy/config/SolrMarc/config.properties +37 -0
  63. data/spec/dummy/config/SolrMarc/index.properties +97 -0
  64. data/spec/dummy/config/SolrMarc/index_scripts/dewey.bsh +47 -0
  65. data/spec/dummy/config/SolrMarc/index_scripts/format.bsh +126 -0
  66. data/spec/dummy/config/SolrMarc/translation_maps/README_MAPS +1 -0
  67. data/spec/dummy/config/SolrMarc/translation_maps/callnumber_map.properties +407 -0
  68. data/spec/dummy/config/SolrMarc/translation_maps/composition_era_map.properties +56 -0
  69. data/spec/dummy/config/SolrMarc/translation_maps/country_map.properties +379 -0
  70. data/spec/dummy/config/SolrMarc/translation_maps/format_map.properties +50 -0
  71. data/spec/dummy/config/SolrMarc/translation_maps/instrument_map.properties +101 -0
  72. data/spec/dummy/config/SolrMarc/translation_maps/language_map.properties +490 -0
  73. data/spec/dummy/config/application.rb +66 -0
  74. data/spec/dummy/config/boot.rb +6 -0
  75. data/spec/dummy/config/database.yml +25 -0
  76. data/spec/dummy/config/environment.rb +5 -0
  77. data/spec/dummy/config/environments/development.rb +37 -0
  78. data/spec/dummy/config/environments/production.rb +67 -0
  79. data/spec/dummy/config/environments/test.rb +37 -0
  80. data/spec/dummy/config/fedora.yml +14 -0
  81. data/spec/dummy/config/initializers/action_dispatch_http_upload_monkey_patch.rb +12 -0
  82. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  83. data/spec/dummy/config/initializers/devise.rb +240 -0
  84. data/spec/dummy/config/initializers/hydra_config.rb +28 -0
  85. data/spec/dummy/config/initializers/inflections.rb +15 -0
  86. data/spec/dummy/config/initializers/mime_types.rb +12 -0
  87. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  88. data/spec/dummy/config/initializers/session_store.rb +8 -0
  89. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  90. data/spec/dummy/config/jetty.yml +5 -0
  91. data/spec/dummy/config/locales/devise.en.yml +59 -0
  92. data/spec/dummy/config/locales/en.yml +5 -0
  93. data/spec/dummy/config/role_map_cucumber.yml +10 -0
  94. data/spec/dummy/config/role_map_development.yml +12 -0
  95. data/spec/dummy/config/role_map_production.yml +2 -0
  96. data/spec/dummy/config/role_map_test.yml +15 -0
  97. data/spec/dummy/config/routes.rb +66 -0
  98. data/spec/dummy/config/solr.yml +10 -0
  99. data/spec/dummy/db/development.sqlite3 +0 -0
  100. data/spec/dummy/db/migrate/20130415215624_devise_create_users.rb +46 -0
  101. data/spec/dummy/db/migrate/20130415215633_create_searches.rb +16 -0
  102. data/spec/dummy/db/migrate/20130415215634_create_bookmarks.rb +18 -0
  103. data/spec/dummy/db/migrate/20130415215635_remove_editable_fields_from_bookmarks.rb +12 -0
  104. data/spec/dummy/db/migrate/20130415215636_add_user_types_to_bookmarks_searches.rb +16 -0
  105. data/spec/dummy/db/schema.rb +53 -0
  106. data/spec/dummy/db/seeds.rb +7 -0
  107. data/spec/dummy/db/test.sqlite3 +0 -0
  108. data/spec/dummy/doc/README_FOR_APP +2 -0
  109. data/spec/dummy/fedora_conf/conf/development/fedora.fcfg +953 -0
  110. data/spec/dummy/fedora_conf/conf/test/fedora.fcfg +953 -0
  111. data/spec/dummy/lib/generators/test_app_generator.rb +26 -0
  112. data/spec/dummy/log/development.log +78 -0
  113. data/spec/dummy/log/test.log +2372 -0
  114. data/spec/dummy/public/404.html +26 -0
  115. data/spec/dummy/public/422.html +26 -0
  116. data/spec/dummy/public/500.html +25 -0
  117. data/spec/dummy/public/favicon.ico +0 -0
  118. data/spec/dummy/public/index.html +241 -0
  119. data/spec/dummy/public/robots.txt +5 -0
  120. data/spec/dummy/script/rails +6 -0
  121. data/spec/dummy/solr_conf/conf/schema.xml +433 -0
  122. data/spec/dummy/solr_conf/conf/solrconfig.xml +158 -0
  123. data/spec/dummy/solr_conf/solr.xml +35 -0
  124. data/spec/dummy/test/performance/browsing_test.rb +12 -0
  125. data/spec/dummy/test/test_helper.rb +13 -0
  126. data/spec/factories/users.rb +13 -0
  127. data/spec/helpers/records_helper_spec.rb +20 -0
  128. data/spec/models/bookmark_spec.rb +7 -0
  129. data/spec/spec_helper.rb +23 -0
  130. data/spec/support/Gemfile +12 -0
  131. data/spec/support/audio.rb +18 -0
  132. data/spec/support/dummy_generator.rb +26 -0
  133. data/spec/support/lib/generators/test_app_generator.rb +26 -0
  134. metadata +410 -0
@@ -0,0 +1,26 @@
1
+ require 'rails/generators'
2
+
3
+ class TestAppGenerator < Rails::Generators::Base
4
+ #source_root File.expand_path("../../../../support", __FILE__)
5
+
6
+ def add_routes
7
+ insert_into_file "config/routes.rb", :after => '.draw do' do
8
+ "\n mount HydraEditor::Engine => \"/\""
9
+
10
+ end
11
+ end
12
+
13
+ # def copy_test_models
14
+ # copy_file "app/models/sample.rb"
15
+ # copy_file "app/models/solr_document.rb"
16
+ # copy_file "db/migrate/20111101221803_create_searches.rb"
17
+ # end
18
+
19
+ # def copy_rspec_rake_task
20
+ # copy_file "lib/tasks/rspec.rake"
21
+ # end
22
+
23
+ # def copy_hydra_config
24
+ # copy_file "config/initializers/hydra_config.rb"
25
+ # end
26
+ end
@@ -0,0 +1,78 @@
1
+ Connecting to database specified by database.yml
2
+ Couldn't find SolrDocument
3
+ Connecting to database specified by database.yml
4
+ Couldn't find SolrDocument
5
+ Connecting to database specified by database.yml
6
+ Couldn't find SolrDocument
7
+ Connecting to database specified by database.yml
8
+ Couldn't find SolrDocument
9
+ Connecting to database specified by database.yml
10
+ Couldn't find SolrDocument
11
+ Connecting to database specified by database.yml
12
+ Couldn't find SolrDocument
13
+ Connecting to database specified by database.yml
14
+ Connecting to database specified by database.yml
15
+ Connecting to database specified by database.yml
16
+  (0.1ms) select sqlite_version(*)
17
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
18
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
20
+ Migrating to DeviseCreateUsers (20130415215624)
21
+  (0.0ms) begin transaction
22
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
23
+  (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
24
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
25
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130415215624')
26
+  (1.2ms) commit transaction
27
+ Migrating to CreateSearches (20130415215633)
28
+  (0.1ms) begin transaction
29
+  (0.4ms) CREATE TABLE "searches" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "query_params" text, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
30
+  (0.1ms) CREATE INDEX "index_searches_on_user_id" ON "searches" ("user_id")
31
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130415215633')
32
+  (11.0ms) commit transaction
33
+ Migrating to CreateBookmarks (20130415215634)
34
+  (0.1ms) begin transaction
35
+  (0.4ms) CREATE TABLE "bookmarks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "url" text, "document_id" varchar(255), "title" varchar(255), "notes" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
36
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130415215634')
37
+  (1.3ms) commit transaction
38
+ Migrating to RemoveEditableFieldsFromBookmarks (20130415215635)
39
+  (0.0ms) begin transaction
40
+  (0.7ms) CREATE TEMPORARY TABLE "altered_bookmarks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "url" text, "document_id" varchar(255), "title" varchar(255), "notes" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
41
+  (0.1ms) SELECT * FROM "bookmarks"
42
+  (0.3ms) DROP TABLE "bookmarks"
43
+  (0.1ms) CREATE TABLE "bookmarks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "url" text, "document_id" varchar(255), "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
44
+  (0.0ms) SELECT * FROM "altered_bookmarks"
45
+  (0.3ms) DROP TABLE "altered_bookmarks"
46
+  (0.2ms) CREATE TEMPORARY TABLE "altered_bookmarks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "url" text, "document_id" varchar(255), "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
47
+  (0.1ms) SELECT * FROM "bookmarks"
48
+  (0.4ms) DROP TABLE "bookmarks"
49
+  (0.1ms) CREATE TABLE "bookmarks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "document_id" varchar(255), "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
50
+  (0.0ms) SELECT * FROM "altered_bookmarks"
51
+  (0.1ms) DROP TABLE "altered_bookmarks"
52
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130415215635')
53
+  (1.7ms) commit transaction
54
+ Migrating to AddUserTypesToBookmarksSearches (20130415215636)
55
+  (0.0ms) begin transaction
56
+  (0.4ms) ALTER TABLE "searches" ADD "user_type" varchar(255)
57
+  (0.2ms) ALTER TABLE "bookmarks" ADD "user_type" varchar(255)
58
+ SQL (0.0ms) UPDATE "searches" SET user_type = 'user'
59
+ SQL (0.0ms) UPDATE "bookmarks" SET user_type = 'user'
60
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130415215636')
61
+  (2.0ms) commit transaction
62
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
63
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
64
+  (0.2ms) select sqlite_version(*)
65
+  (1.4ms) CREATE TABLE "bookmarks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "document_id" varchar(255), "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "user_type" varchar(255)) 
66
+  (1.5ms) CREATE TABLE "searches" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "query_params" text, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "user_type" varchar(255))
67
+  (1.2ms) CREATE INDEX "index_searches_on_user_id" ON "searches" ("user_id")
68
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
69
+  (1.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
70
+  (1.9ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
71
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
72
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
73
+  (0.1ms) SELECT version FROM "schema_migrations"
74
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130415215636')
75
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20130415215624')
76
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20130415215633')
77
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20130415215634')
78
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130415215635')
@@ -0,0 +1,2372 @@
1
+ Connecting to database specified by database.yml
2
+  (0.5ms) begin transaction
3
+  (0.1ms) rollback transaction
4
+  (0.1ms) begin transaction
5
+  (0.0ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+  (0.0ms) rollback transaction
8
+  (0.1ms) begin transaction
9
+  (0.1ms) SAVEPOINT active_record_1
10
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
11
+ Binary data inserted for `string` type on column `encrypted_password`
12
+ SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 15 Apr 2013 21:56:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$lScZ/rTt201o8BYfINdJ7Ou6G5W7YT9oAMHdnGQQ0ciJ8rGZDkpSC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 15 Apr 2013 21:56:55 UTC +00:00]]
13
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
15
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
16
+ Usergroups are ["public", "registered"]
17
+ Processing by RecordsController#new as HTML
18
+ Completed 500 Internal Server Error in 31ms
19
+  (0.7ms) rollback transaction
20
+  (0.1ms) begin transaction
21
+  (0.1ms) SAVEPOINT active_record_1
22
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
23
+ Binary data inserted for `string` type on column `encrypted_password`
24
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 15 Apr 2013 21:56:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$DQd549sP8qWZnd4XN2qx1eVbHzogQguHlGvFGDAh3IetM6MkRaS9K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 15 Apr 2013 21:56:55 UTC +00:00]]
25
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26
+ Processing by RecordsController#create as HTML
27
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
28
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
29
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
30
+ Usergroups are ["public", "registered"]
31
+ Redirected to http://test.host/catalog/test:6
32
+ Completed 302 Found in 11ms (ActiveRecord: 0.2ms)
33
+  (0.5ms) rollback transaction
34
+  (0.1ms) begin transaction
35
+  (0.1ms) SAVEPOINT active_record_1
36
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
37
+ Binary data inserted for `string` type on column `encrypted_password`
38
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 15 Apr 2013 21:56:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$ENr4N4x8hk5agnndrV1xv./UvhBPZsH5vr9bNH5yx/0mzrYEh6nDu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 15 Apr 2013 21:56:55 UTC +00:00]]
39
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40
+ Processing by RecordsController#new as HTML
41
+ Parameters: {"type"=>"Audio"}
42
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
43
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
44
+ Usergroups are ["public", "registered"]
45
+ Completed 200 OK in 15ms (Views: 8.1ms | ActiveRecord: 0.3ms)
46
+  (0.6ms) rollback transaction
47
+  (0.1ms) begin transaction
48
+  (0.0ms) SAVEPOINT active_record_1
49
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
50
+ Binary data inserted for `string` type on column `encrypted_password`
51
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 15 Apr 2013 21:56:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$FMHLDzQ4zc5Twpe2/gQByOCQ.kN43fgZLaAppvBtJVkrPtqHiT.KC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 15 Apr 2013 21:56:55 UTC +00:00]]
52
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53
+ Processing by RecordsController#new as HTML
54
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
55
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
56
+ Usergroups are ["public", "registered"]
57
+ Completed 200 OK in 6ms (Views: 2.6ms | ActiveRecord: 0.4ms)
58
+  (0.6ms) rollback transaction
59
+  (0.1ms) begin transaction
60
+  (0.1ms) SAVEPOINT active_record_1
61
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
62
+ Binary data inserted for `string` type on column `encrypted_password`
63
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 15 Apr 2013 21:56:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$J4UizDYEy1dLSLW6ASYug.hmwDwe.BoCPwpO1Hwk24kkoJW06gIX2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 15 Apr 2013 21:56:55 UTC +00:00]]
64
+  (0.0ms) RELEASE SAVEPOINT active_record_1
65
+ Processing by RecordsController#edit as HTML
66
+ Parameters: {"id"=>"test:7"}
67
+ Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 0.0ms)
68
+  (0.5ms) rollback transaction
69
+  (0.1ms) begin transaction
70
+  (0.1ms) SAVEPOINT active_record_1
71
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
72
+ Binary data inserted for `string` type on column `encrypted_password`
73
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 15 Apr 2013 21:56:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$hMwzmqGGAVrUg5gGFyBhB.9bnv1KDNkXWEgPNmRamBqlEc/UF33nK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 15 Apr 2013 21:56:55 UTC +00:00]]
74
+  (0.1ms) RELEASE SAVEPOINT active_record_1
75
+ Processing by RecordsController#update as HTML
76
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
77
+ Redirected to http://test.host/catalog/test:7
78
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
79
+  (0.5ms) rollback transaction
80
+  (0.1ms) begin transaction
81
+  (0.1ms) rollback transaction
82
+ Connecting to database specified by database.yml
83
+  (0.5ms) begin transaction
84
+  (0.1ms) SAVEPOINT active_record_1
85
+ User Exists (15.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
86
+ Binary data inserted for `string` type on column `encrypted_password`
87
+ SQL (34.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:49:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$9A2nYKk.XcnJHz/cA8oF..DmiSNZoFXlDsrvAqRjonys89CyEEz5m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:49:45 UTC +00:00]]
88
+  (0.1ms) RELEASE SAVEPOINT active_record_1
89
+ Processing by RecordsController#new as HTML
90
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
91
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
92
+ Usergroups are ["public", "registered"]
93
+ Rendered /Users/justin/workspace/hydra-editor/app/views/records/choose_type.html.erb within layouts/blacklight (0.4ms)
94
+ Completed 200 OK in 150ms (Views: 102.0ms | ActiveRecord: 0.4ms)
95
+  (0.7ms) rollback transaction
96
+  (0.1ms) begin transaction
97
+  (0.0ms) SAVEPOINT active_record_1
98
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
99
+ Binary data inserted for `string` type on column `encrypted_password`
100
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:49:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$jsOVscHDHPDAmeX.dEn0J.7BIXZVN6oq7UxQHL9YrjaO7RQU9ZTqi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:49:46 UTC +00:00]]
101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
102
+ Processing by RecordsController#new as HTML
103
+ Parameters: {"type"=>"Audio"}
104
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
105
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
106
+ Usergroups are ["public", "registered"]
107
+ Completed 200 OK in 105ms (Views: 15.0ms | ActiveRecord: 0.2ms)
108
+  (0.8ms) rollback transaction
109
+  (0.1ms) begin transaction
110
+  (0.1ms) SAVEPOINT active_record_1
111
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
112
+ Binary data inserted for `string` type on column `encrypted_password`
113
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:49:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$xi5gT0lkiWwZNzD1IXHsXuuS6esN4vB2WcRM5ITAeBnmSu5Fy8S2."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:49:46 UTC +00:00]]
114
+  (0.1ms) RELEASE SAVEPOINT active_record_1
115
+ Processing by RecordsController#update as HTML
116
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
117
+ Redirected to http://test.host/catalog/test:7
118
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
119
+  (0.7ms) rollback transaction
120
+  (0.1ms) begin transaction
121
+  (0.0ms) SAVEPOINT active_record_1
122
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
123
+ Binary data inserted for `string` type on column `encrypted_password`
124
+ SQL (52.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:49:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$zN49zfJu8dubMMhavp3J2et2M7osM7NkSZiNx134lxSsApBJvHX8m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:49:46 UTC +00:00]]
125
+  (0.1ms) RELEASE SAVEPOINT active_record_1
126
+ Processing by RecordsController#create as HTML
127
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
128
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
129
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
130
+ Usergroups are ["public", "registered"]
131
+ Redirected to http://test.host/catalog/test:6
132
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
133
+  (0.8ms) rollback transaction
134
+  (0.1ms) begin transaction
135
+  (0.1ms) SAVEPOINT active_record_1
136
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
137
+ Binary data inserted for `string` type on column `encrypted_password`
138
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:49:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$H5btfQ3XKEDG8UWlMIrpFuckBGVbifcaH102bZta.aGGcKOYS1L36"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:49:46 UTC +00:00]]
139
+  (0.1ms) RELEASE SAVEPOINT active_record_1
140
+ Processing by RecordsController#edit as HTML
141
+ Parameters: {"id"=>"test:7"}
142
+ Completed 200 OK in 13ms (Views: 10.5ms | ActiveRecord: 0.0ms)
143
+  (0.8ms) rollback transaction
144
+  (0.1ms) begin transaction
145
+  (0.1ms) SAVEPOINT active_record_1
146
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
147
+ Binary data inserted for `string` type on column `encrypted_password`
148
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:49:46 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$ABeQwTzHLzSi6/9MAzothOpCeHLk1CYm9ZK4PMT3Yb18TtpWDbJD2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:49:46 UTC +00:00]]
149
+  (0.0ms) RELEASE SAVEPOINT active_record_1
150
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
151
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
152
+ Usergroups are ["public", "registered"]
153
+ Processing by RecordsController#new as HTML
154
+ Completed 500 Internal Server Error in 180ms
155
+  (0.7ms) rollback transaction
156
+  (0.1ms) begin transaction
157
+  (0.1ms) rollback transaction
158
+  (0.1ms) begin transaction
159
+  (0.1ms) rollback transaction
160
+  (0.1ms) begin transaction
161
+  (0.1ms) rollback transaction
162
+  (0.1ms) begin transaction
163
+  (0.1ms) rollback transaction
164
+ Connecting to database specified by database.yml
165
+  (0.4ms) begin transaction
166
+  (0.0ms) rollback transaction
167
+  (0.1ms) begin transaction
168
+  (0.1ms) rollback transaction
169
+  (0.0ms) begin transaction
170
+  (0.0ms) rollback transaction
171
+  (0.0ms) begin transaction
172
+  (0.1ms) rollback transaction
173
+  (0.0ms) begin transaction
174
+  (0.1ms) SAVEPOINT active_record_1
175
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
176
+ Binary data inserted for `string` type on column `encrypted_password`
177
+ SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:52:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$K.WQRaA4Qv4Tl4S.v.1dTO4DYb5fVWghIGTMuKMNx5Xy5xqSDs1pS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:52:01 UTC +00:00]]
178
+  (0.1ms) RELEASE SAVEPOINT active_record_1
179
+ Processing by RecordsController#edit as HTML
180
+ Parameters: {"id"=>"test:7"}
181
+ Completed 200 OK in 8ms (Views: 5.6ms | ActiveRecord: 0.0ms)
182
+  (0.6ms) rollback transaction
183
+  (0.1ms) begin transaction
184
+  (0.0ms) SAVEPOINT active_record_1
185
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
186
+ Binary data inserted for `string` type on column `encrypted_password`
187
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:52:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$Q6BDRol3N97T.0dVVqdOiuA7NYFr/QC2bIPjPSeT8DWkKTa0rWc56"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:52:01 UTC +00:00]]
188
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189
+ Processing by RecordsController#create as HTML
190
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
191
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
192
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
193
+ Usergroups are ["public", "registered"]
194
+ Redirected to http://test.host/catalog/test:6
195
+ Completed 302 Found in 6ms (ActiveRecord: 0.2ms)
196
+  (0.7ms) rollback transaction
197
+  (0.1ms) begin transaction
198
+  (0.0ms) SAVEPOINT active_record_1
199
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
200
+ Binary data inserted for `string` type on column `encrypted_password`
201
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:52:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$u6XthNNmwCm.BBOsImktOOnvoyb1CNL9azCW6qFvmglv3qsZXXH5a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:52:01 UTC +00:00]]
202
+  (0.0ms) RELEASE SAVEPOINT active_record_1
203
+ Processing by RecordsController#new as HTML
204
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
205
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
206
+ Usergroups are ["public", "registered"]
207
+ Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.2ms)
208
+  (0.6ms) rollback transaction
209
+  (0.0ms) begin transaction
210
+  (0.1ms) SAVEPOINT active_record_1
211
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
212
+ Binary data inserted for `string` type on column `encrypted_password`
213
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:52:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$VAITzDFDBx7psnJlz4ERsuGyEL.bFWUYVLgQr/9THtYSApmhjhKQG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:52:01 UTC +00:00]]
214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
215
+ Processing by RecordsController#new as HTML
216
+ Parameters: {"type"=>"Audio"}
217
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
218
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
219
+ Usergroups are ["public", "registered"]
220
+ Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
221
+  (0.8ms) rollback transaction
222
+  (0.2ms) begin transaction
223
+  (0.1ms) SAVEPOINT active_record_1
224
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
225
+ Binary data inserted for `string` type on column `encrypted_password`
226
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:52:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$iKuuFCPxN8dSyyQrW2azN.51jXoTMTTaFhsYRUgSDDjDWUT6dC4lG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:52:01 UTC +00:00]]
227
+  (0.0ms) RELEASE SAVEPOINT active_record_1
228
+ Processing by RecordsController#update as HTML
229
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
230
+ Redirected to http://test.host/catalog/test:7
231
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
232
+  (0.6ms) rollback transaction
233
+  (0.1ms) begin transaction
234
+  (0.0ms) SAVEPOINT active_record_1
235
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
236
+ Binary data inserted for `string` type on column `encrypted_password`
237
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:52:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$t8PUu8KO4W0vRdfqC910rO337ns8I1pYAcv0hpOmwmQxSzpYJDUw."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:52:01 UTC +00:00]]
238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
239
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
240
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
241
+ Usergroups are ["public", "registered"]
242
+ Processing by RecordsController#new as HTML
243
+ Completed 500 Internal Server Error in 1ms
244
+  (0.6ms) rollback transaction
245
+ Connecting to database specified by database.yml
246
+  (0.4ms) begin transaction
247
+  (0.1ms) rollback transaction
248
+  (0.1ms) begin transaction
249
+  (0.1ms) rollback transaction
250
+  (0.0ms) begin transaction
251
+  (0.0ms) rollback transaction
252
+ Connecting to database specified by database.yml
253
+  (0.4ms) begin transaction
254
+  (0.0ms) rollback transaction
255
+  (0.1ms) begin transaction
256
+  (0.1ms) rollback transaction
257
+  (0.1ms) begin transaction
258
+  (0.0ms) rollback transaction
259
+  (0.0ms) begin transaction
260
+  (0.0ms) rollback transaction
261
+  (0.0ms) begin transaction
262
+  (0.1ms) SAVEPOINT active_record_1
263
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
264
+ Binary data inserted for `string` type on column `encrypted_password`
265
+ SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:55:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$.V2qRYm5bOVnF5pj7TXAq.esdqJJEv2KFmkhN1nWQwHl0V8ImsNwW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:55:10 UTC +00:00]]
266
+  (0.1ms) RELEASE SAVEPOINT active_record_1
267
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
268
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
269
+ Usergroups are ["public", "registered"]
270
+ Processing by RecordsController#new as HTML
271
+ Completed 500 Internal Server Error in 12ms
272
+  (0.7ms) rollback transaction
273
+  (0.1ms) begin transaction
274
+  (0.0ms) SAVEPOINT active_record_1
275
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
276
+ Binary data inserted for `string` type on column `encrypted_password`
277
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:55:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$nTuQoDuyal5yHOuV.8tIvuwPfCwosYctVE2dTmEfnsMJZ1QWDjqNi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:55:10 UTC +00:00]]
278
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279
+ Processing by RecordsController#update as HTML
280
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
281
+ Redirected to http://test.host/catalog/test:7
282
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
283
+  (0.5ms) rollback transaction
284
+  (0.1ms) begin transaction
285
+  (0.0ms) SAVEPOINT active_record_1
286
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
287
+ Binary data inserted for `string` type on column `encrypted_password`
288
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:55:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$1gT/B.DGGYmx3nj7vyAoLeQz2B.WxiMbf3PrFbJlfDolUZZu5vPHq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:55:11 UTC +00:00]]
289
+  (0.0ms) RELEASE SAVEPOINT active_record_1
290
+ Processing by RecordsController#create as HTML
291
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
292
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
293
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
294
+ Usergroups are ["public", "registered"]
295
+ Redirected to http://test.host/catalog/test:6
296
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
297
+  (0.7ms) rollback transaction
298
+  (0.1ms) begin transaction
299
+  (0.0ms) SAVEPOINT active_record_1
300
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
301
+ Binary data inserted for `string` type on column `encrypted_password`
302
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:55:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$xv/kafS1ulfwTPmmM0F/zO64OeFIh4oUO8frypw/AfjbHdOiBOorG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:55:11 UTC +00:00]]
303
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304
+ Processing by RecordsController#edit as HTML
305
+ Parameters: {"id"=>"test:7"}
306
+ Completed 200 OK in 8ms (Views: 5.5ms | ActiveRecord: 0.0ms)
307
+  (0.5ms) rollback transaction
308
+  (0.1ms) begin transaction
309
+  (0.0ms) SAVEPOINT active_record_1
310
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
311
+ Binary data inserted for `string` type on column `encrypted_password`
312
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:55:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$lR/q8lHTpkwfX8vVv49aNOwld96L285.yRhUr5XLnB6avZ74D9xLS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:55:11 UTC +00:00]]
313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
314
+ Processing by RecordsController#new as HTML
315
+ Parameters: {"type"=>"Audio"}
316
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
317
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
318
+ Usergroups are ["public", "registered"]
319
+ Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
320
+  (0.6ms) rollback transaction
321
+  (0.0ms) begin transaction
322
+  (0.0ms) SAVEPOINT active_record_1
323
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
324
+ Binary data inserted for `string` type on column `encrypted_password`
325
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:55:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$6VxEotPd7bF4pGQlzru5WugS7B7kaypRPvcH2EIruLy2wrgU7t31a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:55:11 UTC +00:00]]
326
+  (0.0ms) RELEASE SAVEPOINT active_record_1
327
+ Processing by RecordsController#new as HTML
328
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
329
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
330
+ Usergroups are ["public", "registered"]
331
+ Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.2ms)
332
+  (0.6ms) rollback transaction
333
+ Connecting to database specified by database.yml
334
+  (0.4ms) begin transaction
335
+  (0.1ms) rollback transaction
336
+  (0.0ms) begin transaction
337
+  (0.0ms) rollback transaction
338
+  (0.0ms) begin transaction
339
+  (0.0ms) rollback transaction
340
+  (0.0ms) begin transaction
341
+  (0.1ms) SAVEPOINT active_record_1
342
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
343
+ Binary data inserted for `string` type on column `encrypted_password`
344
+ SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:56:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$fRfomd1oUxYAO39Sm4obDet6rOJTiei9E/baY/j.bM8s8vbmAAQXS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:56:36 UTC +00:00]]
345
+  (0.1ms) RELEASE SAVEPOINT active_record_1
346
+ Processing by RecordsController#update as HTML
347
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
348
+ Redirected to http://test.host/catalog/test:7
349
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
350
+  (0.7ms) rollback transaction
351
+  (0.1ms) begin transaction
352
+  (0.0ms) SAVEPOINT active_record_1
353
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
354
+ Binary data inserted for `string` type on column `encrypted_password`
355
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:56:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$mHJo5A3WRkreNyBKwppUTOYGRP/MHkfT3PZhkVtj7JK1jhAMYkC9q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:56:36 UTC +00:00]]
356
+  (0.0ms) RELEASE SAVEPOINT active_record_1
357
+ Processing by RecordsController#create as HTML
358
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
359
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
360
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
361
+ Usergroups are ["public", "registered"]
362
+ Redirected to http://test.host/catalog/test:6
363
+ Completed 302 Found in 7ms (ActiveRecord: 0.3ms)
364
+  (0.6ms) rollback transaction
365
+  (0.1ms) begin transaction
366
+  (0.1ms) SAVEPOINT active_record_1
367
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
368
+ Binary data inserted for `string` type on column `encrypted_password`
369
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:56:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$LDfR9fuXJtZT.otP3w39aO265wmfpuGjKiCl1gjn24NbhWRxwOUxm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:56:36 UTC +00:00]]
370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
371
+ Processing by RecordsController#edit as HTML
372
+ Parameters: {"id"=>"test:7"}
373
+ Completed 200 OK in 10ms (Views: 6.7ms | ActiveRecord: 0.0ms)
374
+  (0.5ms) rollback transaction
375
+  (0.1ms) begin transaction
376
+  (0.0ms) SAVEPOINT active_record_1
377
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
378
+ Binary data inserted for `string` type on column `encrypted_password`
379
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:56:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$35StV939I0BADmq8se/X6uU0dg5JRFBc4DTsLFxdX5PfE9xAT8Nw."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:56:36 UTC +00:00]]
380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
381
+ Processing by RecordsController#new as HTML
382
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
383
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
384
+ Usergroups are ["public", "registered"]
385
+ Completed 200 OK in 5ms (Views: 2.1ms | ActiveRecord: 0.2ms)
386
+  (0.6ms) rollback transaction
387
+  (0.0ms) begin transaction
388
+  (0.0ms) SAVEPOINT active_record_1
389
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
390
+ Binary data inserted for `string` type on column `encrypted_password`
391
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:56:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$3huYx3KB.cJaPg67/RnxlePryt8kPyqi4oW/mCAUc.wJcn54PgpE6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:56:36 UTC +00:00]]
392
+  (0.0ms) RELEASE SAVEPOINT active_record_1
393
+ Processing by RecordsController#new as HTML
394
+ Parameters: {"type"=>"Audio"}
395
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
396
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
397
+ Usergroups are ["public", "registered"]
398
+ Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 0.3ms)
399
+  (0.6ms) rollback transaction
400
+  (0.0ms) begin transaction
401
+  (0.0ms) SAVEPOINT active_record_1
402
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
403
+ Binary data inserted for `string` type on column `encrypted_password`
404
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:56:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$h9.WkRHYEXJ/z2CJprhi5uYpQN8lVHvZ2XQ3ggSv4E7GoPUCauSRy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:56:36 UTC +00:00]]
405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
406
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
407
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
408
+ Usergroups are ["public", "registered"]
409
+ Processing by RecordsController#new as HTML
410
+ Completed 500 Internal Server Error in 14ms
411
+  (0.6ms) rollback transaction
412
+  (0.1ms) begin transaction
413
+  (0.1ms) rollback transaction
414
+ Connecting to database specified by database.yml
415
+  (0.4ms) begin transaction
416
+  (0.1ms) SAVEPOINT active_record_1
417
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
418
+ Binary data inserted for `string` type on column `encrypted_password`
419
+ SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:57:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$zKjnR/aI8wnHdtIVAKre5O5TBb8SE.QUfVaD2jzPG9bFn.dcj8xrW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:57:20 UTC +00:00]]
420
+  (0.1ms) RELEASE SAVEPOINT active_record_1
421
+ Processing by RecordsController#new as HTML
422
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
423
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
424
+ Usergroups are ["public", "registered"]
425
+ Rendered /Users/justin/workspace/hydra-editor/app/views/records/choose_type.html.erb within layouts/blacklight (0.2ms)
426
+ Completed 200 OK in 12ms (Views: 7.2ms | ActiveRecord: 0.2ms)
427
+  (0.7ms) rollback transaction
428
+  (0.1ms) begin transaction
429
+  (0.0ms) SAVEPOINT active_record_1
430
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
431
+ Binary data inserted for `string` type on column `encrypted_password`
432
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:57:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$IZyh6g2dCnUfZdRgo6FPS.xPAVgvzwAJSM5EJzB.vT/A6EQ5o4w.q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:57:20 UTC +00:00]]
433
+  (0.1ms) RELEASE SAVEPOINT active_record_1
434
+ Processing by RecordsController#new as HTML
435
+ Parameters: {"type"=>"Audio"}
436
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
437
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
438
+ Usergroups are ["public", "registered"]
439
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
440
+  (0.6ms) rollback transaction
441
+  (0.1ms) begin transaction
442
+  (0.1ms) SAVEPOINT active_record_1
443
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
444
+ Binary data inserted for `string` type on column `encrypted_password`
445
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:57:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$un0VsP50ftVFAMGVdtlmLOmm53vm/z/unrsMKUrZuWWQSIDeZvSUe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:57:20 UTC +00:00]]
446
+  (0.0ms) RELEASE SAVEPOINT active_record_1
447
+ Processing by RecordsController#create as HTML
448
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
449
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
450
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
451
+ Usergroups are ["public", "registered"]
452
+ Redirected to http://test.host/records/new
453
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
454
+  (0.7ms) rollback transaction
455
+  (0.1ms) begin transaction
456
+  (0.0ms) SAVEPOINT active_record_1
457
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
458
+ Binary data inserted for `string` type on column `encrypted_password`
459
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:57:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$WYJvkKY69.P58N8NzLPnsuK7cBNBy4jVcHkIiyVpaTw.0tGd0T5iS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:57:20 UTC +00:00]]
460
+  (0.0ms) RELEASE SAVEPOINT active_record_1
461
+ Processing by RecordsController#update as HTML
462
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
463
+ Redirected to http://test.host/catalog/test:7
464
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
465
+  (0.7ms) rollback transaction
466
+  (0.1ms) begin transaction
467
+  (0.0ms) SAVEPOINT active_record_1
468
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
469
+ Binary data inserted for `string` type on column `encrypted_password`
470
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:57:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$I95ewexy37J5ADG6I3rdIeZgPJLrS0NF2MFLVuJpDHvKQCAiTjFGa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:57:20 UTC +00:00]]
471
+  (0.0ms) RELEASE SAVEPOINT active_record_1
472
+ Processing by RecordsController#edit as HTML
473
+ Parameters: {"id"=>"test:7"}
474
+ Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.0ms)
475
+  (0.6ms) rollback transaction
476
+  (0.1ms) begin transaction
477
+  (0.1ms) SAVEPOINT active_record_1
478
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
479
+ Binary data inserted for `string` type on column `encrypted_password`
480
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:57:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$8gN3TNkExn1Na206fYnc..FkzTmS4geJy1NnNX7jrTO2m0KVRMLP."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:57:20 UTC +00:00]]
481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
482
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
483
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
484
+ Usergroups are ["public", "registered"]
485
+ Processing by RecordsController#new as HTML
486
+ Completed 500 Internal Server Error in 11ms
487
+  (0.6ms) rollback transaction
488
+  (0.1ms) begin transaction
489
+  (0.0ms) rollback transaction
490
+  (0.0ms) begin transaction
491
+  (0.0ms) rollback transaction
492
+  (0.0ms) begin transaction
493
+  (0.0ms) rollback transaction
494
+  (0.0ms) begin transaction
495
+  (0.0ms) rollback transaction
496
+ Connecting to database specified by database.yml
497
+  (0.4ms) begin transaction
498
+  (0.1ms) SAVEPOINT active_record_1
499
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
500
+ Binary data inserted for `string` type on column `encrypted_password`
501
+ SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:59:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$fBnAKgpjz1pJhfNDJBlvRO4P1TB3tdRz7/MCfKSzBRAYBJ0UDQ2DS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:59:02 UTC +00:00]]
502
+  (0.1ms) RELEASE SAVEPOINT active_record_1
503
+ Processing by RecordsController#new as HTML
504
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
505
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
506
+ Usergroups are ["public", "registered"]
507
+ Rendered /Users/justin/workspace/hydra-editor/app/views/records/choose_type.html.erb within layouts/blacklight (0.2ms)
508
+ Completed 200 OK in 12ms (Views: 7.3ms | ActiveRecord: 0.2ms)
509
+  (0.6ms) rollback transaction
510
+  (0.1ms) begin transaction
511
+  (0.0ms) SAVEPOINT active_record_1
512
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
513
+ Binary data inserted for `string` type on column `encrypted_password`
514
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:59:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$L0lD2Ip10JAqwGBkVUAQ0uukF3MRirN71Csx.FC827YFcNtQv2pCS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:59:02 UTC +00:00]]
515
+  (0.0ms) RELEASE SAVEPOINT active_record_1
516
+ Processing by RecordsController#new as HTML
517
+ Parameters: {"type"=>"Audio"}
518
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
519
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
520
+ Usergroups are ["public", "registered"]
521
+ Completed 200 OK in 23ms (Views: 1.5ms | ActiveRecord: 0.2ms)
522
+  (0.6ms) rollback transaction
523
+  (0.0ms) begin transaction
524
+  (0.0ms) SAVEPOINT active_record_1
525
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
526
+ Binary data inserted for `string` type on column `encrypted_password`
527
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:59:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$r8xP6pztpB.hLsAzF5DBNeMJoSWU4h89LpbHlB7o1MSci1G9uHRli"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:59:02 UTC +00:00]]
528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
529
+ Processing by RecordsController#edit as HTML
530
+ Parameters: {"id"=>"test:7"}
531
+ Completed 200 OK in 54ms (Views: 1.6ms | ActiveRecord: 0.0ms)
532
+  (0.6ms) rollback transaction
533
+  (0.1ms) begin transaction
534
+  (0.0ms) SAVEPOINT active_record_1
535
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
536
+ Binary data inserted for `string` type on column `encrypted_password`
537
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:59:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$J1kxVhCDlBP1BMZvnUAJauEgEv0BeFB0d9u3B7EBjQ0md3X1GlTDS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:59:02 UTC +00:00]]
538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
539
+ Processing by RecordsController#create as HTML
540
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
541
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
542
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
543
+ Usergroups are ["public", "registered"]
544
+ Redirected to http://test.host/catalog/test:6
545
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
546
+  (0.6ms) rollback transaction
547
+  (0.1ms) begin transaction
548
+  (0.0ms) SAVEPOINT active_record_1
549
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
550
+ Binary data inserted for `string` type on column `encrypted_password`
551
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:59:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$VcP5v57dAtZkC8EO8KTkgedKSxSyD59/YlUQxqY0f8WQslqWJSnIm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:59:02 UTC +00:00]]
552
+  (0.0ms) RELEASE SAVEPOINT active_record_1
553
+ Processing by RecordsController#update as HTML
554
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
555
+ Redirected to http://test.host/catalog/test:7
556
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
557
+  (0.6ms) rollback transaction
558
+  (0.1ms) begin transaction
559
+  (0.0ms) SAVEPOINT active_record_1
560
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
561
+ Binary data inserted for `string` type on column `encrypted_password`
562
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:59:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$r7a.gDeBOjY5AiUjBQyGrOWm6cJBh8f3Gmtkp8xjzI6oZCawZLjtm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:59:02 UTC +00:00]]
563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
564
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
565
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
566
+ Usergroups are ["public", "registered"]
567
+ Processing by RecordsController#new as HTML
568
+ Completed 500 Internal Server Error in 12ms
569
+  (0.7ms) rollback transaction
570
+  (0.0ms) begin transaction
571
+  (0.0ms) rollback transaction
572
+  (0.0ms) begin transaction
573
+  (0.0ms) rollback transaction
574
+  (0.0ms) begin transaction
575
+  (0.0ms) rollback transaction
576
+  (0.0ms) begin transaction
577
+  (0.0ms) rollback transaction
578
+ Connecting to database specified by database.yml
579
+  (0.4ms) begin transaction
580
+  (0.0ms) rollback transaction
581
+  (0.1ms) begin transaction
582
+  (0.1ms) rollback transaction
583
+  (0.0ms) begin transaction
584
+  (0.0ms) rollback transaction
585
+  (0.0ms) begin transaction
586
+  (0.0ms) rollback transaction
587
+  (0.0ms) begin transaction
588
+  (0.1ms) SAVEPOINT active_record_1
589
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
590
+ Binary data inserted for `string` type on column `encrypted_password`
591
+ SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:59:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$lJ/PmKu4Ux.EcvU6PIYqsuy23fH65Nc2nKzvFi7Wtba6QuJhMgEvK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:59:42 UTC +00:00]]
592
+  (0.0ms) RELEASE SAVEPOINT active_record_1
593
+ Processing by RecordsController#edit as HTML
594
+ Parameters: {"id"=>"test:7"}
595
+ Completed 200 OK in 8ms (Views: 5.6ms | ActiveRecord: 0.0ms)
596
+  (0.7ms) rollback transaction
597
+  (0.1ms) begin transaction
598
+  (0.0ms) SAVEPOINT active_record_1
599
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
600
+ Binary data inserted for `string` type on column `encrypted_password`
601
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:59:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$R.ReRng5iFGttBoQrPSyO.TtTkaOaIQd0hjoOnYwdyCrlJl7zEWrO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:59:42 UTC +00:00]]
602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
603
+ Processing by RecordsController#create as HTML
604
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
605
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
606
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
607
+ Usergroups are ["public", "registered"]
608
+ Redirected to http://test.host/catalog/test:6
609
+ Completed 302 Found in 7ms (ActiveRecord: 0.3ms)
610
+  (0.6ms) rollback transaction
611
+  (0.1ms) begin transaction
612
+  (0.0ms) SAVEPOINT active_record_1
613
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
614
+ Binary data inserted for `string` type on column `encrypted_password`
615
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:59:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$lnemPQExJrCgPAMJ97wGpeldqJKhG2TO.ab53tDK2LLTuLGOeZBwe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:59:42 UTC +00:00]]
616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
617
+ Processing by RecordsController#new as HTML
618
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
619
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
620
+ Usergroups are ["public", "registered"]
621
+ Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.2ms)
622
+  (0.6ms) rollback transaction
623
+  (0.0ms) begin transaction
624
+  (0.0ms) SAVEPOINT active_record_1
625
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
626
+ Binary data inserted for `string` type on column `encrypted_password`
627
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:59:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$fpXxBv5GrPbTrnDeec0qH.PjplYUhbdaW0tpfI.TKxpQ.m2vZGxRK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:59:42 UTC +00:00]]
628
+  (0.0ms) RELEASE SAVEPOINT active_record_1
629
+ Processing by RecordsController#new as HTML
630
+ Parameters: {"type"=>"Audio"}
631
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
632
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
633
+ Usergroups are ["public", "registered"]
634
+ Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
635
+  (0.6ms) rollback transaction
636
+  (0.0ms) begin transaction
637
+  (0.0ms) SAVEPOINT active_record_1
638
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
639
+ Binary data inserted for `string` type on column `encrypted_password`
640
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:59:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$lxusWJ8pTwToiqruBvdSce.na/3fp9x6/G574xdGLM5b5BdraBRHu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:59:42 UTC +00:00]]
641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
642
+ Processing by RecordsController#update as HTML
643
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
644
+ Redirected to http://test.host/catalog/test:7
645
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
646
+  (0.6ms) rollback transaction
647
+  (0.1ms) begin transaction
648
+  (0.1ms) SAVEPOINT active_record_1
649
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
650
+ Binary data inserted for `string` type on column `encrypted_password`
651
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 16:59:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$kcWURygqe2HZc7m7pxm91u1tQUfPnaPThzCmnMeD.RBNq0k7oIiRO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 16:59:42 UTC +00:00]]
652
+  (0.0ms) RELEASE SAVEPOINT active_record_1
653
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
654
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
655
+ Usergroups are ["public", "registered"]
656
+ Processing by RecordsController#new as HTML
657
+ Completed 500 Internal Server Error in 11ms
658
+  (0.6ms) rollback transaction
659
+ Connecting to database specified by database.yml
660
+  (0.5ms) begin transaction
661
+  (0.0ms) rollback transaction
662
+  (0.1ms) begin transaction
663
+  (0.1ms) rollback transaction
664
+  (0.1ms) begin transaction
665
+  (0.1ms) rollback transaction
666
+  (0.1ms) begin transaction
667
+  (0.1ms) rollback transaction
668
+  (0.1ms) begin transaction
669
+  (0.1ms) SAVEPOINT active_record_1
670
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
671
+ Binary data inserted for `string` type on column `encrypted_password`
672
+ SQL (14.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 17:03:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$ybXkEKRU0Un3vfzJaYWgV.uN9oZMXu9yzkYfxckztzZg0HQUmU7F."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 17:03:08 UTC +00:00]]
673
+  (0.1ms) RELEASE SAVEPOINT active_record_1
674
+ Processing by RecordsController#update as HTML
675
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
676
+ Redirected to http://test.host/catalog/test:7
677
+ Completed 302 Found in 52ms (ActiveRecord: 0.0ms)
678
+  (0.6ms) rollback transaction
679
+  (0.1ms) begin transaction
680
+  (0.0ms) SAVEPOINT active_record_1
681
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
682
+ Binary data inserted for `string` type on column `encrypted_password`
683
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 17:03:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$qH5tgZBbKenHdllq2A.OfeWOJ2ErBWGx9RVzKtocrxvHxfHQMF9Qe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 17:03:08 UTC +00:00]]
684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
685
+ Processing by RecordsController#edit as HTML
686
+ Parameters: {"id"=>"test:7"}
687
+ Completed 200 OK in 64ms (Views: 61.5ms | ActiveRecord: 0.0ms)
688
+  (0.7ms) rollback transaction
689
+  (0.0ms) begin transaction
690
+  (0.1ms) SAVEPOINT active_record_1
691
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
692
+ Binary data inserted for `string` type on column `encrypted_password`
693
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 17:03:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$tqtWv8YppF25.f75lehoeeuNeg07yKRcw5HdG3PYQqBp5lV/hIhtW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 17:03:08 UTC +00:00]]
694
+  (0.0ms) RELEASE SAVEPOINT active_record_1
695
+ Processing by RecordsController#new as HTML
696
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
697
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
698
+ Usergroups are ["public", "registered"]
699
+ Completed 200 OK in 82ms (Views: 19.1ms | ActiveRecord: 0.4ms)
700
+  (0.6ms) rollback transaction
701
+  (0.1ms) begin transaction
702
+  (0.1ms) SAVEPOINT active_record_1
703
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
704
+ Binary data inserted for `string` type on column `encrypted_password`
705
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 17:03:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$SxkA9GJABMfn8pN/gCFnJOa/A49kGrUboZ5NsBzI4LMNJp3YII4cO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 17:03:08 UTC +00:00]]
706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
707
+ Processing by RecordsController#new as HTML
708
+ Parameters: {"type"=>"Audio"}
709
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
710
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
711
+ Usergroups are ["public", "registered"]
712
+ Completed 200 OK in 27ms (Views: 22.4ms | ActiveRecord: 0.2ms)
713
+  (0.6ms) rollback transaction
714
+  (0.1ms) begin transaction
715
+  (0.0ms) SAVEPOINT active_record_1
716
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
717
+ Binary data inserted for `string` type on column `encrypted_password`
718
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 17:03:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$HxjfqzQ87ACf4Dl5QtaA2.o.nzhktZKFr8QsuQuO5RHHA1eCnmne2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 17:03:08 UTC +00:00]]
719
+  (0.1ms) RELEASE SAVEPOINT active_record_1
720
+ Processing by RecordsController#create as HTML
721
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
722
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
723
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
724
+ Usergroups are ["public", "registered"]
725
+ Redirected to http://test.host/catalog/test:6
726
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
727
+  (0.6ms) rollback transaction
728
+  (0.1ms) begin transaction
729
+  (0.0ms) SAVEPOINT active_record_1
730
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
731
+ Binary data inserted for `string` type on column `encrypted_password`
732
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 17:03:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$2HwbdS9mEWD/eYlhUA4WIeBhUWDT865EmEDtuZhriYivq0wyUHm2G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 17:03:08 UTC +00:00]]
733
+  (0.0ms) RELEASE SAVEPOINT active_record_1
734
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
735
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
736
+ Usergroups are ["public", "registered"]
737
+ Processing by RecordsController#new as HTML
738
+ Completed 500 Internal Server Error in 206ms
739
+  (0.8ms) rollback transaction
740
+ Connecting to database specified by database.yml
741
+  (0.4ms) begin transaction
742
+  (0.1ms) SAVEPOINT active_record_1
743
+ User Exists (11.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
744
+ Binary data inserted for `string` type on column `encrypted_password`
745
+ SQL (2.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$sjp4KbE.ZLTQ1IPqFPbEBuMzMO5y0SXhEoTfj7s.Xu2nFvufUbm72"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00]]
746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
747
+ Processing by RecordsController#new as HTML
748
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
749
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
750
+ Usergroups are ["public", "registered"]
751
+ Rendered /Users/justin/workspace/hydra-editor/app/views/records/choose_type.html.erb within layouts/blacklight (0.3ms)
752
+ Completed 200 OK in 37ms (Views: 20.5ms | ActiveRecord: 0.3ms)
753
+  (0.6ms) rollback transaction
754
+  (0.1ms) begin transaction
755
+  (0.0ms) SAVEPOINT active_record_1
756
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
757
+ Binary data inserted for `string` type on column `encrypted_password`
758
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$sUku9DoXqHkKXgdz7hbsaeaoemDcsssmfEr/Y.fpNJn.GPiMPTkp."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00]]
759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
760
+ Processing by RecordsController#new as HTML
761
+ Parameters: {"type"=>"Audio"}
762
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
763
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
764
+ Usergroups are ["public", "registered"]
765
+ Completed 200 OK in 132ms (Views: 21.6ms | ActiveRecord: 0.3ms)
766
+  (0.7ms) rollback transaction
767
+  (0.1ms) begin transaction
768
+  (0.1ms) SAVEPOINT active_record_1
769
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
770
+ Binary data inserted for `string` type on column `encrypted_password`
771
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$F/cogO9oUhTYGNkRSU.W0OXSpMo2CDzGufl/Big2xjL4moRdSUU4W"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00]]
772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
773
+ Processing by RecordsController#edit as HTML
774
+ Parameters: {"id"=>"test:7"}
775
+ Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 0.0ms)
776
+  (0.6ms) rollback transaction
777
+  (0.1ms) begin transaction
778
+  (0.1ms) SAVEPOINT active_record_1
779
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
780
+ Binary data inserted for `string` type on column `encrypted_password`
781
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$ONqGC6UM0ALNZgpoWWfeyeLSHn8zkY71YF2r7Hn0JmAGuiZCjvGxK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00]]
782
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783
+ Processing by RecordsController#edit as HTML
784
+ Parameters: {"id"=>"test:7"}
785
+ Completed 500 Internal Server Error in 0ms
786
+  (0.7ms) rollback transaction
787
+  (0.1ms) begin transaction
788
+  (0.0ms) SAVEPOINT active_record_1
789
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
790
+ Binary data inserted for `string` type on column `encrypted_password`
791
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$mcC0tpM7luLm69LmYjbPQOwsB3SixyWavvyjBps4EaWANret.pO66"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00]]
792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
793
+ Processing by RecordsController#create as HTML
794
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
795
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
796
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
797
+ Usergroups are ["public", "registered"]
798
+ Redirected to http://test.host/catalog/test:6
799
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
800
+  (0.6ms) rollback transaction
801
+  (0.0ms) begin transaction
802
+  (0.0ms) SAVEPOINT active_record_1
803
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
804
+ Binary data inserted for `string` type on column `encrypted_password`
805
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$NaZvGAU16fMbns8kpUCPGOONYDMQg2nqRjoHWp/MwjnGagLXdXvAW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00]]
806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
807
+ Processing by RecordsController#update as HTML
808
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
809
+ Redirected to http://test.host/catalog/test:7
810
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
811
+  (0.4ms) rollback transaction
812
+  (0.1ms) begin transaction
813
+  (0.1ms) SAVEPOINT active_record_1
814
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
815
+ Binary data inserted for `string` type on column `encrypted_password`
816
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$.paKjTCklBY.SIgiAaziGuTbRTSOiRNlaReRlHtpRFXpsSoWSXnP."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 19:54:35 UTC +00:00]]
817
+  (0.0ms) RELEASE SAVEPOINT active_record_1
818
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
819
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
820
+ Usergroups are ["public", "registered"]
821
+ Processing by RecordsController#new as HTML
822
+ Completed 500 Internal Server Error in 71ms
823
+  (0.7ms) rollback transaction
824
+ Connecting to database specified by database.yml
825
+  (0.4ms) begin transaction
826
+  (0.1ms) SAVEPOINT active_record_1
827
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
828
+ Binary data inserted for `string` type on column `encrypted_password`
829
+ SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 19:55:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$cTKzZVzRM3hFwKSaUtxvcOqJdqk89HuRFIvplGVJEAIqk5nHFHDaW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 19:55:16 UTC +00:00]]
830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
831
+ Processing by RecordsController#edit as HTML
832
+ Parameters: {"id"=>"test:7"}
833
+ Completed 500 Internal Server Error in 1ms
834
+  (0.6ms) rollback transaction
835
+ Connecting to database specified by database.yml
836
+  (0.4ms) begin transaction
837
+  (0.1ms) SAVEPOINT active_record_1
838
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
839
+ Binary data inserted for `string` type on column `encrypted_password`
840
+ SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 16 Apr 2013 19:55:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$1AZI9ry/SgwKyxLIORQd7eBZoA7o598QROSe/eQ5eub1X4j9NFDz2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 16 Apr 2013 19:55:35 UTC +00:00]]
841
+  (0.1ms) RELEASE SAVEPOINT active_record_1
842
+ Processing by RecordsController#edit as HTML
843
+ Parameters: {"id"=>"test:7"}
844
+ Completed 500 Internal Server Error in 1ms
845
+  (0.6ms) rollback transaction
846
+ Connecting to database specified by database.yml
847
+  (11.0ms) begin transaction
848
+  (0.1ms) rollback transaction
849
+  (0.1ms) begin transaction
850
+  (0.1ms) rollback transaction
851
+  (0.1ms) begin transaction
852
+  (0.1ms) rollback transaction
853
+  (0.1ms) begin transaction
854
+  (0.1ms) rollback transaction
855
+  (0.1ms) begin transaction
856
+  (0.1ms) SAVEPOINT active_record_1
857
+ User Exists (15.7ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
858
+ Binary data inserted for `string` type on column `encrypted_password`
859
+ SQL (68.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 27 Apr 2013 20:34:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$zOI2hBtQR9fuQYJHtIFG2ew9Nx6HhZz3J0oy3O8s6ioT/wqTpT50q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Sat, 27 Apr 2013 20:34:00 UTC +00:00]]
860
+  (0.1ms) RELEASE SAVEPOINT active_record_1
861
+ Processing by RecordsController#new as HTML
862
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
863
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
864
+ Usergroups are ["public", "registered"]
865
+ Completed 200 OK in 85ms (Views: 47.0ms | ActiveRecord: 0.5ms)
866
+  (1.4ms) rollback transaction
867
+  (0.1ms) begin transaction
868
+  (0.1ms) SAVEPOINT active_record_1
869
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
870
+ Binary data inserted for `string` type on column `encrypted_password`
871
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 27 Apr 2013 20:34:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$DYjbMdNiRcBZfiJSaZaF9.uTzmJfoFwI3zj8gxP.d7V0qOTLTcarq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Sat, 27 Apr 2013 20:34:00 UTC +00:00]]
872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
873
+ Processing by RecordsController#new as HTML
874
+ Parameters: {"type"=>"Audio"}
875
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
876
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
877
+ Usergroups are ["public", "registered"]
878
+ Completed 200 OK in 378ms (Views: 10.5ms | ActiveRecord: 0.2ms)
879
+  (0.7ms) rollback transaction
880
+  (0.1ms) begin transaction
881
+  (0.1ms) SAVEPOINT active_record_1
882
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
883
+ Binary data inserted for `string` type on column `encrypted_password`
884
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 27 Apr 2013 20:34:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$leml3cXYbCAQiBYn.MYsX.S.OuCbI9pAY441qA9iffvix6NxBZQda"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Sat, 27 Apr 2013 20:34:00 UTC +00:00]]
885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
886
+ Processing by RecordsController#edit as HTML
887
+ Parameters: {"id"=>"test:7"}
888
+ Completed 200 OK in 32ms (Views: 29.2ms | ActiveRecord: 0.0ms)
889
+  (0.6ms) rollback transaction
890
+  (0.1ms) begin transaction
891
+  (0.0ms) SAVEPOINT active_record_1
892
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
893
+ Binary data inserted for `string` type on column `encrypted_password`
894
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 27 Apr 2013 20:34:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$pVg6d0A4KOt7eWPc7IitC..yVKFCmwdkSAp2oLrNhuLnxffMKMftq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Sat, 27 Apr 2013 20:34:01 UTC +00:00]]
895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
896
+ Processing by RecordsController#create as HTML
897
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
898
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
899
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
900
+ Usergroups are ["public", "registered"]
901
+ Redirected to http://test.host/catalog/test:6
902
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
903
+  (0.6ms) rollback transaction
904
+  (0.1ms) begin transaction
905
+  (0.1ms) SAVEPOINT active_record_1
906
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
907
+ Binary data inserted for `string` type on column `encrypted_password`
908
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 27 Apr 2013 20:34:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$x8C6Dzy5WhRCJhB2AShHZuiUAAmFPBdWx4gw0AQ2KFxd7hkT20GoC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Sat, 27 Apr 2013 20:34:01 UTC +00:00]]
909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
910
+ Processing by RecordsController#update as HTML
911
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
912
+ Redirected to http://test.host/catalog/test:7
913
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
914
+  (0.5ms) rollback transaction
915
+  (0.1ms) begin transaction
916
+  (0.1ms) SAVEPOINT active_record_1
917
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
918
+ Binary data inserted for `string` type on column `encrypted_password`
919
+ SQL (6.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 27 Apr 2013 20:34:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$10zFfFCRuZW0F14WXn2XrutBk44sarEHMU5gu3mpXRqnuMsuFqgbq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Sat, 27 Apr 2013 20:34:01 UTC +00:00]]
920
+  (0.1ms) RELEASE SAVEPOINT active_record_1
921
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
922
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
923
+ Usergroups are ["public", "registered"]
924
+ Processing by RecordsController#new as HTML
925
+ Completed 500 Internal Server Error in 174ms
926
+  (0.8ms) rollback transaction
927
+ Connecting to database specified by database.yml
928
+  (0.4ms) begin transaction
929
+  (0.1ms) SAVEPOINT active_record_1
930
+ User Exists (9.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
931
+ Binary data inserted for `string` type on column `encrypted_password`
932
+ SQL (30.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:22:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$fgl2cFdRZm8blIDBx53vM.BJGBZwOYszqnmk9ebREkMpJG9eOWudO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:22:55 UTC +00:00]]
933
+  (0.1ms) RELEASE SAVEPOINT active_record_1
934
+ Processing by RecordsController#update as HTML
935
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
936
+ Completed 500 Internal Server Error in 2ms
937
+  (0.6ms) rollback transaction
938
+  (0.1ms) begin transaction
939
+  (0.1ms) SAVEPOINT active_record_1
940
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
941
+ Binary data inserted for `string` type on column `encrypted_password`
942
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:22:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$fEeXjzaHe0aVJJ5fYcz5x.bm9HfPOVE4r1ihvfbfQ4ndO6D/xR4tu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:22:55 UTC +00:00]]
943
+  (0.0ms) RELEASE SAVEPOINT active_record_1
944
+ Processing by RecordsController#edit as HTML
945
+ Parameters: {"id"=>"test:7"}
946
+ Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.0ms)
947
+  (0.6ms) rollback transaction
948
+  (0.1ms) begin transaction
949
+  (0.1ms) SAVEPOINT active_record_1
950
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
951
+ Binary data inserted for `string` type on column `encrypted_password`
952
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:22:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$ovUwGwR/ZwzXi7P9VlhoxuM4hRJ2DpHJFq4dG4ui3U0./nnJDKMF2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:22:55 UTC +00:00]]
953
+  (0.1ms) RELEASE SAVEPOINT active_record_1
954
+ Processing by RecordsController#create as HTML
955
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
956
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
957
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
958
+ Usergroups are ["public", "registered"]
959
+ Completed 500 Internal Server Error in 84ms
960
+  (0.8ms) rollback transaction
961
+  (0.1ms) begin transaction
962
+  (0.0ms) SAVEPOINT active_record_1
963
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
964
+ Binary data inserted for `string` type on column `encrypted_password`
965
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:22:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$aH5wk7WP3kv3MRcDzRTD5uE7twsMsDZnJMSUktkTcCG/c.fy0O.u."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:22:56 UTC +00:00]]
966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
967
+ Processing by RecordsController#create as HTML
968
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
969
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
970
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
971
+ Usergroups are ["public", "registered"]
972
+ Completed 500 Internal Server Error in 3ms
973
+  (0.6ms) rollback transaction
974
+  (0.1ms) begin transaction
975
+  (0.0ms) SAVEPOINT active_record_1
976
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
977
+ Binary data inserted for `string` type on column `encrypted_password`
978
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:22:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$woJlOB/3CR2U76fzSiRav.HwdPy99tro7QVdEnJnU9bp114pL7ILi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:22:56 UTC +00:00]]
979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
980
+ Processing by RecordsController#new as HTML
981
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
982
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
983
+ Usergroups are ["public", "registered"]
984
+ Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.2ms)
985
+  (0.8ms) rollback transaction
986
+  (0.1ms) begin transaction
987
+  (0.1ms) SAVEPOINT active_record_1
988
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
989
+ Binary data inserted for `string` type on column `encrypted_password`
990
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:22:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$ObuuX.1MRVe9kY4RuCyPYu/bk0txRHG8oSNOvD62TmM/iA6lfwlc."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:22:56 UTC +00:00]]
991
+  (0.0ms) RELEASE SAVEPOINT active_record_1
992
+ Processing by RecordsController#new as HTML
993
+ Parameters: {"type"=>"Audio"}
994
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
995
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
996
+ Usergroups are ["public", "registered"]
997
+ Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
998
+  (0.6ms) rollback transaction
999
+  (0.0ms) begin transaction
1000
+  (0.0ms) SAVEPOINT active_record_1
1001
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1002
+ Binary data inserted for `string` type on column `encrypted_password`
1003
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:22:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$5z63O5S6KwqoRSUlTnrdWeCAaB6ZgPuM5TEb3XAc9WnnGJWNtSTaq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:22:56 UTC +00:00]]
1004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1005
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1006
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1007
+ Usergroups are ["public", "registered"]
1008
+ Processing by RecordsController#new as HTML
1009
+ Completed 500 Internal Server Error in 84ms
1010
+  (0.8ms) rollback transaction
1011
+ Connecting to database specified by database.yml
1012
+  (0.4ms) begin transaction
1013
+  (0.1ms) SAVEPOINT active_record_1
1014
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1015
+ Binary data inserted for `string` type on column `encrypted_password`
1016
+ SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$wXARWunk9s.b.36.vc8nTubGBkwGzL9tH3hMepOyCgRnArmjlv7Wa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00]]
1017
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1018
+ Processing by RecordsController#new as HTML
1019
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1020
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1021
+ Usergroups are ["public", "registered"]
1022
+ Rendered /Users/justin/workspace/hydra-editor/app/views/records/choose_type.html.erb within layouts/blacklight (0.2ms)
1023
+ Completed 200 OK in 12ms (Views: 7.4ms | ActiveRecord: 0.3ms)
1024
+  (0.7ms) rollback transaction
1025
+  (0.1ms) begin transaction
1026
+  (0.1ms) SAVEPOINT active_record_1
1027
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1028
+ Binary data inserted for `string` type on column `encrypted_password`
1029
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$vQeSL4hv/R7hAZDmc78eIO/iZpjMU6E7hM7Gpp4wSagnw08IstgFi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00]]
1030
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031
+ Processing by RecordsController#new as HTML
1032
+ Parameters: {"type"=>"Audio"}
1033
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1034
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1035
+ Usergroups are ["public", "registered"]
1036
+ Completed 200 OK in 77ms (Views: 1.7ms | ActiveRecord: 0.2ms)
1037
+  (0.7ms) rollback transaction
1038
+  (0.1ms) begin transaction
1039
+  (0.1ms) SAVEPOINT active_record_1
1040
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1041
+ Binary data inserted for `string` type on column `encrypted_password`
1042
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$WwCZfwT7iITykLMhJ4w3r.cJ2iqjeekW/spDfX35M5Yrc0McQXHP2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00]]
1043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1044
+ Processing by RecordsController#edit as HTML
1045
+ Parameters: {"id"=>"test:7"}
1046
+ Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1047
+  (0.6ms) rollback transaction
1048
+  (0.0ms) begin transaction
1049
+  (0.0ms) SAVEPOINT active_record_1
1050
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1051
+ Binary data inserted for `string` type on column `encrypted_password`
1052
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$7nKDdodvoeDmTcCOxsjEQ.wSXFCebsZCHOsjDNGx6ceROl2iUTdb."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00]]
1053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1054
+ Processing by RecordsController#create as HTML
1055
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1056
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1057
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1058
+ Usergroups are ["public", "registered"]
1059
+ Redirected to http://test.host/catalog/tufts:0001
1060
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
1061
+  (0.7ms) rollback transaction
1062
+  (0.0ms) begin transaction
1063
+  (0.1ms) SAVEPOINT active_record_1
1064
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1065
+ Binary data inserted for `string` type on column `encrypted_password`
1066
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$qYS53UL8wHt.7qqzCaSZfu0CY4cCh1Q0bJMfJIztbeJWGvtXmY2SG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00]]
1067
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1068
+ Processing by RecordsController#create as HTML
1069
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1070
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1071
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1072
+ Usergroups are ["public", "registered"]
1073
+ Redirected to http://test.host/catalog/tufts:0001
1074
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
1075
+  (0.6ms) rollback transaction
1076
+  (0.1ms) begin transaction
1077
+  (0.0ms) SAVEPOINT active_record_1
1078
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1079
+ Binary data inserted for `string` type on column `encrypted_password`
1080
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$pd2jrJ8iTHZWP3VYq8ksye3fOvt0wTbLJ/zuRkG.P55hE7xMQg5A6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00]]
1081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1082
+ Processing by RecordsController#update as HTML
1083
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
1084
+ Redirected to http://test.host/catalog/tufts:0001
1085
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1086
+  (0.6ms) rollback transaction
1087
+  (0.0ms) begin transaction
1088
+  (0.0ms) SAVEPOINT active_record_1
1089
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1090
+ Binary data inserted for `string` type on column `encrypted_password`
1091
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$EyvBAIIbCyu6489USGgK8eCgyQpmVG5/f/eRom2OkcvMKoqJRb.yq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 19:23:51 UTC +00:00]]
1092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1093
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1094
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1095
+ Usergroups are ["public", "registered"]
1096
+ Processing by RecordsController#new as HTML
1097
+ Completed 500 Internal Server Error in 12ms
1098
+  (0.5ms) rollback transaction
1099
+ Connecting to database specified by database.yml
1100
+  (0.4ms) begin transaction
1101
+  (0.0ms) rollback transaction
1102
+  (0.1ms) begin transaction
1103
+  (0.1ms) rollback transaction
1104
+  (0.0ms) begin transaction
1105
+  (0.0ms) rollback transaction
1106
+  (0.0ms) begin transaction
1107
+  (0.1ms) rollback transaction
1108
+  (0.1ms) begin transaction
1109
+  (0.1ms) SAVEPOINT active_record_1
1110
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1111
+ Binary data inserted for `string` type on column `encrypted_password`
1112
+ SQL (67.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 20:12:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$wBtV6tsI3jUJSFLe0w6AFu2AagngWLA81Eoc72i8j.yMv/F1De7hm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 20:12:12 UTC +00:00]]
1113
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1114
+ Processing by RecordsController#edit as HTML
1115
+ Parameters: {"id"=>"test:7"}
1116
+ Completed 200 OK in 8ms (Views: 5.7ms | ActiveRecord: 0.0ms)
1117
+  (12.0ms) rollback transaction
1118
+  (0.1ms) begin transaction
1119
+  (0.1ms) SAVEPOINT active_record_1
1120
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1121
+ Binary data inserted for `string` type on column `encrypted_password`
1122
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 20:12:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$MhEF4jjQ22LbmJjkSKmpIupHKdFCgRET0QMw/RkHu2NmN1TpkxCIm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 20:12:12 UTC +00:00]]
1123
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1124
+ Processing by RecordsController#new as HTML
1125
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1126
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1127
+ Usergroups are ["public", "registered"]
1128
+ Completed 200 OK in 56ms (Views: 3.0ms | ActiveRecord: 0.4ms)
1129
+  (7.2ms) rollback transaction
1130
+  (0.1ms) begin transaction
1131
+  (0.0ms) SAVEPOINT active_record_1
1132
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1133
+ Binary data inserted for `string` type on column `encrypted_password`
1134
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 20:12:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$fRJR7/LVngtry58JpG9cWO5rjZjpxkq.IPl/J6DKC7rO87eStCVVa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 20:12:12 UTC +00:00]]
1135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1136
+ Processing by RecordsController#new as HTML
1137
+ Parameters: {"type"=>"Audio"}
1138
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1139
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1140
+ Usergroups are ["public", "registered"]
1141
+ Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
1142
+  (10.6ms) rollback transaction
1143
+  (0.1ms) begin transaction
1144
+  (0.1ms) SAVEPOINT active_record_1
1145
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1146
+ Binary data inserted for `string` type on column `encrypted_password`
1147
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 20:12:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$G/KXmyKWX5dQQEFcQoKqluUrcEktppj2jYxpe5NQd0GBvztlcn3sK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 20:12:12 UTC +00:00]]
1148
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1149
+ Processing by RecordsController#create as HTML
1150
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1151
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1152
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1153
+ Usergroups are ["public", "registered"]
1154
+ Redirected to http://test.host/catalog/tufts:0001
1155
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
1156
+  (5.7ms) rollback transaction
1157
+  (0.1ms) begin transaction
1158
+  (0.1ms) SAVEPOINT active_record_1
1159
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1160
+ Binary data inserted for `string` type on column `encrypted_password`
1161
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 20:12:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$2L.M/wTdXS91nRPkdNKRKunck32asiJ4e9UVtQDiZGRC0S/qhVsXa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 20:12:12 UTC +00:00]]
1162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1163
+ Processing by RecordsController#create as HTML
1164
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1165
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1166
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1167
+ Usergroups are ["public", "registered"]
1168
+ Redirected to http://test.host/catalog/tufts:0001
1169
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
1170
+  (1.4ms) rollback transaction
1171
+  (0.1ms) begin transaction
1172
+  (0.0ms) SAVEPOINT active_record_1
1173
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1174
+ Binary data inserted for `string` type on column `encrypted_password`
1175
+ SQL (355.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 20:12:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$8CySX3w8vmQyGxfmsFO7hOcv0MaGDJv9lW7jh3ckuokSCFYX78uW2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 20:12:12 UTC +00:00]]
1176
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1177
+ Processing by RecordsController#update as HTML
1178
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
1179
+ Redirected to http://test.host/catalog/tufts:0001
1180
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
1181
+  (13.9ms) rollback transaction
1182
+  (0.1ms) begin transaction
1183
+  (0.1ms) SAVEPOINT active_record_1
1184
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1185
+ Binary data inserted for `string` type on column `encrypted_password`
1186
+ SQL (398.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 30 Apr 2013 20:12:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$F74OfZLhu46OGk6ZB5zd1uJme6LVLzRYOkm6daX8HrgE8DFkBZstK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 30 Apr 2013 20:12:13 UTC +00:00]]
1187
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1188
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1189
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1190
+ Usergroups are ["public", "registered"]
1191
+ Processing by RecordsController#new as HTML
1192
+ Completed 500 Internal Server Error in 715ms
1193
+  (7.7ms) rollback transaction
1194
+ Connecting to database specified by database.yml
1195
+  (0.4ms) begin transaction
1196
+  (0.1ms) SAVEPOINT active_record_1
1197
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1198
+ Binary data inserted for `string` type on column `encrypted_password`
1199
+ SQL (72.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:55:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$ygVc0nDdFjzMERiHWmOcyeAwG7f88T0Yjtdf4uxd5K7ELMrw0fIC2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:55:04 UTC +00:00]]
1200
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1201
+ Processing by RecordsController#new as HTML
1202
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1203
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1204
+ Usergroups are ["public", "registered"]
1205
+ Rendered /Users/justin/workspace/hydra-editor/app/views/records/choose_type.html.erb within layouts/blacklight (0.3ms)
1206
+ Completed 200 OK in 26ms (Views: 7.8ms | ActiveRecord: 0.4ms)
1207
+  (0.5ms) rollback transaction
1208
+  (0.1ms) begin transaction
1209
+  (0.0ms) SAVEPOINT active_record_1
1210
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1211
+ Binary data inserted for `string` type on column `encrypted_password`
1212
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:55:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$Ck9V2ZKdfxPNBO38Sqns6.9nlazfwONc0lAk11rW5J0EeL0MT0EAW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:55:04 UTC +00:00]]
1213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1214
+ Processing by RecordsController#new as HTML
1215
+ Parameters: {"type"=>"Audio"}
1216
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1217
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1218
+ Usergroups are ["public", "registered"]
1219
+ Completed 200 OK in 112ms (Views: 2.1ms | ActiveRecord: 0.3ms)
1220
+  (0.6ms) rollback transaction
1221
+  (0.1ms) begin transaction
1222
+  (0.0ms) SAVEPOINT active_record_1
1223
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1224
+ Binary data inserted for `string` type on column `encrypted_password`
1225
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:55:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$NhAzqblzzU9klKCteBpRFeshxZMjDr41/HK7gdUKNkHjJqZJQW6kO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:55:05 UTC +00:00]]
1226
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1227
+ Processing by RecordsController#update as HTML
1228
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
1229
+ ActiveFedora: loading fedora config from /Users/justin/workspace/hydra-editor/spec/dummy/config/fedora.yml
1230
+ ActiveFedora: loading solr config from /Users/justin/workspace/hydra-editor/spec/dummy/config/solr.yml
1231
+ Loaded datastream profile tufts:0001/RELS-EXT (3.4ms)
1232
+ Loaded datastream profile tufts:0001/descMetadata (3.8ms)
1233
+ Redirected to http://test.host/catalog/tufts:0001
1234
+ Completed 302 Found in 1023ms (ActiveRecord: 0.0ms)
1235
+  (0.6ms) rollback transaction
1236
+  (0.1ms) begin transaction
1237
+  (0.0ms) SAVEPOINT active_record_1
1238
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1239
+ Binary data inserted for `string` type on column `encrypted_password`
1240
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:55:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$.GdPV5KITrOE95dDoedFZeywAUumWFXFrhr5eoHLBKGYDNTPRfxAW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:55:06 UTC +00:00]]
1241
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1242
+ Processing by RecordsController#create as HTML
1243
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1244
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1245
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1246
+ Usergroups are ["public", "registered"]
1247
+ Redirected to http://test.host/catalog/tufts:0001
1248
+ Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
1249
+  (0.5ms) rollback transaction
1250
+  (0.1ms) begin transaction
1251
+  (0.0ms) SAVEPOINT active_record_1
1252
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1253
+ Binary data inserted for `string` type on column `encrypted_password`
1254
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:55:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$gt9CpY2dAzfDkQG.W0KhsuC8svuuEs340wwT6AlpMqpGj1NEUICfK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:55:06 UTC +00:00]]
1255
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1256
+ Processing by RecordsController#create as JSON
1257
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1258
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1259
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1260
+ Usergroups are ["public", "registered"]
1261
+ Redirected to http://test.host/catalog/tufts:0001
1262
+ Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
1263
+  (0.5ms) rollback transaction
1264
+  (0.1ms) begin transaction
1265
+  (0.1ms) SAVEPOINT active_record_1
1266
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1267
+ Binary data inserted for `string` type on column `encrypted_password`
1268
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:55:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$X4HzW.JgmPQngh7QRTts.euIBahyqizxW5mhJyoxJxDCs5KBQnd/C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:55:06 UTC +00:00]]
1269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1270
+ Processing by RecordsController#create as HTML
1271
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1272
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1273
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1274
+ Usergroups are ["public", "registered"]
1275
+ Redirected to http://test.host/catalog/tufts:0001
1276
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
1277
+  (0.5ms) rollback transaction
1278
+  (0.1ms) begin transaction
1279
+  (0.1ms) SAVEPOINT active_record_1
1280
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1281
+ Binary data inserted for `string` type on column `encrypted_password`
1282
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:55:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$zmZdxcLVc74ZrhQHOoPAouvKU5Pk5MkJoS6IS43HHGmGdOOESIO.O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:55:06 UTC +00:00]]
1283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1284
+ Processing by RecordsController#edit as HTML
1285
+ Parameters: {"id"=>"test:7"}
1286
+ Completed 200 OK in 6ms (Views: 2.2ms | ActiveRecord: 0.0ms)
1287
+  (0.5ms) rollback transaction
1288
+  (0.1ms) begin transaction
1289
+  (0.1ms) SAVEPOINT active_record_1
1290
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
1291
+ Binary data inserted for `string` type on column `encrypted_password`
1292
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:55:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$oShNknA9Svp8KSyqo0lJbers9GgchJc7nTHLZK.fnABrmCp1P29US"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:55:06 UTC +00:00]]
1293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1294
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1295
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
1296
+ Usergroups are ["public", "registered"]
1297
+ Processing by RecordsController#new as HTML
1298
+ Completed 500 Internal Server Error in 113ms
1299
+  (0.6ms) rollback transaction
1300
+  (0.1ms) begin transaction
1301
+  (0.1ms) rollback transaction
1302
+  (0.1ms) begin transaction
1303
+  (0.1ms) rollback transaction
1304
+  (0.1ms) begin transaction
1305
+  (0.1ms) rollback transaction
1306
+  (0.0ms) begin transaction
1307
+  (0.0ms) rollback transaction
1308
+ Connecting to database specified by database.yml
1309
+  (0.4ms) begin transaction
1310
+  (0.1ms) rollback transaction
1311
+  (0.1ms) begin transaction
1312
+  (0.0ms) rollback transaction
1313
+  (0.0ms) begin transaction
1314
+  (0.0ms) rollback transaction
1315
+  (0.0ms) begin transaction
1316
+  (0.0ms) rollback transaction
1317
+  (0.0ms) begin transaction
1318
+  (0.1ms) SAVEPOINT active_record_1
1319
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1320
+ Binary data inserted for `string` type on column `encrypted_password`
1321
+ SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:56:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$5GBFEpwfeaADUiWcJdPcF.TRSpaTwqx3UdOYLdHeALQ9DO9rGm6da"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:56:47 UTC +00:00]]
1322
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1323
+ Processing by RecordsController#create as HTML
1324
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1325
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1326
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1327
+ Usergroups are ["public", "registered"]
1328
+ Redirected to http://test.host/catalog/tufts:0001
1329
+ Completed 302 Found in 10ms (ActiveRecord: 0.2ms)
1330
+  (0.7ms) rollback transaction
1331
+  (0.1ms) begin transaction
1332
+  (0.0ms) SAVEPOINT active_record_1
1333
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1334
+ Binary data inserted for `string` type on column `encrypted_password`
1335
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:56:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$K.v/v0AlFJaDT1Z1L4vYFu1plL9EXZP1Tt9M42ZYngdXKmdpdjDB2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:56:47 UTC +00:00]]
1336
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1337
+ Processing by RecordsController#create as JSON
1338
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1339
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1340
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1341
+ Usergroups are ["public", "registered"]
1342
+ Redirected to http://test.host/catalog/tufts:0001
1343
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
1344
+  (0.7ms) rollback transaction
1345
+  (0.1ms) begin transaction
1346
+  (0.1ms) SAVEPOINT active_record_1
1347
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1348
+ Binary data inserted for `string` type on column `encrypted_password`
1349
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:56:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$PGHzJFwC2qHnwXfS6Lv3oOPzskx9X5ZiaBD2S0s.ZUbP4spdjtyfm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:56:47 UTC +00:00]]
1350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1351
+ Processing by RecordsController#create as HTML
1352
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1353
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1354
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1355
+ Usergroups are ["public", "registered"]
1356
+ Redirected to http://test.host/catalog/tufts:0001
1357
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
1358
+  (0.8ms) rollback transaction
1359
+  (0.1ms) begin transaction
1360
+  (0.1ms) SAVEPOINT active_record_1
1361
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1362
+ Binary data inserted for `string` type on column `encrypted_password`
1363
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:56:47 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$JUGmlXWc8GICHAACKmB4huk/Gg9mT1de0C6/Nu0kxsnbeU2GVSLUe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:56:47 UTC +00:00]]
1364
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1365
+ Processing by RecordsController#update as HTML
1366
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
1367
+ ActiveFedora: loading fedora config from /Users/justin/workspace/hydra-editor/spec/dummy/config/fedora.yml
1368
+ ActiveFedora: loading solr config from /Users/justin/workspace/hydra-editor/spec/dummy/config/solr.yml
1369
+ Loaded datastream list for tufts:0001 (6.1ms)
1370
+ Loaded datastream profile tufts:0001/RELS-EXT (3.7ms)
1371
+ Loaded datastream content tufts:0001/RELS-EXT (3.3ms)
1372
+ Loaded datastream profile tufts:0001/descMetadata (3.7ms)
1373
+ Loaded datastream profile tufts:0001/DC (3.5ms)
1374
+ Loaded datastream content tufts:0001/DC (3.4ms)
1375
+ Loaded datastream profile tufts:0001/RELS-EXT (3.6ms)
1376
+ Loaded datastream profile tufts:0001/descMetadata (3.5ms)
1377
+ Redirected to http://test.host/catalog/tufts:0001
1378
+ Completed 302 Found in 379ms (ActiveRecord: 0.0ms)
1379
+  (0.6ms) rollback transaction
1380
+  (0.1ms) begin transaction
1381
+  (0.1ms) SAVEPOINT active_record_1
1382
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1383
+ Binary data inserted for `string` type on column `encrypted_password`
1384
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:56:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$WTQeNILEOe05xtbo/kOW6.7wOwsOSFvVLJFVd2rJmoWfUhGuEBsiG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:56:48 UTC +00:00]]
1385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1386
+ Processing by RecordsController#edit as HTML
1387
+ Parameters: {"id"=>"test:7"}
1388
+ Completed 200 OK in 8ms (Views: 6.1ms | ActiveRecord: 0.0ms)
1389
+  (0.6ms) rollback transaction
1390
+  (0.1ms) begin transaction
1391
+  (0.1ms) SAVEPOINT active_record_1
1392
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1393
+ Binary data inserted for `string` type on column `encrypted_password`
1394
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:56:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$rp..sMLSoRaNVANmnCEnlu2sYpA3ekORD.46F6S1hx8xuUqM51FF2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:56:48 UTC +00:00]]
1395
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1396
+ Processing by RecordsController#new as HTML
1397
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1398
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1399
+ Usergroups are ["public", "registered"]
1400
+ Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.2ms)
1401
+  (0.7ms) rollback transaction
1402
+  (0.1ms) begin transaction
1403
+  (0.1ms) SAVEPOINT active_record_1
1404
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1405
+ Binary data inserted for `string` type on column `encrypted_password`
1406
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:56:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$2uWr99Ffg3E.f/8CktqPbOxqMsbjpOU6Jo6CFsipLHv.NtVgO1uRO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:56:48 UTC +00:00]]
1407
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1408
+ Processing by RecordsController#new as HTML
1409
+ Parameters: {"type"=>"Audio"}
1410
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1411
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1412
+ Usergroups are ["public", "registered"]
1413
+ Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
1414
+  (0.7ms) rollback transaction
1415
+  (0.0ms) begin transaction
1416
+  (0.0ms) SAVEPOINT active_record_1
1417
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
1418
+ Binary data inserted for `string` type on column `encrypted_password`
1419
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:56:48 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$dyCyLqBNtq5mWL7yUVi3AuzGVYwyAgUN182tQ9uq1UjOgPjNPBbvK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:56:48 UTC +00:00]]
1420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1421
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1422
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
1423
+ Usergroups are ["public", "registered"]
1424
+ Processing by RecordsController#new as HTML
1425
+ Completed 500 Internal Server Error in 65ms
1426
+  (0.6ms) rollback transaction
1427
+ Connecting to database specified by database.yml
1428
+  (0.4ms) begin transaction
1429
+  (0.1ms) rollback transaction
1430
+  (0.0ms) begin transaction
1431
+  (0.0ms) rollback transaction
1432
+  (0.1ms) begin transaction
1433
+  (0.0ms) rollback transaction
1434
+  (0.0ms) begin transaction
1435
+  (0.0ms) rollback transaction
1436
+  (0.0ms) begin transaction
1437
+  (0.1ms) SAVEPOINT active_record_1
1438
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1439
+ Binary data inserted for `string` type on column `encrypted_password`
1440
+ SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:58:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$zLljS4QNObIW74K4vJ.9Y.MLF/lFYKeUBi6NDxfgqhE4WEHFIyk0a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:58:02 UTC +00:00]]
1441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1442
+ Processing by RecordsController#update as HTML
1443
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
1444
+ Redirected to http://test.host/catalog/tufts:0001
1445
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
1446
+  (0.7ms) rollback transaction
1447
+  (0.1ms) begin transaction
1448
+  (0.0ms) SAVEPOINT active_record_1
1449
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1450
+ Binary data inserted for `string` type on column `encrypted_password`
1451
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:58:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$cdtzIDDXJTAGLF2eXHRAIO/Qi.eFlwAIP3sX6GvZphEHra.ytYJFO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:58:02 UTC +00:00]]
1452
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1453
+ Processing by RecordsController#update as JSON
1454
+ Parameters: {"audio"=>{"title"=>"My title"}, "id"=>"test:7"}
1455
+ Completed 204 No Content in 1ms (ActiveRecord: 0.0ms)
1456
+  (0.7ms) rollback transaction
1457
+  (0.0ms) begin transaction
1458
+  (0.0ms) SAVEPOINT active_record_1
1459
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1460
+ Binary data inserted for `string` type on column `encrypted_password`
1461
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:58:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$TF5BY0PUyDupne/VEEcH9OG2o013S8krNC7UPCez.3tA3gY0kE16u"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:58:03 UTC +00:00]]
1462
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1463
+ Processing by RecordsController#create as HTML
1464
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1465
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1466
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1467
+ Usergroups are ["public", "registered"]
1468
+ Redirected to http://test.host/catalog/tufts:0001
1469
+ Completed 302 Found in 56ms (ActiveRecord: 0.2ms)
1470
+  (0.6ms) rollback transaction
1471
+  (0.0ms) begin transaction
1472
+  (0.0ms) SAVEPOINT active_record_1
1473
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1474
+ Binary data inserted for `string` type on column `encrypted_password`
1475
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:58:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$zBCVjcGmmRFkMAHZhmWrpeGQoernBdXGseIr0qRIFD4UpHBK1EcKq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:58:03 UTC +00:00]]
1476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1477
+ Processing by RecordsController#create as JSON
1478
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1479
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1480
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1481
+ Usergroups are ["public", "registered"]
1482
+ Redirected to http://test.host/catalog/tufts:0001
1483
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
1484
+  (0.7ms) rollback transaction
1485
+  (0.0ms) begin transaction
1486
+  (0.0ms) SAVEPOINT active_record_1
1487
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1488
+ Binary data inserted for `string` type on column `encrypted_password`
1489
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:58:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$N72QF11S2MqBdjHxN4QMYO3mqwOcZRriQSLUlOhgPtUDceJRuL5Ta"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:58:03 UTC +00:00]]
1490
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1491
+ Processing by RecordsController#create as HTML
1492
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1493
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1494
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1495
+ Usergroups are ["public", "registered"]
1496
+ Redirected to http://test.host/catalog/tufts:0001
1497
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
1498
+  (0.6ms) rollback transaction
1499
+  (0.1ms) begin transaction
1500
+  (0.0ms) SAVEPOINT active_record_1
1501
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1502
+ Binary data inserted for `string` type on column `encrypted_password`
1503
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:58:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$JC7C5Bp.5fmlOW/zFVJpmeV7K0Jun92dXP.qawrJDQcVL.GinFhpO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:58:03 UTC +00:00]]
1504
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1505
+ Processing by RecordsController#edit as HTML
1506
+ Parameters: {"id"=>"test:7"}
1507
+ Completed 200 OK in 8ms (Views: 5.6ms | ActiveRecord: 0.0ms)
1508
+  (0.8ms) rollback transaction
1509
+  (0.1ms) begin transaction
1510
+  (0.1ms) SAVEPOINT active_record_1
1511
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1512
+ Binary data inserted for `string` type on column `encrypted_password`
1513
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:58:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$2vGQ6sJoK.CzdN7GjvDCP.MVLLFAZK0T9BqFdQDD4ZkIvA.pQ8k.6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:58:03 UTC +00:00]]
1514
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1515
+ Processing by RecordsController#new as HTML
1516
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1517
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1518
+ Usergroups are ["public", "registered"]
1519
+ Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.2ms)
1520
+  (0.6ms) rollback transaction
1521
+  (0.0ms) begin transaction
1522
+  (0.1ms) SAVEPOINT active_record_1
1523
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
1524
+ Binary data inserted for `string` type on column `encrypted_password`
1525
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:58:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$IP6mWymBX3iSzbW/weTlj.G85F60ZZSZw1iVU7Pkvg.lUbJ2nI3RG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:58:03 UTC +00:00]]
1526
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1527
+ Processing by RecordsController#new as HTML
1528
+ Parameters: {"type"=>"Audio"}
1529
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1530
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
1531
+ Usergroups are ["public", "registered"]
1532
+ Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
1533
+  (0.7ms) rollback transaction
1534
+  (0.1ms) begin transaction
1535
+  (0.1ms) SAVEPOINT active_record_1
1536
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
1537
+ Binary data inserted for `string` type on column `encrypted_password`
1538
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:58:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person9@example.com"], ["encrypted_password", "$2a$04$j/z5DZAsFupKapj39pMNG.N3jhCUKeUrsbZpHsVHwNlWw545SChMu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:58:03 UTC +00:00]]
1539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1540
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1541
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
1542
+ Usergroups are ["public", "registered"]
1543
+ Processing by RecordsController#new as HTML
1544
+ Completed 500 Internal Server Error in 12ms
1545
+  (0.7ms) rollback transaction
1546
+ Connecting to database specified by database.yml
1547
+  (0.4ms) begin transaction
1548
+  (0.1ms) SAVEPOINT active_record_1
1549
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1550
+ Binary data inserted for `string` type on column `encrypted_password`
1551
+ SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$jQXO7ZN4eUrVoRsdRiGfkOBmxptyE/gnxJJotm2NITmSyW.xxlZsO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:25 UTC +00:00]]
1552
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1553
+ Processing by RecordsController#new as HTML
1554
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1555
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1556
+ Usergroups are ["public", "registered"]
1557
+ Rendered /Users/justin/workspace/hydra-editor/app/views/records/choose_type.html.erb within layouts/blacklight (0.2ms)
1558
+ Completed 200 OK in 12ms (Views: 7.2ms | ActiveRecord: 0.3ms)
1559
+  (0.7ms) rollback transaction
1560
+  (0.1ms) begin transaction
1561
+  (0.0ms) SAVEPOINT active_record_1
1562
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1563
+ Binary data inserted for `string` type on column `encrypted_password`
1564
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$itg5qdaHfs4HqUvUtbiAoOSsVyqv7pt.U5xkZYS3xdPSqrdsXm0m2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:25 UTC +00:00]]
1565
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1566
+ Processing by RecordsController#new as HTML
1567
+ Parameters: {"type"=>"Audio"}
1568
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1569
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1570
+ Usergroups are ["public", "registered"]
1571
+ Completed 200 OK in 72ms (Views: 1.5ms | ActiveRecord: 0.2ms)
1572
+  (6.0ms) rollback transaction
1573
+  (0.1ms) begin transaction
1574
+  (0.1ms) SAVEPOINT active_record_1
1575
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1576
+ Binary data inserted for `string` type on column `encrypted_password`
1577
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$Fz1.CwUMCFGsNYzMUi8muud/H5fT049W0M00Zlxt8YK6igIAxY6tm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:25 UTC +00:00]]
1578
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1579
+ Processing by RecordsController#create as HTML
1580
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1581
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1582
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1583
+ Usergroups are ["public", "registered"]
1584
+ Completed 500 Internal Server Error in 6ms
1585
+  (0.6ms) rollback transaction
1586
+  (0.1ms) begin transaction
1587
+  (0.1ms) SAVEPOINT active_record_1
1588
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1589
+ Binary data inserted for `string` type on column `encrypted_password`
1590
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$D6uDRwJ.fPBWVrOFZlwD2e6SxXJu4Z9nUOaiCDeIiHjVUdMAk1hLC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:25 UTC +00:00]]
1591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1592
+ Processing by RecordsController#create as JSON
1593
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1594
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1595
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1596
+ Usergroups are ["public", "registered"]
1597
+ Completed 500 Internal Server Error in 5ms
1598
+  (0.6ms) rollback transaction
1599
+  (0.1ms) begin transaction
1600
+  (0.1ms) SAVEPOINT active_record_1
1601
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1602
+ Binary data inserted for `string` type on column `encrypted_password`
1603
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$ECHqwSVKM/YM1Ik4qjTrqezcUXPauyOTlLxqKOyEHNMFrJfWzUYzi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:25 UTC +00:00]]
1604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1605
+ Processing by RecordsController#create as HTML
1606
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1607
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1608
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1609
+ Usergroups are ["public", "registered"]
1610
+ Completed 500 Internal Server Error in 5ms
1611
+  (0.6ms) rollback transaction
1612
+  (0.1ms) begin transaction
1613
+  (0.0ms) SAVEPOINT active_record_1
1614
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1615
+ Binary data inserted for `string` type on column `encrypted_password`
1616
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$eS9bUhDhIut.gp5V9clzcOV8yVFvwHFgAQu8FoVeyip58/pzzrxOS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:25 UTC +00:00]]
1617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1618
+ Processing by RecordsController#edit as HTML
1619
+ Parameters: {"id"=>"test:7"}
1620
+ Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1621
+  (0.6ms) rollback transaction
1622
+  (0.1ms) begin transaction
1623
+  (0.0ms) SAVEPOINT active_record_1
1624
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1625
+ Binary data inserted for `string` type on column `encrypted_password`
1626
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$cjyMmVQdgtGRzmXBbYI3me4ori3DIMdOdg8PFD69FOju/VXKQnLhm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:25 UTC +00:00]]
1627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1628
+ Processing by RecordsController#update as HTML
1629
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
1630
+ Redirected to http://test.host/catalog/tufts:0001
1631
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
1632
+  (0.7ms) rollback transaction
1633
+  (0.1ms) begin transaction
1634
+  (0.0ms) SAVEPOINT active_record_1
1635
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
1636
+ Binary data inserted for `string` type on column `encrypted_password`
1637
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$/IXKsPRc8X3MWy9A5Dnd8u.1/FIQ841TW4VSvHT3VRj5oaJN/2Acu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:25 UTC +00:00]]
1638
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1639
+ Processing by RecordsController#update as JSON
1640
+ Parameters: {"audio"=>{"title"=>"My title"}, "id"=>"test:7"}
1641
+ Completed 204 No Content in 52ms (ActiveRecord: 0.0ms)
1642
+  (0.7ms) rollback transaction
1643
+  (0.1ms) begin transaction
1644
+  (0.0ms) SAVEPOINT active_record_1
1645
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
1646
+ Binary data inserted for `string` type on column `encrypted_password`
1647
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person9@example.com"], ["encrypted_password", "$2a$04$.QV8RKhYmI8yzwGRlvcOWu42MkNu/Z8mrYNbzkjg2N5VU9gMdyRV2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:25 UTC +00:00]]
1648
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1649
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1650
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
1651
+ Usergroups are ["public", "registered"]
1652
+ Processing by RecordsController#new as HTML
1653
+ Completed 500 Internal Server Error in 13ms
1654
+  (0.6ms) rollback transaction
1655
+  (0.1ms) begin transaction
1656
+  (0.0ms) rollback transaction
1657
+  (0.0ms) begin transaction
1658
+  (0.0ms) rollback transaction
1659
+  (0.0ms) begin transaction
1660
+  (0.0ms) rollback transaction
1661
+  (0.0ms) begin transaction
1662
+  (0.0ms) rollback transaction
1663
+ Connecting to database specified by database.yml
1664
+  (0.4ms) begin transaction
1665
+  (0.1ms) rollback transaction
1666
+  (0.0ms) begin transaction
1667
+  (0.1ms) rollback transaction
1668
+  (0.0ms) begin transaction
1669
+  (0.0ms) rollback transaction
1670
+  (0.0ms) begin transaction
1671
+  (0.1ms) SAVEPOINT active_record_1
1672
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1673
+ Binary data inserted for `string` type on column `encrypted_password`
1674
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$Q.D6p7JiaAUrOKSCDIiwOeBd730MlBIImV8GWu9jlSIMWe1m/k/ay"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:57 UTC +00:00]]
1675
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1676
+ Processing by RecordsController#edit as HTML
1677
+ Parameters: {"id"=>"test:7"}
1678
+ Completed 200 OK in 8ms (Views: 5.5ms | ActiveRecord: 0.0ms)
1679
+  (79.5ms) rollback transaction
1680
+  (0.1ms) begin transaction
1681
+  (0.1ms) SAVEPOINT active_record_1
1682
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1683
+ Binary data inserted for `string` type on column `encrypted_password`
1684
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$Os32gSfNKUG1.z//mNDo4uJC8JkPE46BDEu1RWIpwsbKyMQrD7s8C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:57 UTC +00:00]]
1685
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1686
+ Processing by RecordsController#create as HTML
1687
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1688
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1689
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1690
+ Usergroups are ["public", "registered"]
1691
+ Redirected to http://test.host/catalog/tufts:0001
1692
+ Completed 302 Found in 6ms (ActiveRecord: 0.2ms)
1693
+  (25.4ms) rollback transaction
1694
+  (0.1ms) begin transaction
1695
+  (0.1ms) SAVEPOINT active_record_1
1696
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1697
+ Binary data inserted for `string` type on column `encrypted_password`
1698
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$yiK9czmRpRVrSByesx04YOnUpXmfRoPq5l5gt/8CHqOEqTiwsHs6a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:57 UTC +00:00]]
1699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1700
+ Processing by RecordsController#create as JSON
1701
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1702
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1703
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1704
+ Usergroups are ["public", "registered"]
1705
+ Completed 500 Internal Server Error in 5ms
1706
+  (0.6ms) rollback transaction
1707
+  (0.0ms) begin transaction
1708
+  (0.0ms) SAVEPOINT active_record_1
1709
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1710
+ Binary data inserted for `string` type on column `encrypted_password`
1711
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$xSGXVIfwERj.E1CCjlPZk.p.J.bN74P7BkFB.wAB5gQxlz.8zXxmu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:57 UTC +00:00]]
1712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1713
+ Processing by RecordsController#create as HTML
1714
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1715
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1716
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1717
+ Usergroups are ["public", "registered"]
1718
+ Redirected to http://test.host/catalog/tufts:0001
1719
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
1720
+  (0.6ms) rollback transaction
1721
+  (0.1ms) begin transaction
1722
+  (0.0ms) SAVEPOINT active_record_1
1723
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1724
+ Binary data inserted for `string` type on column `encrypted_password`
1725
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$YC5GeMYEDqPg2v.Ue7/ncuq280zZSHO5W1wyxHYcZmIjS50ARjj4i"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:57 UTC +00:00]]
1726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1727
+ Processing by RecordsController#new as HTML
1728
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1729
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1730
+ Usergroups are ["public", "registered"]
1731
+ Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.2ms)
1732
+  (0.8ms) rollback transaction
1733
+  (0.1ms) begin transaction
1734
+  (0.0ms) SAVEPOINT active_record_1
1735
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1736
+ Binary data inserted for `string` type on column `encrypted_password`
1737
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$VIG88tnOPXqv2DUhjiGlguYtPOWdN9NH4HQgHoZWBzTgC3bmp0qC6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:57 UTC +00:00]]
1738
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1739
+ Processing by RecordsController#new as HTML
1740
+ Parameters: {"type"=>"Audio"}
1741
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1742
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1743
+ Usergroups are ["public", "registered"]
1744
+ Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
1745
+  (0.6ms) rollback transaction
1746
+  (0.0ms) begin transaction
1747
+  (0.0ms) SAVEPOINT active_record_1
1748
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1749
+ Binary data inserted for `string` type on column `encrypted_password`
1750
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$bjqptNG6mjpEPZTE0wCSKegZRCQyUdO9gwCU/8uNJCkH5aO.aMRAG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:57 UTC +00:00]]
1751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1752
+ Processing by RecordsController#update as HTML
1753
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
1754
+ Redirected to http://test.host/catalog/tufts:0001
1755
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1756
+  (0.6ms) rollback transaction
1757
+  (0.1ms) begin transaction
1758
+  (0.0ms) SAVEPOINT active_record_1
1759
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
1760
+ Binary data inserted for `string` type on column `encrypted_password`
1761
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$YLNg0RnZfx8jpubIzy2RreZpsXkXXxejiVE/ll6dTaILBVReWkcp."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:57 UTC +00:00]]
1762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1763
+ Processing by RecordsController#update as JSON
1764
+ Parameters: {"audio"=>{"title"=>"My title"}, "id"=>"test:7"}
1765
+ Completed 204 No Content in 1ms (ActiveRecord: 0.0ms)
1766
+  (0.6ms) rollback transaction
1767
+  (0.1ms) begin transaction
1768
+  (0.0ms) SAVEPOINT active_record_1
1769
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
1770
+ Binary data inserted for `string` type on column `encrypted_password`
1771
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 21:59:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person9@example.com"], ["encrypted_password", "$2a$04$hHG7KITaVNo1xFUdlwjL8ecZ3xoJuZB51O1lxoR96k5pnrjH.jTlu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 21:59:57 UTC +00:00]]
1772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1773
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1774
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
1775
+ Usergroups are ["public", "registered"]
1776
+ Processing by RecordsController#new as HTML
1777
+ Completed 500 Internal Server Error in 64ms
1778
+  (0.6ms) rollback transaction
1779
+  (0.0ms) begin transaction
1780
+  (0.0ms) rollback transaction
1781
+ Connecting to database specified by database.yml
1782
+  (0.4ms) begin transaction
1783
+  (0.1ms) rollback transaction
1784
+  (0.0ms) begin transaction
1785
+  (0.0ms) rollback transaction
1786
+  (0.0ms) begin transaction
1787
+  (0.0ms) rollback transaction
1788
+  (0.0ms) begin transaction
1789
+  (0.1ms) SAVEPOINT active_record_1
1790
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1791
+ Binary data inserted for `string` type on column `encrypted_password`
1792
+ SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:00:44 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$SnzSwBYW/F6.99uRs/iDa.o8bJ8rqf0EuusoxLmVcr4wGeI1IvtDS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:00:44 UTC +00:00]]
1793
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1794
+ Processing by RecordsController#create as HTML
1795
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1796
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1797
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1798
+ Usergroups are ["public", "registered"]
1799
+ Redirected to http://test.host/catalog/tufts:0001
1800
+ Completed 302 Found in 10ms (ActiveRecord: 0.2ms)
1801
+  (12.5ms) rollback transaction
1802
+  (0.1ms) begin transaction
1803
+  (0.1ms) SAVEPOINT active_record_1
1804
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1805
+ Binary data inserted for `string` type on column `encrypted_password`
1806
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:00:44 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$UBCR6A0RAg2HETtl60/hme.4K7Hs/1M5aBx1gWSnqyCT0R4qcjTQa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:00:44 UTC +00:00]]
1807
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1808
+ Processing by RecordsController#create as JSON
1809
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1810
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1811
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1812
+ Usergroups are ["public", "registered"]
1813
+ Completed 500 Internal Server Error in 57ms
1814
+  (41.9ms) rollback transaction
1815
+  (0.1ms) begin transaction
1816
+  (0.1ms) SAVEPOINT active_record_1
1817
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1818
+ Binary data inserted for `string` type on column `encrypted_password`
1819
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:00:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$jDwot6J6hva0CEPNoc2B0uYqLdIYKjGKJPyqRkK.0YF81umvZ4QXK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:00:45 UTC +00:00]]
1820
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1821
+ Processing by RecordsController#create as HTML
1822
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1823
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1824
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1825
+ Usergroups are ["public", "registered"]
1826
+ Redirected to http://test.host/catalog/tufts:0001
1827
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
1828
+  (1.0ms) rollback transaction
1829
+  (0.1ms) begin transaction
1830
+  (0.0ms) SAVEPOINT active_record_1
1831
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1832
+ Binary data inserted for `string` type on column `encrypted_password`
1833
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:00:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$kyzKYwQKcuJSiLtUhvJBNejxNICg4mPGA6dMeFqVEsPAsxk83M/im"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:00:45 UTC +00:00]]
1834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1835
+ Processing by RecordsController#edit as HTML
1836
+ Parameters: {"id"=>"test:7"}
1837
+ Completed 200 OK in 9ms (Views: 6.5ms | ActiveRecord: 0.0ms)
1838
+  (0.6ms) rollback transaction
1839
+  (0.0ms) begin transaction
1840
+  (0.1ms) SAVEPOINT active_record_1
1841
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1842
+ Binary data inserted for `string` type on column `encrypted_password`
1843
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:00:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$4rYcNRXSL2nezK7Hzrf4v.2EXJBswzU1ZylSAjs6fRC4VkNqPqfd6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:00:45 UTC +00:00]]
1844
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1845
+ Processing by RecordsController#new as HTML
1846
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1847
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1848
+ Usergroups are ["public", "registered"]
1849
+ Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.2ms)
1850
+  (0.8ms) rollback transaction
1851
+  (0.1ms) begin transaction
1852
+  (0.1ms) SAVEPOINT active_record_1
1853
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1854
+ Binary data inserted for `string` type on column `encrypted_password`
1855
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:00:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$9Ci.zBFiXjpVI0XDnUYhnuznLZWmqFRR1ogjfx9QyaS5gfqRK97z6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:00:45 UTC +00:00]]
1856
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1857
+ Processing by RecordsController#new as HTML
1858
+ Parameters: {"type"=>"Audio"}
1859
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1860
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1861
+ Usergroups are ["public", "registered"]
1862
+ Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
1863
+  (0.5ms) rollback transaction
1864
+  (0.1ms) begin transaction
1865
+  (0.1ms) SAVEPOINT active_record_1
1866
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1867
+ Binary data inserted for `string` type on column `encrypted_password`
1868
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:00:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$UOZPF3jS3lhw5steMxbEI.LSYBrUrLydNqOFo9hA7x/12HOErwpDG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:00:45 UTC +00:00]]
1869
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1870
+ Processing by RecordsController#update as HTML
1871
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
1872
+ Redirected to http://test.host/catalog/tufts:0001
1873
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
1874
+  (0.7ms) rollback transaction
1875
+  (0.1ms) begin transaction
1876
+  (0.1ms) SAVEPOINT active_record_1
1877
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
1878
+ Binary data inserted for `string` type on column `encrypted_password`
1879
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:00:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$hTRD/2sciDvVpMECYxbK..f/.HVSMwWLUSFnqaLaUnRcfBgPqeO4S"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:00:45 UTC +00:00]]
1880
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1881
+ Processing by RecordsController#update as JSON
1882
+ Parameters: {"audio"=>{"title"=>"My title"}, "id"=>"test:7"}
1883
+ Completed 204 No Content in 1ms (ActiveRecord: 0.0ms)
1884
+  (0.6ms) rollback transaction
1885
+  (0.0ms) begin transaction
1886
+  (0.0ms) SAVEPOINT active_record_1
1887
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
1888
+ Binary data inserted for `string` type on column `encrypted_password`
1889
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:00:45 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person9@example.com"], ["encrypted_password", "$2a$04$qacZDpFHtLmYFYoa2WWBH.noP6PjIn2j9oIK6gh/4lji.ldDZJ3oS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:00:45 UTC +00:00]]
1890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1891
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1892
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
1893
+ Usergroups are ["public", "registered"]
1894
+ Processing by RecordsController#new as HTML
1895
+ Completed 500 Internal Server Error in 12ms
1896
+  (1.1ms) rollback transaction
1897
+  (0.1ms) begin transaction
1898
+  (0.0ms) rollback transaction
1899
+ Connecting to database specified by database.yml
1900
+  (0.4ms) begin transaction
1901
+  (0.1ms) SAVEPOINT active_record_1
1902
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1903
+ Binary data inserted for `string` type on column `encrypted_password`
1904
+ SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:01:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$VjgEab70Y8Ggq15elWqrz.7nPnRnEruIljKmYlfmvBRS27s6huFeG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:01:12 UTC +00:00]]
1905
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1906
+ Processing by RecordsController#create as HTML
1907
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1908
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1909
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1910
+ Usergroups are ["public", "registered"]
1911
+ Redirected to http://test.host/catalog/tufts:0001
1912
+ Completed 302 Found in 9ms (ActiveRecord: 0.2ms)
1913
+  (0.8ms) rollback transaction
1914
+  (0.1ms) begin transaction
1915
+  (0.0ms) SAVEPOINT active_record_1
1916
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1917
+ Binary data inserted for `string` type on column `encrypted_password`
1918
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:01:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$.JRzZQ0w1eLHdCGJncAe.eBfnjgBjouVh2SRUH8sabZVMCVTGXkki"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:01:12 UTC +00:00]]
1919
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1920
+ Processing by RecordsController#create as JSON
1921
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1922
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1923
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1924
+ Usergroups are ["public", "registered"]
1925
+ Completed 500 Internal Server Error in 4ms
1926
+  (0.6ms) rollback transaction
1927
+  (0.1ms) begin transaction
1928
+  (0.0ms) SAVEPOINT active_record_1
1929
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1930
+ Binary data inserted for `string` type on column `encrypted_password`
1931
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:01:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$N761vRVW2q4NtixeQCCN5u8.O7gTVIV89XN9i5Pydex08SaA6s3He"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:01:12 UTC +00:00]]
1932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1933
+ Processing by RecordsController#create as HTML
1934
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
1935
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1936
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1937
+ Usergroups are ["public", "registered"]
1938
+ Redirected to http://test.host/catalog/tufts:0001
1939
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
1940
+  (0.6ms) rollback transaction
1941
+  (0.0ms) begin transaction
1942
+  (0.0ms) SAVEPOINT active_record_1
1943
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1944
+ Binary data inserted for `string` type on column `encrypted_password`
1945
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:01:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$ssCwolFn9f1U2Q.eD87/DulFg2w4dAvD4WO./3O1ddBdOcQvvLrFy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:01:12 UTC +00:00]]
1946
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1947
+ Processing by RecordsController#edit as HTML
1948
+ Parameters: {"id"=>"test:7"}
1949
+ Completed 200 OK in 10ms (Views: 7.7ms | ActiveRecord: 0.0ms)
1950
+  (0.6ms) rollback transaction
1951
+  (0.0ms) begin transaction
1952
+  (0.0ms) SAVEPOINT active_record_1
1953
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1954
+ Binary data inserted for `string` type on column `encrypted_password`
1955
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:01:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$l0rYl/QLYoUzoL4s7YYwQ.GiGQcn/zKKumzcnetWeWfNHUuwF20PG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:01:12 UTC +00:00]]
1956
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1957
+ Processing by RecordsController#new as HTML
1958
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1959
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1960
+ Usergroups are ["public", "registered"]
1961
+ Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.2ms)
1962
+  (0.6ms) rollback transaction
1963
+  (0.0ms) begin transaction
1964
+  (0.0ms) SAVEPOINT active_record_1
1965
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1966
+ Binary data inserted for `string` type on column `encrypted_password`
1967
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:01:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$/q0tt38oU4Z8kTCL3AXXWuOivCtW3hGJ1GY20LV6Oav2OhzM7/W1i"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:01:12 UTC +00:00]]
1968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1969
+ Processing by RecordsController#new as HTML
1970
+ Parameters: {"type"=>"Audio"}
1971
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1972
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1973
+ Usergroups are ["public", "registered"]
1974
+ Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
1975
+  (0.6ms) rollback transaction
1976
+  (0.1ms) begin transaction
1977
+  (0.0ms) SAVEPOINT active_record_1
1978
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1979
+ Binary data inserted for `string` type on column `encrypted_password`
1980
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:01:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$i0PHiIVBNgHp1GMXz6mxkO31zMfH7Qx251wHD.SWzcjeS4w3e79Se"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:01:12 UTC +00:00]]
1981
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1982
+ Processing by RecordsController#update as HTML
1983
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
1984
+ Redirected to http://test.host/catalog/tufts:0001
1985
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
1986
+  (0.6ms) rollback transaction
1987
+  (0.1ms) begin transaction
1988
+  (0.0ms) SAVEPOINT active_record_1
1989
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
1990
+ Binary data inserted for `string` type on column `encrypted_password`
1991
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:01:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$QE.br.Q8DAV6Zm6cbhdJheeqllWvTP5mNnoueeczjLINHte/AKK9a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:01:12 UTC +00:00]]
1992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1993
+ Processing by RecordsController#update as JSON
1994
+ Parameters: {"audio"=>{"title"=>"My title"}, "id"=>"test:7"}
1995
+ Completed 204 No Content in 1ms (ActiveRecord: 0.0ms)
1996
+  (0.6ms) rollback transaction
1997
+  (0.1ms) begin transaction
1998
+  (0.1ms) SAVEPOINT active_record_1
1999
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
2000
+ Binary data inserted for `string` type on column `encrypted_password`
2001
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:01:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person9@example.com"], ["encrypted_password", "$2a$04$HJb/8AORpC910X0lMd5VkO8umm5bkYUSL9iZdAH1l46HgqdqmDfri"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:01:12 UTC +00:00]]
2002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2003
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2004
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
2005
+ Usergroups are ["public", "registered"]
2006
+ Processing by RecordsController#new as HTML
2007
+ Completed 500 Internal Server Error in 12ms
2008
+  (0.6ms) rollback transaction
2009
+  (0.1ms) begin transaction
2010
+  (0.0ms) rollback transaction
2011
+  (0.1ms) begin transaction
2012
+  (0.1ms) rollback transaction
2013
+  (0.0ms) begin transaction
2014
+  (0.0ms) rollback transaction
2015
+  (0.0ms) begin transaction
2016
+  (0.0ms) rollback transaction
2017
+ Connecting to database specified by database.yml
2018
+ Connecting to database specified by database.yml
2019
+  (120.5ms) begin transaction
2020
+  (0.1ms) SAVEPOINT active_record_1
2021
+ User Exists (21.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
2022
+ Binary data inserted for `string` type on column `encrypted_password`
2023
+ SQL (66.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:09:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$cDwRh3oA3Ejua.KYVof/5eB8DJtoV69pffW5hXro5vaxsEDvZG62C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:09:53 UTC +00:00]]
2024
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2025
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2026
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
2027
+ Usergroups are ["public", "registered"]
2028
+ Processing by RecordsController#new as HTML
2029
+ Completed 500 Internal Server Error in 212ms
2030
+  (0.7ms) rollback transaction
2031
+  (0.1ms) begin transaction
2032
+  (0.1ms) SAVEPOINT active_record_1
2033
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
2034
+ Binary data inserted for `string` type on column `encrypted_password`
2035
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:09:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$4Nm90GbBh07YNqrFHmlcS.s3kpr9DhjrpQVyxrbnCaSZmjSaRyCS6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:09:53 UTC +00:00]]
2036
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2037
+ Processing by RecordsController#create as JSON
2038
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
2039
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2040
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
2041
+ Usergroups are ["public", "registered"]
2042
+ Completed 201 Created in 19ms (Views: 0.2ms | ActiveRecord: 0.2ms)
2043
+  (0.7ms) rollback transaction
2044
+  (0.1ms) begin transaction
2045
+  (0.0ms) SAVEPOINT active_record_1
2046
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
2047
+ Binary data inserted for `string` type on column `encrypted_password`
2048
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:09:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$88y1beZB0eE6PzMdxwvrb.jmmJvABkqoRxPKNT.QVHmc16g0JGLs2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:09:53 UTC +00:00]]
2049
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2050
+ Processing by RecordsController#create as HTML
2051
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
2052
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2053
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
2054
+ Usergroups are ["public", "registered"]
2055
+ Redirected to http://test.host/catalog/tufts:0001
2056
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
2057
+  (0.6ms) rollback transaction
2058
+  (0.1ms) begin transaction
2059
+  (0.0ms) SAVEPOINT active_record_1
2060
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
2061
+ Binary data inserted for `string` type on column `encrypted_password`
2062
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:09:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$m1g7Zgr36jS8Qer47ud6Cecf0/htyDu7lwsah4yCjNtRM2Qg5yPma"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:09:53 UTC +00:00]]
2063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2064
+ Processing by RecordsController#create as HTML
2065
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
2066
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2067
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
2068
+ Usergroups are ["public", "registered"]
2069
+ Redirected to http://test.host/catalog/tufts:0001
2070
+ Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
2071
+  (11.7ms) rollback transaction
2072
+  (0.1ms) begin transaction
2073
+  (0.1ms) SAVEPOINT active_record_1
2074
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
2075
+ Binary data inserted for `string` type on column `encrypted_password`
2076
+ SQL (29.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:09:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$Qp4R7EBEXPLhIC0rtbN2rueab5DfF4sxQiHlOXq9RASsqxzCEhp3O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:09:53 UTC +00:00]]
2077
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2078
+ Processing by RecordsController#update as JSON
2079
+ Parameters: {"audio"=>{"title"=>"My title"}, "id"=>"test:7"}
2080
+ Completed 204 No Content in 1ms (ActiveRecord: 0.0ms)
2081
+  (0.6ms) rollback transaction
2082
+  (0.1ms) begin transaction
2083
+  (0.1ms) SAVEPOINT active_record_1
2084
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
2085
+ Binary data inserted for `string` type on column `encrypted_password`
2086
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:09:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$RpUWd/1TRN/F8CrHjLGNhOZ4ZRI26uiJbAe2XbFBelEoRdp1XbtbK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:09:53 UTC +00:00]]
2087
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2088
+ Processing by RecordsController#update as HTML
2089
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
2090
+ Redirected to http://test.host/catalog/tufts:0001
2091
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
2092
+  (0.6ms) rollback transaction
2093
+  (0.1ms) begin transaction
2094
+  (0.1ms) SAVEPOINT active_record_1
2095
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
2096
+ Binary data inserted for `string` type on column `encrypted_password`
2097
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:09:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$LMp6/6uGBB6AvUJPD1qfvex.JeLJbBxMApLwO2TzICSj3jy.GCx6C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:09:53 UTC +00:00]]
2098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2099
+ Processing by RecordsController#edit as HTML
2100
+ Parameters: {"id"=>"test:7"}
2101
+ Completed 200 OK in 79ms (Views: 76.4ms | ActiveRecord: 0.0ms)
2102
+  (0.7ms) rollback transaction
2103
+  (0.1ms) begin transaction
2104
+  (0.1ms) SAVEPOINT active_record_1
2105
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
2106
+ Binary data inserted for `string` type on column `encrypted_password`
2107
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:09:54 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$vEra4FfC54UheTWsFk4SSu8AyAj70twICkH46Azap30WLrHLL1TLq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:09:54 UTC +00:00]]
2108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2109
+ Processing by RecordsController#new as HTML
2110
+ Parameters: {"type"=>"Audio"}
2111
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2112
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
2113
+ Usergroups are ["public", "registered"]
2114
+ Completed 200 OK in 33ms (Views: 28.1ms | ActiveRecord: 0.2ms)
2115
+  (0.6ms) rollback transaction
2116
+  (0.1ms) begin transaction
2117
+  (0.0ms) SAVEPOINT active_record_1
2118
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
2119
+ Binary data inserted for `string` type on column `encrypted_password`
2120
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:09:54 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person9@example.com"], ["encrypted_password", "$2a$04$2NMO5r00VAPb7hHRuSZf1uWrw1809Tp2bE26g4BROHn2to33I0nTG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:09:54 UTC +00:00]]
2121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2122
+ Processing by RecordsController#new as HTML
2123
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2124
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
2125
+ Usergroups are ["public", "registered"]
2126
+ Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.2ms)
2127
+  (0.6ms) rollback transaction
2128
+  (0.1ms) begin transaction
2129
+  (0.0ms) rollback transaction
2130
+  (0.0ms) begin transaction
2131
+  (0.1ms) rollback transaction
2132
+  (0.0ms) begin transaction
2133
+  (0.0ms) rollback transaction
2134
+  (0.0ms) begin transaction
2135
+  (0.0ms) rollback transaction
2136
+ Connecting to database specified by database.yml
2137
+  (0.4ms) begin transaction
2138
+  (0.1ms) rollback transaction
2139
+  (0.1ms) begin transaction
2140
+  (0.1ms) rollback transaction
2141
+  (0.0ms) begin transaction
2142
+  (0.0ms) rollback transaction
2143
+  (0.1ms) begin transaction
2144
+  (0.0ms) rollback transaction
2145
+  (0.0ms) begin transaction
2146
+  (0.1ms) SAVEPOINT active_record_1
2147
+ User Exists (19.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
2148
+ Binary data inserted for `string` type on column `encrypted_password`
2149
+ SQL (2.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:11:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$nJd4KXuHY23POiDtG9w2celcUrfEE6Btz0xmznT9QKh.TJCQHXIwe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:11:01 UTC +00:00]]
2150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2151
+ Processing by RecordsController#update as HTML
2152
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
2153
+ Redirected to http://test.host/catalog/tufts:0001
2154
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
2155
+  (0.6ms) rollback transaction
2156
+  (0.1ms) begin transaction
2157
+  (0.1ms) SAVEPOINT active_record_1
2158
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
2159
+ Binary data inserted for `string` type on column `encrypted_password`
2160
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:11:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$3XfxGhDsEzCedexD3cv6ku0zRwt8c9Lkn14KdeWMSxyu2jjT.Ux4e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:11:01 UTC +00:00]]
2161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2162
+ Processing by RecordsController#update as JSON
2163
+ Parameters: {"audio"=>{"title"=>"My title"}, "id"=>"test:7"}
2164
+ Completed 204 No Content in 1ms (ActiveRecord: 0.0ms)
2165
+  (0.7ms) rollback transaction
2166
+  (0.1ms) begin transaction
2167
+  (0.0ms) SAVEPOINT active_record_1
2168
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
2169
+ Binary data inserted for `string` type on column `encrypted_password`
2170
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:11:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$6ZbcAzaj2ETO0.doSzcHgOhZxaVA8fU3t.3WNIuo.yF6yxtEPJMpK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:11:01 UTC +00:00]]
2171
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2172
+ Processing by RecordsController#edit as HTML
2173
+ Parameters: {"id"=>"test:7"}
2174
+ Completed 200 OK in 54ms (Views: 51.1ms | ActiveRecord: 0.0ms)
2175
+  (0.8ms) rollback transaction
2176
+  (0.1ms) begin transaction
2177
+  (0.1ms) SAVEPOINT active_record_1
2178
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
2179
+ Binary data inserted for `string` type on column `encrypted_password`
2180
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:11:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$6NYFhE4wONryzh6GC8hQzu/1hZ6d1KZ/L7/OiQyfhDdRydc0hbzFG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:11:01 UTC +00:00]]
2181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2182
+ Processing by RecordsController#new as HTML
2183
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2184
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
2185
+ Usergroups are ["public", "registered"]
2186
+ Completed 200 OK in 92ms (Views: 19.2ms | ActiveRecord: 0.5ms)
2187
+  (0.8ms) rollback transaction
2188
+  (0.1ms) begin transaction
2189
+  (0.1ms) SAVEPOINT active_record_1
2190
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
2191
+ Binary data inserted for `string` type on column `encrypted_password`
2192
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:11:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$iUzD3dK.aftx8/UinLGHLOlQK1v8gjJAAjkB/WO/5hvBFQ0QgDye2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:11:01 UTC +00:00]]
2193
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2194
+ Processing by RecordsController#new as HTML
2195
+ Parameters: {"type"=>"Audio"}
2196
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2197
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
2198
+ Usergroups are ["public", "registered"]
2199
+ Completed 200 OK in 29ms (Views: 24.3ms | ActiveRecord: 0.2ms)
2200
+  (0.6ms) rollback transaction
2201
+  (0.1ms) begin transaction
2202
+  (0.0ms) SAVEPOINT active_record_1
2203
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
2204
+ Binary data inserted for `string` type on column `encrypted_password`
2205
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:11:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$gnMPjE63e.Qb06g.PmQ60OoMUnqmR/gxistad9b1Kun68dqfMRp5C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:11:01 UTC +00:00]]
2206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2207
+ Processing by RecordsController#create as HTML
2208
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
2209
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2210
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
2211
+ Usergroups are ["public", "registered"]
2212
+ Redirected to http://test.host/catalog/tufts:0001
2213
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
2214
+  (0.7ms) rollback transaction
2215
+  (0.1ms) begin transaction
2216
+  (0.0ms) SAVEPOINT active_record_1
2217
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
2218
+ Binary data inserted for `string` type on column `encrypted_password`
2219
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:11:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$eof//IKTLF/uBS3.zOZk6eshsl5tgtTrLl8umWAjMjvn1clkqClnK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:11:01 UTC +00:00]]
2220
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2221
+ Processing by RecordsController#create as JSON
2222
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
2223
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2224
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
2225
+ Usergroups are ["public", "registered"]
2226
+ Completed 201 Created in 6ms (Views: 0.3ms | ActiveRecord: 0.2ms)
2227
+  (0.6ms) rollback transaction
2228
+  (0.1ms) begin transaction
2229
+  (0.1ms) SAVEPOINT active_record_1
2230
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
2231
+ Binary data inserted for `string` type on column `encrypted_password`
2232
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:11:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$8dsJVvsl1Ps.EgA08fPyUeyaK0sEt/JeT2UBjbEpSUtH0dsaNGx66"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:11:01 UTC +00:00]]
2233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2234
+ Processing by RecordsController#create as HTML
2235
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
2236
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2237
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
2238
+ Usergroups are ["public", "registered"]
2239
+ Redirected to http://test.host/catalog/tufts:0001
2240
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
2241
+  (0.7ms) rollback transaction
2242
+  (0.1ms) begin transaction
2243
+  (0.0ms) SAVEPOINT active_record_1
2244
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
2245
+ Binary data inserted for `string` type on column `encrypted_password`
2246
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:11:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person9@example.com"], ["encrypted_password", "$2a$04$jgm7OZbEvq0kcAO5huj2DeZ2wQFW55011WHwMl/k3jlSkuhQ7XW8m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:11:01 UTC +00:00]]
2247
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2248
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2249
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
2250
+ Usergroups are ["public", "registered"]
2251
+ Processing by RecordsController#new as HTML
2252
+ Completed 500 Internal Server Error in 151ms
2253
+  (0.8ms) rollback transaction
2254
+ Connecting to database specified by database.yml
2255
+  (0.4ms) begin transaction
2256
+  (0.1ms) SAVEPOINT active_record_1
2257
+ User Exists (14.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
2258
+ Binary data inserted for `string` type on column `encrypted_password`
2259
+ SQL (9.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:13:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$ETvzFZor8QGBSP9Yh7ZbrepD/sA7zP4/7NpHAknwpeMZ4ZZtaTr1m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:13:14 UTC +00:00]]
2260
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2261
+ Processing by RecordsController#new as HTML
2262
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2263
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
2264
+ Usergroups are ["public", "registered"]
2265
+ Rendered /Users/justin/workspace/hydra-editor/app/views/records/choose_type.html.erb within layouts/blacklight (0.7ms)
2266
+ Completed 200 OK in 208ms (Views: 124.8ms | ActiveRecord: 0.4ms)
2267
+  (0.7ms) rollback transaction
2268
+  (0.1ms) begin transaction
2269
+  (0.1ms) SAVEPOINT active_record_1
2270
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
2271
+ Binary data inserted for `string` type on column `encrypted_password`
2272
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:13:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$4oyPK8MbRaKSCqQnwjytveeBtLmlMuPqA4LVZWEuWXFa71CnkH.3S"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:13:14 UTC +00:00]]
2273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2274
+ Processing by RecordsController#new as HTML
2275
+ Parameters: {"type"=>"Audio"}
2276
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2277
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
2278
+ Usergroups are ["public", "registered"]
2279
+ Completed 200 OK in 166ms (Views: 11.2ms | ActiveRecord: 0.2ms)
2280
+  (0.6ms) rollback transaction
2281
+  (0.1ms) begin transaction
2282
+  (0.0ms) SAVEPOINT active_record_1
2283
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
2284
+ Binary data inserted for `string` type on column `encrypted_password`
2285
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:13:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$ZNlahGlDhmFN/Ox.XaBDZ.LnK47ARhqxSyYTuK/QD2Q0lL1x/iihG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:13:14 UTC +00:00]]
2286
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2287
+ Processing by RecordsController#edit as HTML
2288
+ Parameters: {"id"=>"test:7"}
2289
+ Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.0ms)
2290
+  (0.5ms) rollback transaction
2291
+  (0.1ms) begin transaction
2292
+  (0.1ms) SAVEPOINT active_record_1
2293
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
2294
+ Binary data inserted for `string` type on column `encrypted_password`
2295
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:13:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$AavZCu94wE6GxXQI6M4XDuMdQy3ma4KjyVM/Z0OprsHTnH4D9au3K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:13:14 UTC +00:00]]
2296
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2297
+ Processing by RecordsController#update as HTML
2298
+ Parameters: {"audio"=>{"title"=>"My title 3"}, "id"=>"test:7"}
2299
+ Redirected to http://test.host/catalog/tufts:0001
2300
+ Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
2301
+  (0.5ms) rollback transaction
2302
+  (0.1ms) begin transaction
2303
+  (0.1ms) SAVEPOINT active_record_1
2304
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
2305
+ Binary data inserted for `string` type on column `encrypted_password`
2306
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:13:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$zTMLxQ.n3mHYemwnmWoHfuekcOCfMrr8ZZkgyayhzOUHAfn5BiFv2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:13:14 UTC +00:00]]
2307
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2308
+ Processing by RecordsController#update as JSON
2309
+ Parameters: {"audio"=>{"title"=>"My title"}, "id"=>"test:7"}
2310
+ Completed 204 No Content in 1ms (ActiveRecord: 0.0ms)
2311
+  (0.5ms) rollback transaction
2312
+  (0.1ms) begin transaction
2313
+  (0.1ms) SAVEPOINT active_record_1
2314
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
2315
+ Binary data inserted for `string` type on column `encrypted_password`
2316
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:13:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$3.l8ii4YWSEmKlsm9J1BzesKB8T7ZaOUJB8np6OPYDc5u9loe/Xui"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:13:14 UTC +00:00]]
2317
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2318
+ Processing by RecordsController#create as HTML
2319
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
2320
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2321
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
2322
+ Usergroups are ["public", "registered"]
2323
+ Redirected to http://test.host/catalog/tufts:0001
2324
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
2325
+  (0.5ms) rollback transaction
2326
+  (0.1ms) begin transaction
2327
+  (0.1ms) SAVEPOINT active_record_1
2328
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
2329
+ Binary data inserted for `string` type on column `encrypted_password`
2330
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:13:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$bENALzVc/v3WZ0HRFRinxu2pVH0eDrOYyAP.bwoq9OEG6M.VnVsde"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:13:14 UTC +00:00]]
2331
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2332
+ Processing by RecordsController#create as JSON
2333
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
2334
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2335
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
2336
+ Usergroups are ["public", "registered"]
2337
+ Completed 201 Created in 6ms (Views: 0.3ms | ActiveRecord: 0.2ms)
2338
+  (0.5ms) rollback transaction
2339
+  (0.1ms) begin transaction
2340
+  (0.1ms) SAVEPOINT active_record_1
2341
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
2342
+ Binary data inserted for `string` type on column `encrypted_password`
2343
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:13:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$W2f9BBTNMS15YJRXt2m2Qu4TTDGvcRtG7F7l85Wh3g.dyvhZY2gdy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:13:14 UTC +00:00]]
2344
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2345
+ Processing by RecordsController#create as HTML
2346
+ Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
2347
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2348
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
2349
+ Usergroups are ["public", "registered"]
2350
+ Redirected to http://test.host/catalog/tufts:0001
2351
+ Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
2352
+  (0.6ms) rollback transaction
2353
+  (0.1ms) begin transaction
2354
+  (0.1ms) SAVEPOINT active_record_1
2355
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
2356
+ Binary data inserted for `string` type on column `encrypted_password`
2357
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 May 2013 22:13:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "person9@example.com"], ["encrypted_password", "$2a$04$6/7ihnTBApzLqPFO/bzbeu1NbSunx7TKVK2eKqbubchh3E6C1UWWm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 01 May 2013 22:13:14 UTC +00:00]]
2358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2359
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2360
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
2361
+ Usergroups are ["public", "registered"]
2362
+ Processing by RecordsController#new as HTML
2363
+ Completed 500 Internal Server Error in 172ms
2364
+  (0.6ms) rollback transaction
2365
+  (0.1ms) begin transaction
2366
+  (0.1ms) rollback transaction
2367
+  (0.1ms) begin transaction
2368
+  (0.1ms) rollback transaction
2369
+  (0.1ms) begin transaction
2370
+  (0.1ms) rollback transaction
2371
+  (0.1ms) begin transaction
2372
+  (0.0ms) rollback transaction