hydra-editor 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +51 -0
- data/Rakefile +57 -0
- data/app/assets/javascripts/hydra-editor/editMetadata.js +4 -0
- data/app/assets/javascripts/hydra-editor/hydra-editor.js +2 -0
- data/app/assets/javascripts/hydra-editor/multiForm.js +58 -0
- data/app/assets/stylesheets/hydra-editor/application.css +13 -0
- data/app/assets/stylesheets/hydra-editor/hydra-editor.css +6 -0
- data/app/controllers/concerns/records_controller_behavior.rb +75 -0
- data/app/controllers/records_controller.rb +3 -0
- data/app/helpers/concerns/records_helper_behavior.rb +59 -0
- data/app/helpers/records_helper.rb +3 -0
- data/app/views/records/_edit_field.html.erb +15 -0
- data/app/views/records/_form.html.erb +16 -0
- data/app/views/records/choose_type.html.erb +8 -0
- data/app/views/records/edit.html.erb +3 -0
- data/app/views/records/edit_fields/_default.html.erb +10 -0
- data/app/views/records/edit_fields/_suffix.html.erb +6 -0
- data/app/views/records/new.html.erb +2 -0
- data/config/routes.rb +4 -0
- data/lib/hydra-editor.rb +12 -0
- data/lib/hydra_editor/engine.rb +8 -0
- data/lib/hydra_editor/version.rb +3 -0
- data/lib/tasks/hydra-editor_tasks.rake +4 -0
- data/spec/controllers/records_controller_spec.rb +101 -0
- data/spec/dummy/Gemfile +16 -0
- data/spec/dummy/Gemfile.lock +246 -0
- data/spec/dummy/README.rdoc +261 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/images/blacklight/bg.png +0 -0
- data/spec/dummy/app/assets/images/blacklight/border.png +0 -0
- data/spec/dummy/app/assets/images/blacklight/bul_sq_gry.gif +0 -0
- data/spec/dummy/app/assets/images/blacklight/checkmark.gif +0 -0
- data/spec/dummy/app/assets/images/blacklight/logo.png +0 -0
- data/spec/dummy/app/assets/images/blacklight/magnifying_glass.gif +0 -0
- data/spec/dummy/app/assets/images/blacklight/remove.gif +0 -0
- data/spec/dummy/app/assets/images/blacklight/separator.gif +0 -0
- data/spec/dummy/app/assets/images/blacklight/start_over.gif +0 -0
- data/spec/dummy/app/assets/images/rails.png +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +18 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/assets/stylesheets/blacklight.css.scss +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +10 -0
- data/spec/dummy/app/controllers/catalog_controller.rb +170 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/models/solr_document.rb +33 -0
- data/spec/dummy/app/models/user.rb +22 -0
- data/spec/dummy/app/views/devise/confirmations/new.html.erb +12 -0
- data/spec/dummy/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/spec/dummy/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/spec/dummy/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/spec/dummy/app/views/devise/passwords/edit.html.erb +16 -0
- data/spec/dummy/app/views/devise/passwords/new.html.erb +12 -0
- data/spec/dummy/app/views/devise/registrations/edit.html.erb +29 -0
- data/spec/dummy/app/views/devise/registrations/new.html.erb +18 -0
- data/spec/dummy/app/views/devise/sessions/new.html.erb +17 -0
- data/spec/dummy/app/views/devise/shared/_links.erb +25 -0
- data/spec/dummy/app/views/devise/unlocks/new.html.erb +12 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/SolrMarc/config-test.properties +37 -0
- data/spec/dummy/config/SolrMarc/config.properties +37 -0
- data/spec/dummy/config/SolrMarc/index.properties +97 -0
- data/spec/dummy/config/SolrMarc/index_scripts/dewey.bsh +47 -0
- data/spec/dummy/config/SolrMarc/index_scripts/format.bsh +126 -0
- data/spec/dummy/config/SolrMarc/translation_maps/README_MAPS +1 -0
- data/spec/dummy/config/SolrMarc/translation_maps/callnumber_map.properties +407 -0
- data/spec/dummy/config/SolrMarc/translation_maps/composition_era_map.properties +56 -0
- data/spec/dummy/config/SolrMarc/translation_maps/country_map.properties +379 -0
- data/spec/dummy/config/SolrMarc/translation_maps/format_map.properties +50 -0
- data/spec/dummy/config/SolrMarc/translation_maps/instrument_map.properties +101 -0
- data/spec/dummy/config/SolrMarc/translation_maps/language_map.properties +490 -0
- data/spec/dummy/config/application.rb +66 -0
- data/spec/dummy/config/boot.rb +6 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +67 -0
- data/spec/dummy/config/environments/test.rb +37 -0
- data/spec/dummy/config/fedora.yml +14 -0
- data/spec/dummy/config/initializers/action_dispatch_http_upload_monkey_patch.rb +12 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/devise.rb +240 -0
- data/spec/dummy/config/initializers/hydra_config.rb +28 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +12 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/jetty.yml +5 -0
- data/spec/dummy/config/locales/devise.en.yml +59 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/role_map_cucumber.yml +10 -0
- data/spec/dummy/config/role_map_development.yml +12 -0
- data/spec/dummy/config/role_map_production.yml +2 -0
- data/spec/dummy/config/role_map_test.yml +15 -0
- data/spec/dummy/config/routes.rb +66 -0
- data/spec/dummy/config/solr.yml +10 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20130415215624_devise_create_users.rb +46 -0
- data/spec/dummy/db/migrate/20130415215633_create_searches.rb +16 -0
- data/spec/dummy/db/migrate/20130415215634_create_bookmarks.rb +18 -0
- data/spec/dummy/db/migrate/20130415215635_remove_editable_fields_from_bookmarks.rb +12 -0
- data/spec/dummy/db/migrate/20130415215636_add_user_types_to_bookmarks_searches.rb +16 -0
- data/spec/dummy/db/schema.rb +53 -0
- data/spec/dummy/db/seeds.rb +7 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/doc/README_FOR_APP +2 -0
- data/spec/dummy/fedora_conf/conf/development/fedora.fcfg +953 -0
- data/spec/dummy/fedora_conf/conf/test/fedora.fcfg +953 -0
- data/spec/dummy/lib/generators/test_app_generator.rb +26 -0
- data/spec/dummy/log/development.log +78 -0
- data/spec/dummy/log/test.log +2372 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/index.html +241 -0
- data/spec/dummy/public/robots.txt +5 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/solr_conf/conf/schema.xml +433 -0
- data/spec/dummy/solr_conf/conf/solrconfig.xml +158 -0
- data/spec/dummy/solr_conf/solr.xml +35 -0
- data/spec/dummy/test/performance/browsing_test.rb +12 -0
- data/spec/dummy/test/test_helper.rb +13 -0
- data/spec/factories/users.rb +13 -0
- data/spec/helpers/records_helper_spec.rb +20 -0
- data/spec/models/bookmark_spec.rb +7 -0
- data/spec/spec_helper.rb +23 -0
- data/spec/support/Gemfile +12 -0
- data/spec/support/audio.rb +18 -0
- data/spec/support/dummy_generator.rb +26 -0
- data/spec/support/lib/generators/test_app_generator.rb +26 -0
- 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
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
17
|
+
[1m[35m (1.5ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
18
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
19
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
20
|
+
Migrating to DeviseCreateUsers (20130415215624)
|
21
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22
|
+
[1m[35m (0.5ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
24
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
|
25
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130415215624')[0m
|
26
|
+
[1m[35m (1.2ms)[0m commit transaction
|
27
|
+
Migrating to CreateSearches (20130415215633)
|
28
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_searches_on_user_id" ON "searches" ("user_id")[0m
|
31
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130415215633')
|
32
|
+
[1m[36m (11.0ms)[0m [1mcommit transaction[0m
|
33
|
+
Migrating to CreateBookmarks (20130415215634)
|
34
|
+
[1m[35m (0.1ms)[0m begin transaction
|
35
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
36
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130415215634')
|
37
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
38
|
+
Migrating to RemoveEditableFieldsFromBookmarks (20130415215635)
|
39
|
+
[1m[35m (0.0ms)[0m begin transaction
|
40
|
+
[1m[36m (0.7ms)[0m [1mCREATE 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) [0m
|
41
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "bookmarks"
|
42
|
+
[1m[36m (0.3ms)[0m [1mDROP TABLE "bookmarks"[0m
|
43
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSELECT * FROM "altered_bookmarks"[0m
|
45
|
+
[1m[35m (0.3ms)[0m DROP TABLE "altered_bookmarks"
|
46
|
+
[1m[36m (0.2ms)[0m [1mCREATE 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) [0m
|
47
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "bookmarks"
|
48
|
+
[1m[36m (0.4ms)[0m [1mDROP TABLE "bookmarks"[0m
|
49
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSELECT * FROM "altered_bookmarks"[0m
|
51
|
+
[1m[35m (0.1ms)[0m DROP TABLE "altered_bookmarks"
|
52
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130415215635')[0m
|
53
|
+
[1m[35m (1.7ms)[0m commit transaction
|
54
|
+
Migrating to AddUserTypesToBookmarksSearches (20130415215636)
|
55
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "searches" ADD "user_type" varchar(255)
|
57
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bookmarks" ADD "user_type" varchar(255)[0m
|
58
|
+
[1m[35mSQL (0.0ms)[0m UPDATE "searches" SET user_type = 'user'
|
59
|
+
[1m[36mSQL (0.0ms)[0m [1mUPDATE "bookmarks" SET user_type = 'user'[0m
|
60
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130415215636')
|
61
|
+
[1m[36m (2.0ms)[0m [1mcommit transaction[0m
|
62
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
63
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
64
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
65
|
+
[1m[36m (1.4ms)[0m [1mCREATE 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)) [0m
|
66
|
+
[1m[35m (1.5ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_searches_on_user_id" ON "searches" ("user_id")[0m
|
68
|
+
[1m[35m (1.0ms)[0m 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
|
+
[1m[36m (1.5ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
70
|
+
[1m[35m (1.9ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
|
71
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
72
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
73
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
74
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130415215636')
|
75
|
+
[1m[36m (1.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130415215624')[0m
|
76
|
+
[1m[35m (1.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130415215633')
|
77
|
+
[1m[36m (1.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130415215634')[0m
|
78
|
+
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130415215635')
|
@@ -0,0 +1,2372 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
3
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
8
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
9
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
10
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
11
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
12
|
+
[1m[35mSQL (1.8ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
15
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
16
|
+
Usergroups are ["public", "registered"]
|
17
|
+
Processing by RecordsController#new as HTML
|
18
|
+
Completed 500 Internal Server Error in 31ms
|
19
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
20
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
21
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
23
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
24
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26
|
+
Processing by RecordsController#create as HTML
|
27
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
28
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
29
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
30
|
+
Usergroups are ["public", "registered"]
|
31
|
+
Redirected to http://test.host/catalog/test:6
|
32
|
+
Completed 302 Found in 11ms (ActiveRecord: 0.2ms)
|
33
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
34
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
35
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
36
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
37
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
38
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40
|
+
Processing by RecordsController#new as HTML
|
41
|
+
Parameters: {"type"=>"Audio"}
|
42
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
43
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
44
|
+
Usergroups are ["public", "registered"]
|
45
|
+
Completed 200 OK in 15ms (Views: 8.1ms | ActiveRecord: 0.3ms)
|
46
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
47
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
48
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
50
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
51
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
53
|
+
Processing by RecordsController#new as HTML
|
54
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
55
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
56
|
+
Usergroups are ["public", "registered"]
|
57
|
+
Completed 200 OK in 6ms (Views: 2.6ms | ActiveRecord: 0.4ms)
|
58
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
59
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
60
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
61
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
62
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
63
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
69
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
70
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
71
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
72
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
73
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
80
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
81
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
82
|
+
Connecting to database specified by database.yml
|
83
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
84
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
85
|
+
[1m[36mUser Exists (15.0ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
86
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
87
|
+
[1m[35mSQL (34.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
89
|
+
Processing by RecordsController#new as HTML
|
90
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
91
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
96
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
97
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
98
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
99
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
100
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
102
|
+
Processing by RecordsController#new as HTML
|
103
|
+
Parameters: {"type"=>"Audio"}
|
104
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
105
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
106
|
+
Usergroups are ["public", "registered"]
|
107
|
+
Completed 200 OK in 105ms (Views: 15.0ms | ActiveRecord: 0.2ms)
|
108
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
109
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
110
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
112
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
113
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
120
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
121
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
122
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
123
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
124
|
+
[1m[35mSQL (52.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
126
|
+
Processing by RecordsController#create as HTML
|
127
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
128
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
129
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
130
|
+
Usergroups are ["public", "registered"]
|
131
|
+
Redirected to http://test.host/catalog/test:6
|
132
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
133
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
134
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
135
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
136
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
137
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
138
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
144
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
145
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
146
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
147
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
148
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
150
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
151
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
152
|
+
Usergroups are ["public", "registered"]
|
153
|
+
Processing by RecordsController#new as HTML
|
154
|
+
Completed 500 Internal Server Error in 180ms
|
155
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
156
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
157
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
158
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
159
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
160
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
161
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
162
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
163
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
164
|
+
Connecting to database specified by database.yml
|
165
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
166
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
167
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
168
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
169
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
170
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
171
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
172
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
173
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
174
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
175
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
176
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
177
|
+
[1m[35mSQL (1.9ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
183
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
184
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
185
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
186
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
187
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
189
|
+
Processing by RecordsController#create as HTML
|
190
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
191
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
192
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
193
|
+
Usergroups are ["public", "registered"]
|
194
|
+
Redirected to http://test.host/catalog/test:6
|
195
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.2ms)
|
196
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
197
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
198
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
199
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
200
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
201
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
203
|
+
Processing by RecordsController#new as HTML
|
204
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
205
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
206
|
+
Usergroups are ["public", "registered"]
|
207
|
+
Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
208
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
209
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
210
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
211
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
212
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
213
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
215
|
+
Processing by RecordsController#new as HTML
|
216
|
+
Parameters: {"type"=>"Audio"}
|
217
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
218
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
219
|
+
Usergroups are ["public", "registered"]
|
220
|
+
Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
221
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
222
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
223
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
224
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
225
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
226
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
233
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
234
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
235
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
236
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
237
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
239
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
240
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
241
|
+
Usergroups are ["public", "registered"]
|
242
|
+
Processing by RecordsController#new as HTML
|
243
|
+
Completed 500 Internal Server Error in 1ms
|
244
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
245
|
+
Connecting to database specified by database.yml
|
246
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
247
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
248
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
249
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
250
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
251
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
252
|
+
Connecting to database specified by database.yml
|
253
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
254
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
255
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
256
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
257
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
258
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
259
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
260
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
261
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
262
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
263
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
264
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
265
|
+
[1m[35mSQL (1.7ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
267
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
268
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
269
|
+
Usergroups are ["public", "registered"]
|
270
|
+
Processing by RecordsController#new as HTML
|
271
|
+
Completed 500 Internal Server Error in 12ms
|
272
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
273
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
274
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
275
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
276
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
277
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
284
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
285
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
286
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
287
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
288
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
290
|
+
Processing by RecordsController#create as HTML
|
291
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
292
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
293
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
294
|
+
Usergroups are ["public", "registered"]
|
295
|
+
Redirected to http://test.host/catalog/test:6
|
296
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
297
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
298
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
299
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
300
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
301
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
302
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
308
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
309
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
310
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
311
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
312
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
314
|
+
Processing by RecordsController#new as HTML
|
315
|
+
Parameters: {"type"=>"Audio"}
|
316
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
317
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
318
|
+
Usergroups are ["public", "registered"]
|
319
|
+
Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
320
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
321
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
322
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
323
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
324
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
325
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
327
|
+
Processing by RecordsController#new as HTML
|
328
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
329
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
330
|
+
Usergroups are ["public", "registered"]
|
331
|
+
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
332
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
333
|
+
Connecting to database specified by database.yml
|
334
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
335
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
336
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
337
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
338
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
339
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
340
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
341
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
342
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
343
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
344
|
+
[1m[35mSQL (1.7ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
351
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
352
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
353
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
354
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
355
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
357
|
+
Processing by RecordsController#create as HTML
|
358
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
359
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
360
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
361
|
+
Usergroups are ["public", "registered"]
|
362
|
+
Redirected to http://test.host/catalog/test:6
|
363
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.3ms)
|
364
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
365
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
366
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
367
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
368
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
369
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
375
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
376
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
377
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
378
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
379
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
381
|
+
Processing by RecordsController#new as HTML
|
382
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
383
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
384
|
+
Usergroups are ["public", "registered"]
|
385
|
+
Completed 200 OK in 5ms (Views: 2.1ms | ActiveRecord: 0.2ms)
|
386
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
387
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
388
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
389
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
390
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
391
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
393
|
+
Processing by RecordsController#new as HTML
|
394
|
+
Parameters: {"type"=>"Audio"}
|
395
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
396
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
397
|
+
Usergroups are ["public", "registered"]
|
398
|
+
Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 0.3ms)
|
399
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
400
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
401
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
402
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
403
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
404
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
406
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
407
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
408
|
+
Usergroups are ["public", "registered"]
|
409
|
+
Processing by RecordsController#new as HTML
|
410
|
+
Completed 500 Internal Server Error in 14ms
|
411
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
412
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
413
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
414
|
+
Connecting to database specified by database.yml
|
415
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
416
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
417
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
418
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
419
|
+
[1m[35mSQL (1.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
421
|
+
Processing by RecordsController#new as HTML
|
422
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
423
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
428
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
429
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
430
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
431
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
432
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
434
|
+
Processing by RecordsController#new as HTML
|
435
|
+
Parameters: {"type"=>"Audio"}
|
436
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
437
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
438
|
+
Usergroups are ["public", "registered"]
|
439
|
+
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
|
440
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
441
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
442
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
443
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
444
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
445
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
447
|
+
Processing by RecordsController#create as HTML
|
448
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
449
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
450
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
451
|
+
Usergroups are ["public", "registered"]
|
452
|
+
Redirected to http://test.host/records/new
|
453
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
454
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
455
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
456
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
457
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
458
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
459
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
466
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
467
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
468
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
469
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
470
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
476
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
477
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
478
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
479
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
480
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
482
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
483
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
484
|
+
Usergroups are ["public", "registered"]
|
485
|
+
Processing by RecordsController#new as HTML
|
486
|
+
Completed 500 Internal Server Error in 11ms
|
487
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
488
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
489
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
490
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
491
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
492
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
493
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
494
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
495
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
496
|
+
Connecting to database specified by database.yml
|
497
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
498
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
499
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
500
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
501
|
+
[1m[35mSQL (2.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
503
|
+
Processing by RecordsController#new as HTML
|
504
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
505
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
510
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
511
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
512
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
513
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
514
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
516
|
+
Processing by RecordsController#new as HTML
|
517
|
+
Parameters: {"type"=>"Audio"}
|
518
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
519
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
520
|
+
Usergroups are ["public", "registered"]
|
521
|
+
Completed 200 OK in 23ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
522
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
523
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
524
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
525
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
526
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
527
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
533
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
534
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
535
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
536
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
537
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
539
|
+
Processing by RecordsController#create as HTML
|
540
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
541
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
542
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
543
|
+
Usergroups are ["public", "registered"]
|
544
|
+
Redirected to http://test.host/catalog/test:6
|
545
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
546
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
547
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
548
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
549
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
550
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
551
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
558
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
559
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
560
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
561
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
562
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
564
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
565
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
566
|
+
Usergroups are ["public", "registered"]
|
567
|
+
Processing by RecordsController#new as HTML
|
568
|
+
Completed 500 Internal Server Error in 12ms
|
569
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
570
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
571
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
572
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
573
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
574
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
575
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
576
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
577
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
578
|
+
Connecting to database specified by database.yml
|
579
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
580
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
581
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
582
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
583
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
584
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
585
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
586
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
587
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
588
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
589
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
590
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
591
|
+
[1m[35mSQL (1.6ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
597
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
598
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
599
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
600
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
601
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
603
|
+
Processing by RecordsController#create as HTML
|
604
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
605
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
606
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
607
|
+
Usergroups are ["public", "registered"]
|
608
|
+
Redirected to http://test.host/catalog/test:6
|
609
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.3ms)
|
610
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
611
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
612
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
613
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
614
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
615
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
617
|
+
Processing by RecordsController#new as HTML
|
618
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
619
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
620
|
+
Usergroups are ["public", "registered"]
|
621
|
+
Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
622
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
623
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
624
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
625
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
626
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
627
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
629
|
+
Processing by RecordsController#new as HTML
|
630
|
+
Parameters: {"type"=>"Audio"}
|
631
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
632
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
633
|
+
Usergroups are ["public", "registered"]
|
634
|
+
Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
635
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
636
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
637
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
638
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
639
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
640
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
647
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
648
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
649
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
650
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
651
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
653
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
654
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
655
|
+
Usergroups are ["public", "registered"]
|
656
|
+
Processing by RecordsController#new as HTML
|
657
|
+
Completed 500 Internal Server Error in 11ms
|
658
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
659
|
+
Connecting to database specified by database.yml
|
660
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
661
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
662
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
663
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
664
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
665
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
666
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
667
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
668
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
669
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
670
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
671
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
672
|
+
[1m[35mSQL (14.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
679
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
680
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
681
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
682
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
683
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
689
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
690
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
691
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
692
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
693
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
695
|
+
Processing by RecordsController#new as HTML
|
696
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
697
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
698
|
+
Usergroups are ["public", "registered"]
|
699
|
+
Completed 200 OK in 82ms (Views: 19.1ms | ActiveRecord: 0.4ms)
|
700
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
701
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
702
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
703
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
704
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
705
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
707
|
+
Processing by RecordsController#new as HTML
|
708
|
+
Parameters: {"type"=>"Audio"}
|
709
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
710
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
711
|
+
Usergroups are ["public", "registered"]
|
712
|
+
Completed 200 OK in 27ms (Views: 22.4ms | ActiveRecord: 0.2ms)
|
713
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
714
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
715
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
716
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
717
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
718
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
720
|
+
Processing by RecordsController#create as HTML
|
721
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
722
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
723
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
724
|
+
Usergroups are ["public", "registered"]
|
725
|
+
Redirected to http://test.host/catalog/test:6
|
726
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
727
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
728
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
729
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
730
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
731
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
732
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
734
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
735
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
736
|
+
Usergroups are ["public", "registered"]
|
737
|
+
Processing by RecordsController#new as HTML
|
738
|
+
Completed 500 Internal Server Error in 206ms
|
739
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
740
|
+
Connecting to database specified by database.yml
|
741
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
742
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
743
|
+
[1m[36mUser Exists (11.3ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
744
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
745
|
+
[1m[35mSQL (2.6ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
747
|
+
Processing by RecordsController#new as HTML
|
748
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
749
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
754
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
755
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
756
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
757
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
758
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
760
|
+
Processing by RecordsController#new as HTML
|
761
|
+
Parameters: {"type"=>"Audio"}
|
762
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
763
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
764
|
+
Usergroups are ["public", "registered"]
|
765
|
+
Completed 200 OK in 132ms (Views: 21.6ms | ActiveRecord: 0.3ms)
|
766
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
767
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
768
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
769
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
770
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
771
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
777
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
778
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
779
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
780
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
781
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783
|
+
Processing by RecordsController#edit as HTML
|
784
|
+
Parameters: {"id"=>"test:7"}
|
785
|
+
Completed 500 Internal Server Error in 0ms
|
786
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
787
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
788
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
789
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
790
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
791
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
793
|
+
Processing by RecordsController#create as HTML
|
794
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
795
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
796
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
797
|
+
Usergroups are ["public", "registered"]
|
798
|
+
Redirected to http://test.host/catalog/test:6
|
799
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
800
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
801
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
802
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
803
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
804
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
805
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
812
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
813
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
814
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
815
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
816
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
818
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
819
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
820
|
+
Usergroups are ["public", "registered"]
|
821
|
+
Processing by RecordsController#new as HTML
|
822
|
+
Completed 500 Internal Server Error in 71ms
|
823
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
824
|
+
Connecting to database specified by database.yml
|
825
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
826
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
827
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
828
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
829
|
+
[1m[35mSQL (1.6ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
831
|
+
Processing by RecordsController#edit as HTML
|
832
|
+
Parameters: {"id"=>"test:7"}
|
833
|
+
Completed 500 Internal Server Error in 1ms
|
834
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
835
|
+
Connecting to database specified by database.yml
|
836
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
837
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
838
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
839
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
840
|
+
[1m[35mSQL (1.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
842
|
+
Processing by RecordsController#edit as HTML
|
843
|
+
Parameters: {"id"=>"test:7"}
|
844
|
+
Completed 500 Internal Server Error in 1ms
|
845
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
846
|
+
Connecting to database specified by database.yml
|
847
|
+
[1m[36m (11.0ms)[0m [1mbegin transaction[0m
|
848
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
849
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
850
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
851
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
852
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
853
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
854
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
855
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
856
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
857
|
+
[1m[36mUser Exists (15.7ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
858
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
859
|
+
[1m[35mSQL (68.9ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
861
|
+
Processing by RecordsController#new as HTML
|
862
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
863
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
864
|
+
Usergroups are ["public", "registered"]
|
865
|
+
Completed 200 OK in 85ms (Views: 47.0ms | ActiveRecord: 0.5ms)
|
866
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
867
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
868
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
869
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
870
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
871
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
873
|
+
Processing by RecordsController#new as HTML
|
874
|
+
Parameters: {"type"=>"Audio"}
|
875
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
876
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
877
|
+
Usergroups are ["public", "registered"]
|
878
|
+
Completed 200 OK in 378ms (Views: 10.5ms | ActiveRecord: 0.2ms)
|
879
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
880
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
881
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
882
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
883
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
884
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
890
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
891
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
892
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
893
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
894
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
896
|
+
Processing by RecordsController#create as HTML
|
897
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
898
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
899
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
900
|
+
Usergroups are ["public", "registered"]
|
901
|
+
Redirected to http://test.host/catalog/test:6
|
902
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
903
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
904
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
905
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
906
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
907
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
908
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
915
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
916
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
917
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
918
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
919
|
+
[1m[35mSQL (6.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
921
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
922
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
923
|
+
Usergroups are ["public", "registered"]
|
924
|
+
Processing by RecordsController#new as HTML
|
925
|
+
Completed 500 Internal Server Error in 174ms
|
926
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
927
|
+
Connecting to database specified by database.yml
|
928
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
929
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
930
|
+
[1m[36mUser Exists (9.4ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
931
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
932
|
+
[1m[35mSQL (30.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
938
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
939
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
940
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
941
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
942
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
948
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
949
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
950
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
951
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
952
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
954
|
+
Processing by RecordsController#create as HTML
|
955
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
956
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
957
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
958
|
+
Usergroups are ["public", "registered"]
|
959
|
+
Completed 500 Internal Server Error in 84ms
|
960
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
961
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
962
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
963
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
964
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
965
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
967
|
+
Processing by RecordsController#create as HTML
|
968
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
969
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
970
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
971
|
+
Usergroups are ["public", "registered"]
|
972
|
+
Completed 500 Internal Server Error in 3ms
|
973
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
974
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
975
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
976
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
977
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
978
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
980
|
+
Processing by RecordsController#new as HTML
|
981
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
982
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
983
|
+
Usergroups are ["public", "registered"]
|
984
|
+
Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.2ms)
|
985
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
986
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
987
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
988
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
989
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
990
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
992
|
+
Processing by RecordsController#new as HTML
|
993
|
+
Parameters: {"type"=>"Audio"}
|
994
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
995
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
996
|
+
Usergroups are ["public", "registered"]
|
997
|
+
Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
998
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
999
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1000
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1001
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1002
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1003
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1005
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1006
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1007
|
+
Usergroups are ["public", "registered"]
|
1008
|
+
Processing by RecordsController#new as HTML
|
1009
|
+
Completed 500 Internal Server Error in 84ms
|
1010
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1011
|
+
Connecting to database specified by database.yml
|
1012
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1013
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1014
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
1015
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1016
|
+
[1m[35mSQL (1.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1018
|
+
Processing by RecordsController#new as HTML
|
1019
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1020
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1025
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1026
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1027
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1028
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1029
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1031
|
+
Processing by RecordsController#new as HTML
|
1032
|
+
Parameters: {"type"=>"Audio"}
|
1033
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1034
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1035
|
+
Usergroups are ["public", "registered"]
|
1036
|
+
Completed 200 OK in 77ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
1037
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1038
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1039
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1040
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1041
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1042
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1048
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1049
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1050
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1051
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1052
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1054
|
+
Processing by RecordsController#create as HTML
|
1055
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1056
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1057
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1058
|
+
Usergroups are ["public", "registered"]
|
1059
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1060
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
1061
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1062
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1063
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1064
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1065
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1066
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1068
|
+
Processing by RecordsController#create as HTML
|
1069
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1070
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1071
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1072
|
+
Usergroups are ["public", "registered"]
|
1073
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1074
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
1075
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1076
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1077
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1078
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1079
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1080
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1087
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1088
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1089
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1090
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1091
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1093
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1094
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1095
|
+
Usergroups are ["public", "registered"]
|
1096
|
+
Processing by RecordsController#new as HTML
|
1097
|
+
Completed 500 Internal Server Error in 12ms
|
1098
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1099
|
+
Connecting to database specified by database.yml
|
1100
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1101
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1102
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1103
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1104
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1105
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1106
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1107
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1108
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1109
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1110
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
1111
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1112
|
+
[1m[35mSQL (67.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (12.0ms)[0m rollback transaction
|
1118
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1119
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1120
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1121
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1122
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1124
|
+
Processing by RecordsController#new as HTML
|
1125
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1126
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1127
|
+
Usergroups are ["public", "registered"]
|
1128
|
+
Completed 200 OK in 56ms (Views: 3.0ms | ActiveRecord: 0.4ms)
|
1129
|
+
[1m[35m (7.2ms)[0m rollback transaction
|
1130
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1131
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1132
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1133
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1134
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1136
|
+
Processing by RecordsController#new as HTML
|
1137
|
+
Parameters: {"type"=>"Audio"}
|
1138
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1139
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1140
|
+
Usergroups are ["public", "registered"]
|
1141
|
+
Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
1142
|
+
[1m[35m (10.6ms)[0m rollback transaction
|
1143
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1144
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1145
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1146
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1147
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1149
|
+
Processing by RecordsController#create as HTML
|
1150
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1151
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1152
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1153
|
+
Usergroups are ["public", "registered"]
|
1154
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1155
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
1156
|
+
[1m[35m (5.7ms)[0m rollback transaction
|
1157
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1158
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1159
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1160
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1161
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1163
|
+
Processing by RecordsController#create as HTML
|
1164
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1165
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1166
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1167
|
+
Usergroups are ["public", "registered"]
|
1168
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1169
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
1170
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
1171
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1172
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1173
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1174
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1175
|
+
[1m[35mSQL (355.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (13.9ms)[0m rollback transaction
|
1182
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1183
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1184
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1185
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1186
|
+
[1m[35mSQL (398.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1188
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1189
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1190
|
+
Usergroups are ["public", "registered"]
|
1191
|
+
Processing by RecordsController#new as HTML
|
1192
|
+
Completed 500 Internal Server Error in 715ms
|
1193
|
+
[1m[35m (7.7ms)[0m rollback transaction
|
1194
|
+
Connecting to database specified by database.yml
|
1195
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1196
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1197
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
1198
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1199
|
+
[1m[35mSQL (72.9ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1201
|
+
Processing by RecordsController#new as HTML
|
1202
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1203
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1208
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1209
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1210
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1211
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1212
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1214
|
+
Processing by RecordsController#new as HTML
|
1215
|
+
Parameters: {"type"=>"Audio"}
|
1216
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1217
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1218
|
+
Usergroups are ["public", "registered"]
|
1219
|
+
Completed 200 OK in 112ms (Views: 2.1ms | ActiveRecord: 0.3ms)
|
1220
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1221
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1222
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1223
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1224
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1225
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1236
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1237
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1238
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1239
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1240
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1242
|
+
Processing by RecordsController#create as HTML
|
1243
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1244
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1245
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1246
|
+
Usergroups are ["public", "registered"]
|
1247
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1248
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
|
1249
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1250
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1251
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1252
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1253
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1254
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1256
|
+
Processing by RecordsController#create as JSON
|
1257
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1258
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1259
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1260
|
+
Usergroups are ["public", "registered"]
|
1261
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1262
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
|
1263
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1264
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1265
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1266
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1267
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1268
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1270
|
+
Processing by RecordsController#create as HTML
|
1271
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1272
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1273
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1274
|
+
Usergroups are ["public", "registered"]
|
1275
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1276
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
1277
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1278
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1279
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1280
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1281
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1282
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1288
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1289
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1290
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
1291
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1292
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1294
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1295
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
1296
|
+
Usergroups are ["public", "registered"]
|
1297
|
+
Processing by RecordsController#new as HTML
|
1298
|
+
Completed 500 Internal Server Error in 113ms
|
1299
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1300
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1301
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1302
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1303
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1304
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1305
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1306
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1307
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1308
|
+
Connecting to database specified by database.yml
|
1309
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1310
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1311
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1312
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1313
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1314
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1315
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1316
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1317
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1318
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1319
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
1320
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1321
|
+
[1m[35mSQL (1.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1323
|
+
Processing by RecordsController#create as HTML
|
1324
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1325
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1326
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
1327
|
+
Usergroups are ["public", "registered"]
|
1328
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1329
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.2ms)
|
1330
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1331
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1332
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1333
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1334
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1335
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1337
|
+
Processing by RecordsController#create as JSON
|
1338
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1339
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1340
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1341
|
+
Usergroups are ["public", "registered"]
|
1342
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1343
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
1344
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1345
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1346
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1347
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1348
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1349
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1351
|
+
Processing by RecordsController#create as HTML
|
1352
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1353
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1354
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1355
|
+
Usergroups are ["public", "registered"]
|
1356
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1357
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
1358
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1359
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1360
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1361
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1362
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1363
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1380
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1381
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1382
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1383
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1384
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1390
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1391
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1392
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1393
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1394
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1396
|
+
Processing by RecordsController#new as HTML
|
1397
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1398
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1399
|
+
Usergroups are ["public", "registered"]
|
1400
|
+
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
1401
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1402
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1403
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1404
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1405
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1406
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1408
|
+
Processing by RecordsController#new as HTML
|
1409
|
+
Parameters: {"type"=>"Audio"}
|
1410
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1411
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1412
|
+
Usergroups are ["public", "registered"]
|
1413
|
+
Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
1414
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1415
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1416
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1417
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
1418
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1419
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1421
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1422
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
1423
|
+
Usergroups are ["public", "registered"]
|
1424
|
+
Processing by RecordsController#new as HTML
|
1425
|
+
Completed 500 Internal Server Error in 65ms
|
1426
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1427
|
+
Connecting to database specified by database.yml
|
1428
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1429
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1430
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1431
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1432
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1433
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1434
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1435
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1436
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1437
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1438
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
1439
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1440
|
+
[1m[35mSQL (1.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1447
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1448
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1449
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1450
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1451
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1457
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1458
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1459
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1460
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1461
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1463
|
+
Processing by RecordsController#create as HTML
|
1464
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1465
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1466
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1467
|
+
Usergroups are ["public", "registered"]
|
1468
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1469
|
+
Completed 302 Found in 56ms (ActiveRecord: 0.2ms)
|
1470
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1471
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1472
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1473
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1474
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1475
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1477
|
+
Processing by RecordsController#create as JSON
|
1478
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1479
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1480
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1481
|
+
Usergroups are ["public", "registered"]
|
1482
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1483
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
1484
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1485
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1486
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1487
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1488
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1489
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1491
|
+
Processing by RecordsController#create as HTML
|
1492
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1493
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1494
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1495
|
+
Usergroups are ["public", "registered"]
|
1496
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1497
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
1498
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1499
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1500
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1501
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1502
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1503
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1509
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1510
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1511
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1512
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1513
|
+
[1m[35mSQL (0.9ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1515
|
+
Processing by RecordsController#new as HTML
|
1516
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1517
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1518
|
+
Usergroups are ["public", "registered"]
|
1519
|
+
Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
1520
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1521
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1522
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1523
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
1524
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1525
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1527
|
+
Processing by RecordsController#new as HTML
|
1528
|
+
Parameters: {"type"=>"Audio"}
|
1529
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1530
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
1531
|
+
Usergroups are ["public", "registered"]
|
1532
|
+
Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
1533
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1534
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1535
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1536
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
1537
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1538
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1540
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1541
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
1542
|
+
Usergroups are ["public", "registered"]
|
1543
|
+
Processing by RecordsController#new as HTML
|
1544
|
+
Completed 500 Internal Server Error in 12ms
|
1545
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1546
|
+
Connecting to database specified by database.yml
|
1547
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1548
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1549
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
1550
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1551
|
+
[1m[35mSQL (1.7ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1553
|
+
Processing by RecordsController#new as HTML
|
1554
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1555
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1560
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1561
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1562
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1563
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1564
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1566
|
+
Processing by RecordsController#new as HTML
|
1567
|
+
Parameters: {"type"=>"Audio"}
|
1568
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1569
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1570
|
+
Usergroups are ["public", "registered"]
|
1571
|
+
Completed 200 OK in 72ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
1572
|
+
[1m[35m (6.0ms)[0m rollback transaction
|
1573
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1574
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1575
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1576
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1577
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1579
|
+
Processing by RecordsController#create as HTML
|
1580
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1581
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1582
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1583
|
+
Usergroups are ["public", "registered"]
|
1584
|
+
Completed 500 Internal Server Error in 6ms
|
1585
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1586
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1587
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1588
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1589
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1590
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1592
|
+
Processing by RecordsController#create as JSON
|
1593
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1594
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1595
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1596
|
+
Usergroups are ["public", "registered"]
|
1597
|
+
Completed 500 Internal Server Error in 5ms
|
1598
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1599
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1600
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1601
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1602
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1603
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1605
|
+
Processing by RecordsController#create as HTML
|
1606
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1607
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1608
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1609
|
+
Usergroups are ["public", "registered"]
|
1610
|
+
Completed 500 Internal Server Error in 5ms
|
1611
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1612
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1613
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1614
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1615
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1616
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1622
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1623
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1624
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1625
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1626
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1633
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1634
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1635
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
1636
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1637
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1643
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1644
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1645
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
1646
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1647
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1649
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1650
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
1651
|
+
Usergroups are ["public", "registered"]
|
1652
|
+
Processing by RecordsController#new as HTML
|
1653
|
+
Completed 500 Internal Server Error in 13ms
|
1654
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1655
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1656
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1657
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1658
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1659
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1660
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1661
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1662
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1663
|
+
Connecting to database specified by database.yml
|
1664
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1665
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1666
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1667
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1668
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1669
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1670
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1671
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1672
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
1673
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1674
|
+
[1m[35mSQL (2.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (79.5ms)[0m rollback transaction
|
1680
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1681
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1682
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1683
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1684
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1686
|
+
Processing by RecordsController#create as HTML
|
1687
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1688
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1689
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1690
|
+
Usergroups are ["public", "registered"]
|
1691
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1692
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.2ms)
|
1693
|
+
[1m[35m (25.4ms)[0m rollback transaction
|
1694
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1695
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1696
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1697
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1698
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1700
|
+
Processing by RecordsController#create as JSON
|
1701
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1702
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1703
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1704
|
+
Usergroups are ["public", "registered"]
|
1705
|
+
Completed 500 Internal Server Error in 5ms
|
1706
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1707
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1708
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1709
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1710
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1711
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1713
|
+
Processing by RecordsController#create as HTML
|
1714
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1715
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1716
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1717
|
+
Usergroups are ["public", "registered"]
|
1718
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1719
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
1720
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1721
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1722
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1723
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1724
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1725
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1727
|
+
Processing by RecordsController#new as HTML
|
1728
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1729
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1730
|
+
Usergroups are ["public", "registered"]
|
1731
|
+
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
1732
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1733
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1734
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1735
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1736
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1737
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1739
|
+
Processing by RecordsController#new as HTML
|
1740
|
+
Parameters: {"type"=>"Audio"}
|
1741
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1742
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1743
|
+
Usergroups are ["public", "registered"]
|
1744
|
+
Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
1745
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1746
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1747
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1748
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1749
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1750
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1757
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1758
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1759
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
1760
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1761
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1767
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1768
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1769
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
1770
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1771
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1773
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1774
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
1775
|
+
Usergroups are ["public", "registered"]
|
1776
|
+
Processing by RecordsController#new as HTML
|
1777
|
+
Completed 500 Internal Server Error in 64ms
|
1778
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1779
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1780
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1781
|
+
Connecting to database specified by database.yml
|
1782
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1783
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1784
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1785
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1786
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1787
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1788
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1789
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1790
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
1791
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1792
|
+
[1m[35mSQL (1.6ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1794
|
+
Processing by RecordsController#create as HTML
|
1795
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1796
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1797
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
1798
|
+
Usergroups are ["public", "registered"]
|
1799
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1800
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.2ms)
|
1801
|
+
[1m[35m (12.5ms)[0m rollback transaction
|
1802
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1803
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1804
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1805
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1806
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1808
|
+
Processing by RecordsController#create as JSON
|
1809
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1810
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1811
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1812
|
+
Usergroups are ["public", "registered"]
|
1813
|
+
Completed 500 Internal Server Error in 57ms
|
1814
|
+
[1m[35m (41.9ms)[0m rollback transaction
|
1815
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1816
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1817
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1818
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1819
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1821
|
+
Processing by RecordsController#create as HTML
|
1822
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1823
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1824
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1825
|
+
Usergroups are ["public", "registered"]
|
1826
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1827
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
1828
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
1829
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1830
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1831
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1832
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1833
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1839
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1840
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1841
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1842
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1843
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1845
|
+
Processing by RecordsController#new as HTML
|
1846
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1847
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1848
|
+
Usergroups are ["public", "registered"]
|
1849
|
+
Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
1850
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1851
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1852
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1853
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1854
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1855
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1857
|
+
Processing by RecordsController#new as HTML
|
1858
|
+
Parameters: {"type"=>"Audio"}
|
1859
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1860
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1861
|
+
Usergroups are ["public", "registered"]
|
1862
|
+
Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
1863
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1864
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1865
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1866
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1867
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1868
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1875
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1876
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1877
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
1878
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1879
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1885
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1886
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1887
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
1888
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1889
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1891
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1892
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
1893
|
+
Usergroups are ["public", "registered"]
|
1894
|
+
Processing by RecordsController#new as HTML
|
1895
|
+
Completed 500 Internal Server Error in 12ms
|
1896
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
1897
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1898
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1899
|
+
Connecting to database specified by database.yml
|
1900
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1901
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1902
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
1903
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1904
|
+
[1m[35mSQL (1.6ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1906
|
+
Processing by RecordsController#create as HTML
|
1907
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1908
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1909
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
1910
|
+
Usergroups are ["public", "registered"]
|
1911
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1912
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.2ms)
|
1913
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1914
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1915
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1916
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1917
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1918
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1920
|
+
Processing by RecordsController#create as JSON
|
1921
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1922
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1923
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
1924
|
+
Usergroups are ["public", "registered"]
|
1925
|
+
Completed 500 Internal Server Error in 4ms
|
1926
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1927
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1928
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1929
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1930
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1931
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1933
|
+
Processing by RecordsController#create as HTML
|
1934
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
1935
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1936
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
1937
|
+
Usergroups are ["public", "registered"]
|
1938
|
+
Redirected to http://test.host/catalog/tufts:0001
|
1939
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
1940
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1941
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1942
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1943
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
1944
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1945
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1951
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1952
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1953
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1954
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1955
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1957
|
+
Processing by RecordsController#new as HTML
|
1958
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1959
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
1960
|
+
Usergroups are ["public", "registered"]
|
1961
|
+
Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
1962
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1963
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1964
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1965
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1966
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1967
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1969
|
+
Processing by RecordsController#new as HTML
|
1970
|
+
Parameters: {"type"=>"Audio"}
|
1971
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
1972
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
1973
|
+
Usergroups are ["public", "registered"]
|
1974
|
+
Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
1975
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1976
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1977
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1978
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
1979
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1980
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1987
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1988
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1989
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
1990
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
1991
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1997
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1998
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1999
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
2000
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2001
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2003
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2004
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
2005
|
+
Usergroups are ["public", "registered"]
|
2006
|
+
Processing by RecordsController#new as HTML
|
2007
|
+
Completed 500 Internal Server Error in 12ms
|
2008
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2009
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2010
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2011
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2012
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2013
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2014
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2015
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2016
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2017
|
+
Connecting to database specified by database.yml
|
2018
|
+
Connecting to database specified by database.yml
|
2019
|
+
[1m[36m (120.5ms)[0m [1mbegin transaction[0m
|
2020
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2021
|
+
[1m[36mUser Exists (21.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
2022
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2023
|
+
[1m[35mSQL (66.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2025
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2026
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
2027
|
+
Usergroups are ["public", "registered"]
|
2028
|
+
Processing by RecordsController#new as HTML
|
2029
|
+
Completed 500 Internal Server Error in 212ms
|
2030
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2031
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2032
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2033
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
2034
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2035
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2037
|
+
Processing by RecordsController#create as JSON
|
2038
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
2039
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2040
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
2041
|
+
Usergroups are ["public", "registered"]
|
2042
|
+
Completed 201 Created in 19ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
2043
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2044
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2045
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2046
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
2047
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2048
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2050
|
+
Processing by RecordsController#create as HTML
|
2051
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
2052
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2053
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
2054
|
+
Usergroups are ["public", "registered"]
|
2055
|
+
Redirected to http://test.host/catalog/tufts:0001
|
2056
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
2057
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2058
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2059
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2060
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
2061
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2062
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2064
|
+
Processing by RecordsController#create as HTML
|
2065
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
2066
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2067
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
2068
|
+
Usergroups are ["public", "registered"]
|
2069
|
+
Redirected to http://test.host/catalog/tufts:0001
|
2070
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
2071
|
+
[1m[35m (11.7ms)[0m rollback transaction
|
2072
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2073
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2074
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
2075
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2076
|
+
[1m[35mSQL (29.9ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2082
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2083
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2084
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
2085
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2086
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2093
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2094
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2095
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
2096
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2097
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2103
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2104
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2105
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
2106
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2107
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2109
|
+
Processing by RecordsController#new as HTML
|
2110
|
+
Parameters: {"type"=>"Audio"}
|
2111
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2112
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
2113
|
+
Usergroups are ["public", "registered"]
|
2114
|
+
Completed 200 OK in 33ms (Views: 28.1ms | ActiveRecord: 0.2ms)
|
2115
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2116
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2117
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2118
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
2119
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2120
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2122
|
+
Processing by RecordsController#new as HTML
|
2123
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2124
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
2125
|
+
Usergroups are ["public", "registered"]
|
2126
|
+
Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.2ms)
|
2127
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2128
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2129
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2130
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2131
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2132
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2133
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2134
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2135
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2136
|
+
Connecting to database specified by database.yml
|
2137
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
2138
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2139
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2140
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2141
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2142
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2143
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2144
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2145
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2146
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2147
|
+
[1m[36mUser Exists (19.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
2148
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2149
|
+
[1m[35mSQL (2.8ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2156
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2157
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2158
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
2159
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2160
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2166
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2167
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2168
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
2169
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2170
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2176
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2177
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2178
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
2179
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2180
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2182
|
+
Processing by RecordsController#new as HTML
|
2183
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2184
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
2185
|
+
Usergroups are ["public", "registered"]
|
2186
|
+
Completed 200 OK in 92ms (Views: 19.2ms | ActiveRecord: 0.5ms)
|
2187
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2188
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2189
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2190
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
2191
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2192
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2194
|
+
Processing by RecordsController#new as HTML
|
2195
|
+
Parameters: {"type"=>"Audio"}
|
2196
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2197
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
2198
|
+
Usergroups are ["public", "registered"]
|
2199
|
+
Completed 200 OK in 29ms (Views: 24.3ms | ActiveRecord: 0.2ms)
|
2200
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2201
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2202
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2203
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
2204
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2205
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2207
|
+
Processing by RecordsController#create as HTML
|
2208
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
2209
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2210
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
2211
|
+
Usergroups are ["public", "registered"]
|
2212
|
+
Redirected to http://test.host/catalog/tufts:0001
|
2213
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
2214
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2215
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2216
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2217
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
2218
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2219
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2221
|
+
Processing by RecordsController#create as JSON
|
2222
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
2223
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2224
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
2225
|
+
Usergroups are ["public", "registered"]
|
2226
|
+
Completed 201 Created in 6ms (Views: 0.3ms | ActiveRecord: 0.2ms)
|
2227
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2228
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2229
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2230
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
2231
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2232
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2234
|
+
Processing by RecordsController#create as HTML
|
2235
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
2236
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2237
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
2238
|
+
Usergroups are ["public", "registered"]
|
2239
|
+
Redirected to http://test.host/catalog/tufts:0001
|
2240
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
2241
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2242
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2243
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2244
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
2245
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2246
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2248
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2249
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
2250
|
+
Usergroups are ["public", "registered"]
|
2251
|
+
Processing by RecordsController#new as HTML
|
2252
|
+
Completed 500 Internal Server Error in 151ms
|
2253
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2254
|
+
Connecting to database specified by database.yml
|
2255
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
2256
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2257
|
+
[1m[36mUser Exists (14.0ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
2258
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2259
|
+
[1m[35mSQL (9.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2261
|
+
Processing by RecordsController#new as HTML
|
2262
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2263
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1[0m
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2268
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2269
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2270
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
2271
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2272
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2274
|
+
Processing by RecordsController#new as HTML
|
2275
|
+
Parameters: {"type"=>"Audio"}
|
2276
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2277
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
2278
|
+
Usergroups are ["public", "registered"]
|
2279
|
+
Completed 200 OK in 166ms (Views: 11.2ms | ActiveRecord: 0.2ms)
|
2280
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2281
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2282
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2283
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1[0m
|
2284
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2285
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2291
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2292
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2293
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
2294
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2295
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2302
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2303
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2304
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1[0m
|
2305
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2306
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2312
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2313
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2314
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
2315
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2316
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2318
|
+
Processing by RecordsController#create as HTML
|
2319
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
2320
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2321
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
2322
|
+
Usergroups are ["public", "registered"]
|
2323
|
+
Redirected to http://test.host/catalog/tufts:0001
|
2324
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
2325
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2326
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2327
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2328
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
2329
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2330
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2332
|
+
Processing by RecordsController#create as JSON
|
2333
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
2334
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2335
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1[0m
|
2336
|
+
Usergroups are ["public", "registered"]
|
2337
|
+
Completed 201 Created in 6ms (Views: 0.3ms | ActiveRecord: 0.2ms)
|
2338
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2339
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2340
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2341
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
2342
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2343
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2345
|
+
Processing by RecordsController#create as HTML
|
2346
|
+
Parameters: {"type"=>"Audio", "audio"=>{"title"=>"My title"}}
|
2347
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2348
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
2349
|
+
Usergroups are ["public", "registered"]
|
2350
|
+
Redirected to http://test.host/catalog/tufts:0001
|
2351
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
|
2352
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2353
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2354
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2355
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
2356
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
2357
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2359
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
2360
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1[0m
|
2361
|
+
Usergroups are ["public", "registered"]
|
2362
|
+
Processing by RecordsController#new as HTML
|
2363
|
+
Completed 500 Internal Server Error in 172ms
|
2364
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2365
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2366
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2367
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2368
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2369
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2370
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2371
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2372
|
+
[1m[35m (0.0ms)[0m rollback transaction
|