(0.1ms) select sqlite_version(*)  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.0ms) PRAGMA index_list("schema_migrations")  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateAdminNotes (20120430130552)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "admin_notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "admin_user_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("admin_notes")  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "admin_notes" ("resource_type", "resource_id")  (0.0ms) PRAGMA index_list("admin_notes")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.1ms) CREATE INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id" ON "admin_notes" ("admin_user_type", "admin_user_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120430130552')  (2.9ms) commit transaction Migrating to MoveAdminNotesToComments (20120430130553)  (0.0ms) begin transaction  (0.0ms) PRAGMA index_list("admin_notes")  (0.0ms) PRAGMA index_info('index_admin_notes_on_admin_user_type_and_admin_user_id')  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.2ms) DROP INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id"  (0.2ms) ALTER TABLE "admin_notes" RENAME TO "active_admin_comments"  (0.4ms) CREATE TEMPORARY TABLE "altered_active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("altered_active_admin_comments")  (0.1ms) CREATE INDEX "temp_index_admin_notes_on_resource_type_and_resource_id" ON "altered_active_admin_comments" ("resource_type", "resource_id")  (0.1ms) SELECT * FROM "active_admin_comments"  (0.3ms) DROP TABLE "active_admin_comments"  (0.1ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("altered_active_admin_comments")  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")  (0.0ms) SELECT * FROM "altered_active_admin_comments"  (0.3ms) DROP TABLE "altered_active_admin_comments"  (0.1ms) CREATE TEMPORARY TABLE "altered_active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("altered_active_admin_comments")  (0.1ms) CREATE INDEX "temp_index_admin_notes_on_resource_type_and_resource_id" ON "altered_active_admin_comments" ("resource_type", "resource_id")  (0.0ms) SELECT * FROM "active_admin_comments"  (0.1ms) DROP TABLE "active_admin_comments"  (0.1ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("altered_active_admin_comments")  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")  (0.1ms) SELECT * FROM "altered_active_admin_comments"  (0.1ms) DROP TABLE "altered_active_admin_comments"  (0.1ms) ALTER TABLE "active_admin_comments" ADD "namespace" varchar(255)  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.1ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.1ms) CREATE INDEX "index_active_admin_comments_on_author_type_and_author_id" ON "active_admin_comments" ("author_type", "author_id")  (0.0ms) UPDATE active_admin_comments SET namespace='admin'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120430130553')  (4.4ms) commit transaction Migrating to DeviseCreateAdminUsers (20120430200549)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "admin_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)  AdminUser Exists (0.1ms) SELECT 1 FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (8.9ms) INSERT INTO "admin_users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_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, 01 May 2012 15:43:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "admin@example.com"], ["encrypted_password", "$2a$10$IWlHz4qD5HOwv1PfYUYGfOHi.4XopiJ5Twc08dznHCPg15MgOv8.."], ["last_sign_in_at", nil], ["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, 01 May 2012 15:43:55 UTC +00:00]]  (0.0ms) PRAGMA index_list("admin_users")  (0.3ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")  (0.0ms) PRAGMA index_list("admin_users")  (0.0ms) PRAGMA index_info('index_admin_users_on_email')  (0.1ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120430200549')  (3.6ms) commit transaction Migrating to CreatePages (20120430201522)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120430201522')  (3.0ms) commit transaction  (0.3ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_author_type_and_author_id')  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("admin_users")  (0.0ms) PRAGMA index_info('index_admin_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_admin_users_on_email')  (0.0ms) PRAGMA index_list("pages") Started GET "/" for 127.0.0.1 at 2012-05-01 08:44:54 -0700 ActionController::RoutingError (No route matches [GET] "/"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:146:in `handle' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.5ms) Started HEAD "/admin" for 127.0.0.1 at 2012-05-01 08:44:57 -0700 Processing by Admin::DashboardController#index as HTML Completed 401 Unauthorized in 24ms Started HEAD "/admin/login" for 127.0.0.1 at 2012-05-01 08:44:58 -0700 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/shared/_links.erb (1.0ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (119.5ms) Compiled active_admin.css (1627ms) (pid 34993) Compiled active_admin/editor.css (0ms) (pid 34993) Compiled active_admin/editor/wysiwyg.css (0ms) (pid 34993) Compiled jquery.js (1ms) (pid 34993) Compiled jquery-ui.js (2ms) (pid 34993) Compiled jquery_ujs.js (0ms) (pid 34993) Compiled active_admin/application.js (0ms) (pid 34993) Compiled active_admin/base.js (102ms) (pid 34993) Compiled active_admin.js (159ms) (pid 34993) Compiled active_admin/editor/wysihtml5.min.js (0ms) (pid 34993) Compiled active_admin/editor/wysihtml5/parser_rules.js (0ms) (pid 34993) Compiled active_admin/editor/quicksave.js (0ms) (pid 34993) Compiled active_admin/editor.js (48ms) (pid 34993) Completed 200 OK in 2154ms (Views: 2140.8ms | ActiveRecord: 0.4ms) Started GET "/admin" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Processing by Admin::DashboardController#index as HTML Completed 401 Unauthorized in 0ms Started GET "/admin/login" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/shared/_links.erb (0.3ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (18.9ms) Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin.css - 200 OK (19ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /jquery.js - 200 OK (3ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin/application.js - 200 OK (1ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin.js - 200 OK (32ms) Started GET "/assets/active_admin/editor/wysihtml5/parser_rules.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin/editor/wysihtml5/parser_rules.js - 200 OK (3ms) Started GET "/assets/active_admin/editor/quicksave.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin/editor/quicksave.js - 200 OK (3ms) Started GET "/assets/active_admin/editor.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin/editor.js - 200 OK (4ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:07 -0700 Served asset /jquery-ui.js - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:45:07 -0700 Served asset /active_admin/editor/wysiwyg.css - 200 OK (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:07 -0700 Served asset /jquery_ujs.js - 200 OK (1ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:07 -0700 Served asset /active_admin/base.js - 200 OK (6ms) Started GET "/assets/active_admin/editor/wysihtml5.min.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:07 -0700 Served asset /active_admin/editor/wysihtml5.min.js - 200 OK (3ms) Started POST "/admin/login" for 127.0.0.1 at 2012-05-01 08:45:15 -0700 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"wuENeFL7puH5NvNesYAQqq5uMtDpnpWmxlWX/QSV72M=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (0.3ms) UPDATE "admin_users" SET "last_sign_in_at" = '2012-05-01 15:45:15.211278', "current_sign_in_at" = '2012-05-01 15:45:15.211278', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-05-01 15:45:15.212115' WHERE "admin_users"."id" = 1  (2.4ms) commit transaction Redirected to http://active_admin_editor.dev/admin Completed 302 Found in 214ms (ActiveRecord: 0.0ms) Started GET "/admin" for 127.0.0.1 at 2012-05-01 08:45:15 -0700 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (34.9ms) Completed 200 OK in 49ms (Views: 48.0ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:45:15 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:45:15 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Served asset /active_admin/editor.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:45:15 -0700 Served asset /active_admin.js - 200 OK (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:45:15 -0700 Served asset /active_admin/editor.js - 200 OK (30ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-01 08:46:06 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (125.8ms) Completed 200 OK in 192ms (Views: 186.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:06 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:46:06 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:06 -0700 Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:46:06 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:06 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-01 08:46:07 -0700 Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-01 08:46:07 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 200 OK (180ms) Served asset /active_admin/datepicker/datepicker-nipple.png - 200 OK (181ms) Started GET "/admin/pages/new" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Processing by Admin::PagesController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (26.5ms) Completed 200 OK in 158ms (Views: 151.3ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (2ms) Served asset /active_admin.js - 304 Not Modified (7ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Served asset /active_admin/editor/icons.png - 200 OK (6ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Served asset /active_admin/editor/wysiwyg - 200 OK (5ms) Started POST "/admin/pages" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Processing by Admin::PagesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"wuENeFL7puH5NvNesYAQqq5uMtDpnpWmxlWX/QSV72M=", "page"=>{"content"=>"

Hello world

this is a test
", "title"=>""}, "_wysihtml5_mode"=>"1", "commit"=>"Create Page"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "pages" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "

Hello world

this is a test
"], ["created_at", Tue, 01 May 2012 15:46:27 UTC +00:00], ["title", ""], ["updated_at", Tue, 01 May 2012 15:46:27 UTC +00:00]]  (53.5ms) commit transaction Redirected to http://active_admin_editor.dev/admin/pages/1 Completed 302 Found in 64ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (11.0ms) Completed 200 OK in 30ms (Views: 26.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (49.0ms) Completed 200 OK in 54ms (Views: 50.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Served asset /active_admin/editor/icons.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:40 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.5ms) Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Served asset /active_admin/editor/icons.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin" for 127.0.0.1 at 2012-05-01 08:49:04 -0700 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (9.0ms) Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:49:04 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:04 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:04 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:49:04 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:04 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (160.4ms) Completed 200 OK in 164ms (Views: 161.7ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Served asset /active_admin/orderable.png - 200 OK (8ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.2ms) Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Served asset /active_admin/editor/icons.png - 304 Not Modified (0ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-01 08:49:49 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"wuENeFL7puH5NvNesYAQqq5uMtDpnpWmxlWX/QSV72M=", "page"=>{"content"=>"

Hello world

this is a test

Here's a list:

", "title"=>""}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.2ms) UPDATE "pages" SET "content" = '

Hello world

this is a test

Here''s a list:

', "updated_at" = '2012-05-01 15:49:49.550931' WHERE "pages"."id" = 1  (49.2ms) commit transaction Redirected to http://active_admin_editor.dev/admin/pages/1 Completed 302 Found in 59ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-01 08:49:49 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (11.0ms) Completed 200 OK in 41ms (Views: 39.1ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:49:50 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:50 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:49:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:50 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:50 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.3ms) Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Served asset /active_admin/editor/icons.png - 304 Not Modified (0ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"wuENeFL7puH5NvNesYAQqq5uMtDpnpWmxlWX/QSV72M=", "page"=>{"content"=>"

Hello world

this is a test

Here's a list:
", "title"=>""}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.2ms) UPDATE "pages" SET "content" = '

Hello world

this is a test

Here''s a list:
', "updated_at" = '2012-05-01 15:50:17.588384' WHERE "pages"."id" = 1  (52.2ms) commit transaction Redirected to http://active_admin_editor.dev/admin/pages/1 Completed 302 Found in 60ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (10.5ms) Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (47.4ms) Completed 200 OK in 50ms (Views: 49.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Served asset /active_admin/editor/icons.png - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-01 08:50:52 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (88.4ms) Completed 200 OK in 92ms (Views: 89.8ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:50:52 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:50:52 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:52 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:52 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:52 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.7ms) Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Served asset /active_admin/editor/icons.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (0ms) (pid 34993) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (105.4ms) Completed 200 OK in 109ms (Views: 107.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (2ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:57:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (116.8ms) Completed 200 OK in 174ms (Views: 122.7ms | ActiveRecord: 3.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:57:30 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:57:30 -0700 Served asset /active_admin/editor.js - 304 Not Modified (5ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:57:30 -0700 Served asset /active_admin/editor.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:57:33 -0700 Served asset /active_admin.js - 304 Not Modified (8ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:57:33 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:57:33 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:58:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (17ms) (pid 35337) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (91.4ms) Completed 200 OK in 95ms (Views: 93.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:58:26 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:26 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:26 -0700 Served asset /active_admin/editor.js - 304 Not Modified (5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:58:26 -0700 Served asset /active_admin/editor.css - 200 OK (3ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:26 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:58:26 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:58:36 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.0ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (113.7ms) Completed 200 OK in 173ms (Views: 120.1ms | ActiveRecord: 4.0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:36 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:36 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:58:36 -0700 Served asset /active_admin.js - 304 Not Modified (31ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:39 -0700 Served asset /active_admin/editor.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:58:39 -0700 Served asset /active_admin/editor.js - 304 Not Modified (5ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:58:39 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:44 -0700 Served asset /active_admin/editor.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:02:00 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (14ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (67.7ms) Completed 200 OK in 71ms (Views: 69.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:02:01 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:02:01 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:02:01 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:02:01 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:02:01 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:02:01 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:02:56 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (108.8ms) Completed 200 OK in 112ms (Views: 110.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:02:56 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:02:56 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:02:56 -0700 Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:02:56 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:02:56 -0700 Served asset /active_admin/editor.js - 304 Not Modified (5ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:02:57 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (115.6ms) Completed 200 OK in 119ms (Views: 117.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Served asset /active_admin.js - 304 Not Modified (31ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:03:29 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (100.5ms) Completed 200 OK in 104ms (Views: 102.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:03:30 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:30 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:30 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:03:30 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:30 -0700 Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:03:30 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (203.5ms) Completed 200 OK in 207ms (Views: 205.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:04:38 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (110.8ms) Completed 200 OK in 114ms (Views: 112.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:04:39 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:04:39 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:04:39 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:04:39 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:04:39 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:04:39 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (129.2ms) Completed 200 OK in 133ms (Views: 130.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.css - 304 Not Modified (9ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (124.6ms) Completed 200 OK in 128ms (Views: 126.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (118.8ms) Completed 200 OK in 122ms (Views: 120.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (40ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (88.5ms) Completed 200 OK in 92ms (Views: 90.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:06:48 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (13ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (110.3ms) Completed 200 OK in 116ms (Views: 113.0ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:06:48 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:06:48 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:06:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:06:48 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:06:48 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (2ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:06:49 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:07:31 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (81.1ms) Completed 200 OK in 84ms (Views: 82.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:07:32 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:07:32 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:07:32 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.css - 304 Not Modified (29ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:07:32 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:07:32 -0700 Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:07:32 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:08:04 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (88.5ms) Completed 200 OK in 92ms (Views: 90.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:08:06 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:08:06 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:08:06 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:08:06 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:08:06 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:08:06 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:08:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (13ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (126.4ms) Completed 200 OK in 130ms (Views: 128.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:08:16 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:08:16 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:08:16 -0700 Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:08:16 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:08:16 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:08:16 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (14ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (82.8ms) Completed 200 OK in 86ms (Views: 84.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Served asset /active_admin/editor.css - 200 OK (5ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:09:44 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.9ms) Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:44 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Served asset /active_admin/editor.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:44 -0700 Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:09:44 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:09:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:09:45 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:09:53 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (14ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (148.7ms) Completed 200 OK in 152ms (Views: 150.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:09:53 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:53 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:53 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:53 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:09:53 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:09:54 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (13ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (43.3ms) Completed 200 OK in 47ms (Views: 44.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (13ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (181.7ms) Completed 200 OK in 185ms (Views: 183.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Served asset /active_admin/editor.css - 200 OK (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:11:46 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (14ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (115.4ms) Completed 200 OK in 119ms (Views: 117.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:11:46 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:11:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:11:46 -0700 Served asset /active_admin/editor.css - 200 OK (5ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:11:46 -0700 Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:11:46 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:11:47 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (14ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (210.2ms) Completed 200 OK in 214ms (Views: 211.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"wuENeFL7puH5NvNesYAQqq5uMtDpnpWmxlWX/QSV72M=", "page"=>{"content"=>"

Hello world

this is a test

Here's a list:
", "title"=>""}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.0ms) commit transaction Redirected to http://active_admin_editor.dev/admin/pages/1 Completed 302 Found in 13ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (13.5ms) Completed 200 OK in 87ms (Views: 84.4ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:12:47 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.5ms) Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:12:48 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:48 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:12:48 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:48 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:12:48 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:13:58 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (661ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (692.7ms) Completed 200 OK in 696ms (Views: 694.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:13:59 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:13:59 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:13:59 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:13:59 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:13:59 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:13:59 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:14:04 -0700 Served asset /active_admin/editor.css - 304 Not Modified (34ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:15:41 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (634ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (696.9ms) Completed 200 OK in 700ms (Views: 698.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:15:41 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:15:41 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:15:41 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:15:41 -0700 Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:15:41 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:15:42 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:15:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (670ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (753.0ms) Completed 200 OK in 756ms (Views: 754.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:15:58 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:15:58 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:15:58 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:15:58 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:15:58 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (7ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:15:58 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:16:09 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (663ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (699.1ms) Completed 200 OK in 703ms (Views: 700.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:16:10 -0700 Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:16:10 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:16:10 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:16:10 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:16:10 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:16:10 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:16:41 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (670ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (749.2ms) Completed 200 OK in 753ms (Views: 750.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:16:42 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:16:42 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:16:42 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:16:42 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:16:42 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (7ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:16:42 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:17:00 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (666ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (702.2ms) Completed 200 OK in 706ms (Views: 703.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:17:01 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:01 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:17:01 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:01 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:01 -0700 Served asset /active_admin/editor.css - 200 OK (34ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:17:01 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:17:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (636ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (751.1ms) Completed 200 OK in 754ms (Views: 752.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:17:16 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:16 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:17:16 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:16 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:16 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:17:16 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:17:36 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (668ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (757.6ms) Completed 200 OK in 761ms (Views: 759.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:17:37 -0700 Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:17:37 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:37 -0700 Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:37 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:37 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:17:37 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:17:58 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (674ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (762.4ms) Completed 200 OK in 766ms (Views: 764.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:17:59 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:59 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:17:59 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:59 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:59 -0700 Served asset /active_admin/editor.css - 200 OK (7ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:17:59 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:18:13 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (647ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (756.7ms) Completed 200 OK in 760ms (Views: 758.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:18:13 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:18:13 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:18:13 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:18:13 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:18:13 -0700 Served asset /active_admin/editor.css - 200 OK (7ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:18:14 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (22.8ms) Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:19:17 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (646ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (753.4ms) Completed 200 OK in 757ms (Views: 755.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:19:18 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:18 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:18 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:19:18 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:18 -0700 Served asset /active_admin/editor.css - 200 OK (9ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:19:18 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (22.7ms) Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Served asset /active_admin/editor.css - 304 Not Modified (7ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:19:41 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (640ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (746.9ms) Completed 200 OK in 750ms (Views: 748.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:42 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:42 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:19:42 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:42 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:19:42 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:19:42 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:23:33 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (674ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (759.6ms) Completed 200 OK in 763ms (Views: 761.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:23:34 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:23:34 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:23:34 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:23:34 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:23:34 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:23:34 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:23:49 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (676ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (754.4ms) Completed 200 OK in 758ms (Views: 756.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:23:50 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:23:50 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:23:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:23:50 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:23:50 -0700 Served asset /active_admin/editor.css - 200 OK (7ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:23:50 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:24:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (672ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (761.1ms) Completed 200 OK in 765ms (Views: 762.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:24:16 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:24:16 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:24:16 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:24:16 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:24:16 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:24:17 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:24:39 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (668ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (756.1ms) Completed 200 OK in 759ms (Views: 757.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:24:40 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:24:40 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:24:40 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:24:40 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:24:40 -0700 Served asset /active_admin/editor.css - 200 OK (9ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:24:40 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (22.2ms) Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Served asset /active_admin/editor.css - 304 Not Modified (1ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2012-05-09 14:59:37 -0700 ActionController::RoutingError (No route matches [GET] "/"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.4ms) Started GET "/admin" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Processing by Admin::DashboardController#index as HTML Completed 401 Unauthorized in 2ms Started GET "/admin/login" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/shared/_links.erb (1.1ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (131.9ms) Completed 200 OK in 284ms (Views: 270.0ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /active_admin/application.js - 200 OK (1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /active_admin.css - 200 OK (7ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /jquery.js - 200 OK (4ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /active_admin.js - 200 OK (11ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /active_admin/base.js - 200 OK (6ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /jquery-ui.js - 200 OK (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /jquery_ujs.js - 200 OK (2ms) Started POST "/admin/login" for 127.0.0.1 at 2012-05-09 14:59:46 -0700 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (18.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (0.3ms) UPDATE "admin_users" SET "current_sign_in_at" = '2012-05-09 21:59:46.872814', "sign_in_count" = 2, "updated_at" = '2012-05-09 21:59:46.873710' WHERE "admin_users"."id" = 1  (2.8ms) commit transaction Redirected to http://localhost:3000/admin Completed 302 Found in 208ms (ActiveRecord: 0.0ms) Started GET "/admin" for 127.0.0.1 at 2012-05-09 14:59:46 -0700 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (13.9ms) Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 14:59:47 -0700 Served asset /active_admin.js - 200 OK (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 14:59:48 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (68.8ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (222.2ms) Completed 200 OK in 231ms (Views: 155.0ms | ActiveRecord: 69.6ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 14:59:49 -0700 Served asset /active_admin/orderable.png - 200 OK (16ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 14:59:49 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 200 OK (11ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 14:59:49 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 200 OK (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 14:59:50 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (29.0ms) Completed 200 OK in 45ms (Views: 42.3ms | ActiveRecord: 0.4ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 14:59:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 14:59:55 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 14:59:55 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:00:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.0ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (77.9ms) Completed 200 OK in 135ms (Views: 83.9ms | ActiveRecord: 4.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:00:30 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:00:30 -0700 Served asset /active_admin.js - 304 Not Modified (9ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:01:54 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (2.7ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (80.5ms) Completed 200 OK in 137ms (Views: 108.7ms | ActiveRecord: 3.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:01:54 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:01:54 -0700 Served asset /active_admin.js - 304 Not Modified (34ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:02:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (2.7ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (97.9ms) Completed 200 OK in 133ms (Views: 104.3ms | ActiveRecord: 3.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:02:25 -0700 Served asset /active_admin.css - 304 Not Modified (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:02:25 -0700 Served asset /active_admin.js - 304 Not Modified (33ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:02:45 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.5ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (158.6ms) Completed 200 OK in 214ms (Views: 163.6ms | ActiveRecord: 4.5ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-09 15:02:46 -0700 Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-09 15:02:46 -0700 Served asset /active_admin/editor/wysiwyg.css - 200 OK (3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:02:46 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-09 15:02:46 -0700 Served asset /active_admin/editor.js - 200 OK (22ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:02:46 -0700 Served asset /active_admin.js - 304 Not Modified (11ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-09 15:02:46 -0700 Served asset /active_admin/editor/wysiwyg - 200 OK (3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:05:10 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (26.4ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (102.7ms) Completed 200 OK in 162ms (Views: 85.0ms | ActiveRecord: 27.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:05:10 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:05:10 -0700 Served asset /active_admin.js - 304 Not Modified (88ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:05:15 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:08:05 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1452ms) (pid 29240) Page Load (2.8ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1542.7ms) Completed 200 OK in 1602ms (Views: 1548.8ms | ActiveRecord: 3.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:08:06 -0700 Served asset /active_admin.css - 200 OK (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:08:06 -0700 Compiled active_admin.js (6ms) (pid 29240) Served asset /active_admin.js - 200 OK (47ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-09 15:08:06 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:08:33 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:09:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (26.5ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (101.8ms) Completed 200 OK in 160ms (Views: 83.9ms | ActiveRecord: 27.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:09:55 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:09:55 -0700 Compiled active_admin/editor.js (34ms) (pid 29411) Compiled active_admin.js (3ms) (pid 29411) Served asset /active_admin.js - 200 OK (96ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:10:05 -0700 Served asset /active_admin.js - 304 Not Modified (1ms)