From 440fb8cdf4b151a74a1187d896f2da852d1c2383 Mon Sep 17 00:00:00 2001 From: Priit Tamboom Date: Wed, 31 Oct 2007 14:58:45 +0800 Subject: [PATCH] ignore some files --- .gitignore | 5 + config/database.yml | 36 --- log/development.log | 912 ---------------------------------------------------- 3 files changed, 5 insertions(+), 948 deletions(-) create mode 100644 .gitignore delete mode 100644 config/database.yml delete mode 100644 log/development.log diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a2c7836 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +*.log +config/database.yml +db/schema.rb +tmp/* +log/* diff --git a/config/database.yml b/config/database.yml deleted file mode 100644 index 8e16153..0000000 --- a/config/database.yml +++ /dev/null @@ -1,36 +0,0 @@ -# MySQL (default setup). Versions 4.1 and 5.0 are recommended. -# -# Install the MySQL driver: -# gem install mysql -# On MacOS X: -# gem install mysql -- --include=/usr/local/lib -# On Windows: -# gem install mysql -# Choose the win32 build. -# Install MySQL and put its /bin directory on your path. -# -# And be sure to use new-style password hashing: -# http://dev.mysql.com/doc/refman/5.0/en/old-client.html -development: - adapter: mysql - database: rubyorgee_development - username: root - password: - # socket: /tmp/mysql.sock - -# Warning: The database defined as 'test' will be erased and -# re-generated from your development database when you run 'rake'. -# Do not set this db to the same as development or production. -test: - adapter: mysql - database: rubyorgee_test - username: root - password: - # socket: /tmp/mysql.sock - -production: - adapter: mysql - database: rubyorgee_production - username: root - password: - # socket: /tmp/mysql.sock diff --git a/log/development.log b/log/development.log deleted file mode 100644 index e3bbb9e..0000000 --- a/log/development.log +++ /dev/null @@ -1,912 +0,0 @@ -# Logfile created on Fri Oct 26 13:48:50 +0800 2007 SQL (0.000123) SET SQL_AUTO_IS_NULL=0 - SQL (0.007849) CREATE TABLE schema_info (version int(11)) - SQL (0.000224) INSERT INTO schema_info (version) VALUES(0) - SQL (0.000000) Mysql::Error: Table 'schema_info' already exists: CREATE TABLE schema_info (version int(11)) - SQL (0.000275) SELECT version FROM schema_info -Migrating to CreateUsers (1) - SQL (0.003910) CREATE TABLE users (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `login` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `last_login_at` datetime DEFAULT NULL, `admin` tinyint(1) DEFAULT NULL, `posts_count` int(11) DEFAULT 0) ENGINE=InnoDB - SQL (0.000176) UPDATE schema_info SET version = 1 - SQL (0.000101) SELECT version FROM schema_info -Migrating to CreateForums (2) - SQL (0.004060) CREATE TABLE forums (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT NULL) ENGINE=InnoDB - SQL (0.000469) UPDATE schema_info SET version = 2 - SQL (0.000165) SELECT version FROM schema_info -Migrating to CreatePosts (3) - SQL (0.004000) CREATE TABLE posts (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `forum_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `post_id` int(11) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `body` text DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB - SQL (0.000109) UPDATE schema_info SET version = 3 - SQL (0.000093) SELECT version FROM schema_info -Migrating to RenamePostToTopic (4) - SQL (0.000476) SHOW COLUMNS FROM posts LIKE 'post_id' - SQL (0.006753) ALTER TABLE posts CHANGE `post_id` `topic_id` int(11) - SQL (0.000138) UPDATE schema_info SET version = 4 - SQL (0.000294) SELECT version FROM schema_info -Migrating to AddForumDesc (5) - SQL (0.006107) ALTER TABLE forums ADD `description` varchar(255) - SQL (0.000145) UPDATE schema_info SET version = 5 - SQL (0.000195) SELECT version FROM schema_info -Migrating to AddHits (6) - SQL (0.007612) ALTER TABLE posts ADD `hits` int(11) DEFAULT 0 - SQL (0.000125) UPDATE schema_info SET version = 6 - SQL (0.000108) SELECT version FROM schema_info -Migrating to Sticky (7) - SQL (0.006856) ALTER TABLE posts ADD `sticky` tinyint(1) DEFAULT 0 - SQL (0.000116) UPDATE schema_info SET version = 7 - SQL (0.000107) SELECT version FROM schema_info -Migrating to AddCounterCaches (8) - SQL (0.006804) ALTER TABLE users ADD `topics_count` int(11) DEFAULT 0 - SQL (0.008137) ALTER TABLE forums ADD `topics_count` int(11) DEFAULT 0 - SQL (0.006873) ALTER TABLE forums ADD `posts_count` int(11) DEFAULT 0 - SQL (0.006798) ALTER TABLE posts ADD `posts_count` int(11) DEFAULT 0 - SQL (0.000130) UPDATE schema_info SET version = 8 - SQL (0.000117) SELECT version FROM schema_info -Migrating to LastSeenAt (9) - SQL (0.013980) ALTER TABLE users ADD `last_seen_at` datetime - SQL (0.000684) UPDATE schema_info SET version = 9 - SQL (0.000138) SELECT version FROM schema_info -Migrating to AddSessions (10) - SQL (0.005425) CREATE TABLE sessions (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `session_id` varchar(255) DEFAULT NULL, `data` text DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB - SQL (0.008474) CREATE INDEX `index_sessions_on_session_id` ON sessions (`session_id`) - SQL (0.000148) UPDATE schema_info SET version = 10 - SQL (0.000129) SELECT version FROM schema_info -Migrating to ResetCounterCache (11) - SQL (0.000245) SHOW TABLES - Forum Columns (0.000541) SHOW FIELDS FROM forums - SQL (0.000313) SHOW TABLES - User Columns (0.000750) SHOW FIELDS FROM users - SQL (0.000212) SHOW TABLES - SQL (0.000247) SHOW TABLES - Forum Load (0.000254) SELECT * FROM forums  - Post Load (0.000243) SELECT * FROM posts  - User Load (0.000128) SELECT * FROM users  - SQL (0.000153) UPDATE schema_info SET version = 11 - SQL (0.000114) SELECT version FROM schema_info -Migrating to DisplayName (12) - SQL (0.006802) ALTER TABLE users ADD `display_name` varchar(255) - SQL (0.000128) UPDATE schema_info SET version = 12 - SQL (0.000110) SELECT version FROM schema_info -Migrating to UserUpdatedAt (13) - SQL (0.006972) ALTER TABLE users ADD `updated_at` datetime - SQL (0.000143) UPDATE schema_info SET version = 13 - SQL (0.000127) SELECT version FROM schema_info -Migrating to SetLastSeenAt (14) - User Load (0.000224) SELECT * FROM users  - SQL (0.000115) UPDATE schema_info SET version = 14 - SQL (0.000107) SELECT version FROM schema_info -Migrating to AddTopicLastPostedAtDate (15) - SQL (0.482363) ALTER TABLE posts ADD `replied_at` datetime - AddTopicLastPostedAtDate::Post Update (0.000432) UPDATE posts SET replied_at = updated_at WHERE (topic_id = id)  - SQL (0.000196) UPDATE schema_info SET version = 15 - SQL (0.000203) SELECT version FROM schema_info -Migrating to EmpowerSessions (16) - SQL (0.007642) ALTER TABLE sessions ADD `user_id` int(11) - SQL (0.000947) UPDATE schema_info SET version = 16 - SQL (0.000389) SELECT version FROM schema_info -Migrating to UpdateUserPostCounts (17) - SQL (0.010971) ALTER TABLE users DROP `topics_count` - User Load (0.000387) SELECT * FROM users  - SQL (0.001420) UPDATE schema_info SET version = 17 - SQL (0.000197) SELECT version FROM schema_info -Migrating to AddContactFields (18) - SQL (0.008086) ALTER TABLE users ADD `aim` varchar(255) - SQL (0.007989) ALTER TABLE users ADD `yahoo` varchar(255) - SQL (0.008665) ALTER TABLE users ADD `google_talk` varchar(255) - SQL (0.006865) ALTER TABLE users ADD `msn` varchar(255) - SQL (0.006450) ALTER TABLE users ADD `website` varchar(255) - SQL (0.000125) UPDATE schema_info SET version = 18 - SQL (0.000113) SELECT version FROM schema_info -Migrating to PositionForForums (19) - SQL (0.007631) ALTER TABLE forums ADD `position` int(11) - SQL (0.000180) UPDATE schema_info SET version = 19 - SQL (0.000123) SELECT version FROM schema_info -Migrating to FixRepliedAt (20) - SQL (0.000165) update posts set replied_at=created_at where replied_at is null and id=topic_id - SQL (0.000106) UPDATE schema_info SET version = 20 - SQL (0.000078) SELECT version FROM schema_info -Migrating to LogEveryoneOut (21) - CGI::Session::ActiveRecordStore::Session Delete all (0.000236) DELETE FROM sessions  - SQL (0.000106) UPDATE schema_info SET version = 21 - SQL (0.000099) SELECT version FROM schema_info -Migrating to CreateTopics (22) - SQL (0.004932) CREATE TABLE topics (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `forum_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `hits` int(11) DEFAULT 0, `sticky` tinyint(1) DEFAULT 0, `posts_count` int(11) DEFAULT 0, `replied_at` datetime DEFAULT NULL) ENGINE=InnoDB - CreateTopics::Post Load (0.000183) SELECT * FROM posts WHERE (id=topic_id)  - SQL (0.000092) UPDATE schema_info SET version = 22 - SQL (0.000079) SELECT version FROM schema_info -Migrating to CleanUpPostsTable (23) - SQL (0.007455) ALTER TABLE posts DROP `title` - SQL (0.007808) ALTER TABLE posts DROP `hits` - SQL (0.006604) ALTER TABLE posts DROP `sticky` - SQL (0.005829) ALTER TABLE posts DROP `posts_count` - SQL (0.005777) ALTER TABLE posts DROP `replied_at` - SQL (0.000127) UPDATE schema_info SET version = 23 - SQL (0.000109) SELECT version FROM schema_info -Migrating to LoginByKeyFields (24) - SQL (0.008158) ALTER TABLE users ADD `login_key` varchar(255) - SQL (0.006111) ALTER TABLE users ADD `login_key_expires_at` datetime - SQL (0.000231) UPDATE schema_info SET version = 24 - SQL (0.000154) SELECT version FROM schema_info -Migrating to RemoveUnnecessaryPostForumId (25) - SQL (0.008168) ALTER TABLE posts DROP `forum_id` - SQL (0.000211) UPDATE schema_info SET version = 25 - SQL (0.000117) SELECT version FROM schema_info -Migrating to ChangeStickyToInteger (26) - ChangeStickyToInteger::Topic Columns (0.000776) SHOW FIELDS FROM topics - ChangeStickyToInteger::Topic Load (0.000205) SELECT * FROM topics WHERE (topics.`sticky` = 1)  - SQL (0.007872) ALTER TABLE topics CHANGE `sticky` `sticky` int(11) DEFAULT 0 - ChangeStickyToInteger::Topic Update (0.000144) UPDATE topics SET sticky=1 WHERE (id in (NULL))  - SQL (0.000090) UPDATE schema_info SET version = 26 - SQL (0.000090) SELECT version FROM schema_info -Migrating to ReAddPostsForumId (27) - SQL (0.006792) ALTER TABLE posts ADD `forum_id` int(11) - ReAddPostsForumId::Topic Load (0.000149) SELECT id, forum_id FROM topics  - SQL (0.000102) UPDATE schema_info SET version = 27 - SQL (0.000116) SELECT version FROM schema_info -Migrating to FixForumPostsCount (28) - FixForumPostsCount::Post Columns (0.000754) SHOW FIELDS FROM posts - SQL (0.000441) SELECT count(id) AS count_id, forum_id AS forum_id FROM posts GROUP BY forum_id  - SQL (0.000144) UPDATE schema_info SET version = 28 - SQL (0.000111) SELECT version FROM schema_info -Migrating to CreateModeratorships (29) - SQL (0.004523) CREATE TABLE moderatorships (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `forum_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL) ENGINE=InnoDB - SQL (0.000207) UPDATE schema_info SET version = 29 - SQL (0.000116) SELECT version FROM schema_info -Migrating to SetUserDisplayName (30) - SetUserDisplayName::User Load (0.000203) SELECT id, login, display_name FROM users  - SQL (0.000087) UPDATE schema_info SET version = 30 - SQL (0.000085) SELECT version FROM schema_info -Migrating to TopicLocked (31) - SQL (0.006917) ALTER TABLE topics ADD `locked` tinyint(1) DEFAULT 0 - Topic Update (0.000160) UPDATE topics SET locked= 0  - SQL (0.000087) UPDATE schema_info SET version = 31 - SQL (0.000108) SELECT version FROM schema_info -Migrating to AddActivatedBoolean (32) - SQL (0.006905) ALTER TABLE users ADD `activated` tinyint(1) DEFAULT 0 - AddActivatedBoolean::User Update (0.000161) UPDATE users SET activated = 1  - SQL (0.000087) UPDATE schema_info SET version = 32 - SQL (0.000095) SELECT version FROM schema_info -Migrating to AddPasswordHash (33) - SQL (0.000114) SET SQL_AUTO_IS_NULL=0 - SQL (0.018669) DROP DATABASE IF EXISTS `rubyorgee_development` - SQL (0.000143) SET SQL_AUTO_IS_NULL=0 - SQL (0.000196) CREATE DATABASE `rubyorgee_development` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` - SQL (0.000146) SET SQL_AUTO_IS_NULL=0 - SQL (0.000000) Mysql::Error: Unknown table 'forums': DROP TABLE forums - SQL (0.036944) CREATE TABLE forums (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `topics_count` int(11) DEFAULT 0, `posts_count` int(11) DEFAULT 0, `position` int(11) DEFAULT NULL, `description_html` text DEFAULT NULL) ENGINE=InnoDB - SQL (0.000000) Mysql::Error: Unknown table 'logged_exceptions': DROP TABLE logged_exceptions - SQL (0.003570) CREATE TABLE logged_exceptions (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `exception_class` varchar(255) DEFAULT NULL, `controller_name` varchar(255) DEFAULT NULL, `action_name` varchar(255) DEFAULT NULL, `message` varchar(255) DEFAULT NULL, `backtrace` text DEFAULT NULL, `environment` text DEFAULT NULL, `request` text DEFAULT NULL, `created_at` datetime DEFAULT NULL) ENGINE=InnoDB - SQL (0.000000) Mysql::Error: Unknown table 'moderatorships': DROP TABLE moderatorships - SQL (0.003164) CREATE TABLE moderatorships (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `forum_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL) ENGINE=InnoDB - SQL (0.007257) CREATE INDEX `index_moderatorships_on_forum_id` ON moderatorships (`forum_id`) - SQL (0.000000) Mysql::Error: Unknown table 'monitorships': DROP TABLE monitorships - SQL (0.003838) CREATE TABLE monitorships (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `topic_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `active` tinyint(1) DEFAULT 1) ENGINE=InnoDB - SQL (0.000000) Mysql::Error: Unknown table 'open_id_authentication_associations': DROP TABLE open_id_authentication_associations - SQL (0.003165) CREATE TABLE open_id_authentication_associations (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `server_url` blob DEFAULT NULL, `handle` varchar(255) DEFAULT NULL, `secret` blob DEFAULT NULL, `issued` int(11) DEFAULT NULL, `lifetime` int(11) DEFAULT NULL, `assoc_type` varchar(255) DEFAULT NULL) ENGINE=InnoDB - SQL (0.000000) Mysql::Error: Unknown table 'open_id_authentication_nonces': DROP TABLE open_id_authentication_nonces - SQL (0.004499) CREATE TABLE open_id_authentication_nonces (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `nonce` varchar(255) DEFAULT NULL, `created` int(11) DEFAULT NULL) ENGINE=InnoDB - SQL (0.000000) Mysql::Error: Unknown table 'open_id_authentication_settings': DROP TABLE open_id_authentication_settings - SQL (0.005891) CREATE TABLE open_id_authentication_settings (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `setting` varchar(255) DEFAULT NULL, `value` blob DEFAULT NULL) ENGINE=InnoDB - SQL (0.000000) Mysql::Error: Unknown table 'posts': DROP TABLE posts - SQL (0.005840) CREATE TABLE posts (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `user_id` int(11) DEFAULT NULL, `topic_id` int(11) DEFAULT NULL, `body` text DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `forum_id` int(11) DEFAULT NULL, `body_html` text DEFAULT NULL) ENGINE=InnoDB - SQL (0.005849) CREATE INDEX `index_posts_on_forum_id` ON posts (`forum_id`, `created_at`) - SQL (0.006663) CREATE INDEX `index_posts_on_user_id` ON posts (`user_id`, `created_at`) - SQL (0.011740) CREATE INDEX `index_posts_on_topic_id` ON posts (`topic_id`, `created_at`) - SQL (0.000000) Mysql::Error: Unknown table 'sessions': DROP TABLE sessions - SQL (0.004011) CREATE TABLE sessions (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `session_id` varchar(255) DEFAULT NULL, `data` text DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `user_id` int(11) DEFAULT NULL) ENGINE=InnoDB - SQL (0.007453) CREATE INDEX `sessions_session_id_index` ON sessions (`session_id`) - SQL (0.000000) Mysql::Error: Unknown table 'topics': DROP TABLE topics - SQL (0.003051) CREATE TABLE topics (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `forum_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `hits` int(11) DEFAULT 0, `sticky` int(11) DEFAULT 0, `posts_count` int(11) DEFAULT 0, `replied_at` datetime DEFAULT NULL, `locked` tinyint(1) DEFAULT 0, `replied_by` int(11) DEFAULT NULL, `last_post_id` int(11) DEFAULT NULL) ENGINE=InnoDB - SQL (0.006672) CREATE INDEX `index_topics_on_forum_id` ON topics (`forum_id`) - SQL (0.008528) CREATE INDEX `index_topics_on_sticky_and_replied_at` ON topics (`forum_id`, `sticky`, `replied_at`) - SQL (0.009107) CREATE INDEX `index_topics_on_forum_id_and_replied_at` ON topics (`forum_id`, `replied_at`) - SQL (0.000000) Mysql::Error: Unknown table 'users': DROP TABLE users - SQL (0.004455) CREATE TABLE users (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `login` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password_hash` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `last_login_at` datetime DEFAULT NULL, `admin` tinyint(1) DEFAULT NULL, `posts_count` int(11) DEFAULT 0, `last_seen_at` datetime DEFAULT NULL, `display_name` varchar(255) DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `website` varchar(255) DEFAULT NULL, `login_key` varchar(255) DEFAULT NULL, `login_key_expires_at` datetime DEFAULT NULL, `activated` tinyint(1) DEFAULT 0, `bio` varchar(255) DEFAULT NULL, `bio_html` text DEFAULT NULL, `openid_url` varchar(255) DEFAULT NULL) ENGINE=InnoDB - SQL (0.010708) CREATE INDEX `index_users_on_last_seen_at` ON users (`last_seen_at`) - SQL (0.007903) CREATE INDEX `index_users_on_posts_count` ON users (`posts_count`) - SQL (0.002286) CREATE TABLE schema_info (version int(11)) - SQL (0.000213) INSERT INTO schema_info (version) VALUES(0) - SQL (0.000431) SHOW FIELDS FROM schema_info - SQL (0.000124) UPDATE schema_info SET version = 52 - - -Processing ForumsController#index (for 127.0.0.1 at 2007-10-26 13:55:40) [GET] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"action"=>"index", "controller"=>"forums"} - SQL (0.000269) SHOW TABLES - Forum Columns (0.000673) SHOW FIELDS FROM forums - SQL (0.000264) SHOW TABLES - User Columns (0.001000) SHOW FIELDS FROM users - SQL (0.000246) SHOW TABLES - SQL (0.000241) SHOW TABLES - Topic Columns (0.000830) SHOW FIELDS FROM topics - Forum Load (0.000276) SELECT * FROM forums ORDER BY position -Rendering template within layouts/application -Rendering forums/index - SQL (0.000185) SELECT count(*) AS count_all FROM topics  - Post Columns (0.000700) SHOW FIELDS FROM posts - SQL (0.000121) SELECT count(*) AS count_all FROM posts  - SQL (0.000166) SELECT count(*) AS count_all FROM users WHERE (posts_count > 0)  - User Load (0.000224) SELECT * FROM users WHERE (last_seen_at > '2007-10-26 05:50:40')  -Rendered layouts/_head (0.00511) -Completed in 0.05704 (17 reqs/sec) | Rendering: 0.01561 (27%) | DB: 0.00520 (9%) | 200 OK [http://localhost/] - - -Processing SessionsController#new (for 127.0.0.1 at 2007-10-26 13:55:43) [GET] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"action"=>"new", "to"=>"%2F", "controller"=>"sessions"} -Rendering template within layouts/application -Rendering sessions/new -Rendered layouts/_head (0.00153) -Completed in 0.01014 (98 reqs/sec) | Rendering: 0.00680 (67%) | DB: 0.00000 (0%) | 200 OK [http://localhost/login?to=%252F] - - -Processing SessionsController#new (for 127.0.0.1 at 2007-10-26 13:56:27) [GET] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"action"=>"new", "to"=>"%2Flogin%3Fto%3D%25252F", "controller"=>"sessions"} -Rendering template within layouts/application -Rendering sessions/new -Rendered layouts/_head (0.00159) -Completed in 0.00758 (131 reqs/sec) | Rendering: 0.00435 (57%) | DB: 0.00000 (0%) | 200 OK [http://localhost/login?to=%252Flogin%253Fto%253D%2525252F] - - -Processing SessionsController#new (for 127.0.0.1 at 2007-10-26 13:56:32) [GET] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"action"=>"new", "to"=>"%2Flogin%3Fto%3D%25252Flogin%25253Fto%25253D%252525252F", "controller"=>"sessions"} -Rendering template within layouts/application -Rendering sessions/new -Rendered layouts/_head (0.00332) -Completed in 0.01513 (66 reqs/sec) | Rendering: 0.00835 (55%) | DB: 0.00000 (0%) | 200 OK [http://localhost/login?to=%252Flogin%253Fto%253D%2525252Flogin%2525253Fto%2525253D%25252525252F] - - -Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 13:56:46) [POST] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"commit"=>"Login", "openid_url"=>"priidu.com", "action"=>"create", "to"=>"%2Flogin%3Fto%3D%25252Flogin%25253Fto%25253D%252525252F", "method"=>:get, "controller"=>"sessions", "login"=>"", "password"=>""} -Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 05:56:46 GMT -Rendering template within layouts/application -Rendering sessions/new -Rendered layouts/_head (0.00289) -Completed in 50.08740 (0 reqs/sec) | Rendering: 0.00862 (0%) | DB: 0.00000 (0%) | 200 OK [http://localhost/session] - - -Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 13:57:42) [POST] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"commit"=>"Login", "openid_url"=>"priidu.com", "action"=>"create", "to"=>"%2Flogin%3Fto%3D%25252Flogin%25253Fto%25253D%252525252F", "method"=>:get, "controller"=>"sessions", "login"=>"", "password"=>"", "remember_me"=>"1"} -Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 05:57:42 GMT -Rendering template within layouts/application -Rendering sessions/new -Rendered layouts/_head (0.00315) -Completed in 65.60830 (0 reqs/sec) | Rendering: 0.01011 (0%) | DB: 0.00000 (0%) | 200 OK [http://localhost/session] - - -Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 13:58:48) [POST] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"commit"=>"Login", "openid_url"=>"priidu.com", "action"=>"create", "to"=>"%2Flogin%3Fto%3D%25252Flogin%25253Fto%25253D%252525252F", "method"=>:get, "controller"=>"sessions", "login"=>"", "password"=>""} -Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 05:58:48 GMT - OpenIdAuthentication::Nonce Columns (0.000597) SHOW FIELDS FROM open_id_authentication_nonces - OpenIdAuthentication::Nonce Load (0.000250) SELECT * FROM open_id_authentication_nonces WHERE (open_id_authentication_nonces.`nonce` = 'ttHK83rj') LIMIT 1 - SQL (0.000065) BEGIN - OpenIdAuthentication::Nonce Create (0.000173) INSERT INTO open_id_authentication_nonces (`created`, `nonce`) VALUES(1193378329, 'ttHK83rj') - SQL (0.005638) COMMIT - OpenIdAuthentication::Association Columns (0.000647) SHOW FIELDS FROM open_id_authentication_associations - OpenIdAuthentication::Association Load (0.000215) SELECT * FROM open_id_authentication_associations WHERE (open_id_authentication_associations.`server_url` = 'http://www.myopenid.com/server')  - OpenIdAuthentication::Association Load (0.000372) SELECT * FROM open_id_authentication_associations WHERE (open_id_authentication_associations.`handle` = '{HMAC-SHA1}{47218216}{jbtNQQ==}' AND open_id_authentication_associations.`server_url` = 'http://www.myopenid.com/server') LIMIT 1 - SQL (0.000063) BEGIN - OpenIdAuthentication::Association Create (0.000235) INSERT INTO open_id_authentication_associations (`handle`, `server_url`, `lifetime`, `assoc_type`, `issued`, `secret`) VALUES('{HMAC-SHA1}{47218216}{jbtNQQ==}', x'687474703a2f2f7777772e6d796f70656e69642e636f6d2f736572766572', 1209600, 'HMAC-SHA1', 1193378330, x'a80d6e27b9e18b3f9b5f0487234e3c30eb052472') - SQL (0.006002) COMMIT -Redirected to http://www.myopenid.com/server?openid.mode=checkid_setup&openid.return_to=http%3A%2F%2Flocalhost%3A3000%2Fsession%3Fopen_id_complete%3D1%26to%3D%252Flogin%253Fto%253D%2525252Flogin%2525253Fto%2525253D%25252525252F%26nonce%3DttHK83rj%26nonce%3DttHK83rj&openid.trust_root=http%3A%2F%2Flocalhost%3A3000%2F&openid.identity=http%3A%2F%2Fpriit.myopenid.com%2F&openid.assoc_handle=%7BHMAC-SHA1%7D%7B47218216%7D%7BjbtNQQ%3D%3D%7D -Completed in 2.69416 (0 reqs/sec) | DB: 0.01426 (0%) | 302 Found [http://localhost/session] - - -Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 14:00:06) [GET] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"openid.sig"=>"Dd2Zl40QxVDXXJkA1KOBRNFVP6g=", "openid.return_to"=>"http://localhost:3000/session?open_id_complete=1&to=%2Flogin%3Fto%3D%25252Flogin%25253Fto%25253D%252525252F&nonce=ttHK83rj&nonce=ttHK83rj", "openid.mode"=>"id_res", "openid.op_endpoint"=>"http://www.myopenid.com/server", "openid.response_nonce"=>"2007-10-26T06:00:01ZJ3ighF", "action"=>"create", "to"=>"/login?to=%252Flogin%253Fto%253D%2525252F", "method"=>:get, "controller"=>"sessions", "openid.identity"=>"http://priit.myopenid.com/", "nonce"=>"ttHK83rj", "open_id_complete"=>"1", "openid.signed"=>"assoc_handle,identity,mode,op_endpoint,response_nonce,return_to,signed", "openid.assoc_handle"=>"{HMAC-SHA1}{47218216}{jbtNQQ==}"} -Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 06:00:06 GMT - OpenIdAuthentication::Association Load (0.000473) SELECT * FROM open_id_authentication_associations WHERE (open_id_authentication_associations.`handle` = '{HMAC-SHA1}{47218216}{jbtNQQ==}' AND open_id_authentication_associations.`server_url` = 'http://www.myopenid.com/server')  - OpenIdAuthentication::Nonce Load (0.000314) SELECT * FROM open_id_authentication_nonces WHERE (open_id_authentication_nonces.`nonce` = 'ttHK83rj') LIMIT 1 - SQL (0.000046) BEGIN - OpenIdAuthentication::Nonce Destroy (0.000145)  DELETE FROM open_id_authentication_nonces - WHERE `id` = 1 - - SQL (0.006813) COMMIT - SQL (0.000364) SHOW TABLES - User Columns (0.001036) SHOW FIELDS FROM users - SQL (0.000284) SHOW TABLES - Forum Columns (0.000573) SHOW FIELDS FROM forums - SQL (0.000289) SHOW TABLES - SQL (0.000237) SHOW TABLES - User Load (0.000317) SELECT * FROM users WHERE (users.`openid_url` = 'http://priidu.com/') LIMIT 1 -Rendering template within layouts/application -Rendering sessions/new -Rendered layouts/_head (0.00327) -Completed in 0.11550 (8 reqs/sec) | Rendering: 0.00639 (5%) | DB: 0.01089 (9%) | 200 OK [http://localhost/session?open_id_complete=1&to=%2Flogin%3Fto%3D%25252Flogin%25253Fto%25253D%252525252F&nonce=ttHK83rj&nonce=ttHK83rj&openid.assoc_handle=%7BHMAC-SHA1%7D%7B47218216%7D%7BjbtNQQ%3D%3D%7D&openid.identity=http%3A%2F%2Fpriit.myopenid.com%2F&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.myopenid.com%2Fserver&openid.response_nonce=2007-10-26T06%3A00%3A01ZJ3ighF&openid.return_to=http%3A%2F%2Flocalhost%3A3000%2Fsession%3Fopen_id_complete%3D1%26to%3D%252Flogin%253Fto%253D%2525252Flogin%2525253Fto%2525253D%25252525252F%26nonce%3DttHK83rj%26nonce%3DttHK83rj&openid.sig=Dd2Zl40QxVDXXJkA1KOBRNFVP6g%3D&openid.signed=assoc_handle%2Cidentity%2Cmode%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned] - - -Processing UsersController#new (for 127.0.0.1 at 2007-10-26 14:00:16) [GET] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"action"=>"new", "to"=>"%2Fsession%3Fopen_id_complete%3D1%26to%3D%252Flogin%253Fto%253D%2525252Flogin%2525253Fto%2525253D%25252525252F%26nonce%3DttHK83rj%26nonce%3DttHK83rj%26openid.assoc_handle%3D%257BHMAC-SHA1%257D%257B47218216%257D%257BjbtNQQ%253D%253D%257D%26openid.identity%3Dhttp%253A%252F%252Fpriit.myopenid.com%252F%26openid.mode%3Did_res%26openid.op_endpoint%3Dhttp%253A%252F%252Fwww.myopenid.com%252Fserver%26openid.response_nonce%3D2007-10-26T06%253A00%253A01ZJ3ighF%26openid.return_to%3Dhttp%253A%252F%252Flocalhost%253A3000%252Fsession%253Fopen_id_complete%253D1%2526to%253D%25252Flogin%25253Fto%25253D%252525252Flogin%252525253Fto%252525253D%2525252525252F%2526nonce%253DttHK83rj%2526nonce%253DttHK83rj%26openid.sig%3DDd2Zl40QxVDXXJkA1KOBRNFVP6g%253D%26openid.signed%3Dassoc_handle%252Cidentity%252Cmode%252Cop_endpoint%252Cresponse_nonce%252Creturn_to%252Csigned", "controller"=>"users"} - SQL (0.000348) SHOW TABLES - User Columns (0.000978) SHOW FIELDS FROM users - SQL (0.000313) SHOW TABLES - Forum Columns (0.000526) SHOW FIELDS FROM forums - SQL (0.000476) SHOW TABLES - SQL (0.000241) SHOW TABLES -Rendering template within layouts/application -Rendering users/new -Rendered users/_form (0.00580) -Rendered layouts/_head (0.00416) -Completed in 0.04956 (20 reqs/sec) | Rendering: 0.01251 (25%) | DB: 0.00288 (5%) | 200 OK [http://localhost/signup?to=%252Fsession%253Fopen_id_complete%253D1%2526to%253D%25252Flogin%25253Fto%25253D%252525252Flogin%252525253Fto%252525253D%2525252525252F%2526nonce%253DttHK83rj%2526nonce%253DttHK83rj%2526openid.assoc_handle%253D%25257BHMAC-SHA1%25257D%25257B47218216%25257D%25257BjbtNQQ%25253D%25253D%25257D%2526openid.identity%253Dhttp%25253A%25252F%25252Fpriit.myopenid.com%25252F%2526openid.mode%253Did_res%2526openid.op_endpoint%253Dhttp%25253A%25252F%25252Fwww.myopenid.com%25252Fserver%2526openid.response_nonce%253D2007-10-26T06%25253A00%25253A01ZJ3ighF%2526openid.return_to%253Dhttp%25253A%25252F%25252Flocalhost%25253A3000%25252Fsession%25253Fopen_id_complete%25253D1%252526to%25253D%2525252Flogin%2525253Fto%2525253D%25252525252Flogin%25252525253Fto%25252525253D%252525252525252F%252526nonce%25253DttHK83rj%252526nonce%25253DttHK83rj%2526openid.sig%253DDd2Zl40QxVDXXJkA1KOBRNFVP6g%25253D%2526openid.signed%253Dassoc_handle%25252Cidentity%25252Cmode%25252Cop_endpoint%25252Cresponse_nonce%25252Creturn_to%25252Csigned] - - -Processing SessionsController#new (for 127.0.0.1 at 2007-10-26 14:01:26) [GET] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"action"=>"new", "to"=>"%2Fsignup%3Fto%3D%25252Fsession%25253Fopen_id_complete%25253D1%252526to%25253D%2525252Flogin%2525253Fto%2525253D%25252525252Flogin%25252525253Fto%25252525253D%252525252525252F%252526nonce%25253DttHK83rj%252526nonce%25253DttHK83rj%252526openid.assoc_handle%25253D%2525257BHMAC-SHA1%2525257D%2525257B47218216%2525257D%2525257BjbtNQQ%2525253D%2525253D%2525257D%252526openid.identity%25253Dhttp%2525253A%2525252F%2525252Fpriit.myopenid.com%2525252F%252526openid.mode%25253Did_res%252526openid.op_endpoint%25253Dhttp%2525253A%2525252F%2525252Fwww.myopenid.com%2525252Fserver%252526openid.response_nonce%25253D2007-10-26T06%2525253A00%2525253A01ZJ3ighF%252526openid.return_to%25253Dhttp%2525253A%2525252F%2525252Flocalhost%2525253A3000%2525252Fsession%2525253Fopen_id_complete%2525253D1%25252526to%2525253D%252525252Flogin%252525253Fto%252525253D%2525252525252Flogin%2525252525253Fto%2525252525253D%25252525252525252F%25252526nonce%2525253DttHK83rj%25252526nonce%2525253DttHK83rj%252526openid.sig%25253DDd2Zl40QxVDXXJkA1KOBRNFVP6g%2525253D%252526openid.signed%25253Dassoc_handle%2525252Cidentity%2525252Cmode%2525252Cop_endpoint%2525252Cresponse_nonce%2525252Creturn_to%2525252Csigned", "controller"=>"sessions"} -Rendering template within layouts/application -Rendering sessions/new -Rendered layouts/_head (0.00363) -Completed in 0.01023 (97 reqs/sec) | Rendering: 0.00654 (63%) | DB: 0.00000 (0%) | 200 OK [http://localhost/login?to=%252Fsignup%253Fto%253D%2525252Fsession%2525253Fopen_id_complete%2525253D1%25252526to%2525253D%252525252Flogin%252525253Fto%252525253D%2525252525252Flogin%2525252525253Fto%2525252525253D%25252525252525252F%25252526nonce%2525253DttHK83rj%25252526nonce%2525253DttHK83rj%25252526openid.assoc_handle%2525253D%252525257BHMAC-SHA1%252525257D%252525257B47218216%252525257D%252525257BjbtNQQ%252525253D%252525253D%252525257D%25252526openid.identity%2525253Dhttp%252525253A%252525252F%252525252Fpriit.myopenid.com%252525252F%25252526openid.mode%2525253Did_res%25252526openid.op_endpoint%2525253Dhttp%252525253A%252525252F%252525252Fwww.myopenid.com%252525252Fserver%25252526openid.response_nonce%2525253D2007-10-26T06%252525253A00%252525253A01ZJ3ighF%25252526openid.return_to%2525253Dhttp%252525253A%252525252F%252525252Flocalhost%252525253A3000%252525252Fsession%252525253Fopen_id_complete%252525253D1%2525252526to%252525253D%25252525252Flogin%25252525253Fto%25252525253D%252525252525252Flogin%252525252525253Fto%252525252525253D%2525252525252525252F%2525252526nonce%252525253DttHK83rj%2525252526nonce%252525253DttHK83rj%25252526openid.sig%2525253DDd2Zl40QxVDXXJkA1KOBRNFVP6g%252525253D%25252526openid.signed%2525253Dassoc_handle%252525252Cidentity%252525252Cmode%252525252Cop_endpoint%252525252Cresponse_nonce%252525252Creturn_to%252525252Csigned] - - -Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 14:01:35) [POST] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"commit"=>"Login", "openid_url"=>"priit.mx.ee", "action"=>"create", "to"=>"%2Fsignup%3Fto%3D%25252Fsession%25253Fopen_id_complete%25253D1%252526to%25253D%2525252Flogin%2525253Fto%2525253D%25252525252Flogin%25252525253Fto%25252525253D%252525252525252F%252526nonce%25253DttHK83rj%252526nonce%25253DttHK83rj%252526openid.assoc_handle%25253D%2525257BHMAC-SHA1%2525257D%2525257B47218216%2525257D%2525257BjbtNQQ%2525253D%2525253D%2525257D%252526openid.identity%25253Dhttp%2525253A%2525252F%2525252Fpriit.myopenid.com%2525252F%252526openid.mode%25253Did_res%252526openid.op_endpoint%25253Dhttp%2525253A%2525252F%2525252Fwww.myopenid.com%2525252Fserver%252526openid.response_nonce%25253D2007-10-26T06%2525253A00%2525253A01ZJ3ighF%252526openid.return_to%25253Dhttp%2525253A%2525252F%2525252Flocalhost%2525253A3000%2525252Fsession%2525253Fopen_id_complete%2525253D1%25252526to%2525253D%252525252Flogin%252525253Fto%252525253D%2525252525252Flogin%2525252525253Fto%2525252525253D%25252525252525252F%25252526nonce%2525253DttHK83rj%25252526nonce%2525253DttHK83rj%252526openid.sig%25253DDd2Zl40QxVDXXJkA1KOBRNFVP6g%2525253D%252526openid.signed%25253Dassoc_handle%2525252Cidentity%2525252Cmode%2525252Cop_endpoint%2525252Cresponse_nonce%2525252Creturn_to%2525252Csigned", "method"=>:get, "controller"=>"sessions", "login"=>"", "password"=>""} -Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 06:01:35 GMT -Rendering template within layouts/application -Rendering sessions/new -Rendered layouts/_head (0.00300) -Completed in 65.14472 (0 reqs/sec) | Rendering: 0.00916 (0%) | DB: 0.00000 (0%) | 200 OK [http://localhost/session] - - -Processing UsersController#index (for 127.0.0.1 at 2007-10-26 14:10:18) [GET] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"action"=>"index", "controller"=>"users"} - SQL (0.000330) SHOW TABLES - User Columns (0.000992) SHOW FIELDS FROM users - SQL (0.000289) SHOW TABLES - Forum Columns (0.000511) SHOW FIELDS FROM forums - SQL (0.000297) SHOW TABLES - SQL (0.000251) SHOW TABLES - SQL (0.000231) SELECT count(*) AS count_all FROM users  - User Load (0.000236) SELECT * FROM users ORDER BY display_name LIMIT 0, 50 - CACHE (0.000000) SELECT count(*) AS count_all FROM users  - SQL (0.000188) SELECT count(id) AS count_id FROM users WHERE (posts_count > 0)  -Rendering template within layouts/application -Rendering users/index -Rendered layouts/_head (0.00150) -Completed in 0.04600 (21 reqs/sec) | Rendering: 0.00614 (13%) | DB: 0.00333 (7%) | 200 OK [http://localhost/users] - - -Processing UsersController#new (for 127.0.0.1 at 2007-10-26 14:10:20) [GET] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"action"=>"new", "to"=>"%2Fusers", "controller"=>"users"} - SQL (0.000426) SHOW TABLES - User Columns (0.001030) SHOW FIELDS FROM users - SQL (0.000297) SHOW TABLES - Forum Columns (0.000693) SHOW FIELDS FROM forums - SQL (0.000334) SHOW TABLES - SQL (0.000253) SHOW TABLES -Rendering template within layouts/application -Rendering users/new -Rendered users/_form (0.00763) -Rendered layouts/_head (0.00303) -Completed in 0.11988 (8 reqs/sec) | Rendering: 0.01418 (11%) | DB: 0.00303 (2%) | 200 OK [http://localhost/signup?to=%252Fusers] - - -Processing UsersController#new (for 127.0.0.1 at 2007-10-26 14:31:53) [GET] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"action"=>"new", "to"=>"%2Fsignup%3Fto%3D%25252Fusers", "controller"=>"users"} - SQL (0.000315) SHOW TABLES - User Columns (0.000902) SHOW FIELDS FROM users - SQL (0.000285) SHOW TABLES - Forum Columns (0.000511) SHOW FIELDS FROM forums - SQL (0.000275) SHOW TABLES - SQL (0.000224) SHOW TABLES -Rendering template within layouts/application -Rendering users/new -Rendered users/_form (0.00401) -Rendered layouts/_head (0.00160) -Completed in 0.04389 (22 reqs/sec) | Rendering: 0.00746 (16%) | DB: 0.00251 (5%) | 200 OK [http://localhost/signup?to=%252Fsignup%253Fto%253D%2525252Fusers] - - -Processing SessionsController#new (for 127.0.0.1 at 2007-10-26 14:31:54) [GET] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"action"=>"new", "to"=>"%2Fsignup%3Fto%3D%25252Fsignup%25253Fto%25253D%252525252Fusers", "controller"=>"sessions"} -Rendering template within layouts/application -Rendering sessions/new -Rendered layouts/_head (0.00162) -Completed in 0.01172 (85 reqs/sec) | Rendering: 0.00538 (45%) | DB: 0.00000 (0%) | 200 OK [http://localhost/login?to=%252Fsignup%253Fto%253D%2525252Fsignup%2525253Fto%2525253D%25252525252Fusers] - - -Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 14:32:02) [POST] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"commit"=>"Login", "openid_url"=>"priit.mx.ee", "action"=>"create", "to"=>"%2Fsignup%3Fto%3D%25252Fsignup%25253Fto%25253D%252525252Fusers", "method"=>:get, "controller"=>"sessions", "login"=>"", "password"=>"", "remember_me"=>"1"} -Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 06:32:02 GMT - OpenIdAuthentication::Nonce Load (0.000322) SELECT * FROM open_id_authentication_nonces WHERE (open_id_authentication_nonces.`nonce` = 'vnM9mXeP') LIMIT 1 - SQL (0.000061) BEGIN - OpenIdAuthentication::Nonce Create (0.000166) INSERT INTO open_id_authentication_nonces (`created`, `nonce`) VALUES(1193380324, 'vnM9mXeP') - SQL (0.001941) COMMIT - OpenIdAuthentication::Association Load (0.000211) SELECT * FROM open_id_authentication_associations WHERE (open_id_authentication_associations.`server_url` = 'http://www.myopenid.com/server')  -Redirected to http://www.myopenid.com/server?openid.mode=checkid_setup&openid.return_to=http%3A%2F%2Flocalhost%3A3000%2Fsession%3Fopen_id_complete%3D1%26to%3D%252Fsignup%253Fto%253D%2525252Fsignup%2525253Fto%2525253D%25252525252Fusers%26nonce%3DvnM9mXeP%26nonce%3DvnM9mXeP&openid.trust_root=http%3A%2F%2Flocalhost%3A3000%2F&openid.identity=http%3A%2F%2Fpriit.myopenid.com%2F&openid.assoc_handle=%7BHMAC-SHA1%7D%7B47218216%7D%7BjbtNQQ%3D%3D%7D -Completed in 1.40410 (0 reqs/sec) | DB: 0.00270 (0%) | 302 Found [http://localhost/session] - - -Processing SessionsController#create (for 127.0.0.1 at 2007-10-26 14:32:26) [GET] - Session ID: ecb8723fbc6bfd00a3b36f79afb03c97 - Parameters: {"openid.sig"=>"74tHVfxWbczQKjcuTkZrCBo1taM=", "openid.return_to"=>"http://localhost:3000/session?open_id_complete=1&to=%2Fsignup%3Fto%3D%25252Fsignup%25253Fto%25253D%252525252Fusers&nonce=vnM9mXeP&nonce=vnM9mXeP", "openid.mode"=>"id_res", "openid.op_endpoint"=>"http://www.myopenid.com/server", "openid.response_nonce"=>"2007-10-26T06:32:21ZAP4p2v", "action"=>"create", "to"=>"/signup?to=%252Fsignup%253Fto%253D%2525252Fusers", "method"=>:get, "controller"=>"sessions", "openid.identity"=>"http://priit.myopenid.com/", "nonce"=>"vnM9mXeP", "open_id_complete"=>"1", "openid.signed"=>"assoc_handle,identity,mode,op_endpoint,response_nonce,return_to,signed", "openid.assoc_handle"=>"{HMAC-SHA1}{47218216}{jbtNQQ==}"} -Cookie set: use_open_id=1; path=/; expires=Sun, 26 Oct 2008 06:32:26 GMT - OpenIdAuthentication::Association Load (0.000180) SELECT * FROM open_id_authentication_associations WHERE (open_id_authentication_associations.`handle` = '{HMAC-SHA1}{47218216}{jbtNQQ==}' AND open_id_authentication_associations.`server_url` = 'http://www.myopenid.com/server')  - OpenIdAuthentication::Nonce Load (0.000421) SELECT * FROM open_id_authentication_nonces WHERE (open_id_authentication_nonces.`nonce` = 'vnM9mXeP') LIMIT 1 - SQL (0.000098) BEGIN - OpenIdAuthentication::Nonce Destroy (0.000269)  DELETE FROM open_id_authentication_nonces - WHERE `id` = 2 - - SQL (0.004606) COMMIT - SQL (0.000507) SHOW TABLES - User Columns (0.001618) SHOW FIELDS FROM users - SQL (0.000278) SHOW TABLES - Forum Columns (0.000510) SHOW FIELDS FROM forums - SQL (0.000301) SHOW TABLES - SQL (0.000241) SHOW TABLES - User Load (0.000318) SELECT * FROM users WHERE (users.`openid_url` = 'http://priit.mx.ee/') LIMIT 1 -Rendering template within layouts/application -Rendering sessions/new -Rendered layouts/_head (0.00310) -Completed in 0.06552 (15 reqs/sec) | Rendering: 0.00594 (9%) | DB: 0.00935 (14%) | 200 OK [http://localhost/session?open_id_complete=1&to=%2Fsignup%3Fto%3D%25252Fsignup%25253Fto%25253D%252525252Fusers&nonce=vnM9mXeP&nonce=vnM9mXeP&openid.assoc_handle=%7BHMAC-SHA1%7D%7B47218216%7D%7BjbtNQQ%3D%3D%7D&openid.identity=http%3A%2F%2Fpriit.myopenid.com%2F&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.myopenid.com%2Fserver&openid.response_nonce=2007-10-26T06%3A32%3A21ZAP4p2v&openid.return_to=http%3A%2F%2Flocalhost%3A3000%2Fsession%3Fopen_id_complete%3D1%26to%3D%252Fsignup%253Fto%253D%2525252Fsignup%2525253Fto%2525253D%25252525252Fusers%26nonce%3DvnM9mXeP%26nonce%3DvnM9mXeP&openid.sig=74tHVfxWbczQKjcuTkZrCBo1taM%3D&openid.signed=assoc_handle%2Cidentity%2Cmode%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned] - - -Processing ForumsController#index (for 127.0.0.1 at 2007-10-29 11:48:23) [GET] - Session ID: dba2cc4ec6d4493b8b7a1d2a15257cf7 - Parameters: {"action"=>"index", "controller"=>"forums"} - SQL (0.000276) SHOW TABLES - Forum Columns (0.000530) SHOW FIELDS FROM forums - SQL (0.000258) SHOW TABLES - User Columns (0.000866) SHOW FIELDS FROM users - SQL (0.000239) SHOW TABLES - SQL (0.000234) SHOW TABLES - Topic Columns (0.000686) SHOW FIELDS FROM topics - Forum Load (0.000296) SELECT * FROM forums ORDER BY position -Rendering template within layouts/application -Rendering forums/index - SQL (0.000206) SELECT count(*) AS count_all FROM topics  - Post Columns (0.000571) SHOW FIELDS FROM posts - SQL (0.000133) SELECT count(*) AS count_all FROM posts  - SQL (0.000203) SELECT count(*) AS count_all FROM users WHERE (posts_count > 0)  - User Load (0.000226) SELECT * FROM users WHERE (last_seen_at > '2007-10-29 03:43:23')  -Rendered layouts/_head (0.00522) -Completed in 0.06949 (14 reqs/sec) | Rendering: 0.02724 (39%) | DB: 0.00472 (6%) | 200 OK [http://localhost/] - - -Processing ForumsController#index (for 127.0.0.1 at 2007-10-29 11:48:48) [GET] - Session ID: dba2cc4ec6d4493b8b7a1d2a15257cf7 - Parameters: {"action"=>"index", "controller"=>"forums"} - SQL (0.000382) SHOW TABLES - Forum Columns (0.000598) SHOW FIELDS FROM forums - SQL (0.000311) SHOW TABLES - User Columns (0.000966) SHOW FIELDS FROM users - SQL (0.000276) SHOW TABLES - SQL (0.000234) SHOW TABLES - Topic Columns (0.000699) SHOW FIELDS FROM topics - Forum Load (0.000126) SELECT * FROM forums ORDER BY position -Rendering template within layouts/application -Rendering forums/index - SQL (0.000068) SELECT count(*) AS count_all FROM topics  - Post Columns (0.000629) SHOW FIELDS FROM posts - SQL (0.000062) SELECT count(*) AS count_all FROM posts  - SQL (0.000058) SELECT count(*) AS count_all FROM users WHERE (posts_count > 0)  - User Load (0.000294) SELECT * FROM users WHERE (last_seen_at > '2007-10-29 03:43:48')  -Rendered layouts/_head (0.00168) -Completed in 0.10820 (9 reqs/sec) | Rendering: 0.00549 (5%) | DB: 0.00470 (4%) | 200 OK [http://localhost/] - - -Processing ForumsController#index (for 127.0.0.1 at 2007-10-29 11:54:37) [GET] - Session ID: dba2cc4ec6d4493b8b7a1d2a15257cf7 - Parameters: {"action"=>"index", "controller"=>"forums"} - SQL (0.000273) SHOW TABLES - Forum Columns (0.001147) SHOW FIELDS FROM forums - SQL (0.000279) SHOW TABLES - User Columns (0.000890) SHOW FIELDS FROM users - SQL (0.000250) SHOW TABLES - SQL (0.000249) SHOW TABLES - Topic Columns (0.000726) SHOW FIELDS FROM topics - Forum Load (0.000831) SELECT * FROM forums ORDER BY position -Rendering template within layouts/application -Rendering forums/index - SQL (0.000083) SELECT count(*) AS count_all FROM topics  - Post Columns (0.001037) SHOW FIELDS FROM posts - SQL (0.000073) SELECT count(*) AS count_all FROM posts  - SQL (0.000054) SELECT count(*) AS count_all FROM users WHERE (posts_count > 0)  - User Load (0.000295) SELECT * FROM users WHERE (last_seen_at > '2007-10-29 03:49:37')  -Rendered layouts/_head (0.00480) -Completed in 0.05734 (17 reqs/sec) | Rendering: 0.01546 (26%) | DB: 0.00619 (10%) | 200 OK [http://localhost/] - - -Processing ForumsController#index (for 127.0.0.1 at 2007-10-29 13:05:30) [GET] - Session ID: dba2cc4ec6d4493b8b7a1d2a15257cf7 - Parameters: {"action"=>"index", "controller"=>"forums"} - SQL (0.000384) SHOW TABLES - Forum Columns (0.000576) SHOW FIELDS FROM forums - SQL (0.000296) SHOW TABLES - User Columns (0.000978) SHOW FIELDS FROM users - SQL (0.000418) SHOW TABLES - SQL (0.000258) SHOW TABLES - Topic Columns (0.000765) SHOW FIELDS FROM topics - Forum Load (0.000124) SELECT * FROM forums ORDER BY position -Rendering template within layouts/application -Rendering forums/index - SQL (0.000096) SELECT count(*) AS count_all FROM topics  - Post Columns (0.000649) SHOW FIELDS FROM posts - SQL (0.000062) SELECT count(*) AS count_all FROM posts  - SQL (0.000058) SELECT count(*) AS count_all FROM users WHERE (posts_count > 0)  - User Load (0.000296) SELECT * FROM users WHERE (last_seen_at > '2007-10-29 05:00:30')  -Rendered layouts/_head (0.00172) -Completed in 0.10091 (9 reqs/sec) | Rendering: 0.00571 (5%) | DB: 0.00496 (4%) | 200 OK [http://localhost/] - - -Processing ForumsController#index (for 127.0.0.1 at 2007-10-29 13:05:32) [GET] - Session ID: dba2cc4ec6d4493b8b7a1d2a15257cf7 - Parameters: {"action"=>"index", "controller"=>"forums"} - SQL (0.000474) SHOW TABLES - Forum Columns (0.000972) SHOW FIELDS FROM forums - SQL (0.000454) SHOW TABLES - User Columns (0.001566) SHOW FIELDS FROM users - SQL (0.000238) SHOW TABLES - SQL (0.000221) SHOW TABLES - Topic Columns (0.000685) SHOW FIELDS FROM topics - Forum Load (0.000116) SELECT * FROM forums ORDER BY position -Rendering template within layouts/application -Rendering forums/index - SQL (0.000066) SELECT count(*) AS count_all FROM topics  - Post Columns (0.000628) SHOW FIELDS FROM posts - SQL (0.000235) SELECT count(*) AS count_all FROM posts  - SQL (0.000060) SELECT count(*) AS count_all FROM users WHERE (posts_count > 0)  - User Load (0.000308) SELECT * FROM users WHERE (last_seen_at > '2007-10-29 05:00:32')  -Rendered layouts/_head (0.00154) -Completed in 0.06065 (16 reqs/sec) | Rendering: 0.00530 (8%) | DB: 0.00602 (9%) | 200 OK [http://localhost/] - - -Processing ForumsController#index (for 127.0.0.1 at 2007-10-29 13:05:33) [GET] - Session ID: dba2cc4ec6d4493b8b7a1d2a15257cf7 - Parameters: {"action"=>"index", "controller"=>"forums"} - SQL (0.000303) SHOW TABLES - Forum Columns (0.000639) SHOW FIELDS FROM forums - SQL (0.000284) SHOW TABLES - User Columns (0.000954) SHOW FIELDS FROM users - SQL (0.000268) SHOW TABLES - SQL (0.000238) SHOW TABLES - Topic Columns (0.000787) SHOW FIELDS FROM topics - Forum Load (0.000104) SELECT * FROM forums ORDER BY position -Rendering template within layouts/application -Rendering forums/index - SQL (0.000065) SELECT count(*) AS count_all FROM topics  - Post Columns (0.000712) SHOW FIELDS FROM posts - SQL (0.000051) SELECT count(*) AS count_all FROM posts  - SQL (0.000048) SELECT count(*) AS count_all FROM users WHERE (posts_count > 0)  - User Load (0.000290) SELECT * FROM users WHERE (last_seen_at > '2007-10-29 05:00:33')  -Rendered layouts/_head (0.00159) -Completed in 0.04797 (20 reqs/sec) | Rendering: 0.00540 (11%) | DB: 0.00474 (9%) | 200 OK [http://localhost/] -/!\ FAILSAFE /!\ Tue Oct 30 13:56:53 +0800 2007 - Status: 500 Internal Server Error - No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243 - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - script/server:3 -/!\ FAILSAFE /!\ Tue Oct 30 13:56:57 +0800 2007 - Status: 500 Internal Server Error - No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243 - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - script/server:3 -/!\ FAILSAFE /!\ Tue Oct 30 13:56:57 +0800 2007 - Status: 500 Internal Server Error - No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243 - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - script/server:3 -/!\ FAILSAFE /!\ Tue Oct 30 13:56:58 +0800 2007 - Status: 500 Internal Server Error - No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243 - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - script/server:3 -/!\ FAILSAFE /!\ Tue Oct 30 13:56:59 +0800 2007 - Status: 500 Internal Server Error - No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243 - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - script/server:3 -/!\ FAILSAFE /!\ Tue Oct 30 13:57:49 +0800 2007 - Status: 500 Internal Server Error - No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243 - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - script/server:3 -/!\ FAILSAFE /!\ Tue Oct 30 13:57:59 +0800 2007 - Status: 500 Internal Server Error - No such file or directory - /home/aa/apps/rubyorgee/config/routes.rb - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `stat' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/routing.rb:1255:in `reload' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:133:in `reload_application' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:177:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `each' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `send!' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:174:in `run_callbacks' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:113:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:125:in `dispatch_cgi' - /usr/lib/ruby/gems/1.8/gems/actionpack-1.13.5.7919/lib/action_controller/dispatcher.rb:9:in `dispatch' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run' - /usr/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243 - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:489:in `load' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/servers/mongrel.rb:64 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:342:in `new_constants_in' - /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.4.7919/lib/active_support/dependencies.rb:496:in `require' - /usr/lib/ruby/gems/1.8/gems/rails-1.2.5.7919/lib/commands/server.rb:39 - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' - /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' - script/server:3 -- 2.11.4.GIT