SQL (0.000339) select sqlite_version(*) SQL (0.003205) CREATE TABLE schema_info (version integer) SQL (0.002302) INSERT INTO schema_info (version) VALUES(0) SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) SQL (0.000328) SELECT * FROM schema_info SQL (0.000289)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.000309) select sqlite_version(*) SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) SQL (0.000227) SELECT version FROM schema_info Migrating to CreateUsers (1) SQL (0.000000) SQLite3::SQLException: no such table: users: DROP TABLE users SQL (0.003545) CREATE TABLE users ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "crypted_password" varchar(40) DEFAULT NULL, "salt" varchar(40) DEFAULT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL, "remember_token" varchar(255) DEFAULT NULL, "remember_token_expires_at" datetime DEFAULT NULL)  SQL (0.002461) UPDATE schema_info SET version = 1 SQL (0.000339) SELECT * FROM schema_info SQL (0.000267)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.000064) PRAGMA index_list(users) SQL (0.000334) select sqlite_version(*) SQL (0.000505) SELECT * FROM schema_info SQL (0.000257)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.000066) PRAGMA index_list(users) SQL (0.000179) select sqlite_version(*) SQL (0.000000) SQLite3::SQLException: no such table: users: DROP TABLE users SQL (0.002566) CREATE TABLE users ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "crypted_password" varchar(40) DEFAULT NULL, "salt" varchar(40) DEFAULT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL, "remember_token" varchar(255) DEFAULT NULL, "remember_token_expires_at" datetime DEFAULT NULL)  SQL (0.002329) CREATE TABLE schema_info (version integer) SQL (0.001993) INSERT INTO schema_info (version) VALUES(0) SQL (0.002059) UPDATE schema_info SET version = 1 SQL (0.000356) select sqlite_version(*) SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) SQL (0.000387) SELECT version FROM schema_info SQL (0.000188) SELECT version FROM schema_info Migrating to CreateBookmarks (2) SQL (0.003355) CREATE TABLE bookmarks ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.002627) UPDATE schema_info SET version = 2 SQL (0.000502) SELECT version FROM schema_info Migrating to CreateVotes (3) SQL (0.004302) CREATE TABLE votes ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "bookmark_id" integer NOT NULL, "score" integer DEFAULT 1 NOT NULL, "comment" text NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.001751) UPDATE schema_info SET version = 3 SQL (0.000281) SELECT * FROM schema_info SQL (0.000340)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.000064) PRAGMA index_list(bookmarks) SQL (0.000064) PRAGMA index_list(users) SQL (0.000062) PRAGMA index_list(votes) SQL (0.000328) select sqlite_version(*) SQL (0.000601) SELECT * FROM schema_info SQL (0.000575)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.000067) PRAGMA index_list(bookmarks) SQL (0.000064) PRAGMA index_list(users) SQL (0.000063) PRAGMA index_list(votes) SQL (0.000197) select sqlite_version(*) SQL (0.000000) SQLite3::SQLException: no such table: bookmarks: DROP TABLE bookmarks SQL (0.002157) CREATE TABLE bookmarks ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: users: DROP TABLE users SQL (0.002391) CREATE TABLE users ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "crypted_password" varchar(40) DEFAULT NULL, "salt" varchar(40) DEFAULT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL, "remember_token" varchar(255) DEFAULT NULL, "remember_token_expires_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: votes: DROP TABLE votes SQL (0.002826) CREATE TABLE votes ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "bookmark_id" integer NOT NULL, "score" integer DEFAULT 1 NOT NULL, "comment" text NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.002248) CREATE TABLE schema_info (version integer) SQL (0.001752) INSERT INTO schema_info (version) VALUES(0) SQL (0.002371) UPDATE schema_info SET version = 3 SQL (0.000328) select sqlite_version(*) SQL (0.000596) SELECT * FROM schema_info SQL (0.000343)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.000063) PRAGMA index_list(bookmarks) SQL (0.000067) PRAGMA index_list(users) SQL (0.000064) PRAGMA index_list(votes) SQL (0.000179) select sqlite_version(*) SQL (0.000000) SQLite3::SQLException: no such table: bookmarks: DROP TABLE bookmarks SQL (0.002895) CREATE TABLE bookmarks ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: users: DROP TABLE users SQL (0.002635) CREATE TABLE users ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "crypted_password" varchar(40) DEFAULT NULL, "salt" varchar(40) DEFAULT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL, "remember_token" varchar(255) DEFAULT NULL, "remember_token_expires_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: votes: DROP TABLE votes SQL (0.002608) CREATE TABLE votes ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "bookmark_id" integer NOT NULL, "score" integer DEFAULT 1 NOT NULL, "comment" text NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.002944) CREATE TABLE schema_info (version integer) SQL (0.002836) INSERT INTO schema_info (version) VALUES(0) SQL (0.002316) UPDATE schema_info SET version = 3 SQL (0.000327) select sqlite_version(*) SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) SQL (0.000362) SELECT version FROM schema_info SQL (0.000237) SELECT version FROM schema_info SQL (0.000179) SELECT version FROM schema_info SQL (0.000225) SELECT * FROM schema_info SQL (0.000376)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.000064) PRAGMA index_list(bookmarks) SQL (0.000064) PRAGMA index_list(users) SQL (0.000062) PRAGMA index_list(votes) SQL (0.000319) select sqlite_version(*) SQL (0.000609) SELECT * FROM schema_info SQL (0.000567)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.000065) PRAGMA index_list(bookmarks) SQL (0.000063) PRAGMA index_list(users) SQL (0.000063) PRAGMA index_list(votes) SQL (0.000184) select sqlite_version(*) SQL (0.000000) SQLite3::SQLException: no such table: bookmarks: DROP TABLE bookmarks SQL (0.002232) CREATE TABLE bookmarks ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: users: DROP TABLE users SQL (0.002433) CREATE TABLE users ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "crypted_password" varchar(40) DEFAULT NULL, "salt" varchar(40) DEFAULT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL, "remember_token" varchar(255) DEFAULT NULL, "remember_token_expires_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: votes: DROP TABLE votes SQL (0.002986) CREATE TABLE votes ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "bookmark_id" integer NOT NULL, "score" integer DEFAULT 1 NOT NULL, "comment" text NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.002713) CREATE TABLE schema_info (version integer) SQL (0.002616) INSERT INTO schema_info (version) VALUES(0) SQL (0.002428) UPDATE schema_info SET version = 3 SQL (0.000322) select sqlite_version(*) SQL (0.000608) SELECT * FROM schema_info SQL (0.042694)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.000068) PRAGMA index_list(bookmarks) SQL (0.000064) PRAGMA index_list(users) SQL (0.000062) PRAGMA index_list(votes) SQL (0.000184) select sqlite_version(*) SQL (0.000000) SQLite3::SQLException: no such table: bookmarks: DROP TABLE bookmarks SQL (0.001960) CREATE TABLE bookmarks ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: users: DROP TABLE users SQL (0.002349) CREATE TABLE users ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "crypted_password" varchar(40) DEFAULT NULL, "salt" varchar(40) DEFAULT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL, "remember_token" varchar(255) DEFAULT NULL, "remember_token_expires_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: votes: DROP TABLE votes SQL (0.003049) CREATE TABLE votes ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "bookmark_id" integer NOT NULL, "score" integer DEFAULT 1 NOT NULL, "comment" text NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.002910) CREATE TABLE schema_info (version integer) SQL (0.002949) INSERT INTO schema_info (version) VALUES(0) SQL (0.002643) UPDATE schema_info SET version = 3 SQL (0.000339) select sqlite_version(*) SQL (0.000603) SELECT * FROM schema_info SQL (0.000573)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.000073) PRAGMA index_list(bookmarks) SQL (0.000062) PRAGMA index_list(users) SQL (0.000062) PRAGMA index_list(votes) SQL (0.000185) select sqlite_version(*) SQL (0.000000) SQLite3::SQLException: no such table: bookmarks: DROP TABLE bookmarks SQL (0.003062) CREATE TABLE bookmarks ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: users: DROP TABLE users SQL (0.002768) CREATE TABLE users ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "crypted_password" varchar(40) DEFAULT NULL, "salt" varchar(40) DEFAULT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL, "remember_token" varchar(255) DEFAULT NULL, "remember_token_expires_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: votes: DROP TABLE votes SQL (0.002989) CREATE TABLE votes ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "bookmark_id" integer NOT NULL, "score" integer DEFAULT 1 NOT NULL, "comment" text NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.003011) CREATE TABLE schema_info (version integer) SQL (0.002836) INSERT INTO schema_info (version) VALUES(0) SQL (0.002674) UPDATE schema_info SET version = 3 SQL (0.000325) select sqlite_version(*) SQL (0.000647) SELECT * FROM schema_info SQL (0.043519)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.000067) PRAGMA index_list(bookmarks) SQL (0.000063) PRAGMA index_list(users) SQL (0.000063) PRAGMA index_list(votes) SQL (0.000189) select sqlite_version(*) SQL (0.000000) SQLite3::SQLException: no such table: bookmarks: DROP TABLE bookmarks SQL (0.002940) CREATE TABLE bookmarks ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: users: DROP TABLE users SQL (0.002419) CREATE TABLE users ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "crypted_password" varchar(40) DEFAULT NULL, "salt" varchar(40) DEFAULT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL, "remember_token" varchar(255) DEFAULT NULL, "remember_token_expires_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: votes: DROP TABLE votes SQL (0.002917) CREATE TABLE votes ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "bookmark_id" integer NOT NULL, "score" integer DEFAULT 1 NOT NULL, "comment" text NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.002945) CREATE TABLE schema_info (version integer) SQL (0.002685) INSERT INTO schema_info (version) VALUES(0) SQL (0.002459) UPDATE schema_info SET version = 3 Bookmark Load (0.000300) SELECT * FROM bookmarks WHERE (bookmarks.url = 'http://google.com') LIMIT 1 Bookmark Create (0.000641) INSERT INTO bookmarks ("updated_at", "title", "url", "created_at") VALUES('2007-12-05 23:30:16', 'Google', 'http://google.com', '2007-12-05 23:30:16') SQL (0.000373) select sqlite_version(*) SQL (0.000601) SELECT * FROM schema_info SQL (0.000345)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.000066) PRAGMA index_list(bookmarks) SQL (0.000064) PRAGMA index_list(users) SQL (0.000126) PRAGMA index_list(votes) SQL (0.000191) select sqlite_version(*) SQL (0.000000) SQLite3::SQLException: no such table: bookmarks: DROP TABLE bookmarks SQL (0.002293) CREATE TABLE bookmarks ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: users: DROP TABLE users SQL (0.002765) CREATE TABLE users ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "crypted_password" varchar(40) DEFAULT NULL, "salt" varchar(40) DEFAULT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL, "remember_token" varchar(255) DEFAULT NULL, "remember_token_expires_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: votes: DROP TABLE votes SQL (0.003890) CREATE TABLE votes ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "bookmark_id" integer NOT NULL, "score" integer DEFAULT 1 NOT NULL, "comment" text NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.002850) CREATE TABLE schema_info (version integer) SQL (0.002662) INSERT INTO schema_info (version) VALUES(0) SQL (0.001945) UPDATE schema_info SET version = 3 SQL (0.000350) select sqlite_version(*) SQL (0.000591) SELECT * FROM schema_info SQL (0.000354)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.000064) PRAGMA index_list(bookmarks) SQL (0.000063) PRAGMA index_list(users) SQL (0.000063) PRAGMA index_list(votes) SQL (0.000178) select sqlite_version(*) SQL (0.000000) SQLite3::SQLException: no such table: bookmarks: DROP TABLE bookmarks SQL (0.002367) CREATE TABLE bookmarks ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: users: DROP TABLE users SQL (0.002369) CREATE TABLE users ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "crypted_password" varchar(40) DEFAULT NULL, "salt" varchar(40) DEFAULT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL, "remember_token" varchar(255) DEFAULT NULL, "remember_token_expires_at" datetime DEFAULT NULL)  SQL (0.000000) SQLite3::SQLException: no such table: votes: DROP TABLE votes SQL (0.002737) CREATE TABLE votes ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "bookmark_id" integer NOT NULL, "score" integer DEFAULT 1 NOT NULL, "comment" text NOT NULL, "created_at" datetime DEFAULT NULL, "updated_at" datetime DEFAULT NULL)  SQL (0.002630) CREATE TABLE schema_info (version integer) SQL (0.003086) INSERT INTO schema_info (version) VALUES(0) SQL (0.002545) UPDATE schema_info SET version = 3 User Load (0.000306) SELECT * FROM users WHERE (LOWER(users.login) = 'crnixon') LIMIT 1 User Load (0.000127) SELECT * FROM users WHERE (LOWER(users.email) = 'crnixon@gmail.com') LIMIT 1 User Create (0.000507) INSERT INTO users ("salt", "updated_at", "crypted_password", "remember_token_expires_at", "remember_token", "login", "created_at", "email") VALUES(NULL, '2007-12-06 08:06:08', '098f6bcd4621d373cade4e832627b4f6', NULL, NULL, 'crnixon', '2007-12-06 08:06:08', 'crnixon@gmail.com') User Load (0.000388) SELECT * FROM users WHERE (users."id" = 1)  Processing SessionsController#new (for 127.0.0.1 at 2007-12-06 08:07:06) [GET] Session ID: eea91b2463eb016b3909d4b21eb77b6c Parameters: {"action"=>"new", "controller"=>"sessions"} Rendering sessions/new Completed in 0.05066 (19 reqs/sec) | Rendering: 0.04860 (95%) | DB: 0.00000 (0%) | 200 OK [http://localhost/session/new] Processing SessionsController#create (for 127.0.0.1 at 2007-12-06 08:07:09) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2IiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--95d1cf037ab4cb0bc8d69a57238ba24d90ecfd16 Parameters: {"commit"=>"Log in", "authenticity_token"=>"b45e906d46e8912230aeac0ee985cd1f19fb8c24", "action"=>"create", "controller"=>"sessions", "password"=>"test", "login"=>"cnixon"} User Load (0.000202) SELECT * FROM users WHERE (users."login" = 'cnixon') LIMIT 1 Rendering sessions/new Completed in 0.01133 (88 reqs/sec) | Rendering: 0.00138 (12%) | DB: 0.00020 (1%) | 200 OK [http://localhost/session] Processing UsersController#index (for 127.0.0.1 at 2007-12-06 08:07:26) [GET] Session ID: BAh7CDoMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6%0ARmxhc2hIYXNoewAGOgpAdXNlZHsA--e09ac3e5ea3cf4575d6b2971ba9a7edad567e416 Parameters: {"action"=>"index", "controller"=>"users"} ActionController::UnknownAction (No action responded to index): /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:697:in `call_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:669:in `perform_action' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/query_cache.rb:8:in `cache' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:668:in `perform_action' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `send' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `process_without_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/session_management.rb:123:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:388:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:171:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (not_found) Processing SessionsController#new (for 127.0.0.1 at 2007-12-06 08:11:35) [GET] Session ID: BAh7CDoMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6%0ARmxhc2hIYXNoewAGOgpAdXNlZHsA--e09ac3e5ea3cf4575d6b2971ba9a7edad567e416 Parameters: {"action"=>"new", "controller"=>"sessions"} Rendering template within layouts/application Rendering sessions/new ActionView::TemplateError (undefined method `show_flash' for #) on line #14 of layouts/application.html.erb: 11: 12: 13:
14: <%= show_flash(:notice) %> 15: <%= show_flash(:error) %> 16: 17: <%= yield %> app/views/layouts/application.html.erb:14:in `_run_erb_47app47views47layouts47application46html46erb' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_view/base.rb:390:in `send' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_view/base.rb:390:in `compile_and_render_template' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_view/base.rb:366:in `render_template' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_view/base.rb:316:in `render_file' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/layout.rb:267:in `render_without_benchmark' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:51:in `render' /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:51:in `render' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1162:in `default_render' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1168:in `perform_action_without_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:697:in `call_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:669:in `perform_action' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/query_cache.rb:8:in `cache' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:668:in `perform_action' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `send' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `process_without_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/session_management.rb:123:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:388:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:171:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing SessionsController#new (for 127.0.0.1 at 2007-12-06 08:11:36) [GET] Session ID: BAh7CDoMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6%0ARmxhc2hIYXNoewAGOgpAdXNlZHsA--e09ac3e5ea3cf4575d6b2971ba9a7edad567e416 Parameters: {"action"=>"new", "controller"=>"sessions"} Rendering template within layouts/application Rendering sessions/new ActionView::TemplateError (undefined method `show_flash' for #) on line #14 of layouts/application.html.erb: 11: 12: 13:
14: <%= show_flash(:notice) %> 15: <%= show_flash(:error) %> 16: 17: <%= yield %> app/views/layouts/application.html.erb:14:in `_run_erb_47app47views47layouts47application46html46erb' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_view/base.rb:390:in `send' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_view/base.rb:390:in `compile_and_render_template' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_view/base.rb:366:in `render_template' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_view/base.rb:316:in `render_file' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/layout.rb:267:in `render_without_benchmark' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:51:in `render' /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:51:in `render' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1162:in `default_render' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1168:in `perform_action_without_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:697:in `call_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:669:in `perform_action' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/query_cache.rb:8:in `cache' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:668:in `perform_action' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `send' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `process_without_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/session_management.rb:123:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:388:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:171:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing SessionsController#new (for 127.0.0.1 at 2007-12-06 08:12:41) [GET] Session ID: BAh7CDoMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6%0ARmxhc2hIYXNoewAGOgpAdXNlZHsA--e09ac3e5ea3cf4575d6b2971ba9a7edad567e416 Parameters: {"action"=>"new", "controller"=>"sessions"} Rendering template within layouts/application Rendering sessions/new Completed in 0.00399 (250 reqs/sec) | Rendering: 0.00200 (50%) | DB: 0.00000 (0%) | 200 OK [http://localhost/session/new] Processing ApplicationController#index (for 127.0.0.1 at 2007-12-06 08:12:41) [GET] Session ID: BAh7CDoMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6%0ARmxhc2hIYXNoewAGOgpAdXNlZHsA--e09ac3e5ea3cf4575d6b2971ba9a7edad567e416 Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/global.css" with {:method=>:get}): /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1438:in `recognize_path' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1421:in `recognize' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:170:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (not_found) Processing SessionsController#new (for 127.0.0.1 at 2007-12-06 08:13:00) [GET] Session ID: BAh7CDoMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6%0ARmxhc2hIYXNoewAGOgpAdXNlZHsA--e09ac3e5ea3cf4575d6b2971ba9a7edad567e416 Parameters: {"action"=>"new", "controller"=>"sessions"} Rendering template within layouts/application Rendering sessions/new Completed in 0.00499 (200 reqs/sec) | Rendering: 0.00294 (58%) | DB: 0.00000 (0%) | 200 OK [http://localhost/session/new] Processing ApplicationController#index (for 127.0.0.1 at 2007-12-06 08:13:00) [GET] Session ID: BAh7CDoMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6%0ARmxhc2hIYXNoewAGOgpAdXNlZHsA--e09ac3e5ea3cf4575d6b2971ba9a7edad567e416 Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/global.css" with {:method=>:get}): /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1438:in `recognize_path' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1421:in `recognize' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:170:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (not_found) Processing SessionsController#new (for 127.0.0.1 at 2007-12-06 08:27:08) [GET] Session ID: BAh7CDoMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6%0ARmxhc2hIYXNoewAGOgpAdXNlZHsA--e09ac3e5ea3cf4575d6b2971ba9a7edad567e416 Parameters: {"action"=>"new", "controller"=>"sessions"} Rendering template within layouts/application Rendering sessions/new Completed in 0.00742 (134 reqs/sec) | Rendering: 0.00496 (66%) | DB: 0.00000 (0%) | 200 OK [http://localhost/session/new] Processing ApplicationController#index (for 127.0.0.1 at 2007-12-06 08:27:08) [GET] Session ID: BAh7CDoMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6%0ARmxhc2hIYXNoewAGOgpAdXNlZHsA--e09ac3e5ea3cf4575d6b2971ba9a7edad567e416 Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/global.css" with {:method=>:get}): /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1438:in `recognize_path' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1421:in `recognize' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:170:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (not_found) Processing ApplicationController#new (for 127.0.0.1 at 2007-12-06 08:34:54) [GET] Session ID: BAh7CDoMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6%0ARmxhc2hIYXNoewAGOgpAdXNlZHsA--e09ac3e5ea3cf4575d6b2971ba9a7edad567e416 Parameters: {"action"=>"new", "controller"=>"bookmarks"} NoMethodError (undefined method `before' for BookmarksController:Class): /app/controllers/bookmarks_controller.rb:7 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:203:in `load_file' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:202:in `load_file' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:94:in `require_or_load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:248:in `load_missing_constant' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:453:in `const_missing' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:465:in `const_missing' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/inflector.rb:257:in `constantize' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/core_ext/string/inflections.rb:148:in `constantize' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1423:in `recognize' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:170:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing BookmarksController#new (for 127.0.0.1 at 2007-12-06 08:35:56) [GET] Session ID: BAh7CDoMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6%0ARmxhc2hIYXNoewAGOgpAdXNlZHsA--e09ac3e5ea3cf4575d6b2971ba9a7edad567e416 Parameters: {"action"=>"new", "controller"=>"bookmarks"} Redirected to http://localhost:3000/session/new Completed in 0.00708 (141 reqs/sec) | DB: 0.00000 (0%) | 302 Found [http://localhost/bookmarks/new] Processing SessionsController#new (for 127.0.0.1 at 2007-12-06 08:35:56) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwOg5yZXR1cm5fdG8iEy9ib29rbWFya3MvbmV3IgpmbGFzaElD%0AOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNl%0AZHsA--58da9f49fdbf9b80121aca1977b625422777d102 Parameters: {"action"=>"new", "controller"=>"sessions"} Rendering template within layouts/application Rendering sessions/new Completed in 0.00672 (148 reqs/sec) | Rendering: 0.00466 (69%) | DB: 0.00000 (0%) | 200 OK [http://localhost/session/new] Processing ApplicationController#index (for 127.0.0.1 at 2007-12-06 08:35:56) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwOg5yZXR1cm5fdG8iEy9ib29rbWFya3MvbmV3IgpmbGFzaElD%0AOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNl%0AZHsA--58da9f49fdbf9b80121aca1977b625422777d102 Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/global.css" with {:method=>:get}): /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1438:in `recognize_path' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1421:in `recognize' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:170:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (not_found) Processing SessionsController#create (for 127.0.0.1 at 2007-12-06 08:36:05) [POST] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXIwOg5yZXR1cm5fdG8iEy9ib29rbWFya3MvbmV3IgpmbGFzaElD%0AOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNl%0AZHsA--58da9f49fdbf9b80121aca1977b625422777d102 Parameters: {"commit"=>"Log in", "action"=>"create", "controller"=>"sessions", "password"=>"test", "login"=>"crnixon"} User Load (0.000480) SELECT * FROM users WHERE (users."login" = 'crnixon') LIMIT 1 Redirected to http://localhost:3000/bookmarks/new Completed in 0.01357 (73 reqs/sec) | DB: 0.00048 (3%) | 302 Found [http://localhost/session] Processing BookmarksController#new (for 127.0.0.1 at 2007-12-06 08:36:05) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiG0xvZ2dlZCBpbiBz%0AdWNjZXNzZnVsbHkGOgpAdXNlZHsGOwlU--e4a2918657dee4c668e49b9ca3a7232b003fa21e Parameters: {"action"=>"new", "controller"=>"bookmarks"} User Load (0.000367) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Rendering template within layouts/application ActionController::MissingTemplate (Missing template bookmarks/new.html.erb in view path /Users/cnixon/Work/security_talk_2007/bookmarks/app/views): /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1278:in `assert_existence_of_template_file' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1107:in `render_for_file' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:836:in `render_with_no_layout' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/layout.rb:261:in `render_without_benchmark' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:51:in `render' /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:51:in `render' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1162:in `default_render' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1168:in `perform_action_without_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:697:in `call_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:669:in `perform_action' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/query_cache.rb:8:in `cache' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:668:in `perform_action' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `send' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `process_without_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/session_management.rb:123:in `sass_old_process' /Users/cnixon/lib/rubygems/gems/haml-1.7.2/lib/sass/plugin/rails.rb:14:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:388:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:171:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing BookmarksController#new (for 127.0.0.1 at 2007-12-06 08:36:09) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"new", "controller"=>"bookmarks"} User Load (0.000662) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Rendering template within layouts/application ActionController::MissingTemplate (Missing template bookmarks/new.html.erb in view path /Users/cnixon/Work/security_talk_2007/bookmarks/app/views): /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1278:in `assert_existence_of_template_file' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1107:in `render_for_file' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:836:in `render_with_no_layout' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/layout.rb:261:in `render_without_benchmark' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:51:in `render' /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:51:in `render' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1162:in `default_render' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1168:in `perform_action_without_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:697:in `call_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:669:in `perform_action' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/query_cache.rb:8:in `cache' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:668:in `perform_action' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `send' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `process_without_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/session_management.rb:123:in `sass_old_process' /Users/cnixon/lib/rubygems/gems/haml-1.7.2/lib/sass/plugin/rails.rb:14:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:388:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:171:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing BookmarksController#new (for 127.0.0.1 at 2007-12-06 08:50:45) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"new", "controller"=>"bookmarks"} User Load (0.000383) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Rendering template within layouts/application ActionController::MissingTemplate (Missing template bookmarks/new.html.erb in view path /Users/cnixon/Work/security_talk_2007/bookmarks/app/views): /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1278:in `assert_existence_of_template_file' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1107:in `render_for_file' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:836:in `render_with_no_layout' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/layout.rb:261:in `render_without_benchmark' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:51:in `render' /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:51:in `render' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1162:in `default_render' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1168:in `perform_action_without_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:697:in `call_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:669:in `perform_action' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/query_cache.rb:8:in `cache' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:668:in `perform_action' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `send' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `process_without_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/session_management.rb:123:in `sass_old_process' /Users/cnixon/lib/rubygems/gems/haml-1.7.2/lib/sass/plugin/rails.rb:14:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:388:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:171:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 08:50:49) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000772) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index Completed in 0.01139 (87 reqs/sec) | Rendering: 0.00535 (46%) | DB: 0.00077 (6%) | 200 OK [http://localhost/bookmarks] Processing ApplicationController#index (for 127.0.0.1 at 2007-12-06 08:50:49) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/global.css" with {:method=>:get}): /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1438:in `recognize_path' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1421:in `recognize' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:170:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (not_found) Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 08:53:25) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000646) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000425) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.02002 (49 reqs/sec) | Rendering: 0.01194 (59%) | DB: 0.00107 (5%) | 200 OK [http://localhost/bookmarks] Processing ApplicationController#index (for 127.0.0.1 at 2007-12-06 08:53:25) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/global.css" with {:method=>:get}): /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1438:in `recognize_path' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1421:in `recognize' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:170:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (not_found) Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 08:54:19) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000636) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000496) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.01855 (53 reqs/sec) | Rendering: 0.01306 (70%) | DB: 0.00113 (6%) | 200 OK [http://localhost/bookmarks] Processing ApplicationController#index (for 127.0.0.1 at 2007-12-06 08:54:19) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/global.css" with {:method=>:get}): /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1438:in `recognize_path' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1421:in `recognize' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:170:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (not_found) Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 08:55:49) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000765) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000419) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.02503 (39 reqs/sec) | Rendering: 0.01304 (52%) | DB: 0.00118 (4%) | 200 OK [http://localhost/bookmarks] Processing ApplicationController#index (for 127.0.0.1 at 2007-12-06 08:55:49) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/global.css" with {:method=>:get}): /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1438:in `recognize_path' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/routing.rb:1421:in `recognize' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:170:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (not_found) Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:04:06) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.001651) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000384) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.01899 (52 reqs/sec) | Rendering: 0.01160 (61%) | DB: 0.00204 (10%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#new (for 127.0.0.1 at 2007-12-06 09:04:09) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"new", "controller"=>"bookmarks"} User Load (0.000353) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Rendering template within layouts/application ActionController::MissingTemplate (Missing template bookmarks/new.html.erb in view path /Users/cnixon/Work/security_talk_2007/bookmarks/app/views): /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1278:in `assert_existence_of_template_file' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1107:in `render_for_file' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:836:in `render_with_no_layout' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/layout.rb:261:in `render_without_benchmark' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:51:in `render' /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:51:in `render' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1162:in `default_render' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:1168:in `perform_action_without_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:697:in `call_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:669:in `perform_action' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /Users/cnixon/lib/rubygems/gems/activerecord-1.99.1/lib/active_record/query_cache.rb:8:in `cache' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/caching.rb:668:in `perform_action' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `send' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:524:in `process_without_filters' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/session_management.rb:123:in `sass_old_process' /Users/cnixon/lib/rubygems/gems/haml-1.7.2/lib/sass/plugin/rails.rb:14:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/base.rb:388:in `process' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:171:in `handle_request' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:115:in `dispatch' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/dispatcher.rb:9:in `dispatch' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:76:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `synchronize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/../lib/mongrel/rails.rb:74:in `process' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:155:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:154:in `process_client' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `initialize' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `new' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel.rb:264:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:282:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `each' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/configurator.rb:281:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:128:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/lib/mongrel/command.rb:212:in `run' /Users/cnixon/lib/rubygems/gems/mongrel-1.1.1/bin/mongrel_rails:281 /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:489:in `load' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/servers/mongrel.rb:64 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:342:in `new_constants_in' /Users/cnixon/lib/rubygems/gems/activesupport-1.99.1/lib/active_support/dependencies.rb:496:in `require' /Users/cnixon/lib/rubygems/gems/rails-1.99.1/lib/commands/server.rb:39 /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' script/server:3 Rendering /Users/cnixon/lib/rubygems/gems/actionpack-1.99.1/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:04:12) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000666) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000406) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.08110 (12 reqs/sec) | Rendering: 0.01214 (14%) | DB: 0.00107 (1%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:04:26) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000791) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000406) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.01984 (50 reqs/sec) | Rendering: 0.01288 (64%) | DB: 0.00120 (6%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:04:32) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000803) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000376) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.01662 (60 reqs/sec) | Rendering: 0.01105 (66%) | DB: 0.00118 (7%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:04:38) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000928) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000417) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.02006 (49 reqs/sec) | Rendering: 0.01300 (64%) | DB: 0.00135 (6%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:04:44) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000618) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000415) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.07926 (12 reqs/sec) | Rendering: 0.07390 (93%) | DB: 0.00103 (1%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:04:52) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000680) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000366) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.01740 (57 reqs/sec) | Rendering: 0.01109 (63%) | DB: 0.00105 (6%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:13:49) [GET] Session ID: 26c0ed16f38501be1184838195b31c8f Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000825) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index Completed in 0.00947 (105 reqs/sec) | Rendering: 0.00412 (43%) | DB: 0.00082 (8%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:13:50) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--94676d5b2db1f19b02fe4d047e4c3f44bcc54d37 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000795) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index Completed in 0.00963 (103 reqs/sec) | Rendering: 0.00414 (42%) | DB: 0.00080 (8%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:14:03) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--94676d5b2db1f19b02fe4d047e4c3f44bcc54d37 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000743) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index Completed in 0.07893 (12 reqs/sec) | Rendering: 0.00737 (9%) | DB: 0.00074 (0%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:14:09) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--94676d5b2db1f19b02fe4d047e4c3f44bcc54d37 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000712) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index Completed in 0.01039 (96 reqs/sec) | Rendering: 0.00507 (48%) | DB: 0.00071 (6%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:14:25) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--94676d5b2db1f19b02fe4d047e4c3f44bcc54d37 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000643) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index Completed in 0.01045 (95 reqs/sec) | Rendering: 0.00514 (49%) | DB: 0.00064 (6%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:16:04) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000698) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000401) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.02178 (45 reqs/sec) | Rendering: 0.01473 (67%) | DB: 0.00110 (5%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:20:15) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000655) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000396) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.01830 (54 reqs/sec) | Rendering: 0.01221 (66%) | DB: 0.00105 (5%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:20:48) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000628) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000420) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.01675 (59 reqs/sec) | Rendering: 0.01105 (65%) | DB: 0.00105 (6%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:21:18) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000897) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000383) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.01891 (52 reqs/sec) | Rendering: 0.01213 (64%) | DB: 0.00128 (6%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:22:08) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000805) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000369) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.01662 (60 reqs/sec) | Rendering: 0.01102 (66%) | DB: 0.00117 (7%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:22:26) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000801) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000379) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.01764 (56 reqs/sec) | Rendering: 0.01165 (66%) | DB: 0.00118 (6%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:22:37) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000665) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000491) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.01870 (53 reqs/sec) | Rendering: 0.01298 (69%) | DB: 0.00116 (6%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:23:08) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000716) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000371) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.01807 (55 reqs/sec) | Rendering: 0.01139 (63%) | DB: 0.00109 (6%) | 200 OK [http://localhost/bookmarks] Processing BookmarksController#index (for 127.0.0.1 at 2007-12-06 09:23:42) [GET] Session ID: BAh7CToMY3NyZl9pZCIlMmM3YTI5YTFmYzZiMjBmMmZiZmIxZTQxNTdlNjIw%0AY2I6CXVzZXJpBjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--0f0cef2ddfb117ffe51a98594208a87a3e7aea19 Parameters: {"action"=>"index", "controller"=>"bookmarks"} Bookmark Load (0.000630) SELECT * FROM bookmarks  Rendering template within layouts/application Rendering bookmarks/index User Load (0.000380) SELECT * FROM users WHERE (users."id" = 1) LIMIT 1 Completed in 0.01655 (60 reqs/sec) | Rendering: 0.01119 (67%) | DB: 0.00101 (6%) | 200 OK [http://localhost