branston 0.3.3 → 0.3.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. data/lib/branston/app/views/sessions/new.html.erb +31 -19
  2. data/lib/branston/db/development.sqlite3 +0 -0
  3. data/lib/branston/lib/authenticated_system.rb +1 -0
  4. data/lib/branston/log/development.log +1069 -0
  5. data/lib/branston/public/stylesheets/application.css +1 -1
  6. data/lib/branston/public/stylesheets/style.css +508 -481
  7. metadata +4 -43
  8. data/lib/branston/coverage/app-controllers-application_controller_rb.html +0 -141
  9. data/lib/branston/coverage/app-controllers-iterations_controller_rb.html +0 -699
  10. data/lib/branston/coverage/app-controllers-outcomes_controller_rb.html +0 -675
  11. data/lib/branston/coverage/app-controllers-preconditions_controller_rb.html +0 -699
  12. data/lib/branston/coverage/app-controllers-releases_controller_rb.html +0 -621
  13. data/lib/branston/coverage/app-controllers-scenarios_controller_rb.html +0 -687
  14. data/lib/branston/coverage/app-controllers-sessions_controller_rb.html +0 -327
  15. data/lib/branston/coverage/app-controllers-stories_controller_rb.html +0 -795
  16. data/lib/branston/coverage/app-controllers-user_roles_controller_rb.html +0 -609
  17. data/lib/branston/coverage/app-controllers-users_controller_rb.html +0 -231
  18. data/lib/branston/coverage/app-helpers-application_helper_rb.html +0 -147
  19. data/lib/branston/coverage/app-helpers-iterations_helper_rb.html +0 -75
  20. data/lib/branston/coverage/app-helpers-outcomes_helper_rb.html +0 -75
  21. data/lib/branston/coverage/app-helpers-preconditions_helper_rb.html +0 -75
  22. data/lib/branston/coverage/app-helpers-releases_helper_rb.html +0 -75
  23. data/lib/branston/coverage/app-helpers-sessions_helper_rb.html +0 -75
  24. data/lib/branston/coverage/app-helpers-stories_helper_rb.html +0 -75
  25. data/lib/branston/coverage/app-helpers-user_roles_helper_rb.html +0 -75
  26. data/lib/branston/coverage/app-models-iteration_rb.html +0 -153
  27. data/lib/branston/coverage/app-models-outcome_rb.html +0 -159
  28. data/lib/branston/coverage/app-models-participation_rb.html +0 -105
  29. data/lib/branston/coverage/app-models-precondition_rb.html +0 -159
  30. data/lib/branston/coverage/app-models-release_rb.html +0 -105
  31. data/lib/branston/coverage/app-models-scenario_rb.html +0 -147
  32. data/lib/branston/coverage/app-models-story_rb.html +0 -261
  33. data/lib/branston/coverage/app-models-user_rb.html +0 -399
  34. data/lib/branston/coverage/app-models-user_role_rb.html +0 -105
  35. data/lib/branston/coverage/index.html +0 -570
  36. data/lib/branston/coverage/jquery-1.3.2.min.js +0 -19
  37. data/lib/branston/coverage/jquery.tablesorter.min.js +0 -15
  38. data/lib/branston/coverage/lib-client_rb.html +0 -537
  39. data/lib/branston/coverage/lib-faker_extras_rb.html +0 -207
  40. data/lib/branston/coverage/lib-story_generator_rb.html +0 -873
  41. data/lib/branston/coverage/print.css +0 -12
  42. data/lib/branston/coverage/rcov.js +0 -42
  43. data/lib/branston/coverage/screen.css +0 -270
  44. data/lib/branston/db/test.sqlite3 +0 -0
  45. data/lib/branston/tmp/performance/BrowsingTest#test_homepage_process_time_flat.txt +0 -10
  46. data/lib/branston/tmp/performance/BrowsingTest#test_homepage_process_time_graph.html +0 -6603
  47. data/lib/branston/tmp/performance/BrowsingTest#test_homepage_process_time_tree.txt +0 -9714
@@ -1,21 +1,33 @@
1
1
  <h1>Log In</h1>
2
2
 
3
- <% form_tag session_path do -%>
4
- <p class="form-fields">
5
- <%= label_tag 'login' %>
6
- <%= text_field_tag 'login', @login %>
7
- </p>
8
-
9
- <p class="form-fields">
10
- <%= label_tag 'password' %>
11
- <%= password_field_tag 'password', nil %>
12
- </p>
13
-
14
- <!-- Uncomment this if you want this functionality
15
- <p><%= label_tag 'remember_me', 'Remember me' %>
16
- <%= check_box_tag 'remember_me', '1', @remember_me %></p>
17
- -->
18
-
19
- <p class="form-navigtion"><%= submit_tag 'Log in' %></p>
20
- <% end -%>
21
-
3
+ <div id="login">
4
+
5
+ <% form_tag session_path do -%>
6
+
7
+ <p class="form-fields">
8
+ <%= label_tag 'login' %>
9
+ <%= text_field_tag 'login', @login %>
10
+ </p>
11
+
12
+ <p class="form-fields">
13
+ <%= label_tag 'password' %>
14
+ <%= password_field_tag 'password', nil %>
15
+ </p>
16
+
17
+ <p class="form-fields">
18
+ <%= label_tag 'remember_me', 'Remember me' %>
19
+ <%= check_box_tag 'remember_me', '1', @remember_me %>
20
+ </p>
21
+
22
+
23
+ <p id="login-button" class="form-navigtion"><%= submit_tag 'Log in' %></p>
24
+ <% end -%>
25
+
26
+
27
+
28
+ <div style="clear:both">
29
+ <p>If you are lacking a Branston account,
30
+ <%=link_to 'click here to register!', signup_path %>
31
+ </p>
32
+ </div>
33
+ </div>
@@ -65,6 +65,7 @@ module AuthenticatedSystem
65
65
  respond_to do |format|
66
66
  format.html do
67
67
  store_location
68
+ flash[:notice] = "Access Denied. Please log-in...."
68
69
  redirect_to new_session_path
69
70
  end
70
71
  # format.any doesn't work in rails version < http://dev.rubyonrails.org/changeset/8987
@@ -0,0 +1,1069 @@
1
+ # Logfile created on Thu Dec 10 12:18:21 +0000 2009
2
+
3
+ Processing IterationsController#index (for 127.0.0.1 at 2009-12-10 12:18:33) [GET]
4
+ Redirected to http://localhost:3000/session/new
5
+ Filter chain halted as [:login_required] rendered_or_redirected.
6
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/]
7
+
8
+
9
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:18:33) [GET]
10
+ Rendering template within layouts/main
11
+ Rendering sessions/new
12
+ Rendered layouts/_meta (0.7ms)
13
+ Rendered layouts/_header (1.3ms)
14
+ Rendered layouts/_footer (0.7ms)
15
+ Completed in 64ms (View: 60, DB: 0) | 200 OK [http://localhost/session/new]
16
+
17
+
18
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:18:52) [GET]
19
+ Rendering template within layouts/main
20
+ Rendering sessions/new
21
+ Rendered layouts/_meta (0.1ms)
22
+ Rendered layouts/_header (0.3ms)
23
+ Rendered layouts/_footer (0.1ms)
24
+ Completed in 20ms (View: 16, DB: 0) | 200 OK [http://localhost/session/new]
25
+
26
+
27
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:19:53) [GET]
28
+ Rendering template within layouts/main
29
+ Rendering sessions/new
30
+ Rendered layouts/_meta (0.2ms)
31
+ Rendered layouts/_header (0.4ms)
32
+ Rendered layouts/_footer (0.3ms)
33
+ Completed in 24ms (View: 19, DB: 0) | 200 OK [http://localhost/session/new]
34
+
35
+
36
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:20:12) [GET]
37
+ Rendering template within layouts/main
38
+ Rendering sessions/new
39
+ Rendered layouts/_meta (0.1ms)
40
+ Rendered layouts/_header (0.3ms)
41
+ Rendered layouts/_footer (0.1ms)
42
+ Completed in 21ms (View: 16, DB: 0) | 200 OK [http://localhost/session/new]
43
+
44
+
45
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:20:40) [GET]
46
+ Rendering template within layouts/main
47
+ Rendering sessions/new
48
+ Rendered layouts/_meta (0.1ms)
49
+ Rendered layouts/_header (0.3ms)
50
+ Rendered layouts/_footer (0.1ms)
51
+ Completed in 19ms (View: 15, DB: 0) | 200 OK [http://localhost/session/new]
52
+
53
+
54
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:25:59) [GET]
55
+ Rendering template within layouts/main
56
+ Rendering sessions/new
57
+ Rendered layouts/_meta (0.1ms)
58
+ Rendered layouts/_header (0.3ms)
59
+ Rendered layouts/_footer (0.1ms)
60
+ Completed in 92ms (View: 17, DB: 0) | 200 OK [http://localhost/session/new]
61
+
62
+
63
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:26:15) [GET]
64
+ Rendering template within layouts/main
65
+ Rendering sessions/new
66
+ Rendered layouts/_meta (0.2ms)
67
+ Rendered layouts/_header (0.5ms)
68
+ Rendered layouts/_footer (0.2ms)
69
+ Completed in 24ms (View: 19, DB: 0) | 200 OK [http://localhost/session/new]
70
+
71
+
72
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:26:53) [GET]
73
+ Rendering template within layouts/main
74
+ Rendering sessions/new
75
+ Rendered layouts/_meta (0.2ms)
76
+ Rendered layouts/_header (0.4ms)
77
+ Rendered layouts/_footer (0.2ms)
78
+ Completed in 25ms (View: 20, DB: 0) | 200 OK [http://localhost/session/new]
79
+
80
+
81
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:27:10) [GET]
82
+ Rendering template within layouts/main
83
+ Rendering sessions/new
84
+ Rendered layouts/_meta (0.2ms)
85
+ Rendered layouts/_header (0.3ms)
86
+ Rendered layouts/_footer (0.2ms)
87
+ Completed in 24ms (View: 19, DB: 0) | 200 OK [http://localhost/session/new]
88
+
89
+
90
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:27:52) [GET]
91
+ Rendering template within layouts/main
92
+ Rendering sessions/new
93
+ Rendered layouts/_meta (0.1ms)
94
+ Rendered layouts/_header (0.4ms)
95
+ Rendered layouts/_footer (0.2ms)
96
+ Completed in 17ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
97
+
98
+
99
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:28:24) [GET]
100
+ Rendering template within layouts/main
101
+ Rendering sessions/new
102
+ Rendered layouts/_meta (0.2ms)
103
+ Rendered layouts/_header (0.4ms)
104
+ Rendered layouts/_footer (0.2ms)
105
+ Completed in 18ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
106
+
107
+
108
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:28:37) [GET]
109
+ Rendering template within layouts/main
110
+ Rendering sessions/new
111
+ Rendered layouts/_meta (0.2ms)
112
+ Rendered layouts/_header (0.4ms)
113
+ Rendered layouts/_footer (0.2ms)
114
+ Completed in 17ms (View: 12, DB: 0) | 200 OK [http://localhost/session/new]
115
+
116
+
117
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:29:12) [GET]
118
+ Rendering template within layouts/main
119
+ Rendering sessions/new
120
+ Rendered layouts/_meta (0.1ms)
121
+ Rendered layouts/_header (0.3ms)
122
+ Rendered layouts/_footer (0.2ms)
123
+ Completed in 16ms (View: 11, DB: 0) | 200 OK [http://localhost/session/new]
124
+
125
+
126
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:29:25) [GET]
127
+ Rendering template within layouts/main
128
+ Rendering sessions/new
129
+ Rendered layouts/_meta (0.2ms)
130
+ Rendered layouts/_header (0.4ms)
131
+ Rendered layouts/_footer (0.2ms)
132
+ Completed in 17ms (View: 12, DB: 0) | 200 OK [http://localhost/session/new]
133
+
134
+
135
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:29:41) [GET]
136
+ Rendering template within layouts/main
137
+ Rendering sessions/new
138
+ Rendered layouts/_meta (0.2ms)
139
+ Rendered layouts/_header (0.4ms)
140
+ Rendered layouts/_footer (0.2ms)
141
+ Completed in 17ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
142
+
143
+
144
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:29:58) [GET]
145
+ Rendering template within layouts/main
146
+ Rendering sessions/new
147
+ Rendered layouts/_meta (0.2ms)
148
+ Rendered layouts/_header (0.4ms)
149
+ Rendered layouts/_footer (0.2ms)
150
+ Completed in 18ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
151
+
152
+
153
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:30:04) [GET]
154
+ Rendering template within layouts/main
155
+ Rendering sessions/new
156
+ Rendered layouts/_meta (0.2ms)
157
+ Rendered layouts/_header (0.4ms)
158
+ Rendered layouts/_footer (0.2ms)
159
+ Completed in 17ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
160
+
161
+
162
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:30:40) [GET]
163
+ Rendering template within layouts/main
164
+ Rendering sessions/new
165
+ Rendered layouts/_meta (0.1ms)
166
+ Rendered layouts/_header (0.3ms)
167
+ Rendered layouts/_footer (0.1ms)
168
+ Completed in 14ms (View: 10, DB: 0) | 200 OK [http://localhost/session/new]
169
+
170
+
171
+ Processing StoriesController#index (for 127.0.0.1 at 2009-12-10 12:30:47) [GET]
172
+ Redirected to http://localhost:3000/session/new
173
+ Filter chain halted as [:login_required] rendered_or_redirected.
174
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/stories]
175
+
176
+
177
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:30:47) [GET]
178
+ Rendering template within layouts/main
179
+ Rendering sessions/new
180
+ Rendered layouts/_meta (0.2ms)
181
+ Rendered layouts/_header (0.4ms)
182
+ Rendered layouts/_footer (0.2ms)
183
+ Completed in 17ms (View: 12, DB: 0) | 200 OK [http://localhost/session/new]
184
+
185
+
186
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:31:38) [GET]
187
+ Rendering template within layouts/main
188
+ Rendering sessions/new
189
+ Rendered layouts/_meta (0.4ms)
190
+ Rendered layouts/_header (0.3ms)
191
+ Rendered layouts/_footer (0.1ms)
192
+ Completed in 20ms (View: 16, DB: 0) | 200 OK [http://localhost/session/new]
193
+
194
+
195
+ Processing UsersController#new (for 127.0.0.1 at 2009-12-10 12:31:40) [GET]
196
+ Rendering template within layouts/main
197
+ Rendering users/new
198
+ Rendered layouts/_meta (0.1ms)
199
+ Rendered layouts/_header (0.3ms)
200
+ Rendered layouts/_footer (0.1ms)
201
+ Completed in 61ms (View: 26, DB: 0) | 200 OK [http://localhost/signup]
202
+
203
+
204
+ Processing UsersController#create (for 127.0.0.1 at 2009-12-10 12:31:45) [POST]
205
+ Parameters: {"commit"=>"Sign up", "authenticity_token"=>"N8CFDHUh8nTLOBr7shhaa5a6XkBhd0Haqv9nOGUbzOs=", "user"=>{"password_confirmation"=>"password", "password"=>"r3ddwarf", "login"=>"Dan", "email"=>"dan@dangarland.co.uk"}}
206
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'dan') LIMIT 1
207
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'dan@dangarland.co.uk') LIMIT 1
208
+ Rendering template within layouts/main
209
+ Rendering users/new
210
+ Rendered layouts/_meta (0.1ms)
211
+ Rendered layouts/_header (0.3ms)
212
+ Rendered layouts/_footer (0.1ms)
213
+ Completed in 44ms (View: 18, DB: 0) | 200 OK [http://localhost/users]
214
+
215
+
216
+ Processing UsersController#create (for 127.0.0.1 at 2009-12-10 12:31:52) [POST]
217
+ Parameters: {"commit"=>"Sign up", "authenticity_token"=>"N8CFDHUh8nTLOBr7shhaa5a6XkBhd0Haqv9nOGUbzOs=", "user"=>{"password_confirmation"=>"password", "password"=>"password", "login"=>"dan", "email"=>"dan@dangarland.co.uk"}}
218
+ User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'dan') LIMIT 1
219
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'dan@dangarland.co.uk') LIMIT 1
220
+ User Create (0.6ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'e9916fa395b558c4f4e734c7d26ac333bf6265df', '2009-12-10 12:31:52', 'f7aeaeb976d3b90024a2c4e9a39f4a6caecbcda1', NULL, '2009-12-10 12:31:52', NULL, 'dan', 'dan@dangarland.co.uk')
221
+ Redirected to http://localhost:3000/stories
222
+ Completed in 48ms (DB: 1) | 302 Found [http://localhost/users]
223
+
224
+
225
+ Processing StoriesController#index (for 127.0.0.1 at 2009-12-10 12:31:52) [GET]
226
+ User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
227
+ Iteration Load (0.3ms) SELECT * FROM "iterations" 
228
+ Story Load (0.3ms) SELECT * FROM "stories" WHERE (iteration_id IS NULL) 
229
+ Rendering template within layouts/main
230
+ Rendering stories/index
231
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE (iteration_id IS NOT NULL) 
232
+ Rendered stories/_story (19.2ms)
233
+ Rendered layouts/_meta (0.1ms)
234
+ Rendered layouts/_header (0.3ms)
235
+ Rendered layouts/_footer (0.1ms)
236
+ Completed in 335ms (View: 212, DB: 2) | 200 OK [http://localhost/stories]
237
+
238
+
239
+ Processing StoriesController#destroy (for 127.0.0.1 at 2009-12-10 12:32:02) [DELETE]
240
+ Parameters: {"authenticity_token"=>"N8CFDHUh8nTLOBr7shhaa5a6XkBhd0Haqv9nOGUbzOs=", "id"=>"asdf"}
241
+ User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
242
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'asdf') LIMIT 1
243
+ Scenario Load (0.2ms) SELECT * FROM "scenarios" WHERE ("scenarios".story_id = 1) 
244
+ Story Destroy (0.2ms) DELETE FROM "stories" WHERE "id" = 1
245
+ Redirected to http://localhost:3000/stories
246
+ Completed in 63ms (DB: 2) | 302 Found [http://localhost/stories/asdf]
247
+
248
+
249
+ Processing StoriesController#index (for 127.0.0.1 at 2009-12-10 12:32:02) [GET]
250
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
251
+ Iteration Load (0.3ms) SELECT * FROM "iterations" 
252
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE (iteration_id IS NULL) 
253
+ Rendering template within layouts/main
254
+ Rendering stories/index
255
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE (iteration_id IS NOT NULL) 
256
+ Rendered layouts/_meta (0.1ms)
257
+ Rendered layouts/_header (0.3ms)
258
+ Rendered layouts/_footer (0.1ms)
259
+ Completed in 52ms (View: 8, DB: 1) | 200 OK [http://localhost/stories]
260
+
261
+
262
+ Processing StoriesController#index (for 127.0.0.1 at 2009-12-10 12:32:03) [GET]
263
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
264
+ Iteration Load (0.2ms) SELECT * FROM "iterations" 
265
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE (iteration_id IS NULL) 
266
+ Rendering template within layouts/main
267
+ Rendering stories/index
268
+ Story Load (0.3ms) SELECT * FROM "stories" WHERE (iteration_id IS NOT NULL) 
269
+ Rendered layouts/_meta (0.1ms)
270
+ Rendered layouts/_header (0.4ms)
271
+ Rendered layouts/_footer (0.1ms)
272
+ Completed in 159ms (View: 9, DB: 1) | 200 OK [http://localhost/stories]
273
+
274
+
275
+ Processing StoriesController#new (for 127.0.0.1 at 2009-12-10 12:32:04) [GET]
276
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
277
+ Iteration Load (0.2ms) SELECT * FROM "iterations" 
278
+ Rendering template within layouts/main
279
+ Rendering stories/new
280
+ Rendered stories/_form (4.5ms)
281
+ Rendered layouts/_meta (0.1ms)
282
+ Rendered layouts/_header (0.3ms)
283
+ Rendered layouts/_footer (0.1ms)
284
+ Completed in 69ms (View: 26, DB: 1) | 200 OK [http://localhost/stories/new]
285
+
286
+
287
+ Processing StoriesController#create (for 127.0.0.1 at 2009-12-10 12:32:08) [POST]
288
+ Parameters: {"commit"=>"Create", "story"=>{"title"=>"Story", "points"=>"1", "description"=>"asdfasdf", "iteration_id"=>""}, "authenticity_token"=>"N8CFDHUh8nTLOBr7shhaa5a6XkBhd0Haqv9nOGUbzOs="}
289
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
290
+ Iteration Load (0.2ms) SELECT * FROM "iterations" 
291
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Story') LIMIT 1
292
+ Story Create (0.4ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('story', '2009-12-10 12:32:08', 'Story', '2009-12-10 12:32:08', 1, 'asdfasdf', NULL, NULL)
293
+ Redirected to http://localhost:3000/stories
294
+ Completed in 58ms (DB: 1) | 302 Found [http://localhost/stories]
295
+
296
+
297
+ Processing StoriesController#index (for 127.0.0.1 at 2009-12-10 12:32:08) [GET]
298
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
299
+ Iteration Load (0.2ms) SELECT * FROM "iterations" 
300
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE (iteration_id IS NULL) 
301
+ Rendering template within layouts/main
302
+ Rendering stories/index
303
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE (iteration_id IS NOT NULL) 
304
+ Rendered stories/_story (15.4ms)
305
+ Rendered layouts/_meta (0.1ms)
306
+ Rendered layouts/_header (0.4ms)
307
+ Rendered layouts/_footer (0.1ms)
308
+ Completed in 159ms (View: 117, DB: 2) | 200 OK [http://localhost/stories]
309
+
310
+
311
+ Processing StoriesController#new (for 127.0.0.1 at 2009-12-10 12:32:13) [GET]
312
+ User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
313
+ Iteration Load (0.3ms) SELECT * FROM "iterations" 
314
+ Rendering template within layouts/main
315
+ Rendering stories/new
316
+ Rendered stories/_form (3.2ms)
317
+ Rendered layouts/_meta (0.1ms)
318
+ Rendered layouts/_header (0.3ms)
319
+ Rendered layouts/_footer (0.1ms)
320
+ Completed in 67ms (View: 15, DB: 1) | 200 OK [http://localhost/stories/new]
321
+
322
+
323
+ Processing StoriesController#create (for 127.0.0.1 at 2009-12-10 12:32:15) [POST]
324
+ Parameters: {"commit"=>"Create", "story"=>{"title"=>"asdfsdfas", "points"=>"1", "description"=>"dfasdfasdf", "iteration_id"=>""}, "authenticity_token"=>"N8CFDHUh8nTLOBr7shhaa5a6XkBhd0Haqv9nOGUbzOs="}
325
+ User Load (0.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
326
+ Iteration Load (0.2ms) SELECT * FROM "iterations" 
327
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'asdfsdfas') LIMIT 1
328
+ Story Create (0.4ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('asdfsdfas', '2009-12-10 12:32:15', 'asdfsdfas', '2009-12-10 12:32:15', 1, 'dfasdfasdf', NULL, NULL)
329
+ Redirected to http://localhost:3000/stories
330
+ Completed in 171ms (DB: 2) | 302 Found [http://localhost/stories]
331
+
332
+
333
+ Processing StoriesController#index (for 127.0.0.1 at 2009-12-10 12:32:16) [GET]
334
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
335
+ Iteration Load (0.2ms) SELECT * FROM "iterations" 
336
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE (iteration_id IS NULL) 
337
+ Rendering template within layouts/main
338
+ Rendering stories/index
339
+ Story Load (0.3ms) SELECT * FROM "stories" WHERE (iteration_id IS NOT NULL) 
340
+ Rendered stories/_story (14.4ms)
341
+ Rendered stories/_story (14.1ms)
342
+ Rendered layouts/_meta (0.1ms)
343
+ Rendered layouts/_header (0.3ms)
344
+ Rendered layouts/_footer (0.1ms)
345
+ Completed in 84ms (View: 42, DB: 2) | 200 OK [http://localhost/stories]
346
+
347
+
348
+ Processing StoriesController#new (for 127.0.0.1 at 2009-12-10 12:32:17) [GET]
349
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
350
+ Iteration Load (0.2ms) SELECT * FROM "iterations" 
351
+ Rendering template within layouts/main
352
+ Rendering stories/new
353
+ Rendered stories/_form (3.4ms)
354
+ Rendered layouts/_meta (0.2ms)
355
+ Rendered layouts/_header (0.3ms)
356
+ Rendered layouts/_footer (0.1ms)
357
+ Completed in 64ms (View: 16, DB: 1) | 200 OK [http://localhost/stories/new]
358
+
359
+
360
+ Processing StoriesController#create (for 127.0.0.1 at 2009-12-10 12:32:20) [POST]
361
+ Parameters: {"commit"=>"Create", "story"=>{"title"=>"asdfasdfasd", "points"=>"1", "description"=>"fasdfasdfasdfasdfasd", "iteration_id"=>""}, "authenticity_token"=>"N8CFDHUh8nTLOBr7shhaa5a6XkBhd0Haqv9nOGUbzOs="}
362
+ User Load (0.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
363
+ Iteration Load (0.3ms) SELECT * FROM "iterations" 
364
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'asdfasdfasd') LIMIT 1
365
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('asdfasdfasd', '2009-12-10 12:32:20', 'asdfasdfasd', '2009-12-10 12:32:20', 1, 'fasdfasdfasdfasdfasd', NULL, NULL)
366
+ Redirected to http://localhost:3000/stories
367
+ Completed in 70ms (DB: 2) | 302 Found [http://localhost/stories]
368
+
369
+
370
+ Processing StoriesController#index (for 127.0.0.1 at 2009-12-10 12:32:20) [GET]
371
+ User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
372
+ Iteration Load (0.3ms) SELECT * FROM "iterations" 
373
+ Story Load (1.1ms) SELECT * FROM "stories" WHERE (iteration_id IS NULL) 
374
+ Rendering template within layouts/main
375
+ Rendering stories/index
376
+ Story Load (0.3ms) SELECT * FROM "stories" WHERE (iteration_id IS NOT NULL) 
377
+ Rendered stories/_story (18.9ms)
378
+ Rendered stories/_story (19.3ms)
379
+ Rendered stories/_story (19.8ms)
380
+ Rendered layouts/_meta (0.2ms)
381
+ Rendered layouts/_header (0.4ms)
382
+ Rendered layouts/_footer (0.2ms)
383
+ Completed in 137ms (View: 77, DB: 2) | 200 OK [http://localhost/stories]
384
+
385
+
386
+ Processing StoriesController#index (for 127.0.0.1 at 2009-12-10 12:34:24) [GET]
387
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
388
+ Iteration Load (0.2ms) SELECT * FROM "iterations" 
389
+ Story Load (0.9ms) SELECT * FROM "stories" WHERE (iteration_id IS NULL) 
390
+ Rendering template within layouts/main
391
+ Rendering stories/index
392
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE (iteration_id IS NOT NULL) 
393
+ Rendered stories/_story (15.3ms)
394
+ Rendered stories/_story (15.0ms)
395
+ Rendered stories/_story (15.2ms)
396
+ Rendered layouts/_meta (0.1ms)
397
+ Rendered layouts/_header (0.3ms)
398
+ Rendered layouts/_footer (0.1ms)
399
+ Completed in 198ms (View: 60, DB: 2) | 200 OK [http://localhost/stories]
400
+
401
+
402
+ Processing IterationsController#index (for 127.0.0.1 at 2009-12-10 12:34:43) [GET]
403
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
404
+ Iteration Load (0.2ms) SELECT * FROM "iterations" 
405
+ Rendering template within layouts/main
406
+ Rendering iterations/index
407
+ Rendered layouts/_meta (0.2ms)
408
+ Rendered layouts/_header (0.3ms)
409
+ Rendered layouts/_footer (0.1ms)
410
+ Completed in 142ms (View: 110, DB: 1) | 200 OK [http://localhost/iterations]
411
+
412
+
413
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:34:45) [GET]
414
+ User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
415
+ Release Load (0.2ms) SELECT * FROM "releases" 
416
+ CACHE (0.0ms) SELECT * FROM "releases" 
417
+ Rendering template within layouts/main
418
+ Rendering iterations/new
419
+ Rendered iterations/_form (8.8ms)
420
+ Rendered layouts/_meta (0.1ms)
421
+ Rendered layouts/_header (0.3ms)
422
+ Rendered layouts/_footer (0.1ms)
423
+ Completed in 73ms (View: 30, DB: 1) | 200 OK [http://localhost/iterations/new]
424
+
425
+
426
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:37:23) [GET]
427
+ User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
428
+ Release Load (0.3ms) SELECT * FROM "releases" 
429
+ CACHE (0.0ms) SELECT * FROM "releases" 
430
+ Rendering template within layouts/main
431
+ Rendering iterations/new
432
+ Rendered iterations/_form (7.5ms)
433
+ Rendered layouts/_meta (0.1ms)
434
+ Rendered layouts/_header (0.3ms)
435
+ Rendered layouts/_footer (0.1ms)
436
+ Completed in 166ms (View: 21, DB: 1) | 200 OK [http://localhost/iterations/new]
437
+
438
+
439
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:37:44) [GET]
440
+ User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
441
+ Release Load (0.2ms) SELECT * FROM "releases" 
442
+ CACHE (0.0ms) SELECT * FROM "releases" 
443
+ Rendering template within layouts/main
444
+ Rendering iterations/new
445
+ Rendered iterations/_form (6.9ms)
446
+ Rendered layouts/_meta (0.1ms)
447
+ Rendered layouts/_header (0.3ms)
448
+ Rendered layouts/_footer (0.1ms)
449
+ Completed in 64ms (View: 18, DB: 1) | 200 OK [http://localhost/iterations/new]
450
+
451
+
452
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:39:08) [GET]
453
+ User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
454
+ Release Load (0.2ms) SELECT * FROM "releases" 
455
+ CACHE (0.0ms) SELECT * FROM "releases" 
456
+ Rendering template within layouts/main
457
+ Rendering iterations/new
458
+ Rendered iterations/_form (9.1ms)
459
+ Rendered layouts/_meta (0.2ms)
460
+ Rendered layouts/_header (0.4ms)
461
+ Rendered layouts/_footer (0.2ms)
462
+ Completed in 72ms (View: 24, DB: 1) | 200 OK [http://localhost/iterations/new]
463
+
464
+
465
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:39:18) [GET]
466
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
467
+ Release Load (0.2ms) SELECT * FROM "releases" 
468
+ CACHE (0.0ms) SELECT * FROM "releases" 
469
+ Rendering template within layouts/main
470
+ Rendering iterations/new
471
+ Rendered iterations/_form (7.4ms)
472
+ Rendered layouts/_meta (0.1ms)
473
+ Rendered layouts/_header (0.3ms)
474
+ Rendered layouts/_footer (0.1ms)
475
+ Completed in 156ms (View: 19, DB: 1) | 200 OK [http://localhost/iterations/new]
476
+ SQL (0.4ms) select sqlite_version(*)
477
+ SQL (0.4ms)  SELECT name
478
+ FROM sqlite_master
479
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
480
+ 
481
+ SQL (4.7ms) CREATE TABLE "iterations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "velocity" integer, "name" varchar(255), "start_date" datetime, "end_date" datetime, "created_at" datetime, "updated_at" datetime, "release_id" integer) 
482
+ SQL (0.4ms)  SELECT name
483
+ FROM sqlite_master
484
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
485
+ 
486
+ SQL (27.7ms) CREATE TABLE "outcomes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "scenario_id" integer, "created_at" datetime, "updated_at" datetime) 
487
+ SQL (0.4ms)  SELECT name
488
+ FROM sqlite_master
489
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
490
+ 
491
+ SQL (5.7ms) CREATE TABLE "participations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "iteration_id" integer, "created_at" datetime, "updated_at" datetime) 
492
+ SQL (0.5ms)  SELECT name
493
+ FROM sqlite_master
494
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
495
+ 
496
+ SQL (15.1ms) CREATE TABLE "preconditions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "scenario_id" integer, "created_at" datetime, "updated_at" datetime) 
497
+ SQL (0.6ms)  SELECT name
498
+ FROM sqlite_master
499
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
500
+ 
501
+ SQL (9.7ms) CREATE TABLE "releases" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "release_date" date, "notes" text, "created_at" datetime, "updated_at" datetime) 
502
+ SQL (0.6ms)  SELECT name
503
+ FROM sqlite_master
504
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
505
+ 
506
+ SQL (2.4ms) CREATE TABLE "scenarios" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "story_id" integer, "created_at" datetime, "updated_at" datetime) 
507
+ SQL (0.7ms)  SELECT name
508
+ FROM sqlite_master
509
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
510
+ 
511
+ SQL (9.7ms) CREATE TABLE "stories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" text, "points" integer, "iteration_id" integer, "created_at" datetime, "updated_at" datetime, "title" varchar(40), "author_id" integer, "slug" varchar(255) DEFAULT '' NOT NULL) 
512
+ SQL (0.8ms)  SELECT name
513
+ FROM sqlite_master
514
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
515
+ 
516
+ SQL (5.8ms) CREATE TABLE "user_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime, "story_id" integer) 
517
+ SQL (0.8ms)  SELECT name
518
+ FROM sqlite_master
519
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
520
+ 
521
+ SQL (10.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar(40), "name" varchar(100) DEFAULT '', "email" varchar(100), "crypted_password" varchar(40), "salt" varchar(40), "created_at" datetime, "updated_at" datetime, "remember_token" varchar(40), "remember_token_expires_at" datetime) 
522
+ SQL (2.6ms) CREATE UNIQUE INDEX "index_users_on_login" ON "users" ("login")
523
+ SQL (0.9ms)  SELECT name
524
+ FROM sqlite_master
525
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
526
+ 
527
+ SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
528
+ SQL (3.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
529
+ SQL (0.9ms)  SELECT name
530
+ FROM sqlite_master
531
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
532
+ 
533
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
534
+ SQL (10.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20091204173634')
535
+ SQL (6.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127173744')
536
+ SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127164705')
537
+ SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127122422')
538
+ SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127164446')
539
+ SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091202105555')
540
+ SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127164217')
541
+ SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127172950')
542
+ SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127172849')
543
+ SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127120627')
544
+ SQL (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127144645')
545
+ SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127114237')
546
+ SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127131037')
547
+
548
+
549
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:44:07) [GET]
550
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
551
+ Redirected to http://localhost:3000/session/new
552
+ Filter chain halted as [:login_required] rendered_or_redirected.
553
+ Completed in 41ms (DB: 0) | 302 Found [http://localhost/iterations/new]
554
+
555
+
556
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:44:07) [GET]
557
+ Rendering template within layouts/main
558
+ Rendering sessions/new
559
+ Rendered layouts/_meta (0.6ms)
560
+ Rendered layouts/_header (1.5ms)
561
+ Rendered layouts/_footer (0.7ms)
562
+ Completed in 43ms (View: 39, DB: 0) | 200 OK [http://localhost/session/new]
563
+
564
+
565
+ Processing UsersController#new (for 127.0.0.1 at 2009-12-10 12:44:10) [GET]
566
+ Rendering template within layouts/main
567
+ Rendering users/new
568
+ Rendered layouts/_meta (0.2ms)
569
+ Rendered layouts/_header (0.4ms)
570
+ Rendered layouts/_footer (0.2ms)
571
+ Completed in 52ms (View: 29, DB: 0) | 200 OK [http://localhost/signup]
572
+
573
+
574
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:45:30) [GET]
575
+ Redirected to http://localhost:3000/session/new
576
+ Filter chain halted as [:login_required] rendered_or_redirected.
577
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/iterations/new]
578
+
579
+
580
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:45:30) [GET]
581
+ Rendering template within layouts/main
582
+ Rendering sessions/new
583
+ Rendered layouts/_meta (0.1ms)
584
+ Rendered layouts/_header (0.3ms)
585
+ Rendered layouts/_footer (0.1ms)
586
+ Completed in 104ms (View: 99, DB: 0) | 200 OK [http://localhost/session/new]
587
+
588
+
589
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:45:40) [GET]
590
+ Redirected to http://localhost:3000/session/new
591
+ Filter chain halted as [:login_required] rendered_or_redirected.
592
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/iterations/new]
593
+
594
+
595
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:45:40) [GET]
596
+ Rendering template within layouts/main
597
+ Rendering sessions/new
598
+ Rendered layouts/_meta (0.2ms)
599
+ Rendered layouts/_header (0.4ms)
600
+ Rendered layouts/_footer (0.2ms)
601
+ Completed in 17ms (View: 12, DB: 0) | 200 OK [http://localhost/session/new]
602
+
603
+
604
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:46:09) [GET]
605
+ Redirected to http://localhost:3000/session/new
606
+ Filter chain halted as [:login_required] rendered_or_redirected.
607
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/iterations/new]
608
+
609
+
610
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:46:09) [GET]
611
+ Rendering template within layouts/main
612
+ Rendering sessions/new
613
+ Rendered layouts/_meta (0.1ms)
614
+ Rendered layouts/_header (0.3ms)
615
+ Rendered layouts/_footer (0.1ms)
616
+ Completed in 13ms (View: 9, DB: 0) | 200 OK [http://localhost/session/new]
617
+
618
+
619
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:46:20) [GET]
620
+ Redirected to http://localhost:3000/session/new
621
+ Filter chain halted as [:login_required] rendered_or_redirected.
622
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/iterations/new]
623
+
624
+
625
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:46:20) [GET]
626
+ Rendering template within layouts/main
627
+ Rendering sessions/new
628
+ Rendered layouts/_meta (0.1ms)
629
+ Rendered layouts/_header (0.4ms)
630
+ Rendered layouts/_footer (0.1ms)
631
+ Completed in 92ms (View: 88, DB: 0) | 200 OK [http://localhost/session/new]
632
+
633
+
634
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:46:36) [GET]
635
+ Redirected to http://localhost:3000/session/new
636
+ Filter chain halted as [:login_required] rendered_or_redirected.
637
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/iterations/new]
638
+
639
+
640
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:46:36) [GET]
641
+ Rendering template within layouts/main
642
+ Rendering sessions/new
643
+ Rendered layouts/_meta (0.2ms)
644
+ Rendered layouts/_header (0.3ms)
645
+ Rendered layouts/_footer (0.1ms)
646
+ Completed in 17ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
647
+
648
+
649
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:47:07) [GET]
650
+ Redirected to http://localhost:3000/session/new
651
+ Filter chain halted as [:login_required] rendered_or_redirected.
652
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/iterations/new]
653
+
654
+
655
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:47:07) [GET]
656
+ Rendering template within layouts/main
657
+ Rendering sessions/new
658
+ Rendered layouts/_meta (0.1ms)
659
+ Rendered layouts/_header (0.3ms)
660
+ Rendered layouts/_footer (0.1ms)
661
+ Completed in 19ms (View: 15, DB: 0) | 200 OK [http://localhost/session/new]
662
+
663
+
664
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:47:40) [GET]
665
+ Redirected to http://localhost:3000/session/new
666
+ Filter chain halted as [:login_required] rendered_or_redirected.
667
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/iterations/new]
668
+
669
+
670
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:47:40) [GET]
671
+ Rendering template within layouts/main
672
+ Rendering sessions/new
673
+ Rendered layouts/_meta (0.1ms)
674
+ Rendered layouts/_header (0.3ms)
675
+ Rendered layouts/_footer (0.1ms)
676
+ Completed in 93ms (View: 88, DB: 0) | 200 OK [http://localhost/session/new]
677
+
678
+
679
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:47:50) [GET]
680
+ Redirected to http://localhost:3000/session/new
681
+ Filter chain halted as [:login_required] rendered_or_redirected.
682
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/iterations/new]
683
+
684
+
685
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:47:50) [GET]
686
+ Rendering template within layouts/main
687
+ Rendering sessions/new
688
+ Rendered layouts/_meta (0.2ms)
689
+ Rendered layouts/_header (0.3ms)
690
+ Rendered layouts/_footer (0.2ms)
691
+ Completed in 18ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
692
+
693
+
694
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:48:01) [GET]
695
+ Redirected to http://localhost:3000/session/new
696
+ Filter chain halted as [:login_required] rendered_or_redirected.
697
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/iterations/new]
698
+
699
+
700
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:48:01) [GET]
701
+ Rendering template within layouts/main
702
+ Rendering sessions/new
703
+ Rendered layouts/_meta (0.1ms)
704
+ Rendered layouts/_header (0.3ms)
705
+ Rendered layouts/_footer (0.2ms)
706
+ Completed in 14ms (View: 10, DB: 0) | 200 OK [http://localhost/session/new]
707
+
708
+
709
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:48:11) [GET]
710
+ Redirected to http://localhost:3000/session/new
711
+ Filter chain halted as [:login_required] rendered_or_redirected.
712
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/iterations/new]
713
+
714
+
715
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:48:11) [GET]
716
+ Rendering template within layouts/main
717
+ Rendering sessions/new
718
+ Rendered layouts/_meta (0.2ms)
719
+ Rendered layouts/_header (8.4ms)
720
+ Rendered layouts/_footer (0.1ms)
721
+ Completed in 99ms (View: 95, DB: 0) | 200 OK [http://localhost/session/new]
722
+
723
+
724
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:48:15) [GET]
725
+ Redirected to http://localhost:3000/session/new
726
+ Filter chain halted as [:login_required] rendered_or_redirected.
727
+ Completed in 3ms (DB: 0) | 302 Found [http://localhost/iterations/new]
728
+
729
+
730
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:48:15) [GET]
731
+ Rendering template within layouts/main
732
+ Rendering sessions/new
733
+ Rendered layouts/_meta (0.2ms)
734
+ Rendered layouts/_header (0.4ms)
735
+ Rendered layouts/_footer (0.2ms)
736
+ Completed in 17ms (View: 12, DB: 0) | 200 OK [http://localhost/session/new]
737
+
738
+
739
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:48:23) [GET]
740
+ Redirected to http://localhost:3000/session/new
741
+ Filter chain halted as [:login_required] rendered_or_redirected.
742
+ Completed in 3ms (DB: 0) | 302 Found [http://localhost/iterations/new]
743
+
744
+
745
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:48:23) [GET]
746
+ Rendering template within layouts/main
747
+ Rendering sessions/new
748
+ Rendered layouts/_meta (0.1ms)
749
+ Rendered layouts/_header (0.3ms)
750
+ Rendered layouts/_footer (0.1ms)
751
+ Completed in 13ms (View: 10, DB: 0) | 200 OK [http://localhost/session/new]
752
+
753
+
754
+ Processing IterationsController#new (for 127.0.0.1 at 2009-12-10 12:48:44) [GET]
755
+ Redirected to http://localhost:3000/session/new
756
+ Filter chain halted as [:login_required] rendered_or_redirected.
757
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/iterations/new]
758
+
759
+
760
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:48:44) [GET]
761
+ Rendering template within layouts/main
762
+ Rendering sessions/new
763
+ Rendered layouts/_meta (0.1ms)
764
+ Rendered layouts/_header (0.4ms)
765
+ Rendered layouts/_footer (0.2ms)
766
+ Completed in 17ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
767
+
768
+
769
+ Processing IterationsController#index (for 127.0.0.1 at 2009-12-10 12:48:49) [GET]
770
+ Redirected to http://localhost:3000/session/new
771
+ Filter chain halted as [:login_required] rendered_or_redirected.
772
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/]
773
+
774
+
775
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:48:49) [GET]
776
+ Rendering template within layouts/main
777
+ Rendering sessions/new
778
+ Rendered layouts/_meta (0.2ms)
779
+ Rendered layouts/_header (0.3ms)
780
+ Rendered layouts/_footer (0.1ms)
781
+ Completed in 14ms (View: 10, DB: 0) | 200 OK [http://localhost/session/new]
782
+
783
+
784
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:49:06) [GET]
785
+ Rendering template within layouts/main
786
+ Rendering sessions/new
787
+ Rendered layouts/_meta (0.2ms)
788
+ Rendered layouts/_header (0.4ms)
789
+ Rendered layouts/_footer (0.2ms)
790
+ Completed in 18ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
791
+
792
+
793
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:49:24) [GET]
794
+ Rendering template within layouts/main
795
+ Rendering sessions/new
796
+ Rendered layouts/_meta (0.2ms)
797
+ Rendered layouts/_header (0.4ms)
798
+ Rendered layouts/_footer (0.2ms)
799
+ Completed in 24ms (View: 19, DB: 0) | 200 OK [http://localhost/session/new]
800
+
801
+
802
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:49:30) [GET]
803
+ Rendering template within layouts/main
804
+ Rendering sessions/new
805
+ Rendered layouts/_meta (0.2ms)
806
+ Rendered layouts/_header (0.3ms)
807
+ Rendered layouts/_footer (0.2ms)
808
+ Completed in 23ms (View: 19, DB: 0) | 200 OK [http://localhost/session/new]
809
+
810
+
811
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:49:59) [GET]
812
+ Rendering template within layouts/main
813
+ Rendering sessions/new
814
+ Rendered layouts/_meta (0.1ms)
815
+ Rendered layouts/_header (0.3ms)
816
+ Rendered layouts/_footer (0.1ms)
817
+ Completed in 16ms (View: 10, DB: 0) | 200 OK [http://localhost/session/new]
818
+
819
+
820
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:50:13) [GET]
821
+ Rendering template within layouts/main
822
+ Rendering sessions/new
823
+ Rendered layouts/_meta (0.2ms)
824
+ Rendered layouts/_header (0.4ms)
825
+ Rendered layouts/_footer (0.1ms)
826
+ Completed in 17ms (View: 12, DB: 0) | 200 OK [http://localhost/session/new]
827
+
828
+
829
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:50:22) [GET]
830
+ Rendering template within layouts/main
831
+ Rendering sessions/new
832
+ Rendered layouts/_meta (0.2ms)
833
+ Rendered layouts/_header (0.4ms)
834
+ Rendered layouts/_footer (0.2ms)
835
+ Completed in 16ms (View: 11, DB: 0) | 200 OK [http://localhost/session/new]
836
+
837
+
838
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:50:53) [GET]
839
+ Rendering template within layouts/main
840
+ Rendering sessions/new
841
+ Rendered layouts/_meta (0.2ms)
842
+ Rendered layouts/_header (0.4ms)
843
+ Rendered layouts/_footer (0.2ms)
844
+ Completed in 17ms (View: 12, DB: 0) | 200 OK [http://localhost/session/new]
845
+
846
+
847
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:51:33) [GET]
848
+ Rendering template within layouts/main
849
+ Rendering sessions/new
850
+ Rendered layouts/_meta (0.2ms)
851
+ Rendered layouts/_header (0.4ms)
852
+ Rendered layouts/_footer (0.2ms)
853
+ Completed in 18ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
854
+
855
+
856
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:52:01) [GET]
857
+ Rendering template within layouts/main
858
+ Rendering sessions/new
859
+ Rendered layouts/_meta (0.2ms)
860
+ Rendered layouts/_header (0.4ms)
861
+ Rendered layouts/_footer (0.2ms)
862
+ Completed in 18ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
863
+
864
+
865
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:52:34) [GET]
866
+ Rendering template within layouts/main
867
+ Rendering sessions/new
868
+ Rendered layouts/_meta (0.2ms)
869
+ Rendered layouts/_header (0.4ms)
870
+ Rendered layouts/_footer (0.2ms)
871
+ Completed in 26ms (View: 20, DB: 0) | 200 OK [http://localhost/session/new]
872
+
873
+
874
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:52:38) [GET]
875
+ Rendering template within layouts/main
876
+ Rendering sessions/new
877
+ Rendered layouts/_meta (0.1ms)
878
+ Rendered layouts/_header (0.3ms)
879
+ Rendered layouts/_footer (0.1ms)
880
+ Completed in 15ms (View: 10, DB: 0) | 200 OK [http://localhost/session/new]
881
+
882
+
883
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:52:56) [GET]
884
+ Rendering template within layouts/main
885
+ Rendering sessions/new
886
+ Rendered layouts/_meta (0.1ms)
887
+ Rendered layouts/_header (0.4ms)
888
+ Rendered layouts/_footer (0.2ms)
889
+ Completed in 17ms (View: 12, DB: 0) | 200 OK [http://localhost/session/new]
890
+
891
+
892
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:53:05) [GET]
893
+ Rendering template within layouts/main
894
+ Rendering sessions/new
895
+ Rendered layouts/_meta (0.1ms)
896
+ Rendered layouts/_header (0.3ms)
897
+ Rendered layouts/_footer (0.1ms)
898
+ Completed in 17ms (View: 12, DB: 0) | 200 OK [http://localhost/session/new]
899
+
900
+
901
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:53:12) [GET]
902
+ Rendering template within layouts/main
903
+ Rendering sessions/new
904
+ Rendered layouts/_meta (0.2ms)
905
+ Rendered layouts/_header (0.4ms)
906
+ Rendered layouts/_footer (0.2ms)
907
+ Completed in 17ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
908
+
909
+
910
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:53:18) [GET]
911
+ Rendering template within layouts/main
912
+ Rendering sessions/new
913
+ Rendered layouts/_meta (0.2ms)
914
+ Rendered layouts/_header (0.4ms)
915
+ Rendered layouts/_footer (0.2ms)
916
+ Completed in 17ms (View: 12, DB: 0) | 200 OK [http://localhost/session/new]
917
+
918
+
919
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:53:37) [GET]
920
+ Rendering template within layouts/main
921
+ Rendering sessions/new
922
+ Rendered layouts/_meta (0.1ms)
923
+ Rendered layouts/_header (0.3ms)
924
+ Rendered layouts/_footer (0.1ms)
925
+ Completed in 14ms (View: 10, DB: 0) | 200 OK [http://localhost/session/new]
926
+
927
+
928
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:55:37) [GET]
929
+ Rendering template within layouts/main
930
+ Rendering sessions/new
931
+ Rendered layouts/_meta (0.2ms)
932
+ Rendered layouts/_header (0.4ms)
933
+ Rendered layouts/_footer (0.2ms)
934
+ Completed in 18ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
935
+
936
+
937
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:55:49) [GET]
938
+ Rendering template within layouts/main
939
+ Rendering sessions/new
940
+ Rendered layouts/_meta (0.1ms)
941
+ Rendered layouts/_header (0.3ms)
942
+ Rendered layouts/_footer (0.1ms)
943
+ Completed in 16ms (View: 11, DB: 0) | 200 OK [http://localhost/session/new]
944
+
945
+
946
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:55:56) [GET]
947
+ Rendering template within layouts/main
948
+ Rendering sessions/new
949
+ Rendered layouts/_meta (0.1ms)
950
+ Rendered layouts/_header (0.3ms)
951
+ Rendered layouts/_footer (0.2ms)
952
+ Completed in 19ms (View: 15, DB: 0) | 200 OK [http://localhost/session/new]
953
+
954
+
955
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:56:06) [GET]
956
+ Rendering template within layouts/main
957
+ Rendering sessions/new
958
+ Rendered layouts/_meta (0.2ms)
959
+ Rendered layouts/_header (0.4ms)
960
+ Rendered layouts/_footer (0.2ms)
961
+ Completed in 18ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
962
+
963
+
964
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:57:31) [GET]
965
+ Rendering template within layouts/main
966
+ Rendering sessions/new
967
+ Rendered layouts/_meta (0.2ms)
968
+ Rendered layouts/_header (0.3ms)
969
+ Rendered layouts/_footer (0.2ms)
970
+ Completed in 17ms (View: 12, DB: 0) | 200 OK [http://localhost/session/new]
971
+
972
+
973
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:57:38) [GET]
974
+ Rendering template within layouts/main
975
+ Rendering sessions/new
976
+ Rendered layouts/_meta (0.1ms)
977
+ Rendered layouts/_header (0.3ms)
978
+ Rendered layouts/_footer (0.1ms)
979
+ Completed in 15ms (View: 11, DB: 0) | 200 OK [http://localhost/session/new]
980
+
981
+
982
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:57:42) [GET]
983
+ Rendering template within layouts/main
984
+ Rendering sessions/new
985
+ Rendered layouts/_meta (0.1ms)
986
+ Rendered layouts/_header (0.3ms)
987
+ Rendered layouts/_footer (0.1ms)
988
+ Completed in 15ms (View: 11, DB: 0) | 200 OK [http://localhost/session/new]
989
+
990
+
991
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:57:59) [GET]
992
+ Rendering template within layouts/main
993
+ Rendering sessions/new
994
+ Rendered layouts/_meta (0.2ms)
995
+ Rendered layouts/_header (0.4ms)
996
+ Rendered layouts/_footer (0.2ms)
997
+ Completed in 18ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
998
+
999
+
1000
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:58:07) [GET]
1001
+ Rendering template within layouts/main
1002
+ Rendering sessions/new
1003
+ Rendered layouts/_meta (0.2ms)
1004
+ Rendered layouts/_header (0.4ms)
1005
+ Rendered layouts/_footer (0.2ms)
1006
+ Completed in 17ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
1007
+
1008
+
1009
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 12:58:12) [GET]
1010
+ Rendering template within layouts/main
1011
+ Rendering sessions/new
1012
+ Rendered layouts/_meta (0.1ms)
1013
+ Rendered layouts/_header (0.3ms)
1014
+ Rendered layouts/_footer (0.1ms)
1015
+ Completed in 16ms (View: 12, DB: 0) | 200 OK [http://localhost/session/new]
1016
+
1017
+
1018
+ Processing StoriesController#index (for 127.0.0.1 at 2009-12-10 13:00:55) [GET]
1019
+ Redirected to http://localhost:3000/session/new
1020
+ Filter chain halted as [:login_required] rendered_or_redirected.
1021
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/stories]
1022
+
1023
+
1024
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 13:00:55) [GET]
1025
+ Rendering template within layouts/main
1026
+ Rendering sessions/new
1027
+ Rendered layouts/_meta (0.2ms)
1028
+ Rendered layouts/_header (0.3ms)
1029
+ Rendered layouts/_footer (0.1ms)
1030
+ Completed in 91ms (View: 16, DB: 0) | 200 OK [http://localhost/session/new]
1031
+
1032
+
1033
+ Processing StoriesController#index (for 127.0.0.1 at 2009-12-10 13:01:28) [GET]
1034
+ Redirected to http://localhost:3000/session/new
1035
+ Filter chain halted as [:login_required] rendered_or_redirected.
1036
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/stories]
1037
+
1038
+
1039
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 13:01:28) [GET]
1040
+ Rendering template within layouts/main
1041
+ Rendering sessions/new
1042
+ Rendered layouts/_meta (0.2ms)
1043
+ Rendered layouts/_header (0.4ms)
1044
+ Rendered layouts/_footer (0.1ms)
1045
+ Completed in 17ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
1046
+
1047
+
1048
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 13:02:30) [GET]
1049
+ Rendering template within layouts/main
1050
+ Rendering sessions/new
1051
+ Rendered layouts/_meta (0.2ms)
1052
+ Rendered layouts/_header (0.4ms)
1053
+ Rendered layouts/_footer (0.2ms)
1054
+ Completed in 17ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
1055
+
1056
+
1057
+ Processing StoriesController#index (for 127.0.0.1 at 2009-12-10 13:02:32) [GET]
1058
+ Redirected to http://localhost:3000/session/new
1059
+ Filter chain halted as [:login_required] rendered_or_redirected.
1060
+ Completed in 2ms (DB: 0) | 302 Found [http://localhost/stories]
1061
+
1062
+
1063
+ Processing SessionsController#new (for 127.0.0.1 at 2009-12-10 13:02:33) [GET]
1064
+ Rendering template within layouts/main
1065
+ Rendering sessions/new
1066
+ Rendered layouts/_meta (0.2ms)
1067
+ Rendered layouts/_header (0.4ms)
1068
+ Rendered layouts/_footer (0.2ms)
1069
+ Completed in 17ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]