Commit eb0a54a4 authored by 神楽坂玲奈's avatar 神楽坂玲奈

主题管理前台初步

git-svn-id: http://glupx.googlecode.com/svn/trunk/Reliz@34 189f022a-1064-8ae2-3e6f-c4a67275c50b
parent 7b1b2ee3
...@@ -70,6 +70,12 @@ ...@@ -70,6 +70,12 @@
<label>&nbsp;</label> <label>&nbsp;</label>
<span id="thread_<%= topic.id %>"><%= topic %></span> <span id="thread_<%= topic.id %>"><%= topic %></span>
<a href="/topic/control?id=<%= topic.id %>&deleted=1">删除</a>
<a href="/topic/control?id=<%= topic.id %>&displayorder=1">置顶</a>
<a href="/topic/control?id=<%= topic.id %>&digest=1">精华</a>
<a href="/topic/control?id=<%= topic.id %>&locked=1">锁定</a>
</th> </th>
<td class="author"> <td class="author">
<cite> <cite>
......
class CreateTopics < ActiveRecord::Migration class CreateTopics < ActiveRecord::Migration
def self.up def self.up
create_table :topics do |t| create_table :topics do |t|
t.references :user t.references :user, :null => false
t.references :type t.references :type
t.references :category, :polymorphic => true t.references :category, :polymorphic => true, :null => false
t.string :name t.string :name, :null => false
t.integer :displayorder t.integer :displayorder, :default => 0, :null => false
t.integer :views t.integer :views, :default => 0, :null => false
t.integer :readperm t.integer :readperm, :default => 1, :null => false
t.boolean :locked t.boolean :locked, :default => false, :null => false
t.boolean :deleted t.boolean :deleted, :default => false, :null => false
t.boolean :reverse t.boolean :reverse, :default => false, :null => false
t.boolean :private t.boolean :private, :default => false, :null => false
t.timestamps t.timestamps
......
...@@ -76,17 +76,18 @@ ActiveRecord::Schema.define(:version => 20101226125042) do ...@@ -76,17 +76,18 @@ ActiveRecord::Schema.define(:version => 20101226125042) do
end end
create_table "topics", :force => true do |t| create_table "topics", :force => true do |t|
t.integer "user_id" t.integer "user_id", :null => false
t.integer "type_id" t.integer "type_id"
t.integer "category_id" t.integer "category_id", :null => false
t.string "category_type" t.string "category_type", :default => "", :null => false
t.string "name" t.string "name", :default => "", :null => false
t.integer "displayorder" t.integer "displayorder", :default => 0, :null => false
t.integer "views" t.integer "views", :default => 0, :null => false
t.integer "readperm" t.integer "readperm", :default => 1, :null => false
t.boolean "locked" t.boolean "locked", :default => false, :null => false
t.boolean "reverse" t.boolean "deleted", :default => false, :null => false
t.boolean "private" t.boolean "reverse", :default => false, :null => false
t.boolean "private", :default => false, :null => false
t.datetime "created_at" t.datetime "created_at"
t.datetime "updated_at" t.datetime "updated_at"
end end
......
...@@ -19195,3 +19195,1293 @@ Started GET "/images/default/loading.gif" for 127.0.0.1 at 2011-03-24 20:46:09 + ...@@ -19195,3 +19195,1293 @@ Started GET "/images/default/loading.gif" for 127.0.0.1 at 2011-03-24 20:46:09 +
User Load (152.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1 User Load (152.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/loading.gif? Redirected to http://www.touhou.cc/bbs/images/default/loading.gif?
Completed 302 Found in 543ms Completed 302 Found in 543ms
Started GET "/" for 127.0.0.1 at 2011-03-24 20:52:02 +0800
Processing by BoardsController#index as HTML
SQL (132.5ms) SHOW TABLES
User Load (157.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
DEPRECATION WARNING: RAILS_ROOT is deprecated. Please use ::Rails.root.to_s. (called from set_language at E:/zh99998/Documents/NetBeansProjects/Reliz/app/controllers/application_controller.rb:16)
Board Load (125.0ms) SELECT `boards`.* FROM `boards`
SQL (117.5ms) SELECT COUNT(*) FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0)
SQL (157.5ms) SELECT COUNT(*) FROM `posts` INNER JOIN `topics` ON `posts`.topic_id = `topics`.id WHERE ((`topics`.category_id = 1))
Topic Load (142.5ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0) ORDER BY topics.id DESC LIMIT 1
CACHE (0.0ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0) ORDER BY topics.id DESC LIMIT 1
Post Load (165.0ms) SELECT `posts`.* FROM `posts` INNER JOIN `topics` ON `posts`.topic_id = `topics`.id WHERE ((`topics`.category_id = 1)) ORDER BY posts.id DESC LIMIT 1
User Load (152.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`id` = 1) LIMIT 1
CACHE (0.0ms) SELECT `posts`.* FROM `posts` INNER JOIN `topics` ON `posts`.topic_id = `topics`.id WHERE ((`topics`.category_id = 1)) ORDER BY posts.id DESC LIMIT 1
CACHE (0.0ms) SELECT `posts`.* FROM `posts` INNER JOIN `topics` ON `posts`.topic_id = `topics`.id WHERE ((`topics`.category_id = 1)) ORDER BY posts.id DESC LIMIT 1
Rendered layouts/_header.html.erb (0.0ms)
Rendered layouts/_top.html.erb (2.5ms)
Rendered layouts/_footer.html.erb (0.0ms)
Rendered boards/index.html.erb within layouts/application (1525.0ms)
Completed 200 OK in 2573ms (Views: 800.0ms | ActiveRecord: 1150.0ms)
Started GET "/forumdata/cache/style_57_common.css?kNu" for 127.0.0.1 at 2011-03-24 20:52:19 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "anything"=>"forumdata/cache/style_57_common.css"}
User Load (130.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/style_57_common.css?kNu
Completed 302 Found in 475ms
Started GET "/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu" for 127.0.0.1 at 2011-03-24 20:52:20 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "anything"=>"forumdata/cache/scriptstyle_57_forumdisplay.css"}
User Load (455.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu
Completed 302 Found in 733ms
Started GET "/forumdata/cache/common.js?kNu" for 127.0.0.1 at 2011-03-24 20:52:21 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "anything"=>"forumdata/cache/common.js"}
User Load (292.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/common.js?kNu
Completed 302 Found in 755ms
Started GET "/forumdata/cache/scriptstyle_60_viewthread.css?FT7" for 127.0.0.1 at 2011-03-24 20:52:22 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"FT7"=>nil, "anything"=>"forumdata/cache/scriptstyle_60_viewthread.css"}
User Load (147.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_60_viewthread.css?FT7
Completed 302 Found in 450ms
Started GET "/LinkTalk-Application/app-host.js" for 127.0.0.1 at 2011-03-24 20:52:22 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"LinkTalk-Application/app-host.js"}
User Load (127.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/LinkTalk-Application/app-host.js?
Completed 302 Found in 430ms
Started GET "/templates/goodnight/images/mnsv.swf" for 127.0.0.1 at 2011-03-24 20:52:24 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"templates/goodnight/images/mnsv.swf"}
User Load (237.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/templates/goodnight/images/mnsv.swf?
Completed 302 Found in 548ms
Started GET "/images/default/collapsed_yes.gif" for 127.0.0.1 at 2011-03-24 20:52:24 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/collapsed_yes.gif"}
User Load (147.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/collapsed_yes.gif?
Completed 302 Found in 505ms
Started GET "/images/default/collapsed_no.gif" for 127.0.0.1 at 2011-03-24 20:52:25 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/collapsed_no.gif"}
User Load (397.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/collapsed_no.gif?
Completed 302 Found in 995ms
Started GET "/pm.php?checknewpm=0.9447858160906094&inajax=1&ajaxtarget=myprompt_check" for 127.0.0.1 at 2011-03-24 20:52:27 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"checknewpm"=>"0.9447858160906094", "inajax"=>"1", "ajaxtarget"=>"myprompt_check", "anything"=>"pm.php"}
User Load (147.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/pm.php?checknewpm=0.9447858160906094&inajax=1&ajaxtarget=myprompt_check
Completed 302 Found in 438ms
Started GET "/images/default/loading.gif" for 127.0.0.1 at 2011-03-24 20:52:28 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/loading.gif"}
User Load (182.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/loading.gif?
Completed 302 Found in 673ms
SQL (135.0ms) SHOW TABLES
SQL (127.5ms) SHOW TABLES
SQL (125.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
SQL (182.5ms) SHOW TABLES
SQL (120.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
SQL (185.0ms) SHOW TABLES
SQL (182.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
Migrating to CreateModerations (20101226125042)
SQL (712.5ms) DROP TABLE `moderations`
AREL (712.5ms) DELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20101226125042'
Migrating to CreateBoards (20101226072024)
SQL (202.5ms) DROP TABLE `boards`
AREL (202.5ms) DELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20101226072024'
Migrating to CreateNotices (20101226033857)
SQL (192.5ms) DROP TABLE `notices`
AREL (232.5ms) DELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20101226033857'
Migrating to CreatePms (20101226032430)
SQL (252.5ms) DROP TABLE `pms`
AREL (220.0ms) DELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20101226032430'
Migrating to CreateUsers (20101226031158)
SQL (217.5ms) DROP TABLE `users`
AREL (902.5ms) DELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20101226031158'
Migrating to CreateComments (20101226021619)
SQL (202.5ms) DROP TABLE `comments`
AREL (212.5ms) DELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20101226021619'
Migrating to CreatePosts (20101226015930)
SQL (207.5ms) DROP TABLE `posts`
AREL (212.5ms) DELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20101226015930'
SQL (182.5ms) SHOW TABLES
SQL (285.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
SQL (222.5ms) SHOW TABLES
SQL (217.5ms) describe `topics`
SQL (270.0ms) SHOW KEYS FROM `topics`
SQL (135.0ms) SHOW TABLES
SQL (187.5ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
SQL (135.0ms) SHOW KEYS FROM `schema_migrations`
SQL (347.5ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
SQL (147.5ms) SHOW TABLES
SQL (140.0ms) SHOW TABLES
SQL (137.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
Migrating to CreateTopics (20101226015150)
SQL (255.0ms) CREATE TABLE `topics` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `user_id` int(11) NOT NULL, `type_id` int(11), `category_id` int(11) NOT NULL, `category_type` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `displayorder` int(11) DEFAULT 0 NOT NULL, `views` int(11) DEFAULT 0 NOT NULL, `readperm` int(11) DEFAULT 1 NOT NULL, `locked` tinyint(1) DEFAULT 0 NOT NULL, `deleted` tinyint(1) DEFAULT 0 NOT NULL, `reverse` tinyint(1) DEFAULT 0 NOT NULL, `private` tinyint(1) DEFAULT 0 NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
SQL (142.5ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20101226015150')
Migrating to CreatePosts (20101226015930)
SQL (240.0ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `topic_id` int(11), `user_id` int(11), `content` text, `displayorder` int(11), `readperm` int(11), `private` tinyint(1), `anonymous` tinyint(1), `ubb` tinyint(1), `html` tinyint(1), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
SQL (147.5ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20101226015930')
Migrating to CreateComments (20101226021619)
SQL (222.5ms) CREATE TABLE `comments` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11), `user_id` int(11), `content` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
SQL (137.5ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20101226021619')
Migrating to CreateUsers (20101226031158)
SQL (487.5ms) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `nickname` varchar(255), `password` varchar(255), `email` varchar(255), `usergroup_id` int(11), `admingroup_id` int(11), `regip` varchar(255), `lastloginip` varchar(255), `readnum` int(11), `viewnum` int(11), `onlinetime` int(11), `credit` int(11), `credit1` int(11), `credit2` int(11), `credit3` int(11), `credit4` int(11), `credit5` int(11), `credit6` int(11), `credit7` int(11), `credit8` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
SQL (147.5ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20101226031158')
Migrating to CreatePms (20101226032430)
SQL (157.5ms) CREATE TABLE `pms` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `user_id` int(11), `from_user_id` int(11), `content` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
SQL (170.0ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20101226032430')
Migrating to CreateNotices (20101226033857)
SQL (230.0ms) CREATE TABLE `notices` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `user_id` int(11), `type` varchar(255), `assocaion_id` int(11), `assocaion_type` varchar(255), `from_user_id` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
SQL (180.0ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20101226033857')
Migrating to CreateBoards (20101226072024)
SQL (175.0ms) CREATE TABLE `boards` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `introduction` text, `notice` text, `logo` varchar(255), `banner` varchar(255), `readperm` int(11), `topicperm` int(11), `postperm` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
SQL (150.0ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20101226072024')
Migrating to CreateModerations (20101226125042)
SQL (235.0ms) CREATE TABLE `moderations` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `user_id` int(11), `association_id` int(11), `association_type` varchar(255), `action` varchar(255), `note` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
SQL (187.5ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20101226125042')
SQL (137.5ms) SHOW TABLES
SQL (185.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
SQL (142.5ms) SHOW TABLES
SQL (167.5ms) describe `boards`
SQL (127.5ms) SHOW KEYS FROM `boards`
SQL (120.0ms) describe `comments`
SQL (157.5ms) SHOW KEYS FROM `comments`
SQL (117.5ms) describe `moderations`
SQL (115.0ms) SHOW KEYS FROM `moderations`
SQL (122.5ms) describe `notices`
SQL (162.5ms) SHOW KEYS FROM `notices`
SQL (152.5ms) describe `pms`
SQL (120.0ms) SHOW KEYS FROM `pms`
SQL (143.0ms) describe `posts`
SQL (147.5ms) SHOW KEYS FROM `posts`
SQL (120.0ms) describe `topics`
SQL (135.0ms) SHOW KEYS FROM `topics`
SQL (122.5ms) describe `users`
SQL (140.0ms) SHOW KEYS FROM `users`
Started GET "/" for 127.0.0.1 at 2011-03-24 21:04:14 +0800
Processing by BoardsController#index as HTML
User Load (142.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Board Load (362.5ms) SELECT `boards`.* FROM `boards`
Rendered layouts/_header.html.erb (2.5ms)
Rendered layouts/_top.html.erb (2.5ms)
Rendered layouts/_footer.html.erb (0.0ms)
Rendered boards/index.html.erb within layouts/application (17.5ms)
Completed 200 OK in 865ms (Views: 35.0ms | ActiveRecord: 505.0ms)
Started GET "/forumdata/cache/style_57_common.css?kNu" for 127.0.0.1 at 2011-03-24 21:04:15 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "anything"=>"forumdata/cache/style_57_common.css"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/style_57_common.css?kNu
Completed 302 Found in 410ms
Started GET "/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu" for 127.0.0.1 at 2011-03-24 21:04:16 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "anything"=>"forumdata/cache/scriptstyle_57_forumdisplay.css"}
User Load (157.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu
Completed 302 Found in 465ms
Started GET "/forumdata/cache/scriptstyle_60_viewthread.css?FT7" for 127.0.0.1 at 2011-03-24 21:04:16 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"FT7"=>nil, "anything"=>"forumdata/cache/scriptstyle_60_viewthread.css"}
User Load (152.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_60_viewthread.css?FT7
Completed 302 Found in 450ms
Started GET "/forumdata/cache/common.js?kNu" for 127.0.0.1 at 2011-03-24 21:04:17 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "anything"=>"forumdata/cache/common.js"}
User Load (172.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/common.js?kNu
Completed 302 Found in 583ms
Started GET "/LinkTalk-Application/app-host.js" for 127.0.0.1 at 2011-03-24 21:04:18 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"LinkTalk-Application/app-host.js"}
User Load (205.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/LinkTalk-Application/app-host.js?
Completed 302 Found in 570ms
Started GET "/templates/goodnight/images/mnsv.swf" for 127.0.0.1 at 2011-03-24 21:04:19 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"templates/goodnight/images/mnsv.swf"}
User Load (210.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/templates/goodnight/images/mnsv.swf?
Completed 302 Found in 720ms
Started GET "/images/default/collapsed_yes.gif" for 127.0.0.1 at 2011-03-24 21:04:20 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/collapsed_yes.gif"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/collapsed_yes.gif?
Completed 302 Found in 430ms
Started GET "/images/default/collapsed_no.gif" for 127.0.0.1 at 2011-03-24 21:04:21 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/collapsed_no.gif"}
User Load (175.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/collapsed_no.gif?
Completed 302 Found in 473ms
Started GET "/pm.php?checknewpm=0.3548608798604259&inajax=1&ajaxtarget=myprompt_check" for 127.0.0.1 at 2011-03-24 21:04:22 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"checknewpm"=>"0.3548608798604259", "inajax"=>"1", "ajaxtarget"=>"myprompt_check", "anything"=>"pm.php"}
User Load (162.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/pm.php?checknewpm=0.3548608798604259&inajax=1&ajaxtarget=myprompt_check
Completed 302 Found in 438ms
Started GET "/images/default/loading.gif" for 127.0.0.1 at 2011-03-24 21:04:23 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/loading.gif"}
User Load (112.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/loading.gif?
Completed 302 Found in 485ms
Started GET "/index.php?gid=3" for 127.0.0.1 at 2011-03-24 21:04:23 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"gid"=>"3", "anything"=>"index.php"}
User Load (167.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/index.php?gid=3
Completed 302 Found in 468ms
Started GET "/" for 127.0.0.1 at 2011-03-24 21:07:43 +0800
Processing by BoardsController#index as HTML
User Load (127.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Board Load (147.5ms) SELECT `boards`.* FROM `boards`
SQL (127.5ms) SELECT COUNT(*) FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0)
SQL (127.5ms) SELECT COUNT(*) FROM `posts` INNER JOIN `topics` ON `posts`.topic_id = `topics`.id WHERE ((`topics`.category_id = 1))
Topic Load (135.0ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0) ORDER BY topics.id DESC LIMIT 1
Rendered layouts/_header.html.erb (0.0ms)
Rendered layouts/_top.html.erb (0.0ms)
Rendered layouts/_footer.html.erb (2.5ms)
Rendered boards/index.html.erb within layouts/application (1075.0ms)
Completed 200 OK in 1748ms (Views: 697.5ms | ActiveRecord: 665.0ms)
Started GET "/forumdata/cache/style_57_common.css?kNu" for 127.0.0.1 at 2011-03-24 21:07:45 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "anything"=>"forumdata/cache/style_57_common.css"}
User Load (165.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/style_57_common.css?kNu
Completed 302 Found in 438ms
Started GET "/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu" for 127.0.0.1 at 2011-03-24 21:07:45 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "anything"=>"forumdata/cache/scriptstyle_57_forumdisplay.css"}
User Load (122.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu
Completed 302 Found in 493ms
Started GET "/forumdata/cache/scriptstyle_60_viewthread.css?FT7" for 127.0.0.1 at 2011-03-24 21:07:46 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"FT7"=>nil, "anything"=>"forumdata/cache/scriptstyle_60_viewthread.css"}
User Load (192.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_60_viewthread.css?FT7
Completed 302 Found in 455ms
Started GET "/forumdata/cache/common.js?kNu" for 127.0.0.1 at 2011-03-24 21:07:47 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "anything"=>"forumdata/cache/common.js"}
User Load (132.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/common.js?kNu
Completed 302 Found in 425ms
Started GET "/LinkTalk-Application/app-host.js" for 127.0.0.1 at 2011-03-24 21:07:48 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"LinkTalk-Application/app-host.js"}
User Load (155.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/LinkTalk-Application/app-host.js?
Completed 302 Found in 468ms
Started GET "/templates/goodnight/images/mnsv.swf" for 127.0.0.1 at 2011-03-24 21:07:49 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"templates/goodnight/images/mnsv.swf"}
User Load (277.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/templates/goodnight/images/mnsv.swf?
Completed 302 Found in 735ms
Started GET "/images/default/collapsed_no.gif" for 127.0.0.1 at 2011-03-24 21:07:50 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/collapsed_no.gif"}
User Load (187.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/collapsed_no.gif?
Completed 302 Found in 668ms
Started GET "/images/default/collapsed_yes.gif" for 127.0.0.1 at 2011-03-24 21:07:51 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/collapsed_yes.gif"}
User Load (162.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/collapsed_yes.gif?
Completed 302 Found in 620ms
Started GET "/forum/1" for 127.0.0.1 at 2011-03-24 21:07:51 +0800
Processing by BoardsController#show as HTML
Parameters: {"id"=>"1"}
User Load (135.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Board Load (132.5ms) SELECT `boards`.* FROM `boards` WHERE (`boards`.`id` = 1) LIMIT 1
Topic Load (152.5ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0) ORDER BY displayorder, id LIMIT 20 OFFSET 0
SQL (140.0ms) SELECT COUNT(*) FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0)
SQL (175.0ms) SELECT COUNT(*) FROM `posts` INNER JOIN `topics` ON `posts`.topic_id = `topics`.id WHERE ((`topics`.category_id = 1))
DEPRECATION WARNING: <% %> style block helpers are deprecated. Please use <%= %>. (called from _app_views_boards_show_html_erb__1056697437_28153644__600621813 at E:/zh99998/Documents/NetBeansProjects/Reliz/app/views/boards/show.html.erb:101)
Rendered layouts/_header.html.erb (0.0ms)
Rendered layouts/_top.html.erb (0.0ms)
Rendered layouts/_footer.html.erb (0.0ms)
Rendered boards/show.html.erb within layouts/application (940.0ms)
Completed 200 OK in 2508ms (Views: 635.0ms | ActiveRecord: 1055.0ms)
Started GET "/forum/forumdata/cache/style_57_common.css?kNu" for 127.0.0.1 at 2011-03-24 21:07:54 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/style_57_common.css"}
User Load (200.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/style_57_common.css?kNu
Completed 302 Found in 820ms
Started GET "/forum/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu" for 127.0.0.1 at 2011-03-24 21:07:55 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/scriptstyle_57_forumdisplay.css"}
User Load (132.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu
Completed 302 Found in 460ms
Started GET "/forum/forumdata/cache/scriptstyle_60_viewthread.css?FT7" for 127.0.0.1 at 2011-03-24 21:07:56 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"FT7"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/scriptstyle_60_viewthread.css"}
User Load (117.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_60_viewthread.css?FT7
Completed 302 Found in 508ms
Started GET "/forum/forumdata/cache/common.js?kNu" for 127.0.0.1 at 2011-03-24 21:07:57 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/common.js"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/common.js?kNu
Completed 302 Found in 658ms
Started GET "/forum/LinkTalk-Application/app-host.js" for 127.0.0.1 at 2011-03-24 21:07:58 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"LinkTalk-Application/app-host.js"}
User Load (145.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/LinkTalk-Application/app-host.js?
Completed 302 Found in 773ms
Started GET "/forum/templates/goodnight/images/mnsv.swf" for 127.0.0.1 at 2011-03-24 21:07:59 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"templates/goodnight/images/mnsv.swf"}
User Load (232.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/templates/goodnight/images/mnsv.swf?
Completed 302 Found in 605ms
Started GET "/forum/images/default/collapsed_yes.gif" for 127.0.0.1 at 2011-03-24 21:08:00 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"images/default/collapsed_yes.gif"}
User Load (140.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/collapsed_yes.gif?
Completed 302 Found in 465ms
Started GET "/forum/pm.php?checknewpm=0.38919504018931816&inajax=1&ajaxtarget=myprompt_check" for 127.0.0.1 at 2011-03-24 21:08:01 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"checknewpm"=>"0.38919504018931816", "inajax"=>"1", "ajaxtarget"=>"myprompt_check", "something"=>"forum", "anything"=>"pm.php"}
User Load (125.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/pm.php?checknewpm=0.38919504018931816&inajax=1&ajaxtarget=myprompt_check
Completed 302 Found in 498ms
Started GET "/forum/images/default/loading.gif" for 127.0.0.1 at 2011-03-24 21:08:02 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"images/default/loading.gif"}
User Load (122.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/loading.gif?
Completed 302 Found in 543ms
Started POST "/topics" for 127.0.0.1 at 2011-03-24 21:08:17 +0800
Processing by TopicsController#create as HTML
Parameters: {"utf8"=>"鉁", "authenticity_token"=>"4hkZWFZs8e2H3fTI/iEguTaKbXS0h9iIQvYtQ9aW4vI=", "topic"=>{"name"=>"娴嬭瘯涓婚", "category_id"=>"1", "category_type"=>"board"}, "post"=>{"content"=>"娴嬩簡涓瘯"}, "commit"=>"newthread"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
SQL (102.5ms) BEGIN
SQL (110.0ms) describe `topics`
AREL (117.5ms) INSERT INTO `topics` (`user_id`, `type_id`, `category_id`, `category_type`, `name`, `displayorder`, `views`, `readperm`, `locked`, `deleted`, `reverse`, `private`, `created_at`, `updated_at`) VALUES (NULL, NULL, 1, 'board', '娴嬭瘯涓婚', 0, 0, 1, 0, 0, 0, 0, '2011-03-24 13:08:18', '2011-03-24 13:08:18')
Mysql::Error: Column 'user_id' cannot be null: INSERT INTO `topics` (`user_id`, `type_id`, `category_id`, `category_type`, `name`, `displayorder`, `views`, `readperm`, `locked`, `deleted`, `reverse`, `private`, `created_at`, `updated_at`) VALUES (NULL, NULL, 1, 'board', '娴嬭瘯涓婚', 0, 0, 1, 0, 0, 0, 0, '2011-03-24 13:08:18', '2011-03-24 13:08:18')
SQL (87.5ms) ROLLBACK
Completed in 1363ms
ActiveRecord::StatementInvalid (Mysql::Error: Column 'user_id' cannot be null: INSERT INTO `topics` (`user_id`, `type_id`, `category_id`, `category_type`, `name`, `displayorder`, `views`, `readperm`, `locked`, `deleted`, `reverse`, `private`, `created_at`, `updated_at`) VALUES (NULL, NULL, 1, 'board', '娴嬭瘯涓婚', 0, 0, 1, 0, 0, 0, 0, '2011-03-24 13:08:18', '2011-03-24 13:08:18')):
app/controllers/topics_controller.rb:95:in `block in create'
app/controllers/topics_controller.rb:94:in `create'
Rendered E:/RPG/Ruby/lib/ruby/gems/1.9.1/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.0ms)
Rendered E:/RPG/Ruby/lib/ruby/gems/1.9.1/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms)
Rendered E:/RPG/Ruby/lib/ruby/gems/1.9.1/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (42.5ms)
Started POST "/topics" for 127.0.0.1 at 2011-03-24 21:10:21 +0800
Processing by TopicsController#create as HTML
Parameters: {"utf8"=>"鉁", "authenticity_token"=>"4hkZWFZs8e2H3fTI/iEguTaKbXS0h9iIQvYtQ9aW4vI=", "topic"=>{"name"=>"娴嬭瘯涓婚", "category_id"=>"1", "category_type"=>"board"}, "post"=>{"content"=>"娴嬩簡涓瘯"}, "commit"=>"newthread"}
User Load (140.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
SQL (135.0ms) BEGIN
SQL (180.0ms) describe `topics`
AREL (132.5ms) INSERT INTO `topics` (`user_id`, `type_id`, `category_id`, `category_type`, `name`, `displayorder`, `views`, `readperm`, `locked`, `deleted`, `reverse`, `private`, `created_at`, `updated_at`) VALUES (1, NULL, 1, 'board', '娴嬭瘯涓婚', 0, 0, 1, 0, 0, 0, 0, '2011-03-24 13:10:22', '2011-03-24 13:10:22')
SQL (147.5ms) COMMIT
SQL (115.0ms) BEGIN
SQL (130.0ms) describe `posts`
AREL (147.5ms) INSERT INTO `posts` (`topic_id`, `user_id`, `content`, `displayorder`, `readperm`, `private`, `anonymous`, `ubb`, `html`, `created_at`, `updated_at`) VALUES (1, 1, '娴嬩簡涓瘯', 1, NULL, NULL, NULL, NULL, NULL, '2011-03-24 13:10:23', '2011-03-24 13:10:23')
SQL (165.0ms) COMMIT
Redirected to http://localhost:3000/topics/1
Completed 302 Found in 2278ms
Started GET "/topics/1" for 127.0.0.1 at 2011-03-24 21:10:23 +0800
Processing by TopicsController#show as HTML
Parameters: {"id"=>"1"}
User Load (530.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Topic Load (207.5ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.`id` = 1) LIMIT 1
Board Load (120.0ms) SELECT `boards`.* FROM `boards` WHERE (`boards`.`id` = 1) LIMIT 1
Post Load (125.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.`topic_id` = 1) ORDER BY displayorder LIMIT 10 OFFSET 0
User Load (652.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`id` = 1) LIMIT 1
Post Load (147.5ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY displayorder DESC LIMIT 1
DEPRECATION WARNING: <% %> style block helpers are deprecated. Please use <%= %>. (called from _app_views_topics_show_html_erb___892697952_38714364__600621813 at E:/zh99998/Documents/NetBeansProjects/Reliz/app/views/topics/show.html.erb:254)
Rendered layouts/_header.html.erb (0.0ms)
Rendered layouts/_top.html.erb (127.5ms)
Rendered layouts/_footer.html.erb (0.0ms)
Rendered topics/show.html.erb within layouts/application (1022.5ms)
Completed 200 OK in 3053ms (Views: 235.0ms | ActiveRecord: 1782.5ms)
Started GET "/topics/forumdata/cache/style_57_common.css?kNu" for 127.0.0.1 at 2011-03-24 21:10:27 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"topics", "anything"=>"forumdata/cache/style_57_common.css"}
User Load (125.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/style_57_common.css?kNu
Completed 302 Found in 415ms
Started GET "/topics/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu" for 127.0.0.1 at 2011-03-24 21:10:27 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"topics", "anything"=>"forumdata/cache/scriptstyle_57_forumdisplay.css"}
User Load (160.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu
Completed 302 Found in 438ms
Started GET "/topics/forumdata/cache/scriptstyle_60_viewthread.css?FT7" for 127.0.0.1 at 2011-03-24 21:10:28 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"FT7"=>nil, "something"=>"topics", "anything"=>"forumdata/cache/scriptstyle_60_viewthread.css"}
User Load (165.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_60_viewthread.css?FT7
Completed 302 Found in 455ms
Started GET "/topics/forumdata/cache/common.js?kNu" for 127.0.0.1 at 2011-03-24 21:10:28 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"topics", "anything"=>"forumdata/cache/common.js"}
User Load (150.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/common.js?kNu
Completed 302 Found in 450ms
Started GET "/topics/LinkTalk-Application/app-host.js" for 127.0.0.1 at 2011-03-24 21:10:29 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topics", "anything"=>"LinkTalk-Application/app-host.js"}
User Load (157.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/LinkTalk-Application/app-host.js?
Completed 302 Found in 485ms
Started GET "/topics/templates/goodnight/images/mnsv.swf" for 127.0.0.1 at 2011-03-24 21:10:30 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topics", "anything"=>"templates/goodnight/images/mnsv.swf"}
User Load (242.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/templates/goodnight/images/mnsv.swf?
Completed 302 Found in 663ms
Started GET "/topics/images/default/star_level2.gif" for 127.0.0.1 at 2011-03-24 21:10:31 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topics", "anything"=>"images/default/star_level2.gif"}
User Load (152.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/star_level2.gif?
Completed 302 Found in 520ms
Started GET "/topics/images/common/online_member.gif" for 127.0.0.1 at 2011-03-24 21:10:32 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topics", "anything"=>"images/common/online_member.gif"}
User Load (172.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/common/online_member.gif?
Completed 302 Found in 503ms
Started GET "/topics/pm.php?checknewpm=0.3639316836658322&inajax=1&ajaxtarget=myprompt_check" for 127.0.0.1 at 2011-03-24 21:11:13 +0800
Processing by TopicsController#show as
Parameters: {"checknewpm"=>"0.3639316836658322", "inajax"=>"1", "ajaxtarget"=>"myprompt_check", "id"=>"pm"}
User Load (140.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Topic Load (132.5ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.`id` = 0) LIMIT 1
Completed in 685ms
ActiveRecord::RecordNotFound (Couldn't find Topic with ID=pm):
app/controllers/topics_controller.rb:55:in `show'
Rendered E:/RPG/Ruby/lib/ruby/gems/1.9.1/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.0ms)
Rendered E:/RPG/Ruby/lib/ruby/gems/1.9.1/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.0ms)
Rendered E:/RPG/Ruby/lib/ruby/gems/1.9.1/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.5ms)
Started GET "/topics/images/default/loading.gif" for 127.0.0.1 at 2011-03-24 21:11:14 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topics", "anything"=>"images/default/loading.gif"}
User Load (155.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/loading.gif?
Completed 302 Found in 413ms
Started POST "/posts" for 127.0.0.1 at 2011-03-24 21:12:04 +0800
Processing by PostsController#create as HTML
Parameters: {"utf8"=>"鉁", "authenticity_token"=>"4hkZWFZs8e2H3fTI/iEguTaKbXS0h9iIQvYtQ9aW4vI=", "post"=>{"content"=>"鍥炲", "topic_id"=>"1"}, "commit"=>"reply"}
User Load (117.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Topic Load (155.0ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.`id` = 1) LIMIT 1
Post Load (140.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY displayorder DESC LIMIT 1
SQL (112.5ms) BEGIN
SQL (112.5ms) describe `posts`
AREL (162.5ms) INSERT INTO `posts` (`topic_id`, `user_id`, `content`, `displayorder`, `readperm`, `private`, `anonymous`, `ubb`, `html`, `created_at`, `updated_at`) VALUES (1, 1, '鍥炲', 2, NULL, NULL, NULL, NULL, NULL, '2011-03-24 13:12:05', '2011-03-24 13:12:05')
SQL (197.5ms) COMMIT
Redirected to http://localhost:3000/topics/1
Completed 302 Found in 1883ms
Started GET "/topics/1" for 127.0.0.1 at 2011-03-24 21:12:06 +0800
Processing by TopicsController#show as HTML
Parameters: {"id"=>"1"}
User Load (142.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Topic Load (130.0ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.`id` = 1) LIMIT 1
Board Load (135.0ms) SELECT `boards`.* FROM `boards` WHERE (`boards`.`id` = 1) LIMIT 1
Post Load (117.5ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.`topic_id` = 1) ORDER BY displayorder LIMIT 10 OFFSET 0
User Load (140.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`id` = 1) LIMIT 1
CACHE (0.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`id` = 1) LIMIT 1
Post Load (135.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY displayorder DESC LIMIT 1
DEPRECATION WARNING: <% %> style block helpers are deprecated. Please use <%= %>. (called from _app_views_topics_show_html_erb___892697952_39034488__600621813 at E:/zh99998/Documents/NetBeansProjects/Reliz/app/views/topics/show.html.erb:254)
Rendered layouts/_header.html.erb (0.0ms)
Rendered layouts/_top.html.erb (152.5ms)
Rendered layouts/_footer.html.erb (0.0ms)
Rendered topics/show.html.erb within layouts/application (492.5ms)
Completed 200 OK in 2170ms (Views: 252.5ms | ActiveRecord: 800.0ms)
Started GET "/topics/forumdata/cache/style_57_common.css?kNu" for 127.0.0.1 at 2011-03-24 21:12:08 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"topics", "anything"=>"forumdata/cache/style_57_common.css"}
User Load (112.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/style_57_common.css?kNu
Completed 302 Found in 353ms
Started GET "/topics/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu" for 127.0.0.1 at 2011-03-24 21:12:09 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"topics", "anything"=>"forumdata/cache/scriptstyle_57_forumdisplay.css"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu
Completed 302 Found in 433ms
Started GET "/topics/forumdata/cache/scriptstyle_60_viewthread.css?FT7" for 127.0.0.1 at 2011-03-24 21:12:10 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"FT7"=>nil, "something"=>"topics", "anything"=>"forumdata/cache/scriptstyle_60_viewthread.css"}
User Load (127.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_60_viewthread.css?FT7
Completed 302 Found in 453ms
Started GET "/topics/forumdata/cache/common.js?kNu" for 127.0.0.1 at 2011-03-24 21:12:10 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"topics", "anything"=>"forumdata/cache/common.js"}
User Load (202.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/common.js?kNu
Completed 302 Found in 518ms
Started GET "/topics/LinkTalk-Application/app-host.js" for 127.0.0.1 at 2011-03-24 21:12:11 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topics", "anything"=>"LinkTalk-Application/app-host.js"}
User Load (142.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/LinkTalk-Application/app-host.js?
Completed 302 Found in 418ms
Started GET "/topics/templates/goodnight/images/mnsv.swf" for 127.0.0.1 at 2011-03-24 21:12:12 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topics", "anything"=>"templates/goodnight/images/mnsv.swf"}
User Load (115.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/templates/goodnight/images/mnsv.swf?
Completed 302 Found in 465ms
Started GET "/topics/images/default/star_level2.gif" for 127.0.0.1 at 2011-03-24 21:12:13 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topics", "anything"=>"images/default/star_level2.gif"}
User Load (120.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/star_level2.gif?
Completed 302 Found in 410ms
Started GET "/topics/images/common/online_member.gif" for 127.0.0.1 at 2011-03-24 21:12:13 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topics", "anything"=>"images/common/online_member.gif"}
User Load (250.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/common/online_member.gif?
Completed 302 Found in 625ms
Started GET "/topics/pm.php?checknewpm=0.8713347520185795&inajax=1&ajaxtarget=myprompt_check" for 127.0.0.1 at 2011-03-24 21:12:55 +0800
Processing by TopicsController#show as
Parameters: {"checknewpm"=>"0.8713347520185795", "inajax"=>"1", "ajaxtarget"=>"myprompt_check", "id"=>"pm"}
User Load (122.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Topic Load (155.0ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.`id` = 0) LIMIT 1
Completed in 740ms
ActiveRecord::RecordNotFound (Couldn't find Topic with ID=pm):
app/controllers/topics_controller.rb:55:in `show'
Rendered E:/RPG/Ruby/lib/ruby/gems/1.9.1/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.0ms)
Rendered E:/RPG/Ruby/lib/ruby/gems/1.9.1/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.0ms)
Rendered E:/RPG/Ruby/lib/ruby/gems/1.9.1/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.5ms)
Started GET "/topics/images/default/loading.gif" for 127.0.0.1 at 2011-03-24 21:12:56 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topics", "anything"=>"images/default/loading.gif"}
User Load (120.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/loading.gif?
Completed 302 Found in 425ms
Started GET "/forum/1" for 127.0.0.1 at 2011-03-24 21:13:13 +0800
Processing by BoardsController#show as HTML
Parameters: {"id"=>"1"}
User Load (140.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Board Load (120.0ms) SELECT `boards`.* FROM `boards` WHERE (`boards`.`id` = 1) LIMIT 1
Topic Load (120.0ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0) ORDER BY displayorder, id LIMIT 20 OFFSET 0
SQL (125.0ms) SELECT COUNT(*) FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0)
SQL (132.5ms) SELECT COUNT(*) FROM `posts` INNER JOIN `topics` ON `posts`.topic_id = `topics`.id WHERE ((`topics`.category_id = 1))
User Load (280.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`id` = 1) LIMIT 1
SQL (150.0ms) SELECT COUNT(*) FROM `posts` WHERE (`posts`.topic_id = 1)
Post Load (137.5ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY posts.id DESC LIMIT 1
CACHE (0.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`id` = 1) LIMIT 1
CACHE (0.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY posts.id DESC LIMIT 1
CACHE (0.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY posts.id DESC LIMIT 1
CACHE (0.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY posts.id DESC LIMIT 1
DEPRECATION WARNING: <% %> style block helpers are deprecated. Please use <%= %>. (called from _app_views_boards_show_html_erb__1056697437_38596452__600621813 at E:/zh99998/Documents/NetBeansProjects/Reliz/app/views/boards/show.html.erb:101)
Rendered layouts/_header.html.erb (0.0ms)
Rendered layouts/_top.html.erb (0.0ms)
Rendered layouts/_footer.html.erb (0.0ms)
Rendered boards/show.html.erb within layouts/application (1192.5ms)
Completed 200 OK in 2263ms (Views: 377.5ms | ActiveRecord: 1482.5ms)
Started GET "/forum/forumdata/cache/style_57_common.css?kNu" for 127.0.0.1 at 2011-03-24 21:13:16 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/style_57_common.css"}
User Load (122.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/style_57_common.css?kNu
Completed 302 Found in 368ms
Started GET "/forum/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu" for 127.0.0.1 at 2011-03-24 21:13:16 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/scriptstyle_57_forumdisplay.css"}
User Load (145.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu
Completed 302 Found in 565ms
Started GET "/forum/forumdata/cache/scriptstyle_60_viewthread.css?FT7" for 127.0.0.1 at 2011-03-24 21:13:17 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"FT7"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/scriptstyle_60_viewthread.css"}
User Load (145.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_60_viewthread.css?FT7
Completed 302 Found in 440ms
Started GET "/forum/forumdata/cache/common.js?kNu" for 127.0.0.1 at 2011-03-24 21:13:18 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/common.js"}
User Load (132.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/common.js?kNu
Completed 302 Found in 373ms
Started GET "/forum/LinkTalk-Application/app-host.js" for 127.0.0.1 at 2011-03-24 21:13:18 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"LinkTalk-Application/app-host.js"}
User Load (145.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/LinkTalk-Application/app-host.js?
Completed 302 Found in 440ms
Started GET "/forum/templates/goodnight/images/mnsv.swf" for 127.0.0.1 at 2011-03-24 21:13:19 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"templates/goodnight/images/mnsv.swf"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/templates/goodnight/images/mnsv.swf?
Completed 302 Found in 438ms
Started GET "/forum/images/default/collapsed_yes.gif" for 127.0.0.1 at 2011-03-24 21:13:20 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"images/default/collapsed_yes.gif"}
User Load (122.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/collapsed_yes.gif?
Completed 302 Found in 660ms
Started GET "/images/default/folder_common.gif" for 127.0.0.1 at 2011-03-24 21:13:21 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/folder_common.gif"}
User Load (297.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/folder_common.gif?
Completed 302 Found in 608ms
Started GET "/forum/pm.php?checknewpm=0.4827834903193816&inajax=1&ajaxtarget=myprompt_check" for 127.0.0.1 at 2011-03-24 21:13:22 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"checknewpm"=>"0.4827834903193816", "inajax"=>"1", "ajaxtarget"=>"myprompt_check", "something"=>"forum", "anything"=>"pm.php"}
User Load (142.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/pm.php?checknewpm=0.4827834903193816&inajax=1&ajaxtarget=myprompt_check
Completed 302 Found in 420ms
Started GET "/forum/images/default/loading.gif" for 127.0.0.1 at 2011-03-24 21:13:23 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"images/default/loading.gif"}
User Load (152.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/loading.gif?
Completed 302 Found in 445ms
Started GET "/" for 127.0.0.1 at 2011-03-24 21:19:45 +0800
Processing by BoardsController#index as HTML
User Load (140.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Board Load (190.0ms) SELECT `boards`.* FROM `boards`
SQL (122.5ms) SELECT COUNT(*) FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0)
SQL (150.0ms) SELECT COUNT(*) FROM `posts` INNER JOIN `topics` ON `posts`.topic_id = `topics`.id WHERE ((`topics`.category_id = 1))
Topic Load (135.0ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0) ORDER BY topics.id DESC LIMIT 1
CACHE (0.0ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0) ORDER BY topics.id DESC LIMIT 1
Post Load (132.5ms) SELECT `posts`.* FROM `posts` INNER JOIN `topics` ON `posts`.topic_id = `topics`.id WHERE ((`topics`.category_id = 1)) ORDER BY posts.id DESC LIMIT 1
User Load (127.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`id` = 1) LIMIT 1
CACHE (0.0ms) SELECT `posts`.* FROM `posts` INNER JOIN `topics` ON `posts`.topic_id = `topics`.id WHERE ((`topics`.category_id = 1)) ORDER BY posts.id DESC LIMIT 1
CACHE (0.0ms) SELECT `posts`.* FROM `posts` INNER JOIN `topics` ON `posts`.topic_id = `topics`.id WHERE ((`topics`.category_id = 1)) ORDER BY posts.id DESC LIMIT 1
Rendered layouts/_header.html.erb (0.0ms)
Rendered layouts/_top.html.erb (0.0ms)
Rendered layouts/_footer.html.erb (2.5ms)
Rendered boards/index.html.erb within layouts/application (1360.0ms)
Completed 200 OK in 2030ms (Views: 705.0ms | ActiveRecord: 997.5ms)
Started GET "/forumdata/cache/style_57_common.css?kNu" for 127.0.0.1 at 2011-03-24 21:19:48 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "anything"=>"forumdata/cache/style_57_common.css"}
User Load (132.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/style_57_common.css?kNu
Completed 302 Found in 380ms
Started GET "/forumdata/cache/scriptstyle_60_viewthread.css?FT7" for 127.0.0.1 at 2011-03-24 21:19:48 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"FT7"=>nil, "anything"=>"forumdata/cache/scriptstyle_60_viewthread.css"}
User Load (180.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_60_viewthread.css?FT7
Completed 302 Found in 475ms
Started GET "/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu" for 127.0.0.1 at 2011-03-24 21:19:49 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "anything"=>"forumdata/cache/scriptstyle_57_forumdisplay.css"}
User Load (152.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu
Completed 302 Found in 425ms
Started GET "/forumdata/cache/common.js?kNu" for 127.0.0.1 at 2011-03-24 21:19:49 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "anything"=>"forumdata/cache/common.js"}
User Load (147.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/common.js?kNu
Completed 302 Found in 453ms
Started GET "/LinkTalk-Application/app-host.js" for 127.0.0.1 at 2011-03-24 21:19:50 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"LinkTalk-Application/app-host.js"}
User Load (135.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/LinkTalk-Application/app-host.js?
Completed 302 Found in 438ms
Started GET "/templates/goodnight/images/mnsv.swf" for 127.0.0.1 at 2011-03-24 21:19:51 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"templates/goodnight/images/mnsv.swf"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/templates/goodnight/images/mnsv.swf?
Completed 302 Found in 413ms
Started GET "/images/default/collapsed_no.gif" for 127.0.0.1 at 2011-03-24 21:19:52 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/collapsed_no.gif"}
User Load (135.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/collapsed_no.gif?
Completed 302 Found in 428ms
Started GET "/images/default/collapsed_yes.gif" for 127.0.0.1 at 2011-03-24 21:19:52 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/collapsed_yes.gif"}
User Load (140.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/collapsed_yes.gif?
Completed 302 Found in 428ms
Started GET "/pm.php?checknewpm=0.9622872055934062&inajax=1&ajaxtarget=myprompt_check" for 127.0.0.1 at 2011-03-24 21:19:53 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"checknewpm"=>"0.9622872055934062", "inajax"=>"1", "ajaxtarget"=>"myprompt_check", "anything"=>"pm.php"}
User Load (130.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/pm.php?checknewpm=0.9622872055934062&inajax=1&ajaxtarget=myprompt_check
Completed 302 Found in 390ms
Started GET "/topic/1" for 127.0.0.1 at 2011-03-24 21:19:54 +0800
Processing by TopicsController#show as HTML
Parameters: {"id"=>"1"}
User Load (135.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Topic Load (110.0ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.`id` = 1) LIMIT 1
Board Load (112.5ms) SELECT `boards`.* FROM `boards` WHERE (`boards`.`id` = 1) LIMIT 1
Post Load (110.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.`topic_id` = 1) ORDER BY displayorder LIMIT 10 OFFSET 0
User Load (150.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`id` = 1) LIMIT 1
CACHE (0.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`id` = 1) LIMIT 1
Post Load (130.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY displayorder DESC LIMIT 1
DEPRECATION WARNING: <% %> style block helpers are deprecated. Please use <%= %>. (called from _app_views_topics_show_html_erb___892697952_37436856__600621813 at E:/zh99998/Documents/NetBeansProjects/Reliz/app/views/topics/show.html.erb:254)
Rendered layouts/_header.html.erb (0.0ms)
Rendered layouts/_top.html.erb (157.5ms)
Rendered layouts/_footer.html.erb (0.0ms)
Rendered topics/show.html.erb within layouts/application (540.0ms)
Completed 200 OK in 2213ms (Views: 270.0ms | ActiveRecord: 1037.5ms)
Started GET "/images/default/loading.gif" for 127.0.0.1 at 2011-03-24 21:19:56 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/loading.gif"}
User Load (122.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/loading.gif?
Completed 302 Found in 418ms
Started GET "/topic/forumdata/cache/common.js?kNu" for 127.0.0.1 at 2011-03-24 21:19:57 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"topic", "anything"=>"forumdata/cache/common.js"}
User Load (105.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/common.js?kNu
Completed 302 Found in 365ms
Started GET "/topic/forumdata/cache/style_57_common.css?kNu" for 127.0.0.1 at 2011-03-24 21:19:57 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"topic", "anything"=>"forumdata/cache/style_57_common.css"}
User Load (135.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/style_57_common.css?kNu
Completed 302 Found in 378ms
Started GET "/topic/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu" for 127.0.0.1 at 2011-03-24 21:19:58 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"topic", "anything"=>"forumdata/cache/scriptstyle_57_forumdisplay.css"}
User Load (172.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu
Completed 302 Found in 443ms
Started GET "/topic/forumdata/cache/scriptstyle_60_viewthread.css?FT7" for 127.0.0.1 at 2011-03-24 21:19:59 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"FT7"=>nil, "something"=>"topic", "anything"=>"forumdata/cache/scriptstyle_60_viewthread.css"}
User Load (112.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_60_viewthread.css?FT7
Completed 302 Found in 415ms
Started GET "/topic/LinkTalk-Application/app-host.js" for 127.0.0.1 at 2011-03-24 21:20:00 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topic", "anything"=>"LinkTalk-Application/app-host.js"}
User Load (135.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/LinkTalk-Application/app-host.js?
Completed 302 Found in 423ms
Started GET "/topic/templates/goodnight/images/mnsv.swf" for 127.0.0.1 at 2011-03-24 21:20:01 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topic", "anything"=>"templates/goodnight/images/mnsv.swf"}
User Load (142.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/templates/goodnight/images/mnsv.swf?
Completed 302 Found in 400ms
Started GET "/topic/images/default/star_level2.gif" for 127.0.0.1 at 2011-03-24 21:20:01 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topic", "anything"=>"images/default/star_level2.gif"}
User Load (150.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/star_level2.gif?
Completed 302 Found in 438ms
Started GET "/topic/images/common/online_member.gif" for 127.0.0.1 at 2011-03-24 21:20:02 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topic", "anything"=>"images/common/online_member.gif"}
User Load (140.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/common/online_member.gif?
Completed 302 Found in 438ms
Started GET "/forum/1" for 127.0.0.1 at 2011-03-24 21:20:03 +0800
Processing by BoardsController#show as HTML
Parameters: {"id"=>"1"}
User Load (260.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Board Load (255.0ms) SELECT `boards`.* FROM `boards` WHERE (`boards`.`id` = 1) LIMIT 1
Topic Load (137.5ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0) ORDER BY displayorder, id LIMIT 20 OFFSET 0
SQL (112.5ms) SELECT COUNT(*) FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0)
SQL (145.0ms) SELECT COUNT(*) FROM `posts` INNER JOIN `topics` ON `posts`.topic_id = `topics`.id WHERE ((`topics`.category_id = 1))
User Load (167.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`id` = 1) LIMIT 1
SQL (150.0ms) SELECT COUNT(*) FROM `posts` WHERE (`posts`.topic_id = 1)
Post Load (120.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY posts.id DESC LIMIT 1
CACHE (0.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`id` = 1) LIMIT 1
CACHE (0.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY posts.id DESC LIMIT 1
CACHE (0.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY posts.id DESC LIMIT 1
CACHE (0.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY posts.id DESC LIMIT 1
DEPRECATION WARNING: <% %> style block helpers are deprecated. Please use <%= %>. (called from _app_views_boards_show_html_erb__1056697437_39998976__600621813 at E:/zh99998/Documents/NetBeansProjects/Reliz/app/views/boards/show.html.erb:107)
Rendered layouts/_header.html.erb (0.0ms)
Rendered layouts/_top.html.erb (0.0ms)
Rendered layouts/_footer.html.erb (2.5ms)
Rendered boards/show.html.erb within layouts/application (1077.5ms)
Completed 200 OK in 2455ms (Views: 392.5ms | ActiveRecord: 1905.0ms)
Started GET "/forum/forumdata/cache/style_57_common.css?kNu" for 127.0.0.1 at 2011-03-24 21:20:06 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/style_57_common.css"}
User Load (142.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/style_57_common.css?kNu
Completed 302 Found in 430ms
Started GET "/forum/forumdata/cache/scriptstyle_60_viewthread.css?FT7" for 127.0.0.1 at 2011-03-24 21:20:06 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"FT7"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/scriptstyle_60_viewthread.css"}
User Load (135.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_60_viewthread.css?FT7
Completed 302 Found in 395ms
Started GET "/forum/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu" for 127.0.0.1 at 2011-03-24 21:20:07 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/scriptstyle_57_forumdisplay.css"}
User Load (117.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu
Completed 302 Found in 438ms
Started GET "/forum/forumdata/cache/common.js?kNu" for 127.0.0.1 at 2011-03-24 21:20:07 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/common.js"}
User Load (132.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/common.js?kNu
Completed 302 Found in 435ms
Started GET "/forum/LinkTalk-Application/app-host.js" for 127.0.0.1 at 2011-03-24 21:20:08 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"LinkTalk-Application/app-host.js"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/LinkTalk-Application/app-host.js?
Completed 302 Found in 410ms
Started GET "/forum/templates/goodnight/images/mnsv.swf" for 127.0.0.1 at 2011-03-24 21:20:09 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"templates/goodnight/images/mnsv.swf"}
User Load (170.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/templates/goodnight/images/mnsv.swf?
Completed 302 Found in 425ms
Started GET "/images/default/folder_common.gif" for 127.0.0.1 at 2011-03-24 21:20:10 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/folder_common.gif"}
User Load (107.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/folder_common.gif?
Completed 302 Found in 378ms
Started GET "/forum/images/default/collapsed_yes.gif" for 127.0.0.1 at 2011-03-24 21:20:10 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"images/default/collapsed_yes.gif"}
User Load (182.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/collapsed_yes.gif?
Completed 302 Found in 463ms
Started GET "/forum/pm.php?checknewpm=0.5834952830430788&inajax=1&ajaxtarget=myprompt_check" for 127.0.0.1 at 2011-03-24 21:20:12 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"checknewpm"=>"0.5834952830430788", "inajax"=>"1", "ajaxtarget"=>"myprompt_check", "something"=>"forum", "anything"=>"pm.php"}
User Load (130.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/pm.php?checknewpm=0.5834952830430788&inajax=1&ajaxtarget=myprompt_check
Completed 302 Found in 535ms
Started GET "/forum/images/default/loading.gif" for 127.0.0.1 at 2011-03-24 21:20:12 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"images/default/loading.gif"}
User Load (132.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/loading.gif?
Completed 302 Found in 423ms
Started GET "/topic/control?id=1&locked=1" for 127.0.0.1 at 2011-03-24 21:20:13 +0800
Processing by TopicsController#control as HTML
Parameters: {"id"=>"1", "locked"=>"1"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
AREL (145.0ms) UPDATE `topics` SET `locked` = '1' WHERE (`topics`.`id` IN (1))
Rendered layouts/_header.html.erb (0.0ms)
Rendered layouts/_top.html.erb (2.5ms)
Rendered layouts/_footer.html.erb (0.0ms)
Rendered topics/control.html.erb within layouts/application (12.5ms)
Completed 200 OK in 738ms (Views: 22.5ms | ActiveRecord: 770.0ms)
Started GET "/topic/forumdata/cache/style_57_common.css?kNu" for 127.0.0.1 at 2011-03-24 21:20:14 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"topic", "anything"=>"forumdata/cache/style_57_common.css"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/style_57_common.css?kNu
Completed 302 Found in 403ms
Started GET "/topic/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu" for 127.0.0.1 at 2011-03-24 21:20:14 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"topic", "anything"=>"forumdata/cache/scriptstyle_57_forumdisplay.css"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu
Completed 302 Found in 410ms
Started GET "/topic/forumdata/cache/scriptstyle_60_viewthread.css?FT7" for 127.0.0.1 at 2011-03-24 21:20:15 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"FT7"=>nil, "something"=>"topic", "anything"=>"forumdata/cache/scriptstyle_60_viewthread.css"}
User Load (160.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_60_viewthread.css?FT7
Completed 302 Found in 428ms
Started GET "/topic/forumdata/cache/common.js?kNu" for 127.0.0.1 at 2011-03-24 21:20:16 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"topic", "anything"=>"forumdata/cache/common.js"}
User Load (145.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/common.js?kNu
Completed 302 Found in 445ms
Started GET "/topic/LinkTalk-Application/app-host.js" for 127.0.0.1 at 2011-03-24 21:20:16 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topic", "anything"=>"LinkTalk-Application/app-host.js"}
User Load (122.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/LinkTalk-Application/app-host.js?
Completed 302 Found in 400ms
Started GET "/topic/templates/goodnight/images/mnsv.swf" for 127.0.0.1 at 2011-03-24 21:20:17 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topic", "anything"=>"templates/goodnight/images/mnsv.swf"}
User Load (135.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/templates/goodnight/images/mnsv.swf?
Completed 302 Found in 425ms
Started GET "/topic/pm.php?checknewpm=0.8296104996046088&inajax=1&ajaxtarget=myprompt_check" for 127.0.0.1 at 2011-03-24 21:20:18 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"checknewpm"=>"0.8296104996046088", "inajax"=>"1", "ajaxtarget"=>"myprompt_check", "something"=>"topic", "anything"=>"pm.php"}
User Load (122.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/pm.php?checknewpm=0.8296104996046088&inajax=1&ajaxtarget=myprompt_check
Completed 302 Found in 428ms
Started GET "/topic/images/default/loading.gif" for 127.0.0.1 at 2011-03-24 21:20:19 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"topic", "anything"=>"images/default/loading.gif"}
User Load (117.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/loading.gif?
Completed 302 Found in 405ms
Started GET "/forum/pm.php?checknewpm=0.45089631392251894&inajax=1&ajaxtarget=myprompt_check" for 127.0.0.1 at 2011-03-24 21:21:17 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"checknewpm"=>"0.45089631392251894", "inajax"=>"1", "ajaxtarget"=>"myprompt_check", "something"=>"forum", "anything"=>"pm.php"}
User Load (117.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/pm.php?checknewpm=0.45089631392251894&inajax=1&ajaxtarget=myprompt_check
Completed 302 Found in 418ms
Started GET "/forum/images/default/loading.gif" for 127.0.0.1 at 2011-03-24 21:21:18 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"images/default/loading.gif"}
User Load (140.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/loading.gif?
Completed 302 Found in 440ms
Started GET "/forum/1" for 127.0.0.1 at 2011-03-24 21:21:19 +0800
Processing by BoardsController#show as HTML
Parameters: {"id"=>"1"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Board Load (135.0ms) SELECT `boards`.* FROM `boards` WHERE (`boards`.`id` = 1) LIMIT 1
Topic Load (132.5ms) SELECT `topics`.* FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0) ORDER BY displayorder, id LIMIT 20 OFFSET 0
SQL (160.0ms) SELECT COUNT(*) FROM `topics` WHERE (`topics`.category_id = 1) AND (`topics`.`deleted` = 0)
SQL (107.5ms) SELECT COUNT(*) FROM `posts` INNER JOIN `topics` ON `posts`.topic_id = `topics`.id WHERE ((`topics`.category_id = 1))
User Load (180.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`id` = 1) LIMIT 1
SQL (127.5ms) SELECT COUNT(*) FROM `posts` WHERE (`posts`.topic_id = 1)
Post Load (132.5ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY posts.id DESC LIMIT 1
CACHE (0.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`id` = 1) LIMIT 1
CACHE (0.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY posts.id DESC LIMIT 1
CACHE (0.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY posts.id DESC LIMIT 1
CACHE (0.0ms) SELECT `posts`.* FROM `posts` WHERE (`posts`.topic_id = 1) ORDER BY posts.id DESC LIMIT 1
DEPRECATION WARNING: <% %> style block helpers are deprecated. Please use <%= %>. (called from _app_views_boards_show_html_erb__1056697437_40390428__600621813 at E:/zh99998/Documents/NetBeansProjects/Reliz/app/views/boards/show.html.erb:107)
Rendered layouts/_header.html.erb (0.0ms)
Rendered layouts/_top.html.erb (2.5ms)
Rendered layouts/_footer.html.erb (0.0ms)
Rendered boards/show.html.erb within layouts/application (1062.5ms)
Completed 200 OK in 2250ms (Views: 365.0ms | ActiveRecord: 1112.5ms)
Started GET "/forum/forumdata/cache/style_57_common.css?kNu" for 127.0.0.1 at 2011-03-24 21:21:21 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/style_57_common.css"}
User Load (120.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/style_57_common.css?kNu
Completed 302 Found in 368ms
Started GET "/forum/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu" for 127.0.0.1 at 2011-03-24 21:21:22 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/scriptstyle_57_forumdisplay.css"}
User Load (135.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_57_forumdisplay.css?kNu
Completed 302 Found in 433ms
Started GET "/forum/forumdata/cache/scriptstyle_60_viewthread.css?FT7" for 127.0.0.1 at 2011-03-24 21:21:22 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"FT7"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/scriptstyle_60_viewthread.css"}
User Load (150.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/scriptstyle_60_viewthread.css?FT7
Completed 302 Found in 460ms
Started GET "/forum/forumdata/cache/common.js?kNu" for 127.0.0.1 at 2011-03-24 21:21:23 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"kNu"=>nil, "something"=>"forum", "anything"=>"forumdata/cache/common.js"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/forumdata/cache/common.js?kNu
Completed 302 Found in 480ms
Started GET "/forum/LinkTalk-Application/app-host.js" for 127.0.0.1 at 2011-03-24 21:21:24 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"LinkTalk-Application/app-host.js"}
User Load (142.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/LinkTalk-Application/app-host.js?
Completed 302 Found in 433ms
Started GET "/forum/templates/goodnight/images/mnsv.swf" for 127.0.0.1 at 2011-03-24 21:21:25 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"templates/goodnight/images/mnsv.swf"}
User Load (177.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/templates/goodnight/images/mnsv.swf?
Completed 302 Found in 663ms
Started GET "/images/default/folder_common.gif" for 127.0.0.1 at 2011-03-24 21:21:26 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"anything"=>"images/default/folder_common.gif"}
User Load (190.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/folder_common.gif?
Completed 302 Found in 468ms
Started GET "/forum/images/default/collapsed_yes.gif" for 127.0.0.1 at 2011-03-24 21:21:26 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"images/default/collapsed_yes.gif"}
User Load (135.0ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/collapsed_yes.gif?
Completed 302 Found in 423ms
Started GET "/forum/pm.php?checknewpm=0.011541230716046846&inajax=1&ajaxtarget=myprompt_check" for 127.0.0.1 at 2011-03-24 21:21:27 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"checknewpm"=>"0.011541230716046846", "inajax"=>"1", "ajaxtarget"=>"myprompt_check", "something"=>"forum", "anything"=>"pm.php"}
User Load (132.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/pm.php?checknewpm=0.011541230716046846&inajax=1&ajaxtarget=myprompt_check
Completed 302 Found in 408ms
Started GET "/forum/images/default/loading.gif" for 127.0.0.1 at 2011-03-24 21:21:28 +0800
Processing by ApplicationController#redirect_to_thc as HTML
Parameters: {"something"=>"forum", "anything"=>"images/default/loading.gif"}
User Load (137.5ms) SELECT `users`.* FROM `users` WHERE (`users`.`name` = 'admin') LIMIT 1
Redirected to http://www.touhou.cc/bbs/images/default/loading.gif?
Completed 302 Found in 415ms
5552 7788
\ No newline at end of file \ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment