ak2196-forem 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +6 -0
- data/Gemfile +17 -0
- data/Gemfile.lock +135 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +34 -0
- data/ak2196-forem.gemspec +27 -0
- data/app/assets/images/forem/.gitkeep +0 -0
- data/app/assets/javascripts/forem/application.js +9 -0
- data/app/assets/javascripts/forem/posts.js +2 -0
- data/app/assets/javascripts/forem/topics.js +2 -0
- data/app/assets/stylesheets/forem/application.css +7 -0
- data/app/assets/stylesheets/forem/posts.css +4 -0
- data/app/assets/stylesheets/forem/topics.css +4 -0
- data/app/controllers/forem/application_controller.rb +11 -0
- data/app/controllers/forem/posts_controller.rb +22 -0
- data/app/controllers/forem/topics_controller.rb +23 -0
- data/app/helpers/forem/application_helper.rb +4 -0
- data/app/helpers/forem/posts_helper.rb +4 -0
- data/app/helpers/forem/topics_helper.rb +4 -0
- data/app/models/forem/post.rb +6 -0
- data/app/models/forem/topic.rb +14 -0
- data/app/views/forem/posts/_form.html.erb +4 -0
- data/app/views/forem/posts/_post.html.erb +6 -0
- data/app/views/forem/posts/new.html.erb +5 -0
- data/app/views/forem/topics/_form.html.erb +11 -0
- data/app/views/forem/topics/index.html.erb +26 -0
- data/app/views/forem/topics/new.html.erb +2 -0
- data/app/views/forem/topics/show.html.erb +6 -0
- data/bin/autospec +16 -0
- data/bin/erubis +16 -0
- data/bin/htmldiff +16 -0
- data/bin/ldiff +16 -0
- data/bin/nokogiri +16 -0
- data/bin/rackup +16 -0
- data/bin/rails +16 -0
- data/bin/rake +16 -0
- data/bin/rake2thor +16 -0
- data/bin/rdoc +16 -0
- data/bin/ri +16 -0
- data/bin/rspec +16 -0
- data/bin/thor +16 -0
- data/bin/tilt +16 -0
- data/bin/tt +16 -0
- data/config/routes.rb +6 -0
- data/db/migrate/20111124070524_create_forem_topics.rb +10 -0
- data/db/migrate/20111124195355_create_forem_posts.rb +11 -0
- data/db/migrate/20111124230339_add_posts_count_to_forem_topics.rb +5 -0
- data/lib/forem/engine.rb +18 -0
- data/lib/forem/version.rb +3 -0
- data/lib/forem.rb +6 -0
- data/lib/tasks/forem_tasks.rake +4 -0
- data/script/rails +6 -0
- data/spec/configuration_spec.rb +12 -0
- data/spec/controllers/forem/posts_controller_spec.rb +5 -0
- data/spec/controllers/forem/topics_controller_spec.rb +5 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +9 -0
- data/spec/dummy/app/assets/stylesheets/application.css +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/controllers/fake_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.gitkeep +0 -0
- data/spec/dummy/app/models/.gitkeep +0 -0
- data/spec/dummy/app/models/user.rb +5 -0
- data/spec/dummy/app/views/layouts/application.html.erb +18 -0
- data/spec/dummy/config/application.rb +45 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +20 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +30 -0
- data/spec/dummy/config/environments/production.rb +60 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/forem.rb +1 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +5 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20111128220059_create_users.rb +9 -0
- data/spec/dummy/db/schema.rb +38 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/assets/.gitkeep +0 -0
- data/spec/dummy/log/.gitkeep +0 -0
- data/spec/dummy/log/development.log +42 -0
- data/spec/dummy/log/test.log +4321 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/test/fixtures/users.yml +7 -0
- data/spec/dummy/test/unit/user_test.rb +7 -0
- data/spec/helpers/forem/posts_helper_spec.rb +15 -0
- data/spec/helpers/forem/topics_helper_spec.rb +15 -0
- data/spec/integration/posts_spec.rb +60 -0
- data/spec/integration/topics_spec.rb +47 -0
- data/spec/models/forem/post_spec.rb +5 -0
- data/spec/models/forem/topic_spec.rb +5 -0
- data/spec/spec_helper.rb +14 -0
- data/spec/support/capybara.rb +8 -0
- data/spec/support/dummy_login.rb +19 -0
- data/spec/support/load_routes.rb +6 -0
- metadata +205 -0
|
@@ -0,0 +1,4321 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 01:59:59 -0500
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 02:01:43 -0500
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 02:02:59 -0500
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 02:04:09 -0500
|
|
13
|
+
Processing by Forem::TopicsController#index as HTML
|
|
14
|
+
Completed 500 Internal Server Error in 5ms
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 02:33:49 -0500
|
|
18
|
+
Processing by Forem::TopicsController#index as HTML
|
|
19
|
+
Completed 500 Internal Server Error in 1ms
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 02:38:17 -0500
|
|
23
|
+
Processing by Forem::TopicsController#index as HTML
|
|
24
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
25
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (16.7ms)
|
|
26
|
+
Completed 200 OK in 180ms (Views: 178.4ms | ActiveRecord: 0.2ms)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 02:38:18 -0500
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 15:58:57 -0500
|
|
33
|
+
Processing by Forem::TopicsController#index as HTML
|
|
34
|
+
[1m[36mForem::Topic Load (12.6ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
35
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (21.5ms)
|
|
36
|
+
Completed 200 OK in 133ms (Views: 80.3ms | ActiveRecord: 12.6ms)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 15:58:58 -0500
|
|
40
|
+
Processing by Forem::TopicsController#new as HTML
|
|
41
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
|
|
42
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.8ms)
|
|
43
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (16.9ms)
|
|
44
|
+
Completed 200 OK in 212ms (Views: 50.1ms | ActiveRecord: 0.5ms)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 15:58:58 -0500
|
|
48
|
+
Processing by Forem::TopicsController#create as HTML
|
|
49
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
50
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51
|
+
[1m[36mSQL (106.2ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 20:58:58 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 20:58:58 UTC +00:00], ["user_id", nil]]
|
|
52
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 20:58:58 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 20:58:58 UTC +00:00], ["user_id", nil]]
|
|
53
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
54
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
55
|
+
Completed 302 Found in 112ms
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 15:58:58 -0500
|
|
59
|
+
Processing by Forem::TopicsController#show as HTML
|
|
60
|
+
Parameters: {"id"=>"1"}
|
|
61
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
62
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
63
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (28.8ms)
|
|
64
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (31.3ms)
|
|
65
|
+
Completed 200 OK in 35ms (Views: 33.1ms | ActiveRecord: 0.3ms)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:00:28 -0500
|
|
69
|
+
Processing by Forem::TopicsController#index as HTML
|
|
70
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
71
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (13.0ms)
|
|
72
|
+
Completed 200 OK in 97ms (Views: 56.6ms | ActiveRecord: 0.2ms)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:00:28 -0500
|
|
76
|
+
Processing by Forem::TopicsController#new as HTML
|
|
77
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.6ms)
|
|
78
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.6ms)
|
|
79
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (15.5ms)
|
|
80
|
+
Completed 200 OK in 136ms (Views: 17.3ms | ActiveRecord: 0.5ms)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:00:29 -0500
|
|
84
|
+
Processing by Forem::TopicsController#create as HTML
|
|
85
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
86
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
87
|
+
[1m[36mSQL (17.6ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 21:00:29 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:00:29 UTC +00:00], ["user_id", nil]]
|
|
88
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:00:29 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:00:29 UTC +00:00], ["user_id", nil]]
|
|
89
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
90
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
91
|
+
Completed 302 Found in 24ms
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:00:29 -0500
|
|
95
|
+
Processing by Forem::TopicsController#show as HTML
|
|
96
|
+
Parameters: {"id"=>"1"}
|
|
97
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
98
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
99
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (24.9ms)
|
|
100
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (27.5ms)
|
|
101
|
+
Completed 200 OK in 32ms (Views: 29.1ms | ActiveRecord: 0.4ms)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:08:09 -0500
|
|
105
|
+
Processing by Forem::TopicsController#index as HTML
|
|
106
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
107
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (12.9ms)
|
|
108
|
+
Completed 200 OK in 93ms (Views: 55.4ms | ActiveRecord: 0.2ms)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:08:09 -0500
|
|
112
|
+
Processing by Forem::TopicsController#new as HTML
|
|
113
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
114
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
|
|
115
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (14.5ms)
|
|
116
|
+
Completed 200 OK in 134ms (Views: 16.3ms | ActiveRecord: 0.6ms)
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:08:09 -0500
|
|
120
|
+
Processing by Forem::TopicsController#create as HTML
|
|
121
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
122
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
123
|
+
[1m[36mSQL (14.8ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 21:08:09 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:08:09 UTC +00:00], ["user_id", nil]]
|
|
124
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:08:09 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:08:09 UTC +00:00], ["user_id", nil]]
|
|
125
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
126
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
127
|
+
Completed 302 Found in 20ms
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:08:09 -0500
|
|
131
|
+
Processing by Forem::TopicsController#show as HTML
|
|
132
|
+
Parameters: {"id"=>"1"}
|
|
133
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
134
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
135
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.8ms)
|
|
136
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (29.4ms)
|
|
137
|
+
Completed 200 OK in 33ms (Views: 30.9ms | ActiveRecord: 0.4ms)
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:15:19 -0500
|
|
141
|
+
Processing by Forem::TopicsController#index as HTML
|
|
142
|
+
[1m[36mForem::Topic Load (36.9ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
143
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (12.4ms)
|
|
144
|
+
Completed 200 OK in 93ms (Views: 54.4ms | ActiveRecord: 36.9ms)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:15:20 -0500
|
|
148
|
+
Processing by Forem::TopicsController#new as HTML
|
|
149
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
|
|
150
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.7ms)
|
|
151
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (13.9ms)
|
|
152
|
+
Completed 200 OK in 135ms (Views: 15.7ms | ActiveRecord: 0.5ms)
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:15:20 -0500
|
|
156
|
+
Processing by Forem::TopicsController#create as HTML
|
|
157
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
158
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
159
|
+
[1m[36mSQL (71.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 21:15:20 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:15:20 UTC +00:00], ["user_id", nil]]
|
|
160
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:15:20 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:15:20 UTC +00:00], ["user_id", nil]]
|
|
161
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
162
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
163
|
+
Completed 302 Found in 77ms
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:15:20 -0500
|
|
167
|
+
Processing by Forem::TopicsController#show as HTML
|
|
168
|
+
Parameters: {"id"=>"1"}
|
|
169
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
170
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
171
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.4ms)
|
|
172
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (28.3ms)
|
|
173
|
+
Completed 200 OK in 33ms (Views: 30.0ms | ActiveRecord: 0.4ms)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:15:55 -0500
|
|
177
|
+
Processing by Forem::TopicsController#index as HTML
|
|
178
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
179
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (15.4ms)
|
|
180
|
+
Completed 200 OK in 93ms (Views: 55.4ms | ActiveRecord: 0.2ms)
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:15:55 -0500
|
|
184
|
+
Processing by Forem::TopicsController#new as HTML
|
|
185
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
186
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.8ms)
|
|
187
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (14.5ms)
|
|
188
|
+
Completed 200 OK in 138ms (Views: 16.3ms | ActiveRecord: 0.6ms)
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:15:55 -0500
|
|
192
|
+
Processing by Forem::TopicsController#create as HTML
|
|
193
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
194
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
195
|
+
[1m[36mSQL (14.5ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 21:15:55 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:15:55 UTC +00:00], ["user_id", nil]]
|
|
196
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:15:55 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:15:55 UTC +00:00], ["user_id", nil]]
|
|
197
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
198
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
199
|
+
Completed 302 Found in 20ms
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:15:55 -0500
|
|
203
|
+
Processing by Forem::TopicsController#show as HTML
|
|
204
|
+
Parameters: {"id"=>"1"}
|
|
205
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
206
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
207
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.8ms)
|
|
208
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (29.3ms)
|
|
209
|
+
Completed 200 OK in 33ms (Views: 30.9ms | ActiveRecord: 0.4ms)
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:17:22 -0500
|
|
213
|
+
Processing by Forem::TopicsController#index as HTML
|
|
214
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
215
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (13.0ms)
|
|
216
|
+
Completed 200 OK in 91ms (Views: 53.7ms | ActiveRecord: 0.2ms)
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:17:23 -0500
|
|
220
|
+
Processing by Forem::TopicsController#new as HTML
|
|
221
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
222
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.1ms)
|
|
223
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (15.2ms)
|
|
224
|
+
Completed 200 OK in 135ms (Views: 17.0ms | ActiveRecord: 0.5ms)
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:17:23 -0500
|
|
228
|
+
Processing by Forem::TopicsController#create as HTML
|
|
229
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
230
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
231
|
+
[1m[36mSQL (15.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 21:17:23 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:17:23 UTC +00:00], ["user_id", nil]]
|
|
232
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:17:23 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:17:23 UTC +00:00], ["user_id", nil]]
|
|
233
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
234
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
235
|
+
Completed 302 Found in 21ms
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:17:23 -0500
|
|
239
|
+
Processing by Forem::TopicsController#show as HTML
|
|
240
|
+
Parameters: {"id"=>"1"}
|
|
241
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
242
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
243
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (24.1ms)
|
|
244
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (26.6ms)
|
|
245
|
+
Completed 200 OK in 31ms (Views: 28.2ms | ActiveRecord: 0.4ms)
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:17:52 -0500
|
|
249
|
+
Processing by Forem::TopicsController#index as HTML
|
|
250
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
251
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (13.7ms)
|
|
252
|
+
Completed 200 OK in 96ms (Views: 58.8ms | ActiveRecord: 0.2ms)
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:17:52 -0500
|
|
256
|
+
Processing by Forem::TopicsController#new as HTML
|
|
257
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
258
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.8ms)
|
|
259
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (14.6ms)
|
|
260
|
+
Completed 200 OK in 135ms (Views: 16.6ms | ActiveRecord: 0.5ms)
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:17:52 -0500
|
|
264
|
+
Processing by Forem::TopicsController#create as HTML
|
|
265
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
266
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
267
|
+
[1m[36mSQL (16.1ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 21:17:52 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:17:52 UTC +00:00], ["user_id", nil]]
|
|
268
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:17:52 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:17:52 UTC +00:00], ["user_id", nil]]
|
|
269
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
270
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
271
|
+
Completed 302 Found in 22ms
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:17:52 -0500
|
|
275
|
+
Processing by Forem::TopicsController#show as HTML
|
|
276
|
+
Parameters: {"id"=>"1"}
|
|
277
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
278
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
279
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (24.7ms)
|
|
280
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (27.2ms)
|
|
281
|
+
Completed 200 OK in 31ms (Views: 28.8ms | ActiveRecord: 0.4ms)
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:18:41 -0500
|
|
285
|
+
Processing by Forem::TopicsController#index as HTML
|
|
286
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
287
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (12.4ms)
|
|
288
|
+
Completed 200 OK in 89ms (Views: 52.4ms | ActiveRecord: 0.2ms)
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:18:41 -0500
|
|
292
|
+
Processing by Forem::TopicsController#new as HTML
|
|
293
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
294
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
|
|
295
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (14.4ms)
|
|
296
|
+
Completed 200 OK in 132ms (Views: 16.2ms | ActiveRecord: 0.5ms)
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:18:42 -0500
|
|
300
|
+
Processing by Forem::TopicsController#create as HTML
|
|
301
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
302
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
303
|
+
[1m[36mSQL (14.3ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 21:18:42 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:18:42 UTC +00:00], ["user_id", nil]]
|
|
304
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:18:42 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:18:42 UTC +00:00], ["user_id", nil]]
|
|
305
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
306
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
307
|
+
Completed 302 Found in 20ms
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:18:42 -0500
|
|
311
|
+
Processing by Forem::TopicsController#show as HTML
|
|
312
|
+
Parameters: {"id"=>"1"}
|
|
313
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
314
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
315
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.2ms)
|
|
316
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (28.6ms)
|
|
317
|
+
Completed 200 OK in 33ms (Views: 30.2ms | ActiveRecord: 0.3ms)
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:39:09 -0500
|
|
321
|
+
Processing by Forem::TopicsController#index as HTML
|
|
322
|
+
[1m[36mForem::Topic Load (45.9ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
323
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (19.1ms)
|
|
324
|
+
Completed 200 OK in 110ms (Views: 62.8ms | ActiveRecord: 45.9ms)
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:39:10 -0500
|
|
328
|
+
Processing by Forem::TopicsController#new as HTML
|
|
329
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.6ms)
|
|
330
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (7.1ms)
|
|
331
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (19.4ms)
|
|
332
|
+
Completed 200 OK in 211ms (Views: 52.5ms | ActiveRecord: 0.6ms)
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:39:10 -0500
|
|
336
|
+
Processing by Forem::TopicsController#create as HTML
|
|
337
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
338
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
339
|
+
[1m[36mSQL (25.8ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 21:39:10 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:39:10 UTC +00:00], ["user_id", nil]]
|
|
340
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:39:10 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:39:10 UTC +00:00], ["user_id", nil]]
|
|
341
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
342
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
343
|
+
Completed 302 Found in 36ms
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:39:10 -0500
|
|
347
|
+
Processing by Forem::TopicsController#show as HTML
|
|
348
|
+
Parameters: {"id"=>"1"}
|
|
349
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
350
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
351
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (31.9ms)
|
|
352
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (35.0ms)
|
|
353
|
+
Completed 200 OK in 50ms (Views: 46.1ms | ActiveRecord: 0.5ms)
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:58:14 -0500
|
|
357
|
+
Processing by Forem::TopicsController#index as HTML
|
|
358
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
359
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.9ms)
|
|
360
|
+
Completed 200 OK in 105ms (Views: 64.4ms | ActiveRecord: 0.2ms)
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:58:14 -0500
|
|
364
|
+
Processing by Forem::TopicsController#new as HTML
|
|
365
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
366
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
|
|
367
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (24.9ms)
|
|
368
|
+
Completed 200 OK in 206ms (Views: 58.0ms | ActiveRecord: 0.5ms)
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:58:15 -0500
|
|
372
|
+
Processing by Forem::TopicsController#create as HTML
|
|
373
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
374
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
375
|
+
[1m[36mSQL (19.5ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 21:58:15 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:58:15 UTC +00:00], ["user_id", nil]]
|
|
376
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:58:15 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:58:15 UTC +00:00], ["user_id", nil]]
|
|
377
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
378
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
379
|
+
Completed 302 Found in 26ms
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:58:15 -0500
|
|
383
|
+
Processing by Forem::TopicsController#show as HTML
|
|
384
|
+
Parameters: {"id"=>"1"}
|
|
385
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
386
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
387
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.9ms)
|
|
388
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (29.5ms)
|
|
389
|
+
Completed 200 OK in 64ms (Views: 60.6ms | ActiveRecord: 0.5ms)
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:58:48 -0500
|
|
393
|
+
Processing by Forem::TopicsController#index as HTML
|
|
394
|
+
[1m[36mForem::Topic Load (0.3ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
395
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (14.4ms)
|
|
396
|
+
Completed 200 OK in 95ms (Views: 56.5ms | ActiveRecord: 0.3ms)
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:58:48 -0500
|
|
400
|
+
Processing by Forem::TopicsController#new as HTML
|
|
401
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
402
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.5ms)
|
|
403
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (14.6ms)
|
|
404
|
+
Completed 200 OK in 131ms (Views: 16.3ms | ActiveRecord: 0.6ms)
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:58:48 -0500
|
|
408
|
+
Processing by Forem::TopicsController#create as HTML
|
|
409
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
410
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
411
|
+
[1m[36mSQL (14.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 21:58:48 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:58:48 UTC +00:00], ["user_id", nil]]
|
|
412
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:58:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:58:49 UTC +00:00], ["user_id", nil]]
|
|
413
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
414
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
415
|
+
Completed 302 Found in 21ms
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:58:49 -0500
|
|
419
|
+
Processing by Forem::TopicsController#show as HTML
|
|
420
|
+
Parameters: {"id"=>"1"}
|
|
421
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
422
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
423
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.1ms)
|
|
424
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (27.6ms)
|
|
425
|
+
Completed 200 OK in 32ms (Views: 29.6ms | ActiveRecord: 0.4ms)
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:59:19 -0500
|
|
429
|
+
Processing by Forem::TopicsController#index as HTML
|
|
430
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
431
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.3ms)
|
|
432
|
+
Completed 200 OK in 65ms (Views: 63.6ms | ActiveRecord: 0.2ms)
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:59:19 -0500
|
|
436
|
+
Processing by Forem::TopicsController#new as HTML
|
|
437
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
|
|
438
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (6.1ms)
|
|
439
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (17.5ms)
|
|
440
|
+
Completed 200 OK in 145ms (Views: 19.6ms | ActiveRecord: 0.5ms)
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:59:19 -0500
|
|
444
|
+
Processing by Forem::TopicsController#create as HTML
|
|
445
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
446
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
447
|
+
[1m[36mSQL (18.2ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 21:59:19 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:59:19 UTC +00:00], ["user_id", nil]]
|
|
448
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:59:19 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:59:19 UTC +00:00], ["user_id", nil]]
|
|
449
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
450
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
451
|
+
Completed 302 Found in 26ms
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:59:19 -0500
|
|
455
|
+
Processing by Forem::TopicsController#show as HTML
|
|
456
|
+
Parameters: {"id"=>"1"}
|
|
457
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
458
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
459
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (33.1ms)
|
|
460
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (37.1ms)
|
|
461
|
+
Completed 200 OK in 42ms (Views: 39.5ms | ActiveRecord: 0.5ms)
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 17:01:03 -0500
|
|
465
|
+
Processing by Forem::TopicsController#index as HTML
|
|
466
|
+
[1m[36mForem::Topic Load (44.3ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
467
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (15.8ms)
|
|
468
|
+
Completed 200 OK in 111ms (Views: 64.8ms | ActiveRecord: 44.3ms)
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 17:01:04 -0500
|
|
472
|
+
Processing by Forem::TopicsController#new as HTML
|
|
473
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.3ms)
|
|
474
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.6ms)
|
|
475
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (16.8ms)
|
|
476
|
+
Completed 200 OK in 141ms (Views: 18.8ms | ActiveRecord: 0.6ms)
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 17:01:04 -0500
|
|
480
|
+
Processing by Forem::TopicsController#create as HTML
|
|
481
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
482
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
483
|
+
[1m[36mSQL (15.6ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 22:01:04 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 22:01:04 UTC +00:00], ["user_id", nil]]
|
|
484
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 22:01:04 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 22:01:04 UTC +00:00], ["user_id", nil]]
|
|
485
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
486
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
487
|
+
Completed 302 Found in 23ms
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 17:01:04 -0500
|
|
491
|
+
Processing by Forem::TopicsController#show as HTML
|
|
492
|
+
Parameters: {"id"=>"1"}
|
|
493
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
494
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
495
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (27.2ms)
|
|
496
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (29.8ms)
|
|
497
|
+
Completed 200 OK in 34ms (Views: 31.5ms | ActiveRecord: 0.4ms)
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 17:06:41 -0500
|
|
501
|
+
Processing by Forem::TopicsController#index as HTML
|
|
502
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
503
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.3ms)
|
|
504
|
+
Completed 200 OK in 93ms (Views: 55.8ms | ActiveRecord: 0.2ms)
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 17:06:41 -0500
|
|
508
|
+
Processing by Forem::TopicsController#new as HTML
|
|
509
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
510
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
|
|
511
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (16.7ms)
|
|
512
|
+
Completed 200 OK in 135ms (Views: 18.5ms | ActiveRecord: 0.5ms)
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 17:06:41 -0500
|
|
516
|
+
Processing by Forem::TopicsController#create as HTML
|
|
517
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
518
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
519
|
+
[1m[36mSQL (16.6ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 22:06:41 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 22:06:41 UTC +00:00], ["user_id", nil]]
|
|
520
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 22:06:41 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 22:06:41 UTC +00:00], ["user_id", nil]]
|
|
521
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
522
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
523
|
+
Completed 302 Found in 24ms
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 17:06:41 -0500
|
|
527
|
+
Processing by Forem::TopicsController#show as HTML
|
|
528
|
+
Parameters: {"id"=>"1"}
|
|
529
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
530
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
531
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (93.7ms)
|
|
532
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (96.1ms)
|
|
533
|
+
Completed 500 Internal Server Error in 100ms
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 17:08:30 -0500
|
|
537
|
+
Processing by Forem::TopicsController#index as HTML
|
|
538
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
539
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.3ms)
|
|
540
|
+
Completed 200 OK in 91ms (Views: 53.8ms | ActiveRecord: 0.2ms)
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 17:08:30 -0500
|
|
544
|
+
Processing by Forem::TopicsController#new as HTML
|
|
545
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
546
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
|
|
547
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (17.4ms)
|
|
548
|
+
Completed 200 OK in 139ms (Views: 19.3ms | ActiveRecord: 0.5ms)
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 17:08:30 -0500
|
|
552
|
+
Processing by Forem::TopicsController#create as HTML
|
|
553
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
554
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
555
|
+
[1m[36mSQL (14.9ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 22:08:30 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 22:08:30 UTC +00:00], ["user_id", nil]]
|
|
556
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 22:08:30 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 22:08:30 UTC +00:00], ["user_id", nil]]
|
|
557
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
558
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
559
|
+
Completed 302 Found in 21ms
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 17:08:30 -0500
|
|
563
|
+
Processing by Forem::TopicsController#show as HTML
|
|
564
|
+
Parameters: {"id"=>"1"}
|
|
565
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
566
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
567
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (24.6ms)
|
|
568
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (27.1ms)
|
|
569
|
+
Completed 200 OK in 32ms (Views: 29.1ms | ActiveRecord: 0.4ms)
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 17:11:55 -0500
|
|
573
|
+
Processing by Forem::TopicsController#index as HTML
|
|
574
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
575
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.6ms)
|
|
576
|
+
Completed 200 OK in 92ms (Views: 54.2ms | ActiveRecord: 0.2ms)
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 17:11:56 -0500
|
|
580
|
+
Processing by Forem::TopicsController#new as HTML
|
|
581
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
582
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.5ms)
|
|
583
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (15.0ms)
|
|
584
|
+
Completed 200 OK in 134ms (Views: 17.1ms | ActiveRecord: 0.5ms)
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 17:11:56 -0500
|
|
588
|
+
Processing by Forem::TopicsController#create as HTML
|
|
589
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
590
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
591
|
+
[1m[36mSQL (14.5ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 22:11:56 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 22:11:56 UTC +00:00], ["user_id", nil]]
|
|
592
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 22:11:56 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 22:11:56 UTC +00:00], ["user_id", nil]]
|
|
593
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
594
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
595
|
+
Completed 302 Found in 22ms
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 17:11:56 -0500
|
|
599
|
+
Processing by Forem::TopicsController#show as HTML
|
|
600
|
+
Parameters: {"id"=>"1"}
|
|
601
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
602
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
603
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (24.8ms)
|
|
604
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (27.6ms)
|
|
605
|
+
Completed 200 OK in 32ms (Views: 29.4ms | ActiveRecord: 0.4ms)
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 18:53:53 -0500
|
|
609
|
+
Processing by Forem::TopicsController#index as HTML
|
|
610
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
611
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.1ms)
|
|
612
|
+
Completed 200 OK in 126ms (Views: 124.6ms | ActiveRecord: 0.2ms)
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 18:53:54 -0500
|
|
616
|
+
Processing by Forem::TopicsController#new as HTML
|
|
617
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.5ms)
|
|
618
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (14.9ms)
|
|
619
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (31.8ms)
|
|
620
|
+
Completed 200 OK in 181ms (Views: 60.7ms | ActiveRecord: 0.6ms)
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 18:53:54 -0500
|
|
624
|
+
Processing by Forem::TopicsController#create as HTML
|
|
625
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
626
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
627
|
+
[1m[36mSQL (71.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Thu, 24 Nov 2011 23:53:54 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 23:53:54 UTC +00:00], ["user_id", nil]]
|
|
628
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 23:53:54 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 23:53:54 UTC +00:00], ["user_id", nil]]
|
|
629
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
630
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
631
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
632
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
633
|
+
Completed 302 Found in 124ms
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 18:53:54 -0500
|
|
637
|
+
Processing by Forem::TopicsController#show as HTML
|
|
638
|
+
Parameters: {"id"=>"1"}
|
|
639
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
640
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
641
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (59.8ms)
|
|
642
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (72.9ms)
|
|
643
|
+
Completed 200 OK in 109ms (Views: 107.0ms | ActiveRecord: 0.5ms)
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-26 01:42:56 -0500
|
|
647
|
+
Processing by Forem::TopicsController#index as HTML
|
|
648
|
+
[1m[36mForem::Topic Load (12.9ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
649
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (15.3ms)
|
|
650
|
+
Completed 200 OK in 121ms (Views: 106.7ms | ActiveRecord: 12.9ms)
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-26 01:42:57 -0500
|
|
654
|
+
Processing by Forem::TopicsController#new as HTML
|
|
655
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.5ms)
|
|
656
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (14.9ms)
|
|
657
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (40.2ms)
|
|
658
|
+
Completed 200 OK in 255ms (Views: 69.1ms | ActiveRecord: 0.6ms)
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-26 01:42:57 -0500
|
|
662
|
+
Processing by Forem::TopicsController#create as HTML
|
|
663
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
664
|
+
[1m[35m (29.0ms)[0m SAVEPOINT active_record_1
|
|
665
|
+
[1m[36mSQL (117.3ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sat, 26 Nov 2011 06:42:57 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Sat, 26 Nov 2011 06:42:57 UTC +00:00], ["user_id", nil]]
|
|
666
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 26 Nov 2011 06:42:57 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Sat, 26 Nov 2011 06:42:57 UTC +00:00], ["user_id", nil]]
|
|
667
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
668
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
669
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
670
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
671
|
+
Completed 302 Found in 201ms
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-26 01:42:57 -0500
|
|
675
|
+
Processing by Forem::TopicsController#show as HTML
|
|
676
|
+
Parameters: {"id"=>"1"}
|
|
677
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
678
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
679
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (59.1ms)
|
|
680
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (72.1ms)
|
|
681
|
+
Completed 200 OK in 105ms (Views: 103.3ms | ActiveRecord: 0.4ms)
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-27 02:10:46 -0500
|
|
685
|
+
Processing by Forem::TopicsController#index as HTML
|
|
686
|
+
[1m[36mForem::Topic Load (7.8ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
687
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (40.0ms)
|
|
688
|
+
Completed 200 OK in 131ms (Views: 121.8ms | ActiveRecord: 7.8ms)
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-27 02:10:47 -0500
|
|
692
|
+
Processing by Forem::TopicsController#new as HTML
|
|
693
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.3ms)
|
|
694
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (14.8ms)
|
|
695
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (31.6ms)
|
|
696
|
+
Completed 200 OK in 197ms (Views: 59.7ms | ActiveRecord: 0.5ms)
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-27 02:10:47 -0500
|
|
700
|
+
Processing by Forem::TopicsController#create as HTML
|
|
701
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
702
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
703
|
+
[1m[36mSQL (100.9ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 27 Nov 2011 07:10:47 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Sun, 27 Nov 2011 07:10:47 UTC +00:00], ["user_id", nil]]
|
|
704
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 27 Nov 2011 07:10:47 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Sun, 27 Nov 2011 07:10:47 UTC +00:00], ["user_id", nil]]
|
|
705
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
706
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
707
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
708
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
709
|
+
Completed 302 Found in 153ms
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-27 02:10:47 -0500
|
|
713
|
+
Processing by Forem::TopicsController#show as HTML
|
|
714
|
+
Parameters: {"id"=>"1"}
|
|
715
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
716
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
717
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (57.8ms)
|
|
718
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (70.6ms)
|
|
719
|
+
Completed 200 OK in 107ms (Views: 105.2ms | ActiveRecord: 0.5ms)
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-27 02:19:38 -0500
|
|
723
|
+
Processing by Forem::TopicsController#index as HTML
|
|
724
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
725
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.6ms)
|
|
726
|
+
Completed 200 OK in 55ms (Views: 53.4ms | ActiveRecord: 0.2ms)
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-27 02:19:38 -0500
|
|
730
|
+
Processing by Forem::TopicsController#new as HTML
|
|
731
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
732
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
|
|
733
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (14.2ms)
|
|
734
|
+
Completed 200 OK in 133ms (Views: 16.5ms | ActiveRecord: 0.5ms)
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-27 02:19:38 -0500
|
|
738
|
+
Processing by Forem::TopicsController#create as HTML
|
|
739
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
740
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
741
|
+
[1m[36mSQL (15.6ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 27 Nov 2011 07:19:38 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Sun, 27 Nov 2011 07:19:38 UTC +00:00], ["user_id", nil]]
|
|
742
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 27 Nov 2011 07:19:38 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Sun, 27 Nov 2011 07:19:38 UTC +00:00], ["user_id", nil]]
|
|
743
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
744
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
745
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
746
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
747
|
+
Completed 302 Found in 50ms
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-27 02:19:38 -0500
|
|
751
|
+
Processing by Forem::TopicsController#show as HTML
|
|
752
|
+
Parameters: {"id"=>"1"}
|
|
753
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
754
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
755
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (24.4ms)
|
|
756
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (26.5ms)
|
|
757
|
+
Completed 200 OK in 30ms (Views: 28.4ms | ActiveRecord: 0.3ms)
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-27 02:36:32 -0500
|
|
761
|
+
Processing by Forem::TopicsController#index as HTML
|
|
762
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
763
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.8ms)
|
|
764
|
+
Completed 200 OK in 115ms (Views: 113.7ms | ActiveRecord: 0.2ms)
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-27 02:36:33 -0500
|
|
768
|
+
Processing by Forem::TopicsController#new as HTML
|
|
769
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.3ms)
|
|
770
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (36.3ms)
|
|
771
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (46.2ms)
|
|
772
|
+
Completed 200 OK in 181ms (Views: 48.1ms | ActiveRecord: 0.5ms)
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-27 02:36:33 -0500
|
|
776
|
+
Processing by Forem::TopicsController#create as HTML
|
|
777
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
778
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
779
|
+
[1m[36mSQL (27.3ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 27 Nov 2011 07:36:33 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Sun, 27 Nov 2011 07:36:33 UTC +00:00], ["user_id", nil]]
|
|
780
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 27 Nov 2011 07:36:33 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Sun, 27 Nov 2011 07:36:33 UTC +00:00], ["user_id", nil]]
|
|
781
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
782
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
783
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
784
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
785
|
+
Completed 302 Found in 70ms
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-27 02:36:33 -0500
|
|
789
|
+
Processing by Forem::TopicsController#show as HTML
|
|
790
|
+
Parameters: {"id"=>"1"}
|
|
791
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
792
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
793
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.1ms)
|
|
794
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (59.2ms)
|
|
795
|
+
Completed 200 OK in 63ms (Views: 61.0ms | ActiveRecord: 0.4ms)
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-27 02:36:49 -0500
|
|
799
|
+
Processing by Forem::TopicsController#index as HTML
|
|
800
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
801
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (15.6ms)
|
|
802
|
+
Completed 200 OK in 64ms (Views: 63.0ms | ActiveRecord: 0.2ms)
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-27 02:36:49 -0500
|
|
806
|
+
Processing by Forem::TopicsController#new as HTML
|
|
807
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
|
|
808
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.4ms)
|
|
809
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (18.0ms)
|
|
810
|
+
Completed 200 OK in 153ms (Views: 20.0ms | ActiveRecord: 0.6ms)
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-27 02:36:49 -0500
|
|
814
|
+
Processing by Forem::TopicsController#create as HTML
|
|
815
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
816
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
817
|
+
[1m[36mSQL (17.9ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 27 Nov 2011 07:36:49 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Sun, 27 Nov 2011 07:36:49 UTC +00:00], ["user_id", nil]]
|
|
818
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 27 Nov 2011 07:36:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Sun, 27 Nov 2011 07:36:49 UTC +00:00], ["user_id", nil]]
|
|
819
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
820
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
821
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
822
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
823
|
+
Completed 302 Found in 59ms
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-27 02:36:49 -0500
|
|
827
|
+
Processing by Forem::TopicsController#show as HTML
|
|
828
|
+
Parameters: {"id"=>"1"}
|
|
829
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
830
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
831
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (29.1ms)
|
|
832
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (31.5ms)
|
|
833
|
+
Completed 200 OK in 35ms (Views: 33.6ms | ActiveRecord: 0.4ms)
|
|
834
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
835
|
+
[1m[35mSQL (114.3ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 07:50:59 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 07:50:59 UTC +00:00], ["user_id", nil]]
|
|
836
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Mon, 28 Nov 2011 07:50:59 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 07:50:59 UTC +00:00], ["user_id", nil]]
|
|
837
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
838
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
839
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 02:51:00 -0500
|
|
843
|
+
Processing by Forem::TopicsController#index as HTML
|
|
844
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
845
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (16.1ms)
|
|
846
|
+
Completed 200 OK in 102ms (Views: 101.2ms | ActiveRecord: 0.1ms)
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 02:51:00 -0500
|
|
850
|
+
Processing by Forem::TopicsController#show as HTML
|
|
851
|
+
Parameters: {"id"=>"1"}
|
|
852
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
853
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
854
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (28.3ms)
|
|
855
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (47.9ms)
|
|
856
|
+
Completed 200 OK in 78ms (Views: 76.1ms | ActiveRecord: 0.4ms)
|
|
857
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
858
|
+
[1m[35mSQL (15.9ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 07:52:35 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 07:52:35 UTC +00:00], ["user_id", nil]]
|
|
859
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Mon, 28 Nov 2011 07:52:35 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 07:52:35 UTC +00:00], ["user_id", nil]]
|
|
860
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
861
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
862
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 02:52:36 -0500
|
|
866
|
+
Processing by Forem::TopicsController#index as HTML
|
|
867
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
868
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.1ms)
|
|
869
|
+
Completed 200 OK in 58ms (Views: 56.3ms | ActiveRecord: 0.2ms)
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 02:52:36 -0500
|
|
873
|
+
Processing by Forem::TopicsController#show as HTML
|
|
874
|
+
Parameters: {"id"=>"1"}
|
|
875
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
876
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
877
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (147.5ms)
|
|
878
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (158.9ms)
|
|
879
|
+
Completed 500 Internal Server Error in 162ms
|
|
880
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
881
|
+
[1m[35mSQL (16.4ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 07:53:52 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 07:53:52 UTC +00:00], ["user_id", nil]]
|
|
882
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Mon, 28 Nov 2011 07:53:52 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 07:53:52 UTC +00:00], ["user_id", nil]]
|
|
883
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
884
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
885
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 02:53:52 -0500
|
|
889
|
+
Processing by Forem::TopicsController#index as HTML
|
|
890
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
891
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (55.6ms)
|
|
892
|
+
Completed 200 OK in 102ms (Views: 100.8ms | ActiveRecord: 0.2ms)
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 02:53:52 -0500
|
|
896
|
+
Processing by Forem::TopicsController#show as HTML
|
|
897
|
+
Parameters: {"id"=>"1"}
|
|
898
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
899
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
900
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (28.1ms)
|
|
901
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (42.1ms)
|
|
902
|
+
Completed 200 OK in 45ms (Views: 43.7ms | ActiveRecord: 0.4ms)
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-28 02:53:52 -0500
|
|
906
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
907
|
+
[1m[35mSQL (105.9ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:33:43 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 08:33:43 UTC +00:00], ["user_id", nil]]
|
|
908
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Mon, 28 Nov 2011 08:33:43 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:33:43 UTC +00:00], ["user_id", nil]]
|
|
909
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
910
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
911
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 03:33:44 -0500
|
|
915
|
+
Processing by Forem::TopicsController#index as HTML
|
|
916
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
917
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.9ms)
|
|
918
|
+
Completed 200 OK in 100ms (Views: 99.1ms | ActiveRecord: 0.1ms)
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:33:44 -0500
|
|
922
|
+
Processing by Forem::TopicsController#show as HTML
|
|
923
|
+
Parameters: {"id"=>"1"}
|
|
924
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
925
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
926
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (27.0ms)
|
|
927
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (52.2ms)
|
|
928
|
+
Completed 200 OK in 94ms (Views: 92.2ms | ActiveRecord: 0.5ms)
|
|
929
|
+
|
|
930
|
+
|
|
931
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-28 03:33:44 -0500
|
|
932
|
+
Processing by Forem::PostsController#new as HTML
|
|
933
|
+
Parameters: {"topic_id"=>"1"}
|
|
934
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
935
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
|
|
936
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (28.4ms)
|
|
937
|
+
Completed 200 OK in 35ms (Views: 33.2ms | ActiveRecord: 0.1ms)
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-28 03:33:45 -0500
|
|
941
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
942
|
+
[1m[35mSQL (16.9ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:37:05 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 08:37:05 UTC +00:00], ["user_id", nil]]
|
|
943
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Mon, 28 Nov 2011 08:37:05 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:37:05 UTC +00:00], ["user_id", nil]]
|
|
944
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
945
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
946
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
947
|
+
|
|
948
|
+
|
|
949
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 03:37:05 -0500
|
|
950
|
+
Processing by Forem::TopicsController#index as HTML
|
|
951
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
952
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.9ms)
|
|
953
|
+
Completed 200 OK in 56ms (Views: 55.1ms | ActiveRecord: 0.1ms)
|
|
954
|
+
|
|
955
|
+
|
|
956
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:37:05 -0500
|
|
957
|
+
Processing by Forem::TopicsController#show as HTML
|
|
958
|
+
Parameters: {"id"=>"1"}
|
|
959
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
960
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
961
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.3ms)
|
|
962
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (37.5ms)
|
|
963
|
+
Completed 200 OK in 40ms (Views: 39.0ms | ActiveRecord: 0.4ms)
|
|
964
|
+
|
|
965
|
+
|
|
966
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-28 03:37:05 -0500
|
|
967
|
+
Processing by Forem::PostsController#new as HTML
|
|
968
|
+
Parameters: {"topic_id"=>"1"}
|
|
969
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
970
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
971
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.1ms)
|
|
972
|
+
Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.1ms)
|
|
973
|
+
|
|
974
|
+
|
|
975
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-28 03:37:05 -0500
|
|
976
|
+
Processing by Forem::PostsController#create as HTML
|
|
977
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
978
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
979
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
980
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Mon, 28 Nov 2011 08:37:05 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:37:05 UTC +00:00], ["user_id", nil]]
|
|
981
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
982
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
983
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
984
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
985
|
+
Completed 302 Found in 6ms
|
|
986
|
+
|
|
987
|
+
|
|
988
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:37:05 -0500
|
|
989
|
+
Processing by Forem::TopicsController#show as HTML
|
|
990
|
+
Parameters: {"id"=>"1"}
|
|
991
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
992
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
993
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.4ms)
|
|
994
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.6ms)
|
|
995
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
|
|
996
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
997
|
+
[1m[35mSQL (14.1ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:28 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 08:45:28 UTC +00:00], ["user_id", nil]]
|
|
998
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Mon, 28 Nov 2011 08:45:28 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:45:28 UTC +00:00], ["user_id", nil]]
|
|
999
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1000
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1001
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 03:45:28 -0500
|
|
1005
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1006
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1007
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.1ms)
|
|
1008
|
+
Completed 200 OK in 59ms (Views: 58.3ms | ActiveRecord: 0.2ms)
|
|
1009
|
+
|
|
1010
|
+
|
|
1011
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
|
|
1012
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1013
|
+
Parameters: {"id"=>"1"}
|
|
1014
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1015
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1016
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.6ms)
|
|
1017
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (36.7ms)
|
|
1018
|
+
Completed 200 OK in 40ms (Views: 38.3ms | ActiveRecord: 0.4ms)
|
|
1019
|
+
|
|
1020
|
+
|
|
1021
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
|
|
1022
|
+
Processing by Forem::PostsController#new as HTML
|
|
1023
|
+
Parameters: {"topic_id"=>"1"}
|
|
1024
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1025
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
1026
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (10.9ms)
|
|
1027
|
+
Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.1ms)
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
|
|
1031
|
+
Processing by Forem::PostsController#create as HTML
|
|
1032
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
1033
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1034
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1035
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Mon, 28 Nov 2011 08:45:29 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:45:29 UTC +00:00], ["user_id", nil]]
|
|
1036
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1037
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1038
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1039
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1040
|
+
Completed 302 Found in 5ms
|
|
1041
|
+
|
|
1042
|
+
|
|
1043
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
|
|
1044
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1045
|
+
Parameters: {"id"=>"1"}
|
|
1046
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1047
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
1048
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.4ms)
|
|
1049
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.5ms)
|
|
1050
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.3ms)
|
|
1051
|
+
|
|
1052
|
+
|
|
1053
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
|
|
1054
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1055
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1056
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.2ms)
|
|
1057
|
+
|
|
1058
|
+
|
|
1059
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
|
|
1060
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1061
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
1062
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.2ms)
|
|
1063
|
+
Completed 200 OK in 30ms (Views: 28.8ms | ActiveRecord: 0.0ms)
|
|
1064
|
+
|
|
1065
|
+
|
|
1066
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
|
|
1067
|
+
Processing by Forem::TopicsController#create as HTML
|
|
1068
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
1069
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1070
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Mon, 28 Nov 2011 08:45:29 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 08:45:29 UTC +00:00], ["user_id", nil]]
|
|
1071
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:29 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:45:29 UTC +00:00], ["user_id", nil]]
|
|
1072
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
1073
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
1074
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1075
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1076
|
+
Completed 302 Found in 6ms
|
|
1077
|
+
|
|
1078
|
+
|
|
1079
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
|
|
1080
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1081
|
+
Parameters: {"id"=>"1"}
|
|
1082
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1083
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1084
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (0.9ms)
|
|
1085
|
+
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.2ms)
|
|
1086
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1087
|
+
[1m[35mSQL (14.8ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:55 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 08:45:55 UTC +00:00], ["user_id", nil]]
|
|
1088
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Mon, 28 Nov 2011 08:45:55 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:45:55 UTC +00:00], ["user_id", nil]]
|
|
1089
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1090
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1091
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1092
|
+
|
|
1093
|
+
|
|
1094
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 03:45:55 -0500
|
|
1095
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1096
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1097
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.8ms)
|
|
1098
|
+
Completed 200 OK in 56ms (Views: 54.9ms | ActiveRecord: 0.1ms)
|
|
1099
|
+
|
|
1100
|
+
|
|
1101
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:45:55 -0500
|
|
1102
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1103
|
+
Parameters: {"id"=>"1"}
|
|
1104
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1105
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1106
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.9ms)
|
|
1107
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (37.8ms)
|
|
1108
|
+
Completed 200 OK in 41ms (Views: 39.4ms | ActiveRecord: 0.4ms)
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-28 03:45:55 -0500
|
|
1112
|
+
Processing by Forem::PostsController#new as HTML
|
|
1113
|
+
Parameters: {"topic_id"=>"1"}
|
|
1114
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1115
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
1116
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.1ms)
|
|
1117
|
+
Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.1ms)
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-28 03:45:56 -0500
|
|
1121
|
+
Processing by Forem::PostsController#create as HTML
|
|
1122
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
1123
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1124
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1125
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Mon, 28 Nov 2011 08:45:56 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:45:56 UTC +00:00], ["user_id", nil]]
|
|
1126
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1127
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1128
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1129
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1130
|
+
Completed 302 Found in 6ms
|
|
1131
|
+
|
|
1132
|
+
|
|
1133
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:45:56 -0500
|
|
1134
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1135
|
+
Parameters: {"id"=>"1"}
|
|
1136
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1137
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
1138
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.6ms)
|
|
1139
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.9ms)
|
|
1140
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
|
|
1141
|
+
|
|
1142
|
+
|
|
1143
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 03:45:56 -0500
|
|
1144
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1145
|
+
[1m[36mForem::Topic Load (0.3ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1146
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.3ms)
|
|
1147
|
+
|
|
1148
|
+
|
|
1149
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-28 03:45:56 -0500
|
|
1150
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1151
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
1152
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.1ms)
|
|
1153
|
+
Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
|
1154
|
+
|
|
1155
|
+
|
|
1156
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-28 03:45:56 -0500
|
|
1157
|
+
Processing by Forem::TopicsController#create as HTML
|
|
1158
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
1159
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1160
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Mon, 28 Nov 2011 08:45:56 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 08:45:56 UTC +00:00], ["user_id", nil]]
|
|
1161
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:56 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:45:56 UTC +00:00], ["user_id", nil]]
|
|
1162
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
1163
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
1164
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1165
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1166
|
+
Completed 302 Found in 7ms
|
|
1167
|
+
|
|
1168
|
+
|
|
1169
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:45:56 -0500
|
|
1170
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1171
|
+
Parameters: {"id"=>"1"}
|
|
1172
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1173
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1174
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.2ms)
|
|
1175
|
+
Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.3ms)
|
|
1176
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1177
|
+
[1m[35mSQL (105.8ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 05:49:24 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 05:49:24 UTC +00:00], ["user_id", nil]]
|
|
1178
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 05:49:24 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 05:49:24 UTC +00:00], ["user_id", nil]]
|
|
1179
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1180
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1181
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1182
|
+
|
|
1183
|
+
|
|
1184
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 00:49:25 -0500
|
|
1185
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1186
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1187
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (15.2ms)
|
|
1188
|
+
Completed 200 OK in 101ms (Views: 99.7ms | ActiveRecord: 0.1ms)
|
|
1189
|
+
|
|
1190
|
+
|
|
1191
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
|
|
1192
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1193
|
+
Parameters: {"id"=>"1"}
|
|
1194
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1195
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1196
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (68.3ms)
|
|
1197
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (90.6ms)
|
|
1198
|
+
Completed 200 OK in 121ms (Views: 119.9ms | ActiveRecord: 0.4ms)
|
|
1199
|
+
|
|
1200
|
+
|
|
1201
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
|
|
1202
|
+
Processing by Forem::PostsController#new as HTML
|
|
1203
|
+
Parameters: {"topic_id"=>"1"}
|
|
1204
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1205
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
|
|
1206
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (21.3ms)
|
|
1207
|
+
Completed 200 OK in 36ms (Views: 33.5ms | ActiveRecord: 0.1ms)
|
|
1208
|
+
|
|
1209
|
+
|
|
1210
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
|
|
1211
|
+
Processing by Forem::PostsController#create as HTML
|
|
1212
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
1213
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1214
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1215
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 05:49:26 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 05:49:26 UTC +00:00], ["user_id", nil]]
|
|
1216
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1217
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1218
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1219
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1220
|
+
Completed 302 Found in 5ms
|
|
1221
|
+
|
|
1222
|
+
|
|
1223
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
|
|
1224
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1225
|
+
Parameters: {"id"=>"1"}
|
|
1226
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1227
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
1228
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.6ms)
|
|
1229
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.8ms)
|
|
1230
|
+
Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.3ms)
|
|
1231
|
+
|
|
1232
|
+
|
|
1233
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
|
|
1234
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1235
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1236
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.2ms)
|
|
1237
|
+
|
|
1238
|
+
|
|
1239
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
|
|
1240
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1241
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
1242
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.3ms)
|
|
1243
|
+
Completed 200 OK in 47ms (Views: 45.5ms | ActiveRecord: 0.0ms)
|
|
1244
|
+
|
|
1245
|
+
|
|
1246
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
|
|
1247
|
+
Processing by Forem::TopicsController#create as HTML
|
|
1248
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
1249
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1250
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 05:49:26 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 05:49:26 UTC +00:00], ["user_id", nil]]
|
|
1251
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 05:49:26 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 05:49:26 UTC +00:00], ["user_id", nil]]
|
|
1252
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
1253
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
1254
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1255
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1256
|
+
Completed 302 Found in 8ms
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
|
|
1260
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1261
|
+
Parameters: {"id"=>"1"}
|
|
1262
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1263
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1264
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.1ms)
|
|
1265
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.3ms)
|
|
1266
|
+
|
|
1267
|
+
|
|
1268
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
|
|
1269
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1270
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
1271
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
|
|
1275
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1276
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.7ms)
|
|
1277
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.9ms)
|
|
1278
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
|
1279
|
+
|
|
1280
|
+
|
|
1281
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 01:00:55 -0500
|
|
1282
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1283
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1284
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.6ms)
|
|
1285
|
+
Completed 200 OK in 53ms (Views: 52.0ms | ActiveRecord: 0.2ms)
|
|
1286
|
+
|
|
1287
|
+
|
|
1288
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 01:00:55 -0500
|
|
1289
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1290
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
1291
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
|
|
1292
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (13.9ms)
|
|
1293
|
+
Completed 200 OK in 127ms (Views: 15.9ms | ActiveRecord: 0.4ms)
|
|
1294
|
+
|
|
1295
|
+
|
|
1296
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 01:00:55 -0500
|
|
1297
|
+
Processing by Forem::TopicsController#create as HTML
|
|
1298
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
1299
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1300
|
+
[1m[36mSQL (14.5ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 06:00:55 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 06:00:55 UTC +00:00], ["user_id", nil]]
|
|
1301
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 06:00:55 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 06:00:55 UTC +00:00], ["user_id", nil]]
|
|
1302
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
1303
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
1304
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1305
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1306
|
+
Completed 302 Found in 48ms
|
|
1307
|
+
|
|
1308
|
+
|
|
1309
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 01:00:55 -0500
|
|
1310
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1311
|
+
Parameters: {"id"=>"1"}
|
|
1312
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1313
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1314
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.6ms)
|
|
1315
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (27.7ms)
|
|
1316
|
+
Completed 200 OK in 30ms (Views: 29.3ms | ActiveRecord: 0.3ms)
|
|
1317
|
+
|
|
1318
|
+
|
|
1319
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 01:00:55 -0500
|
|
1320
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1321
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
1322
|
+
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms)
|
|
1323
|
+
|
|
1324
|
+
|
|
1325
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 01:00:55 -0500
|
|
1326
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1327
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
1328
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.6ms)
|
|
1329
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
|
1330
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1331
|
+
[1m[35mSQL (19.9ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 06:27:27 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 06:27:27 UTC +00:00], ["user_id", nil]]
|
|
1332
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 06:27:27 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 06:27:27 UTC +00:00], ["user_id", nil]]
|
|
1333
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1334
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1335
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1336
|
+
|
|
1337
|
+
|
|
1338
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
|
|
1339
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1340
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1341
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.6ms)
|
|
1342
|
+
Completed 200 OK in 89ms (Views: 88.3ms | ActiveRecord: 0.1ms)
|
|
1343
|
+
|
|
1344
|
+
|
|
1345
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
|
|
1346
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1347
|
+
Parameters: {"id"=>"1"}
|
|
1348
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1349
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1350
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (67.2ms)
|
|
1351
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (81.4ms)
|
|
1352
|
+
Completed 200 OK in 85ms (Views: 83.1ms | ActiveRecord: 0.5ms)
|
|
1353
|
+
|
|
1354
|
+
|
|
1355
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
|
|
1356
|
+
Processing by Forem::PostsController#new as HTML
|
|
1357
|
+
Parameters: {"topic_id"=>"1"}
|
|
1358
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1359
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
1360
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.1ms)
|
|
1361
|
+
Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.1ms)
|
|
1362
|
+
|
|
1363
|
+
|
|
1364
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
|
|
1365
|
+
Processing by Forem::PostsController#create as HTML
|
|
1366
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
1367
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1368
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1369
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 06:27:28 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 06:27:28 UTC +00:00], ["user_id", nil]]
|
|
1370
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1371
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1372
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1373
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1374
|
+
Completed 302 Found in 5ms
|
|
1375
|
+
|
|
1376
|
+
|
|
1377
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
|
|
1378
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1379
|
+
Parameters: {"id"=>"1"}
|
|
1380
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1381
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
1382
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.4ms)
|
|
1383
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.6ms)
|
|
1384
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.3ms)
|
|
1385
|
+
|
|
1386
|
+
|
|
1387
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
|
|
1388
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1389
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1390
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
|
1391
|
+
|
|
1392
|
+
|
|
1393
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
|
|
1394
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1395
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
1396
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.2ms)
|
|
1397
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.0ms)
|
|
1398
|
+
|
|
1399
|
+
|
|
1400
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
|
|
1401
|
+
Processing by Forem::TopicsController#create as HTML
|
|
1402
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
1403
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1404
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 06:27:28 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 06:27:28 UTC +00:00], ["user_id", nil]]
|
|
1405
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 06:27:28 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 06:27:28 UTC +00:00], ["user_id", nil]]
|
|
1406
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
1407
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
1408
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1409
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1410
|
+
Completed 302 Found in 8ms
|
|
1411
|
+
|
|
1412
|
+
|
|
1413
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
|
|
1414
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1415
|
+
Parameters: {"id"=>"1"}
|
|
1416
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1417
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1418
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (0.9ms)
|
|
1419
|
+
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.3ms)
|
|
1420
|
+
|
|
1421
|
+
|
|
1422
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
|
|
1423
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1424
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
1425
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
|
1426
|
+
|
|
1427
|
+
|
|
1428
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
|
|
1429
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1430
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.6ms)
|
|
1431
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.8ms)
|
|
1432
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
|
1433
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1434
|
+
[1m[35mSQL (97.3ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:52:47 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:52:47 UTC +00:00], ["user_id", nil]]
|
|
1435
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:52:47 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:52:47 UTC +00:00], ["user_id", nil]]
|
|
1436
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1437
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1438
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1439
|
+
|
|
1440
|
+
|
|
1441
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
|
|
1442
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1443
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1444
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.5ms)
|
|
1445
|
+
Completed 200 OK in 100ms (Views: 99.0ms | ActiveRecord: 0.1ms)
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
|
|
1449
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1450
|
+
Parameters: {"id"=>"1"}
|
|
1451
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1452
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1453
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (65.9ms)
|
|
1454
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (88.5ms)
|
|
1455
|
+
Completed 200 OK in 119ms (Views: 117.6ms | ActiveRecord: 0.4ms)
|
|
1456
|
+
|
|
1457
|
+
|
|
1458
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
|
|
1459
|
+
Processing by Forem::PostsController#new as HTML
|
|
1460
|
+
Parameters: {"topic_id"=>"1"}
|
|
1461
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1462
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
1463
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (21.1ms)
|
|
1464
|
+
Completed 200 OK in 35ms (Views: 33.5ms | ActiveRecord: 0.1ms)
|
|
1465
|
+
|
|
1466
|
+
|
|
1467
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
|
|
1468
|
+
Processing by Forem::PostsController#create as HTML
|
|
1469
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
1470
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1471
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1472
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:52:48 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:52:48 UTC +00:00], ["user_id", nil]]
|
|
1473
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1474
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1475
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1476
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1477
|
+
Completed 302 Found in 5ms
|
|
1478
|
+
|
|
1479
|
+
|
|
1480
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
|
|
1481
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1482
|
+
Parameters: {"id"=>"1"}
|
|
1483
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1484
|
+
[1m[35mForem::Post Load (0.3ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
1485
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.7ms)
|
|
1486
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (3.3ms)
|
|
1487
|
+
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.3ms)
|
|
1488
|
+
|
|
1489
|
+
|
|
1490
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
|
|
1491
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1492
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1493
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.2ms)
|
|
1494
|
+
|
|
1495
|
+
|
|
1496
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
|
|
1497
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1498
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
1499
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.2ms)
|
|
1500
|
+
Completed 200 OK in 45ms (Views: 43.7ms | ActiveRecord: 0.0ms)
|
|
1501
|
+
|
|
1502
|
+
|
|
1503
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
|
|
1504
|
+
Processing by Forem::TopicsController#create as HTML
|
|
1505
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
1506
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1507
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:52:48 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:52:48 UTC +00:00], ["user_id", nil]]
|
|
1508
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:52:48 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:52:48 UTC +00:00], ["user_id", nil]]
|
|
1509
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
1510
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
1511
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1512
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1513
|
+
Completed 302 Found in 6ms
|
|
1514
|
+
|
|
1515
|
+
|
|
1516
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
|
|
1517
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1518
|
+
Parameters: {"id"=>"1"}
|
|
1519
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1520
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1521
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (0.9ms)
|
|
1522
|
+
Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.3ms)
|
|
1523
|
+
|
|
1524
|
+
|
|
1525
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
|
|
1526
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1527
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
1528
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
|
1529
|
+
|
|
1530
|
+
|
|
1531
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
|
|
1532
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1533
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
|
|
1534
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.9ms)
|
|
1535
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
|
1536
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1537
|
+
[1m[35mSQL (14.7ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:53:24 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:53:24 UTC +00:00], ["user_id", nil]]
|
|
1538
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:53:24 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:53:24 UTC +00:00], ["user_id", nil]]
|
|
1539
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1540
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1541
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1542
|
+
|
|
1543
|
+
|
|
1544
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
|
|
1545
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1546
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1547
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.4ms)
|
|
1548
|
+
Completed 200 OK in 56ms (Views: 55.1ms | ActiveRecord: 0.1ms)
|
|
1549
|
+
|
|
1550
|
+
|
|
1551
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
|
|
1552
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1553
|
+
Parameters: {"id"=>"1"}
|
|
1554
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1555
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1556
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (63.7ms)
|
|
1557
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (75.0ms)
|
|
1558
|
+
Completed 200 OK in 78ms (Views: 76.4ms | ActiveRecord: 0.5ms)
|
|
1559
|
+
|
|
1560
|
+
|
|
1561
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
|
|
1562
|
+
Processing by Forem::PostsController#new as HTML
|
|
1563
|
+
Parameters: {"topic_id"=>"1"}
|
|
1564
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1565
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
1566
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (13.8ms)
|
|
1567
|
+
Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.1ms)
|
|
1568
|
+
|
|
1569
|
+
|
|
1570
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
|
|
1571
|
+
Processing by Forem::PostsController#create as HTML
|
|
1572
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
1573
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1574
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1575
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:53:25 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:53:25 UTC +00:00], ["user_id", nil]]
|
|
1576
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1577
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1578
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1579
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1580
|
+
Completed 302 Found in 5ms
|
|
1581
|
+
|
|
1582
|
+
|
|
1583
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
|
|
1584
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1585
|
+
Parameters: {"id"=>"1"}
|
|
1586
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1587
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
1588
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.5ms)
|
|
1589
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.7ms)
|
|
1590
|
+
Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.3ms)
|
|
1591
|
+
|
|
1592
|
+
|
|
1593
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
|
|
1594
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1595
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1596
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
|
1597
|
+
|
|
1598
|
+
|
|
1599
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
|
|
1600
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1601
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
1602
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.6ms)
|
|
1603
|
+
Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
|
1604
|
+
|
|
1605
|
+
|
|
1606
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
|
|
1607
|
+
Processing by Forem::TopicsController#create as HTML
|
|
1608
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
1609
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1610
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:53:25 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:53:25 UTC +00:00], ["user_id", nil]]
|
|
1611
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:53:25 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:53:25 UTC +00:00], ["user_id", nil]]
|
|
1612
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
1613
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
1614
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1615
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1616
|
+
Completed 302 Found in 7ms
|
|
1617
|
+
|
|
1618
|
+
|
|
1619
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
|
|
1620
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1621
|
+
Parameters: {"id"=>"1"}
|
|
1622
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1623
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1624
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.7ms)
|
|
1625
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.3ms)
|
|
1626
|
+
|
|
1627
|
+
|
|
1628
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
|
|
1629
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1630
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
1631
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.2ms)
|
|
1632
|
+
|
|
1633
|
+
|
|
1634
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
|
|
1635
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1636
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.6ms)
|
|
1637
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.5ms)
|
|
1638
|
+
Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
|
1639
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1640
|
+
[1m[35mSQL (14.4ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:54:58 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:54:58 UTC +00:00], ["user_id", nil]]
|
|
1641
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:54:58 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:54:58 UTC +00:00], ["user_id", nil]]
|
|
1642
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1643
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1644
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1645
|
+
|
|
1646
|
+
|
|
1647
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
|
|
1648
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1649
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1650
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.2ms)
|
|
1651
|
+
Completed 200 OK in 58ms (Views: 57.4ms | ActiveRecord: 0.1ms)
|
|
1652
|
+
|
|
1653
|
+
|
|
1654
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
|
|
1655
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1656
|
+
Parameters: {"id"=>"1"}
|
|
1657
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1658
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1659
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (77.2ms)
|
|
1660
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (94.4ms)
|
|
1661
|
+
Completed 200 OK in 99ms (Views: 97.3ms | ActiveRecord: 0.5ms)
|
|
1662
|
+
|
|
1663
|
+
|
|
1664
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
|
|
1665
|
+
Processing by Forem::PostsController#new as HTML
|
|
1666
|
+
Parameters: {"topic_id"=>"1"}
|
|
1667
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1668
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
|
|
1669
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (14.6ms)
|
|
1670
|
+
Completed 200 OK in 25ms (Views: 21.9ms | ActiveRecord: 0.1ms)
|
|
1671
|
+
|
|
1672
|
+
|
|
1673
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
|
|
1674
|
+
Processing by Forem::PostsController#create as HTML
|
|
1675
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
1676
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1677
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1678
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:54:59 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:54:59 UTC +00:00], ["user_id", nil]]
|
|
1679
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1680
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1681
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1682
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1683
|
+
Completed 302 Found in 7ms
|
|
1684
|
+
|
|
1685
|
+
|
|
1686
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
|
|
1687
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1688
|
+
Parameters: {"id"=>"1"}
|
|
1689
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1690
|
+
[1m[35mForem::Post Load (0.3ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
1691
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.4ms)
|
|
1692
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (4.6ms)
|
|
1693
|
+
Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms)
|
|
1694
|
+
|
|
1695
|
+
|
|
1696
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
|
|
1697
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1698
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1699
|
+
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.2ms)
|
|
1700
|
+
|
|
1701
|
+
|
|
1702
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
|
|
1703
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1704
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
|
|
1705
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.4ms)
|
|
1706
|
+
Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
|
1707
|
+
|
|
1708
|
+
|
|
1709
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
|
|
1710
|
+
Processing by Forem::TopicsController#create as HTML
|
|
1711
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
1712
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1713
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:54:59 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:54:59 UTC +00:00], ["user_id", nil]]
|
|
1714
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:54:59 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:54:59 UTC +00:00], ["user_id", nil]]
|
|
1715
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
1716
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
1717
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1718
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1719
|
+
Completed 302 Found in 8ms
|
|
1720
|
+
|
|
1721
|
+
|
|
1722
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
|
|
1723
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1724
|
+
Parameters: {"id"=>"1"}
|
|
1725
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1726
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1727
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.0ms)
|
|
1728
|
+
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.3ms)
|
|
1729
|
+
|
|
1730
|
+
|
|
1731
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
|
|
1732
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1733
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
1734
|
+
Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.2ms)
|
|
1735
|
+
|
|
1736
|
+
|
|
1737
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
|
|
1738
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1739
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
|
|
1740
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.3ms)
|
|
1741
|
+
Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
|
1742
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1743
|
+
[1m[35mSQL (15.1ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:55:57 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:55:57 UTC +00:00], ["user_id", nil]]
|
|
1744
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:55:57 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:55:57 UTC +00:00], ["user_id", nil]]
|
|
1745
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1746
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1747
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1748
|
+
|
|
1749
|
+
|
|
1750
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
|
|
1751
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1752
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1753
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.8ms)
|
|
1754
|
+
Completed 200 OK in 54ms (Views: 53.3ms | ActiveRecord: 0.1ms)
|
|
1755
|
+
|
|
1756
|
+
|
|
1757
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
|
|
1758
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1759
|
+
Parameters: {"id"=>"1"}
|
|
1760
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1761
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1762
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (65.6ms)
|
|
1763
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (76.4ms)
|
|
1764
|
+
Completed 200 OK in 80ms (Views: 78.4ms | ActiveRecord: 0.4ms)
|
|
1765
|
+
|
|
1766
|
+
|
|
1767
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
|
|
1768
|
+
Processing by Forem::PostsController#new as HTML
|
|
1769
|
+
Parameters: {"topic_id"=>"1"}
|
|
1770
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1771
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
|
|
1772
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.0ms)
|
|
1773
|
+
Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.1ms)
|
|
1774
|
+
|
|
1775
|
+
|
|
1776
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
|
|
1777
|
+
Processing by Forem::PostsController#create as HTML
|
|
1778
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
1779
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1780
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1781
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:55:58 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:55:58 UTC +00:00], ["user_id", nil]]
|
|
1782
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1783
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1784
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1785
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1786
|
+
Completed 302 Found in 6ms
|
|
1787
|
+
|
|
1788
|
+
|
|
1789
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
|
|
1790
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1791
|
+
Parameters: {"id"=>"1"}
|
|
1792
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1793
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
1794
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.4ms)
|
|
1795
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.6ms)
|
|
1796
|
+
Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.3ms)
|
|
1797
|
+
|
|
1798
|
+
|
|
1799
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
|
|
1800
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1801
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1802
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.2ms)
|
|
1803
|
+
|
|
1804
|
+
|
|
1805
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
|
|
1806
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1807
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
|
|
1808
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.6ms)
|
|
1809
|
+
Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
|
1810
|
+
|
|
1811
|
+
|
|
1812
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
|
|
1813
|
+
Processing by Forem::TopicsController#create as HTML
|
|
1814
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
1815
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1816
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:55:58 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:55:58 UTC +00:00], ["user_id", nil]]
|
|
1817
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:55:58 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:55:58 UTC +00:00], ["user_id", nil]]
|
|
1818
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
1819
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
1820
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1821
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1822
|
+
Completed 302 Found in 7ms
|
|
1823
|
+
|
|
1824
|
+
|
|
1825
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
|
|
1826
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1827
|
+
Parameters: {"id"=>"1"}
|
|
1828
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1829
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1830
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (0.9ms)
|
|
1831
|
+
Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.3ms)
|
|
1832
|
+
|
|
1833
|
+
|
|
1834
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
|
|
1835
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1836
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
1837
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
|
1838
|
+
|
|
1839
|
+
|
|
1840
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
|
|
1841
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1842
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.6ms)
|
|
1843
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.2ms)
|
|
1844
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
|
1845
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1846
|
+
[1m[35mSQL (14.1ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:57:30 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:57:30 UTC +00:00], ["user_id", nil]]
|
|
1847
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:57:30 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:57:30 UTC +00:00], ["user_id", nil]]
|
|
1848
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1849
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1850
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1851
|
+
|
|
1852
|
+
|
|
1853
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
|
|
1854
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1855
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1856
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.3ms)
|
|
1857
|
+
Completed 200 OK in 53ms (Views: 52.4ms | ActiveRecord: 0.1ms)
|
|
1858
|
+
|
|
1859
|
+
|
|
1860
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
|
|
1861
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1862
|
+
Parameters: {"id"=>"1"}
|
|
1863
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1864
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1865
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (63.8ms)
|
|
1866
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (75.2ms)
|
|
1867
|
+
Completed 200 OK in 78ms (Views: 76.9ms | ActiveRecord: 0.4ms)
|
|
1868
|
+
|
|
1869
|
+
|
|
1870
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
|
|
1871
|
+
Processing by Forem::PostsController#new as HTML
|
|
1872
|
+
Parameters: {"topic_id"=>"1"}
|
|
1873
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1874
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.6ms)
|
|
1875
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (14.2ms)
|
|
1876
|
+
Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.1ms)
|
|
1877
|
+
|
|
1878
|
+
|
|
1879
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
|
|
1880
|
+
Processing by Forem::PostsController#create as HTML
|
|
1881
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
1882
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1883
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1884
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:57:31 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:57:31 UTC +00:00], ["user_id", nil]]
|
|
1885
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1886
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1887
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1888
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1889
|
+
Completed 302 Found in 7ms
|
|
1890
|
+
|
|
1891
|
+
|
|
1892
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
|
|
1893
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1894
|
+
Parameters: {"id"=>"1"}
|
|
1895
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1896
|
+
[1m[35mForem::Post Load (0.3ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
1897
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.9ms)
|
|
1898
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (3.7ms)
|
|
1899
|
+
Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.3ms)
|
|
1900
|
+
|
|
1901
|
+
|
|
1902
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
|
|
1903
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1904
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1905
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
|
1906
|
+
|
|
1907
|
+
|
|
1908
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
|
|
1909
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1910
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
1911
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.3ms)
|
|
1912
|
+
Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
|
1913
|
+
|
|
1914
|
+
|
|
1915
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
|
|
1916
|
+
Processing by Forem::TopicsController#create as HTML
|
|
1917
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
1918
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1919
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 13:57:31 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:57:31 UTC +00:00], ["user_id", nil]]
|
|
1920
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:57:31 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:57:31 UTC +00:00], ["user_id", nil]]
|
|
1921
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
1922
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
1923
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1924
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1925
|
+
Completed 302 Found in 7ms
|
|
1926
|
+
|
|
1927
|
+
|
|
1928
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
|
|
1929
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1930
|
+
Parameters: {"id"=>"1"}
|
|
1931
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1932
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1933
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (0.9ms)
|
|
1934
|
+
Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.3ms)
|
|
1935
|
+
|
|
1936
|
+
|
|
1937
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
|
|
1938
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1939
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
1940
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.2ms)
|
|
1941
|
+
|
|
1942
|
+
|
|
1943
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
|
|
1944
|
+
Processing by Forem::TopicsController#new as HTML
|
|
1945
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
1946
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.0ms)
|
|
1947
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
|
1948
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1949
|
+
[1m[35mSQL (15.2ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:02 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 14:07:02 UTC +00:00], ["user_id", nil]]
|
|
1950
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 14:07:02 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:07:02 UTC +00:00], ["user_id", nil]]
|
|
1951
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1952
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1953
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1954
|
+
|
|
1955
|
+
|
|
1956
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
|
|
1957
|
+
Processing by Forem::TopicsController#index as HTML
|
|
1958
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
1959
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.1ms)
|
|
1960
|
+
Completed 200 OK in 56ms (Views: 55.0ms | ActiveRecord: 0.1ms)
|
|
1961
|
+
|
|
1962
|
+
|
|
1963
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
|
|
1964
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1965
|
+
Parameters: {"id"=>"1"}
|
|
1966
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1967
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
1968
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (66.0ms)
|
|
1969
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (80.1ms)
|
|
1970
|
+
Completed 200 OK in 84ms (Views: 82.1ms | ActiveRecord: 0.4ms)
|
|
1971
|
+
|
|
1972
|
+
|
|
1973
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
|
|
1974
|
+
Processing by Forem::PostsController#new as HTML
|
|
1975
|
+
Parameters: {"topic_id"=>"1"}
|
|
1976
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1977
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
1978
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.1ms)
|
|
1979
|
+
Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.1ms)
|
|
1980
|
+
|
|
1981
|
+
|
|
1982
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
|
|
1983
|
+
Processing by Forem::PostsController#create as HTML
|
|
1984
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
1985
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1986
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1987
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 14:07:03 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:07:03 UTC +00:00], ["user_id", nil]]
|
|
1988
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
1989
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
1990
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1991
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
1992
|
+
Completed 302 Found in 5ms
|
|
1993
|
+
|
|
1994
|
+
|
|
1995
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
|
|
1996
|
+
Processing by Forem::TopicsController#show as HTML
|
|
1997
|
+
Parameters: {"id"=>"1"}
|
|
1998
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1999
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
2000
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.5ms)
|
|
2001
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.6ms)
|
|
2002
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
|
|
2003
|
+
|
|
2004
|
+
|
|
2005
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
|
|
2006
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2007
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2008
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.2ms)
|
|
2009
|
+
|
|
2010
|
+
|
|
2011
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
|
|
2012
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2013
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
|
|
2014
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.2ms)
|
|
2015
|
+
Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
|
2016
|
+
|
|
2017
|
+
|
|
2018
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
|
|
2019
|
+
Processing by Forem::TopicsController#create as HTML
|
|
2020
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
2021
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2022
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 14:07:03 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 14:07:03 UTC +00:00], ["user_id", nil]]
|
|
2023
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:03 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:07:03 UTC +00:00], ["user_id", nil]]
|
|
2024
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
2025
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
2026
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2027
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
2028
|
+
Completed 302 Found in 8ms
|
|
2029
|
+
|
|
2030
|
+
|
|
2031
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
|
|
2032
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2033
|
+
Parameters: {"id"=>"1"}
|
|
2034
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2035
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
2036
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.0ms)
|
|
2037
|
+
Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.3ms)
|
|
2038
|
+
|
|
2039
|
+
|
|
2040
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
|
|
2041
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2042
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2043
|
+
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms)
|
|
2044
|
+
|
|
2045
|
+
|
|
2046
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
|
|
2047
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2048
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
|
|
2049
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.9ms)
|
|
2050
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
|
2051
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2052
|
+
[1m[35mSQL (15.3ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:13 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 14:07:13 UTC +00:00], ["user_id", nil]]
|
|
2053
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 14:07:13 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:07:13 UTC +00:00], ["user_id", nil]]
|
|
2054
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
2055
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
2056
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2057
|
+
|
|
2058
|
+
|
|
2059
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:13 -0500
|
|
2060
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2061
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2062
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.8ms)
|
|
2063
|
+
Completed 200 OK in 55ms (Views: 54.3ms | ActiveRecord: 0.1ms)
|
|
2064
|
+
|
|
2065
|
+
|
|
2066
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:07:13 -0500
|
|
2067
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2068
|
+
Parameters: {"id"=>"1"}
|
|
2069
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2070
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
2071
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (69.0ms)
|
|
2072
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (80.2ms)
|
|
2073
|
+
Completed 200 OK in 83ms (Views: 81.7ms | ActiveRecord: 0.4ms)
|
|
2074
|
+
|
|
2075
|
+
|
|
2076
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
|
|
2077
|
+
Processing by Forem::PostsController#new as HTML
|
|
2078
|
+
Parameters: {"topic_id"=>"1"}
|
|
2079
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2080
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
|
|
2081
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.0ms)
|
|
2082
|
+
Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.1ms)
|
|
2083
|
+
|
|
2084
|
+
|
|
2085
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
|
|
2086
|
+
Processing by Forem::PostsController#create as HTML
|
|
2087
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
2088
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2089
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2090
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 14:07:14 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:07:14 UTC +00:00], ["user_id", nil]]
|
|
2091
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
2092
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
2093
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2094
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
2095
|
+
Completed 302 Found in 6ms
|
|
2096
|
+
|
|
2097
|
+
|
|
2098
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
|
|
2099
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2100
|
+
Parameters: {"id"=>"1"}
|
|
2101
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2102
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
2103
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.7ms)
|
|
2104
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.9ms)
|
|
2105
|
+
Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
|
|
2106
|
+
|
|
2107
|
+
|
|
2108
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
|
|
2109
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2110
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2111
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
|
2112
|
+
|
|
2113
|
+
|
|
2114
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
|
|
2115
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2116
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
2117
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.4ms)
|
|
2118
|
+
Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
|
2119
|
+
|
|
2120
|
+
|
|
2121
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
|
|
2122
|
+
Processing by Forem::TopicsController#create as HTML
|
|
2123
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
2124
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2125
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 14:07:14 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 14:07:14 UTC +00:00], ["user_id", nil]]
|
|
2126
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:14 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:07:14 UTC +00:00], ["user_id", nil]]
|
|
2127
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
2128
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
2129
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2130
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
2131
|
+
Completed 302 Found in 9ms
|
|
2132
|
+
|
|
2133
|
+
|
|
2134
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
|
|
2135
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2136
|
+
Parameters: {"id"=>"1"}
|
|
2137
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2138
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
2139
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (0.9ms)
|
|
2140
|
+
Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.3ms)
|
|
2141
|
+
|
|
2142
|
+
|
|
2143
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
|
|
2144
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2145
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2146
|
+
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.2ms)
|
|
2147
|
+
|
|
2148
|
+
|
|
2149
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
|
|
2150
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2151
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
2152
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.0ms)
|
|
2153
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
|
2154
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2155
|
+
[1m[35mSQL (25.1ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:36:22 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 14:36:22 UTC +00:00], ["user_id", nil]]
|
|
2156
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 14:36:22 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:36:22 UTC +00:00], ["user_id", nil]]
|
|
2157
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
2158
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
2159
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2160
|
+
|
|
2161
|
+
|
|
2162
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
|
|
2163
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2164
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2165
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.8ms)
|
|
2166
|
+
Completed 200 OK in 56ms (Views: 54.6ms | ActiveRecord: 0.1ms)
|
|
2167
|
+
|
|
2168
|
+
|
|
2169
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
|
|
2170
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2171
|
+
Parameters: {"id"=>"1"}
|
|
2172
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2173
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
2174
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (66.6ms)
|
|
2175
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (78.8ms)
|
|
2176
|
+
Completed 200 OK in 82ms (Views: 80.3ms | ActiveRecord: 0.4ms)
|
|
2177
|
+
|
|
2178
|
+
|
|
2179
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
|
|
2180
|
+
Processing by Forem::PostsController#new as HTML
|
|
2181
|
+
Parameters: {"topic_id"=>"1"}
|
|
2182
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2183
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
2184
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.6ms)
|
|
2185
|
+
Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.1ms)
|
|
2186
|
+
|
|
2187
|
+
|
|
2188
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
|
|
2189
|
+
Processing by Forem::PostsController#create as HTML
|
|
2190
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
2191
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2192
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2193
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 14:36:23 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:36:23 UTC +00:00], ["user_id", nil]]
|
|
2194
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
2195
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
2196
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2197
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
2198
|
+
Completed 302 Found in 7ms
|
|
2199
|
+
|
|
2200
|
+
|
|
2201
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
|
|
2202
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2203
|
+
Parameters: {"id"=>"1"}
|
|
2204
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2205
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
2206
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.9ms)
|
|
2207
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (3.3ms)
|
|
2208
|
+
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.3ms)
|
|
2209
|
+
|
|
2210
|
+
|
|
2211
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
|
|
2212
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2213
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2214
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
|
2215
|
+
|
|
2216
|
+
|
|
2217
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
|
|
2218
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2219
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
2220
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.6ms)
|
|
2221
|
+
Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
|
2222
|
+
|
|
2223
|
+
|
|
2224
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
|
|
2225
|
+
Processing by Forem::TopicsController#create as HTML
|
|
2226
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
2227
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2228
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 Nov 2011 14:36:23 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 14:36:23 UTC +00:00], ["user_id", nil]]
|
|
2229
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:36:23 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:36:23 UTC +00:00], ["user_id", nil]]
|
|
2230
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
2231
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
2232
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2233
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
2234
|
+
Completed 302 Found in 7ms
|
|
2235
|
+
|
|
2236
|
+
|
|
2237
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
|
|
2238
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2239
|
+
Parameters: {"id"=>"1"}
|
|
2240
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2241
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
2242
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.2ms)
|
|
2243
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.3ms)
|
|
2244
|
+
|
|
2245
|
+
|
|
2246
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
|
|
2247
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2248
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2249
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
|
2250
|
+
|
|
2251
|
+
|
|
2252
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
|
|
2253
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2254
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
2255
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.8ms)
|
|
2256
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
|
2257
|
+
|
|
2258
|
+
|
|
2259
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:23:55 -0500
|
|
2260
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2261
|
+
[1m[36mForem::Topic Load (12.6ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2262
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (41.3ms)
|
|
2263
|
+
Completed 200 OK in 136ms (Views: 122.1ms | ActiveRecord: 12.6ms)
|
|
2264
|
+
|
|
2265
|
+
|
|
2266
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:23:56 -0500
|
|
2267
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2268
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
|
|
2269
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (14.9ms)
|
|
2270
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (38.3ms)
|
|
2271
|
+
Completed 200 OK in 207ms (Views: 69.5ms | ActiveRecord: 0.4ms)
|
|
2272
|
+
|
|
2273
|
+
|
|
2274
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 20:23:56 -0500
|
|
2275
|
+
Processing by Forem::TopicsController#create as HTML
|
|
2276
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
2277
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2278
|
+
[1m[36mSQL (114.9ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 01:23:56 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 01:23:56 UTC +00:00], ["user_id", nil]]
|
|
2279
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 01:23:56 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 01:23:56 UTC +00:00], ["user_id", nil]]
|
|
2280
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
2281
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
2282
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2283
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
2284
|
+
Completed 302 Found in 167ms
|
|
2285
|
+
|
|
2286
|
+
|
|
2287
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 20:23:56 -0500
|
|
2288
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2289
|
+
Parameters: {"id"=>"1"}
|
|
2290
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2291
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
2292
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (55.3ms)
|
|
2293
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (68.7ms)
|
|
2294
|
+
Completed 200 OK in 99ms (Views: 97.4ms | ActiveRecord: 0.4ms)
|
|
2295
|
+
|
|
2296
|
+
|
|
2297
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:23:56 -0500
|
|
2298
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2299
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2300
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.2ms)
|
|
2301
|
+
|
|
2302
|
+
|
|
2303
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:23:56 -0500
|
|
2304
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2305
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
2306
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.9ms)
|
|
2307
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
|
2308
|
+
|
|
2309
|
+
|
|
2310
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:25:21 -0500
|
|
2311
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2312
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2313
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (63.9ms)
|
|
2314
|
+
Completed 500 Internal Server Error in 103ms
|
|
2315
|
+
|
|
2316
|
+
|
|
2317
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:25:21 -0500
|
|
2318
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2319
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2320
|
+
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.1ms)
|
|
2321
|
+
|
|
2322
|
+
|
|
2323
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:25:21 -0500
|
|
2324
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2325
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
2326
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.1ms)
|
|
2327
|
+
Completed 200 OK in 89ms (Views: 14.8ms | ActiveRecord: 0.5ms)
|
|
2328
|
+
|
|
2329
|
+
|
|
2330
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:26:46 -0500
|
|
2331
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2332
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2333
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (50.8ms)
|
|
2334
|
+
Completed 500 Internal Server Error in 89ms
|
|
2335
|
+
|
|
2336
|
+
|
|
2337
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:26:46 -0500
|
|
2338
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2339
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2340
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.2ms)
|
|
2341
|
+
|
|
2342
|
+
|
|
2343
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:26:46 -0500
|
|
2344
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2345
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
2346
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.5ms)
|
|
2347
|
+
Completed 200 OK in 91ms (Views: 15.5ms | ActiveRecord: 0.4ms)
|
|
2348
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2349
|
+
[1m[35mSQL (15.6ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 01:32:49 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 01:32:49 UTC +00:00], ["user_id", nil]]
|
|
2350
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 01:32:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 01:32:49 UTC +00:00], ["user_id", nil]]
|
|
2351
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
2352
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
2353
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2354
|
+
|
|
2355
|
+
|
|
2356
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:32:49 -0500
|
|
2357
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2358
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2359
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (58.9ms)
|
|
2360
|
+
Completed 500 Internal Server Error in 99ms
|
|
2361
|
+
|
|
2362
|
+
|
|
2363
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:32:50 -0500
|
|
2364
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2365
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2366
|
+
Completed 500 Internal Server Error in 65ms
|
|
2367
|
+
|
|
2368
|
+
|
|
2369
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:32:50 -0500
|
|
2370
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2371
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2372
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
|
2373
|
+
|
|
2374
|
+
|
|
2375
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:32:50 -0500
|
|
2376
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2377
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.6ms)
|
|
2378
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (6.0ms)
|
|
2379
|
+
Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.0ms)
|
|
2380
|
+
|
|
2381
|
+
|
|
2382
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:37:07 -0500
|
|
2383
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2384
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2385
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (52.7ms)
|
|
2386
|
+
Completed 500 Internal Server Error in 92ms
|
|
2387
|
+
|
|
2388
|
+
|
|
2389
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:37:07 -0500
|
|
2390
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2391
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2392
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.2ms)
|
|
2393
|
+
|
|
2394
|
+
|
|
2395
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:37:08 -0500
|
|
2396
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2397
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
2398
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.4ms)
|
|
2399
|
+
Completed 200 OK in 93ms (Views: 15.5ms | ActiveRecord: 0.5ms)
|
|
2400
|
+
|
|
2401
|
+
|
|
2402
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:39:34 -0500
|
|
2403
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2404
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2405
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (52.8ms)
|
|
2406
|
+
Completed 500 Internal Server Error in 93ms
|
|
2407
|
+
|
|
2408
|
+
|
|
2409
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:39:34 -0500
|
|
2410
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2411
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2412
|
+
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.1ms)
|
|
2413
|
+
|
|
2414
|
+
|
|
2415
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:39:34 -0500
|
|
2416
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2417
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
2418
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.4ms)
|
|
2419
|
+
Completed 200 OK in 95ms (Views: 15.6ms | ActiveRecord: 0.5ms)
|
|
2420
|
+
|
|
2421
|
+
|
|
2422
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:40:14 -0500
|
|
2423
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2424
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2425
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (51.6ms)
|
|
2426
|
+
Completed 500 Internal Server Error in 91ms
|
|
2427
|
+
|
|
2428
|
+
|
|
2429
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:40:14 -0500
|
|
2430
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2431
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2432
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
|
2433
|
+
|
|
2434
|
+
|
|
2435
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:40:14 -0500
|
|
2436
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2437
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
2438
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.7ms)
|
|
2439
|
+
Completed 200 OK in 89ms (Views: 15.9ms | ActiveRecord: 0.4ms)
|
|
2440
|
+
|
|
2441
|
+
|
|
2442
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:46:50 -0500
|
|
2443
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2444
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2445
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (52.1ms)
|
|
2446
|
+
Completed 500 Internal Server Error in 90ms
|
|
2447
|
+
|
|
2448
|
+
|
|
2449
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:46:51 -0500
|
|
2450
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2451
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2452
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
|
2453
|
+
|
|
2454
|
+
|
|
2455
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:46:51 -0500
|
|
2456
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2457
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
2458
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.5ms)
|
|
2459
|
+
Completed 200 OK in 123ms (Views: 15.7ms | ActiveRecord: 0.4ms)
|
|
2460
|
+
|
|
2461
|
+
|
|
2462
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:47:34 -0500
|
|
2463
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2464
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2465
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (52.4ms)
|
|
2466
|
+
Completed 500 Internal Server Error in 92ms
|
|
2467
|
+
|
|
2468
|
+
|
|
2469
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:47:34 -0500
|
|
2470
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2471
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2472
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
|
|
2473
|
+
|
|
2474
|
+
|
|
2475
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:47:35 -0500
|
|
2476
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2477
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
2478
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.3ms)
|
|
2479
|
+
Completed 200 OK in 91ms (Views: 15.6ms | ActiveRecord: 0.5ms)
|
|
2480
|
+
|
|
2481
|
+
|
|
2482
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:08:13 -0500
|
|
2483
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2484
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2485
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (51.0ms)
|
|
2486
|
+
Completed 500 Internal Server Error in 91ms
|
|
2487
|
+
|
|
2488
|
+
|
|
2489
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:08:14 -0500
|
|
2490
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2491
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2492
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
|
2493
|
+
|
|
2494
|
+
|
|
2495
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:08:14 -0500
|
|
2496
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2497
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
|
|
2498
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.8ms)
|
|
2499
|
+
Completed 200 OK in 88ms (Views: 15.6ms | ActiveRecord: 0.4ms)
|
|
2500
|
+
|
|
2501
|
+
|
|
2502
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:15:59 -0500
|
|
2503
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2504
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2505
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (51.9ms)
|
|
2506
|
+
Completed 500 Internal Server Error in 91ms
|
|
2507
|
+
|
|
2508
|
+
|
|
2509
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:15:59 -0500
|
|
2510
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2511
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2512
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
|
2513
|
+
|
|
2514
|
+
|
|
2515
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:15:59 -0500
|
|
2516
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2517
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
|
|
2518
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.7ms)
|
|
2519
|
+
Completed 200 OK in 95ms (Views: 19.1ms | ActiveRecord: 0.5ms)
|
|
2520
|
+
|
|
2521
|
+
|
|
2522
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:17:09 -0500
|
|
2523
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2524
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2525
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (54.3ms)
|
|
2526
|
+
Completed 500 Internal Server Error in 93ms
|
|
2527
|
+
|
|
2528
|
+
|
|
2529
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:17:09 -0500
|
|
2530
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2531
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2532
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
|
2533
|
+
|
|
2534
|
+
|
|
2535
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:17:09 -0500
|
|
2536
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2537
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
2538
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.1ms)
|
|
2539
|
+
Completed 200 OK in 98ms (Views: 16.7ms | ActiveRecord: 0.5ms)
|
|
2540
|
+
|
|
2541
|
+
|
|
2542
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:17:51 -0500
|
|
2543
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2544
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2545
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (53.5ms)
|
|
2546
|
+
Completed 500 Internal Server Error in 97ms
|
|
2547
|
+
|
|
2548
|
+
|
|
2549
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:17:51 -0500
|
|
2550
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2551
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2552
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
|
2553
|
+
|
|
2554
|
+
|
|
2555
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:17:51 -0500
|
|
2556
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2557
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
|
|
2558
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.1ms)
|
|
2559
|
+
Completed 200 OK in 90ms (Views: 16.5ms | ActiveRecord: 0.4ms)
|
|
2560
|
+
|
|
2561
|
+
|
|
2562
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:18:51 -0500
|
|
2563
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2564
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2565
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (52.0ms)
|
|
2566
|
+
Completed 500 Internal Server Error in 92ms
|
|
2567
|
+
|
|
2568
|
+
|
|
2569
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:18:51 -0500
|
|
2570
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2571
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2572
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
|
2573
|
+
|
|
2574
|
+
|
|
2575
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:18:51 -0500
|
|
2576
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2577
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
2578
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.2ms)
|
|
2579
|
+
Completed 200 OK in 91ms (Views: 15.6ms | ActiveRecord: 0.5ms)
|
|
2580
|
+
|
|
2581
|
+
|
|
2582
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:19:16 -0500
|
|
2583
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2584
|
+
[1m[36mForem::Topic Load (0.3ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2585
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (51.0ms)
|
|
2586
|
+
Completed 500 Internal Server Error in 91ms
|
|
2587
|
+
|
|
2588
|
+
|
|
2589
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:19:17 -0500
|
|
2590
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2591
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2592
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
|
2593
|
+
|
|
2594
|
+
|
|
2595
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:19:17 -0500
|
|
2596
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2597
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
2598
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.0ms)
|
|
2599
|
+
Completed 200 OK in 94ms (Views: 15.1ms | ActiveRecord: 0.7ms)
|
|
2600
|
+
|
|
2601
|
+
|
|
2602
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:20:12 -0500
|
|
2603
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2604
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2605
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (62.1ms)
|
|
2606
|
+
Completed 500 Internal Server Error in 110ms
|
|
2607
|
+
|
|
2608
|
+
|
|
2609
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:20:12 -0500
|
|
2610
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2611
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2612
|
+
Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.2ms)
|
|
2613
|
+
|
|
2614
|
+
|
|
2615
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:20:12 -0500
|
|
2616
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2617
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.8ms)
|
|
2618
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (7.7ms)
|
|
2619
|
+
Completed 200 OK in 110ms (Views: 21.0ms | ActiveRecord: 0.5ms)
|
|
2620
|
+
|
|
2621
|
+
|
|
2622
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:24:23 -0500
|
|
2623
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2624
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2625
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
2626
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2627
|
+
[1m[35mSQL (15.6ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:24:23 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:24:23 UTC +00:00]]
|
|
2628
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2629
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (91.8ms)
|
|
2630
|
+
Completed 200 OK in 132ms (Views: 115.1ms | ActiveRecord: 16.4ms)
|
|
2631
|
+
|
|
2632
|
+
|
|
2633
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:24:23 -0500
|
|
2634
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2635
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
|
|
2636
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.3ms)
|
|
2637
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (14.2ms)
|
|
2638
|
+
Completed 200 OK in 79ms (Views: 15.9ms | ActiveRecord: 0.4ms)
|
|
2639
|
+
|
|
2640
|
+
|
|
2641
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 21:24:23 -0500
|
|
2642
|
+
Processing by Forem::TopicsController#create as HTML
|
|
2643
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
2644
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2645
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 02:24:23 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:24:23 UTC +00:00], ["user_id", nil]]
|
|
2646
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:24:23 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:24:23 UTC +00:00], ["user_id", nil]]
|
|
2647
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
2648
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
2649
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2650
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
2651
|
+
Completed 302 Found in 26ms
|
|
2652
|
+
|
|
2653
|
+
|
|
2654
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:24:23 -0500
|
|
2655
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2656
|
+
Parameters: {"id"=>"1"}
|
|
2657
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2658
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
2659
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.3ms)
|
|
2660
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (27.9ms)
|
|
2661
|
+
Completed 200 OK in 31ms (Views: 29.5ms | ActiveRecord: 0.4ms)
|
|
2662
|
+
|
|
2663
|
+
|
|
2664
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:24:23 -0500
|
|
2665
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2666
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2667
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
|
|
2668
|
+
|
|
2669
|
+
|
|
2670
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:24:23 -0500
|
|
2671
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2672
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
|
|
2673
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.9ms)
|
|
2674
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
|
2675
|
+
|
|
2676
|
+
|
|
2677
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:44:05 -0500
|
|
2678
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2679
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2680
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
2681
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2682
|
+
[1m[35mSQL (14.9ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:44:05 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:44:05 UTC +00:00]]
|
|
2683
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2684
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (58.3ms)
|
|
2685
|
+
Completed 200 OK in 108ms (Views: 91.0ms | ActiveRecord: 15.6ms)
|
|
2686
|
+
|
|
2687
|
+
|
|
2688
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:44:05 -0500
|
|
2689
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2690
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
2691
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.3ms)
|
|
2692
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (13.9ms)
|
|
2693
|
+
Completed 200 OK in 113ms (Views: 15.7ms | ActiveRecord: 0.4ms)
|
|
2694
|
+
|
|
2695
|
+
|
|
2696
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 21:44:06 -0500
|
|
2697
|
+
Processing by Forem::TopicsController#create as HTML
|
|
2698
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
2699
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2700
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 02:44:06 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:44:06 UTC +00:00], ["user_id", nil]]
|
|
2701
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:44:06 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:44:06 UTC +00:00], ["user_id", nil]]
|
|
2702
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
2703
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
2704
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2705
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
2706
|
+
Completed 302 Found in 26ms
|
|
2707
|
+
|
|
2708
|
+
|
|
2709
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:44:06 -0500
|
|
2710
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2711
|
+
Parameters: {"id"=>"1"}
|
|
2712
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2713
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
2714
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.0ms)
|
|
2715
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (28.0ms)
|
|
2716
|
+
Completed 200 OK in 31ms (Views: 29.7ms | ActiveRecord: 0.3ms)
|
|
2717
|
+
|
|
2718
|
+
|
|
2719
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:44:06 -0500
|
|
2720
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2721
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2722
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
|
|
2723
|
+
|
|
2724
|
+
|
|
2725
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:44:06 -0500
|
|
2726
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2727
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
|
|
2728
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.8ms)
|
|
2729
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
|
2730
|
+
|
|
2731
|
+
|
|
2732
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:46:02 -0500
|
|
2733
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2734
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2735
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
2736
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2737
|
+
[1m[35mSQL (16.9ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:46:02 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:46:02 UTC +00:00]]
|
|
2738
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2739
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (65.1ms)
|
|
2740
|
+
Completed 200 OK in 113ms (Views: 94.1ms | ActiveRecord: 17.7ms)
|
|
2741
|
+
|
|
2742
|
+
|
|
2743
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:46:02 -0500
|
|
2744
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2745
|
+
Completed 500 Internal Server Error in 55ms
|
|
2746
|
+
|
|
2747
|
+
|
|
2748
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:46:02 -0500
|
|
2749
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2750
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2751
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
|
2752
|
+
|
|
2753
|
+
|
|
2754
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:46:02 -0500
|
|
2755
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2756
|
+
Completed 500 Internal Server Error in 18ms
|
|
2757
|
+
|
|
2758
|
+
|
|
2759
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
|
|
2760
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2761
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2762
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
2763
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2764
|
+
[1m[35mSQL (17.2ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:47:52 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:47:52 UTC +00:00]]
|
|
2765
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2766
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (67.8ms)
|
|
2767
|
+
Completed 200 OK in 117ms (Views: 98.2ms | ActiveRecord: 18.0ms)
|
|
2768
|
+
|
|
2769
|
+
|
|
2770
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
|
|
2771
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2772
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
2773
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.4ms)
|
|
2774
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (7.4ms)
|
|
2775
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (24.2ms)
|
|
2776
|
+
Completed 200 OK in 144ms (Views: 26.8ms | ActiveRecord: 0.6ms)
|
|
2777
|
+
|
|
2778
|
+
|
|
2779
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
|
|
2780
|
+
Processing by Forem::TopicsController#create as HTML
|
|
2781
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
2782
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
2783
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
2784
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 02:47:52 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:47:52 UTC +00:00], ["user_id", nil]]
|
|
2785
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:47:52 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:47:52 UTC +00:00], ["user_id", nil]]
|
|
2786
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
2787
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
2788
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2789
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
2790
|
+
Completed 302 Found in 32ms
|
|
2791
|
+
|
|
2792
|
+
|
|
2793
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
|
|
2794
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2795
|
+
Parameters: {"id"=>"1"}
|
|
2796
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2797
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
2798
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (30.5ms)
|
|
2799
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (32.8ms)
|
|
2800
|
+
Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.4ms)
|
|
2801
|
+
|
|
2802
|
+
|
|
2803
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
|
|
2804
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2805
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2806
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms)
|
|
2807
|
+
|
|
2808
|
+
|
|
2809
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
|
|
2810
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2811
|
+
Redirected to http://www.example.com/sign_in
|
|
2812
|
+
Completed 302 Found in 36ms
|
|
2813
|
+
|
|
2814
|
+
|
|
2815
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
|
|
2816
|
+
|
|
2817
|
+
|
|
2818
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
|
|
2819
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2820
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2821
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
2822
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2823
|
+
[1m[35mSQL (17.8ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:51:01 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:51:01 UTC +00:00]]
|
|
2824
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2825
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (104.5ms)
|
|
2826
|
+
Completed 200 OK in 155ms (Views: 135.2ms | ActiveRecord: 18.6ms)
|
|
2827
|
+
|
|
2828
|
+
|
|
2829
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
|
|
2830
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2831
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
2832
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.3ms)
|
|
2833
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (43.7ms)
|
|
2834
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (54.7ms)
|
|
2835
|
+
Completed 200 OK in 132ms (Views: 56.7ms | ActiveRecord: 0.6ms)
|
|
2836
|
+
|
|
2837
|
+
|
|
2838
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
|
|
2839
|
+
Processing by Forem::TopicsController#create as HTML
|
|
2840
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
2841
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
2842
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
2843
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 02:51:01 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:51:01 UTC +00:00], ["user_id", nil]]
|
|
2844
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:51:01 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:51:01 UTC +00:00], ["user_id", nil]]
|
|
2845
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
2846
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
2847
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2848
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
2849
|
+
Completed 302 Found in 32ms
|
|
2850
|
+
|
|
2851
|
+
|
|
2852
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
|
|
2853
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2854
|
+
Parameters: {"id"=>"1"}
|
|
2855
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2856
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
2857
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (31.1ms)
|
|
2858
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (34.2ms)
|
|
2859
|
+
Completed 200 OK in 38ms (Views: 36.4ms | ActiveRecord: 0.4ms)
|
|
2860
|
+
|
|
2861
|
+
|
|
2862
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
|
|
2863
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2864
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2865
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
|
2866
|
+
|
|
2867
|
+
|
|
2868
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
|
|
2869
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2870
|
+
Redirected to http://www.example.com/sign_in
|
|
2871
|
+
Completed 302 Found in 10ms
|
|
2872
|
+
|
|
2873
|
+
|
|
2874
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
|
|
2875
|
+
Processing by FakeController#sign_in as HTML
|
|
2876
|
+
Completed 200 OK in 48ms (Views: 47.9ms | ActiveRecord: 0.0ms)
|
|
2877
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2878
|
+
[1m[35mSQL (16.8ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:51:56 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:51:56 UTC +00:00], ["user_id", nil]]
|
|
2879
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 02:51:56 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:51:56 UTC +00:00], ["user_id", nil]]
|
|
2880
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
2881
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
2882
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2883
|
+
|
|
2884
|
+
|
|
2885
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
|
|
2886
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2887
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2888
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (106.4ms)
|
|
2889
|
+
Completed 500 Internal Server Error in 152ms
|
|
2890
|
+
|
|
2891
|
+
|
|
2892
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
|
|
2893
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2894
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
2895
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
2896
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2897
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 02:51:57 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:51:57 UTC +00:00]]
|
|
2898
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2899
|
+
Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 1.2ms)
|
|
2900
|
+
|
|
2901
|
+
|
|
2902
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
|
|
2903
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2904
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
2905
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
|
|
2906
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.0ms)
|
|
2907
|
+
Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.1ms)
|
|
2908
|
+
|
|
2909
|
+
|
|
2910
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
|
|
2911
|
+
Processing by Forem::TopicsController#create as HTML
|
|
2912
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
2913
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
2914
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2915
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:51:57 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:51:57 UTC +00:00], ["user_id", nil]]
|
|
2916
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 02:51:57 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:51:57 UTC +00:00], ["user_id", nil]]
|
|
2917
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
2918
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
2919
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2920
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
2921
|
+
Completed 302 Found in 8ms
|
|
2922
|
+
|
|
2923
|
+
|
|
2924
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
|
|
2925
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2926
|
+
Parameters: {"id"=>"1"}
|
|
2927
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2928
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
2929
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (29.8ms)
|
|
2930
|
+
Completed 200 OK in 35ms (Views: 33.9ms | ActiveRecord: 0.3ms)
|
|
2931
|
+
|
|
2932
|
+
|
|
2933
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
|
|
2934
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2935
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2936
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms)
|
|
2937
|
+
|
|
2938
|
+
|
|
2939
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
|
|
2940
|
+
Processing by Forem::TopicsController#new as HTML
|
|
2941
|
+
Redirected to http://www.example.com/sign_in
|
|
2942
|
+
Completed 302 Found in 9ms
|
|
2943
|
+
|
|
2944
|
+
|
|
2945
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
|
|
2946
|
+
Processing by FakeController#sign_in as HTML
|
|
2947
|
+
Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
|
|
2948
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2949
|
+
[1m[35mSQL (17.5ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:52:47 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:52:47 UTC +00:00], ["user_id", nil]]
|
|
2950
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 02:52:47 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:52:47 UTC +00:00], ["user_id", nil]]
|
|
2951
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
2952
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
2953
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2954
|
+
|
|
2955
|
+
|
|
2956
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
|
|
2957
|
+
Processing by Forem::TopicsController#index as HTML
|
|
2958
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
2959
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
2960
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2961
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00]]
|
|
2962
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2963
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (27.2ms)
|
|
2964
|
+
Completed 200 OK in 78ms (Views: 75.8ms | ActiveRecord: 1.3ms)
|
|
2965
|
+
|
|
2966
|
+
|
|
2967
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
|
|
2968
|
+
Processing by Forem::TopicsController#show as HTML
|
|
2969
|
+
Parameters: {"id"=>"1"}
|
|
2970
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2971
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
2972
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (73.8ms)
|
|
2973
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (87.1ms)
|
|
2974
|
+
Completed 200 OK in 90ms (Views: 88.8ms | ActiveRecord: 0.4ms)
|
|
2975
|
+
|
|
2976
|
+
|
|
2977
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
|
|
2978
|
+
Processing by Forem::PostsController#new as HTML
|
|
2979
|
+
Parameters: {"topic_id"=>"1"}
|
|
2980
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2981
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
|
|
2982
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (15.6ms)
|
|
2983
|
+
Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.1ms)
|
|
2984
|
+
|
|
2985
|
+
|
|
2986
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
|
|
2987
|
+
Processing by Forem::PostsController#create as HTML
|
|
2988
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
2989
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2990
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2991
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["user_id", nil]]
|
|
2992
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
2993
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
2994
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2995
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
2996
|
+
Completed 302 Found in 6ms
|
|
2997
|
+
|
|
2998
|
+
|
|
2999
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
|
|
3000
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3001
|
+
Parameters: {"id"=>"1"}
|
|
3002
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3003
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
3004
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.7ms)
|
|
3005
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (3.0ms)
|
|
3006
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.3ms)
|
|
3007
|
+
|
|
3008
|
+
|
|
3009
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
|
|
3010
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3011
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3012
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3013
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3014
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00]]
|
|
3015
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3016
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.8ms)
|
|
3017
|
+
|
|
3018
|
+
|
|
3019
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
|
|
3020
|
+
Processing by Forem::TopicsController#new as HTML
|
|
3021
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3022
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
|
|
3023
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.5ms)
|
|
3024
|
+
Completed 200 OK in 9ms (Views: 6.6ms | ActiveRecord: 0.1ms)
|
|
3025
|
+
|
|
3026
|
+
|
|
3027
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
|
|
3028
|
+
Processing by Forem::TopicsController#create as HTML
|
|
3029
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
3030
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3031
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
3032
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["user_id", nil]]
|
|
3033
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["user_id", nil]]
|
|
3034
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
3035
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
3036
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3037
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
3038
|
+
Completed 302 Found in 8ms
|
|
3039
|
+
|
|
3040
|
+
|
|
3041
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
|
|
3042
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3043
|
+
Parameters: {"id"=>"1"}
|
|
3044
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3045
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3046
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.2ms)
|
|
3047
|
+
Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.3ms)
|
|
3048
|
+
|
|
3049
|
+
|
|
3050
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
|
|
3051
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3052
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
3053
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.2ms)
|
|
3054
|
+
|
|
3055
|
+
|
|
3056
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
|
|
3057
|
+
Processing by Forem::TopicsController#new as HTML
|
|
3058
|
+
Redirected to http://www.example.com/sign_in
|
|
3059
|
+
Completed 302 Found in 1ms
|
|
3060
|
+
|
|
3061
|
+
|
|
3062
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
|
|
3063
|
+
Processing by FakeController#sign_in as HTML
|
|
3064
|
+
Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms)
|
|
3065
|
+
|
|
3066
|
+
|
|
3067
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
|
|
3068
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3069
|
+
[1m[36mForem::Topic Load (0.3ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3070
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3071
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3072
|
+
[1m[35mSQL (14.4ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:20:42 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:20:42 UTC +00:00]]
|
|
3073
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3074
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (89.9ms)
|
|
3075
|
+
Completed 200 OK in 132ms (Views: 115.3ms | ActiveRecord: 15.2ms)
|
|
3076
|
+
|
|
3077
|
+
|
|
3078
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
|
|
3079
|
+
Processing by Forem::TopicsController#new as HTML
|
|
3080
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3081
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
3082
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (41.3ms)
|
|
3083
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (50.8ms)
|
|
3084
|
+
Completed 200 OK in 116ms (Views: 52.6ms | ActiveRecord: 0.6ms)
|
|
3085
|
+
|
|
3086
|
+
|
|
3087
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
|
|
3088
|
+
Processing by Forem::TopicsController#create as HTML
|
|
3089
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
3090
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3091
|
+
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3092
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3093
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:20:42 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:20:42 UTC +00:00], ["user_id", 1]]
|
|
3094
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:20:42 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:20:42 UTC +00:00], ["user_id", 1]]
|
|
3095
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3096
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3097
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3098
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
3099
|
+
Completed 302 Found in 39ms
|
|
3100
|
+
|
|
3101
|
+
|
|
3102
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
|
|
3103
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3104
|
+
Parameters: {"id"=>"1"}
|
|
3105
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3106
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
3107
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
|
3108
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.9ms)
|
|
3109
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (29.0ms)
|
|
3110
|
+
Completed 200 OK in 32ms (Views: 30.5ms | ActiveRecord: 0.4ms)
|
|
3111
|
+
|
|
3112
|
+
|
|
3113
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
|
|
3114
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3115
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
3116
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms)
|
|
3117
|
+
|
|
3118
|
+
|
|
3119
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
|
|
3120
|
+
Processing by Forem::TopicsController#new as HTML
|
|
3121
|
+
Redirected to http://www.example.com/sign_in
|
|
3122
|
+
Completed 302 Found in 9ms
|
|
3123
|
+
|
|
3124
|
+
|
|
3125
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
|
|
3126
|
+
Processing by FakeController#sign_in as HTML
|
|
3127
|
+
Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
|
|
3128
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3129
|
+
[1m[35mSQL (15.2ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:36:29 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:36:29 UTC +00:00], ["user_id", nil]]
|
|
3130
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:36:29 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:36:29 UTC +00:00], ["user_id", nil]]
|
|
3131
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3132
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3133
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3134
|
+
|
|
3135
|
+
|
|
3136
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:36:29 -0500
|
|
3137
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3138
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3139
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3140
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3141
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:36:30 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:36:30 UTC +00:00]]
|
|
3142
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3143
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (23.5ms)
|
|
3144
|
+
Completed 200 OK in 63ms (Views: 60.9ms | ActiveRecord: 1.3ms)
|
|
3145
|
+
|
|
3146
|
+
|
|
3147
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:36:30 -0500
|
|
3148
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3149
|
+
Parameters: {"id"=>"1"}
|
|
3150
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3151
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3152
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (27.1ms)
|
|
3153
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (76.6ms)
|
|
3154
|
+
Completed 200 OK in 79ms (Views: 78.0ms | ActiveRecord: 0.4ms)
|
|
3155
|
+
|
|
3156
|
+
|
|
3157
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:36:30 -0500
|
|
3158
|
+
Processing by Forem::PostsController#new as HTML
|
|
3159
|
+
Parameters: {"topic_id"=>"1"}
|
|
3160
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3161
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
3162
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (10.6ms)
|
|
3163
|
+
Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms)
|
|
3164
|
+
|
|
3165
|
+
|
|
3166
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:36:30 -0500
|
|
3167
|
+
Processing by Forem::PostsController#create as HTML
|
|
3168
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
3169
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3170
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
3171
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:36:30 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:36:30 UTC +00:00], ["user_id", nil]]
|
|
3172
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3173
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3174
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3175
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
3176
|
+
Completed 302 Found in 5ms
|
|
3177
|
+
|
|
3178
|
+
|
|
3179
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:36:30 -0500
|
|
3180
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3181
|
+
Parameters: {"id"=>"1"}
|
|
3182
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3183
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
3184
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.5ms)
|
|
3185
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.6ms)
|
|
3186
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
|
|
3187
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3188
|
+
[1m[35mSQL (14.2ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:38:07 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:38:07 UTC +00:00], ["user_id", nil]]
|
|
3189
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:38:07 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:38:07 UTC +00:00], ["user_id", nil]]
|
|
3190
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3191
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3192
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3193
|
+
|
|
3194
|
+
|
|
3195
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:38:08 -0500
|
|
3196
|
+
Processing by Forem::PostsController#new as HTML
|
|
3197
|
+
Parameters: {"topic_id"=>"1"}
|
|
3198
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3199
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
3200
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (30.6ms)
|
|
3201
|
+
Completed 200 OK in 73ms (Views: 71.4ms | ActiveRecord: 0.2ms)
|
|
3202
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
3203
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["user_id", nil]]
|
|
3204
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["user_id", nil]]
|
|
3205
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
3206
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
3207
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3208
|
+
|
|
3209
|
+
|
|
3210
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:38:08 -0500
|
|
3211
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3212
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
3213
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3214
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
3215
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00]]
|
|
3216
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3217
|
+
Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 1.2ms)
|
|
3218
|
+
|
|
3219
|
+
|
|
3220
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:38:08 -0500
|
|
3221
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3222
|
+
Parameters: {"id"=>"1"}
|
|
3223
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3224
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
3225
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.0ms)
|
|
3226
|
+
Completed 200 OK in 31ms (Views: 29.7ms | ActiveRecord: 0.3ms)
|
|
3227
|
+
|
|
3228
|
+
|
|
3229
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:38:08 -0500
|
|
3230
|
+
Processing by Forem::PostsController#new as HTML
|
|
3231
|
+
Parameters: {"topic_id"=>"1"}
|
|
3232
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3233
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.6ms)
|
|
3234
|
+
Completed 200 OK in 5ms (Views: 3.3ms | ActiveRecord: 0.1ms)
|
|
3235
|
+
|
|
3236
|
+
|
|
3237
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:38:08 -0500
|
|
3238
|
+
Processing by Forem::PostsController#create as HTML
|
|
3239
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
3240
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3241
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3242
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["user_id", nil]]
|
|
3243
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
3244
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
3245
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3246
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
3247
|
+
Completed 302 Found in 5ms
|
|
3248
|
+
|
|
3249
|
+
|
|
3250
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:38:08 -0500
|
|
3251
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3252
|
+
Parameters: {"id"=>"1"}
|
|
3253
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3254
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3255
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.6ms)
|
|
3256
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
|
|
3257
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3258
|
+
[1m[35mSQL (14.4ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:05 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:39:05 UTC +00:00], ["user_id", nil]]
|
|
3259
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:39:05 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:39:05 UTC +00:00], ["user_id", nil]]
|
|
3260
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3261
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3262
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3263
|
+
|
|
3264
|
+
|
|
3265
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:39:06 -0500
|
|
3266
|
+
Processing by Forem::PostsController#new as HTML
|
|
3267
|
+
Parameters: {"topic_id"=>"1"}
|
|
3268
|
+
Completed 500 Internal Server Error in 15ms
|
|
3269
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3270
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:06 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:39:06 UTC +00:00], ["user_id", nil]]
|
|
3271
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:39:06 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:39:06 UTC +00:00], ["user_id", nil]]
|
|
3272
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3273
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3274
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3275
|
+
|
|
3276
|
+
|
|
3277
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:39:06 -0500
|
|
3278
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3279
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3280
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3281
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3282
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:06 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:39:06 UTC +00:00]]
|
|
3283
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3284
|
+
Completed 200 OK in 63ms (Views: 61.0ms | ActiveRecord: 1.1ms)
|
|
3285
|
+
|
|
3286
|
+
|
|
3287
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:39:06 -0500
|
|
3288
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3289
|
+
Parameters: {"id"=>"1"}
|
|
3290
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3291
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3292
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.9ms)
|
|
3293
|
+
Completed 200 OK in 41ms (Views: 39.6ms | ActiveRecord: 0.4ms)
|
|
3294
|
+
|
|
3295
|
+
|
|
3296
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:39:06 -0500
|
|
3297
|
+
Processing by Forem::PostsController#new as HTML
|
|
3298
|
+
Parameters: {"topic_id"=>"1"}
|
|
3299
|
+
Completed 500 Internal Server Error in 23ms
|
|
3300
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3301
|
+
[1m[35mSQL (14.4ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:15 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:39:15 UTC +00:00], ["user_id", nil]]
|
|
3302
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:39:15 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:39:15 UTC +00:00], ["user_id", nil]]
|
|
3303
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3304
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3305
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3306
|
+
|
|
3307
|
+
|
|
3308
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:39:15 -0500
|
|
3309
|
+
Processing by Forem::PostsController#new as HTML
|
|
3310
|
+
Parameters: {"topic_id"=>"1"}
|
|
3311
|
+
Completed 500 Internal Server Error in 16ms
|
|
3312
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3313
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:16 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:39:16 UTC +00:00], ["user_id", nil]]
|
|
3314
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:39:16 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:39:16 UTC +00:00], ["user_id", nil]]
|
|
3315
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3316
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3317
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3318
|
+
|
|
3319
|
+
|
|
3320
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:39:16 -0500
|
|
3321
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3322
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3323
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3324
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3325
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:16 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:39:16 UTC +00:00]]
|
|
3326
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3327
|
+
Completed 200 OK in 64ms (Views: 61.4ms | ActiveRecord: 1.1ms)
|
|
3328
|
+
|
|
3329
|
+
|
|
3330
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:39:16 -0500
|
|
3331
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3332
|
+
Parameters: {"id"=>"1"}
|
|
3333
|
+
[1m[35mForem::Topic Load (0.3ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3334
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3335
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.9ms)
|
|
3336
|
+
Completed 200 OK in 41ms (Views: 39.1ms | ActiveRecord: 0.5ms)
|
|
3337
|
+
|
|
3338
|
+
|
|
3339
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:39:16 -0500
|
|
3340
|
+
Processing by Forem::PostsController#new as HTML
|
|
3341
|
+
Parameters: {"topic_id"=>"1"}
|
|
3342
|
+
Completed 500 Internal Server Error in 23ms
|
|
3343
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3344
|
+
[1m[35mSQL (13.8ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["user_id", nil]]
|
|
3345
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["user_id", nil]]
|
|
3346
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3347
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3348
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3349
|
+
|
|
3350
|
+
|
|
3351
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:40:21 -0500
|
|
3352
|
+
Processing by Forem::PostsController#new as HTML
|
|
3353
|
+
Parameters: {"topic_id"=>"1"}
|
|
3354
|
+
Redirected to http://www.example.com/sign_in
|
|
3355
|
+
Completed 302 Found in 9ms
|
|
3356
|
+
|
|
3357
|
+
|
|
3358
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:40:21 -0500
|
|
3359
|
+
Processing by FakeController#sign_in as HTML
|
|
3360
|
+
Rendered text template (0.0ms)
|
|
3361
|
+
Completed 200 OK in 48ms (Views: 47.1ms | ActiveRecord: 0.0ms)
|
|
3362
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3363
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["user_id", nil]]
|
|
3364
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["user_id", nil]]
|
|
3365
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3366
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3367
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3368
|
+
|
|
3369
|
+
|
|
3370
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:40:21 -0500
|
|
3371
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3372
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3373
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3374
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3375
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00]]
|
|
3376
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3377
|
+
Completed 200 OK in 31ms (Views: 29.3ms | ActiveRecord: 1.2ms)
|
|
3378
|
+
|
|
3379
|
+
|
|
3380
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:40:22 -0500
|
|
3381
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3382
|
+
Parameters: {"id"=>"1"}
|
|
3383
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3384
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3385
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (64.9ms)
|
|
3386
|
+
Completed 200 OK in 78ms (Views: 76.7ms | ActiveRecord: 0.4ms)
|
|
3387
|
+
|
|
3388
|
+
|
|
3389
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:40:22 -0500
|
|
3390
|
+
Processing by Forem::PostsController#new as HTML
|
|
3391
|
+
Parameters: {"topic_id"=>"1"}
|
|
3392
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3393
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3394
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
3395
|
+
Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.2ms)
|
|
3396
|
+
|
|
3397
|
+
|
|
3398
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:40:22 -0500
|
|
3399
|
+
Processing by Forem::PostsController#create as HTML
|
|
3400
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
3401
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3402
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3403
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
3404
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:40:22 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:40:22 UTC +00:00], ["user_id", nil]]
|
|
3405
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3406
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3407
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3408
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
3409
|
+
Completed 302 Found in 6ms
|
|
3410
|
+
|
|
3411
|
+
|
|
3412
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:40:22 -0500
|
|
3413
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3414
|
+
Parameters: {"id"=>"1"}
|
|
3415
|
+
[1m[36mForem::Topic Load (0.0ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3416
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
3417
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.6ms)
|
|
3418
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.2ms)
|
|
3419
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3420
|
+
[1m[35mSQL (14.4ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:41:38 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:41:38 UTC +00:00], ["user_id", nil]]
|
|
3421
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:41:38 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:41:38 UTC +00:00], ["user_id", nil]]
|
|
3422
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3423
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3424
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3425
|
+
|
|
3426
|
+
|
|
3427
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
|
|
3428
|
+
Processing by Forem::PostsController#new as HTML
|
|
3429
|
+
Parameters: {"topic_id"=>"1"}
|
|
3430
|
+
Redirected to http://www.example.com/sign_in
|
|
3431
|
+
Completed 302 Found in 8ms
|
|
3432
|
+
|
|
3433
|
+
|
|
3434
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
|
|
3435
|
+
Processing by FakeController#sign_in as HTML
|
|
3436
|
+
Rendered text template (0.0ms)
|
|
3437
|
+
Completed 200 OK in 58ms (Views: 58.0ms | ActiveRecord: 0.0ms)
|
|
3438
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3439
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["user_id", nil]]
|
|
3440
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["user_id", nil]]
|
|
3441
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3442
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3443
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3444
|
+
|
|
3445
|
+
|
|
3446
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
|
|
3447
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3448
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3449
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3450
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3451
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00]]
|
|
3452
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3453
|
+
Completed 200 OK in 34ms (Views: 31.8ms | ActiveRecord: 1.2ms)
|
|
3454
|
+
|
|
3455
|
+
|
|
3456
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
|
|
3457
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3458
|
+
Parameters: {"id"=>"1"}
|
|
3459
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3460
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3461
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (27.1ms)
|
|
3462
|
+
Completed 200 OK in 42ms (Views: 40.2ms | ActiveRecord: 0.5ms)
|
|
3463
|
+
|
|
3464
|
+
|
|
3465
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
|
|
3466
|
+
Processing by Forem::PostsController#new as HTML
|
|
3467
|
+
Parameters: {"topic_id"=>"1"}
|
|
3468
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3469
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3470
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
3471
|
+
Completed 200 OK in 11ms (Views: 8.9ms | ActiveRecord: 0.2ms)
|
|
3472
|
+
|
|
3473
|
+
|
|
3474
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
|
|
3475
|
+
Processing by Forem::PostsController#create as HTML
|
|
3476
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
3477
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3478
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3479
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
3480
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["user_id", nil]]
|
|
3481
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3482
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3483
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3484
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
3485
|
+
Completed 302 Found in 6ms
|
|
3486
|
+
|
|
3487
|
+
|
|
3488
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
|
|
3489
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3490
|
+
Parameters: {"id"=>"1"}
|
|
3491
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3492
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
3493
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.5ms)
|
|
3494
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.3ms)
|
|
3495
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3496
|
+
[1m[35mSQL (18.1ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:43:46 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:43:46 UTC +00:00]]
|
|
3497
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3498
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
3499
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:43:46 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:43:46 UTC +00:00], ["user_id", 1]]
|
|
3500
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:43:46 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:43:46 UTC +00:00], ["user_id", 1]]
|
|
3501
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
3502
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
3503
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3504
|
+
|
|
3505
|
+
|
|
3506
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
|
|
3507
|
+
Processing by Forem::PostsController#new as HTML
|
|
3508
|
+
Parameters: {"topic_id"=>"1"}
|
|
3509
|
+
Redirected to http://www.example.com/sign_in
|
|
3510
|
+
Completed 302 Found in 8ms
|
|
3511
|
+
|
|
3512
|
+
|
|
3513
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
|
|
3514
|
+
Processing by FakeController#sign_in as HTML
|
|
3515
|
+
Rendered text template (0.0ms)
|
|
3516
|
+
Completed 200 OK in 46ms (Views: 45.6ms | ActiveRecord: 0.0ms)
|
|
3517
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
3518
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00]]
|
|
3519
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3520
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3521
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["user_id", 1]]
|
|
3522
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["user_id", 1]]
|
|
3523
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3524
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3525
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3526
|
+
|
|
3527
|
+
|
|
3528
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
|
|
3529
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3530
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3531
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3532
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3533
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00]]
|
|
3534
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3535
|
+
Completed 200 OK in 29ms (Views: 27.3ms | ActiveRecord: 0.9ms)
|
|
3536
|
+
|
|
3537
|
+
|
|
3538
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
|
|
3539
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3540
|
+
Parameters: {"id"=>"1"}
|
|
3541
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3542
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3543
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
|
3544
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.3ms)
|
|
3545
|
+
Completed 200 OK in 41ms (Views: 39.6ms | ActiveRecord: 0.6ms)
|
|
3546
|
+
|
|
3547
|
+
|
|
3548
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
|
|
3549
|
+
Processing by Forem::PostsController#new as HTML
|
|
3550
|
+
Parameters: {"topic_id"=>"1"}
|
|
3551
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3552
|
+
[1m[35mForem::Topic Load (0.0ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3553
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
3554
|
+
Completed 200 OK in 10ms (Views: 7.9ms | ActiveRecord: 0.2ms)
|
|
3555
|
+
|
|
3556
|
+
|
|
3557
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
|
|
3558
|
+
Processing by Forem::PostsController#create as HTML
|
|
3559
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
3560
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3561
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3562
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3563
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["user_id", nil]]
|
|
3564
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
3565
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
3566
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3567
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
3568
|
+
Completed 302 Found in 5ms
|
|
3569
|
+
|
|
3570
|
+
|
|
3571
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
|
|
3572
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3573
|
+
Parameters: {"id"=>"1"}
|
|
3574
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3575
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3576
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
|
3577
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.5ms)
|
|
3578
|
+
Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.3ms)
|
|
3579
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3580
|
+
[1m[35mSQL (15.9ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:49:09 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:49:09 UTC +00:00]]
|
|
3581
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3582
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
3583
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:49:09 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:49:09 UTC +00:00], ["user_id", 1]]
|
|
3584
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:49:09 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:49:09 UTC +00:00], ["user_id", 1]]
|
|
3585
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
3586
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
3587
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3588
|
+
|
|
3589
|
+
|
|
3590
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
|
|
3591
|
+
Processing by Forem::PostsController#new as HTML
|
|
3592
|
+
Parameters: {"topic_id"=>"1"}
|
|
3593
|
+
Redirected to http://www.example.com/sign_in
|
|
3594
|
+
Completed 302 Found in 9ms
|
|
3595
|
+
|
|
3596
|
+
|
|
3597
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
|
|
3598
|
+
Processing by FakeController#sign_in as HTML
|
|
3599
|
+
Rendered text template (0.0ms)
|
|
3600
|
+
Completed 200 OK in 54ms (Views: 53.1ms | ActiveRecord: 0.0ms)
|
|
3601
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
3602
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00]]
|
|
3603
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3604
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3605
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["user_id", 1]]
|
|
3606
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["user_id", 1]]
|
|
3607
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3608
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3609
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3610
|
+
|
|
3611
|
+
|
|
3612
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
|
|
3613
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3614
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3615
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3616
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3617
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00]]
|
|
3618
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3619
|
+
Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.7ms)
|
|
3620
|
+
|
|
3621
|
+
|
|
3622
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
|
|
3623
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3624
|
+
Parameters: {"id"=>"1"}
|
|
3625
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3626
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3627
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
|
3628
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (33.5ms)
|
|
3629
|
+
Completed 200 OK in 50ms (Views: 48.3ms | ActiveRecord: 0.6ms)
|
|
3630
|
+
|
|
3631
|
+
|
|
3632
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
|
|
3633
|
+
Processing by Forem::PostsController#new as HTML
|
|
3634
|
+
Parameters: {"topic_id"=>"1"}
|
|
3635
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3636
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3637
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.7ms)
|
|
3638
|
+
Completed 200 OK in 14ms (Views: 11.5ms | ActiveRecord: 0.2ms)
|
|
3639
|
+
|
|
3640
|
+
|
|
3641
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
|
|
3642
|
+
Processing by Forem::PostsController#create as HTML
|
|
3643
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
3644
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3645
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3646
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3647
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["user_id", nil]]
|
|
3648
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
3649
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
3650
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3651
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
3652
|
+
Completed 302 Found in 8ms
|
|
3653
|
+
|
|
3654
|
+
|
|
3655
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
|
|
3656
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3657
|
+
Parameters: {"id"=>"1"}
|
|
3658
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3659
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3660
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
|
3661
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.0ms)
|
|
3662
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.3ms)
|
|
3663
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3664
|
+
[1m[35mSQL (14.0ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:50:23 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:50:23 UTC +00:00]]
|
|
3665
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3666
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
3667
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:50:23 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:50:23 UTC +00:00], ["user_id", 1]]
|
|
3668
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:50:23 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:50:23 UTC +00:00], ["user_id", 1]]
|
|
3669
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
3670
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
3671
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3672
|
+
|
|
3673
|
+
|
|
3674
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
|
|
3675
|
+
Processing by Forem::PostsController#new as HTML
|
|
3676
|
+
Parameters: {"topic_id"=>"1"}
|
|
3677
|
+
Redirected to http://www.example.com/sign_in
|
|
3678
|
+
Completed 302 Found in 8ms
|
|
3679
|
+
|
|
3680
|
+
|
|
3681
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
|
|
3682
|
+
Processing by FakeController#sign_in as HTML
|
|
3683
|
+
Rendered text template (0.0ms)
|
|
3684
|
+
Completed 200 OK in 45ms (Views: 44.5ms | ActiveRecord: 0.0ms)
|
|
3685
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
3686
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00]]
|
|
3687
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3688
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3689
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["user_id", 1]]
|
|
3690
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["user_id", 1]]
|
|
3691
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3692
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3693
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3694
|
+
|
|
3695
|
+
|
|
3696
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
|
|
3697
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3698
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3699
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3700
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3701
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00]]
|
|
3702
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3703
|
+
Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.6ms)
|
|
3704
|
+
|
|
3705
|
+
|
|
3706
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
|
|
3707
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3708
|
+
Parameters: {"id"=>"1"}
|
|
3709
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3710
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3711
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
|
3712
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.5ms)
|
|
3713
|
+
Completed 200 OK in 41ms (Views: 39.1ms | ActiveRecord: 0.5ms)
|
|
3714
|
+
|
|
3715
|
+
|
|
3716
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
|
|
3717
|
+
Processing by Forem::PostsController#new as HTML
|
|
3718
|
+
Parameters: {"topic_id"=>"1"}
|
|
3719
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3720
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3721
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
3722
|
+
Completed 200 OK in 10ms (Views: 7.9ms | ActiveRecord: 0.2ms)
|
|
3723
|
+
|
|
3724
|
+
|
|
3725
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
|
|
3726
|
+
Processing by Forem::PostsController#create as HTML
|
|
3727
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
3728
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3729
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3730
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3731
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
3732
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["user_id", 2]]
|
|
3733
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3734
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3735
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3736
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
3737
|
+
Completed 302 Found in 5ms
|
|
3738
|
+
|
|
3739
|
+
|
|
3740
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
|
|
3741
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3742
|
+
Parameters: {"id"=>"1"}
|
|
3743
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3744
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
3745
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
|
3746
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
|
|
3747
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.3ms)
|
|
3748
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.3ms)
|
|
3749
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3750
|
+
[1m[35mSQL (14.6ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:02 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:54:02 UTC +00:00]]
|
|
3751
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3752
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
3753
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:54:02 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:54:02 UTC +00:00], ["user_id", 1]]
|
|
3754
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:02 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:54:02 UTC +00:00], ["user_id", 1]]
|
|
3755
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
3756
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
3757
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3758
|
+
|
|
3759
|
+
|
|
3760
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:54:03 -0500
|
|
3761
|
+
Processing by Forem::PostsController#new as HTML
|
|
3762
|
+
Parameters: {"topic_id"=>"1"}
|
|
3763
|
+
Redirected to http://www.example.com/sign_in
|
|
3764
|
+
Completed 302 Found in 47ms
|
|
3765
|
+
|
|
3766
|
+
|
|
3767
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:54:03 -0500
|
|
3768
|
+
Processing by FakeController#sign_in as HTML
|
|
3769
|
+
Rendered text template (0.0ms)
|
|
3770
|
+
Completed 200 OK in 43ms (Views: 43.1ms | ActiveRecord: 0.0ms)
|
|
3771
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
3772
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00]]
|
|
3773
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3774
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3775
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["user_id", 1]]
|
|
3776
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["user_id", 1]]
|
|
3777
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3778
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3779
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3780
|
+
|
|
3781
|
+
|
|
3782
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
|
|
3783
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3784
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3785
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3786
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3787
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00]]
|
|
3788
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3789
|
+
Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.7ms)
|
|
3790
|
+
|
|
3791
|
+
|
|
3792
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
|
|
3793
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3794
|
+
Parameters: {"id"=>"1"}
|
|
3795
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3796
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3797
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
|
3798
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.7ms)
|
|
3799
|
+
Completed 200 OK in 40ms (Views: 38.5ms | ActiveRecord: 0.5ms)
|
|
3800
|
+
|
|
3801
|
+
|
|
3802
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
|
|
3803
|
+
Processing by Forem::PostsController#new as HTML
|
|
3804
|
+
Parameters: {"topic_id"=>"1"}
|
|
3805
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3806
|
+
[1m[35mForem::Topic Load (0.0ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3807
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
3808
|
+
Completed 200 OK in 10ms (Views: 7.7ms | ActiveRecord: 0.2ms)
|
|
3809
|
+
|
|
3810
|
+
|
|
3811
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
|
|
3812
|
+
Processing by Forem::PostsController#create as HTML
|
|
3813
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
3814
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3815
|
+
[1m[35mForem::Topic Load (0.0ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3816
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3817
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
3818
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["user_id", 2]]
|
|
3819
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3820
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3821
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3822
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
3823
|
+
Completed 302 Found in 5ms
|
|
3824
|
+
|
|
3825
|
+
|
|
3826
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
|
|
3827
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3828
|
+
Parameters: {"id"=>"1"}
|
|
3829
|
+
[1m[36mForem::Topic Load (0.0ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3830
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
3831
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
|
3832
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
|
|
3833
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.2ms)
|
|
3834
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.3ms)
|
|
3835
|
+
|
|
3836
|
+
|
|
3837
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
|
|
3838
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3839
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3840
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3841
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3842
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00]]
|
|
3843
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3844
|
+
Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.8ms)
|
|
3845
|
+
|
|
3846
|
+
|
|
3847
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
|
|
3848
|
+
Processing by Forem::TopicsController#new as HTML
|
|
3849
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3850
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
3851
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.0ms)
|
|
3852
|
+
Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.1ms)
|
|
3853
|
+
|
|
3854
|
+
|
|
3855
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
|
|
3856
|
+
Processing by Forem::TopicsController#create as HTML
|
|
3857
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
3858
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3859
|
+
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3860
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3861
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["user_id", 1]]
|
|
3862
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["user_id", 1]]
|
|
3863
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3864
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3865
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3866
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
3867
|
+
Completed 302 Found in 7ms
|
|
3868
|
+
|
|
3869
|
+
|
|
3870
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
|
|
3871
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3872
|
+
Parameters: {"id"=>"1"}
|
|
3873
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3874
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
3875
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
|
3876
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.5ms)
|
|
3877
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.3ms)
|
|
3878
|
+
|
|
3879
|
+
|
|
3880
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
|
|
3881
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3882
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
3883
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
|
|
3884
|
+
|
|
3885
|
+
|
|
3886
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
|
|
3887
|
+
Processing by Forem::TopicsController#new as HTML
|
|
3888
|
+
Redirected to http://www.example.com/sign_in
|
|
3889
|
+
Completed 302 Found in 0ms
|
|
3890
|
+
|
|
3891
|
+
|
|
3892
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
|
|
3893
|
+
Processing by FakeController#sign_in as HTML
|
|
3894
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
3895
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3896
|
+
[1m[35mSQL (14.4ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:49 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:13:49 UTC +00:00]]
|
|
3897
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3898
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
3899
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:13:49 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:13:49 UTC +00:00], ["user_id", 1]]
|
|
3900
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:13:49 UTC +00:00], ["user_id", 1]]
|
|
3901
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
3902
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
3903
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3904
|
+
|
|
3905
|
+
|
|
3906
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
|
|
3907
|
+
Processing by Forem::PostsController#new as HTML
|
|
3908
|
+
Parameters: {"topic_id"=>"1"}
|
|
3909
|
+
Redirected to http://www.example.com/sign_in
|
|
3910
|
+
Completed 302 Found in 9ms
|
|
3911
|
+
|
|
3912
|
+
|
|
3913
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
|
|
3914
|
+
Processing by FakeController#sign_in as HTML
|
|
3915
|
+
Rendered text template (0.0ms)
|
|
3916
|
+
Completed 200 OK in 45ms (Views: 44.7ms | ActiveRecord: 0.0ms)
|
|
3917
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
3918
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00]]
|
|
3919
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3920
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3921
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["user_id", 1]]
|
|
3922
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["user_id", 1]]
|
|
3923
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3924
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3925
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3926
|
+
|
|
3927
|
+
|
|
3928
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
|
|
3929
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3930
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3931
|
+
Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.1ms)
|
|
3932
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
3933
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00]]
|
|
3934
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3935
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3936
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["user_id", 1]]
|
|
3937
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["user_id", 1]]
|
|
3938
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3939
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3940
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3941
|
+
|
|
3942
|
+
|
|
3943
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
|
|
3944
|
+
Processing by Forem::TopicsController#index as HTML
|
|
3945
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
3946
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
3947
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3948
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00]]
|
|
3949
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3950
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.6ms)
|
|
3951
|
+
|
|
3952
|
+
|
|
3953
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
|
|
3954
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3955
|
+
Parameters: {"id"=>"1"}
|
|
3956
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3957
|
+
[1m[36mForem::Post Load (0.4ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
3958
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
|
3959
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (29.0ms)
|
|
3960
|
+
Completed 200 OK in 45ms (Views: 43.7ms | ActiveRecord: 0.7ms)
|
|
3961
|
+
|
|
3962
|
+
|
|
3963
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
|
|
3964
|
+
Processing by Forem::PostsController#new as HTML
|
|
3965
|
+
Parameters: {"topic_id"=>"1"}
|
|
3966
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3967
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3968
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
|
|
3969
|
+
Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
|
|
3970
|
+
|
|
3971
|
+
|
|
3972
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
|
|
3973
|
+
Processing by Forem::PostsController#create as HTML
|
|
3974
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
3975
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3976
|
+
[1m[35mForem::Topic Load (0.0ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
3977
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
3978
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
3979
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["user_id", 2]]
|
|
3980
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
3981
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
3982
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
3983
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
3984
|
+
Completed 302 Found in 6ms
|
|
3985
|
+
|
|
3986
|
+
|
|
3987
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
|
|
3988
|
+
Processing by Forem::TopicsController#show as HTML
|
|
3989
|
+
Parameters: {"id"=>"1"}
|
|
3990
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
3991
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
3992
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
|
3993
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
|
|
3994
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.5ms)
|
|
3995
|
+
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.4ms)
|
|
3996
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
3997
|
+
[1m[35mSQL (13.9ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00]]
|
|
3998
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
3999
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
4000
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["user_id", 1]]
|
|
4001
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["user_id", 1]]
|
|
4002
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
4003
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
4004
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
4005
|
+
|
|
4006
|
+
|
|
4007
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:16:49 -0500
|
|
4008
|
+
Processing by Forem::PostsController#new as HTML
|
|
4009
|
+
Parameters: {"topic_id"=>"1"}
|
|
4010
|
+
Redirected to http://www.example.com/sign_in
|
|
4011
|
+
Completed 302 Found in 8ms
|
|
4012
|
+
|
|
4013
|
+
|
|
4014
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 23:16:49 -0500
|
|
4015
|
+
Processing by FakeController#sign_in as HTML
|
|
4016
|
+
Rendered text template (0.0ms)
|
|
4017
|
+
Completed 200 OK in 43ms (Views: 43.1ms | ActiveRecord: 0.0ms)
|
|
4018
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
4019
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00]]
|
|
4020
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4021
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
4022
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["user_id", 1]]
|
|
4023
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["user_id", 1]]
|
|
4024
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
4025
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
4026
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4027
|
+
|
|
4028
|
+
|
|
4029
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:16:49 -0500
|
|
4030
|
+
Processing by Forem::TopicsController#index as HTML
|
|
4031
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
4032
|
+
Completed 500 Internal Server Error in 48ms
|
|
4033
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
4034
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00]]
|
|
4035
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4036
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
4037
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["user_id", 1]]
|
|
4038
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["user_id", 1]]
|
|
4039
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
4040
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
4041
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4042
|
+
|
|
4043
|
+
|
|
4044
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:16:49 -0500
|
|
4045
|
+
Processing by Forem::TopicsController#index as HTML
|
|
4046
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
4047
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
4048
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
4049
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00]]
|
|
4050
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
4051
|
+
Completed 500 Internal Server Error in 5ms
|
|
4052
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
4053
|
+
[1m[35mSQL (13.8ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:58 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:20:58 UTC +00:00]]
|
|
4054
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
4055
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
4056
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 1]]
|
|
4057
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 1]]
|
|
4058
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
4059
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
4060
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
4061
|
+
|
|
4062
|
+
|
|
4063
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
|
|
4064
|
+
Processing by Forem::PostsController#new as HTML
|
|
4065
|
+
Parameters: {"topic_id"=>"1"}
|
|
4066
|
+
Redirected to http://www.example.com/sign_in
|
|
4067
|
+
Completed 302 Found in 7ms
|
|
4068
|
+
|
|
4069
|
+
|
|
4070
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
|
|
4071
|
+
Processing by FakeController#sign_in as HTML
|
|
4072
|
+
Rendered text template (0.0ms)
|
|
4073
|
+
Completed 200 OK in 44ms (Views: 43.3ms | ActiveRecord: 0.0ms)
|
|
4074
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
4075
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00]]
|
|
4076
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4077
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
4078
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 1]]
|
|
4079
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 1]]
|
|
4080
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
4081
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
4082
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4083
|
+
|
|
4084
|
+
|
|
4085
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
|
|
4086
|
+
Processing by Forem::TopicsController#index as HTML
|
|
4087
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
4088
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at DESC LIMIT 1
|
|
4089
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
|
4090
|
+
Completed 200 OK in 64ms (Views: 62.4ms | ActiveRecord: 0.4ms)
|
|
4091
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
4092
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00]]
|
|
4093
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4094
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
4095
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 1]]
|
|
4096
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 1]]
|
|
4097
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
4098
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
4099
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4100
|
+
|
|
4101
|
+
|
|
4102
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
|
|
4103
|
+
Processing by Forem::TopicsController#index as HTML
|
|
4104
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
4105
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
4106
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
4107
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00]]
|
|
4108
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
4109
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at DESC LIMIT 1
|
|
4110
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
|
4111
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.7ms)
|
|
4112
|
+
|
|
4113
|
+
|
|
4114
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
|
|
4115
|
+
Processing by Forem::TopicsController#show as HTML
|
|
4116
|
+
Parameters: {"id"=>"1"}
|
|
4117
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
4118
|
+
[1m[36mForem::Post Load (0.3ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
4119
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
|
4120
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.4ms)
|
|
4121
|
+
Completed 200 OK in 41ms (Views: 39.2ms | ActiveRecord: 0.5ms)
|
|
4122
|
+
|
|
4123
|
+
|
|
4124
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
|
|
4125
|
+
Processing by Forem::PostsController#new as HTML
|
|
4126
|
+
Parameters: {"topic_id"=>"1"}
|
|
4127
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
4128
|
+
[1m[35mForem::Topic Load (0.0ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
4129
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
4130
|
+
Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.2ms)
|
|
4131
|
+
|
|
4132
|
+
|
|
4133
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
|
|
4134
|
+
Processing by Forem::PostsController#create as HTML
|
|
4135
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
4136
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
4137
|
+
[1m[35mForem::Topic Load (0.0ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
4138
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
4139
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
4140
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 2]]
|
|
4141
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
4142
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
4143
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4144
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
4145
|
+
Completed 302 Found in 5ms
|
|
4146
|
+
|
|
4147
|
+
|
|
4148
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
|
|
4149
|
+
Processing by Forem::TopicsController#show as HTML
|
|
4150
|
+
Parameters: {"id"=>"1"}
|
|
4151
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
4152
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
4153
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
|
4154
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
|
|
4155
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.3ms)
|
|
4156
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.4ms)
|
|
4157
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
4158
|
+
[1m[35mSQL (16.7ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:10 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:21:10 UTC +00:00]]
|
|
4159
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
4160
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
4161
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:21:10 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:21:10 UTC +00:00], ["user_id", 1]]
|
|
4162
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:10 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:21:10 UTC +00:00], ["user_id", 1]]
|
|
4163
|
+
[1m[36mForem::Topic Load (0.2ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1[0m
|
|
4164
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
|
|
4165
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
4166
|
+
|
|
4167
|
+
|
|
4168
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:21:11 -0500
|
|
4169
|
+
Processing by Forem::PostsController#new as HTML
|
|
4170
|
+
Parameters: {"topic_id"=>"1"}
|
|
4171
|
+
Redirected to http://www.example.com/sign_in
|
|
4172
|
+
Completed 302 Found in 8ms
|
|
4173
|
+
|
|
4174
|
+
|
|
4175
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 23:21:11 -0500
|
|
4176
|
+
Processing by FakeController#sign_in as HTML
|
|
4177
|
+
Rendered text template (0.0ms)
|
|
4178
|
+
Completed 200 OK in 45ms (Views: 44.4ms | ActiveRecord: 0.0ms)
|
|
4179
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
4180
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00]]
|
|
4181
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4182
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
4183
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["user_id", 1]]
|
|
4184
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["user_id", 1]]
|
|
4185
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
4186
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
4187
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4188
|
+
|
|
4189
|
+
|
|
4190
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:21:11 -0500
|
|
4191
|
+
Processing by Forem::TopicsController#index as HTML
|
|
4192
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
4193
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at DESC LIMIT 1
|
|
4194
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
|
4195
|
+
Completed 200 OK in 36ms (Views: 35.3ms | ActiveRecord: 0.4ms)
|
|
4196
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
4197
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00]]
|
|
4198
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4199
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
4200
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["user_id", 1]]
|
|
4201
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["user_id", 1]]
|
|
4202
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
4203
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
4204
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4205
|
+
|
|
4206
|
+
|
|
4207
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:21:11 -0500
|
|
4208
|
+
Processing by Forem::TopicsController#index as HTML
|
|
4209
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
4210
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
4211
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
4212
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00]]
|
|
4213
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
4214
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at DESC LIMIT 1
|
|
4215
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
|
4216
|
+
Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.9ms)
|
|
4217
|
+
|
|
4218
|
+
|
|
4219
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:21:11 -0500
|
|
4220
|
+
Processing by Forem::TopicsController#show as HTML
|
|
4221
|
+
Parameters: {"id"=>"1"}
|
|
4222
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
4223
|
+
[1m[36mForem::Post Load (0.2ms)[0m [1mSELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC[0m
|
|
4224
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
|
|
4225
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.0ms)
|
|
4226
|
+
Completed 200 OK in 41ms (Views: 39.1ms | ActiveRecord: 0.5ms)
|
|
4227
|
+
|
|
4228
|
+
|
|
4229
|
+
Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:21:11 -0500
|
|
4230
|
+
Processing by Forem::PostsController#new as HTML
|
|
4231
|
+
Parameters: {"topic_id"=>"1"}
|
|
4232
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
4233
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
4234
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
|
|
4235
|
+
Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.2ms)
|
|
4236
|
+
|
|
4237
|
+
|
|
4238
|
+
Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
|
|
4239
|
+
Processing by Forem::PostsController#create as HTML
|
|
4240
|
+
Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
|
|
4241
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
4242
|
+
[1m[35mForem::Topic Load (0.0ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
|
|
4243
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
4244
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
4245
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["user_id", 2]]
|
|
4246
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
4247
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
4248
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4249
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
4250
|
+
Completed 302 Found in 5ms
|
|
4251
|
+
|
|
4252
|
+
|
|
4253
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
|
|
4254
|
+
Processing by Forem::TopicsController#show as HTML
|
|
4255
|
+
Parameters: {"id"=>"1"}
|
|
4256
|
+
[1m[36mForem::Topic Load (0.0ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
4257
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
4258
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
|
4259
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
|
|
4260
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.2ms)
|
|
4261
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.3ms)
|
|
4262
|
+
|
|
4263
|
+
|
|
4264
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
|
|
4265
|
+
Processing by Forem::TopicsController#index as HTML
|
|
4266
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" [0m
|
|
4267
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
4268
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
4269
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00]]
|
|
4270
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
4271
|
+
Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.6ms)
|
|
4272
|
+
|
|
4273
|
+
|
|
4274
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
|
|
4275
|
+
Processing by Forem::TopicsController#new as HTML
|
|
4276
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
4277
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
|
|
4278
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.0ms)
|
|
4279
|
+
Completed 200 OK in 8ms (Views: 5.7ms | ActiveRecord: 0.2ms)
|
|
4280
|
+
|
|
4281
|
+
|
|
4282
|
+
Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
|
|
4283
|
+
Processing by Forem::TopicsController#create as HTML
|
|
4284
|
+
Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
|
|
4285
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1[0m
|
|
4286
|
+
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
|
|
4287
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
4288
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["user_id", 1]]
|
|
4289
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["user_id", 1]]
|
|
4290
|
+
[1m[35mForem::Topic Load (0.1ms)[0m SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
|
|
4291
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1[0m
|
|
4292
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
4293
|
+
Redirected to http://www.example.com/forem/topics/1
|
|
4294
|
+
Completed 302 Found in 8ms
|
|
4295
|
+
|
|
4296
|
+
|
|
4297
|
+
Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
|
|
4298
|
+
Processing by Forem::TopicsController#show as HTML
|
|
4299
|
+
Parameters: {"id"=>"1"}
|
|
4300
|
+
[1m[36mForem::Topic Load (0.1ms)[0m [1mSELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
4301
|
+
[1m[35mForem::Post Load (0.2ms)[0m SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
|
|
4302
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
|
|
4303
|
+
Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.3ms)
|
|
4304
|
+
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.3ms)
|
|
4305
|
+
|
|
4306
|
+
|
|
4307
|
+
Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
|
|
4308
|
+
Processing by Forem::TopicsController#index as HTML
|
|
4309
|
+
[1m[35mForem::Topic Load (0.2ms)[0m SELECT "forem_topics".* FROM "forem_topics"
|
|
4310
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
|
4311
|
+
|
|
4312
|
+
|
|
4313
|
+
Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
|
|
4314
|
+
Processing by Forem::TopicsController#new as HTML
|
|
4315
|
+
Redirected to http://www.example.com/sign_in
|
|
4316
|
+
Completed 302 Found in 0ms
|
|
4317
|
+
|
|
4318
|
+
|
|
4319
|
+
Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
|
|
4320
|
+
Processing by FakeController#sign_in as HTML
|
|
4321
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|